:root {
  --dark-gray: #383836;
  --light-bg: #F7F8FB;
  --body-bg: #fff;
  --body-text: #3c3c42;
  --text-dark: #05073C;
  --accent-main: #0066b3;
  --accent-dark: #01355d;
  --accent-sec: #faa71a;
  --accent-gold: #c2963b;
  --accent-light: #fef7f4;
}

@-webkit-keyframes slide {
    100% { left: 0; }
}

@keyframes slide {
    100% { left: 0; }
}
@-webkit-keyframes slideLefttoRight {
    100% { right: 0; }
}

@keyframes slideLefttoRight {
    100% { right: 0; }
}

@keyframes fadeOut {
  0% {opacity:1;}
  100% {opacity:0;}
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active
{
    outline:0px !important;
    -webkit-appearance:none;
    box-shadow: none !important;
}
 

.fadeOut {
  animation: fadeOut .5s;
  opacity:0;
}

.fadeIn {
  animation: fadeIn .5s;
  opacity:1;
}

.slideIn {
  -webkit-animation: slide 1s forwards;
  animation: slide 1s forwards;
}

.ease {
  transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
}

body {
  width: 100%;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: .5px;
  word-wrap: break-word;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  /* background-color: var(--body-bg); */
  background-color: #f2f1f7;
  color: var(--dark-gray);
  overflow-x: hidden;
  padding-top: 115px;
}

body.no-pt {
  padding-top: 0;
}

button:focus {
  outline: none;
}

.rounded-10 {
  border-radius: 10px;
}
.rounded-15 {
  border-radius: 15px;
}
.fa-5 {
  font-family: "Font Awesome 5 Free" !important;
}
.text-justify {
  text-align: justify !important;
}
.text-accent {
  color: var(--accent-main);
}
.bg-accent {
  background-color: var(--accent-light);
}
.bg-navy {
  background-color: #05073c;
}

p {
  line-height: 1.5;
}

#splashscreen {
  background: var(--body-bg);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  /* display: flex; */
  display: none;
  justify-content: center;
  align-items: center;
}

.splash_logo_bg {
  width: 240px;
  height: 110px;
  transition: 2s ease-in-out;
  padding: 10px;
}

#splashscreen.hide {
  top:-100vh;
  height: 100px;
  padding: 0;
}

#splashscreen img{
  position: fixed;
  top: calc(50vh - 50px);
  left: calc(50vw - 100px);
  z-index: 99999;
  width: 200px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

#splashscreen.hide img{
  width: 0;
}
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  padding: 0;
  padding-top: 10px;
  z-index: 999;
  width: 100%;
  background: var(--accent-dark);
}

.navbar.scrolling {
  background: var(--accent-dark);
  padding-top: 0;
}

.navbar.scrolling {
  box-shadow: var(--bs-box-shadow-sm);
}

.navbar-brand {
  display: inline-block;
  position: relative;
  padding: .5rem .875rem;
}

.navbar-brand img {
  width: 150px;
  transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
}

@media only screen and (max-width: 767px) {
  .navbar-brand{
    margin-right: 0;
    padding: .25rem .45rem;
  }
  .navbar-brand img {
    width: 64px;
  }
}

.logo-alternative {
  position: absolute;
  left: 0;
  top: 0.3125rem;
  opacity: 0;
}

@media only screen and (min-width: 768px) {
  .scrolling .navbar-brand img{
    width: 120px;
  }
}
.scrolling .navbar-brand .logo {
  opacity: 1;
}
.menu-open .navbar-brand .logo.with_alternative {
  opacity: 0;
}
.menu-open .navbar-brand .logo-alternative {
  opacity: 1;
}

.logo, .logo-alternative {
transition: all 700ms ease;
-moz-transition: all 700ms ease;
-webkit-transition: all 700ms ease;
-ms-transition: all 700ms ease;
-o-transition: all 700ms ease;
}

.navbar.simple .navbar-brand{
  height: 40px;
}
.navbar.simple.menu-open  .navbar-brand{
  height: auto;
}


.navbar.menu-open img.menu-only {
  display: inline-block !important;
}

#nav-menu-icon {
  width: 20px;
  height: 19px;
  position: relative;
  margin: 0 auto;
  background: transparent !important;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  border: 0;
}


#nav-menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--body-text);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.bg-nav #nav-menu-icon span {
  background: var(--bs-gray-100);
}
#nav-menu-icon span:nth-child(1) {
  top: 3px;
}

#nav-menu-icon span:nth-child(2),#nav-menu-icon span:nth-child(3) {
  top: 10px;
}

#nav-menu-icon span:nth-child(4) {
  top: 17px;
}

#nav-menu-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-menu-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-menu-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-menu-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.scrolling #nav-menu-icon span, #nav-menu-icon.open span {
  background: var(--dark-gray);
}

