* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

@font-face {
    font-family: Raleway;
    src: url("../fonts/raleway/Raleway-Regular.ttf");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: Raleway;
    src: url("../fonts/raleway/Raleway-Medium.ttf");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: Montserrat;
    src: url("../fonts/Montserrat/Montserrat-Regular.ttf");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: Montserrat;
    src: url("../fonts/Montserrat/Montserrat-Medium.ttf");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: Montserrat;
    src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: Montserrat;
    src: url("../fonts/Montserrat/Montserrat-Bold.ttf");
    font-weight: 700;
    font-display: swap;
}

:root {
    --primary_color: #320f27;
    --raleway-font: 'Raleway', sans-serif;
    --montserrat-font: 'Montserrat', sans-serif;
    --text-color: #413f4b;
    --secondaryTextColor: #fdedb2;
}

body {
    color: var(--text-color);
    font-family: var(--montserrat-font);
}

a {
    text-decoration: none !important;
}

.mx_-30 {
    margin-left: -30px;
    margin-right: -30px;
}

.mx_-40 {
    margin-left: -40px;
    margin-right: -40px;
}

.px_30 {
    padding-left: 30px;
    padding-right: 30px;
}

.px_40 {
    padding-left: 40px;
    padding-right: 40px;
}

.form-control {
    border-radius: 0px;
    transition: border 0.3s ease-in-out;
    box-shadow: none !important;
    outline: none !important;
}

.form-control:focus {
    border-color: var(--primary_color) !important;
}

.btn {
    border-radius: 0px;
    font-family: var(--montserrat-font);
    text-transform: uppercase;
    box-shadow: none !important;
    outline: none !important;
}

.dark_btn {
    background-color: var(--primary_color);
    color: rgb(255, 255, 255);
    font-weight: 500;
    transition: 0.3s linear;
}

.dark_btn:hover {
    background-color: rgb(64, 63, 75);
    color: rgb(255, 255, 255);
}

.light_btn {
    background-color: rgb(255, 255, 255);
    color: var(--text-color);
    font-weight: 500;
    transition: 0.3s linear;
}

.light_btn:hover {
    background-color: var(--text-color);
    color: rgb(255, 255, 255);
}

.outline_btn.white {
    color: rgb(255, 255, 255);
    border: 1px solid rgb(255, 255, 255);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--montserrat-font);
}

.section_heading {
    font-size: 36px;
    line-height: 48px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section_heading span {
    display: block;
}

.sec_headings {
    margin-bottom: 50px;
}

.sec_headings.center {
    text-align: center;
}

.sec_headings .section_heading {
    margin-bottom: 10px;
}

.sec_headings p {
    margin: 0px;
}

header.navbar {
    position: fixed;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 30px 50px;
    z-index: 999;
    transition: top 0.3s;
}

header.navbar.active {
    top: -115px;
    transition: 0.3s;
}

header.navbar.fixed {
    top: 0px;
    background: var(--primary_color);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 10px;
}

header .navbar-brand {
    margin: 0px;
    padding: 0px;
}

header .main-logo {
    max-width: 150px;
}

header.navbar.fixed .main-logo {
    display: none;
}

header .main-logo-white {
    display: none;
}

header.navbar.fixed .main-logo-white {
    display: block;
}

header .right_btns .outline_btn {
    padding: 16px 28px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.4px;
    transition: 0.6s linear;
}

header .right_btns .outline_btn:hover {
    color: var(--text-color);
}

header .right_btns .navbar-toggler {
    position: relative;
    margin-left: 50px;
    padding: 0px;
    font-family: var(--montserrat-font);
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    font-size: 16px;
    letter-spacing: 3.3px;
    transition: 0.6s linear;
}

header .right_btns .navbar-toggler::before,
header .right_btns .navbar-toggler::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    right: 0px;
    background-color: rgb(255, 255, 255);
    transition: 0.3s linear;
}

header .right_btns .navbar-toggler::before {
    top: -15px;
}

header .right_btns .navbar-toggler:hover::before {
    width: 75%;
}

header .right_btns .navbar-toggler::after {
    bottom: -15px;
}

header .right_btns .navbar-toggler:hover::after {
    width: 95%;
}

header .right_btns .navbar-toggler:hover {
    color: var(--text-color);
}

header .navbar-collapse {
    display: block;
    position: fixed;
    right: -30%;
    top: 0px;
    width: 100%;
    max-width: 30%;
    height: 100vh;
    background: rgb(255, 255, 255);
    padding: 20px 30px;
    z-index: 9999;
    overflow: auto;
}

header .navbar-collapse::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-image: url("../assets/menu-bg.png");
    background-position: center center;
    background-size: cover;
    background-repeat: repeat;
    z-index: 5;
    opacity: 0.5;
    pointer-events: none;
}

header .navbar-collapse:not(.show) {
    display: unset;
}

header .navbar-collapse.show {
    right: 0px;
    transition: 400ms ease-in-out 0.3s;
}

header .navbar-collapse .close {
    width: 50px;
    height: 50px;
    position: relative;
    opacity: 1;
    margin-left: auto;
    cursor: pointer;
}

