/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Questrial", sans-serif;
  color: #3E5563;
}

a {
  text-decoration: none;
  color: #064B75;
}

a:hover {
  color: #ACA58C;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Questrial", sans-serif;
}

.brand-name {
  font-family: 'Krona One', sans-serif;
  color: #EBE7D9;
  font-size: large;
}

.brand-slogan {
  font-family: 'Questrial', sans-serif;
  color: #EBE7D9;
  font-size: medium;
}

.justify-content-center {
  justify-content: center!important;
}

.justify-content-left {
  display: grid;
  justify-content: left!important;
  align-items: center;
  justify-items: center;
}

.justify-content-right {
  justify-content: right!important;
  justify-items: center;
  align-items: center;
}

@media (min-width: 1820px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 90%;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #064B75;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ACA58C;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0 4px 10px -3px rgba(191, 191, 191, 0.5);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #ACA58C;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 70px;
}


.scrolled-offset {
  margin-top: 90px;
}

@media (max-width: 992px) {
  
  #header {
    height: 70px;
  }

  #header .logo img {
    max-height: 50px;
  }

  .scrolled-offset {
    margin-top: 70px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #151515;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #ACA58C;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #ACA58C;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #151515;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ACA58C;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #ACA58C;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# EMCDL Section
--------------------------------------------------------------*/
#emcdl {
  width: 100%;
  height: 100vh;
  background: url("../assets/img/hero-bg.png");
  position: relative;
  background-attachment: fixed;
}

#emcdl .emcdl-container {
  position: inherit;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  text-align: center;
  padding: 0 15px;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}

#emcdl .emcdl-logo {
  margin-bottom: 30px;
  height: 45vh;
  width: 100%;
  position: initial;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
}

#emcdl .emcdl-sub {
  margin-bottom: 30px;
  height: 45vh;
  width: 100%;
  position: initial;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
}

#emcdl a.logo-link img {
  max-width: max-content;
  width: 100%;
  height: 35vh;
  position: inherit;
}

#emcdl h1 {
  margin-bottom: 30px;
  font-size: 2em;
  font-weight: 500;
  line-height: 56px;
  color: #FFF5D0;
}

#emcdl h2 {
  color: #ACA58C;
  margin-bottom: 30px;
  font-size: 1.5em;
  font-weight: 400;
  text-transform: uppercase;
}

#emcdl .btn-get-started {
  font-family: "Questrial", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.2em;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 3px;
  margin: 10px;
  color: #fff;
  background: #064B75;
  margin: 30px;
}

#emcdl .btn-get-started:hover {
  transition: 0.5s;
  background: #fff;
  color: #ACA58C;
}

@media (max-width: 359px) {

  #emcdl a.logo-link img {
    width: 100%;
    height: 23vh;
  }

  #emcdl h1 {
    font-size: 20px;
    line-height: 24px;
  }

  #emcdl h2 {
    font-size: 14px;
    line-height: 20px;
  }

  #emcdl .btn-get-started {
    font-size: 0.8em;
  }
}

@media (min-width: 359px) and (max-width: 455px) {

  #emcdl a.logo-link img {
    max-width: max-content;
    width: 100%;
    height: 30vh;
    position: inherit;
  }

  #emcdl h1 {
    font-size: 24px;
    line-height: 24px;
  }

  #emcdl h2 {
    font-size: 16px;
    line-height: 20px;
  }

  #emcdl .btn-get-started {
    font-size: 0.8em;
  }
}

@media (min-width: 455px) and (max-width: 900px) {

  #emcdl a.logo-link img {
    max-width: max-content;
    width: 100%;
    height: 35vh;
    position: inherit;
  }

  #emcdl h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #emcdl h2 {
    font-size: 18px;
    line-height: 22px;
  }

  #emcdl .btn-get-started {
    font-size: 1em;
  }
}

@media (min-width: 1441px) {

  #emcdl a.logo-link img {
    max-width: max-content;
    width: 100%;
    height: 40vh;
    position: inherit;
  }

  #emcdl h1 {
    font-size: 3em;
    line-height: 64px;
  }

  #emcdl h2 {
    font-size: 2.5em;
    /* line-height: 40px; */
  }

  #emcdl .btn-get-started {
    font-size: 1.6em;
  }
}

@media (min-width: 1720px) {

  #emcdl a.logo-link img {
    max-width: max-content;
    width: 100%;
    height: 40vh;
    position: inherit;
  }

  #emcdl h1 {
    font-size: 70px;
    line-height: 64px;
  }

  #emcdl h2 {
    font-size: 3.0em;
    line-height: 40px;
  }

  #emcdl .btn-get-started {
    font-size: 2.5em;
  }
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: whitesmoke;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 0;
  color: #151515;
}

.section-title p {
  margin-bottom: 0;
  color: #aeaeae;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url("../assets/img/footer-bg.jpg") center center no-repeat;
  color: #FFF5D0;
  font-size: 14px;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 0;
}

#footer .footer-top .footer-logo img {
  height: 143px;
}

#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Krona One", sans-serif;
  padding: 30px 0 0 0;
  margin-bottom: 0;
}

#footer .footer-top p {
  font-size: 15;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}

#footer .footer-top .footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #064B75;
  color: #FFF5D0;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #ACA58C;
}

#footer .footer-top .social-links {
  margin-top: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #064B75;
  color: #FFF5D0;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ACA58C;
  color: #FFF5D0;
  text-decoration: none;
}

#footer .footer-bottom {
  border-top: 1px solid #222222;
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  padding-top: 5px;
}