@import url('https://fonts.googleapis.com/css2?family=Pliant:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Pliant", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Pliant", sans-serif;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: "Pliant", sans-serif;
    src: url('../fonts/home-new/Futura-bold.woff2') format('woff2'), url('../fonts/home-new/Futura-bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'futura-light';
    src: url('../fonts/home-new/futura-light.woff2') format('woff2'), url('../fonts/home-new/futura-light.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura-regular';
    src: url('../fonts/home-new/Futura-regular.woff2') format('woff2'), url('../fonts/home-new/Futura-regular.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.margin_top {
    margin-top: 50px;
}

.padding_top_bottom {
    padding: 50px 0px;
}

.padding_top {
    padding-top: 50px;
}

.light_grey_bg {
    background-color: #dcdcdc;
}

.golden_bg_btn:hover {
    background-color: #b98e33;
    border: 1px solid #b98e33;
    color: #ffffff;
}

.green_bg_btn {
    background-color: #42c853;
    border: 1px solid #42c853;
    color: #ffffff;
}

.green_bg_btn:hover {
    background-color: #42c853;
    border: 1px solid #42c853;
    color: #ffffff;
}

.white_border_btn {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.white_border_btn:hover {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.icon_btn {
    display: flex;
    column-gap: 10px;
}

li {
    list-style: none;
}

ul {
    padding: 0;
    margin: 0;
}

.gurgaon_project_heading p {
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
}

.project_listing_heading .char {
    display: inline-block;
    opacity: 0.2;
    transform: translateY(6px);
    transition: none;
}

.gurgaon_project_heading h1 {
    font-size: 45px;
}

.desktop_banner {
    display: block;
}
.tab_banner {
    display: none;
}
.mobile_banner {
    display: none;
}

.desktop_map {
    display: block;
}

.mobile_map {
    display: none;
}

.common_btn a,
.submit-btn {
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    /* font-size: 14px; */
    border-radius: 5px;
}

a.whatsapp_float i {
    display: none;
}

.box_radius {
    border-radius: 10px;
}

.btn_image {
    width: 25px;
    object-fit: contain;
    height: 25px;
}

section {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
}


/* Header css start  */

header {
    padding: 10px 0;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    background: #00000066;
}

header.scrolled {
    background: #ffffff;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px 0px;
}

header.scrolled .logo img {
    filter: brightness(0) invert(0);
}

.inner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    max-width: 170px;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    -moz--webkit-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

header.scrolled .menu ul li a {
    color: #000000;
}

.contact-number {
    display: flex;
}

.contact-number a {
    text-decoration: none;
    color: #fff;
    -moz--webkit-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-number a img {
    display: block;
}

.contact-number {
    display: flex;
    column-gap: 20px;
}

.contact-number a,
.contact-number span {
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-family: "Pliant", sans-serif;
}

.contact-number a img {
    display: block;
    width: 22px;
    /* transition: all 0.4s ease-in-out; */
}

.pulse {
    animation: pulseGlow 1.5s infinite;
}

.shake {
    animation: shakeeGlow 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px #fff);
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px #fff);
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px #fff);
    }
}

@keyframes shakeeGlow {
    0% {
        transform: rotate(0deg);
        filter: drop-shadow(0 0 0px #fff);
    }
    25% {
        transform: rotate(10deg);
        filter: drop-shadow(0 0 4px #fff);
    }
    50% {
        transform: rotate(-10deg);
        filter: drop-shadow(0 0 8px #fff);
    }
    75% {
        transform: rotate(10deg);
        filter: drop-shadow(0 0 4px #fff);
    }
    100% {
        transform: rotate(0deg);
        filter: drop-shadow(0 0 0px #fff);
    }
}

.contact-number a img {
    transition: filter 0.3s ease;
}

header.scrolled .white_border_btn img {
    filter: brightness(0) !important;
}

header.scrolled .white_border_btn {
    border: 1px solid #000000;
    color: #000000;
}


/* Header css end  */


/* banner section css start  */

.banner {
    position: sticky;
    top: 0;
    transition: .5s;
    scroll-behavior: smooth;
    overflow: hidden;
}

.banner_img {
    position: relative;
}

.banner_img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #000000a6, transparent);
}

.banner_img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 70%;
    bottom: 0;
    left: 0;
}

.banner_content {
    position: absolute;
    left: 45px;
    right: 0;
    bottom: 30px;
    z-index: 1;
    width: 100%;
}

.banner .banner_wrp {
    position: relative;
    width: 100%;
    z-index: 1;
    height: 100%;
    border: 1px solid #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: fit-content;
}


/* .banner .banner_wrp::after {
    position: absolute;
    content: "";
    width: 500px;
    height: 100%;
    bottom: -30px;
    border: 1px solid #fff;
    max-width: 100%;
    left: -30px;
    border-radius: 10px;
    opacity: .5;
} */

.banner .price_wrp p {
    display: flex;
    align-items: center;
    column-gap: 15px;
    background-color: #fff;
    width: fit-content;
    padding: 8px 15px 8px 18px;
    border-radius: 5px;
    color: #b98e34;
    font-family: "Pliant", sans-serif;
    font-size: 22px;
    position: relative;
    z-index: 1;
    background: linear-gradient(-90deg, white 70%, #ffffff96);
}

.banner .price_wrp p img {
    width: 30px;
    box-shadow: rgba(17, 17, 26, 0.52) 0px 0px 20px;
    border-radius: 50%;
}

.banner_content .gurgaon_project_heading {
    position: relative;
    z-index: 1;
}

.banner_content .gurgaon_project_heading h1 {
    margin-bottom: 5px;
    font-family: "Pliant", sans-serif;
}

.banner_content .gurgaon_project_heading h2 {
    margin-bottom: 0px;
}

.banner .banner_bottom_text p {
    margin-bottom: 0px;
    margin-top: 0px;
    position: relative;
    z-index: 1;
    margin-bottom: 0px;
    font-size: 12px;
}

.payment_plan {
    margin-top: 10px;
}
.banner .payment_plan p {
    font-size: 18px;
    margin-bottom:20px;
}
.banner .payment_plan p img {
    width: 25px;
}

.banner_bottom_text {
    display: flex;
    align-items: center;
    column-gap: 5px;
}


/* banner section css end  */


/* Overview section css start  */
.pricelist{
    position: sticky;
    z-index: 1;
    margin-top: -50px;
    border-radius:50px 50px 0px 0px;
}


.overview_wrp {
    display: flex;
    row-gap: 15px;
    flex-direction: column;
}

.overview .gurgaon_project_heading p {
    font-size: 16px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: 300;
}

.overview_content {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.property_icon img {
    width: 30px;
}

.property_icon {
    width: 65px;
    height: 50px;
    background-color: #254d74;
    text-align: center;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 24px;
    color: #fff;
}

.property_text p {
    margin-bottom: 0;
}

.property_text {
    background-color: #ffffff;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 5px;
    width: 100%;
}

.overview .common_btn {
    margin-top: 15px;
}

.rera_tooltip {
    width: 15px;
    margin-top: -2px;
}

.tooltip_wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
    z-index: 1;
}

.tooltip_wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip_text {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    transition: 0.2s ease;
    text-align: center;
}


/* Desktop hover */

.tooltip_wrapper:hover .tooltip_text {
    opacity: 1;
    visibility: visible;
}


/* Mobile click class */

.tooltip_wrapper.active .tooltip_text {
    opacity: 1;
    visibility: visible;
}

.tooltip_text::after {
    content: "";
    position: absolute;
    top: 100%;
    /* place at bottom of tooltip */
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
}


/* Overview section css end  */


/* highlight section css start  */

.highlight_wrp {
    padding: 10px 10px 10px 0px;
}

.hightlight_point {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
}

.hightlight_point:last-child {
    margin-bottom: 0px;
}

.hightlight_point p {
    margin-bottom: 0px;
}

.circle_effect span {
    width: 25px;
    height: 25px;
    background-color: #e6d6b5;
    display: flex;
    border-radius: 50%;
    position: relative;
    align-items: center;
    justify-content: center;
}

.circle_effect span::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    z-index: 2;
}

.circle_effect span::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    z-index: 1;
    animation: wavePulse 1.8s ease-out infinite;
}

@keyframes wavePulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(2.2);
        opacity: 0;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.hightlight_point p {
    margin-bottom: 0px;
        padding: 10px;
    border-bottom: 1px dashed #fff;
}

.highlight_content {
    padding: 40px 30px;
}

.bg_golden .hightlight_point p {
    color: #fff;
}

.bg_golden .circle_effect span::before {
    background-color: #ffffff;
    animation: wavePulsewhite 1.8s ease-out infinite;
}

.bg_golden .circle_effect span::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    z-index: 1;
    animation: wavePulse 1.8s ease-out infinite;
}


/* highlight section css end  */


/* Gallery section css start  */

.gallery_wrp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery_image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 14px -5px #b98e33;
}

.gallery_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border: 5px solid #ffffff;
    border-radius: 10px;
    /* box-shadow: 0 0 14px -5px #b98e33; */
}


/* LAYOUT FIX */


/* left top */

.gallery_wrp .img1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}


/* left bottom */

.gallery_wrp .img2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}


/* center tall */

.gallery_wrp .img3 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}


/* middle small */

.gallery_wrp .img4 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.gallery_wrp .img5 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}


