:root {
    --primary-color: #d12023;
    --bg-light-grey: #F8F8F8;
    --bg-dark-grey: #707070;
}

* {
    scroll-behavior: smooth;
    transition: 0.3s all ease !important;
}

html,
body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    box-sizing: border-box;
}

html,
body {
    width: 100vw;
}

::-webkit-scrollbar {
    display: none;
}

::-webkit-scrollbar-button {
    display: none;
}

:focus-visible {
    outline: none !important;
}

:focus {
    box-shadow: none !important;
}

button:focus,
input:focus {
    border: 1px solid #1a1a1a;
}


@font-face {
    font-family: BuenosAires;
    src: url(../fonts/BuenosAires-Thin.ttf);
    font-weight: 100;
}

@font-face {
    font-family: BuenosAires;
    src: url(../fonts/BuenosAires-Light.ttf);
    font-weight: 200;
}

@font-face {
    font-family: BuenosAires;
    src: url(../fonts/BuenosAires-Book.ttf);
    font-weight: 300;
}

@font-face {
    font-family: BuenosAires;
    src: url(../fonts/BuenosAires-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: BuenosAires;
    src: url(../fonts/BuenosAires-SemiBold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: BuenosAires;
    src: url(../fonts/BuenosAires-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: BuenosAires;
    src: url(../fonts/BuenosAires-Black.ttf);
    font-weight: 900;
}

@font-face {
    font-family: Inknut_Antiqua;
    src: url(../fonts/Inknut_Antiqua/InknutAntiqua-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: Inknut_Antiqua;
    src: url(../fonts/Inknut_Antiqua/InknutAntiqua-SemiBold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: Inknut_Antiqua;
    src: url(../fonts/Inknut_Antiqua/InknutAntiqua-Bold.ttf);
    font-weight: 700;
}

input,
textarea,
button,
select,
option {
    font-family: BuenosAires !important;
    font-weight: 400;
}

input::placeholder {
    font-family: BuenosAires !important;
    font-weight: 400;
}

h2,
h3,
h4 {
    color: var(--bg-light-grey);
}

p,
a,
label,
span {
    font-family: BuenosAires;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 0px;
    text-decoration: none;
    color: var(--bg-light-grey);
}

:focus,
:focus-visible {
    outline: none;
    box-shadow: none;
}

a:hover {
    color: unset;
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.title-main {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    gap: 15px;
}

h2,
h3 {
    font-family: Inknut_Antiqua !important;
    font-weight: 600;
}

h2.title {
    font-family: BuenosAires;
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 0px;
    text-transform: capitalize;
}

h3.sub-title {
    font-size: 25px;
    font-weight: 400;
}

.title-desc {
    font-size: 14px;
    font-weight: 350;
}

.title-span {
    color: var(--primary-color);
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
}

.side-space {
    padding-left: 6%;
    padding-right: 6%;
}

.space-between {
    padding-top: 100px;
    padding-bottom: 100px;
}

.space-between-short {
    padding-top: 0px;
    padding-bottom: 0px;
}

.container-fluid {
    padding: 0px;
}

.light-bg {
    background-color: var(--bg-light-grey);
}

.dark-bg {
    background-color: var(--bg-dark-grey);
}

#header {
    background: transparent;
    position: fixed;
    width: 100vw;
    z-index: 999;
}

#header .menu {
    width: 60%;
    margin: 0 auto;
}

.header-hidden {
    transform: translateY(-100%);
}

.header-visible {
    transform: translateY(0);
}

.mobile-menu {
    display: none;
}

.logo {
    width: auto;
    text-align: center;
    position: relative;
    padding: 10px 0px;
}

.logo img {
    width: 70px;
    height: auto;
    float: left;
}

.menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.menu-list-item a {
    color: #fff;
    transition: 0.3s all ease;
    font-weight: 300;
    text-wrap: nowrap;
}

.menu-list-item a.active,
.menu-list-item a:hover {
    text-shadow: #1a1a1a;
    color: var(--primary-color);
}

.vtp-btn {
    color: #fff;
    background-color: var(--primary-color);
    padding: 4px 12px;
    gap: 5px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    width: fit-content;
    margin: 0 auto;
    border: none;
    box-shadow: none;
    overflow: hidden;
    position: relative;
    transition: 0.3s all ease;
}

.vtp-btn::before,
.vtp-btn::after {
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 100%;
}

.vtp-btn::before {
    content: '';
    background: #000;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

.vtp-btn::after {
    content: '';
    background: #000;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.vtp-btn span {
    display: flex;
    color: #fff;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
    position: relative;
    z-index: 10;
}

.vtp-btn span svg {
    height: 25px;
    width: 25px;
}

.btm-mail span svg {
    height: 35px;
    width: 35px;
}

.vtp-btn:hover span,
.vtp-btn:hover svg g path {
    fill: #fff;
    color: #fff;
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}


@keyframes MoveScaleUpInitial {
    to {
        transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }
}

@keyframes MoveScaleUpEnd {
    from {
        transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.vtp-btn:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.vtp-btn:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
}

form .vtp-btn {
    padding: 12px 30px;
    border-radius: 45px;
}

.desktop-menu {
    position: relative;
}

.header-bg {
    position: absolute;
    top: 23%;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(7px);
    background: #00000073;
    height: 53%;
    width: 100%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    z-index: -1;
}

ul.right-menu {
    margin-right: 7px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.right-menu li a {
    text-wrap: nowrap;
    color: #FFF !important;
}

.right-menu li a img {
    object-fit: contain;
}

/* Header CSS: End */

#Banner {
    overflow: hidden;
}

.banner img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    height: auto;
}

.banner-slide {
    height: 100vh;
    width: 100vw;
    display: flex;
}

.banner-slide video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.owl-carousel .owl-item .mobile {
    display: none;
}

/* Banner END */

/* Overview START */

.overview-right {
    height: 575px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}

/* .overview-right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
} */

.overview-right img {
    height: 85%;
    width: 83%;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
}

.overview-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.overview-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 25px;
}

.overview-inner-img {
    width: 310px;
    height: 75px;
}

.overview-animate {
    width: 100%;
}

.text-rotator {
    position: relative;
    height: 175px;
    overflow: hidden;
}

.text-rotator::before {
    content: '';
    position: absolute;
    top: 50%;
    bottom: 0;
    left: 2px;
    width: 10px;
    height: 3px;
    background: #DEAD3C;
}

.text-rotator ul {
    width: 100%;
    padding: 0;
    padding-left: 20px;
    margin: 0;
    list-style: none;
    position: relative;
    top: 0;
    transition: all 0.5s;
}

.text-rotator li {
    font-size: 21px;
    font-weight: 500;
    height: 35px;
    line-height: 35px;
    text-align: left;
    opacity: 0.5;
    transition: all 0.5s;
}

.text-rotator li.active {
    opacity: 1;
    color: #343434;
}

.text-rotator li.previous,
.text-rotator li.next {
    opacity: 0.4;
}

.text-rotator li.first,
.text-rotator li.last {
    opacity: 0.16;
}

/* @keyframes rotateText {
    0% {
        top: 0;
    }

    20% {
        top: 0;
    }

    25% {
        top: -50px;
    }

    45% {
        top: -50px;
    }

    50% {
        top: -100px;
    }

    70% {
        top: -100px;
    }

    75% {
        top: -150px;
    }

    95% {
        top: -150px;
    }

    100% {
        top: 0;
    }
} */

/* Overview END */

/* Highlights START */
.highlights {
    position: relative;
    height: 100vh;
    transition: all 0.3s ease;
    overflow-y: hidden;
}

.highlights .title-main {
    position: sticky;
    top: 0px;
}

.highlights .highlights-bg {
    width: 550px;
    height: 500px;
    display: flex;
    justify-content: flex-end;
    border-radius: 15px;
    position: absolute;
    top: 100px;
    right: 6%;
    z-index: 2;
}

.highlights-bg img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlights-content {
    position: relative;
    z-index: 3;
    padding: 0 10px;
    margin: -10px 0px;
    width: 100%;
    height: 70vh;
    overflow-y: auto;
}

.highlights-box-wrapper {
    padding-bottom: 100px;
}

.highlights-box-wrapper .row {
    padding-top: 10px;
    /* padding-bottom: 10px; */
    row-gap: 25px;
}

/* .highlights-box {
    width: 275px;
    height: 200px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    border-radius: 15px;
    box-shadow: 0px 2px 11px 0px #15151529;
    background: #FFFFFF;
    backdrop-filter: blur(1px);
    background: #00000064;
} */

.highlights-box {
    width: 235px;
    height: 175px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    border-radius: 15px;
    box-shadow: 0px 2px 11px 0px #15151529;
    backdrop-filter: blur(1px);
    background: #00000064;
}

.highlights-text p {
    color: #FFF;
}

/* Highlights END */

/* Eleveate START */

.elevate {
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    /* background-image: url('../images/elevation/elevation-bg.svg');
    background-repeat: no-repeat;
    background-size: 550px;
    background-position: bottom; */
}

.elevate-desc {
    display: flex;
    justify-content: center;
    transition: 0.4s all ease;
}

.elevate-image {
    height: 550px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    display: flex;
    align-items: flex-end;
}

.elevate-image img {
    height: auto;
    width: auto;
    max-height: 525px;
    object-fit: contain;
    object-position: top;
    transition: 0.4s all ease;
    transform: scaleY(0);
    opacity: 0;
}

.elevate-image.elevate-right img {
    margin-left: auto;
}

.animate .elevate-left img {
    transform-origin: bottom left;
    animation: growFromBottomLeft 1.75s forwards;
}

.animate .elevate-right img {
    transform-origin: bottom right;
    animation: growFromBottomRight 1.75s forwards;
}

@keyframes growFromBottomLeft {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes growFromBottomRight {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.elevate-desc .title-span {
    opacity: 0;
    width: 0;
    display: inline-block;
    overflow: hidden;
    line-height: 30px;
    white-space: nowrap;
}

.animate .elevate-desc .title-span {
    animation: typewriter 1s steps(20, end) forwards;
    animation-delay: 2s;
}

@keyframes typewriter {
    0% {
        opacity: 0;
        width: 0;
    }

    1% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        width: 100%;
    }
}

.elevate-inner-title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: 0.4s all ease;
}

.elevate-inner-title h2.title {
    text-transform: none;
}

.elevate-inner-title .title-span {
    opacity: 0;
    font-size: 48px;
    line-height: 60px;
    display: flex;
}

.elevate-inner-title .letter {
    color: var(--primary-color);
    transition: color 0.4s ease;
    font-size: 48px;
    line-height: 60px;
}

.elevate-inner-title .letter.glow {
    color: #dead3c77;
    text-shadow: #dead3c77;
}

.animate .elevate-inner-title .title-span {
    animation: fadeIn 1.5s forwards 3s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.elevate-inner-span-mob {
    display: none !important;
}

/* Eleveate END */

/* Gallery START */

.gallery {
    padding-right: 0px;
    position: relative;
    z-index: 1;
}

.gallery-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 3;
}

.gallery-nav {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
}

.gallery-nav .prev,
.gallery-nav .next {
    width: 45px;
    height: 30px;
    padding: 4px 10px;
    border-radius: 30px;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gallery .item {
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.gallery-slide {
    position: relative;
    height: 500px;
    width: 750px;
    overflow: hidden;
    border-radius: 15px;
    transition: all 8s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.zoom-active.gallery-slide {
    height: 650px;
    width: 100%;
}

.zoom-active.gallery-slide a {
    display: flex;
    height: 100%;
    width: 100%;
}

.gallery-slide a {
    display: flex;
    height: 100%;
    width: 100%;
}

.gallery-slide img {
    border-radius: 15px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 8s ease;
}

.gallery-slide .gallery-desc {
    position: absolute;
    bottom: 0px;
    padding-bottom: 30px;
    padding-left: 30px;
    font-size: 30px;
    font-weight: 400;
    color: #FFFFFF;
    text-shadow: 0 0 5px #1d1c1c94;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.75s ease, opacity 0.75s ease;
}

.gallery-slide.zoom-active .gallery-desc {
    transform: translateY(0);
    opacity: 1;
}

.gallery .owl-carousel .owl-stage-outer {
    overflow: visible;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.gallery .owl-item {
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.125, 0, 1, 1), opacity 0.6s cubic-bezier(0.125, 0, 1, 1);
}

.gallery .owl-item.active {
    opacity: 1;
    transition: transform 0.5s cubic-bezier(0.125, 0, 1, 1), opacity 0.6s cubic-bezier(0.125, 0, 1, 1);
}

/* Gallery END */

/* Amenities START */

.wrapper {
    width: 100%;
    margin-inline: auto;
    column-count: 3;
    gap: 20px;
    height: 100%;
}

.amenities-stick {
    display: flex;
    flex-direction: column;
    gap: 25px;
    transform: scale(.6);
    transition: transform 1.5s ease;
}

.amenities-stick a {
    display: flex;
    height: 100%;
    width: 100%;
}

.image-lg {
    height: 500px;
}

.amenities-stick.rev.image-lg {
    height: 550px;
}

.image-sm {
    height: 400px;
}

.amenities-stick img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 1.5s ease;
}

.image-lg,
.image-sm {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 25px;
}

/* .amenities-stick.in-view.image-lg img,
.amenities-stick.in-view.image-sm img{
    transform: scale(1.2);
} */

.amenities-stick.in-view.image-lg,
.amenities-stick.in-view.image-sm {
    transform: scale(1);
}

.ame-desc {
    position: absolute;
    font-size: 25px;
    font-weight: 400;
    color: #FFFFFF;
    /* -webkit-text-stroke: 1px rgba(0, 0, 0, 0.6); */
    text-shadow: 0 0 10px #1a1a1a50;
    top: 0px;
    bottom: 0px;
    right: 20px;
    height: 100%;
    display: flex;
    transform: translateY(0px);
    padding: 20px 0px;
    transition: all 2s ease;
    transition-delay: 0.75s;
}

.amenities-stick.in-view .ame-desc {
    transform: translateY(85%)
}

/* Amenities END */

/* Project START */

.project ul.nav-pills {
    gap: 5px;
    justify-content: center;
}

.project button.nav-link {
    color: #1a1a1a;
    border: 1px solid;
    border-color: transparent;
    transition: all 0.3s ease !important;
    box-sizing: border-box;
}

.project button.nav-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.project button.nav-link.active {
    border: 1px solid;
    background-color: var(--primary-color);
}

.project button.nav-link.active:hover {
    color: #fff;
}

.project-slide {
    height: 500px;
    width: 700px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

.project-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

.project-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.project-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.project-carousel-item {
    min-width: 100%;
    width: 600px;
    height: 400px;
    box-sizing: border-box;
}

.project-carousel-item img {
    width: 100%;
    height: auto;
}

.tabs-main-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.large_amenities_section .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #313131;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: 0.3s all ease !important;
}

.large_amenities_section .nav-link {
    color: #313131;
    border: 1px solid;
    border-color: #313131;
    transition: 0.3s all ease !important;
}

.large_amenities_section .nav-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: 0.3s all ease;
}

.large_amenities_section .nav-pills {
    transition: 0.3s all ease;
    gap: 15px;
}

.carousel-wrap .nav-link {
    border-radius: 40px;
}

.amenitiesCarousel .item img {
    height: 320px;
    border-radius: 10px;
    object-fit: cover;
}

.amenitiesCarousel .owl-item {
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
}

.amenitiesCarousel .owl-item.center-item {
    transform: scale(1.2);
    z-index: 10;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.7s ease-in-out;
}

.amenitiesCarousel .owl-item:not(.center-item) {
    transform: scale(1);
}

.amenitiesCarousel .owl-item:not(.center-item) .amenities-text-box {
    display: none;
}

.amenities-text-box {
    display: none;
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    transition: opacity 0.2ms ease-in-out;
}

.amenities-box {
    display: none;
    background-color: #d5aa48;
    width: 75%;
    padding: 5px;
}

.amenities-box p {
    color: #1a1a1a;
}

.owl-dots {
    position: relative;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    border: none !important;
}

button.owl-dot {
    height: 8px;
    width: 8px;
    background: #000 !important;
    border-radius: 50%;
}

button.owl-dot.active {
    background-color: var(--primary-color) !important;
}

.master .item img {
    height: 320px;
    width: auto;
    margin: 0 auto;
    border-radius: 10px !important;
    object-fit: contain;
}

/* Project END */

/* Unit Plan start */
.unit-text {
    width: 70%;
    margin: auto;
}

.unit_plan_section {
    background-color: #f9f9f9;
}

.custom_width {
    width: 80%;
    margin: auto;
}

.unit-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: 400px;
    border-radius: 15px;
    position: relative;
    padding: 110px 4px;
    overflow: hidden;
}

.unit-container::before {
    content: '';
    background-image: url(../images/unit-img.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    z-index: -1;
    animation: unitzoomin 10s ease-in-out infinite;
}

@-webkit-keyframes unitzoomin {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes unitzoomin {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.unit-container-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.unit-container-item p,
.unit-container-item span {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.unit-container-item .unit-BHK {
    font-size: 45px;
    font-weight: 700;
}

.unit-container-item .unit-price {
    font-size: 25px;
    font-weight: 600;
}

.gradient-border-plans {
    position: relative;
    height: 100%;
}

.gradient-border-plans::after {
    content: "";
    position: absolute;
    right: 0;
    width: 2px;
    height: calc(100% + 220px);
    border: 2px solid #FFFFFF;
    z-index: 1;
}

/* Unit Plan start */

/* About VTP Start*/
.about-main {
    background-image: url('../images/about-img.webp');
    background-size: cover;
    width: 100%;
    height: 593px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.about-text {
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0px 4px 20px 0px #00000026;
    width: 595px;
    height: 400px;
    padding: 65px 30px;
    position: absolute;
    transform: translateY(20);
    transition: opacity 0.5s ease, transform 0.5s ease, bottom 0.5s ease;
    margin-bottom: 12px;
}

.about-animation {
    opacity: 1;
    transform: translateY(0);
    bottom: 10px;
}

.about-text.initial {
    transform: translateY(20px);
    bottom: -50px;
}

/* Adbout VTP  Ends*/

/* Snapsht CSS: starts */
.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.gradient-border {
    position: relative;
}

.gradient-border::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0px;
    height: 100%;
    border: 1px solid #34343433
}

.grid-items .counter {
    font-weight: 700;
}

/* Snapsht CSS: Ends */

/* Location start*/
.location {
    position: relative;
}

.location .vtp-btn {
    position: absolute;
    bottom: 0px;
    right: 0px;
    margin-bottom: 100px;
    margin-right: 6%;
    padding: 8px 20px;
    border-radius: 45px;
}

.map-container {
    position: relative;
}

.location-item {
    margin-bottom: 20px;
}

.loc-main {
    display: flex;
    justify-content: end;
}

.location-item span {
    color: #DEAD3C;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.21px;
    text-align: right;
}

.point {
    position: absolute;
    width: 15px;
    height: 15px;
}

.point-1 {
    top: 46px;
    left: 416px;
}

.point-2 {
    top: 127px;
    left: 337px;
}

.point-3 {
    top: 214px;
    left: 297px;
}

.point-4 {
    top: 317px;
    left: 288px;
}

.point-5 {
    top: 439px;
    left: 323px;
}

.point-6 {
    top: 531px;
    left: 402px;
}

.location-item p {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    text-align: right;
}

.location-item:nth-child(1) {
    animation-delay: 2s;
    position: absolute;
    top: 27px;
    left: 210px;
}

.location-item:nth-child(2) {
    animation-delay: 4s;
    position: absolute;
    top: 107px;
    left: 64px;
}

.location-item:nth-child(3) {
    animation-delay: 6s;
    position: absolute;
    top: 194px;
    left: 81px;
}

.location-item:nth-child(4) {
    animation-delay: 8s;
    position: absolute;
    top: 295px;
    left: 37px;
}

.location-item:nth-child(5) {
    animation-delay: 10s;
    position: absolute;
    top: 423px;
    left: 48px;
}

.location-item:nth-child(6) {
    animation-delay: 12s;
    position: absolute;
    top: 520px;
    left: 43px;
}

.location-map {
    width: 100%;
    max-width: 400px;
    margin-left: 40px;
}

.location-map img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.loc-img-main {
    border: 3px dashed #DEAD3C;
    padding: 24px;
    border-radius: 704px;
    height: 605px;
    width: 1058px;
    overflow: hidden;
}

.loc-mob-img {
    border: 3px dashed #DEAD3C;
    padding: 10px;
    border-radius: 704px;
    overflow: hidden;
}

.ellipse-ico {
    position: relative;
    margin-bottom: 15px;
}

.ellipse-ico span {
    color: #DEAD3C;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.21px;
}

.ellipse-ico::before {
    position: absolute;
    content: "";
    background-image: url(../images/ellipse.png);
    background-repeat: no-repeat;
    background-size: 12px;
    height: 19px;
    width: 12px;
    top: 8px;
    /* transform: translateY(-50%); */
    left: -22px;
}

.loc-ul {
    padding-left: 8px;
}

.location-img {
    width: 100%;
    height: 100%;
    border-radius: 704px;
}

/* Location end */

/* Philosophy section starts */

.philosophy-wrapper {
    height: 583px;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
}

.philosophy_section_1,
.philosophy_section_2,
.philosophy_section_3 {
    height: 100%;
    width: 100%;
    flex-shrink: 0;
    position: sticky;
    top: 0;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.philosophy_section_1,
.philosophy_section_3 {
    background-color: #f8f8f8;
}

.philo-img {
    border-radius: 15px;
    max-height: 310px;
}

.philo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    /* gap: 15px; */
}

span.philo-title {
    font-weight: 900;
    font-size: 45px;
    line-height: 63px;
    color: #dead3c;
    mix-blend-mode: luminosity;
}

/* Philo section 2  */
.philosophy_section_2 {
    background-color: #707070;
}

/* Philosophy section overlap css */

/* Philosophy section ends */

/* Promise section starts */
.promise_section {
    position: relative;
    overflow: hidden;
}

.zoomin {
    position: absolute;
    background-image: url(../images/promise/promisebg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -999;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-animation: zoomin 15s ease-in infinite;
    animation: zoomin 15s ease-in infinite;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

@-webkit-keyframes zoomin {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomin {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}

.promise-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 125px;
}

.promise-grid-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promise-icon {
    width: 40px;
    height: 40px;
}

.promise-txt {
    font-size: 18px;
    font-weight: 600;
    color: #dead3c;
}

.promise-grid-item p {
    color: #fff;
}

/* Promise section ends */

/* Form section starts */
.form_section {
    position: relative;
}

.arch-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -3;
}

.arch-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -3;
}

.enquire-form {
    background-color: #f8f8f8;
    padding: 40px;
    margin: auto;
    border-radius: 15px;
}

.form-custom {
    box-shadow: none;
    border: none;
    border-radius: 7px;
    border-bottom: 1px solid;
    border-color: var(--primary-color);
    color: #343434;
    padding: 20px;
}

.form-custom::placeholder {
    font-size: 14px;
    font-style: italic;
}

.form-custom:disabled,
.form-custom[readonly] {
    background-color: #fff;
    color: #343434;
    font-size: 14px;
    font-style: italic;
}

.form-custom:focus {
    box-shadow: none;
}

.monarque-map {
    height: 100%;
    width: 100%;
    border-radius: 15px;
}

/* Promise section ends */

/* Footer CSS: Start */

.footer-bottom {
    background: #f9f9f9;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
}

.footer-bottom img {
    background: #fff;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
    height: 129px;
    width: 127px;
}

.qr-main {
    display: flex;
    justify-content: space-evenly;
}

.footer-bottom .qr_info {
    margin: 15px 0;
    text-align: center;
}

.footer-bottom a {
    color: #343434;
}

.footer-bottom hr {
    margin-bottom: 16px;
}

.footer-bottom-text-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom-text-wrapper::after {
    content: "";
    position: absolute;
    top: -12px;
    right: 0px;
    width: 100%;
    height: 1px;
    background: #ffffff8f;
}

.border-next {
    position: relative;
    margin-right: 10px;
}

.form-custom {
    height: 50px;
}

.form-control:focus {
    border-color: #343434;
}

/* Footer CSS: End */


/* Mobile Menu CSS: Start */
ul.header-btn-mobile {
    display: none;
}

ul.header-btn-mobile svg {
    height: 25px;
    width: 22px;
}

ul.header-btn-mobile a {
    font-size: 25px;
    text-decoration: none;
    letter-spacing: 0;
}

ul.header-btn-mobile li {
    position: relative;
}

ul.header-btn-mobile li a {
    padding: 10px 22px;
}

ul.header-btn-mobile {
    flex-wrap: nowrap;
    list-style-type: none;
    padding: 0;
    justify-content: space-around;
    align-items: center;
    background: #fff;
    margin-bottom: 0px;
    background: #444343ba;
    backdrop-filter: blur(5px);
    padding: 10px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    position: fixed;
    bottom: -1px;
    width: 100vw;
    gap: 10px;
}

ul.header-btn-mobile a {
    font-size: 25px;
    text-decoration: none;
}

ul.header-btn-mobile li:last-child img {
    height: 30px;
    width: 30px;
}

.border-btm {
    display: block;
    height: 35px;
    width: 1px;
    background-color: #fff;
}

.float-button-mobile img {
    height: 35px;
    width: 35px;
}


/* Mobile Menu CSS: End */

/* Fixed Btn Css: Start */

a.enquire-fixed {
    right: -40px;
    transform: rotate(270deg);
    top: 45%;
    position: fixed;
    z-index: 999;
    line-height: 20px !important;
    border-radius: 0px;
    padding: 10px 16px;
}

.float-button-desktop {
    position: fixed;
    left: 35px;
    bottom: 30px;
    z-index: 1;
}

a.float-button-desktop img {
    height: 40px;
}

/* Fixed Btn Css: End */

/* Enquiry Modal CSS: Start */

#enquiry_form form input {
    padding: 10px 20px;
}

#form_wrapper .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

#form_wrapper .checkbox input[type="checkbox"] {
    margin-top: 4px;
}

form .form-group {
    margin-bottom: 10px !important;
}

.checkbox {
    /* display: flex;
    align-items: center;
    gap: 5px; */
    margin-top: 10px;
}

.checkbox label {
    line-height: 16px;
}

#enquiry_form .modal-content {
    background-color: var(--bg-light-grey);
}

.breadcrumb-custom a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.breadcrumb-custom a:hover {
    border-bottom: 1px solid var(--primary-color);
}

form .recaptcha_field {
    height: 0;
    width: 0;
    opacity: 0;
    padding: 0 !important;
}

.error {
    color: red;
}

/* Enquiry Modal CSS: End */

.overview {
    position: relative;
}

.ovr-img {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: auto;
    object-fit: contain;
    z-index: -1;
    opacity: 0.25;
}

.img-left {
    left: 0;
}

.img-right {
    right: 0;
}

.social-float {
    list-style: none;
    padding: 0;
    margin: 0;
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-float li a img {
    height: 35px;
    width: 35px;
}