header .navbar-collapse .close::before,
header .navbar-collapse .close::after {
    content: "";
    height: 26px;
    margin: auto;
    position: absolute;
    inset: 0px;
    width: 2px;
    background-color: rgb(64, 63, 75);
}

header .navbar-collapse .close::before {
    transform: rotate(45deg);
}

header .navbar-collapse .close::after {
    transform: rotate(-45deg);
}

header .navbar-collapse .nav-link {
    font-size: 18px;
    line-height: 34px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary_color);
    transition: 0.3s linear;
}

header .navbar-collapse .nav-link:hover {
    color: var(--text-color);
}

header .navbar-collapse .active .nav-link {
    color: var(--text-color);
    font-weight: 500;
}

.navbarBackdrop {
    position: fixed;
    content: "";
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    animation: 300ms ease 0s 1 normal none running fades;
    cursor: pointer;
}

@keyframes fades {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

.section {
    padding: 60px 0px;
    position: relative;
}

.hero_section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    cursor: url("../assets/icons/hand.png") 15 15, move;
}

.hero_section video {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero_carousel {
    height: calc(-30px + 100vh);
    z-index: 9;
}

#hero_carousel div {
    height: 100vh;
}

#hero_carousel .carousel-item {
    position: relative;
    padding: 159px 80px;
    background: var(--primary_color);
}

#hero_carousel .carousel-item.active::after {
    opacity: 0.9;
}

#hero_carousel .hero_contents {
    position: relative;
    z-index: 1;
    color: var(--secondaryTextColor);
    display: flex;
    flex-direction: column;
    font-family: var(--montserrat-font);
}

#hero_carousel .carousel-indicators {
    margin-bottom: 0px;
    bottom: 90px;
}

#hero_carousel .carousel-indicators li {
    width: 30px;
    height: 3px;
    margin: 0px 10px;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    transition: 0.3s linear;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

#hero_carousel .carousel-indicators li:hover {
    background-color: var(--text-color);
    width: 60px;
}

#hero_carousel .carousel-indicators li.active {
    background-color: var(--text-color);
    width: 60px;
}

#hero_carousel .hero_contents h1 {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    transform: translateY(-30px);
    opacity: 0;
}

#hero_carousel .carousel-item.animate .hero_contents h1 {
    transform: translateY(0px);
    opacity: 1;
    transition: 0.7s ease-in-out;
}

#hero_carousel .hero_contents .typo {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    transform: translateY(-15px);
    opacity: 0;
}

#hero_carousel .carousel-item.animate .hero_contents .typo {
    transform: translateY(0px);
    opacity: 1;
    transition: 0.7s ease-in-out 0.3s;
}

#hero_carousel .hero_contents .price {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 24px;
    margin-bottom: 0px;
    transform: translateY(-15px);
    opacity: 0;
    border: 1px solid var(--secondaryTextColor);
    padding: 10px;
    width: fit-content;
}

#hero_carousel .carousel-item.animate .hero_contents .price {
    transform: translateY(0px);
    opacity: 1;
    transition: 0.7s ease-in-out 0.6s;
}

#hero_carousel .hero_contents .btn {
    width: fit-content;
    background: var(--secondaryTextColor);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.4px;
    font-family: var(--montserrat-font);
    padding: 16px 40px;
    margin-top: 20px;
    transition: 0.3s linear;
    transform: translateY(15px);
    opacity: 0;
}

#hero_carousel .hero_contents .btn:hover {
    background-color: var(--primary_color);
    color: rgb(255, 255, 255);
}

#hero_carousel .carousel-item.animate .hero_contents .btn {
    animation: 0.7s ease 0.9s 1 normal forwards running an_btn;
    transition: 0.7s ease-in-out;
}

@keyframes an_btn {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

#hero_carousel .other_details {
    margin: 10px 0px 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    list-style-type: none;
    transform: translateY(15px);
    opacity: 0;
}

#hero_carousel .carousel-item.animate .other_details {
    transform: translateY(0px);
    opacity: 1;
    transition: 0.7s ease-in-out 1.1s;
}

#hero_carousel .other_details .rera {
    margin-right: 50px;
    position: relative;
}

#hero_carousel .other_details .rera::before {
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgb(219, 219, 219);
    content: "";
    right: -29px;
}

#hero_carousel .other_details .rera h5 {
    font-size: 16px;
    letter-spacing: 1px;
    margin: 0px;
}

#hero_carousel .other_details .rera p {
    text-transform: uppercase;
    margin: 5px 0px 0px;
}

#hero_carousel .other_details .icon {
    height: 45px;
    width: 45px;
    display: block;
    background: rgb(255, 255, 255);
    padding: 10px;
    margin-right: 15px;
}

#hero_carousel .other_details .icon img {
    width: 100%;
    height: 100%;
}

#hero_carousel .other_details .call {
    display: flex;
    align-items: center;
    color: var(--secondaryTextColor);
    text-decoration: none;
    font-family: var(--montserrat-font);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.4px;
}

#hero_carousel .other_details .call small {
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

#hero_carousel .left_col,
#hero_carousel .right_col {
    padding: 0px;
}

