* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--first-font);
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: jost;
    font-display: swap;
    src: url("../font/jost/Jost-Regular.ttf");
}

@font-face {
    font-family: mulish;
    font-display: swap;
    src: url("../font/mulish/Mulish-Regular.ttf");
}

:root {
    --primary-theme: #ae8e51;
    --text-white: #fff;
    --text-black: #000;
    --first-font: "mulish";
    --second-font: "jost";
    --border: rgba(0, 0, 0, 0.1);
    --dark-gray: #2C2C32;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    appearance: none;
}

input:focus-visible {
    outline: none;
}

textarea:focus-visible {
    outline: none;
}

body {
    background-color: var(--text-white);
}

a {
    text-decoration: none !important;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

.button {
    background: var(--dark-gray);
    color: var(--text-white);
    font-size: 20px;
    line-height: 24px;
    padding: 15px 25px;
    border-radius: 4px;
    display: inline-block;
    font-family: var(--second-font);
}


/* .button:hover{
  background: var(--primary-theme);
  transition: all 0.3s;
} */

.sm-btn {
    padding: 10px 25px;
}

.lg-button {
    width: 50%;
}

.heading {
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    color: var(--primary-theme);
    font-family: var(--first-font);
}

.heading span {
    height: 3px;
    width: 60px;
    background: var(--primary-theme);
    display: inline-block;
    margin-right: 10px;
    position: relative;
    bottom: 6px;
}

.subheading {
    font-size: 45px;
    line-height: 55px;
    font-weight: 700;
    font-family: var(--second-font);
    margin-bottom: 20px;
}


/* navbar css starts here */

.banner {
    position: relative;
    overflow: hidden;
}

.banner .header {
    top: 20px;
    position: absolute;
    left: 50% !important;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1030;
}

.my_navbar {
    background: var(--text-white);
}

.my_navbar .navbar-brand img {
    /* height: 30px; */
    max-width: 125px;
}

.my_navbar .nav_menu {
    display: flex;
    justify-content: center;
}

.my_navbar .nav-item .nav-link {
    color: #737373;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.my_navbar .nav-item .nav-link:hover,
.my_navbar .nav-item .nav-link.active {
    color: var(--text-black);
}

.navbar-toggler {
    padding: .25rem 1rem !important;
    border: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.my_navbar .navbar-toggler-icon {
    background: var(--text-black);
    height: 2px;
    width: 13px;
    position: relative;
}

.my_navbar .navbar-toggler-icon::before {
    position: absolute;
    content: '';
    background: var(--text-black);
    height: 2px;
    width: 22px;
    bottom: 7px;
    left: 0px;
}

.my_navbar .navbar-toggler-icon::after {
    position: absolute;
    content: '';
    background: var(--text-black);
    height: 2px;
    width: 22px;
    top: 7px;
    left: 0px;
}

.fixed {
    position: fixed !important;
    top: 0 !important;
    height: 75px;
    z-index: 999;
}

.call_btn .call_icon {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 8px;
    display: inline-block;
    position: relative;
    top: 0;
    right: -31px;
    text-align: center;
    width: 40px;
}

.call_btn .call_icon .inner_call_icon {
    background-color: var(--primary-theme);
    border-radius: 7px;
    padding: 8px;
    display: inline-block;
    position: relative;
    top: 0;
    right: 16px;
    text-align: center;
    width: 40px;
    height: 40px;
}

.call_btn img {
    height: 18px;
}

.call_btn .btn_text {
    line-height: 70px;
    padding: 0 20px 0 50px;
    margin-right: -13px;
    background-color: var(--primary-theme);
    color: black;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
}


/* slider section css starts here */

.slider {
    position: relative;
}

.slider::after {
    content: "";
    position: absolute;
    /* width: 100%; */
    /* z-index: 8; */
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    /* background: linear-gradient(360deg, #032838 0%, #03283800 70%); */
    /* background: linear-gradient(360deg, #032838 0%, #03283800 100%); */
    /* opacity: 1; */
    width: 80%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    z-index: 1;
}

.slider .carousel-indicators {
    z-index: 99;
    display: none;
}

.slider .carousel-control-prev,
.carousel-control-prev {
    background: var(--primary-theme);
    height: 50px;
    width: 50px;
    top: calc(100% - 180px);
    left: 10px;
    opacity: 1;
    border-radius: 100%;
    z-index: 999;
}

.carousel-item img {
    height: 100vh;
    width: 100%;
}

.slider .carousel-control-next,
.carousel-control-next {
    background: var(--primary-theme);
    height: 50px;
    width: 50px;
    top: calc(100% - 121px);
    opacity: 1;
    right: calc(100% - 60px);
    border-radius: 100%;
    z-index: 999;
}

.carousel-control-prev-icon {
    width: 25px;
}

.carousel-control-next-icon {
    width: 25px;
}

.slider .project_details {
    position: absolute;
    top: 40%;
    left: 18%;
    z-index: 10;
}

.slider .project_details h2 {
    font-size: 35px;
    line-height: 42px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-white);
}

.slider .project_details h3 {
    font-family: var(--first-font);
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.slider .project_details h4 {
    font-family: var(--second-font);
    font-size: 26px;
    line-height: 34px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--text-white);
}

.slider .project_details .project_section {
    display: flex;
    align-items: center;
    /* margin: 30px 0; */
    margin-bottom: 5px;
}

.slider .project_details .project_section .address_section img {
    height: 40px;
    margin-right: 8px;
    border: 1px solid var(--text-white);
    border-radius: 100%;
    padding: 10px;
}

.slider .project_details .project_section .address_section p {
    color: var(--text-white);
    font-size: 16px;
    line-height: 35px;
    font-weight: 400;
    margin-bottom: 0;
}

.slider .project_details .price {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 0;
    color: var(--text-white);
    margin-bottom: 15px;
}

.slider .project_details .price span {
    font-size: 40px;
    ;
    font-weight: 600;
    line-height: 45px;
    padding-top: 10px;
    color: var(--text-white);
}

.slider .project_details .slider_form {
    max-width: 450px;
    background: var(--text-white);
    border-radius: 5px;
    padding: 30px;
    margin: 20px 0 0 auto;
    box-shadow: 0px 8px 10px 10px rgba(21, 44.00000000000002, 88, 0.09);
}

.slider .project_details .slider_form h6 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.slider .project_details .slider_form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #999;
    border-radius: 4px;
}

.slider .form_section {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 310px;
    background: var(--text-white);
    border-radius: 5px;
    padding: 18px;
}

.slider .form_section h6 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.slider .form_section input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #999;
    border-radius: 4px;
}