.nav-wrap {
  position: relative;
  flex-grow: 1;
  margin-top: 15px;
}

#nav-content {
  display: none;
} 
.mobile-menu .navbar-nav .menu-item.current-menu-item a {
  color: #000;
}
.mobile-menu .navbar-nav .menu-item a {
  display: inline-block;
  color: var(--dark-gray);
}

@media only screen and (min-width: 992px) {
  #nav-content {
    display: block;
    flex-grow: 1;
  }
}

.navbar-nav > ul{
  display: flex;
  margin: 0;
  padding-left: 3rem;
}

.navbar-nav > ul > li{
  display: block;
  position: relative;
}

.navbar-nav .menu-item {
  display: block;
  font-size: 1rem;
  text-align: center;
  margin: 0 .5rem;
}

.navbar-nav .menu-item a {
  color: var(--body-text);
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 20px;
  transition: all .25s ease-in-out;
}
.bg-nav .navbar-nav .menu-item a {
  color: #fff;
}
.scrolling .navbar-nav .menu-item a {
  color: #fff;
}

.navbar-nav .menu-item.current-menu-item a {
  color: var(--accent-main);
}
.bg-nav .navbar-nav .menu-item.current-menu-item a {
  color: var(--accent-main);
}
.scrolling .navbar-nav .menu-item.current-menu-item a {
  color: #000;
}

.navbar-nav a:hover, .navbar-nav a:focus {
  text-decoration: none;
}
.navbar-nav .menu-item:hover a, .navbar-nav .menu-item:focus a {
  color: #fff;
  background: var(--accent-main)!important;
}

.navbar-nav > ul li > .sub-menu {
  display: none;
  position: absolute;
  top: calc(35px - .5rem);
  left: 0;
}
.navbar-nav > ul li:hover .sub-menu {
  display: block;
}
.sub-menu {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
.sub-menu li {
  display: block;
  text-align:center;
  background: var(--tan-bg);
  overflow: hidden;
}
.sub-menu li:hover {
  background: var(--dark-red);
}
.sub-menu li:hover a{
  color: var(--bs-white);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 100%;
  background: var(--light-bg);
  z-index: 990;
  height: 100vh;
  width: 100vw;
  transition: all 600ms ease;
}

.mobile-menu.open {
  animation: 'slideLefttoRight' .5s;
  right: 0;
}

@media only screen and (max-width: 991px) {
  .navbar-nav > ul {
    flex-wrap: wrap;
    margin-top: 30vh;
    padding: 0;
  }
  .navbar-nav > ul > li {
    width: 100%;
  }
  .navbar-nav > ul > li  a {
    font-size: 18px;
  }
  .mobile-menu .navbar-nav .menu-item {
    margin:15px 0;
  }
}

.navbar .nav-links {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.navbar .nav-links a {
  color: var(--body-text);
  text-decoration: none;
  margin-right: 15px;
  font-weight: 500;
  transition: all 600ms ease;
}
.navbar.bg-nav .nav-links a {
  color: #fff;
}
.navbar .nav-links a:hover {
  color: var(--accent-main)!important;
}

.navbar .nav-links svg {
  height: 20px;
}
.navbar .nav-links .hm-lang {
  display: block;
  padding: 5px 10px;
  color: var(--accent-main);
  text-align: center;
}
.navbar.menu-open .nav-links .hm-lang {
  display: block;
  transition: all 500ms ease-in-out;
}

.navbar .nav-links .hm-lang:hover {
  background:  var(--accent-main);
  color: var(--light-bg) !important;
}
@media only screen and (min-width: 768px) {
  .navbar .nav-links {
    flex-direction: row;
  }
  .navbar .nav-links .hm-lang{
    min-width: 75px;
    padding: 3px 5px;
  }
}
.section-title {

}
.footer-menu ul {
  display: flex;
  flex-wrap: wrap;
}
.footer-menu li {
  width: 50%;
  margin-bottom: 15px;
}
.footer-menu li a{
  font-size: 16px;
  color: var(--body-text);
  text-decoration: none;
  transition: all 250ms ease-in-out;
}
.footer-menu li a:focus,.footer-menu li a:hover{
  color: var(--accent-sec);
}
section {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
footer {
  background: var(--accent-main);
  color: #fff;
  text-align: center;
  padding: 10px;
}
.grecaptcha-badge {
  display: none;
}

@media only screen and (min-width: 768px) {
  section {
    padding-top: 140px;
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 768px) {
  .footer-menu li {
    width: 100%;
  }  
}

@media only screen and (min-width: 992px) {

}
@media only screen and (min-width: 1200px) {

  .footer-menu li {
    width: 50%;
  }
}
