/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
    font-family: 'Avenir LT Std';
    src: url('../fonts/AvenirLTStd-Roman.eot');
    src: url('../fonts/AvenirLTStd-Roman.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AvenirLTStd-Roman.woff2') format('woff2'),
        url('../fonts/AvenirLTStd-Roman.woff') format('woff'),
        url('../fonts/AvenirLTStd-Roman.ttf') format('truetype'),
        url('../fonts/AvenirLTStd-Roman.svg#AvenirLTStd-Roman') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir 85';
    src: url('../fonts/Avenir-Heavy.eot');
    src: url('../fonts/Avenir-Heavy.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Avenir-Heavy.woff2') format('woff2'),
        url('../fonts/Avenir-Heavy.woff') format('woff'),
        url('../fonts/Avenir-Heavy.ttf') format('truetype'),
        url('../fonts/Avenir-Heavy.svg#Avenir-Heavy') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Regular.eot');
    src: url('../fonts/PlayfairDisplay-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Regular.woff') format('woff'),
        url('../fonts/PlayfairDisplay-Regular.ttf') format('truetype'),
        url('../fonts/PlayfairDisplay-Regular.svg#PlayfairDisplay-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir-Medium.eot');
    src: url('../fonts/Avenir-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Avenir-Medium.woff2') format('woff2'),
        url('../fonts/Avenir-Medium.woff') format('woff'),
        url('../fonts/Avenir-Medium.ttf') format('truetype'),
        url('../fonts/Avenir-Medium.svg#Avenir-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



body {
  font-family: 'Avenir LT Std';
  color: #020102;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

a {
  color: #4eb478;
  text-decoration: none;
}

a:hover {
  color: #72c393;
  text-decoration: none;
}

.wrap {
  margin: auto;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 60px;
  z-index: 996;
  background: #877a08;
  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: #020102;
  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 {
  z-index: 997;
  transition: all 0.5s;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 84px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/

.fixed-top .navbar {
  position: inherit;
}

.navbar {
  padding: 0 30px;
  background: #fff;
  position: relative;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
  height: 84px;
  justify-content: center;
  position: absolute;
  z-index: 99;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  margin: 0 25px;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-size: 17px;
  color: #7D7C7E;
  white-space: nowrap;
  font-family: 'Avenir 85';
  transition: 0.3s;
  text-transform: uppercase;
}

.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: #877a08;
}

.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;
  color: #444444;
}

.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: #4eb478;
}

.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;
}

/*@media (max-width: 767px) {
  .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(43, 43, 43, 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, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #444444;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #4eb478;
}

.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: #4eb478;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 95vh;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
}
#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero .carousel-item::before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .carousel-content {
  text-align: center;
  position: relative;
  z-index: 9;
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}
#hero h2 span {
  color: #ffb03b;
}
#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
  height: 5px;
}
#hero .btn-menu, #hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  color: #fff;
  border: 2px solid #ffb03b;
}
#hero .btn-menu:hover, #hero .btn-book:hover {
  background: #ffb03b;
  color: #fff;
}

#hero .carousel-indicators {
  margin-bottom: 8rem;
}

.slider--heading img {
  width: 400px;
  vertical-align: middle;
  position: relative;
  top: -50px;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  #hero p {
    width: 50%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 767px) {
  .slider--heading img {
    width: 250px;
    max-width: inherit;
  }

  #hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
    width: 35px;
    height: 35px;
  }

  .bi-chevron-right::before,
  .bi-chevron-left::before {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 70px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #fafdfb;
}

.section-title {
  text-align: center;
  padding: 0;
  position: relative;
}

.section-title h2 {
  font-size: 50px;
  margin-bottom: 80px;
  font-family: 'Playfair Display';
  padding-bottom: 0;
  color: #877a08;
  position: relative;
  z-index: 2;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 50px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Overview
--------------------------------------------------------------*/
.Overview .full-data {
  display: grid;
  grid-template-columns: 1fr 450px;
  grid-gap: 100px;
}

.Overview .full-data ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 70px 80px;
  text-align: right;
  align-items: flex-end;
}

.Overview .full-data ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0;
  padding: 0 0 18px 0;
  border-bottom: 1px solid #cac9ca;
  position: relative;
}

.Overview .full-data ul li:before {
  background: #877a08;
  height: 4px;
  width: 40px;
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
}

.Overview .full-data ul li h5 {
  font-family: 'Playfair Display';
  font-size: 47px;
  line-height: 52px;
  font-weight: normal;
  margin: 0;
  padding: 0 0 10px 0;
  color: #877a08;
}

.Overview .full-data ul li p {
  color: #020102;
  font-size: 18px;
  font-family: 'Avenir';
  font-weight: 500;
  margin: 0;
  padding: 0;
}

.Overview .full-data .right p.space {
  color: #020102;
  font-size: 24px;
  font-family: 'Avenir';
  font-weight: 500;
  margin: 0 0 40px 0;
  padding: 0;
  line-height: normal;
}

.Overview .full-data .right p.grey {
  color: #7D7C7E;
  font-size: 24px;
  font-family: 'Avenir LT Std';
  font-weight: normal;
  margin: 0 0 40px 0;
  padding: 0;
  line-height: 36px;
}

.Overview .full-data .right p.bhk {
  color: #020102;
  font-size: 24px;
  font-family: 'Avenir';
  font-weight: 500;
  margin: 0 0 8px 0;
  padding: 0;
  line-height: normal;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.highlights {
  background: #F2F2F2;
  padding: 100px 0 70px;
}

.icon-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px 50px;
}

.highlights .icon-box {
  margin: 0;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
}

.highlights .icon-box:hover {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 8px rgb(0 0 0 / 25%);
}

.highlights .icon-box img {
  margin: 0 auto 30px;
  display: block;
  height: 100px;
}


.highlights .icon-box .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.highlights .icon-box:hover .img-hover {
  display: block;
}

.highlights .icon-box {
  overflow: hidden;
}

.highlights .img-hover {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.highlights .img-hover img {
  width: 100% !important;
  height: 100% !important;
  /* max-width: none; */
  object-fit: cover;
  margin: 0;
}

.highlights .icon-box h4 {
  font-weight: 500;
  font-family: 'Avenir';
  font-size: 24px;
  line-height: 34px;
  max-width: 265px;
  margin: 0 auto;
}

.highlights .icon-box h4 a {
  color: #444444;
  transition: 0.3s;
}

.highlights .icon-box .icon-box:hover h4 a {
  color: #4eb478;
}

.highlights .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.gallery .portfolio-item {
  margin-bottom: 30px;
}

.gallery #portfolio-flters {
  padding: 0;
  margin: 0 auto 70px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.gallery #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  margin: 0 25px;
  text-align: center;
  color: #020102;
  font-size: 25px;
  font-family: 'Avenir';
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.gallery #portfolio-flters li:hover,
li.filter-active {
  color: #877A08 !important;
  border-bottom: 1px solid #877A08;
}

.gallery #portfolio-flters li:last-child {
  margin-right: 0;
}

.gallery .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.gallery .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.gallery .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.gallery .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.gallery .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.gallery .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  bottom: 10%;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.gallery .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.gallery .portfolio-wrap .portfolio-links a:hover {
  color: #4eb478;
}

.gallery .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.gallery .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 25px);
}

.gallery .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: calc(50% - 50px);
}


/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/

.video-tours {
  background: #F2F2F2;
}

.video-tours iframe {
  width: 100%;
  height: 500px;
}

.tabs {
  text-align: center;
}

.tabs input {
  display: none;
}

.tabs label {
  display: inline-flex;
  padding: 0;
  margin: 0 25px;
  text-align: center;
  color: #020102;
  font-size: 25px;
  font-family: 'Avenir';
  font-weight: 500;
}

.tabs label:hover {
  cursor: pointer;
}

.tabs input:checked + label {
  color: #877A08;
  border-bottom: 1px solid #877A08;
}

.tabs #tab1:checked ~ .content #content1,
.tabs #tab2:checked ~ .content #content2,
.tabs #tab3:checked ~ .content #content3,
.tabs #tab4:checked ~ .content #content4 {
  display: block;
   animation: fadeIn ease 5s;
  -webkit-animation: fadeIn ease 5s;
  -moz-animation: fadeIn ease 5s;
  -o-animation: fadeIn ease 5s;
  -ms-animation: fadeIn ease 5s;
}

.tabs .content > div {
  display: none;
  padding-top: 70px;
  text-align: left;
  /*height: 192px;*/
  overflow: auto;
}

@keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}


/*--------------------------------------------------------------
# floor-plans
--------------------------------------------------------------*/

.floor-plans button.active {
  background: transparent;
  position: relative;
  border: 0;
}

.floor-plans button.active span {
  background: transparent;
  color: #877A08;
  border-bottom: 1px solid #877A08;
  padding: 0;
}