.slider .form_section .close_btn {
    position: absolute;
    top: 13px;
    right: 10px;
    width: 30px;
    padding: 0;
}

.slider .form_section .close_btn img {
    width: 25px;
}

.slider .project_details .key_highlight ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.slider .project_details .key_highlight ul li {
    font-family: var(--second-font);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-white);
    position: relative;
    padding: 15px 15px 15px 45px;
    background: var(--text-black);
    border-radius: 4px;
    margin: 0 5px 8px;
}

.slider .project_details .key_highlight ul li::before {
    position: absolute;
    content: '';
    background: url("../images/favorite.png") no-repeat;
    height: 24px;
    width: 24px;
    top: calc(50% - 12px);
    left: 10px;
}

.slider .form_btn {
    position: fixed;
    background: var(--text-black);
    top: calc(50% - 100px);
    right: 0;
    text-align: center;
    padding: 15px;
    border-radius: 4px;
    z-index: 99;
    writing-mode: vertical-rl;
    cursor: pointer;
}

.slider .form_btn h6 {
    margin-bottom: 0;
}

.slider .form_btn h6 a {
    font-size: 20px;
    line-height: 10px;
    font-weight: 600;
    padding: 14px 0px;
    letter-spacing: 1px;
    color: var(--text-white);
    text-transform: capitalize;
}

.slider_form h6 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.slider_form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #999;
    border-radius: 4px;
}

.slider_form {
    position: fixed;
    right: -400px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 350px;
    background: var(--text-white);
    border-radius: 5px;
    padding: 30px;
    transition: right 0.5s ease;
    width: 300px;
}

