/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /*    font-family: "Open Sans", sans-serif;*/
  font-family: "Outfit", sans-serif;
  color: #444444;
}

a {
  color: #046bd2;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  /*    font-family: "Jost", sans-serif;*/
  font-family: "Outfit", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#preloader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main-logo-loader img {
  width: 250px;
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  -webkit-box-shadow: 5px 0px 3px #000;
  box-shadow: 5px 0px 3px #000;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #fff;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

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

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

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

.navbar li {
  position: relative;
}

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

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

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

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 8px;
  margin-left: 30px;
  border-radius: 50px;
  color: #000;
  font-size: 14px;
  border: 2px solid #b28f4c;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.navbar .getstarted .navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.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;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.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: #47b2e4;
}

.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: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  -webkit-transition: 0.5s;
  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(40, 58, 90, 0.9);
  -webkit-transition: 0.3s;
  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;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: #37517e;
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  -webkit-animation: up-down 2s ease-in-out infinite alternate-reverse both;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

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

.about,
.highlight {
  padding-bottom: 100px;
}

.section-bg {
  background-color: #f3f5fa;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  /*    padding-bottom: 20px;*/
  position: relative;
  color: #37517e;
  color: #a88343;
  font-family: "Outfit", Sans-serif;
  font-size: 40px;
  font-weight: 700;
}

/*
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}
*/

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

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #000000;
  font-family: "Barlow", Sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-family: "Outfit", Sans-serif;
}

.about .content ul li {
  margin-left: 15px;
  position: relative;
  list-style: disc;
  font-size: 18px;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #47b2e4;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  /* border-top: 3px solid #47b2e4; */
  /* border-bottom: 3px solid #47b2e4; */
  padding: 30px;
  /* background: #fff; */
  /* box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12); */
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
  position: relative;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  /* height: 44px; */
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"],
.modal button[type="submit"] {
  background: #a88343;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  pointer-events: auto;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #209dd8;
}

@-webkit-keyframes animate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #37517e;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

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

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

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

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

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #37517e;
  position: relative;
  padding-bottom: 12px;
}

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

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

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

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

.overview-img-box {
  /* min-height: 511px; */
  /* border-style: solid; */
  /* border: 5px solid #a88343; */
  position: relative;
  /* display: -webkit-box; */
  display: -ms-flexbox;
  /* display: flex; */
  /* -webkit-box-orient: vertical; */
  /* -webkit-box-direction: normal; */
  -ms-flex-direction: column;
  /* flex-direction: column; */
  /* -webkit-box-align: center; */
  -ms-flex-align: center;
  /* align-items: center; */
  margin: 0 50px;
  /* max-width: max-content; */
}

.overview-img-box img {
  left: -30px;
  top: 30px;
  /* padding-right: 20px; */
  /* position: absolute; */
  position: relative;
  z-index: 2;
}

.overview-img-container {
  position: relative;
}

.overview-img-container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid #a88343;
}

.about p {
  text-align: justify;
  font-family: "Outfit", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
}

.table thead th {
  background: #a88343;
  font-weight: 800;
  color: #000;
}

.nearby-box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* justify-content: center; */
  text-align: center;
  line-height: 1.2;
}

.nearby-box img {
  width: 100%;
  /* height: 45px; */
  /* margin-bottom: 10px; */
  /* border: 3px solid #a88343; */
  /* border-radius: 50%; */
  padding: 25px;
}

.nearby-detail {
  padding: 100px 0;
}

.nearby-img {
  /* padding: 50px; */
  border: 3px solid #a88343;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  text-align: center;
}

.footer-logo-box-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 10px;
}