.floor-plans .nav-tabs {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.floor-plans .nav-tabs .nav-link {
  margin: 0 30px;
  padding: 0;
  width: auto;
  border: 0;
}

.floor-plans button {
  width: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  background: none;
  text-align: center;
  color: #020102;
  font-size: 30px;
  font-family: 'Avenir';
  font-weight: 500;
}

.floor-plans .tab-content {
  margin: 60px 0 0;
}

.floor-plans .nav {
  justify-content: center;
}

.floor-plans .tab-content button.active {
  background: transparent;
  position: relative;
  border: 0;
  margin: 0;
}

.floor-plans .tab-content button span {
  border-bottom: 1px solid transparent;
}

.floor-plans .tab-content button.active span {
  background: transparent;
  color: #877A08;
  border-bottom: 1px solid #877A08;
  padding: 0;
}



.download-button {
  text-align: center;
  margin: 20px 0 0 !important;
}

.download-button a {
  background: #877a08;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  vertical-align: middle;
  padding: 13px 22px;
  color: #fff;
  font-size: 16px;
  font-family: 'Avenir';
  font-weight: 500;
  border-radius: 2px;
}

.download-button a i {
  font-size: 22px;
  width: auto;
  padding: 0;
}

.download-button a:hover {
  background: #232323;
}

.sky-tabs,
.sky-tabs * {
  margin: 0 auto;
  padding: 0;
  outline: none;
  border: 0;
  background: none;
}

.sky-tabs {
  position: relative;
  text-align: center;
}

.sky-tabs > input {
  position: absolute;
  display: none;
}

.sky-tabs > label {
  position: relative;
  text-align: center;
  margin: 0 25px;
  padding: 0;
  color: #020102;
  font-size: 30px;
  font-family: 'Avenir';
  font-weight: 500;
  cursor: pointer;
}

.sky-tabs > label.inverse {
  float: right;
  padding-right: 0;
  padding-left: 1px;
}

.sky-tabs > label.disabled {
  cursor: default;
}

.sky-tabs > label span {
  display: block;
  padding: 5px;
  background: rgba(255,255,255,0.9);
}

.sky-tabs > label span span {
  padding: 0 20px;
  background: transparent;
  transition: background 0.4s, color 0.4s;
  -o-transition: background 0.4s, color 0.4s;
  -ms-transition: background 0.4s, color 0.4s;
  -moz-transition: background 0.4s, color 0.4s;
  -webkit-transition: background 0.4s, color 0.4s;  
}

.sky-tabs > label:hover span span {
  background: #2da5da;
  color: #fff;  
}

.sky-tabs > label.disabled span span {
  background: transparent;
  color: inherit;
}

.sky-tabs > input:checked + label {
  background: transparent;
  color: #877A08;
  border-bottom: 1px solid #877A08;
  padding: 0;
  cursor: pointer;
}

.sky-tabs > .switcher {
  display: none;
}

.sky-tabs > .switcher a {
  display: block;
  margin: 0 -20px;
  padding: 0 20px;
  text-decoration: none;
  color: inherit;
}

.sky-tabs > ul {
  list-style: none;
  position: relative;
  display: block;
  font-size: 13px;
}

.sky-tabs > ul > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: auto;
  padding: 60px 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  opacity: 0;
  -o-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  -o-transition: opacity 0.8s, -o-transform 0.8s; 
  -ms-transition: opacity 0.8s, -ms-transform 0.8s; 
  -moz-transition: opacity 0.8s, -moz-transform 0.8s; 
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
}

.sky-tabs > .sky-tab-content-1:checked ~ ul > .sky-tab-content-1,
.sky-tabs > .sky-tab-content-2:checked ~ ul > .sky-tab-content-2,
.sky-tabs > .sky-tab-content-3:checked ~ ul > .sky-tab-content-3,
.sky-tabs > .sky-tab-content-4:checked ~ ul > .sky-tab-content-4,
.sky-tabs > .sky-tab-content-5:checked ~ ul > .sky-tab-content-5,
.sky-tabs > .sky-tab-content-6:checked ~ ul > .sky-tab-content-6,
.sky-tabs > .sky-tab-content-7:checked ~ ul > .sky-tab-content-7,
.sky-tabs > .sky-tab-content-8:checked ~ ul > .sky-tab-content-8,
.sky-tabs > .sky-tab-content-9:checked ~ ul > .sky-tab-content-9,
.sky-tabs > .sky-tab-content-11:checked ~ ul > .sky-tab-content-11,
.sky-tabs > .sky-tab-content-22:checked ~ ul > .sky-tab-content-22,
.sky-tabs > .sky-tab-content-33:checked ~ ul > .sky-tab-content-33,
.sky-tabs > .sky-tab-content-30:checked ~ ul > .sky-tab-content-30,
.sky-tabs > .sky-tab-content-31:checked ~ ul > .sky-tab-content-31,
.sky-tabs > .sky-tab-content-32:checked ~ ul > .sky-tab-content-32,
.sky-tabs > .sky-tab-content-40:checked ~ ul > .sky-tab-content-40,
.sky-tabs > .sky-tab-content-41:checked ~ ul > .sky-tab-content-41,
.sky-tabs > .sky-tab-content-42:checked ~ ul > .sky-tab-content-42,
.sky-tabs > .sky-tab-content-51:checked ~ ul > .sky-tab-content-51,
.sky-tabs > .sky-tab-content-52:checked ~ ul > .sky-tab-content-52,
.sky-tabs > .sky-tab-content-53:checked ~ ul > .sky-tab-content-53  {
  position: relative;
  z-index: 1;
  opacity: 1;
  -webkit-transform: translate(0,0);
}

.sky-tabs-pos-left > label,
.sky-tabs-pos-right > label {
  display: block;
  width: 25%;
  float: left;
  clear: left;
  margin-right: 0;
}

.sky-tabs-pos-right > label {
  float: right;
  clear: right;
}
.sky-tabs-pos-left > ul {
  margin-left: 25%;
}

.sky-tabs-pos-right > ul {
  margin-right: 25%;
}

.sky-tabs-pos-right > label {
  padding-right: 0;
  padding-left: 1px;
}

.sky-tabs-pos-top-center > ul > li,
.sky-tabs-pos-top-justify > ul > li {
  -o-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -moz-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}

.sky-tabs-pos-right > ul > li,
.sky-tabs-pos-top-right > ul > li {
  -o-transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -moz-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}


/**/
/* animations */
/**/
.sky-tabs-anim-slide-up > ul > li {
  -o-transform: translateY(-15%);
  -ms-transform: translateY(-15%);
  -moz-transform: translateY(-15%);
  -webkit-transform: translateY(-15%);
}

.sky-tabs-anim-slide-right > ul > li {
  -o-transform: translateX(15%);
  -ms-transform: translateX(15%);
  -moz-transform: translateX(15%);
  -webkit-transform: translateX(15%);
}

.sky-tabs-anim-slide-down > ul > li {
  -o-transform: translateY(15%);
  -ms-transform: translateY(15%);
  -moz-transform: translateY(15%);
  -webkit-transform: translateY(15%);
}

.sky-tabs-anim-slide-left > ul > li {
  -o-transform: translateX(-15%);
  -ms-transform: translateX(-15%);
  -moz-transform: translateX(-15%);
  -webkit-transform: translateX(-15%);
}

.sky-tabs-anim-slide-up-left > ul > li {
  -webkit-transform: translate(-15%,-15%);  
}

.sky-tabs-anim-slide-up-right > ul > li {
  -webkit-transform: translate(15%,-15%); 
}

.sky-tabs-anim-slide-down-right > ul > li {
  -webkit-transform: translate(15%,15%);  
}

.sky-tabs-anim-slide-down-left > ul > li {
  -webkit-transform: translate(-15%,15%); 
}

.sky-tabs-anim-scale > ul > li {
  -o-transform: scale(0.1,0.1);
  -ms-transform: scale(0.1,0.1);
  -moz-transform: scale(0.1,0.1);
  -webkit-transform: scale(0.1,0.1);
}
.sky-tabs-anim-scale > .sky-tab-content-1:checked ~ ul > .sky-tab-content-1,
.sky-tabs-anim-scale > .sky-tab-content-2:checked ~ ul > .sky-tab-content-2,
.sky-tabs-anim-scale > .sky-tab-content-3:checked ~ ul > .sky-tab-content-3,
.sky-tabs-anim-scale > .sky-tab-content-4:checked ~ ul > .sky-tab-content-4,
.sky-tabs-anim-scale > .sky-tab-content-5:checked ~ ul > .sky-tab-content-5,
.sky-tabs-anim-scale > .sky-tab-content-6:checked ~ ul > .sky-tab-content-6,
.sky-tabs-anim-scale > .sky-tab-content-7:checked ~ ul > .sky-tab-content-7,
.sky-tabs-anim-scale > .sky-tab-content-8:checked ~ ul > .sky-tab-content-8,
.sky-tabs-anim-scale > .sky-tab-content-9:checked ~ ul > .sky-tab-content-9,
.sky-tabs-anim-scale > .sky-tab-content-11:checked ~ ul > .sky-tab-content-11,
.sky-tabs-anim-scale > .sky-tab-content-22:checked ~ ul > .sky-tab-content-22,
.sky-tabs-anim-scale > .sky-tab-content-33:checked ~ ul > .sky-tab-content-33,
.sky-tabs-anim-scale > .sky-tab-content-30:checked ~ ul > .sky-tab-content-30,
.sky-tabs-anim-scale > .sky-tab-content-31:checked ~ ul > .sky-tab-content-31,
.sky-tabs-anim-scale > .sky-tab-content-32:checked ~ ul > .sky-tab-content-32,
.sky-tabs-anim-scale > .sky-tab-content-40:checked ~ ul > .sky-tab-content-40,
.sky-tabs-anim-scale > .sky-tab-content-41:checked ~ ul > .sky-tab-content-41,
.sky-tabs-anim-scale > .sky-tab-content-42:checked ~ ul > .sky-tab-content-42,
.sky-tabs-anim-scale > .sky-tab-content-51:checked ~ ul > .sky-tab-content-51,
.sky-tabs-anim-scale > .sky-tab-content-52:checked ~ ul > .sky-tab-content-52,
.sky-tabs-anim-scale > .sky-tab-content-53:checked ~ ul > .sky-tab-content-53 {
  -o-transform: scale(1,1);
  -ms-transform: scale(1,1);
  -moz-transform: scale(1,1);
  -webkit-transform: scale(1,1);
}