.scroll_explore {
    padding: 10px;
    position: absolute;
    z-index: 99;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 160px;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
}

.scroll_explore::before {
    position: absolute;
    content: "";
    width: 355px;
    height: 200px;
    z-index: -1;
    background: rgb(255, 255, 255);
    border-radius: 91px 5px 16px;
    left: 50%;
    transform: translate(-50%);
    top: -75px;
    clip-path: polygon(100% 100%, 0% 100%, 0% 77.89%, 2% 77.74%, 4% 77.27%, 6% 76.49%, 8% 75.42%, 10% 74.08%, 12% 72.47%, 14% 70.64%, 16% 68.61%, 18% 66.41%, 20% 64.08%, 22% 61.64%, 24% 59.15%, 26% 56.64%, 28% 54.15%, 30% 51.71%, 32% 49.38%, 34% 47.18%, 36% 45.15%, 38% 43.32%, 40% 41.71%, 42% 40.37%, 44% 39.3%, 46% 38.52%, 48% 38.05%, 50% 37.89%, 52% 38.05%, 54% 38.52%, 56% 39.3%, 58% 40.37%, 60% 41.71%, 62% 43.32%, 64% 45.15%, 66% 47.18%, 68% 49.38%, 70% 51.71%, 72% 54.15%, 74% 56.64%, 76% 59.15%, 78% 61.64%, 80% 64.08%, 82% 66.41%, 84% 68.61%, 86% 70.64%, 88% 72.47%, 90% 74.08%, 92% 75.42%, 94% 76.49%, 96% 77.27%, 98% 77.74%, 100% 77.89%);
}

.scroll_explore .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 50px;
}

.scroll_explore .rounded_text {
    transition: 1s;
}

.overview_section {
    background: url("../assets/overview-bg.jpg") center center / cover no-repeat;
}

.overview_section .ov_content {
    font-family: var(--raleway-font);
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: capitalize;
    font-weight: 400;
    line-height: 33px;
    margin: auto;
    text-align: justify;
}

.overview_section .overview_points .single_col:nth-child(2) {
    margin-top: 30px;
}

.overview_section .overview_points .single {
    text-align: center;
    padding: 0px 50px;
}

.overview_section .overview_points .count {
    font-size: 100px;
    font-weight: 700;
    margin-bottom: -50px;
    background: linear-gradient(180deg, var(--primary_color), transparent);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    opacity: .5;
}