.slider_form.active {
    right: 0;
}

.slider_form .close_btn {
    position: absolute;
    top: 13px;
    right: 14px;
    width: 30px;
    padding: 0;
}

.slider_form .close_btn img {
    width: 25px;
}


/* slider section css ends here */


/* overview section css starts here */

.overview_section {
    background: #f5f5f5;
    padding: 100px 0;
    position: relative;
}

.overview_section .overview_img {
    position: relative;
}

.overview_section .overview_img::after {
    content: '';
    background: url("../images/shape.png") no-repeat;
    height: 233px;
    width: 241px;
    position: absolute;
    top: calc(50% - 20px);
    left: calc(100% - 290px);
    animation-name: animation-bob-float, animation-bob;
    animation-duration: .3s, 1.5s;
    animation-delay: 0s, .3s;
    animation-timing-function: ease-out, ease-in-out;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: forwards;
    animation-direction: normal, alternate;
}

@keyframes animation-bob-float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

@keyframes animation-bob {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(10px);
    }
}

.overview_section {
    background: url("../images/about-bg.webp") no-repeat;
    width: 100%;
    height: 100%;
}

.overview_section::after {
    content: attr(data-name);
    font-size: 180px;
    position: absolute;
    line-height: 110px;
    color: var(--dark-gray);
    opacity: .4;
    text-transform: capitalize;
    left: 55px;
    writing-mode: tb-rl;
    top: 50%;
    transform: rotate(180deg) translateY(50%);
    height: 100%;
    text-align: center;
    letter-spacing: 4px;
    font-family: var(--second-font);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: var(--dark-gray);
    -webkit-text-stroke-width: 2px;
    letter-spacing: 14px;
}

.overview_section .overview_box {
    background: var(--dark-gray);
    padding: 30px;
    width: 350px;
    border-radius: 10px;
    position: relative;
    bottom: 70px;
    left: -30px;
}

.overview_section .overview_box h2 {
    color: var(--text-white);
    font-family: var(--second-font);
    font-size: 60px;
    line-height: 75px;
    font-weight: 700;
    margin-bottom: 0;
}

.overview_section .overview_box h3 {
    color: var(--text-white);
    font-family: var(--second-font);
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 0;
}

.overview_section .right_part {
    padding: 20px 10px;
}

.overview_section .right_part p {
    font-family: var(--second-font);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    text-align: justify;
}


/* overview section css ends here */


/* highlight section css starts here */

.highlight_section {
    background: url("../images/banner/slider-img3.webp") no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 100px 0;
    position: relative;
}

.highlight_section::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000000b5;
}

.highlight_section .heading_box {
    position: relative;
    z-index: 10;
}

.highlight_section .highlight_box {
    border-radius: 5px;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 9%);
    text-align: center;
    transition: ease-in-out .9s;
    margin-bottom: 20px;
    border: 1px solid var(--primary-theme);
    padding: 35px 25px;
    z-index: 11;
    position: relative;
}

.highlight_box img {
    max-width: 55px;
    filter: invert(1);
}

.highlight_section .highlight_box:hover {
    background-color: var(--primary-theme);
}

.highlight_section .highlight_box h5 {
    font-family: var(--first-font);
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: var(--text-white);
    margin: 15px 0 8px;
}

.highlight_section .highlight_box p {
    font-family: var(--first-font);
    font-size: 16px;
    /* line-height: 30px; */
    color: var(--text-white);
    margin-bottom: 0;
    margin-top: 10px;
}

.highlight_section .highlight_box:hover img {
    filter: invert(1);
    transition: ease-in-out .9s;
}

.highlight_section .highlight_box:hover h5,
.highlight_section .highlight_box:hover p {
    color: white;
    /* color: var(--text-black); */
    transition: ease-in-out .9s;
}


/* highlights section css ends here  */


/* price section css starts here */

.price_section {
    padding: 100px 0 100px;
}

.price_section .apartment {
    border-radius: 4px;
    background: var(--primary-theme);
    padding: 10px;
    text-align: center;
    display: inline-block;
    margin: 0 auto 20px;
    width: 180px;
    min-width: 180px;
}

.price_section .apartment h5 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
}