.sky-tabs-anim-rotate > ul > li {
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.sky-tabs-anim-rotate.sky-tabs-pos-right > ul > li,
.sky-tabs-anim-rotate.sky-tabs-pos-top-right > ul > li {
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
.sky-tabs-anim-rotate > .sky-tab-content-1:checked ~ ul > .sky-tab-content-1,
.sky-tabs-anim-rotate > .sky-tab-content-2:checked ~ ul > .sky-tab-content-2,
.sky-tabs-anim-rotate > .sky-tab-content-3:checked ~ ul > .sky-tab-content-3,
.sky-tabs-anim-rotate > .sky-tab-content-4:checked ~ ul > .sky-tab-content-4,
.sky-tabs-anim-rotate > .sky-tab-content-5:checked ~ ul > .sky-tab-content-5,
.sky-tabs-anim-rotate > .sky-tab-content-6:checked ~ ul > .sky-tab-content-6,
.sky-tabs-anim-rotate > .sky-tab-content-7:checked ~ ul > .sky-tab-content-7,
.sky-tabs-anim-rotate > .sky-tab-content-8:checked ~ ul > .sky-tab-content-8,
.sky-tabs-anim-rotate > .sky-tab-content-9:checked ~ ul > .sky-tab-content-9,
.sky-tabs-anim-rotate > .sky-tab-content-11:checked ~ ul > .sky-tab-content-11,
.sky-tabs-anim-rotate > .sky-tab-content-22:checked ~ ul > .sky-tab-content-22,
.sky-tabs-anim-rotate > .sky-tab-content-33:checked ~ ul > .sky-tab-content-33,
.sky-tabs-anim-rotate > .sky-tab-content-30:checked ~ ul > .sky-tab-content-30,
.sky-tabs-anim-rotate > .sky-tab-content-31:checked ~ ul > .sky-tab-content-31,
.sky-tabs-anim-rotate > .sky-tab-content-32:checked ~ ul > .sky-tab-content-32,
.sky-tabs-anim-rotate > .sky-tab-content-40:checked ~ ul > .sky-tab-content-40,
.sky-tabs-anim-rotate > .sky-tab-content-41:checked ~ ul > .sky-tab-content-41,
.sky-tabs-anim-rotate > .sky-tab-content-42:checked ~ ul > .sky-tab-content-42,
.sky-tabs-anim-rotate > .sky-tab-content-51:checked ~ ul > .sky-tab-content-51,
.sky-tabs-anim-rotate > .sky-tab-content-52:checked ~ ul > .sky-tab-content-52,
.sky-tabs-anim-rotate > .sky-tab-content-53:checked ~ ul > .sky-tab-content-53 {
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}

.sky-tabs-anim-flip > ul {
  perspective: 2000px;
  -o-perspective: 2000px;
  -ms-perspective: 2000px;
  -moz-perspective: 2000px;
  -webkit-perspective: 2000px;
  perspective-origin: 50% 50%;
  -o-perspective-origin: 50% 50%;
  -ms-perspective-origin: 50% 50%;
  -moz-perspective-origin: 50% 50%;
  -webkit-perspective-origin: 50% 50%;
}

.sky-tabs-anim-flip > ul > li {
  -o-transform: rotateX(-90deg);
  -ms-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  -webkit-transform: rotateX(-90deg);
}

.sky-tabs-anim-flip.sky-tabs-pos-left > ul > li {
  -o-transform: rotateY(90deg);
  -ms-transform: rotateY(90deg);
  -moz-transform: rotateY(90deg);
  -webkit-transform: rotateY(90deg);  
}

.sky-tabs-anim-flip.sky-tabs-pos-right > ul > li {
  -o-transform: rotateY(-90deg);
  -ms-transform: rotateY(-90deg);
  -moz-transform: rotateY(-90deg);
  -webkit-transform: rotateY(-90deg);
}

.sky-tabs-anim-flip > .sky-tab-content-1:checked ~ ul > .sky-tab-content-1,
.sky-tabs-anim-flip > .sky-tab-content-2:checked ~ ul > .sky-tab-content-2,
.sky-tabs-anim-flip > .sky-tab-content-3:checked ~ ul > .sky-tab-content-3,
.sky-tabs-anim-flip > .sky-tab-content-4:checked ~ ul > .sky-tab-content-4,
.sky-tabs-anim-flip > .sky-tab-content-5:checked ~ ul > .sky-tab-content-5,
.sky-tabs-anim-flip > .sky-tab-content-6:checked ~ ul > .sky-tab-content-6,
.sky-tabs-anim-flip > .sky-tab-content-7:checked ~ ul > .sky-tab-content-7,
.sky-tabs-anim-flip > .sky-tab-content-8:checked ~ ul > .sky-tab-content-8,
.sky-tabs-anim-flip > .sky-tab-content-9:checked ~ ul > .sky-tab-content-9,
.sky-tabs-anim-flip > .sky-tab-content-11:checked ~ ul > .sky-tab-content-11,
.sky-tabs-anim-flip > .sky-tab-content-22:checked ~ ul > .sky-tab-content-22,
.sky-tabs-anim-flip > .sky-tab-content-33:checked ~ ul > .sky-tab-content-33,
.sky-tabs-anim-flip > .sky-tab-content-30:checked ~ ul > .sky-tab-content-30,
.sky-tabs-anim-flip > .sky-tab-content-31:checked ~ ul > .sky-tab-content-31,
.sky-tabs-anim-flip > .sky-tab-content-32:checked ~ ul > .sky-tab-content-32,
.sky-tabs-anim-flip > .sky-tab-content-40:checked ~ ul > .sky-tab-content-40,
.sky-tabs-anim-flip > .sky-tab-content-41:checked ~ ul > .sky-tab-content-41,
.sky-tabs-anim-flip > .sky-tab-content-42:checked ~ ul > .sky-tab-content-42,
.sky-tabs-anim-flip > .sky-tab-content-51:checked ~ ul > .sky-tab-content-51,
.sky-tabs-anim-flip > .sky-tab-content-52:checked ~ ul > .sky-tab-content-52,
.sky-tabs-anim-flip > .sky-tab-content-53:checked ~ ul > .sky-tab-content-53  {
  -o-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  -o-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

@media screen and (max-width: 767px) {
  .sky-tabs .grid-col,
  .sky-tabs .grid-col:first-child {
    float: none;
    width: 100%;
    margin: 20px 0 0 0;
  }
  
  .sky-tabs-response-to-stack > label {
    display: block;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    text-align: left;
  }
  .sky-tabs-response-to-stack > ul {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
  }
  .sky-tabs-response-to-stack > ul > li {
    -o-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    -moz-transform-origin: 50% 0%;
    -webkit-transform-origin: 50% 0%;
  }
  .sky-tabs-response-to-stack.sky-tabs-anim-flip > ul > li {
    -webkit-transform: rotateX(-90deg);
  }
  
  .sky-tabs-response-to-icons > label {
    font-size: 0;
  }
  .sky-tabs-response-to-icons > label [class^="icon-"] {
    width: 45px;
    margin: 0;
    font-size: 16px;
  }
  .sky-tabs-response-to-icons > label span span {
    padding: 0;
  }
  .sky-tabs-response-to-icons.sky-tabs-pos-left > label,
  .sky-tabs-response-to-icons.sky-tabs-pos-right > label {
    width: 56px;
  }
  .sky-tabs-response-to-icons.sky-tabs-pos-left > ul {
    margin-left: 56px;
  }
  .sky-tabs-response-to-icons.sky-tabs-pos-right > ul {
    margin-right: 56px;
  }
  
  .sky-tabs-response-to-switcher > label {
    display: none;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    text-align: left;
  }
  .sky-tabs-response-to-switcher > .switcher {
    display: block;
  }
  .sky-tabs-response-to-switcher:hover > label {
    display: block;
  }
  .sky-tabs-response-to-switcher:hover > .switcher {
    display: none;
  }
  .sky-tabs-response-to-switcher > ul {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
  }
  .sky-tabs-response-to-switcher > ul > li {
    -o-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    -moz-transform-origin: 50% 0%;
    -webkit-transform-origin: 50% 0%;
  }
  .sky-tabs-response-to-switcher.sky-tabs-anim-flip > ul > li {
    -webkit-transform: rotateX(-90deg);
  }
}

/*--------------------------------------------------------------
# facilites
--------------------------------------------------------------*/

.facilites {
  background: #F2F2F2;
  overflow: inherit;
}

.facilites .nav-tabs {
  border: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
}

.facilites .nav-tabs button {
  width: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  background: none;
  text-align: center;
  color: #686868 !important;
  font-size: 32px;
  font-family: 'Playfair Display';
}

.facilites .nav-tabs button.active {
  background: transparent;
  position: relative;
}

.facilites .nav-tabs button.active:before {
  background: #877A08;
  width: 1px;
  height: 60px;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -80px;
  margin-left: -0.5px;
}

.facilites .nav-tabs .children button span {
  background-image: url(../../assets/img/Facilites/Children.png);
  background-repeat: no-repeat;
  background-size: 105px;
  background-position: 50% 0;
  padding-top: 155px !important;
  display: inline-flex;
}

.facilites .nav-tabs .grandparents button span {
  background-image: url(../../assets/img/Facilites/GrandParents.png);
  background-repeat: no-repeat;
  background-size: 125px;
  background-position: 50% 0;
  padding-top: 155px !important;
  display: inline-flex;
}

.facilites .nav-tabs .couples button span {
  background-image: url(../../assets/img/Facilites/Couples.png);
  background-repeat: no-repeat;
  background-size: 120px;
  background-position: 50% 0;
  padding-top: 155px !important;
  display: inline-flex;
}

.facilites .nav-tabs .children button.active span {
  background-image: url(../../assets/img/Facilites/Children_color.png);
  background-repeat: no-repeat;
  background-size: 105px;
  background-position: 50% 0;
  padding-top: 155px !important;
  display: inline-flex;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.facilites .nav-tabs .grandparents button.active span {
  background-image: url(../../assets/img/Facilites/GrandParents_color.png);
  background-repeat: no-repeat;
  background-size: 125px;
  background-position: 50% 0;
  padding-top: 155px !important;
  display: inline-flex;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.facilites .nav-tabs .couples button.active span {
  background-image: url(../../assets/img/Facilites/Couples_color.png);
  background-repeat: no-repeat;
  background-size: 120px;
  background-position: 50% 0;
  padding-top: 155px !important;
  display: inline-flex;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.facilites .nav-tabs button.active span {
  color: #877A08;
  border-bottom: 1px solid #877A08;
  padding: 0 50px 0;
}

.facilites .tab-content {
  padding: 50px;
  border: 1px solid #877a08;
  box-sizing: border-box;
  margin: 80px 0 0;
}

.facilites .tab-content ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 120px;
}

.facilites .accordion.accordion-flush {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 35px 120px;
}

.facilites .accordion-item .accordion-button:before {
  background: #877a08;
  height: 4px;
  width: 70px;
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
}

.facilites .accordion.accordion-flush .accordion-item {
  background: transparent;
  border: 0;
}

.facilites .accordion.accordion-flush .accordion-item:last-of-type .accordion-button {
  margin: 0;
  padding: 0 0 0 80px;
  border: 0;
}

.facilites .accordion.accordion-flush .accordion-item:last-of-type .accordion-button:before {
  display: none;
}

.facilites .accordion.accordion-flush button {
  list-style: none;
  box-shadow: none;
  background: transparent;
  margin: 0;
  padding: 0 0 15px 84px;
  color: #020102;
  font-size: 21px;
  font-family: 'Avenir';
  font-weight: 500;
  border-bottom: 1px solid #cac9ca;
  position: relative;
  display: flex;
  min-height: 70px;
  align-items: center;
  cursor: pointer;
}

.facilites .accordion.accordion-flush .accordion-button::after,
.facilites .accordion.accordion-flush .accordion-button:not(.collapsed)::after {
  display: none;
}

.facilites .accordion-body {
  background: #fff;
  border-radius: 16px;
  margin: 20px 0 10px;
  padding: 0;
  width: 100%;
  z-index: 9;
  border: 0;
  color: #000;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
  text-indent: initial;
  text-transform: initial;
  text-align: center;
  position: relative;
}

.facilites .accordion-body .img {
  border-radius: 16px;
  overflow: hidden;
  padding: 10px;
}

.facilites .accordion-body .img img {
  vertical-align: middle;
  border-radius: 16px;
}

.facilites .accordion-body:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin-left: 13px;
  top: 0;
  left: 7%;
  box-sizing: border-box;
  border: 8px solid #fff;
  border-color: transparent transparent #fff #fff;
  transform-origin: 0 0;
  transform: rotate(135deg);
}

.facilites .accordion.accordion-flush .icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border: 1px solid #877a08;
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 8px 0 8px;
}


.facilites .accordion.accordion-flush button img {
  width: 70px;
  height: 70px;
  background: #fff;
  border: 1px solid #877a08;
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 8px 0 8px;
}

.facilites .tab-content ul li {
  list-style: none;
  margin: 0 0 35px 0;
  padding: 0 0 15px 80px;
  color: #020102;
  font-size: 25px;
  font-family: 'Avenir';
  font-weight: 500;
  border-bottom: 1px solid #cac9ca;
  position: relative;
  display: flex;
  min-height: 60px;
  align-items: center;
  cursor: pointer;
}

.facilites .tab-content ul li .item-details {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-left: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 0px 8px rgb(0 0 0 / 25%);
  padding: 24px 10px 24px;
  width: 100%;
  z-index: 9;
  border: 0;
  color: #000;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
  text-indent: initial;
  text-transform: initial;
  text-align: center;
}

.facilites .tab-content ul li .item-details:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin-left: 13px;
  top: 0;
  left: 18%;
  box-sizing: border-box;
  border: 8px solid #fff;
  border-color: transparent transparent #fff #fff;
  transform-origin: 0 0;
  transform: rotate(135deg);
  box-shadow: -4px 4px 4px -3px rgb(0 0 0 / 25%);
}

.facilites .tab-content ul li h4 {
  margin: 0;
  padding: 0;
}

.facilites .tab-content ul li .icon {
  width: 60px;
  height: 52px;
  background: #877a08;
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 8px 0 8px;
}

.facilites .tab-content ul li .icon i {
  color: #fff;
  font-size: 30px;
}

.facilites .tab-content ul li:before {
  background: #877a08;
  height: 4px;
  width: 60px;
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
}

.facilites .tab-content ul li:last-child {
  margin: 0;
  padding: 0 0 0 80px;
  border-bottom: 0;
  min-height: 45px;
}

.facilites .tab-content ul li:last-child:before {
  display: none;
}

.item-details {
  display:none;
}

.item.active .item-details {
  display:block;
}
/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/

.contact h2 {
  font-size: 50px;
  margin-bottom: 30px;
  font-family: 'Playfair Display';
  padding-bottom: 0;
  color: #877a08;
  position: relative;
  z-index: 2;
}

.contact .info-box {
  color: #444444;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px;
}

.contact p {
  padding: 0;
  font-size: 27px;
  margin: 0 auto;
  padding: 0 0 50px 0;
  color: #020102;
  max-width: 680px;
}

.map-section {
  margin: 0 0 80px 0;
}

.landmark-section h3 {
  text-align: center;
  margin: 0 0 35px 0;
  line-height: 47px;
  padding: 0;
  font-size: 47px;
  color: #000;
  font-family: 'Playfair Display';
}

.landmark-section ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.landmark-section ul li {
  margin: 0;
  padding: 40px 20px 40px 40px;
  list-style: none;
}

.landmark-section ul li h4 {
  font-size: 25px;
  line-height: normal;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  color: #877a08;
  font-family: 'Avenir';
  font-weight: 500;
  padding: 0;
}

.landmark-section ul li .inner-cnt {
  color: #020102;
  font-size: 27px;
  font-family: 'Avenir';
  font-weight: 500;
  padding: 0;
  display: grid;
  grid-gap: 5px;
  align-items: center;
  grid-template-columns: 300px auto 1fr;
  line-height: 36px;
}

.landmark-section ul li .inner-cnt span {
  color: #020102;
  font-size: 22px;
  font-family: 'Avenir';
  font-weight: 500;
}

.landmark-section ul li.first,
.landmark-section ul li.third {
  border-right: 1px solid #877a08;
}

.landmark-section ul li.first,
.landmark-section ul li.second {
  border-bottom: 1px solid #877a08;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.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 input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #4eb478;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #4eb478;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #45a36c;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #f7f7f7;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #5e5e5e;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0;
  color: #636466;
  font-size: 17px;
  font-family: 'Avenir';
  font-weight: 500;
}

#footer .footer-top {
  background: #f2f2f2;
}

#footer .footer-btm {
  background: #DFDFDF;
  clear: both;
  padding: 22px 0;
}

