/*Navbar Start*/
.header {
  background-color: rgb(253, 169, 124);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.active {
  background-color: #938d8d;
  animation: slide-down 0.9s;
}

.inner-header {
  align-items: center;
}

.header .container {
  padding: 0;
}

@keyframes slide-down {
  from {
    opacity: 1;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.logo img {
  max-height: 40px;
}

.navmenu {
  margin: auto 0 auto auto;
}

.navmenu li {
  padding: 8px 10px;
}

.navmenu li a {
  font-size: 16px;
  color: var(--white);
}


/*Overview Start*/
.overview-container {
  padding-bottom: 90px;
  padding-top: 90px;
  position: relative;
  z-index: 0;
  background: url(../images/others/img3.png);
}

.overview-container .container {
  position: relative;
  z-index: 1;
}

.overview-container .pera {
  margin-bottom: 17px;
  margin-top: 15px;
  letter-spacing: 1px;
  line-height: 27px;
  font-size: 15px;
}

.overview-container .custombtn {
  padding: 8px 26px;
  overflow: hidden;
}

.overview-container .custombtn img {
  width: 23px;
  margin-left: 10px;
  animation: arrow-down 1.5s infinite ease-in-out;
}

.overview-container .custombtn:hover img {
  filter: brightness(5.5);
}

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

.overview-container .imgdiv::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4%;
  height: 23%;
  width: 21%;
  background: url(../images/icons/vectorimg.png);
  z-index: -1;
}

.overview-container .topimg {
  box-shadow: var(--shadow);
  border: 15px solid var(--white);
  width: 74%;
}

.overview-container .bottomimg {
  position: absolute;
  right: 0%;
  bottom: 0;
  border: 15px solid var(--white);
  box-shadow: var(--shadow);
  width: 62%;
}

.overview-container .yrExpdiv {
  margin-top: 19px;
  height: 138px;
  width: 176px;
  background: var(--white);
  position: relative;
  box-shadow: 0px 4px 63px 0px rgba(15, 28, 51, 0.1);
  flex-direction: column;
}

.overview-container .yrExpdiv .years {
  font-size: 35px;
  color: var(--gold);
  font-weight: 600;
}

.overview-container .yrExpdiv .text {
  font-size: 20px;
  text-transform: capitalize;
}

/*Overview End*/

/* .highlights-contaier */
.highlights-contaier {
  padding: 90px 0;
  background: var(--black);
  position: relative;
  color: var(--white);
}

.highlights-contaier .commonPattern {
  right: 0;
  width: 100%;
  background: transparent;
  opacity: 0.1;
  background-image: url(../images/others/sections-bg.png);
  background-repeat: no-repeat;
  background-position: right;
}

.highlights-contaier .wrap-left {
  height: fit-content;
  position: sticky;
  top: 92px;
}

.highlights-contaier .headings-div {
  margin-bottom: 25px;
}

.highlights-contaier .common-heading {
  font-size: 32px;
}

.highlights-contaier .desc {
  font-size: 16px;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.highlights-contaier .custombtn {
  padding: 10px 45px;
}

.highlights-contaier .common-box {
  border-bottom: 1px solid #eee;
}

.highlights-contaier .common-box:last-child {
  border-bottom: 0;
}

.highlights-contaier .text-div {
  padding: 17px 40px;
  width: 86%;
  border-left: 1px solid #eee;
}

.highlights-contaier .num {
  font-size: 34px;
  margin-bottom: 0;
  display: block;
  opacity: 0.5;
  min-width: 60px;
}

.highlights-contaier .text {
  font-size: 18px;
}

/* End .highlights-contaier */
/*Price List Start*/
.pricelist-container {
  padding: 90px 0;
  background-position: 100%;
  animation: wave-bg 7s infinite alternate;
  border-top: 0.02px solid #eeeeee7d;
  background: #eee url(../images/others/background-img.png) no-repeat bottom;
}

.pricelist-container .tabs {
  border: 1px solid var(--primary);
  border-radius: 50px;
  width: fit-content;
  overflow: hidden;
  margin-bottom: 50px;
}

.pricelist-container .tab-link {
  padding: 8px 45px;
  color: var(--primary);
  display: block;
  transition: all 0.4s ease-in-out;
}

.pricelist-container .tabs .tab-link.active,
.pricelist-container .tabs .tab-link:hover {
  background: var(--secondary);
  color: var(--white);
}

.pricingbox {
  gap: 35px;
  margin-top: 45px;
}

.pricingbox .box {
  padding: 70px 25px;
  border: 1px solid #f3e7dc;
  width: calc(33% - 20px);
  text-align: center;
  background: #ffffff57;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
}

.pricingbox .box:hover {
  box-shadow: var(--shadow);
  margin-top: -15px;
}

.pricingbox .heading {
  font-size: 27px;
  font-family: "Montserrat";
  margin-bottom: 25px;
}

.pricingbox .price,
.pricingbox .sizes {
  display: flex;
  align-items: center;
  gap: 0 5px;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 18px;
}

.pricingbox .price {
  flex-wrap: wrap;
}

.pricingbox .price strong,
.pricingbox .sizes strong {
  font-size: 18px;
}

.pricingbox .custombtn {
  padding: 10px 45px;
}

/*Price List End*/
/*Floor And Master Plan Start*/
.floorplan-container {
  padding: 90px 0;
  color: var(--black);
}

.floorplan-container .flex-plans-div {
  gap: 30px 0;
}

.floorplan-container .plans-box {
  padding: 15px;
}

.floorplan-container .inner-col {
  border: 3px solid var(--primary);
}

.floorplan-container .floor-img {
  padding: 5px;
}

.floorplan-container .typo {
  font-size: 26px;
  text-transform: uppercase;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  width: 100%;
  display: block;
}

.floorplan-container .positiondbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: var(--white);
  padding: 8px 26px;
  border: 0;
  font-size: 16px;
  box-shadow: var(--shadow);
  text-transform: capitalize;
  border-radius: 4px;
}

.floorplan-container .positiondbtn:hover {
  margin-top: -8px;
}

.floorplan-container .headings {
  margin-bottom: 45px;
}

.floorplan-container::after {
  background: url('../images/bg-floor.webp');
  opacity: 0.4;
}

/*Floor And Master Plan End*/

/*Amenities Start*/
.amenities-container {
  padding: 70px 0;
  position: relative;
}

.amenities-container .patterndiv {
  background: url(../images/others/vector.jpg);
  background-repeat: repeat;
  background-size: contain;
  /* opacity: 0.1; */
}

.amenities-container .head {
  margin-bottom: 45px;
  display: grid;
  justify-content: center;
}

.amenities-container .head .common-title {
  margin: 0 auto 10px auto;
}

.amenities-container .wrapper {
  max-width: 95%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gridAme {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  justify-content: center;
  align-items: center;
  gap: 80px;
  max-width: 74%;
  margin: 0 auto;
}

.gridAme .imgbox:first-child {
  grid-area: 1/ 1/ 3/ 2;
}

.gridAme .imgbox:nth-child(4) {
  grid-area: 1/ 4/ 3/ 5;
}

.amenities-container .imgbox {
  position: relative;
  margin: 0;
  margin-bottom: 0;
}

.amenities-container .am-images {
  filter: brightness(0.7);
  width: 100%;
  object-fit: cover;
}

.amenities-container .fig-cap {
  position: absolute;
  bottom: 50%;
  backdrop-filter: blur(5px);
  background: #ffffffbd;
  padding: 7px 14px;
  display: block;
  border-radius: 3px;
  left: -21%;
  box-shadow: var(--shadow);
  text-transform: capitalize;
}


/*Amenities End*/

/*Location Start*/
.location-container {
  padding: 90px 0;
  background: var(--white);
  height: 100%;
}

.location-container .headings {
  margin-bottom: 40px;
}

.location-container .listng_ul {
  margin-top: 35px;
}

.location-container .mapwrapper {
  height: 100%;
}

.location-container .lsit_li {
  font-size: 18px;
  padding-bottom: 57px;
  position: relative;
}

.location-container .lsit_li:last-child {
  padding-bottom: 0;
}

.location-container .lsit_li::after,
.location-container .lsit_li::before {
  position: absolute;
  content: "";
  height: 2px;
  background: var(--primary);
  top: -30px;
  left: 0;
  width: 100%;
}

.location-container .lsit_li::before {
  height: 28px;
  width: 2px;
  left: 30px;
}

.location-container .list_right {
  text-align: right;
}

.location-container .list_right::before {
  left: inherit;
  right: 30px;
}

.location-container .list_right::after {
  left: 0;
  right: inherit;
}

.location-container span.btn {
  color: var(--white);
  width: fit-content;
  background: var(--primary);
  margin: 0 auto;
  padding: 10px 15px;
  border-radius: 4px;
  border: 2px solid var(--primary);
  font-weight: 600;
  margin-top: 7px;
}

.location-container::after {
  background: url(../images/map-bg.webp);
  opacity: 0.05;
}

.location-container .imgdiv {
  position: sticky;
  height: fit-content;
  top: 15px;
}

/* .location-container .imgdiv {position: absolute;right: 15px;width: 50%;background: #fff;} */
/* .location-container .imgdiv:after {  content: "";position: absolute;left: 0;right: 0;top: 0;bottom: 0;height: 100%;width: 100%;background: radial-gradient(circle, rgb(255 255 255 / 0%) 30%, rgb(255 255 255) 59%, rgb(255 255 255) 62%, rgb(255 255 255) 100%);} */
.location-container .imgdiv_inner {
  width: 100%;
}

/*Location End*/

/*Gallery Start*/
.gallery-container {
  padding: 90px 0;
}

.gallery-container .headingsdiv {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
  padding-bottom: 25px;
}

.gallery-container .container {
  max-width: 100%;
}

.gallery-container .flex-div {
  justify-content: center;
  gap: 0 15px;
}

.gallery-container .gallay-img_tag {
  width: 17%;
  display: block;
  transition: all 0.5s ease-in-out;
}

.gallery-container .gallay-img_tag.active {
  width: calc(27% - 15px);
}

.gallery-container .gallay-img_tag.active img {
  filter: unset;
}

.gallery-container .gallay-img_tag img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: brightness(0.6);
  transition: all 0.4s ease-in-out;
}

/*Gallery End*/

@media (max-width: 1600px) {

  .overview-container .yrExpdiv {
    margin-top: -63px;
    left: 22px;
  }

  .overview-container .bottomimg {
    height: 65%;
  }

  /* .amenities-container .am-images{height: 267px;} */
  .gridAme {
    gap: 77px;
    max-width: 95%;
  }

  .gallery-container .gallay-img_tag img {
    height: 400px;
  }
}

@media (max-width: 1380px) {}

/* ipad Air and mini */
@media (max-width: 992px) {
  .header {
    padding: 2px 0;
  }

  .header .container {
    padding: 0 15px;
  }

  .navmenu {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    display: block !important;
    background: var(--black);
    width: 80%;
    transition: all 0.4s ease-in-out;
  }

  .navmenu.active {
    left: 0;
    background: var(--black);
  }

  .navmenu li a {
    font-size: 14px;
  }

  /* .highlights-contaier .wrap-left {width: 100%; position: unset; margin-bottom: 25px;}
  .highlights-contaier .commonPattern{background: unset;}
  .book-a-visit.active{position: unset; border-radius: 25px; padding: 5px 8px; z-index: 0;} */

  .overview-container .imgdiv {
    margin-top: 25px;
  }

  .pricingbox .box {
    width: calc(49% - 20px);
  }

  .floorplan-container .typo {
    font-size: 20px;
  }

  .gallery-container .headingsdiv {
    padding-left: 15px;
  }

  .gallery-container .flex-div {
    gap: 15px;
  }

  .gallery-container .gallay-img_tag {
    flex: 1 0 30%;
  }

  .gallery-container .gallay-img_tag img {
    height: 280px;
  }
}

@media (max-width: 767px) {

  .overview-container {
    padding: 30px 0;
    margin-top: 0;
  }

  .overview-container .cols {
    padding: 0;
  }

  /* .overview-container .bottomimg {height: 65%;} */
  .overview-container .custombtn {
    width: fit-content;
    display: block;
    margin: 0 auto;
  }

  .overview-container .pera {
    margin-bottom: 11px;
    font-size: 14px;
    text-align: center;
    line-height: 25px;
  }

  .highlights-contaier {
    padding: 30px 0;
  }

  .highlights-contaier .common-heading {
    font-size: 26px;
  }

  .highlights-contaier .desc {
    font-size: 14px;
  }

  .highlights-contaier .num {
    font-size: 27px;
  }

  .highlights-contaier .text-div {
    padding: 4px 16px;
  }

  .highlights-contaier .icon {
    width: 57px;
    height: 35px;
    padding: 0 10px;
  }

  .highlights-contaier .text {
    font-size: 14px;
  }

  .highlights-contaier .common-box {
    border-bottom: 1px solid #eee !important;
  }

  .highlights-contaier .custombtn {
    margin: 0 auto;
    padding: 4px 50px;
  }

  .highlights-contaier .wrap-left {
    text-align: center;
    position: static;
    margin-bottom: 25px;
  }

  .highlights-contaier .wrap-left,
  .highlights-contaier .points-div,
  .highlights-contaier .bottom-flex {
    padding: 0;
  }

  .amenities-container {
    padding: 30px 0;
  }

  .amenities-container .wrapper {
    padding: 0 15px;
    width: 100%;
  }

  .amenities-container .head {
    margin-bottom: 15px;
    padding: 0;
  }

  .amenities-container .am-images {
    height: 196px;
  }

  .amenities-container .fig-cap {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    text-align: center;
    background: #ffffff5c;
    color: var(--white);
    font-size: 13px;
  }

  .gridAme {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 5px;
  }

  .amenities-container .imgbox {
    width: 49%;
  }

  .pricelist-container {
    padding: 30px 0;
    background: #eee url(../images/others/background-img.png);
    animation-duration: 20s;
  }

  .pricelist-container .price strong,
  .pricelist-container .sizes strong {
    font-size: 24px;
  }

  .pricingbox .box {
    width: 100%;
    padding: 31px 13px;
  }

  .pricingbox .heading {
    font-size: 24px;
  }

  .location-container {
    padding: 30px 0;
  }

  .location-container .headings {
    margin-bottom: 15px;
  }

  .location-container .listng_ul {
    padding: 0;
  }

  .location-container .lsit_li {
    padding-bottom: 17px;
    font-size: 14px;
    text-align: left;
    padding-left: 45px;
    padding-bottom: 10px;
    background: url(../images/icons/map.svg) no-repeat 3px 5px;
    background-size: 23px;
    border-bottom: 1px solid #b7926c;
    margin-bottom: 6px;

    b {
      font-size: 16px;
    }
  }

  .location-container .lsit_li::before,
  .location-container .lsit_li::after {
    display: none;
  }

  /* .location-container .lsit_li::after {height: 12px;width: 12px;border-radius: 50px;top: 5px;left: 15px;animation: zoom_circle infinite 2s;transform: scale(1.2);} */
  .location-container .imgdiv {
    margin: 15px 0;
  }

  .location-container .imgdiv img {
    width: 137px;
  }

  .location-container span.btn {
    padding: 6px 11px;
    font-size: 14px;
    font-weight: normal;
  }

  .floorplan-container {
    padding: 30px 0;
  }

  .gallery-container {
    padding: 30px 0;
  }

  .gallery-container .gallay-img_tag {
    flex: 1 0 47%;
  }

  .gallery-container .gallay-img_tag.active {
    flex: 1 0 100%;
  }

  .gallery-container .gallay-img_tag img {
    height: 227px;
  }

  .contact-section .right-col {
    padding: 0;
  }

  .contact-section .from-col {
    margin-top: 15px;
    padding: 0;
  }

  .sitefooter {
    padding-bottom: 80px;
  }
}

/* All Keyframes */
@keyframes zoomOutEffect {
  from {
    transform: scale(1.2);
  }

  to {
    transform: scale(1);
  }
}

@keyframes btnborder {
  50% {
    border-color: var(--primary);
    background: #00000054;
  }
}

@keyframes fixedbtn {
  50% {
    background: var(--black);
    border-color: var(--white);
    color: var(--white);
  }
}

@keyframes headingColor {
  50% {
    color: var(--white);
  }
}

@keyframes arrow-down {
  from {
    transform: translateY(-30px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes wave-bg {
  from {
    background-position: 90%;
  }

  to {
    background-position: 71%;
  }
}

@keyframes zoom_circle {
  50% {
    transform: scale(1.1);
  }
}

@keyframes wave {
  0% {
    background-position: 0% bottom;
  }

  50% {
    background-position: 50% bottom;
  }

  100% {
    background-position: 100% bottom;
  }
}



 .map-responsives {
    position: relative;
    max-width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px; /* optional */
  }

  .map-responsives iframe {
    position: absolute;
    top: 0;
    left: 0;
    max-width:100%;
    height: 100%;
    border: 0;
  }