.overview_section .overview_points .text {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

.overview_section .know_more_btn {
    display: block;
    margin: 100px auto auto;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-family: var(--montserrat-font);
}

.amenity_section {
    background-color: rgb(50, 15, 39);
}

.amenity_section .am_sec {
    position: relative;
}

.amenity_section .top_content {
    padding: 0px 40px 0px 119px;
    text-align: center;
}

.amenity_section .top_content h3 {
    color: rgb(255, 255, 255);
}

.amenity_section .top_content p {
    font-size: 16px;
    line-height: 27px;
    margin: 0px;
    letter-spacing: 0.3px;
    color: rgb(255, 255, 255);
}

.amenity_section .left_col {
    padding: 60px 30px 60px 0px;
}

.amenity_section .am_sec .amn_sideImg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenity_section .amn_row {
    margin-top: 120px;
}

.amenity_section .left_col,
.amenity_section .right_col {
    position: unset;
}

.amenity_section .single_am {
    text-align: center;
    margin: 25px 0px;
    position: relative;
}

.amenity_section .single_am img {
    width: 60px;
}

.amenity_section .single_am p {
    margin: 30px 0px 0px;
    font-family: var(--montserrat-font);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.amenity_section .single_am .count {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 70px;
    font-weight: 600;
    z-index: -1;
    opacity: 0.02;
    line-height: 70px;
}

.amenity_section video {
    position: absolute;
    top: 0px;
    right: 0px;
    width: calc(50% - 30px);
    height: 100%;
    object-fit: cover;
}

.location_advantage_section {
    background-color: rgb(50, 15, 39);
}

.location_advantage_section .sec_headings h3 {
    color: rgb(255, 255, 255);
}

.location_advantage_section .sec_headings p {
    color: rgb(255, 255, 255);
}

.location_advantage_section .map {
    border: 5px solid rgb(239, 239, 239);
    position: relative;
    height: 100%;
}

.location_advantage_section .map a {
    position: absolute;
    left: 0px;
    width: 100%;
    top: 0px;
    height: 100%;
}

.location_advantage_section .location_map {
    cursor: zoom-in;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: left center;
}

.location_advantage_section .location_points {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin-left: -15px;
    margin-right: -15px;
}

.location_advantage_section .location_points li {
    max-width: 20%;
    flex: 0 0 20%;
    padding: 10px 15px;
}

.location_advantage_section .single_points .num {
    font-size: 30px;
    color: var(--primary_color);
}

.location_advantage_section .single_points .num small {
    font-size: 14px;
    font-weight: 500;
}

.location_advantage_section .single_points p {
    margin: 0px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    font-size: 14px;
}

.location_advantage_section .map_row {
    margin-top: 40px;
}

.location_advantage_section .map_row .left_col {
    padding-top: 50px;
    padding-bottom: 50px;
}

.location_advantage_section .map_row .single:not(:last-child) {
    margin-bottom: 40px;
}

.location_advantage_section .map_row .name {
    color: var(--primary_color);
    font-weight: 500;
    font-size: 18px;
}

.location_advantage_section .map_row ul {
    padding-left: 30px;
    margin: 0px;
}

.location_advantage_section .map_row li {
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.zones_section .sec_headings {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.zones_section .single_zone {
    margin: 5px 0px;
}

.zones_section .single_zone .thumbnail {
    position: relative;
}

.zones_section .single_zone .type {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary_color);
    color: rgb(255, 255, 255);
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.zones_section .single_zone .contents {
    padding: 30px;
}

.zones_section .single_zone .name {
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: 0.3s linear;
}

.zones_section .single_zone:hover .name {
    color: var(--primary_color);
}

.zones_section .single_zone .floor {
    margin: 0px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 14px;
}

.features_section {
    background: url("../assets/features_bg.jpg") center center / cover no-repeat rgb(50, 15, 39);
    border-top: 1px solid rgb(239, 239, 239);
}

.features_section::before {
    position: absolute;
    height: 100%;
    left: 0px;
    top: 0px;
    width: 100%;
}

.features_section .sec_headings h3 {
    color: rgb(255, 255, 255);
}

.features_section .sec_headings p {
    color: rgb(255, 255, 255);
}

.features_section .container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.features_section .image_col {
    height: 100%;
    border: 5px solid rgb(229, 229, 229);
}

.features_section .image_col img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.features_section li {
    padding: 7px 0px;
    letter-spacing: 0px;
    color: rgb(255, 255, 255);
}

.gallery_section {}

.gallery_section .sec_headings h3 {
    color: rgb(0, 0, 0);
}

.gallery_section .left_col {
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.gallery_section .sec_headings {
    margin: 0px;
}

.gallery_section .left_col p {
    line-height: 26px;
    color: rgb(0, 0, 0);
}

.gallery_section .left_col .btn {
    padding: 16px;
    letter-spacing: 1.4px;
    margin-top: 100px;
    width: fit-content;
    background-color: var(--primary_color);
    color: rgb(255, 255, 255);
}

.gallery_section .left_col .btn img {
    opacity: 0.8;
    width: 20px;
}

.gallery_section .gallery_col {
    display: grid;
    gap: 25px;
    height: 100%;
}

.gallery_section .image_col a {
    position: relative;
    display: flex;
    height: 100%;
}

.gallery_section .image_col a::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.gallery_section .image_col a:hover::before {
    opacity: 1;
}

.gallery_section .image_col a::after {
    position: absolute;
    content: "";
    left: -10px;
    top: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid rgb(255, 255, 255);
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.gallery_section .image_col a:hover::after {
    opacity: 0.5;
    left: 10px;
}

.gallery_section .image_col .thumbnail {
    height: 100%;
    object-fit: cover;
}

.gallery_section .image_col .icon {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(0%, -50%);
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.gallery_section .image_col a:hover .icon {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.gallery_section .gallery_col .image_col:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.gallery_section .gallery_col .image_col:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
}

.gallery_section .gallery_col .image_col:nth-child(3) {
    grid-area: 1 / 2 / 3 / 3;
}

.gallery_section .gallery_col .image_col:nth-child(3) a {
    height: 100%;
}

.gallery_section .gallery_col .image_col:nth-child(3) img {
    height: 100%;
    object-fit: cover;
}

.gallery_section .gallery_col .image_col:nth-child(4) {
    grid-area: 1 / 3 / 2 / 4;
}

.gallery_section .gallery_col .image_col:nth-child(5) {
    grid-area: 2 / 3 / 3 / 4;
}

.floor_plan_section .right_col {
    position: unset;
    padding-left: 50px;
}

.floor_plan_section .nav-tabs {
    border: none;
}

.floor_plan_section .nav-item {
    margin: 5px;
}

.floor_plan_section .nav-tabs .nav-link {
    margin: 0px;
    border: 1px solid rgb(64, 63, 75);
    padding: 13px 18px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    border-radius: 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s ease-in-out;
}

.floor_plan_section .nav-tabs .nav-link.active,
.floor_plan_section .nav-tabs .nav-link:hover {
    background: var(--primary_color);
}

.floor_plan_section .contents {
    margin-top: 50px;
}

.floor_plan_section .contents .title {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 22px;
}

.floor_plan_section .contents .thumbnail {
    position: absolute;
    top: 0px;
    left: 0px;
    width: calc(50% - 50px);
    height: 100%;
}

.floor_plan_section .contents .thumbnail a {
    display: flex;
    height: 100%;
    width: 100%;
    background: rgb(236, 236, 236);
    padding: 60px;
}

.floor_plan_section .contents .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.floor_plan_section .contents p {
    letter-spacing: 0.5px;
    font-size: 17px;
}

.floor_plan_section .contents ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin-left: -30px;
    margin-right: -30px;
    margin-top: 40px;
}

.floor_plan_section .contents li {
    position: relative;
    max-width: 25%;
    flex: 0 0 25%;
    padding: 0px 30px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}

.floor_plan_section .contents li:not(:last-child)::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 1px;
    background: rgb(64, 63, 75);
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.contact_section .section_heading span {
    display: block;
}

.contact_section .form-group {
    margin-bottom: 50px;
}

.contact_section .form-control {
    height: 56px;
    padding: 10px 18px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 2px solid rgb(236, 236, 236);
}

.contact_section .form-control::placeholder {
    font-size: 16px;
    letter-spacing: 0.3px;
    color: rgb(173, 173, 173);
}

.contact_section input[type="submit"] {
    margin-top: 70px;
    margin-left: auto;
    display: table;
    margin-right: auto;
    padding: 16px 32px;
    letter-spacing: 3px;
}

.footer_section {
    padding-bottom: 0px;
    border-top: 1px solid rgb(239, 239, 239);
    background-color: var(--primary_color);
}

.footer_section::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url("../assets/footer-pattern.png") 0% 0% / contain repeat-x;
    opacity: 0.7;
    z-index: -1;
}

.footer_section .footer_logo {
    margin-bottom: 40px;
}

.footer_section .footer_logo img {
    max-width: 200px;
    filter: invert(1);
}

.footer_section .col1 .overview {
    margin: 0px;
    line-height: 27px;
    max-width: 500px;
}

.footer_section .col2 .contents {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.footer_section .col2 .page-links {
    margin-left: -30px;
    margin-right: -30px;
}

.footer_section .title {
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.footer_section .page-links {
    display: flex;
}

.footer_section .col2 ul {
    margin: 0px 30px;
}

.footer_section ul {
    list-style-type: none;
}

.footer_section li {
    margin-bottom: 4px;
}

.footer_section li a {
    color: var(--text-color);
    padding: 5px 0px;
    display: block;
    transition: 0.2s ease-in-out;
}

.footer_section li a:hover {
    color: var(--primary_color);
}

.footer_section .col3 .icon {
    margin-right: 15px;
}

.footer_section .col3 .icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.footer_section .copyright_row {
    padding: 35px 0px 50px;
    margin-top: 35px;
    border-top: 1px solid rgb(255, 255, 255);
}

.footer_section .copyright_row p {
    text-align: center;
    font-size: 14px;
    margin: 0px;
    line-height: 28px;
    letter-spacing: 0.3px;
    color: rgb(255, 255, 255);
}

.footer_section .copyright_row a {
    color: rgb(255, 255, 255);
    font-weight: 500;
}

.mobile-section {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background: var(--primary_color);
    z-index: 99;
}

.mobile-section .btn {
    position: relative;
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    flex-grow: 1;
    height: 40px;
    display: flex;
    align-items: center;
}

.mobile-section .btn:not(:last-child)::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 1px;
    background: rgb(255, 255, 255);
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}

.sidebar_form {
    position: fixed;
    right: -500px;
    top: 0px;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: rgb(255, 255, 255);
    padding: 50px;
    z-index: 9999;
    display: flex;
    align-items: center;
    overflow: auto;
}

.sidebar_form .form {
    width: 100%;
}

.sidebar_form .form .form-group {
    margin-bottom: 25px;
}

.sidebar_form .form .form-control {
    height: 54px;
    padding: 15px 18px;
    border-color: rgb(227, 227, 227);
}

.sidebar_form .form .form-control::placeholder {
    color: rgb(173, 173, 173);
}

.sidebar_form .form textarea.form-control {
    height: 115px;
}

.sidebar_form .form .dark_btn {
    font-size: 16px;
    font-weight: 500;
    padding: 16px 32px;
    letter-spacing: 3px;
    margin-top: 10px;
}

.sidebar_form.show {
    right: 0px;
    transition: 400ms ease-in-out 0.3s;
}

.sidebar_form .close {
    cursor: pointer;
    height: 50px;
    width: 50px;
    background: var(--primary_color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-weight: 100;
    font-size: 50px;
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 0.6;
    transition: 0.5s ease-in-out;
}

.sidebar_form .close:hover {
    opacity: 1;
}

.sidebar_form .close:focus {
    animation: 1s ease-in-out 0s 1 normal none running closeAn;
}

@keyframes closeAn {
    50% {
        top: 10px;
    }
    100% {
        top: 30px;
    }
}

.formBackdrop {
    position: fixed;
    content: "";
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    animation: 300ms ease 0s 1 normal none running fades;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.pre-loader {
    height: 100%;
    left: 0px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 999991;
    background-color: rgb(255, 255, 255);
    transition: 0.5s;
}

.pre-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.pre-loader .loader-inner {
    display: grid;
    place-items: center;
    height: 100%;
    padding: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    width: 100%;
    transform: translate(-50%, -50%);
}

.pre-loader .round-bg {
    display: grid;
    width: 60px;
    height: 60px;
    position: relative;
    place-items: center;
    margin: 0px auto;
}

.pre-loader .round-bg::before,
.pre-loader .round-bg::after {
    border-radius: 50%;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.pre-loader .round-bg::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    box-shadow: 0 0 0 2px var(--primary_color);
    background: radial-gradient(transparent 0, transparent 4px, var(--primary_color) 6px);
    transform: rotate(45deg);
    z-index: 5;
    border-bottom-right-radius: 0px;
    animation-name: pendule;
}

@keyframes pendule {
    50% {
        transform: rotate(45deg) translate(-50%, -50%);
    }
}

@-webkit-keyframes pendule {
    50% {
        transform: rotate(45deg) translate(-50%, -50%);
    }
}

.pre-loader .round-bg::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 2px;
    opacity: 0.8;
    top: 100%;
    left: 46%;
    transform: translateX(-50%);
    background: var(--primary_color);
    animation-name: dash-pendule;
}

@keyframes dash-pendule {
    50% {
        transform: scaleX(3);
        opacity: 0.2;
    }
}

@-webkit-keyframes dash-pendule {
    50% {
        transform: scaleX(3);
        opacity: 0.2;
    }
}

@media (min-width: 1000px) {
    .amenity_section .container,
    .zones_section .container,
    .gallery_section .container,
    .floor_plan_section .container,
    .location_advantage_section .container,
    .footer_section .container {
        max-width: 90%;
    }
}

@media (min-width: 700px) {
    .navbar .container {
        max-width: 100%;
    }
    #hero_carousel .container {
        max-width: 100%;
    }
}

@media (max-width: 1500px) {
    #hero_carousel .other_details .rera {
        margin-right: 80px;
    }
    #hero_carousel .other_details .rera::before {
        right: -45px;
    }
    header.navbar.fixed {
        padding: 20px 50px;
    }
    .sidebar_form {
        padding-top: 70px;
    }
    #hero_carousel {
        height: auto;
    }
    #hero_carousel .carousel-item {
        padding: 150px 120px;
    }
    #hero_carousel .hero_contents .btn {
        margin-top: 7px;
    }
    #hero_carousel .other_details {
        margin-top: 10px;
    }
    #hero_carousel .hero_contents h1 {
        margin-bottom: 20px;
    }
    #hero_carousel .hero_contents h1 {
        font-size: 16px;
    }
    .amenity_section .top_content {}
    .amenity_section .am_sec .side_img {
        height: 350px;
    }
    .amenity_section .amn_row {
        margin-top: 60px;
    }
    .zones_section .sec_headings {
        max-width: 80%;
    }
    .zones_section .single_zone .name {
        font-size: 18px;
    }
    .features_section .container {}
}