.price_section .box_one {
    background: var(--text-white);
    box-shadow: 0px 8px 10px 10px rgba(21, 44.00000000000002, 88, 0.09);
    padding: 30px 30px 30px;
    border-radius: 10px;
}

.price_section .box_one:hover {
    box-shadow: 0px 8px 10px 8px rgba(21, 44.00000000000002, 88, 0.03);
}

.price_section .box_one .price {
    margin-bottom: 28px;
    position: relative;
}

.price_section .box_one .price span {
    font-size: 22px;
    line-height: 36px;
    font-weight: 500;
    background: var(--primary-theme);
    padding: 10px 17px;
    border-radius: 10px;
    width: 100%;
    display: inline-block;
    color: white;
}

.price_section .box_one ul {
    margin: 20px 0;
    padding: 0;
    text-align: left;
}

.price_section .box_one ul li {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 2px solid #d5d5d5;
    display: flex;
    align-items: center;
}

.price_section .box_one ul li:first-child {
    border-top: 2px solid #d5d5d5;
}

.price_section .box_one ul li span {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}

.price_section .box_one ul li img {
    height: 16px;
    margin-right: 5px;
}


/* price section css ends here */


/* amenities section css starts here */

.amenities_section {
    padding: 100px 0 100px;
    background: var(--primary-theme);
    color: white;
}

.amenities_section .heading {
    color: white;
}

.amenities_section .heading span {
    background: #000;
}

.amenities_section .wrapper {
    width: 100%;
    padding-top: 20px;
    text-align: center;
}

.amenities_section .carousel {
    width: 100%;
    margin: 0px auto;
}

.amenities_section .slick-slide {
    margin: 10px;
}

.amenities_section .slick-slide {
    width: 395px;
}

.amenities_section .slick-slide img {
    width: 100%;
    border: 2px solid #fff;
}

.amenities_section .slick-slide span {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    display: inline-block;
    margin: 10px 0;
}

.amenities_section .wrapper .slick-dots li button:before {
    font-size: 20px;
    color: white;
}

.amenities_section .slick-prev {
    display: none !important;
}

.amenities_section .slick-next {
    display: none !important;
}

.amenities_section .prev-arrow6 {
    position: absolute;
    bottom: -70px;
    left: 47%;
    z-index: 99;
}

.amenities_section .slide-arrow6 {
    width: 45px;
    height: 45px;
    line-height: 39px;
    background: var(--text-black);
    color: var(--primary-theme);
    text-align: center;
    font-size: 22px;
    cursor: pointer;
    /* padding-top: 9px; */
    border: 1px solid var(--text-black);
    border-radius: 100%;
}

.amenities_section .next-arrow6 {
    position: absolute;
    bottom: -70px;
    right: 47%;
    z-index: 99;
}


/* amenities section css ends here */


/* floor plan section starts here */

.floor_section {
    padding: 100px 0 100px;
}

.floor_section .left_part .nav-link {
    background: transparent !important;
    color: var(--text-black) !important;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    padding: 15px;
    border: 2px solid var(--dark-gray);
    margin-bottom: 20px;
}

.floor_section .left_part .nav-link:hover {
    border: 2px solid var(--primary-theme);
    color: var(--primary-theme) !important;
    transition: 0.3s ease-in-out;
}

.floor_section .plan_button {
    text-align: center;
    position: relative;
    bottom: 50%;
}

.floor_section .nav-pills .nav-link.active {
    border: 2px solid var(--primary-theme);
    color: var(--primary-theme) !important;
}


/* floor plan section ends here */


/* location section starts here */

.location_section {
    padding: 0 0 0px;
    position: relative;
}

.location_section img {
    width: 100%;
    filter: blur(3px);
}

.location_section .location_card {
    max-width: 650px;
    margin-left: auto;
    padding: 30px 30px;
    background: #fff;
    position: absolute;
    top: calc(50% - 255px);
    right: calc(50% - 34%);
    outline: 4px solid var(--primary-theme);
}

.location_section .location_card .location_advantage {
    margin: 0;
    padding: 0;
}