/* right tall */

.gallery_wrp .img6 {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
}


/* Gallery section css end  */


/* Price list section css start  */

.pricelist .row .col-lg-4:nth-child(even) .pricelist_wrp {
    color: #fff;
}

.pricelist .row {
    row-gap: 15px;
}

.pricelist_wrp {
    padding: 20px;
}

.price_text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed;
}

.price_text p {
    margin-bottom: 0;
}

.price_text p:last-child {
    font-family: "Pliant", sans-serif;
}

.price_conf h3 {
    font-size: 22px;
    margin-bottom: 0px;
}

.price_conf {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
}

.pricelist_wrp .common_btn {
    margin-top: 20px;
}

.pricelist .row .col-lg-4:nth-child(even) .circle_effect span::before {
    animation: wavePulsewhite 1.8s ease-out infinite;
}

.pricelist .row .col-lg-4:nth-child(even) .circle_effect span::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    z-index: 1;
    animation: wavePulse 1.8s ease-out infinite;
}


/* Price list section css end  */


/* Location advanaage section css start  */

.location_advanatge .location_map {
    margin-right: 30px;
}

.location_advanatge .overview_wrp {
    margin-left: 30px;
}


/* Location advanaage section css end  */


/* Amenities section css start  */

.amenities .row {
    row-gap: 20px;
}