@media (max-width: 1400px) {
    #hero_carousel .carousel-item {
        padding: 116px 40px;
    }
    #hero_carousel .hero_contents .typo {
        font-size: 14px;
        line-height: 19px;
    }
    #hero_carousel .hero_contents h1 {
        margin-bottom: 12px;
    }
    .amenity_section .am_sec .side_img {
        width: 200px;
        height: 260px;
    }
    .amenity_section .top_content {
        padding: 0px 0px 0px 160px;
    }
    .amenity_section .left_col {
        padding: 30px 0px;
    }
    .amenity_section .single_am {
        margin: 15px 0px;
    }
    .amenity_section .single_am img {
        width: 50px;
    }
    .amenity_section .single_am p {
        font-size: 14px;
    }
    .zones_section .single_zone .contents {
        padding: 20px;
    }
    .zones_section .single_zone .name {
        letter-spacing: 2px;
    }
    .zones_section .single_zone .floor {
        font-size: 13px;
        letter-spacing: 1px;
    }
    .gallery_section .left_col .btn {
        margin-top: 50px;
    }
    .footer_section .footer_logo img {
        max-width: 170px;
    }
    .footer_section .title {
        font-size: 20px;
        margin-bottom: 40px;
    }
    .footer_section .col1 .overview {
        max-width: 400px;
        font-size: 15px;
    }
    .footer_section li a {
        padding: 3px 0px;
    }
}