#footer .full-data {
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
}

#footer .full-data .right-data {
  color: #636466;
  font-size: 17px;
  font-family: 'Avenir';
  font-weight: 500;
  line-height: 20px;
}

#footer .full-data ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

#footer .full-data li {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 20px;
}

#footer .full-data li a {
  color: #636466;
  font-size: 18px;
  font-family: 'Avenir';
  font-weight: 500;
  line-height: 20px;
  display: flex;
}

#footer .full-data li a:hover {
  color: #877A08;
}

#footer .footer-top .footer-links {
  text-align: center;
}

.ftr-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  padding: 50px 0 35px;
  max-width: 560px;
  margin: 0 auto;
}

.ftr-data h4 {
  text-align: center;
  color: #877A08;
  text-transform: uppercase;
  margin: 0;
  padding: 0 0 28px 0;
  font-size: 22px;
  letter-spacing: 2px;
  font-family: 'Avenir';
  font-weight: 500;
}

.ftr-data .mail,
.ftr-data .call,
.ftr-data .footer-links {
  padding: 40px 0;
  text-align: center;
}

.ftr-data .mail a,
.ftr-data .call a {
  color: #636466;
  font-size: 25px;
  font-family: 'Avenir';
  font-weight: 500;
}

.ftr-data .mail a:hover,
.ftr-data .call a:hover {
  color: #877A08;
}

.ftr-data .call {
  border-right: 1px solid #aaabac;
  /*border-left: 1px solid #aaabac;*/
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #4eb478;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #aaaaaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #4eb478;
}

#footer .footer-top .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  background: #232323;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 12px;
  text-align: center;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a i:before {
  font-size: 21px;
  position: relative;
  left: 1px;
  top: -1px;
}

#footer .footer-top .social-links a:hover {
  background: #877A08;
  color: #fff;
  text-decoration: none;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
}

.copyright-mobile {
  display: none;
}

.float-sm {
  display: none;
}

