﻿*,
::before,
::after {
  margin: 0;
  padding: 0;
}

@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 {
  font-family: "TrajanPro-Regular", sans-serif;
  color: #fff;
  background-color: #60081a;
}

a {
  color: #25D366;
  text-decoration: none;
}

a:hover {
  color: #dbad3b;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "TrajanPro-Regular", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.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: all 0.4s;
}
.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
--------------------------------------------------------------*/
#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 #dbad3b;
  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% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #60081a;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  /* box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08); */
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "TrajanPro-Regular", sans-serif;
}
#header .logo a {
  color: #dbad3b;
}
#header .logo img {
  max-height: 40px;
}

/**
* Get Startet Button 
*/
.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;
  }
}

/*--------------------------------------------------------------
# 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-family: "TrajanPro-Regular", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgb(192, 192, 192);
  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: #dbad3b;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  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;
  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;
}
.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: #dbad3b;
}
.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: #fff;
  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(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: #14497d;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #dbad3b;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  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: #dbad3b;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/* slider start */
.slider {
  width: 100%;
  position: relative;
  background-image:url('../img/slider/bgmob.jpg');
  background-position: center;
  background-size: cover;
  height: 100vh;

  margin-top: 2px;
}
/* .slider .slider-img img {
  width: 100%;
} */

.slider-content {
  /* position: absolute;
  top: 1%;
  right: 9%; */
  background: rgba(0, 0, 0, 0);
  padding: 10px 20px;
}
.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;
  font-family: "TrajanPro-Regular", sans-serif;
  height: 28px;
  border: 0px solid rgb(133, 133, 133);
}

.form-container .field input:focus {
  outline: 0;
}

.form-container .field input::placeholder {
  font-size: 14px;
}

.form-container .field label {
  color: #dbad3b;
  font-size: 14px;
  display: block;
}

.form-container .field select {
  width: 100%;
  height: 28px;
}

.form-container .field select:focus {
  outline: 0;
}

.form-container .field select option {
  font-size: 14px;
  padding-bottom: 10px;
}

.form-btn {
  background-color: #dbad3b;
  color: #fff;
  border: 0;
  outline: 0;
  border-radius: 5px;
  padding: 8px 20px;
  display: block;
  width: 100%;
}

/* slider end */

.top-cta {
  display: flex;
  justify-content: flex-end;
}

.section-gap {
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left:-2%;
  margin-right:-4%;
}

.section-top-gap {
  margin-top: 50px;
}

.section-bottom-gap {
  margin-bottom: 50px;
}

/* about section start*/
.section-heading h1 {
  text-align: center;
  margin-bottom: 30px;
  font-family: TrajanPro-Bold;
}

.about-content h2 {
  text-align: center;
  margin-bottom: 30px;
}
.about-content p {
  text-align: center;
  line-height: 1.8;
}
/* about section end */

.img-container {
  background-color: #fff;
  padding: 7px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.gallery-container {
  margin-top: 30px;
}

.construction-container {
  margin-top: 50px;
}

.map {
  width: 100%;
}

.map img {
  width: 100%;
}

.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: TrajanPro-Bold;
  color: #333;
  padding-top: 10px;
}

.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;
}

.pointer-container {
  background-image: url(../img/bg/bg.png);
  background-position: center;
  background-size: cover;
  padding: 30px;
}

.pointer-wrapper {
  list-style: none;
}

.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 p {
  text-align: center;
}

.count-box .count-dash {
  width: 250px;
  height: 2px;
  background-color: #dbad3b;
  margin-top: 50px;
}

.footer {
  border-top: 1px solid #dbad3b;
  padding: 50px 0px 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;
}

/* for desktop */
.whatsapp_float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 40px;
  left: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  display: grid;
  YUVA-content: center;
}

.whatsapp_float:hover {
  color: #fff;
}

/* for mobile */
@media screen and (max-width: 767px) {
  /* .whatsapp_float {
    width: 40px;
    height: 40px;
    bottom: 20px;
    left: 10px;
    font-size: 22px;
  } */

  

  .whatsapp_float {
/*     display: none; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    text-align: center;
  }

  .whatsapp_float i {
    margin: 0 !important;
    display: inline-blockblock;
    padding: 0 !important;
    align-selft: center;
    fonts-size: 15px;
    line-height: 15px;
  }
  
}

.form-container .field input,
.form-container .field select {
  background-color: #fff;
  height: 28px;
  vertical-align: middle;
}

.mobile-cta {
  background-color: rgb(36, 35, 35);
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  z-index: 999999 !important;
}

.mobile-cta .cta-link {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.mobile-cta .cta-link a {
  display: inline-block;
  padding: 8px 0;
  padding-top: 10px;
  font-size: 25px;
  margin-bottom: 0;
  font-weight: 300;
}

/* side bar cta start */

.sidebar-cta nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.sidebar-cta ul {
  display: block;
  list-style-type: none;
  padding-left: 0;
  text-align: center;
}

.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: rgb(36, 35, 35);

}
.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;
}

/* side bar cta end */

.page-gap{
  margin-top: 73px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.main-section .section-heading h1{
  color: #222;
}
.main-section .section-heading{
  margin-bottom: 30px;
}
.main-section{
  background-color: #fff;
}
.main-content{
  margin-bottom: 30px;
}
.main-content h3.page-title{
  color: #222;
}

.main-content p{
  margin-bottom: 10px;
  text-align: justify;
  color: #222;
}

.thankyou-section{
  display: grid;
  YUVA-content: center;
  height: 50vh;
  width: 100%;
  color: #222;
text-align: center;
}

.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: all .3s ease;
}


.thankyou-btn a:hover{
  background-color: #fff;
  color: #222;
}


      .whatsapp_float {
          position: fixed;
          width: 60px;
          height: 60px;
          bottom: 40px;
          right: 40px;
          background-color: #25d366;
          color: #FFF;
          border-radius: 50px;
          text-align: center;
          font-size: 30px;
          box-shadow: 2px 2px 3px #999;
          z-index: 100;
      }

      .whatsapp-icon {
          margin-top: 16px;
      }

      /* for mobile */
      @media screen and (max-width: 767px) {
          .whatsapp-icon {
              margin-top: 10px;
          }

          .whatsapp_float {
              width: 40px;
              height: 40px;
              bottom: 20px;
              right: 10px;
              font-size: 22px;
          }
      }