.amenities_wrp {
    background-color: #ffffff;
    text-align: center;
    border-radius: 10px;
}

.amenites_text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-radius: 0px 0px 10px 10px;
    text-align: left;
}

.amenites_text p {
    margin-bottom: 0px;
    color: #ffffff;
}

.amenites_icon {
    padding: 15px;
}

.amenites_icon img {
    width: 100px;
    margin: 0px auto;
}


/* Amenities section css end  */


/* call to action striped css start  */

.call_to_action .action_btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-top: 20px;
}

.call_to_action .gurgaon_sub_heading h3 {
    font-size: 30px;
    margin-bottom: 0px;
}


/* call to action striped css end  */

.floor_image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 10px;
}

.floor_image img.w-100 {
    filter: blur(5px);
}

.floor_image .common_btn {
    position: absolute;
}


/* Project video section start  */

section.project_video .project_video_wrp {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.project_video .project_video_wrp::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
}

section.project_video .project_video_wrp .gurgaon_project_heading {
    position: absolute;
    z-index: 1;
    text-align: center;
    width: 100%;
    bottom: 20px;
}

section.project_video .project_video_wrp .play_video {
    position: absolute;
    z-index: 1;
}

section.project_video .project_video_wrp .gurgaon_project_heading h2 {
    margin-bottom: 10px;
}

section.project_video .play_video img {
    width: 60px;
    filter: invert(1);
}


/* Project video section end  */