@media only screen and (min-width: 768px) {
  .fix-ftr {
   display: none;
  }

  .float-sm {
    display: block;
  }

  .float-sm .call {
    background-color: #c5a26c;
  }

  .float-sm .whatsapp {
    background-color: #0dc143;
  }

  .float-sm .fl-fl {
    text-transform: capitalize;
    width: 150px;
    position: fixed;
    right: -40px;
    z-index: 1000;
    font: normal normal 10px Arial;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    border-radius: 5px 0 0 5px;
  }

  .float-sm .bx {
    font-size: 60px;
    color: #fff;
    padding: 10px 10px;
    width: 80px;
  }

  .fl-fl:hover {
    right: 0;
  }

  .float-sm .fl-fl a {
    color: #fff;
    margin: 0px;
    font-size: 18px;
    display: flex;
    align-items: center;
    letter-spacing: 0;
    padding: 15px 10px;
    font-family: 'Avenir LT Std';
  }

  .float-sm {
    height: auto;
    position: fixed;
    text-align: center;
    top: 26vh;
    padding: 0;
    right: -113px;
    z-index: 99;
  }

  .float-sm .float-fb {
    top: 300px;
  }

  .float-sm .float-tw {
    top: 360px;
  }
}

@media only screen and (max-width: 1200px) {
  .landmark-section ul li .inner-cnt span {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .landmark-section ul li {
    padding: 30px 20px 30px 20px;
  }

  .landmark-section ul li .inner-cnt {
    grid-template-columns: 225px auto 1fr;
    margin-bottom: 12px;
  }

  .landmark-section ul li .inner-cnt span {
    line-height: 26px;
  }

  .facilites .tab-content ul li {
    font-size: 22px;
  }

  .facilites .nav-tabs button.active span {
    padding: 0 20px 0;
  }

  .section-title h2 {
    font-size: 40px;
  }

  .floor-plans button,
  .sky-tabs > label,
  .tabs label {
    font-size: 24px;
  }

  .Overview .full-data ul {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px 40px;
  }

  .Overview .full-data ul li h5 {
    font-size: 40px;
  }

  .Overview .full-data .right p.space,
  .Overview .full-data .right p.grey {
    margin: 0 0 20px 0;
  }

  .Overview .full-data .right p.space,
  .Overview .full-data .right p.grey,
  .Overview .full-data .right p.bhk {
    font-size: 22px;
    line-height: 30px;
  }

  .Overview .full-data {
    display: grid;
    grid-template-columns: 1fr 395px;
    grid-gap: 50px;
  }

  .icon-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
  }

  .highlights .icon-box h4 {
    max-width: 240px;
    font-size: 22px;
    line-height: 32px;
  }

  .navbar {
    width: 97%;
    box-sizing: border-box;
  }

  .fixed-top {
    padding: 0 30px;
    background: #fff;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
  }

  .fixed-top .navbar {
    box-shadow: none;
    background: transparent;
  }

  .floor-plans .nav-tabs .nav-link,
  .sky-tabs > label,
  .tabs label {
    margin: 0 20px;
  }

  .facilites .accordion.accordion-flush {
    grid-gap: 35px 50px;
  }

  .facilites .tab-content {
    padding: 35px;
  }

  .facilites .accordion.accordion-flush button {
    font-size: 19px;
  } 
}

@media only screen and (max-width: 991px) {
  .navbar a, .navbar a:focus {
    font-size: 15px;
  }

  .navbar li {
    margin: 0 10px;
  }

  .Overview .full-data {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }

  .Overview .full-data .right {
    display: none;
  }

  .Overview .full-data ul {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
  }

  .Overview .full-data ul li p {
    font-size: 16px;
  }

  .Overview .full-data ul li h5 {
    font-size: 38px;
    line-height: 42px;
  }

  .icon-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
  }

  .highlights .icon-box h4 {
    max-width: 100%;
    font-size: 17px;
    line-height: 24px;
  }

  .floor-plans .nav-tabs .nav-link,
  .sky-tabs > label,
  .tabs label {
    margin: 0 12px;
  }

  .floor-plans button,
  .sky-tabs > label,
  .tabs label {
    font-size: 21px;
  }

  section {
    padding: 60px 0;
  }

  .facilites .nav-tabs button {
    font-size: 24px;
  }

  .facilites .tab-content {
    padding: 40px 30px;
  }

  .facilites .tab-content ul {
    grid-gap: 0 30px;
  }

  .facilites .tab-content ul li {
    font-size: 20px;
  }

  .contact p {
    font-size: 24px;
  }

  .landmark-section ul {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .landmark-section ul li {
    border-bottom: 1px solid #877a08;
    padding: 20px 0;
  }

  .landmark-section ul li:last-child {
    border-bottom: 0;
  }

  .landmark-section ul li.first,
  .landmark-section ul li.third {
    border-right: 0;
  }

  .ftr-data .mail a, .ftr-data .call a {
    font-size: 20px;
  }

  #footer .footer-top .social-links {
    gap: 12px;
  }

  #footer .full-data ul {
    gap: 18px;
  }

  #footer .full-data li,
  #footer .full-data li a,
  #footer .full-data .right-data {
    font-size: 15px;
  }

  .ftr-data {
    padding: 30px 0 25px;
  }

  .ftr-data .mail,
  .ftr-data .call,
  .ftr-data .footer-links {
    padding: 30px 0;
    text-align: center;
  }

  .gallery #portfolio-flters li {
    margin: 0 20px;
    font-size: 22px;
  }

  .facilites .accordion.accordion-flush {
    grid-gap: 35px 30px;
  }

  .facilites .accordion.accordion-flush button {
    font-size: 17px;
  }
}

@media only screen and (max-width: 767px) {
  #hero {
    height: calc(100vh - 50px);
    padding-top: 140px;
  }

  .fixed-top {
    padding: 0;
  }

  .fixed-top .navbar {
    padding: 0 20px 0 20px;
  }

  #header .container {
    padding: 0;
  }

  .navbar {
    overflow: auto;
    justify-content: flex-start;
    padding: 0 20px;
    width: 100%;
    position: fixed;
    top: 68px;
    height: 70px;
  }

  .fixed-top .navbar {
    top: 68px;
    position: fixed;
    z-index: 99;
    background: #fff;
  }

  .navbar a, .navbar a:focus {
    font-size: 16px;
  }

  .navbar::-webkit-scrollbar {
    display: none;
  }

  .Overview .full-data ul {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .Overview .full-data ul li {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
  }

  .Overview .full-data ul li h5 {
    font-size: 24px;
    line-height: 24px;
    margin: 0;
    padding: 0;
    text-align: left;
  }

  .Overview .full-data ul li h5 br {
    display: none;
  }

  .Overview .full-data ul li h5 span {
    margin-left: 5px;
  }

  .Overview .full-data ul li p {
    font-size: 14px;
  }

  .Overview .full-data {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .Overview .full-data .right p.space,
  .Overview .full-data .right p.grey,
  .Overview .full-data .right p.bhk {
    font-size: 18px;
    line-height: 26px;
  }

  .Overview .full-data .right p.space,
  .Overview .full-data .right p.grey {
    margin: 0 0 10px 0;
  }

  .Overview {
    padding: 40px 0 40px;
  }

  .icon-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }

  .highlights .icon-box h4 {
    max-width: 100%;
    font-size: 16px;
    line-height: 22px;
  }

  .highlights .icon-box {
    padding: 20px 10px;
  }

  .highlights .icon-box img {
    margin: 0 auto 25px;
    height: 100px;
  }

  .tabs .content > div {
    padding-top: 40px;
  }

  .video-tours iframe {
    width: 100%;
    height: 200px;
  }

  .floor-plans .nav-tabs {
    grid-template-columns: 1fr;
  }

  .floor-plans .nav-link.active {
    background: #877a08 !important;
  }

  .floor-plans button.active span {
    color: #fff;
    border-bottom: 0;
  }

  .floor-plans button,
  .sky-tabs > label,
  .tabs label {
    font-size: 18px;
  }

  .floor-plans .nav-tabs .nav-link {
    background: #EFEFEF;
    margin: 2px 0;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: left;
  }

  .sky-tabs > label, .tabs label {
    background: #EFEFEF;
    margin: 2px 0;
    padding: 10px 12px;
    border-radius: 5px;
    text-align: left;
    font-size: 16px;
  }
  
  .sky-tabs > label, .tabs label {
    background: #dfdfdf;
    font-size: 18px;
  }

  .tabs label,
  .tabs input:checked + label {
    width: 100%;
  }

  .sky-tabs > input:checked + label,
  .tabs input:checked + label {
    background: #877a08 !important;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: left;
    font-size: 18px;
  }

  .floor-plans .sky-tabs > input:checked + label,
  .floor-plans .tabs input:checked + label,
  .floor-plans .sky-tabs > label,
  .floor-plans .tabs label {
    font-size: 15px;
    line-height: 17px;
    padding: 10px 12px;
  }

  .floor-plans .tab-content {
    margin: 30px 0 0;
  }

  .sky-tabs > ul > li {
    padding: 30px 0;
  }

  section {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 32px;
    margin-bottom: 40px
  }

  .facilites .tab-content {
    padding: 30px 25px;
  }

  .facilites .tab-content ul li {
    margin: 0 0 8px 0;
    padding: 0 0 17px 75px;
  }

  .facilites .tab-content ul {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .facilites .nav-tabs {
    grid-gap: 5px;
  }

  .facilites .nav-tabs button {
    font-size: 18px;
    line-height: 26px;
  }

  .facilites .nav-tabs button span {
    padding: 0 13px;
  }

  .facilites .nav-tabs button.active span {
    padding: 0 10px 6px;
  }

  .facilites .nav-tabs .children button span {
    background-size: 65px;
    padding-top: 95px !important;
  }

  .facilites .nav-tabs .grandparents button span {
    background-size: 75px;
    padding-top: 95px !important;
  }

  .facilites .nav-tabs .couples button span {
    background-size: 70px;
    padding-top: 95px !important;
  }

  .facilites .nav-tabs .children button.active span {
    background-size: 65px;
    padding-top: 95px !important;
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }

  .facilites .nav-tabs .grandparents button.active span {
    background-size: 75px;
    padding-top: 95px !important;
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }

  .facilites .nav-tabs .couples button.active span {
    background-size: 75px;
    padding-top: 95px !important;
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }

  .contact p {
    font-size: 16px;
    padding: 0 0 20px 0;
  }

  .map-section {
    margin: 0 0 30px 0;
  }

  .landmark-section h3 {
    font-size: 32px;
    margin: 0 0 30px 0;
  }

  .landmark-section ul li .inner-cnt span {
    font-size: 16px;
  }

  .landmark-section ul li {
    border: 0 !important;
    margin: 0 0 10px 0;
    padding: 0;
    position: relative;
  }

  .landmark-section ul li .inner-cnt {
    grid-template-columns: 180px auto 1fr;
    margin-bottom: 10px;
  }

  .landmark-section ul li h4 {
    position: relative;
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
    font-size: 22px;
    text-transform: capitalize;
    border-bottom: 1px solid #cac9ca;
  }

  .landmark-section ul li h4:before {
    background: #877a08;
    height: 4px;
    width: 60px;
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
  }

  .ftr-data {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
  }

  .ftr-data .call {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid #aaabac;
  }

  .ftr-data .mail, .ftr-data .call, .ftr-data .footer-links {
    padding: 20px 0;
    text-align: center;
  }

  .ftr-data h4 {
    padding: 0 0 15px 0;
  }

  .ftr-data .mail a,
  .ftr-data .call a {
    font-size: 24px;
  }

  #footer .full-data {
    display: block;
  }

  #footer .full-data .right-data {
    display: none;
  }

  .copy {
    display: none;
  }

  #footer .full-data ul {
    justify-content: space-between;
  }

  #footer .footer-btm {
    background: #DFDFDF;
    clear: both;
    padding: 20px 0 12px;
  }

  .copyright-mobile {
    display: block;
    text-align: center;
    color: #877A08;
    text-transform: capitalize;
    margin: 15px 0 0;
    padding: 0;
    font-size: 18px;
    font-family: 'Avenir';
    font-weight: 500;
  }

  #footer .full-data li,#footer .full-data li a,
  #footer .full-data .right-data {
    font-size: 17px;
  }

  .slider--heading img {
    width: 250px;
    max-width: inherit;
  }

  .wrap {
    padding-bottom: 50px;
  }

  .fix-ftr {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
  }

  .fix-ftr ul {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }

  .fix-ftr ul li {
    margin: 0;
    padding: 9px 0;
    list-style: none;
    text-align: center;
  }

  .fix-ftr ul li.call {
    background: #c5a26c;
    text-indent: -999px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fix-ftr ul li.call a {
    background: url(../../assets/img/call.png) center no-repeat;
    width: 32px;
    height: 32px;
    display: inline-flex;
  }

  .fix-ftr ul li.Download {
    background: #000;
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    font-family: 'Avenir LT Std';
    color: #fff;
  }

  .fix-ftr ul li.Download a {
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    font-family: 'Avenir LT Std';
    color: #fff; 
  }

  .fix-ftr ul li.Whatsapp {
    background: #2ba725;
    text-indent: -999px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fix-ftr ul li.Whatsapp a {
    background: url(../../assets/img/whatsapp.png) center no-repeat;
    width: 32px;
    height: 32px;
    display: inline-flex;
  }

  .gallery #portfolio-flters {
    margin: 0 0 30px 0;
    padding: 0;
  }

  .gallery #portfolio-flters li:hover, li.filter-active {
    background: #877a08 !important;
    color: #fff !important;
    border-bottom: 0 !important;
  }

  .gallery #portfolio-flters li {
    font-size: 18px;
    background: #EFEFEF;
    margin: 2px 0;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: left;
    width: 100%;
  }

  .facilites .accordion.accordion-flush {
    grid-gap: 30px;
    grid-template-columns: 1fr;
  }

}