@media (max-width: 1366px) {
    .sidebar_form {
        padding-top: 120px;
    }
}

@media (max-width: 1280px) {
    .sidebar_form {
        padding-top: 70px;
    }
}

@media (max-width: 1199px) {
    #hero_carousel .carousel-item {
        padding: 150px 40px;
    }
    #hero_carousel .hero_contents h1 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .hero_section {
        height: auto;
    }
    .location_accordion {
        margin-top: auto;
        margin-right: auto;
        margin-left: auto;
        width: 100% !important;
        margin-bottom: 20px !important;
    }
    .lication_img {
        margin: auto;
        width: 100% !important;
    }
    .top_carousel {
        padding-right: 11px;
        padding-bottom: 0px;
        padding-left: 11px;
        padding-top: 90px !important;
    }
    .top_carousel img {
        height: 250px !important;
        width: 100%;
    }
    #hero_carousel div {
        height: auto !important;
    }
    .d_sm_none {
        display: none !important;
    }
    .d_sm_block {
        display: block !important;
    }
    .d_sm_flex {
        display: flex !important;
    }
    .mx_sm_-15 {
        margin-left: -15px;
        margin-right: -15px;
    }
    .px_sm_15 {
        padding-left: 15px;
        padding-right: 15px;
    }
    .section {
        padding: 70px 0px;
    }
    .sec_headings {
        text-align: center;
        margin-bottom: 30px;
    }
    .sec_headings .section_heading {
        font-size: 24px;
        line-height: 32px;
    }
    header.navbar {
        padding: 20px 5px;
    }
    header.navbar.fixed {
        padding: 20px 5px;
    }
    header .main-logo {
        max-width: 100px;
        display: none;
    }
    header .main-logo-white {
        display: block;
    }
    header .right_btns {
        display: inline-flex;
        align-items: center;
    }
    header .right_btns .navbar-toggler {
        margin-left: 15px;
        font-size: 14px;
    }
    header .schedule_btn {
        padding: 0px;
    }
    header .schedule_btn img {
        filter: invert(1);
        max-width: 26px;
    }
    header .navbar-collapse {
        right: -100%;
        max-width: 100%;
        padding: 30px 50px;
        overflow: auto;
    }
    header .navbar-collapse .nav-link {
        font-weight: 400;
        font-size: 18px;
        line-height: 32px;
    }
    #hero_carousel .hero_contents {
        align-items: center;
        text-align: center;
    }
    #hero_carousel .carousel-item {
        padding: 0px 20px 126px;
    }
    #hero_carousel .hero_contents h1 {
        font-size: 18px;
        margin-top: 15px;
        margin-bottom: 15px;
        font-weight: 700;
    }
    #hero_carousel .hero_contents .typo {
        font-size: 13px;
    }
    #hero_carousel .hero_contents .price {
        font-size: 22px;
        line-height: 28px;
    }
    #hero_carousel .hero_contents .btn {
        margin: 20px 0px 29px;
    }
    .hero_section video {
        object-position: left center;
    }
    #hero_carousel .other_details {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }
    #hero_carousel .other_details .rera {
        margin: 0px;
        width: 100%;
    }
    #hero_carousel .other_details li {
        margin-bottom: 20px !important;
    }
    .overview_section .ov_content {
        max-width: 100%;
        font-size: 16px;
        line-height: 30px;
    }
    .overview_section .wave {
        display: none;
    }
    .overview_section .overview_points {
        margin-top: 40px;
    }
    .overview_section .overview_points .single {
        padding: 0px 30px;
        margin: 10px 0px;
    }
    .overview_section .overview_points .single_col:nth-child(2) {
        margin: 0px;
    }
    .overview_section .overview_points .text {
        margin: 0px;
    }
    .overview_section .know_more_btn {
        margin-top: 50px;
    }
    .amenity_section .section_heading {
        font-size: 24px;
        line-height: 34px;
    }
    .amenity_section .amn_row {
        margin-top: 40px;
    }
    .amenity_section .am_sec .side_img {
        display: none;
    }
    .amenity_section video {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: unset;
        top: unset;
        right: unset;
        margin-top: 40px;
    }
    .amenity_section .left_col {
        padding: 0px 15px;
    }
    .amenity_section .top_content {
        padding: 0px;
    }
    .location_advantage_section .location_points li {
        max-width: 50%;
        flex: 0 0 50%;
        text-align: center;
    }
    .location_advantage_section .single_points .num {
        font-size: 36px;
        line-height: initial;
        margin-bottom: 8px;
    }
    .location_advantage_section .single_points p {
        line-height: 20px;
    }
    .location_advantage_section .map_row .left_col {
        padding-top: 0px;
        padding-bottom: 30px;
    }
    .location_advantage_section .map_row ul {
        display: none;
    }
    .location_advantage_section .map_row .single:not(:last-child) {
        margin-bottom: 20px;
    }
    .location_advantage_section .map_row .name {
        font-size: 16px;
    }
    .location_advantage_section .map a {
        position: relative;
        left: unset;
        top: unset;
    }
    .location_advantage_section .location_map {
        height: auto;
        object-fit: unset;
    }
    .zones_section .sec_headings {
        max-width: 100%;
    }
    .features_section::before {
        background-image: linear-gradient(360deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94), white);
    }
    .features_section .container {
        max-width: 100%;
    }
    .features_section ul {
        padding-left: 30px;
        margin: 0px;
    }
    .features_section li {
        padding: 4px 0px;
    }
    .features_section .image_col {
        margin-top: 30px;
        height: auto;
    }
    .features_section .image_col img {
        height: auto;
        object-fit: unset;
    }
    .gallery_section .left_col {
        padding: 0px 15px;
    }
    .gallery_section .left_col p {
        text-align: center;
    }
    .gallery_section .left_col .btn {
        display: table;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
    }
    .gallery_section .gallery_col {
        margin-top: 50px;
        display: flex;
        flex-wrap: wrap;
        gap: unset;
        height: unset;
    }
    .gallery_section .gallery_col .image_col {
        grid-area: unset;
        max-width: 50%;
        flex: 0 0 50%;
        padding: 5px;
    }
    .floor_plan_section .contents .thumbnail {
        position: relative;
        top: unset;
        left: unset;
        width: 100%;
        height: auto;
    }
    #floor_plan_dropdown {
        height: 50px;
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 1px;
        font-size: 14px;
    }
    .floor_plan_section .right_col {
        padding-left: 15px;
        padding-top: 20px;
    }
    .floor_plan_section .contents {
        margin-top: 40px;
    }
    .floor_plan_section .contents .title {
        font-weight: 500;
        font-size: 20px;
    }
    .floor_plan_section .contents p {
        font-size: 15px;
    }
    .floor_plan_section .contents ul {
        margin: 25px -5px 40px;
    }
    .floor_plan_section .contents li {
        max-width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
        padding: 10px;
        text-align: center;
        margin: 5px;
        border: 1px solid rgb(221, 221, 221);
        justify-content: center;
        line-height: 18px;
        text-transform: uppercase;
        font-size: 14px;
    }
    .floor_plan_section .contents li:not(:last-child)::before {
        display: none;
    }
    .floor_plan_section .contents .thumbnail a {
        height: auto;
        padding: 0px;
        background: transparent;
    }
    .floor_plan_section .contents .thumbnail img {
        height: auto;
        object-fit: unset;
    }
    .contact_section {
        padding-top: 0px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .contact_section .form-group {
        margin-bottom: 20px;
    }
    .contact_section input[type="submit"] {
        margin-top: 30px;
    }
    .footer_section {
        padding-bottom: 50px;
    }
    .footer_section .footer_col:not(:last-child) {
        margin-bottom: 40px;
    }
    .footer_section .title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .footer_section .col2 .page-links {
        margin-left: -15px;
        margin-right: -15px;
    }
    .footer_section .col2 ul {
        margin: 0px 15px;
    }
    .footer_section li a {
        font-size: 15px;
    }
    .footer_section .copyright_row {
        padding-bottom: 20px;
    }
    .footer_section .copyright_row p {
        line-height: 24px;
        font-size: 13px;
    }
    .sidebar_form {
        padding: 20px 30px 30px;
        flex-direction: column;
    }
    .sidebar_form .close {
        position: absolute;
        top: 20px;
        margin-bottom: 0px;
        margin-left: auto;
        right: 20px;
    }
}