.dev_logo img {
    width: 150px;
    margin-bottom: 20px;
}

.enquire-div .enquire_heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.enquire-div .enquire_text p:last-child {
    width: 75%;
    margin-bottom: 0px;
}

.enquire-div .enquire_text p:first-child {
    margin-bottom: 10px;
    font-size: 18px;
}

.enquire-div {
    background-color: #fff;
    padding: 30px;
}

.enquire-div .input-group {
    margin-bottom: 20px;
    position: relative;
}

.enquire-div .input-group .form-control {
    border: 0;
    background-color: transparent;
    border-radius: 5px;
    color: #000;
    padding: 10px 15px;
}

.formflag {
    display: none;
}

#loader {
    display: none;
}

.submit-btn .btn_image {
    width: 15px;
}

footer {
    background-color: #fff;
    position: relative;
    z-index: 1;
}


/* footer css start  */

footer {
    background-color: #fff;
    position: relative;
    padding: 20px 0px;
    text-align: center;
}

footer p {
    font-size: 12px;
    margin-bottom: 5px;
}

footer ul {
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: center;
}

footer ul li a {
    font-size: 12px;
}

.contact-buttons {
    position: fixed;
    left: 20px;
    bottom: 0;
    z-index: 9;
}

.contact-buttons ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-buttons ul li:last-child {
    display: none;
}

.contact-buttons ul li {
    margin: 0 0 15px 0;
}

.contact-buttons ul li a.whatsapp-btn {
    background-color: #3ac24d;
    color: #fff;
}

.contact-buttons ul li a {
    text-decoration: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:20px
}
.call_to_action .common_btn .btn{
    margin-top:0;
}
.contact-buttons ul li a:hover {
    color: #fff;
}

.contact-buttons ul li a span {
    display: none;
}

.side-enquire-now {
    position: fixed;
    top: 45%;
    right: 0;
    z-index: 1;
    writing-mode: vertical-rl;
}

.side-enquire-now .submit-btn {
    padding: 15px 5px;
}

footer p br {
    display: none;
}


/* footer css end  */


/* Modal form section css start  */

.modal {
    background-color: rgba(0, 0, 0, 0.4392156863);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(255, 255, 255);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-radius: 12px;
    max-width: 350px;
    margin: 0px auto;
    padding: 10px;
}

.modal-form {
    width: 100%;
    display: inline-block;
    position: relative;
}

.modal-form h3 {
    text-align: center;
    font-size: 24px;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}

.modal-form h3 img {
    display: none;
}

.close {
    color: #aaa;
    font-size: 25px;
    font-weight: bold;
    position: absolute;
    right: 5px;
    top: -5px;
    cursor: pointer;
}

.input-group .form-control {
    background: unset;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #6d767e;
    padding: 5px 10px;
    border-radius: 0;
}

.modal-body {
    padding: 0;
}

.pop-call {
    text-align: center;
}

.modal-body form {
    padding: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.modal .status-text {
    display: none;
    font-size: 18px;
    text-align: center;
    margin: 20px 0 -5px;
}

.iti--allow-dropdown {
    width: 100%;
}

#loader {
    display: none;
}

.formflag {
    display: none;
}

.modal-dialog {
    max-width: 350px;
    margin: 0px auto;
}


/* Modal form section css end  */

.construction-item {
    position: relative;
    background-color: #fffff2;
    padding: 10px;
}

.construction-item p {
    margin-bottom: 0px;
    color: #000000;
    z-index: 1;
    padding: 15px 15px 5px 15px;
}

.construction-img {
    box-shadow: 0 0 14px -5px #ffdfaa !important;
    border-radius: 10px;
    position: relative;
    z-index: 0;
}

.construction-swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    justify-content: center;
    display: flex;
    margin-top: 20px;
    column-gap: 5px;
    margin-bottom: 20px;
}

.swiper-pagination-bullet-active {
    background-color: #000000;
}

.construction-more-detail .common_btn a {
    width: fit-content;
    margin: 0px auto;
}

.construction-more-detail .common_btn a img {
    width: 15px;
}