.footer-logo-box-center .footer-logo-img {
  margin-bottom: 15px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-logo-box-center .footer-logo-img img {
  /*    max-width: 200px;*/
  max-height: 90px;
}

.footer-logo-box-center .footer-logo-ct p {
  font-family: "futura_bk_btbook";
  text-align: justify;
}

.footer-logo-box-center .footer-logo-box:first-child {
  padding-right: 0px;
  position: relative;
}

.footer-logo-box-center .footer-logo-box:last-child {
  padding-left: 0px;
}

.footer-logo-box-center .footer-logo-box:first-child::after {
  content: "";
  width: 1px;
  height: 80%;
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #1b1b1b;
  display: none;
}

.partner-logo img {
  width: 300px;
}

.partner-logo .logo1 img {
  width: 300px;
  -webkit-filter: invert(1);
  filter: invert(1);
  margin-bottom: 10px;
}

.footer-copy {
  background-color: #0b0b0b;
  color: #fff;
  padding: 10px 15px;
  margin-bottom: 75px;
}

.footer-copy .col-lg-6:nth-child(2) p {
  font-size: 12px;
}

.footer-copy .col-lg-6:nth-child(1) p {
  font-size: 14px;
}

.counter-box-section {
  padding: 30px 0px;
}

.counter-box-section .counter-box {
  text-align: center;
}

.counter-box-section .counter-box h6 {
  text-transform: uppercase;
  font-family: "futura_bk_btbook";
  font-size: 14px;
}

.counter-box-section .counter-box .count-number {
  color: #b4904c;
  position: relative;
}

.counter-box-section .counter-box .count-number:after {
  content: "+";
}

.location {
  background: #000000;
  color: #fff;
}

.contact {
  background: #151515;
  padding: 30px 0;
}

.contact h4 {
  color: #a88343;
  font-family: "Outfit", Sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.configuration {
  background-image: url("../img/config-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.highlight {
  background: #000000;
  color: #fff;
}

.about .content h3 {
  color: #000;
}

.highlight .content h3 {
  color: #fff;
}

.about .content p {
  color: #000;
}

.highlight .content p {
  color: #fff;
}

.highlight ul h4 {
  color: #a88343;
  font-family: "Outfit", Sans-serif;
  font-size: 23px;
  font-weight: 600;
}

.connection-detail h4 {
  color: #a88343;
  font-family: "Barlow", Sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.connection-detail {
  margin-bottom: 30px;
}

.nearby-box p {
  font-weight: 600;
  font-size: 18px;
}

.table thead tr {
  text-align: center;
  font-family: "Outfit", Sans-serif;
  font-weight: 400;
}

.table tbody tr th {
  text-align: center;
  font-family: "Outfit", Sans-serif;
  font-weight: 400;
  color: #000;
  /* font-size: 18px; */
}

.location-txt p {
  font-family: "Outfit", Sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.disclaimer h2 {
  color: #a88343;
  font-family: "Barlow", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.disclaimer p {
  font-family: "Outfit", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: #000;
}

.slick-next,
.slick-prev {
  z-index: 3;
  width: 35px;
  height: 35px;
}

.slick-next {
  right: 15px;
}

.slick-prev {
  left: 15px;
}

.slick-next:before,
.slick-prev:before {
  font-size: 40px;
}

.connection-detail ul {
  padding-left: 15px;
  font-family: "Outfit", Sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.gallery {
  background: #000000;
}

.gallery .nav-link {
  background: #a88343;
  color: #fff;
  border: 0;
  border-radius: 0;
  font-size: 18px;
}

.gallery .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 0;
  border-radius: 5px;
}

.gallery .nav-link.active {
  font-weight: 600;
  border: 0;
  border-radius: 0;
  /* font-size: 18px; */
}

.fixed-top {
  background: #ffff;
}

.home-banner {
  margin-top: 89px;
}

/*************************************** MODAL CSS ************************************/
.modal-body {
  background-color: #000;
  padding: 30px 30px;
  border-radius: 0;
  -webkit-box-shadow: 15px 15px 49px #000000a8;
  box-shadow: 15px 15px 49px #312828a8;
}

.modal-content {
  border-radius: 0;
}

.modal-body p {
  font-size: 13px;
}

.modal-content .close {
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #fff;
  position: absolute;
  right: 0;
  z-index: 9;
  font-size: 15px;
  opacity: 1;
  text-shadow: none;
  padding: 0px;
  -webkit-filter: invert(1);
  filter: invert(1);
}

#modalForm h2 {
  font-size: 25px;
  text-align: center;
  letter-spacing: 1px;
  margin: 0 0 20px;
  padding: 0;
  color: #28783c;
  text-transform: uppercase;
}

form .col-12 {
  margin-bottom: 20px;
}

/*
.form-select {
	border-bottom: 1px solid #000 !important;
	border-radius: 0px;
	border: 1px solid #fff;
}

#modalForm input {
	width: 100%;
	height: 36px;
	padding: 5px;
	margin-bottom: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: 0;
	margin-bottom: 0px;
}

.form-control {
	color: #000;
	background-color: transparent;
	border: 0;
	border-bottom: 1px solid #000;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.btn:hover {
	border: none;
}

.btn {
	margin-top: 0px;
	border: none;
	padding: 0;
}

button.btn-default span {
	border-radius: 0;
	padding: 10px 40px;
	color: #fff;
	display: inline-block;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
	letter-spacing: 1.8px;
	background: #C69651;
	background-size: 200% 100%;
	background-position: right bottom;
	text-transform: uppercase;
	font-weight: 700;
}

button.btn-default span:hover {
	color: #fff;
	background-position: left bottom;
	background-color: #000;
}

.enquire-btn {
	color: #fff;
	cursor: pointer;
}

.enquire-btn h3 {
	color: #fff;
	margin-bottom: 0;
	font-size: 14px;
	letter-spacing: 3.5px;
}

.enquire-btn:hover {
	color: #fff;
}

.form-check label {
	color: #fff;
	font-weight: 100;
	font-size: 12px;
}

.modal h2 {
	color: #C69651;
	text-align: center;
	text-transform: uppercase;
	font-size: 30px;
	margin-bottom: 30px;
}

.modal h3 {
	font-size: 16px;
	text-align: center;
	color: #fff;
	padding-bottom: 10px;
}
*/
.modal-body h2 {
  color: #fff;
  font-family: "Poppins", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: none;
  font-style: normal;
  text-decoration: none;
  line-height: 32px;
  letter-spacing: 0px;
  margin: 0 auto;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}

.error_msg {
  display: none;
}

.error {
  color: red;
  font-size: 12px;
  padding-top: 5px;
}

.form-control:focus,
.form-select:focus {
  border-color: #63401a;
  -webkit-box-shadow: 0 0 0 0.1rem #63401a;
  box-shadow: 0 0 0 0.1rem #63401a;
}

/*************************************** MODAL CSS ************************************/

.floor-img {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 44px 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 44px 0px;
  background: rgb(255, 255, 255);
  padding: 20px;
  text-align: center;
  cursor: pointer;
}

/* the slides */
.floor-plan-box .slick-slide {
  margin: 0 15px;
}

/* the parent */
.floor-plan-box .slick-list {
  margin: 0 -15px;
}

.floor-img p {
  color: #000;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 0;
}

.floor-img img {
  width: 100%;
}

.footerForm {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 10px 0;
  background-color: #6d6e70;
  z-index: 9;
  -webkit-box-shadow: 0px -2px 5px rgb(0 0 0 / 50%);
  box-shadow: 0px -2px 5px rgb(0 0 0 / 50%);
  background-color: #f0c63e;
  border-radius: 15px 15px 0px 0px;
}

.footerForm a {
  /* font-family: 'TrajanProBold_0'; */
  color: #000;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: "Barlow-ExtraBold";
  text-transform: uppercase;
  font-family: "Barlow", Sans-serif;
}

.gallery .slick-next:before,
.gallery .slick-prev:before {
  color: #000;
}

.form-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.lg-autoplay-button {
  display: none !important;
}

.form-box p {
  width: 50%;
}

.footerForm:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #000;
  top: 0;
  display: none;
}

.sticky-form {
  float: left;
  width: 100%;
  background: #000;
  padding: 10px 0 0px 0;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 5;
}

.sticky-form .wrapper {
  display: flex;
  align-items: center;
}

h4.desk-only {
  float: left;
  width: 100%;
  margin: 0 0;
  text-transform: uppercase;
  color: #fbfcff;
  text-align: center;
  font-weight: normal;
}

button#contactus_footer,
.ftbuttonload {
  background: #a88343;
  border: 0;
  /* padding: 12px 34px; */
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
  pointer-events: auto;
}

.know-more {
  cursor: pointer !important;
  background: #a88343;
  border: 0;
  padding: 5px 25px;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  width: max-content;
  margin-top: 5px;
  display: inline-block;
}

a.whatsapp-icon i {
  background: #a88343;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
}

.modal-body .logo img {
  width: 250px;
  margin: 0 auto;
  display: block;
}

.floor-plan-slider .floor-img img {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

.stardom-logo-footer img {
  width: 200px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .home-banner {
    margin-top: 72.5px;
  }
}

#popup-modalForm .form-control {
  margin-bottom: 30px;
  height: 44px;
}

.col-3,
.col-12 {
  position: relative;
}

.form-control:disabled {
  border-bottom-right-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

#modal_phone,
#footer_phone,
#side_phone {
  border-bottom-left-radius: 0px !important;
  border-top-left-radius: 0px !important;
}

.error-side,
.error-banner,
.error-modal {
  display: none;
  color: red;
  font-size: 13px;
  position: absolute;
  right: 20px;
  top: 14px;
}

.error {
  border: 2px solid red;
  animation: error 0.2s linear 5 alternate 0.1s;
}

@keyframes error {
  0% {
    border: 2px solid black;
  }

  100% {
    border: 2px solid #2264ad;
  }
}

input[type="checkbox"] {
  accent-color: #a88343;
  margin-right: 10px;
}

input#side_checkbox,
#footer_checkbox,
#modal_checkbox {
  height: 20px;
  width: 20px;
}

.sidecondition-label,
.condition-label {
  color: #a88343;
}
.price-btn {
  cursor: pointer;
}

button:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

.footerterms-and-condition-block {
  margin-left: 10px;
  color: #fff;
  font-size: 12px;
}

.check-box,
.sidecheck-box {
  left: 0;
  top: 25px;
  background: rgb(37 36 36 / 90%);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-size: 12px;
  z-index: 5;
}
.footer-query-box {
  position: fixed;
  right: 0;
  bottom: 10px;
  left: auto;
  text-align: center;
  display: flex;
  width: 100%;
  justify-content: center;
}

.form-check .form-check-input {
  width: 20px;
  height: 18px;
  margin-right: 0;
}

.modal .form-check .form-check-input {
  width: 35px;
}

.contact .form-check .form-check-input {
  width: 25px;
}