.top_carousel {
    padding: 0px !important;
}

.top_carousel img {
    height: 100vh;
    width: 100%;
}

.location_accordion {
    width: 68%;
    margin: auto;
}

.location_accordion .card-header {
    padding: 5px 8px;
    background-color: rgba(0, 0, 0, 0.96);
}

.location_accordion .card {
    margin-bottom: 10px;
}

.location_accordion button {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.location_accordion button:hover {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.lication_img {
    width: 80%;
    margin: auto;
}

.price_box {
    padding: 31px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.427) 0px 0px 5px;
}

.price_box .ty_po {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary_color);
}

.price_box .price_area {
    font-size: 18px;
}

.price_boxPrice {
    font-size: 18px;
}

.price_boxPrice span {
    color: var(--primary_color);
    font-size: 20px;
    font-weight: bold;
}

.price_box button {
    margin-top: 15px;
}

.key_highlights {
    width: fit-content;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 15px;
}

.key_highlights li {
    letter-spacing: 1.5px;
    line-height: 25px;
    list-style-type: none;
}

.key_highlights li img {
    filter: invert(1) brightness(100);
    margin-right: 5px;
    max-width: 10px;
    vertical-align: middle;
}

.banner_form {
    padding: 0px 20px !important;
}

.footer_logo+p {
    color: rgb(0, 0, 0);
}

