@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
    --green: #48b18a;
    --gray: #19191b;
    --lightgreen: #191f2f;
    --gold: #cba857;
    --golden-grad: linear-gradient(45deg, #BF953F, #ddcb13, #cf9e34, #dad282, #AA771C);
    --golden-grad2: linear-gradient(45deg, #BF953F, #FCF6BA, #AA771C);
}

html {
    scroll-behavior: smooth;
}

body {
    color: #fff;
    background-color: #131a2b;
    font: 400 14px/1.4 "Outfit", sans-serif;
    overflow-x: hidden;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

a:hover {
    text-decoration: none;
}

img {
    width: 100%;
}

.gap-row {
    row-gap: 30px;
}

@media (max-width: 575px) {
    .gap-row {
        row-gap: 15px;
    }
}

.bright100 {
    -ms-filter: brightness(50);
    filter: brightness(50);
}

/*header*/

header {
    width: 100%;
    padding: 0px 20px;
    background-color: #fff;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    z-index: 999;
    transition: all 300ms ease-in-out;
}

.logo {
    width: 120px;
    position: relative;
    min-height: 1px;
    transition: all 300ms ease-in-out;
    overflow: hidden;
}

.logo img {
    image-rendering: -webkit-optimize-contrast;
    transition: all 300ms ease-in-out;
}

.mainHeader {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.headerRight {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.headerBtns {
    display: flex;
}

header.scrl .headerBtns .btn {
    height: 30px;
    font-size: 13px;
}

.headerBtns .btn.btn-gold:hover {
    color: #fff;
}

.headerBtns .btn.btn-gold::after {
    background-color: var(--gray);
}

header .mainHeader .navi>ul {
    display: flex;
    align-items: center;
}

header .mainHeader .navi>ul>li {
    position: relative;
}

header .mainHeader .navi>ul>li>a {
    color: var(--gray);
    padding: 15px 12px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    transition: all 300ms ease-in-out;
    position: relative;
    z-index: 1;
}

header .mainHeader .navi>ul>li>a:hover {
    color: var(--lightgreen);
}

.menuBtn {
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    width: 25px;
    height: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out;
    position: relative;
    cursor: pointer;
}

.menuBtn span {
    display: block;
    position: relative;
    width: 100%;
    height: 2px;
    margin: 2px 0;
    transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray);
    transform-origin: center center;
    transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn.closeMenuBtn span#menuLine1 {
    -webkit-transform: rotate(45deg) translate(5px, 4px);
    transform: rotate(45deg) translate(5px, 4px);
}

.menuBtn.closeMenuBtn span#menuLine2 {
    right: 100px;
}

.menuBtn.closeMenuBtn span#menuLine3 {
    -webkit-transform: rotate(-45deg) translate(4px, -4px);
    transform: rotate(-45deg) translate(4px, -4px);
}

.menuContainer {
    position: fixed;
    top: 0;
    width: 90%;
    right: 0;
    bottom: 0;
    height: 100%;
    overflow: auto;
    background-color: #fff;
    padding: 70px 20px 20px;
    display: none;
    z-index: 99;
}

.menuContainer ul li a {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray);
    padding: 10px;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

header.scrl {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

header.scrl .logo {
    width: 100px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    background-color: #fff;
    min-width: 150px;
    height: 45px;
    font-size: 14px;
    letter-spacing: 1px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
    outline: none;
    z-index: 1;
}

.btn:focus {
    box-shadow: none;
    outline: none;
}

.btn-gray {
    color: #fff;
    background-color: var(--gray);
}

.btn-gold {
    color: #000;
    background: var(--golden-grad2);
}

.btn-gold:hover {
    color: #000;
}

.btn::before,
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.25);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    z-index: -1;
}

.btn::after {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    background-color: #fff;
}

.btn-gray::after {
    background-color: #fff;
}

.btn-gold:before {
    background-color: rgba(0, 0, 0, 0.25);
}

.btn.btn-white::after {
    background-color: #1c1c22;
}

