:root {
  --color-blue: #1a2e42;
  --color-white: #fff;
  --color-petrol: #81A930;
  --color-green: #008877;
}
.bg-blue {
  background-color: var(--color-blue) !important;
}
.txt-blue {
  color: var(--color-blue) !important;
}
.txt-white{
    color: var(--color-white) !important;
}
.bg-white {
  background-color: var(--color-white) !important;
}
.txt-green{
    color: var(--color-green) !important;
}
.bg-green{
    background-color: var(--color-green) !important;
}
.txt-petrol{
    color: var(--color-petrol) !important;
}
.bg-petrol{
    background-color: var(--color-petrol) !important;
}
button.bg-green:hover{
    background-color: var(--color-blue) !important;
}
.uk-subnav-pill>.uk-active>a{
    background-color: var(--color-blue) !important;
}
html{
    scroll-behavior: smooth;
}
* {
  text-transform: none !important;
}
textarea {
  resize: vertical;
}
/* *:not(.no-transition){
    text-transform: none !important;
    transition: all 0.3s ease-in-out;
} */
.top-nav-item > a {
  min-height: 40px !important;
  color: #fff !important;
}
.top-nav-item > a:hover {
  min-height: 40px !important;
  color: #ddd !important;
}
.top-nav-item > a > span {
  margin-right: 0.5rem !important;
  font-weight: bold;
}
.uk-sticky.uk-active .uk-navbar-nav > li > a,
.uk-sticky.uk-active .uk-navbar-item {
  min-height: 50px !important;
}
.uk-sticky.uk-active .uk-navbar-nav > li > a.animate-line::before {
  bottom: 10px;
}
#nav-logo {
  max-height: 150px;
  margin: 15px;
}
.uk-sticky.uk-active #nav-logo {
  max-height: 40px;
}
.uk-nav-header {
  font-size: 1.1rem;
}
.uk-navbar-nav {
  padding: 50px 0 0;
}
.uk-navbar-nav li a {
  font-weight: 400;
  font-size: 1.2rem;
}

.container {
  min-height: calc(100vh - 180px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.add-shadow {
  text-shadow: 1px 1px 2px #000;
}
a.animate-line {
  position: relative;
}
li:hover > a.animate-line::before,
li.uk-active > a.animate-line::before {
  right: 15px;
}
a.animate-line::before {
  display: none;
  /* content: "";
  display: block;
  position: absolute;
  left: 15px;
  right: calc(102% - 15px);
  bottom: 20px;
  height: 1px;
  background-color: currentColor;
  transition: 0.3s ease-in-out;
  transition-property: right; */
}

.banner h1 {
  font-size: clamp(16px, 6vw, 4rem);
}

/* small screens */
@media (max-width: 959px) {
  #nav-logo {
    max-height: 80px;
    margin: 15px;
  }
}