/* ---------- Responsive css ---------- */
form .btn {
    width: 100%;
    background: #254d74;
    color: #fff;
}
.contact a{
    padding:0;
    color:#fff;
    text-decoration:none;
}
.more-text {
    display: none;
}

.read-more-btn {
    border: none;
    background: 0 0;
    color: #254d74;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    transition: color 0.3s;
}

.read-more-btn:hover {
    color: #254d74;
}
.project-overview p {
    font-size: 13px !important;
    font-weight: 400 !important;
    margin-bottom: 10px !important;
    text-align: justify;
}
.gurgaon_project_heading {
    margin-bottom: 25px;
}
.common_btn .btn {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.faq-section .card-header-title>a:after {
    content: "\f078";
    font-family: "FontAwesome";
    font-weight: 900;
    position: absolute;
    right: 10px;
}

.faq-section .card-header-title>a[aria-expanded="true"]:after {
    content: "\f077";
}
.desktop-banner{
    display:block;
}
.tab-banner{
    display:none;
}
.mobile-banner{
    display:none;
}
.btn-link {
    font-size: 16px;
}
.kreeva-swaranya-developer img {
    border-radius: 17px;
    box-shadow: 0 0 3px #000;
}
@media only screen and (max-width: 1400px) {
    p,
    a,
    li,
    .form-control,
    input,
    button,
    .btn,
    .iti .iti__selected-dial-code {
        font-size: 15px;
    }
    .gurgaon_project_heading h1 {
        font-size: 40px;
    }
    .gurgaon_project_heading h2 {
        font-size: 25px;
    }
    .rera_tooltip {
        width: 12px;
    }
    .banner .price_wrp p {
        font-size: 20px;
    }
    .banner .price_wrp p img {
        width: 25px;
    }
    .banner .banner_bottom_text p {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .overview .gurgaon_project_heading p {
        font-size: 16px;
    }
    .property_icon {
        height: 45px;
    }
    .property_text {
        height: 45px;
    }
    .overview_content {
        column-gap: 10px;
    }
    .overview_wrp {
        row-gap: 10px;
    }
    .highlight_content {
        padding: 30px 20px;
    }
    .pricelist_wrp {
        padding: 15px;
    }
    .price_conf h3 {
        font-size: 22px;
    }
    .amenites_icon {
        padding: 10px;
    }
    .amenites_icon img {
        width: 80px;
    }
}

@media only screen and (max-width: 1199px) {
    p,
    a,
    li,
    .form-control,
    input,
    button,
    .btn,
    .iti .iti__selected-dial-code {
        font-size: 12px;
    }
    .gurgaon_project-heading h1 {
        font-size: 29px;
    }
    .padding_top_bottom {
        padding: 30px 0px;
    }
    .circle_effect span {
        width: 20px;
        height: 20px;
    }
    .circle_effect span::before {
        width: 10px;
        height: 10px;
    }
    .circle_effect span::after {
        width: 20px;
        height: 20px;
    }
    .bg_golden .circle_effect span::after {
        width: 20px;
        height: 20px;
    }
    .rera_tooltip {
        width: 10px;
    }
    .contact-number a img {
        width: 18px;
    }
    .logo {
        max-width: 120px;
    }
    .menu ul li a {
        padding: 10px;
    }
    .banner .price_wrp p img {
        width: 22px;
    }
    .banner .price_wrp p {
        font-size: 15px;
    }
    .gurgaon_project_heading h1 {
        font-size: 32px;
    }
    .gurgaon_project_heading h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .banner .payment_plan p img {
        width: 20px;
    }
    .banner .banner_wrp::after {
        width: 400px;
        left: -20px;
    }
    .overview {
        border-radius: 30px 30px 0px 0px;
        margin-top: -40px;
    }
    .overview .gurgaon_project_heading p {
        font-size: 16px;
    }
    .property_icon {
        height: 40px;
    }
    .property_icon img {
        width: 20px;
    }
    .property_text {
        height: 40px;
        padding: 8px 12px;
    }
    .overview_wrp {
        row-gap: 6px;
    }
    .overview_content {
        column-gap: 6px;
    }
    .overview .common_btn a {
        padding-left: 0;
        padding-right: 0;
    }
    .btn_image {
        width: 20px;
        height: 20px;
    }
    .overview .common_btn {
        margin-top: 10px;
    }
    .highlight_content {
        padding: 20px 15px;
    }
    .price_conf h3 {
        font-size: 18px;
    }
    .pricelist .row .col-lg-4:nth-child(2n) .circle_effect span::after {
        width: 20px;
        height: 20px;
    }
    .amenites_icon img {
        width: 70px;
    }
    .amenites_icon {
        padding: 8px;
    }
    .amenities_wrp {
        border-radius: 5px;
    }
    .amenites_text {
        padding: 6px 10px;
        border-radius: 0px 0px 5px 5px;
    }
    section.project_video .play_video img {
        width: 30px;
    }
    .enquire-div {
        padding: 20px;
    }
    .enquire-div .input-group {
        margin-bottom: 15px;
    }
    footer p {
        font-size: 10px;
    }
    footer ul li a {
        font-size: 10px;
    }
    .contact-buttons ul li a {
        width: 30px;
        height: 30px;
    }
    .side-enquire-now {
        top: 40%;
    }
}

@media only screen and (max-width: 991px) {
    p,
    a,
    li,
    .form-control,
    input,
    button,
    .btn,
    .iti .iti__selected-dial-code {
        font-size: 14px;
    }
    .gurgaon_project_heading h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .side-enquire-now {
        display: none;
    }
    .padding_top_bottom {
        padding: 30px 0px;
    }
    .circle_effect span {
        width: 20px;
        height: 20px;
    }
    .circle_effect span::before {
        width: 12px;
        height: 12px;
    }
    .gurgaon_project_heading h1 {
        font-size: 28px;
    }
    /* header css start  */
    .logo {
        max-width: 130px;
    }
    .menu {
        display: none;
    }
    .button_container {
        position: absolute;
        top: 50%;
        right: 0;
        height: 29px;
        width: 35px;
        cursor: pointer;
        z-index: 100;
        transition: opacity 0.25s ease;
        transform: translateY(-50%);
    }
    .button_container.active .top {
        transform: translateY(11px) translateX(0) rotate(45deg);
        background: #fff;
    }
    .button_container span {
        background: #fff;
        border: 0;
        height: 5px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.35s ease;
        cursor: pointer;
    }
    .button_container.active .middle {
        opacity: 0;
        background: #fff;
    }
    .button_container span:nth-of-type(2) {
        top: 11px;
    }
    .button_container.active .bottom {
        transform: translateY(-11px) translateX(0) rotate(-45deg);
        background: #fff;
    }
    .button_container span:nth-of-type(3) {
        top: 22px;
    }
    .overlay.open {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
        max-height: 100vh;
        margin-top: 10px;
    }
    .overlay {
        top: 58px;
    }
    .overlay {
        position: fixed;
        background: #fff;
        top: 64px;
        left: 0;
        width: 100%;
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        max-height: 0;
        -webkit-transition: max-height 0.3s, -webkit-transform 0.3s;
        transition: max-height 0.3s, -webkit-transform 0.3s;
        -o-transition: max-height 0.3s, transform 0.3s;
        transition: max-height 0.3s, transform 0.3s;
        transition: max-height 0.3s, transform 0.3s, -webkit-transform 0.3s;
        -webkit-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
        overflow: auto;
    }
    .overlay nav {
        text-align: center;
    }
    .overlay ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: inline-block;
        position: relative;
        width: 100%;
    }
    .overlay.open li {
        -webkit-animation: fadeInRight 0.5s ease forwards;
        animation: fadeInRight 0.5s ease forwards;
        animation-delay: 0s;
        animation-delay: 0s;
        animation-delay: 0s;
        animation-delay: 0s;
        -webkit-animation-delay: 0.35s;
        animation-delay: 0.35s;
        opacity: 1;
        border-bottom: 1px solid gray;
    }
    .overlay ul li a,
    .overlay ul li span {
        display: block;
        position: relative;
        color: #000;
        text-decoration: none;
        overflow: hidden;
    }
    .contact-number .common_btn:last-child {
        display: none;
    }
    /* header css end  */
    /* banner section css start  */
    .banner .price_wrp p {
        margin-bottom: 10px;
        background: linear-gradient(-90deg, white 80%, transparent);
    }
    .banner .banner_bottom_text p {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .banner_content {
        bottom: 20%;
    }
    /* banner section css end  */
    /* Overview section css start  */
    .overview {
        border-radius: 20px 20px 0px 0px;
        margin-top: -20px;
    }
    .overview .gurgaon_project_heading p {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .overview_image {
        margin-bottom: 15px;
    }
    .overview_content {
        column-gap: 10px;
    }
    .overview_wrp {
        row-gap: 10px;
    }
    .overview .row .col-lg-6:nth-child(2) .overview_wrp {
        margin-top: 10px;
    }
    .overview .common_btn {
        margin-top: 10px;
    }
    .property_text {
        height: 55px;
    }
    .property_icon {
        height: 55px;
    }
    /* Overview section css end  */
    /* highlight section css start  */
        .highlight_content {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    .highlight_wrp {
        padding: 0px 10px 10px 10px;
    }
    /* highlight section css end  */
    /* gallery section css start  */
    .gallery_wrp {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .gallery_image {
        grid-column: auto !important;
        grid-row: auto !important;
    }
    .gallery_wrp .img4 {
        order: 5;
    }
    .gallery_wrp .img5 {
        order: 5;
    }
    .gallery_wrp .img6 {
        order: 4;
    }
    /* gallery section css end  */
    /* Pricelist section css start  */
    .pricelist .row {
        row-gap: 15px;
    }
    .pricelist_wrp {
        padding: 20px;
    }
    .price_conf h3 {
        font-size: 22px;
    }
    .price_conf {
        margin-bottom: 10px;
    }
    /* Pricelist section css end  */
    /* Location advantage section css start  */
    .location_advanatge .location_map {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .location_advanatge .overview_wrp {
        margin-left: 0;
    }
    /* Location advantage section css end  */
    /* Amenities section css start  */
    .amenities .row .col-lg-3 {
        width: 50%;
    }
    .amenities .row .col-lg-4 {
        width: 50%;
    }
    .amenities .row {
        row-gap: 10px;
    }
    .amenities .row .col-lg-3:nth-child(odd) {
        padding-right: 6px;
    }
    .amenities .row .col-lg-3:nth-child(even) {
        padding-left: 6px;
    }
    .amenities .row .col-lg-4:nth-child(odd) {
        padding-right: 6px;
    }
    .amenities .row .col-lg-4:nth-child(even) {
        padding-left: 6px;
    }
    .amenites_icon {
        padding: 10px;
    }
    .amenites_icon img {
        width: 80px;
    }
    .amenites_text {
        padding: 6px 10px;
    }
    /* Amenities section css end  */
    /* call to action section css start  */
    .call_to_action {
        text-align: center;
    }
    .call_to_action .action_btn .common_btn {
        width: 50%;
    }
    .call_to_action .action_btn {
        margin-top: 20px;
    }
    /* call to action section css end  */
    /* Floor Plans section css start  */
    .floor_plans .row {
        row-gap: 15px;
    }
    /* Floor Plans section css end  */
    /* project video section css start  */
    section.project_video .project_video_wrp img.w-100 {
        object-fit: cover;
        height: 250px;
    }
    section.project_video .project_video_wrp .gurgaon_project_heading {
        bottom: 10px;
    }
    /* project video section css end  */
    .enquire-div {
        padding: 20px;
    }
    .enquire-div .enquire_heading {
        align-items: start;
    }
    .enquire-div .enquire_text p:last-child {
        width: 100%;
    }
    .enquire-div .input-group {
        margin-bottom: 10px;
    }
    footer {
        padding-bottom: 50px;
    }
    footer p {
        margin-bottom: 5px;
    }
    .contact-buttons {
        width: 100%;
        left: 0;
    }
    .contact-buttons ul {
        display: flex;
    }
    .contact-buttons ul li {
        margin: 0;
        width: 50%;
    }
    .contact-buttons ul li a {
        display: block;
        text-decoration: none;
        color: #fff;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 5px;
        width: 100%;
        height: 40px;
    }
    .contact-buttons ul li:first-child {
        display: block;
    }
    .contact-buttons ul li a span {
        display: block;
    }
    .contact-buttons ul li:last-child {
        display: block;
    }
    footer p span {
        display: none;
    }
    footer p br {
        display: block;
    }
     .desktop_banner {
        display: none;
    }
    .tab_banner {
        display: block;
    }
    .mobile_banner {
        display: none;
    }
    .desktop-banner{
        display:none;
    }
    .tab-banner{
        display:block;
    }
    .mobile-banner{
        display:none;
    }
}

@media only screen and (max-width:767px) {
   
    p,
    a,
    li,
    .form-control,
    input,
    button,
    .btn,
    .iti .iti__selected-dial-code {
        font-size: 16px;
    }
    /* banner section css start  */
    .banner .price_wrp p {
        font-size: 16px;
    }
    .gurgaon_project_heading h1 {
        font-size: 30px;
    }
    .banner .banner_wrp {
        padding: 15px;
        padding-bottom: 30px;
    }
    .banner .banner_wrp::after {
        width: 100%;
        left: 0;
    }
    .banner .banner_bottom_text p {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .banner .price_wrp p img {
        width: 25px;
        filter: brightness(0) invert(1);
    }
    .icon_btn {
        column-gap: 5px;
    }
    .banner_content {
        bottom: 6%;
    }
    /* banner section css end  */
}
@media only screen and (max-width:575px) {
    .desktop_banner {
        display: none;
    }
    .tab_banner {
        display: none;
    }
    .mobile_banner {
        display: block;
    }
    .banner_content {
        bottom: 22%;
    }
    .banner_img::after {
        height: 85%;
    }
    .desktop-banner{
        display:none;
    }
    .tab-banner{
        display:none;
    }
    .mobile-banner{
        display:block;
    }
}
@media only screen and (max-width:510px) {
    .banner .banner_wrp .common_btn .btn {
    font-size: 13px;
    display: flex;
    align-items: center;
}
    .gurgaon_project-heading h1 {
        font-size: 26px;
    }
    .gurgaon_project-heading p {
        font-size: 13px;
    }
    .contact a {
    font-size: 14px;
}
.gurgaon_project_heading h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .gurgaon_project_heading p {
    font-size: 13px;
}
    .banner .price_wrp p {
        font-size: 13px;
    }
        .banner_content {
        bottom: 6%;
        left: 50%;
        transform: translate(-50%);
        width: 70%;
    }
    .contact-buttons ul li a {
        font-size: 15px;
    }
    .banner .banner_wrp {
        max-width: none;
    }
    .banner .payment_plan p {
    margin-bottom: 10px;
}
}
@media only screen and (max-width:420px) {
       .banner_content {
        width: 80%;
        bottom:11%;
    } 
    .banner {
    position: relative;
    top: 70px;
}
.pricelist {
    margin-top: 0px;
}
header {
    background: #000000f0;
}
    .gurgaon_project-heading h1 {
        font-size: 23px;
    }
        .gurgaon_project-heading p {
        font-size: 13px;
        margin-bottom: 5px;
    }
}
@media only screen and (min-width: 320px) and (max-width: 380px) {
    p,
    a,
    li,
    .form-control,
    input,
    button,
    .btn,
    .iti .iti__selected-dial-code {
        font-size: 14px;
    }
    .gurgaon_project_heading h1 {
        font-size: 30px;
    }
    .gurgaon_project_heading h2 {
        font-size: 22px;
    }
    .overview .gurgaon_project_heading p {
        font-size: 16px;
    }
    .property_icon {
        height: 50px;
    }
    .property_text {
        height: 50px;
    }
    .call_to_action .action_btn .common_btn a {
        padding-left: 0;
        padding-right: 0;
    }
    .icon_btn {
        column-gap: 5px;
    }
}