.location_section .location_card .location_advantage li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-top: 1px dashed #dfdfdf;
    border-bottom: 1px dashed #dfdfdf;
    margin-bottom: 10px;
}

.location_section .location_card .location_advantage li h6 {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.location_section .location_card .location_advantage li span {
    font-weight: 600;
    font-size: 16px;
}


/* gallery section css starts here */

.gallery_section {
    padding: 100px 0 100px;
    position: relative;
}

.gallery_section img {
    /* margin: 10px 0; */
    /* height: 350px;
  width: 100%;
  object-fit: cover; */
}

.gallery_section .center_img {
    /* height: 720px; */
    /* width: 100%;
  object-fit: cover; */
}

.gallery_section .slider-for img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.gallery_section .slider-nav img {
    height: 250px;
    object-fit: cover;
}

.gallery_section .slider-nav div:not(:last-of-type) img {
    border-bottom: 1px solid white;
}

.gallery_section .col-md-8 .slick-next.slick-arrow {
    display: none;
}

.gallery_section .col-md-8 .slick-next {
    right: 0px;
}

.gallery_section .col-md-8 .slick-next::before {
    content: '';
    background: url("../images/next1.png") no-repeat center center;
    ;
    background-color: var(--text-black);
    border-radius: 50%;
    padding: 20px;
    opacity: 1;
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery_section .col-md-4 .slick-prev.slick-arrow::before {
    display: none;
}

.gallery_section .col-md-8 .slick-prev.slick-arrow {
    z-index: 999;
}

.gallery_section .col-md-8 .slick-prev::before {
    content: '';
    background: url("../images/back1.png") no-repeat center center;
    ;
    background-color: var(--text-black);
    border-radius: 50%;
    padding: 20px;
    opacity: 1;
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery_section .col-md-8 .slick-prev {
    left: -20px;
}

.gallery_section .col-md-4 .slick-prev.slick-arrow {
    display: none !important;
}

.gallery_section .col-md-4 .slick-next::before {
    display: none;
}

.gallery_section .col-md-4 .slick-vertical .slick-slide {
    border: none;
}


/* gallery section css ends here */


/* footer section css starts here */

footer {
    background: url("../images/footer-image.webp") no-repeat bottom/cover;
    padding: 60px;
    overflow: hidden;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #222222;
    height: 100%;
    width: 100%;
    opacity: 0.9;
}

footer .inner_footer {
    padding: 40px;
    background: var(--text-white);
    position: relative;
    border-radius: 5px 5px 0 0;
}

footer .footer_logo_img {
    max-width: 200px;
}

footer .inner_footer .builder_details h5 {
    font-size: 26px;
    font-weight: 700;
    line-height: 35px;
    font-family: var(--second-font);
}

footer .inner_footer .builder_details p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    text-align: justify;
}

footer .footer_form {
    background: var(--text-white);
    box-shadow: 0px 0px 2px 1px rgba(21, 44.00000000000002, 88, 0.09);
    padding: 15px;
    border-radius: 5px;
    background: var(--primary-theme);
}

footer .footer_form h5 {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 15px;
    text-align: center;
    color: #000000;
}

footer .footer_form input {
    width: 100%;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
}

footer .footer_form textarea {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 15px;
}

footer .footer_bottom {
    background-color: var(--primary-theme);
    color: white;
    padding: 20px;
    position: relative;
    border-radius: 0 0 5px 5px;
}

footer .footer_bottom .disclaimer p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

footer .footer_bottom .disclaimer .moreless-button {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
}

footer .footer_bottom .rera_details p {
    font-size: 16px;
    line-height: 24px;
    margin: 10px 0;
}

footer .footer_bottom .rera_details a {
    color: var(--text-white);
}


/* moodal form css */

h3.modal-head {
    color: var(--text-black);
    text-align: center;
    letter-spacing: 0px;
    font-size: 21px;
    margin-bottom: 10px;
}

p.modal-para {
    color: var(--text-black);
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px
}

.modal-content {
    border: none !important;
    border-radius: 5px !important;
    background: var(--text-white);
}

.modal-content img {
    border-radius: 5px 5px 0 0;
}

.modal-content .inner_content {
    padding: 18px 18px;
}

div#exampleModal .wrap {
    display: flex;
}

.modal input {
    width: 100%;
    padding: 10px;
    border: 1px solid #999;
    border-radius: 4px;
}

div#exampleModal .popup_image {
    width: 50%;
    padding: 10px;
}