.btn:hover::before,
.btn:hover::after {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.btn-white {
    color: var(--gray);
    background-color: #fff;
}

.btn-white:hover {
    color: #fff;
}

.btn.btn-white::before {
    background-color: rgba(0, 0, 0, 0.15);
}

.btn.btn-white-hover::before {
    background-color: rgba(31, 135, 112, 0.6);
}

.btn.btn-whatsapp {
    min-width: 45px;
    color: #fff;
    background-color: #18ad3a;
}

.btn.btn-whatsapp i {
    font-size: 25px;
}

.banner {
    width: 100%;
    height: 100vh;
    position: relative;
    background: #000;
    z-index: 1;
}

.banner .carousel-inner,
.banner .carousel-inner .carousel-item {
    position: relative;
    height: 100%;
}

.banner .carousel-inner .carousel-item {
    background: var(--gray) center no-repeat;
    background-size: cover;
    transition-duration: 1s;
    position: relative;
    z-index: 1;
}

.banner .carousel-inner .carousel-item::before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    top: 0;
    /* background: rgb(0 0 0 / 50%); */
    z-index: -1;
}

.banner .carousel-inner .carousel-item img {
    height: 100%;
    object-fit: cover;
}

.slider-content {
    width: 45%;
    position: absolute;
    left: 40px;
    bottom: 20px;
    z-index: 9;
    padding: 15px;
    text-align: center;
    background-color: rgb(0 0 0 / 50%);
    box-shadow: 4px 4px 0 0 rgb(189 149 65 / 70%);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.slider-content h1 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2.5vw;
}

.slider-content h5 {
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 15px;
    margin-bottom: 4px;
    padding: 5px 10px;
    border: 1px solid rgb(255 255 255 / 30%);
    display: inline-block;
}

.scrollDown {
    position: absolute;
    left: 5vw;
    bottom: 50px;
    padding-left: 20px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #fff;
    z-index: 9;
}

.scrollDown span {
    font-size: 13px;
    display: inline-block;
}

.scrollDown i {
    position: absolute;
    left: 0;
    transform-origin: center center;
    font-size: 18px;
    z-index: 2;
    animation: updown 1.2s linear infinite;
}

@keyframes updown {
    0% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-10px);
    }
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.bg-lightgreen {
    background-color: var(--lightgreen) !important;
}

.bg-green {
    background-color: var(--green) !important;
}

.bg-gray {
    background-color: var(--gray) !important;
}

.text-green {
    color: var(--gold) !important;
}

.props {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.props.prop-tl {
    width: 20%;
    top: 0%;
    left: -2%;
    opacity: 0.1;
}

.props.prop-br {
    width: 60%;
    bottom: 0%;
    right: 0;
    background-color: #1f2624;
    opacity: 0.3;
}

.props.prop-br img {
    mix-blend-mode: screen;
    opacity: 0.1;
}

.position-relative {
    z-index: 1;
}

.bg-frwd-slash::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgb(75 75 75 / 10%);
    clip-path: polygon(100% 0, 100% 100%, 75% 50%);
    z-index: -1;
}

.heading-container {
    margin-bottom: 3.5rem;
}

.short-border {
    width: 100px;
    height: 3px;
    background-color: var(--red);
    border-radius: 10px;
    display: table;
    margin: 2rem auto 0;
}

.heading-container h6 {
    font-weight: 700;
    width: 70%;
    margin: 0 auto;
}