@media only screen and (max-width: 320px) {
  .facilites .nav-tabs button {
    font-size: 14px;
    line-height: 24px;
  }

  .facilites .nav-tabs {
    grid-gap: 5px;
  }
}


/*privacy policy*/

.Privacy-cnt-wrapper h2 {
  font-size: 50px;
  font-family: 'Playfair Display';
  margin: 20px 0 50px 0;
  padding: 0;
  color: #877a08;
  position: relative;
}

.Privacy-cnt-wrapper dt {
  font-size: 23px;
  color: #020102;
  font-family: 'Avenir 85';
  margin: 0 0 12px 0;
}

.Privacy-cnt-wrapper dd {
  padding: 0 0 32px;
  margin: 0 0 32px;
  border-bottom: 1px solid #cac9ca;
}

.Privacy-cnt-wrapper dd.last {
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

.Privacy-cnt-wrapper dd p {
  font-size: 19px;
  line-height: 26px;
  margin: 0 0 15px 0;
  padding: 0;
  color: #020102;
}

.Privacy-cnt-wrapper dd p:last-child {
  margin: 0;
}

.Privacy-cnt-wrapper dd p a {
  color: #877a08;
}

.Privacy-cnt-wrapper dd p a:hover {
  color: #020102;
  text-decoration: underline;
}

.Privacy-cnt-wrapper dd ul {
  background: #F2F2F2;
  padding: 25px;
  margin: 20px 0;
  border-radius: 5px;
}

.Privacy-cnt-wrapper dd ul li {
  font-size: 19px;
  line-height: 26px;
  margin: 0 0 0 25px;
  padding: 5px 0 5px 0;
  color: #020102;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

.logo-mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .logo-mobile {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px;
    background: #fff;
    z-index: 9;
  }

  .logo-mobile img {
    width: 80px;
    margin: 0 auto;
    display: block;
  }

  .Privacy-cnt-wrapper dd p {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 10px 0;
    padding: 0;
    color: #020102;
  }

  .Privacy-cnt-wrapper dt {
    font-size: 22px;
    color: #020102;
    line-height: 28px;
    font-family: 'Avenir 85';
    margin: 0 0 10px 0;
  }

  .Privacy-cnt-wrapper dd {
    padding: 0 0 22px;
    margin: 0 0 22px;
    border-bottom: 1px solid #cac9ca;
  }

  .Privacy-cnt-wrapper dd ul {
    background: #F2F2F2;
    padding: 20px;
    margin: 15px 0;
    border-radius: 5px;
  }

  .Privacy-cnt-wrapper dd ul li {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 0 20px;
    padding: 4px 0 4px 0;
    color: #020102;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  .highlights .img-hover img {
    width: 130% !important;
    height: 100% !important;
    /* max-width: none; */
    object-fit: cover;
    margin: 0;
  }
}




/*landing*/

#landing {
  position: relative;
  height: 100vh;
  padding: 0;
  margin: 0;
}

#landing .hero-container {
  position: relative;
  z-index: 999;
  display: block;
  height: 100%;
}

#landing .full-data {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 470px;
  align-items: center;
}

#landing .full-data .left-img {
  background: url(../../assets/img/landing.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: 100%;
}

#landing .full-data .left-img:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

#landing .right-data img {
  width: 250px;
  margin: 0 auto 50px;
  display: block;
}

#landing .right-data h4 {
  font-size: 32px;
  font-family: 'Playfair Display';
  padding-bottom: 20px;
  color: #bb9c55;
  position: relative;
  text-align: center;
  text-transform: capitalize;
  margin: 0 auto 40px;
  font-weight: normal;
  line-height: 44px;
}

#landing .right-data h4:before {
  background: #bb9c55;
  height: 4px;
  width: 40px;
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -20px;
  bottom: -1px;
}

#landing .right-data .form-group {
  width: 100%;
  margin: 0 0 25px 0;
}

#landing .selldof .title {
  display: none;
}

#landing .right-data .form-group label {
  display: none;
  margin: 0;
  padding: 0 0 6px 0;
  color: #020102;
  font-size: 15px;
  font-weight: normal;
  font-family: 'Avenir';
}

#landing .right-data .form-group input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 0;
  background: #fff;
  border-bottom: 1px solid #cac9ca !important;
  box-shadow: none;
  border: 0;
  height: 50px;
  color: #020102;
  font-size: 16px;
  font-weight: normal;
  font-family: 'Avenir';
  border-radius: 0;
}

#landing .right-data .form-group .selldo-intl-tel-input.allow-dropdown input {
  padding-left: 50px;
}

#landing .right-data .form-group input:focus {
  outline: none;
  border: 0;
  box-shadow: none;
}

#landing .right-data .form-group input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #bb9c55;
  font-size: 16px;
  font-weight: normal;
  font-family: 'Avenir';
}

#landing .right-data .form-group input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #bb9c55;
  font-size: 16px;
  font-weight: normal;
  font-family: 'Avenir';
}

#landing .right-data .form-group input::-ms-input-placeholder { /* Microsoft Edge */
  color: #bb9c55;
  font-size: 16px;
  font-weight: normal;
  font-family: 'Avenir';
}

#landing .right-data .btn {
  width: 100% !important;
  height: 50px !important;
  text-align: center !important;
  background: #bb9c55 !important;
  text-align: center !important;
  border: 0 !important;
  font-size: 20px !important;
  font-family: 'Avenir LT Std' !important;
  font-weight: normal !important;
  text-transform: capitalize !important;
  color: #fff !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  box-shadow: 0 0 4px #ccc !important;
  letter-spacing: 1px !important;
  margin: 15px 0 0 !important;
}