div#exampleModal .banner-form-section {
    padding: 10px;
}

div#exampleModal .img-fluid {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

div#exampleModal .modal-content {
    /* padding: 25px 5px; */
}

.modal .btn-close {
    position: absolute;
    right: 19px;
    top: 12px;
}

.modal .btn-close:focus {
    box-shadow: none;
}

.modal .btn-close {
    background: var(--text-white);
    border-radius: 100%;
    opacity: 1;
    font-size: 20px;
    line-height: 20px;
}

.modal .inp-box {
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding-top: 10px;
    text-align: left;
    font-size: 12px;
}

.modal .inp-box input {
    width: auto;
}

.modal .inp-box label.inp-txt {
    padding-left: 10px;
    color: #fff;
    font-size: 12px;
}

.modal .inp-box label.inp-txt.black {
    padding-left: 10px;
    color: #000000;
    font-size: 10px;
}

.form_section {
    display: none;
}

.footer_sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fffc;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 99;
    box-shadow: 0 0 14px -5px #393f41;
    align-items: center;
    justify-content: center;
}

.footer_sticky .inner {
    font-size: 15px;
    text-align: center;
    padding: 9px;
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.footer_sticky .enqtext {
    color: #000;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.footer_sticky .inField {
    margin: auto 6px;
}

.footer_sticky .button {
    padding: 6px 20px;
}

.d_view {
    display: block;
}

.m_view {
    display: none;
}

.inner-col {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 0;
    background: #fff;
    margin-bottom: 20px;
}

.cotnetdiv {
    padding: 15px;
    text-align: center;
}

.pro-name {
    font-size: 20px;
    color: #000000;
    font-weight: 600;
    /* border-bottom: 1px solid #e5e5e5; */
    padding-bottom: 0px;
    margin-bottom: 12px;
}

.proj-typology {
    display: block;
    margin: 10px 0;
    /* width: fit-content; */
    /* background: #e5e5e5; */
    font-weight: 600;
    font-size: 16px;
    padding: 0px;
    border-radius: 8px 0 8px 0;
    color: #000;
}

.proj-typology span {
    color: #000;
    font-weight: bold;
}

.pro-price {
    margin-bottom: 15px;
    font-size: 20px;
    margin-top: 0px;
}

.inner-col .button {
    padding: 7px 20px;
}

.fixedIcons {
    position: fixed;
    z-index: 5;
    bottom: 27%;
    padding: 5px;
    background: #FFFCF1;
    border-radius: 50%;
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    box-shadow: 0 0 0 0 #29a71a;

    img {
        width: 60px;
        padding: 5px;
    }

    &.whatsapp {
        right: 3px;
        bottom: 62%;
    }

    &.phone {
        right: 3px;
        background: #122f27;

        img {
            filter: invert(1);
            padding: 10px;
        }
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 20px rgba(255, 232, 160, 0);
    }
}


.d-view {
    display: block;
}

.m-view {
    display: none;
}


@media(max-width:1490px) {
    .inp-box label.inp-txt {
        padding-left: 10px;
        color: #fff;
        font-size: 10px;
    }

    .overview_section::after {
        display: none;
    }

    .slider .project_details {
        top: 40%;
    }

    .amenities_section .prev-arrow6 {
        right: 46%;
    }

    .amenities_section .next-arrow6 {
        right: 46%;
    }

    footer .footer_logo_img {
        max-width: 150px;
    }

    .slider .project_details {
        top: 37%;
        left: 9%;
    }

    .slider::after {
        /* background: linear-gradient(360deg, #032838 0%, #03283800 100%); */
    }

    .fixedIcons {
        &.whatsapp {
            right: 3px;
            bottom: 67%;
        }
    }

    .fixedIcons {
        &.phone {
            right: 3px;
            background: #122f27;
            bottom: 18%;
        }
    }
}

@media(max-width: 1440px) {
    .amenities_section .prev-arrow6 {
        bottom: -40px;
        left: 45%;
    }

    .amenities_section .next-arrow6 {
        bottom: -40px;
        right: 44%;
    }
}

@media(max-width:1366px) {
    .slider .project_details {
        top: 37%;
        left: 12%;
    }

    .highlight_section .highlight_box {
        padding: 30px 30px;
    }

    .gallery_section .slider-for img {
        height: 430px;
        width: 100%;
    }

    .gallery_section .slider-nav img {
        height: 215px;
    }

    .fixedIcons {
        img {
            width: 45px;
        }

        &.whatsapp {
            /* left: 10px; */
            bottom: 69%;
        }

        &.phone {
            right: 2px;
            bottom: 18%;
        }
    }
}

@media(max-width:1280px) {
    .slider .project_details {
        top: 37%;
        left: 9%;
    }
}


/* mobile css here */

@media(max-width:767px) {
    .form_btn {
        display: none;
    }

    .overview_section {
        padding: 50px 0;
    }

    .price_section {
        padding: 50px 0 50px;
    }

    .amenities_section {
        padding: 50px 0 50px;
    }

    .floor_section {
        padding: 50px 0;
    }

    .location_section {
        padding: 0px;
    }

    .gallery_section {
        padding: 50px 0 50px;
    }

    .heading {
        text-align: center;
    }

    .heading span {
        height: 3px;
        width: 26px;
    }

    .subheading {
        font-size: 22px;
        line-height: 35px;
        font-weight: 700;
        font-family: var(--second-font);
        margin-bottom: 20px;
        text-align: center;
    }

    .slider::after {
        background: transparent;
    }

    .slider .form_section {
        position: unset;
        width: 100%;
    }

    .slider .form_btn {
        top: calc(50% - 244px);
    }

    .slider .carousel-indicators {
        display: block;
        bottom: 67%;
        margin-bottom: 0;
        left: 23%;
    }

    .slider .carousel-control-prev {
        display: none;
    }

    .slider .carousel-control-next {
        display: none;
    }

    .slider .project_details .key_highlight ul {
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 5px;
    }

    .slider .project_details .key_highlight ul li {
        margin: 0 0 10px 0;
    }

    .mobile-section {
        background: var(--primary-theme);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        z-index: 999;
    }

    .mobile-section .mbl_btn {
        color: var(--text-white);
        background-color: var(--primary-theme);
        padding: 10px 0;
        text-align: center;
        font-size: 16px;
        width: 100%;
        border: none
    }

    .mobile-section .mbl_btn img {
        margin-right: 8px;
        height: 23px;
        filter: invert(1);
    }

    .mobile-section a {
        padding: 5px;
        width: 32.4%;
        border-radius: 0;
    }

    .amenities_section {
        padding-bottom: 50px;
    }

    .amenities_section .next-arrow6 {
        bottom: -41px;
        right: 34%;
    }

    .amenities_section .prev-arrow6 {
        bottom: -41px;
        left: 37%;
    }

    .call_btn {
        display: none;
    }

    .slider .carousel-control-prev,
    .carousel-control-prev {
        top: 20%;
        left: 10px;
    }

    .slider .carousel-control-next,
    .carousel-control-next {
        top: 30%;
        right: calc(100% - 60px);
    }

    .slider .project_details {
        position: relative;
        top: 0;
        left: 0;
        padding: 20px 0px;
        background: #343434;
        /* min-height: 392px; */
    }

    .slider .project_details h2 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 5px;
        text-align: center;
    }

    .slider .project_details h3 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 8px;
        text-align: center;
    }

    .slider .project_details h4 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 5px;
        text-align: center;
    }

    .slider .project_details .project_section {
        margin: 10px auto;
        /* text-align: center; */
        justify-content: center;
    }

    .slider .project_details .price {
        font-size: 19px;
        /* line-height: 30px; */
        margin-bottom: 15px;
        color: var(--text-white);
        text-align: center;
    }

    .slider .project_details .price span {
        font-size: 22px;
    }

    .slider .project_details .key_highlight ul li {
        padding: 6px 15px 6px 40px;
        margin-bottom: 7px;
        width: 100%;
        text-align: left;
        background: #ae8e51;
        font-size: 16px;
    }

    .slider .project_details .key_highlight ul li:last-child {
        margin-bottom: 0;
    }

    .carousel-item img {
        height: auto;
        width: 100%;
    }

    .overview_section .overview_box {
        left: 0;
        bottom: 30px;
        width: 336px;
    }

    .overview_section .overview_img::after {
        display: none;
    }

    .highlight_section {
        padding: 50px 0;
    }

    .highlight_section .highlight_box {
        padding: 25px 25px;
    }

    .price_section .apartment {
        margin-top: 20px;
    }

    .location_section .location_card {
        position: static;
        padding: 40px 0;
        outline: none;
    }

    .gallery_section .center_img {
        height: auto;
    }

    .gallery_section img {
        height: auto;
        object-fit: cover;
    }

    footer {
        padding: 10px 10px 20px;
    }

    footer .inner_footer {
        padding: 40px 20px;
    }

    footer .inner_footer .footer-logo {
        margin-bottom: 15px;
        text-align: center;
    }

    footer .footer_form {
        margin-top: 20px;
    }

    footer .footer_bottom {
        margin-bottom: 30px;
    }

    /* modal css */
    h3.modal-head {
        font-size: 21px;
        /* margin-bottom: 10px; */
        font-weight: bold;
    }

    div#exampleModal .popup_image {
        width: 100%;
    }

    div#exampleModal .banner-form-section {
        width: 100%;
    }

    div#exampleModal .wrap {
        flex-direction: column;
    }

    div#exampleModal .modal-dialog {
        max-width: 500px;
    }

    div#exampleModal .banner-form-section {
        width: 100%;
    }

    div#exampleModal .wrap {
        flex-direction: column;
    }

    div#exampleModal .modal-dialog {
        max-width: 367px;
        margin: 0px auto;
    }

    .modal-dialog-centered {
        justify-content: center;
    }

    div#exampleModal .banner-form-section {
        padding: 0;
    }

    p.modal-para {
        margin-bottom: 6px;
    }

    h3.modal-head {
        margin-bottom: 11px;
    }

    .inp-box label.inp-txt.black {
        font-size: 10px;
    }

    p.modal-para {
        margin-bottom: 6px;
    }

    .inp-box {
        padding-top: 0;
    }

    .navbar-collapse {
        transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
    }

    .navbar-collapse.show {
        max-height: 500px;
        opacity: 1;
    }

    footer .footer_bottom .disclaimer p {
        font-size: 13px;
        text-align: justify;
    }

    .slider .project_details .project_section .address_section img {
        height: 35px;
        padding: 7px;
    }

    .slider_form {
        display: none;
    }

    .carousel-inner {
        min-height: 400px;
    }

    .carousel-inner img {
        min-height: 400px;
    }

    .form_section {
        display: block;
    }

    .floor_section .left_part .nav-link {
        min-width: 45%;
    }

    .nav.nav-pills.left_part {
        flex-direction: row;
        justify-content: space-between;
    }

    .banner .header {
        top: 0px;
        position: fixed;
    }

    .footer_sticky {
        display: none;
    }

    .slider-nav {
        display: none;
    }

    .gallery_section .col-md-8 .slick-prev {
        left: 10px;
    }

    .gallery_section .col-md-8 .slick-next {
        right: 25px;
    }

    .gallery_section .slider-for img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }

    .slider .project_details .price span {
        padding-top: 0px;
    }

    .price_section .box_one {
        margin-bottom: 30px;
    }

    .fixedIcons {
        img {
            width: 35px;
        }
    }

    .fixedIcons {
        &.whatsapp {
            left: 8px;
            bottom: 7%;
            z-index: 9999;
            right: unset;
        }
    }

    .fixedIcons {
        &.phone {
            right: 2px;
            bottom: 7%;
            z-index: 9999;
        }
    }

    .my_navbar .navbar-brand img {
        max-width: 108px;
    }
}

@media (max-width: 768px) {
    .d-view {
        display: none;
    }

    .m-view {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    div#exampleModal .modal-content {
        /* padding: 25px 5px; */
    }
}