.heading {
    display: table;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.heading h2,
.heading h3 {
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 0;
    color: var(--gold);
    background: var(--golden-grad);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.paara {
    font-size: 135%;
    font-weight: 200;
}

.list li::marker {
    color: var(--gold);
}

.heading h5 {
    font-weight: 200;
    font-size: 1.4vw;
    text-transform: uppercase;
    margin-bottom: 0;
}

.overview-text-container .inner-box {
    width: 90%;
}

.row.flex-row-reverse .overview-text-container .inner-box {
    margin-right: 0;
    margin-left: auto;
}

.overview-text-container h5 {
    font-weight: 200;
}

.in-numbers {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3em;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.in-numbers li {
    margin-right: 5%;
    flex-grow: 1;
}

.in-numbers li:last-child {
    margin-right: 0;
}

.in-numbers li h2 {
    display: flex;
    align-items: flex-end;
}

.in-numbers li h2 small {
    font-size: 60%;
    margin: 0 10px;
}

.in-numbers li h6 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 4px;
}

.img-wrap {
    position: relative;
    z-index: 1;
}

.img-fluid.h-100 {
    object-fit: cover;
}

.img-wrap span {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 2px 10px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.walkghthrough .img-wrap {
    overflow: hidden;
}

.walkghthrough .img-wrap img {
    animation: zoom 35s linear infinite;
}

@keyframes zoom {
    50% {
        transform: scale(1.5);
    }
}

.walkghthrough p {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: rgb(0 0 0 / 20%);
    z-index: 9;
}

.walkghthrough a {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    line-height: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    text-align: center;
    background: var(--golden-grad2);
    color: #000;
    z-index: 2;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.walkghthrough a:hover {
    background: var(--golden-grad);
    outline: 1px solid var(--gold);
}

.readmore {
    width: 100%;
    display: flex;
    margin-top: 1.5rem;
}

.readmore.center {
    justify-content: center;
}

.readmore a {
    color: #fff;
}

.btnContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
}

.amenities-wrapper {
    background: url(../img/green-bg.jpg) center / cover no-repeat fixed;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.amenities-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 92%);
    backdrop-filter: grayscale(1);
    z-index: -1;
}

.amenities-text-container {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

h5 {
    font-weight: 200;
}

.amenities-text-container ul {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.amenities-text-container ul li {
    width: 200px;
    margin: 0 1px;
    padding: 20px;
    backdrop-filter: brightness(1.3) blur(2px);
}

.amenities-text-container ul li .img-wrap img {
    max-width: 70px;
    margin: 0 auto 10px;
}

.amenities-text-container ul li span {
    display: block;
    text-transform: uppercase;
}

.layoutSlider,
.laybox {
    width: 100%;
    position: relative;
}

.layimg {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #1b2233;
}

.layimg a {
    display: block;
    width: 100%;
}

.layimg img {
    display: block;
    mix-blend-mode: lighten;
    max-width: 80%;
    margin: 0 auto;
    transition: all 300ms ease-in-out;
}

.layimg img:hover {
    cursor: pointer;
}

.laydets {
    width: 100%;
    text-align: center;
    margin-left: 10px;
    position: relative;
    z-index: 9;
    color: var(--gold);
}

.laydets small {
    text-transform: uppercase;
}

.laydets h5 {
    font-size: 3vw;
}

.laysize {
    width: calc(100% - 20px);
    margin: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgb(0 0 0 / 13%);
}

.laysize ul {
    flex: 0 0 70%;
    max-width: 70%;
    display: flex;
}

.laysize ul li {
    flex-grow: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
    font-size: 18px;
    padding: 0 10px;
}

.laysize ul li:last-child {
    border-right: 0;
}

.laysize ul li strong {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
    font-size: 80%;
    letter-spacing: 1px;
}

.location-advantages {
    height: 100%;
}

.location-advantages .loc-advant {
    height: 390px;
}

.location-advantages .loc-advant .swiper-slide {
    padding: 5px 10px;
    background-color: var(--gray);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.loc-advant .swiper-slide figure {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid rgb(255 255 255 / 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out;
}

.loc-advant .swiper-slide figure:hover {
    transform: translateY(2px);
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
}

.loc-advant .swiper-slide figure .img-wrap {
    width: 35%;
    margin-right: 15px;
    border-right: 1px solid rgb(255 255 255 / 10%);
}

.loc-advant .swiper-slide figure .img-wrap img {
    max-width: 50px;
    margin: 0 auto;
    display: block;
}

.loc-advant .swiper-slide figure figcaption {
    width: 100%;
    position: relative;
    padding: 10px 0;
    z-index: 1;
}

.loc-advant .swiper-slide figure figcaption strong {
    font-size: 26px;
}

.loc-advant .swiper-slide figure figcaption strong small {
    display: inline-block;
    font-size: 12px;
}

.loc-advant .swiper-slide figure p {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid rgb(255 255 255 / 10%);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.proximity {
    margin-top: 3rem;
    padding: 10px 20px;
    border: 1px solid rgb(255 255 255 / 10%);
}

.proximity h4 {
    font-weight: 200;
    margin-bottom: 20px;
    font-size: 2vw;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.proximity h4 small {
    color: var(--gold);
    font-weight: 200;
    font-size: 70%;
}

.proximitySlider {
    padding-bottom: 40px;
}

.proximitySlider .swiper-wrapper {
    display: flex;
}

.proximitySlider .swiper-slide {
    width: calc(100% / 5);
    text-align: center;
}

.proximitySlider .swiper-slide figure {
    border-right: 1px solid rgb(255 255 255 / 10%);
    padding: 0 10px;
    margin-bottom: 0;
}

.proximitySlider .swiper-slide .img-wrap img {
    max-width: 50px;
    display: block;
    margin: 0 auto 10px;
}

.proximitySlider .swiper-slide figcaption {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
}

.gallery .img-wrap {
    display: block;
    background-color: #000;
    overflow: hidden;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    opacity: 0.8;
    transition: all 300ms ease-in-out;
}

.gallery .img-wrap:hover img {
    transform: scale(1.05, 1.05);
}

.gallery .gal-title {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    transform: translate(-50%, 0);
    z-index: 9;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.gallery .gal-title h2 {
    text-transform: uppercase;
    letter-spacing: 1vw;
    font-weight: 200;
    font-size: 2vw;
}

.contact-wrapper.bg-frwd-slash::before {
    background-color: rgb(0 0 0 / 10%);
}

/* Customize modal */

.modal-backdrop.show {
    opacity: 0.9;
    background: var(--lightgreen);
}

.modal-content {
    border: none;
    border-radius: 0;
    background: none;
}

.modal-header {
    background: none;
    color: var(--darkblue);
    border-bottom: none;
    border-radius: 0;
    padding: 0;
}

.modal-header .modal-title {
    font-weight: 200;
    font-size: 24px;
}

.modal-header .close {
    position: absolute;
    right: -10px;
    top: 40px;
    z-index: 2;
    text-shadow: none;
    padding: 0;
    margin-right: 0;
    font-weight: 100;
    font-size: 24px;
    opacity: 1;
    color: #fff;
    line-height: 25px;
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 50%;
    background-color: #222222;
    transition: all 300ms ease-in-out;
    outline: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    opacity: 1;
    background-color: var(--gold);
}

.videoModal .modal-body {
    background-color: var(--beige);
    padding: 0;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 20%);
    border: 5px solid #fff;
}

.videoModal .modal-body iframe {
    height: 420px;
    display: block;
}

/* Customize modal */

/* Custom swiper */

.swiper-pagination-bullet {
    background-color: #fff;
}

.swiper-pagination-bullet-active {
    background-color: var(--gold);
    transform: scale(1.5);
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: var(--gold);
    text-align: center;
    box-shadow: 0 1rem 2rem rgb(0 0 0 / 30%);
    transition: all 300ms ease-in-out;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    color: #000;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--gray);
    color: #fff;
}

/* Custom swiper */

.form-group {
    margin-bottom: 10px;
}

.form-group .form-control {
    border-radius: 0;
    padding: 10px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    outline: none;
    text-transform: uppercase;
}

.form-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.form-group .form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--gold);
}

.fixed-form {
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 347px;
    padding: 10px 20px 20px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 4px 4px 0 0 rgb(189 149 65 / 70%);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 1000;
    transition: all 300ms ease-in-out;
}

.fixed-form .formFooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.fixed-form .formFooter button {
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    transition: all 300ms ease-in-out;
    outline: none;
}

.fixed-form.scrl {
    width: 100%;
    right: 0;
    bottom: 0;
    transform: translateY(0);
    padding: 2px 20px;
    background-color: #000;
    border-top: 1px solid rgb(255 255 255 / 10%);
}

.fixed-form.scrl h5 {
    display: none;
}

.fixed-form.scrl .col-12 {
    flex: 1 0 0;
    margin-bottom: 0;
}

.fixed-form.scrl .form-group .form-control {
    padding: 5px 0px;
}

.fixed-form.scrl .formFooter {
    margin-top: 0;
}

.fixed-form.scrl .formFooter button {
    height: 30px;
    line-height: 30px;
}

/*Footer*/

.footer-area {
    background: #000;
    color: #fff;
    position: relative;
    z-index: 1;
}

.footer-contact {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.footer-contact .fcontact h4 {
    margin-bottom: 0;
}

.footer-contact .fcontact h4 a {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 200;
}

.footer-contact .fcontact h4 a:hover span {
    color: var(--gold);
}

.footer-contact .fcontact h4 a i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    background-color: var(--gold);
    border-radius: 50%;
    margin-bottom: 15px;
}

.disclaimer {
    padding-right: 5%;
}

.copyright {
    padding-bottom: 1rem;
}

.copyright p a {
    color: var(--gold);
}

.copyright p a:hover {
    color: #fff;
}

.button-top {
    background: rgba(29, 29, 29, 0.32);
    position: fixed;
    cursor: pointer;
    right: 20px;
    bottom: -20px;
    color: #ffffff;
    font-size: 13px;
    opacity: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    pointer-events: none;
    transition: all 500ms ease;
    z-index: 9;
}

.button-top.scrl {
    bottom: 60px;
    opacity: 1;
    pointer-events: auto;
}

.button-top:hover {
    background: var(--golden-grad2);
    color: #000;
}

/*Footer*/

.enquiryBtn {
    display: none;
}

/*responsive*/

@media (max-width: 1024px) {
    .logo h4 {
        font-size: 14px;
    }
}

@media (min-height: 1024px) {
    .fixed-form {
        bottom: 50%;
    }
}

@media (max-height: 425px) {}

@media (max-width: 768px) {
    .banner {
        height: 600px;
    }
    .slider-content {
        bottom: 0%;
        left: 0;
        width: 100%;
        padding: 10px;
        text-align: left;
    }
    .slider-content .inner-content-box {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .slider-content h1 {
        width: 100%;
        font-size: 3.5vw;
    }
    .banner-sectors {
        flex-grow: 1;
        width: 70%;
    }
    .slider-content .readmore {
        width: auto;
    }
    .overview-text-container h5,
    h5 {
        font-size: 2vw;
    }
    .in-numbers {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    .in-numbers li {
        margin-right: 0;
        padding-right: 5px;
    }
    .in-numbers li h2 {
        font-size: 3vw;
    }
    .in-numbers li h6 {
        letter-spacing: 0px;
    }
    .amenities-text-container {
        width: 100%;
    }
    .location-advantages {
        padding-left: 0;
    }
    .location-map {
        padding-right: 0;
    }
    .location-map img {
        height: 100%;
        object-fit: cover;
    }
    .laydets small {
        font-size: 13px;
    }
    .laydets h5 {
        font-size: 4vw;
    }
    .laysize ul li {
        font-size: 16px;
    }
    .py-8 {
        padding-bottom: 1rem;
        padding-top: 1rem;
    }
    .footer-contact .fcontact h4 {
        font-size: 16px;
    }
    header {
        background: #fff;
    }
    .banner {
        margin-top: 103px;
    }
}

@media (max-width: 767px) {
    .logo {
        width: 120px;
    }
    .headerRight,
    .fixed-form {
        display: none;
    }
    .banner {
        margin-top: 50px;
        height: auto;
    }
    .banner .carousel-inner .carousel-item img {
        height: 430px;
        object-position: 84%;
    }
    .slider-content {
        text-align: center;
        width: auto;
        position: relative;
    }
    .slider-content .inner-content-box {
        text-align: center;
    }
    .scrollDown {
        left: 0;
        bottom: 30px;
        z-index: 10;
    }
    .d_sm_none {
        display: none !important;
    }
    .d_sm_block {
        display: block !important;
    }
    .intro-img {
        margin-top: 20px;
    }
    .overview-text-container .inner-box {
        width: 100%;
    }
    .h4,
    h4 {
        font-size: 20px;
    }
    .layimg img {
        max-width: 100%;
    }
    .laysize {
        flex-wrap: wrap;
    }
    .laysize ul {
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 25px;
    }
    .laysize>div {
        margin: 0 auto;
    }
    .location-map,
    .disclaimer {
        padding-right: 15px;
    }
    .location-advantages,
    .copyright {
        padding-left: 15px;
    }
    .heading h2 {
        font-size: 1.75rem;
    }
    .heading h5 {
        font-size: 14px;
    }
    .proximity h4 {
        font-size: 20px;
    }
    .gallery .swiper-slide .gal-title h2 {
        font-size: 20px;
    }
    .footer-contact {
        margin-bottom: 30px;
        padding-bottom: 10px;
    }
    .footer-contact .fcontact {
        flex: 1 0 50%;
        margin-bottom: 20px;
    }
    .copyright {
        text-align: left;
        margin-top: 30px;
    }
    .slider-content .location {
        font-size: 16px;
    }
    .amenities-text-container ul li .img-wrap img {
        max-width: 50px;
    }
    .enquiryBtn {
        position: fixed;
        bottom: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        left: 0;
        z-index: 99;
        background: var(--golden-grad);
        text-align: center;
        border-top: 1px solid #fff;
    }
    .enquiryBtn a {
        color: #000;
        text-align: center;
        display: block;
        width: calc(100% / 2);
        padding: 10px 5px;
    }
    .whatsCall {
        background: #18ad3a;
        color: #fff !important;
    }
    .swiper-button-next,
    .swiper-button-prev {
        top: 77%;
    }
}

@media (max-width: 667px) {}

@media (max-width: 575px) {}

@media (max-width: 480px) {}

@media (max-width: 425px) {
    body {
        font-size: 12px;
    }
    header {
        padding: 0 10px;
    }
    .logo {
        width: 100px;
    }
    .btn.btn-whatsapp {
        min-width: 35px;
    }
    .btn.btn-whatsapp i {
        font-size: 22px;
    }
    .btn {
        min-width: 114px;
        height: 32px;
        font-size: 13px;
        letter-spacing: 0;
        padding-left: 10px;
        padding-right: 10px;
    }
    .banner {
        height: auto;
        margin-top: 50px;
    }
    .banner .carousel-inner .carousel-item img {
        height: 370px;
        object-position: 84%;
    }
    .slider-content {
        text-align: center;
        width: auto;
        position: relative;
    }
    .slider-content h1 {
        font-size: 7.5vw;
    }
    .banner-sectors {
        display: flex;
        flex-wrap: wrap;
    }
    .slider-content h5 {
        flex-grow: 1;
    }
    .slider-content .readmore {
        justify-content: center;
        width: 100%;
    }
    .scrollDown {
        display: none;
    }
    .overview-text-container h5,
    h5 {
        font-size: 16px;
    }
    .paara {
        font-size: 130%;
    }
    .in-numbers li h2 {
        font-size: 24px;
    }
    .in-numbers li h6 {
        font-size: 12px;
    }
    .amenities-text-container ul,
    .laysize ul {
        flex-wrap: wrap;
    }
    .amenities-text-container ul li {
        width: calc(50% - 2px);
        margin: 1px;
        padding: 10px;
    }
    .laydets h5 {
        font-size: 24px;
    }
    .laysize {
        padding: 10px 20px;
    }
    .laysize ul {
        margin-bottom: 10px;
    }
    .laysize ul li {
        width: 100%;
        padding: 5px 0;
        border-right: none;
        border-bottom: 1px solid rgb(255 255 255 / 10%);
        font-size: 14px;
    }
    .gallery img {
        height: auto;
    }
    .fixed-form.scrl {
        padding: 2px;
    }
    .fixed-form .formFooter button {
        width: auto;
        min-width: 100%;
    }
    .form-group .form-control,
    .modal-body p {
        font-size: 15px;
    }
    .proximitySlider .swiper-slide {
        width: 50%;
    }
    .gallery .swiper-slide img {
        height: 340px;
    }
    .proximity h4 small {
        display: block;
    }
    .heading h2,
    .heading h3 {
        font-size: 1.25rem;
        font-weight: 400;
    }
}

@media (max-width: 375px) {}

@media (max-width: 360px) {}