@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap");

a,
a:hover {
  text-decoration: none;
}
#header .logo,
*,
::after,
::before {
  padding: 0;
  margin: 0;
}
.navbar .dropdown ul,
.navbar-mobile .dropdown ul {
  z-index: 99;
  background: #fff;
  box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
}
#header .logo,
.form-container .field input,
.navbar a,
.navbar a:focus,
body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
}
.navbar ul,
.pointer-wrapper {
  list-style: none;
}
/* @font-face {
  font-family: TrajanPro-Regular;
  src: url(../font/TrajanPro-Regular.otf);
}
@font-face {
  font-family: TrajanPro-Bold;
  src: url(../font/TrajanPro-Bold.otf);
} */
html {
  scroll-padding-top: 120px;
}
body {
  color: #fff;
  background-color: #000;
}
a {
  color: #25d366;
}
a:hover {
  color: #dbad3b;
}
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #dbad3b;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: 0.4s;
}
#preloader,
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  right: 0;
  left: 0;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #7ed899;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
#preloader {
  top: 0;
  bottom: 0;
  z-index: 9999;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #dbad3b;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: 1s linear infinite animate-preloader;
  animation: 1s linear infinite animate-preloader;
}
@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
#header {
  background: rgba(28, 47, 96, 0.863);
  transition: 0.5s;
  z-index: 997;
  padding: 15px 0;
}
#header .logo {
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#header .logo a,
.navbar .active,
.navbar .active:focus,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul a:hover,
.navbar .dropdown ul li:hover > a,
.navbar a:hover,
.navbar li:hover > a,
.navbar-mobile .active,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul li:hover > a,
.navbar-mobile a:hover,
.navbar-mobile li:hover > a {
  color: #dbad3b;
}
#header .logo img {
  max-height: 40px;
}
.get-started-btn {
  margin-left: 22px;
  background: #dbad3b;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}
.get-started-btn:hover {
  background: #3ac162;
  color: #fff;
}
@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}
.section-bottom-gap,
.section-gap {
  margin-bottom: 50px;
}
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  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;
  font-weight: 500;
  color: silver;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li,
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
}
.navbar .dropdown ul a i,
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.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-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x,
.whatsapp_float:hover {
  color: #fff;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  top: 0;
  bottom: 0;
  background: rgba(32, 38, 34, 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;
  border-radius: 6px;
  background-color: #424242a8;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile .dropdown ul a,
.slider-content {
  padding: 10px 20px;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.construction-container,
.section-gap,
.section-top-gap {
  margin-top: 50px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  opacity: 1;
  visibility: visible;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
.slider {
  width: 100%;
  position: relative;
  background-image: url(../img/slider/bg.jpg);
  background-position: center;
  background-size: cover;
  height: 100vh;
}
.slider-content {
  background: rgba(0, 0, 0, 0.231);
}
.form-btn,
.otp-btn,
.verify-btn {
  background-color: #dbad3b;
  outline: 0;
  width: 100%;
}
.form-container .form-heading h1 {
  color: #dbad3b;
  text-transform: uppercase;
  font-size: 25px;
  text-align: center;
}
.form-container .field {
  margin-bottom: 6px;
}
.form-container .field input {
  width: 100%;
  padding: 2px 10px;
  display: flex;
  align-items: center;
  border: 1px solid #858585;
}
.form-container .field input:focus,
.form-container .field select:focus {
  outline: 0;
}
.form-container .field input::placeholder {
  font-size: 14px;
}
.form-container .field label {
  color: #fff;
  font-size: 14px;
  display: block;
}
.form-container .field select,
.map,
.map img {
  width: 100%;
}
.form-container .field select option {
  font-size: 14px;
  padding-bottom: 10px;
}
.form-btn {
  color: #fff;
  border: 0;
  border-radius: 5px;
  padding: 8px 20px;
  display: block;
}
.otp-btn,
.otp-field,
.verify-btn {
  display: inline-block;
}
.otp-btn,
.verify-btn {
  color: #fff;
  border: 0;
  border-radius: 5px;
  padding: 3px 10px;
}
.top-cta {
  display: flex;
  justify-content: flex-end;
}
.section-heading h1 {
  text-align: center;
  margin-bottom: 30px;
  font-family: "Cinzel", serif;
  font-weight: 700;
}
.about-content h2 {
  text-align: center;
  margin-bottom: 30px;
}
.about-content p {
  text-align: center;
  line-height: 1.8;
}
.img-container {
  background-color: #fff;
  padding: 7px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.gallery-container {
  margin-top: 30px;
}
.location-heading {
  max-width: 283px;
}
.navigation-container {
  background-color: #dbad3b;
  width: 280px;
  display: flex;
  align-items: center;
  height: 40px;
}
.navigation-icon {
  color: #333;
  font-size: 30px;
  transform: rotate(-43deg);
  margin: 10px 20px;
  position: relative;
  top: 6px;
}
.navigation-container h2 {
  font-family: "Cinzel", serif;
  font-weight: 700;
  color: #333;
  padding-top: 10px;
}
.main-content h3.page-title,
.main-content p,
.main-section .section-heading h1,
.thankyou-btn a:hover {
  color: #222;
}
.group-content {
  display: flex;
  align-items: center;
}
.group-content .map-icon {
  margin-left: 30px;
}
.map-content {
  margin: 50px 0;
}
.map-content p {
  text-align: justify;
}
.count-box p,
.sidebar-cta ul,
.thankyou-section,
.whatsapp_float {
  text-align: center;
}
.pointer-container {
  background-image: url(../img/bg/bg.png);
  background-position: center;
  background-size: cover;
  padding: 30px;
}
.pointer-wrapper li {
  border-left: 5px solid #dbad3b;
  padding: 15px 20px;
  margin-bottom: 25px;
}
.pointer-wrapper li p {
  margin-bottom: 0;
}
.count-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}
.count-box .count-number span {
  font-size: 60px;
}
.count-box .count-dash {
  width: 250px;
  height: 2px;
  background-color: #dbad3b;
  margin-top: 50px;
}
.footer {
  border-top: 1px solid #dbad3b;
  padding: 50px 0 20px;
}
.f-logo {
  max-width: 150px;
}
.footer .copyright-content p {
  margin-bottom: 0;
  text-align: center;
  font-size: 13px;
}
.footer .copyright-content p.copyright {
  margin-top: 5px;
}
.whatsapp_float {
  left: 40px;
  display: grid;
  place-content: center;
}
.jBox-Notice .jBox-content {
  background-color: #fff;
  color: #000;
}
.form-container .field input,
.form-container .field select {
  background-color: #fff;
  height: 30px;
  vertical-align: middle;
}
.mobile-cta {
  background-color: #242323;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999999 !important;
}
.main-section,
.thankyou-btn a:hover {
  background-color: #fff;
}
.mobile-cta .cta-link {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.mobile-cta .cta-link a {
  display: inline-block;
  padding: 10px 0 8px;
  font-size: 25px;
  margin-bottom: 0;
  font-weight: 300;
}
.sidebar-cta nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.sidebar-cta ul {
  display: block;
  list-style-type: none;
  padding-left: 0;
}
.sidebar-cta .side-social {
  width: 50px;
  height: 50px;
  font-size: 25px;
  color: #fff;
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.7);
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #242323;
}
.sidebar-cta .side-social a {
  margin-bottom: 0;
  display: inline-block;
}
.sidebar-cta .side-social a .bx {
  line-height: 50px;
}
.sidebar-cta .side-social:hover {
  width: 60px;
  transition: 0.2s;
}
.page-gap {
  margin-top: 73px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.main-content,
.main-section .section-heading {
  margin-bottom: 30px;
}
.main-content p {
  margin-bottom: 10px;
  text-align: justify;
}
.thankyou-section {
  display: grid;
  place-content: center;
  height: 50vh;
  width: 100%;
  color: #222;
}
.thankyou-section .icon {
  font-size: 50px;
  color: #dbad3b;
}
.thankyou-btn a {
  background-color: #000;
  color: #fff;
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #000;
  transition: 0.3s;
}
.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.whatsapp-icon {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .whatsapp_float {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    text-align: center;
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 10px;
    font-size: 22px;
  }
  .whatsapp_float i {
    margin: 0 !important;
    display: inline-blockblock;
    padding: 0 !important;
    align-selft: center;
    fonts-size: 15px;
    line-height: 15px;
  }
  .whatsapp-icon {
    margin-top: 10px;
  }
}