.footer_col1 .section_heading {
    font-size: 28px;
    line-height: 20px;
    color: rgb(0, 0, 0);
    margin-bottom: 31px;
}

.footer_col1 .form .btn {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.pl-40 {
    padding-left: 40px;
}

.abt_build {
    font-size: 35px;
    font-weight: 600;
    text-align: left;
    color: rgb(255, 255, 255);
}

.location_advantage_section.price_sec {
    background: rgb(249, 249, 249);
}

.location_advantage_section.price_sec h3 {
    color: rgb(0, 0, 0);
}

.location_advantage_section.price_sec p {
    color: rgb(0, 0, 0);
}

.features_section .points {
    margin-left: 40px;
}

@media (max-width: 767px) {
    .key_highlights {
        width: 100%;
        text-align: center;
    }
    .hero_contents p {
        margin-bottom: 0px;
        font-size: 13px;
    }
    .section.overview_section img {
        margin-bottom: 15px;
    }
    section.floor_plan_section {
        padding: 0px;
    }
    .pl-40 {
        padding-left: 0px;
    }
    .features_section .points {
        margin-left: 0px;
    }
    .abt_build {
        font-size: 30px;
    }
}

.patch-img {
    width: fit-content;
    background-color: #d21522;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-radius: 10px;
    margin-top: 4px;
    height: fit-content !important;
    height: auto;
}

.patch-img img {
    max-width: 122px;
    /* margin-top: 20px; */
}

.patch-img span {
    margin-left: 10px;
    font-size: 17px;
    font-family: 'Montserrat-SemiBold';
}

@media(max-width:767px) {
    .patch-img {
        width: 100%;
    }
}

@media (max-width: 1366px) {
    .key_highlights {
        margin-top: 10px;
        margin-bottom: 0px;
    }
    #hero_carousel .other_details {
        margin-top: 9px;
    }
}