#landing .right-data .btn:hover {
  background: #020102 !important;
}

#landing .right-data {
  background: rgba(254, 254, 254, 1);
  height: calc(100vh - 60px);
  padding: 30px 45px;
  z-index: 99;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#landing .right-data img {
  width: 250px;
  margin: 0 auto 30px;
  display: block;
}

#landing .right-data h2 {
  font-size: 24px;
  font-family: 'Playfair Display';
  padding-bottom: 0;
  color: #bb9c55;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  max-width: 300px;
  margin: 0 auto 20px;
  font-weight: normal;
  line-height: 32px;
}

#landing .right-data h2 span.text {
  display: block;
  text-transform: lowercase;
  font-style: italic;
  position: relative;
}

#landing .right-data h2 span.text span {
  background: #fff;
  padding: 0 10px;
  display: inline-block;
  position: relative;
  z-index: 99;
}

#landing .right-data h2 span.text span:after {
  display: none;
}

#landing .right-data h2 span:after {
  background: #bb9c55;
  height: 1px;
  left: 0;
  width: 100%;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -0.5px;
}

.welcome-landmark .section-title h2 {
  margin-bottom: 50px;
  color: #bb9c55;
}

.welcome-landmark .icon img {
  width: 150px;
  margin: 0 auto 50px;
}

.welcome-landmark {
  text-align: center;
}

.welcome-landmark ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}

.welcome-landmark h3 {
  font-size: 30px;
  font-family: 'Playfair Display';
  color: #020102;
  position: relative;
  text-align: center;
  font-weight: 500;
  line-height: normal;
  margin: 0 auto;
  padding: 0 0 50px 0;
  display: block;
}

.welcome-landmark ul li {
  list-style: none;
  margin: 0;
  padding: 6px;
  color: #020102;
  font-size: 18px;
  font-family: 'Avenir';
  font-weight: 400;
  position: relative;
  background: #F2F2F2;
  text-align: left;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.welcome-landmark ul li span {
  display: flex;
  background: #bb9c55;
  color: #fff;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.welcome-landmark ul li:hover {
  background: #bb9c55;
  color: #fff;
}

.welcome-landmark ul li:hover span {
  background: #fff;
  color: #020102;
}

@media screen and (max-width: 768px) {
  #landing .full-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  #landing .right-data {
    padding: 10px;
    height: auto;
  }

  #landing .right-data h4 {
    font-size: 28px;
    line-height: 38px;
    padding: 0 15px 20px;
    margin: 0 auto 25px;
  }

  .welcome-landmark .section-title h2 {
    font-size: 31px;
    margin: 0;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  #landing .full-data {
    display: grid;
    grid-template-columns: 1fr;
  }

  #landing .full-data .left-img {
    height: 250px;
    width: 100%;
    background: url(../../assets/img/landing_mobile_img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
  }

  #landing .right-data img {
    width: 110px;
    margin: 0 auto 10px;
  }

  #landing .right-data button {
    margin: 5px 0 0;
  }

  #landing {
    height: auto;
  }

  #landing .right-data h4 {
    font-size: 22px;
    line-height: 32px;
    margin: 0 auto 15px;
  }

  .welcome-landmark .section-title h2 {
    font-size: 24px;
    line-height: normal;
    margin: 0;
    padding: 0;
  }

  .welcome-landmark {
    padding: 30px 0;
  }

  #landing .right-data .form-group {
    width: 100%;
    margin: 0 0 15px 0;
  }

}


.contactform .section-title h2 {
  font-size: 50px;
  margin-bottom: 30px;
  font-family: 'Playfair Display';
  padding-bottom: 0;
  color: #877a08;
  position: relative;
  z-index: 2;
}

.contactform .section-title p {
  padding: 0;
  font-size: 27px;
  margin: 0 auto;
  padding: 0 0 50px 0;
  color: #020102;
  max-width: 680px;
}

.contactform .selldof .title {
  display: none;
}

.contactform .selldof label {
  display: none;
}

.contactform .form-group label {
  display: none;
  margin: 0;
  padding: 0 0 6px 0;
  color: #020102;
  font-size: 15px;
  font-weight: normal;
  font-family: 'Avenir';
}

.contactform .form-group input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 0;
  background: transparent;
  border-bottom: 1px solid #cac9ca !important;
  box-shadow: none;
  border: 0;
  height: 50px;
  color: #020102;
  font-size: 16px;
  font-weight: normal;
  font-family: 'Avenir';
  border-radius: 0;
}

.contactform .form-group .selldo-intl-tel-input.allow-dropdown input {
  padding-left: 50px;
}

.contactform .form-group input:focus {
  outline: none;
  border: 0;
  box-shadow: none;
}

.contactform .form-group input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #bb9c55;
  font-size: 16px;
  font-weight: normal;
  font-family: 'Avenir';
}

.contactform .form-group input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #bb9c55;
  font-size: 16px;
  font-weight: normal;
  font-family: 'Avenir';
}

.contactform .form-group input::-ms-input-placeholder { /* Microsoft Edge */
  color: #bb9c55;
  font-size: 16px;
  font-weight: normal;
  font-family: 'Avenir';
}

.contactform .btn {
  width: 100% !important;
  height: 50px !important;
  text-align: center !important;
  background: #bb9c55 !important;
  text-align: center !important;
  border: 0 !important;
  font-size: 20px !important;
  font-family: 'Avenir LT Std' !important;
  font-weight: normal !important;
  text-transform: capitalize !important;
  color: #fff !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  letter-spacing: 1px !important;
  margin: 15px 0 0 !important;
}

.contactform .btn:hover {
  background: #020102 !important;
}

.contactform .form-section {
  max-width: 600px;
  margin: 0 auto;
}

.contactform {
  background: #f8f8f8;
}

@media screen and (max-width: 767px) {
  .contactform .section-title p {
    font-size: 16px;
    padding: 0 0 20px 0;
  }

  .selldof_field-container {
    padding: 0 !important;
  } 
}

.instructions {
  text-align:center;
  font-size:20px;
  margin: 15vh;
}  

.delayedPopupWindow:before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #000000;
  opacity: .95;
  filter: alpha(opacity=95);
  -moz-opacity: .95;
  z-index: 9999;
  content: "";
}

.delayedPopupWindow {
  display: none !important;
}

.delayedPopupWindow .popup-detail {
  position: fixed;
  width: 850px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-color: #fff;
  border-radius: 0;
  z-index: 9999;
  padding: 0;
}

#btnClose {
  width: 35px;
  height: 35px;
  display: flex;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #bb9c55;
  position: absolute;
  top: 0;
  right: 0;
  font-family: 'Avenir LT Std';
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 99999 !important;
}

#delayedPopup > div.formDescription {
  float: left;
  display: block;
  width: 44%;
  padding: 1% 3%;
  font-size: 18px;
  color: #666;
  clear: left;
}

#delayedPopup #mc_embed_signup {
  float: left;
  display: block;
}

#delayedPopup #mc_embed_signup .form-section .full {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

#delayedPopup #mc_embed_signup .form-section .full .left img {
  height: 100%;
  object-fit: cover;
}

#delayedPopup #mc_embed_signup .form-section .full .right {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  padding: 20px 45px;
}

#delayedPopup #mc_embed_signup .form-section .full .right > div {
  width: 100%;
}

#delayedPopup #mc-embedded-subscribe-form input {
  width: 100%;
}

#delayedPopup #mc-embedded-subscribe {
  width: 100%!important;
  height: 40px!important;
  margin: 10px auto 0 auto;
  background: #5D9E62;
  border: none;
  color: #fff;
}

#delayedPopup #mc-embedded-subscribe:hover {
  background: #40c348;
  color: #fff;
  box-shadow:none!important;
  cursor: pointer;
}

#delayedPopup .selldof .title {
  display: none !important;
}

#delayedPopup .form-group input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 0;
  background: #fff;
  border-bottom: 1px solid #cac9ca !important;
  box-shadow: none;
  border: 0;
  height: 50px;
  color: #020102;
  font-size: 16px;
  font-weight: normal;
  font-family: 'Avenir';
  border-radius: 0;
}

#delayedPopup .form-group .selldo-intl-tel-input.allow-dropdown input {
  padding-left: 50px;
}

#delayedPopup .form-group input:focus {
  outline: none;
  border: 0;
  box-shadow: none;
}

#delayedPopup .form-group input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #bb9c55;
  font-size: 16px;
  font-weight: normal;
  font-family: 'Avenir';
}

#delayedPopup .form-group input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #bb9c55;
  font-size: 16px;
  font-weight: normal;
  font-family: 'Avenir';
}

#delayedPopup .form-group input::-ms-input-placeholder { /* Microsoft Edge */
  color: #bb9c55;
  font-size: 16px;
  font-weight: normal;
  font-family: 'Avenir';
}

#delayedPopup .btn {
  width: 100% !important;
  height: 50px !important;
  text-align: center !important;
  background: #bb9c55 !important;
  text-align: center !important;
  border: 0 !important;
  font-size: 20px !important;
  font-family: 'Avenir LT Std' !important;
  font-weight: normal !important;
  text-transform: capitalize !important;
  color: #fff !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  letter-spacing: 1px !important;
  margin: 15px 0 0 !important;
}

#delayedPopup .btn:hover {
  background: #020102 !important;
}

#delayedPopup .sell_do_form_container {
  width: 100%;
}

#delayedPopup .sell_do_form_container .selldof_field-container {
  padding: 0 !important;
}

#delayedPopup .selldof label {
  display: none !important;
}

#delayedPopup #mc_embed_signup .form-section .full .right h2 {
  font-size: 30px;
  font-family: 'Playfair Display';
  color: #bb9c55;
  position: relative;
  text-align: center;
  text-transform: capitalize;
  margin: 0 auto 20px;
  font-weight: normal;
}

#delayedPopup #mc_embed_signup .form-section .full .right p {
  font-weight: 500;
  font-family: 'Avenir';
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  margin: 0 0 10px 0;
  padding: 0;
}

@media screen and (max-width: 992px) {
  .delayedPopupWindow .popup-detail {
    width: 60%;
  }

  #delayedPopup #mc_embed_signup .form-section .full .left img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    position: relative;
  }

  #delayedPopup #mc_embed_signup .form-section .full {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .delayedPopupWindow .popup-detail {
    width: 95%;
  }

  #delayedPopup #mc_embed_signup .form-section .full .left img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    position: relative;
  }

  #delayedPopup #mc_embed_signup .form-section .full {
    display: grid;
    grid-template-columns: 1fr;
  }

  #delayedPopup #mc_embed_signup .form-section .full .right {
    padding: 20px;
  }

  #hero .carousel-item {
    height: calc(100vh - 188px);
  }

  #hero .carousel-indicators {
    margin-bottom: 2rem;
  }
  
  .selldof .form-group {
    margin-bottom: 10px !important;
    text-align: left;
    }
}


@media screen and (max-width: 320px) {
  .delayedPopupWindow .popup-detail {
    width: 95%;
  }

  #delayedPopup #mc_embed_signup .form-section .full .left img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    position: relative;
  }

  #delayedPopup #mc_embed_signup .form-section .full {
    display: grid;
    grid-template-columns: 1fr;
  }

  #delayedPopup #mc_embed_signup .form-section .full .right {
    padding: 20px 20px 10px;
  }

  #delayedPopup .btn {
    margin: 0 !important;
  }

  #delayedPopup #mc_embed_signup .form-section .full .right h2 {
    font-size: 22px;
  }
}



.youtube-lan-page {
  background: #fff;
}

.youtube-landing-page .slider--heading img {
  margin: 0 auto 50px;
  display: block;
  width: 200px;
  top: auto;
}

.youtube-landing-page .slider--heading {
  position: relative;
}

.youtube-landing-page .slider--heading:after {
  width: 40px;
  height: 3px;
  left: 50%;
  margin-left: -20px;
  position: absolute;
  bottom: -20px;
  content: "";
  background: #877a08;
}

.youtube-landing-page {
  background: #f8f8f8;
  padding: 50px 50px;
  border-radius: 20px;
}

.youtube-landing-page .title {
  font-size: 35px;
  margin-bottom: 30px;
  font-family: 'Playfair Display';
  padding-bottom: 0;
  color: #877a08;
  position: relative;
  text-align: center;
}

.youtube-landing-page .title a {
  background-color: #0dc143;
  color: #fff;
  margin: 15px auto 0;
  font-size: 18px;
  display: block;
  max-width: 180px;
  border-radius: 5px;
  text-align: center;
  letter-spacing: 0;
  padding: 0;
  font-family: 'Avenir LT Std';
  height: 48px;
  line-height: 48px;
}

.youtube-landing-page .img-block ul {
  margin: 60px 0 0;
  border-top: 1px solid #e9e9e9;
  padding: 60px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

.youtube-landing-page .img-block li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.youtube-landing-page .img-block li .img {
  border-radius: 10px;
  overflow: hidden;
}

.youtube-landing-page .img-block li .img img {
  width: 100%;
}

.youtube-landing-page .img-block li a {
  background-color: #0dc143;
  color: #fff;
  margin: 15px auto 0;
  font-size: 18px;
  display: block;
  max-width: 180px;
  border-radius: 5px;
  text-align: center;
  letter-spacing: 0;
  padding: 0;
  font-family: 'Avenir LT Std';
  height: 48px;
  line-height: 48px;
}

@media screen and (max-width: 767px) {
  .youtube-landing-page {
    padding: 30px;
  }

  .youtube-landing-page .title {
    font-size: 27px;
    line-height: 36px;
  }

  .youtube-landing-page .title a {
    font-size: 14px;
    max-width: 185px;
  }

  .youtube-landing-page .img-block ul {
    grid-template-columns: 1fr;
    margin: 40px 0 0;
    padding: 40px 0 0;
  }

  .youtube-landing-page .img-block li a {
    font-size: 14px;
    max-width: 185px
  }
}

.whatspp-page-wrapper {
  background: #fff;
}

.whatspp-page-wrapper .wrap {
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.whatspp-page-cnt {
  text-align: center;
  margin: 0;
}

.whatsapp-page-logo {
  margin: 30px 0;
}

.whatspp-page-cnt a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  gap: 10px;
}

.whatspp-page-cnt span {
  background: url(../../assets/img/whatsapp_icon1.svg) center no-repeat;
  width: 45px;
  height: 45px;
  background-size: 45px 45px;
  text-indent: -9999px;
  display: inline-flex;
}

.whatspp-page-cnt-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: #2ba725;
  width: 190px;
  color: #fff;
  font-size: 18px;
  padding: 8px 10px;
  border-radius: 10px;
  margin: 35px auto 0;
}

.whatspp-page {
  margin: 60px auto;
  padding: 0;
}

.whatsapp-page-logo {
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.whatsapp-page-logo img {
  margin: 0 auto;
  width: 350px;
  display: block;
  padding: 0
}

.whatspp-page-wrapper .fix-ftr ul {
  grid-template-columns: 1fr;
}
/* footer polish */
#footer .footer-top .social-links a,
#footer .footer-top .social-links a:hover {
  background: none;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
}
#footer .footer-top .social-links a { color: #232323; font-size: 26px; }
#footer .footer-top .social-links a:hover { color: #877A08; }
.ftr-data .call a i { margin-right: 6px; }
#footer .footer-btm li.powered { white-space: nowrap; }
@media only screen and (max-width: 767px) {
  #footer .footer-btm li.powered { display: none; }
}
@media only screen and (max-width: 767px) {
  #footer .footer-btm { padding-bottom: 90px; }
}

/* footer redesign */
.ftr-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding: 10px 0;
}
.ftr-grid .ftr-col { max-width: 360px; text-align: left; }
.ftr-grid h4 {
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #877A08;
  margin: 0 0 12px;
  font-family: 'Avenir';
  font-weight: 800;
}
.ftr-grid a, .ftr-grid p {
  color: #232323;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
  font-family: 'Avenir';
}
.ftr-grid a:hover { color: #877A08; text-decoration: none; }
.ftr-grid .ftr-col i { color: #877A08; margin-right: 6px; }
#footer .footer-top .ftr-grid .social-links { justify-content: flex-start; }
#footer .footer-top .ftr-grid .social-links a { color: #232323; }
#footer .footer-top .ftr-grid .social-links a i { color: #232323; margin: 0; }
#footer .footer-top .ftr-grid .social-links a:hover i { color: #877A08; }
@media only screen and (max-width: 767px) {
  .ftr-grid { flex-direction: column; gap: 28px; align-items: center; }
  .ftr-grid .ftr-col { text-align: center; }
  #footer .footer-top .ftr-grid .social-links { justify-content: center; }
}
#footer .footer-btm li.powered a { display: inline; }

/* footer v3 — icon badges + legal bar */
.ftr-grid { gap: 0; padding: 26px 0 30px; justify-content: center; }
.ftr-grid .ftr-col {
  flex: 1;
  max-width: 400px;
  padding: 6px 44px;
  border-left: 1px solid #ddd;
}
.ftr-grid .ftr-col:first-child { border-left: 0; }
.ftr-head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.ftr-head h4 { margin: 0; }
.ftr-ico {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #877A08;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: none;
}
.ftr-ico i { color: #fff; margin: 0; }
.ftr-body { margin-left: 66px; }
.ftr-body p, .ftr-body a { line-height: 1.75; }
#footer .footer-btm ul.ftr-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 6px 0;
}
#footer ul.ftr-legal li {
  font-size: 15px;
  color: #555;
  font-family: 'Avenir';
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}
#footer ul.ftr-legal li a { color: #555; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
#footer ul.ftr-legal li a:hover { color: #877A08; }
#footer ul.ftr-legal li .bi-shield-check { color: #877A08; font-size: 18px; }
#footer ul.ftr-legal .artea { font-weight: 800; color: #232323; }
#footer ul.ftr-legal .chev { display: none; }
@media only screen and (min-width: 768px) {
  #footer ul.ftr-legal li + li { border-left: 1px solid #ccc; padding-left: 28px; }
}
@media only screen and (max-width: 767px) {
  .ftr-grid { padding: 10px 0 16px; }
  .ftr-grid .ftr-col {
    max-width: 100%;
    width: 100%;
    border-left: 0;
    border-top: 1px solid #ddd;
    padding: 22px 6px 4px;
    text-align: left;
  }
  .ftr-grid .ftr-col:first-child { border-top: 0; }
  #footer .footer-top .ftr-grid .social-links { justify-content: flex-start; }
  #footer .footer-btm ul.ftr-legal { flex-direction: column; align-items: stretch; }
  #footer ul.ftr-legal li { border-top: 1px solid #ccc; padding: 13px 6px; }
  #footer ul.ftr-legal li:first-child { border-top: 0; }
  #footer ul.ftr-legal .chev { display: inline-block; margin-left: auto; color: #555; }
  #footer ul.ftr-legal li.pp a { width: 100%; }
}
.ftr-grid .ftr-col .ftr-ico i { color: #fff; margin: 0; }
