@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


*{
    -webkit-tap-highlight-color: transparent;
}
body{
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    background-color: #ffffff;
}
p{
    margin: 0;
    padding: 0;
}
p, span, a, button, input, textarea{
    font-family: "Lato", sans-serif;
}
a{
    transition: .3s;
}
h1, h2, h3, h4, h5{
    font-family: "Playfair Display", serif;
}
h4{
    font-size: 30px;
    line-height: 1;
    color: #1c1b1b;
    font-weight: 400;
    text-align: center;
    margin: 0;
    padding: 30px 0;
}
a{
    transition: .5s;
}

@media (min-width: 1400px) {
    .container{
        max-width: 1200px;
    }
}
@media (min-width: 768px) and (max-width: 992px){
    .container{
       max-width: calc(100% - 30px);
    }
}
@media (min-width: 576px) and (max-width: 768px){
    .container{
        max-width: calc(100% - 30px);
     }
 }


/* ============================================== Navbar ================================ */

.navbar-brand{
    padding: 0;
    margin: 0;
    max-width: 180px;

}
.sticky-navbar{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    transition: .5s;
    transform: translateY(0);
    z-index: 1;
    padding: 20px 0;
}
.sticky-navbar.active{
    position: fixed;
    transform: translateY(-10px);
    background-color: #fff;
    box-shadow: 13.156px 4.788px 24.5px rgba(0, 0, 0, 0.05);
    box-shadow: 13.156px 4.788px 24.5px rgb(0 0 0 / 20%);
    padding: 20px 0 10px;
}
.sticky-navbar .navbar-brand img{
    filter: invert(1) grayscale(1);
    width: 100%;
}
.sticky-navbar.active .navbar-brand img{
    filter: unset;
}
.sticky-navbar.active .navbar-brand{
    max-width: 120px;
}
.sticky-navbar.active .nav-link {
    font-size: 16px;
}

.sticky-navbar .navbar-nav{
    gap: 25px;
}

.nav-item.nav-btn.ozone {
    background: brown;
    border-radius: 7px;
}
.sticky-navbar.active .nav-btn.ozone .nav-link {
    border-color: #b1252b;
    color: #fff;
}
.sticky-navbar .nav-link{
    font-size: 18px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    height: 100%;
}
.sticky-navbar .navbar-nav .nav-link.active, .sticky-navbar .navbar-nav .nav-link.show{
    color: #ffffff;
}
.nav-btn .nav-link{
    width: 115px;
    height: 38px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f2f2f2;
}
.sticky-navbar.active .nav-link{
    color: #000;
}
.sticky-navbar.active .navbar-nav .nav-link.active, .sticky-navbar.active .navbar-nav .nav-link.show{
    color: #b1252b;
}
.sticky-navbar.active .nav-btn .nav-link{
    border-color: #b1252b;
    color: #b1252b;
}
.sticky-navbar .nav-btn .nav-link:hover{
    color: #fff;
    background-color: #b1252b;
    border-color: #b1252b;
}
.sticky-navbar.active .nav-btn .nav-link:hover{
    color: #fff;
    background-color: #b1252b;
}

/* ========================================= Banner Section ============================= */

.main-banner{
    /* opacity: 0.400;
    background-color: #000000; */
    position: relative;

}
.main-banner .banner-slider, .main-banner .banner-slider .slick-list, .main-banner .banner-slider .slick-track{
    height: 100vh;
}
@media (min-width:1240px) and (max-height:800px){
    .main-banner .banner-slider, .main-banner .banner-slider .slick-list, .main-banner .banner-slider .slick-track{
        height: 125vh;
        max-height: 830px;
    }
}
.main-banner .arrow-down{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
}
.main-banner .arrow-down img{
    /* filter: invert(1); */
    animation: bounce 2s ease infinite;
}
@keyframes bounce {
    0% { transform:translateY(0%); }
    50% { transform:translateY(-50%); }
    100% { transform:translateY(0); }
}

.main-banner .banner-img{
    position: relative;
    height: 100%;
}
.main-banner .banner-img video, .main-banner .banner-img img{
    object-fit: cover;
}
.main-banner .banner-img::before{
    content: "";
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgb(0 0 0 / 20%);
}
.main-banner .banner-img.banner-video::before{
    background: rgb(0 0 0 / 60%);
}
.main-banner .banner-img img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    max-width: 100%;
    height: 100%;
}
.main-banner .banner-content{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
.main-banner .banner-content h1{
    margin: 0;
    font-size: 46px;
    line-height: 1;
    color: #ffffff;
    font-weight: 400;
    font-family: "Playfair Display";
}
.main-banner .banner-content span{
    border-left: 1px solid #f2f2f2;
    border-right: 1px solid #f2f2f2;
    padding: 0 20px;
    font-family: "Playfair Display";
}


/* ======================================= Project Section ============================== */

.section-project{
    position: relative;
}
.project-slider-controls{
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 244px;
    left: calc(50% + 40px);
    gap: 10px;
}
.project-slider-controls .slick-arrow{
    filter: drop-shadow(13.156px 4.788px 24.5px rgba(0, 0, 0, 0.05));
    background-color: #ffffff;
    border: 1px solid #b1252b;
    padding: 10px 8px;
    min-width: 41px;
    line-height: 1;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    border-radius: 8px;
    outline: 0;
    color: #b1252b;
}
.project-slider-controls .slick-arrow.slick-disabled{
    display: none !important;
}
.project-slider-controls .slick-arrow:hover{
    background-color: #b1252b;
    color: #fff;
}
.project-slider-controls .slick-dots li button{
    filter: drop-shadow(13.156px 4.788px 24.5px rgba(0, 0, 0, 0.05));
    background-color: #ffffff;
    border: 1px solid #b1252b;
    padding: 10px 8px;
    min-width: 41px;
    line-height: 1;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    border-radius: 8px;
    outline: 0;
    color: #b1252b;
}
.project-slider-controls .slick-dots li.slick-active button, .project-slider-controls .slick-dots li button:hover{
    background-color: #b1252b;
    color: #fff;
}
.project-slider-controls .slick-dots{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.project-box{
    display: flex;
}
.project-box .img-wrap{
    width: 50%;
}
.project-box .img-wrap img{
    width: 100%;
    max-width: 100%;
}
.project-box .project-info{
    width: 50%;
    padding-left: 40px;
    position: relative;
    padding-bottom: 80px;
}
.project-box .project-info p{
    font-size: 17px;
    line-height: 1.5;
    color: #1f1f1f;
    font-weight: 500;
}
.project-box .project-info .amount-sec+p{
    padding-top: 60px;
    max-width: 500px;
}
.project-box .project-info p+p{
    padding-top: 40px;
}
.project-box .project-info .heading-wrap{
    background-color: #b1252b;
    display: inline-block;
    padding: 25px 30px;
    position: relative;
    left: -70px;
    margin-top: 30px;
}
.project-box .project-info .heading-wrap h5{
    font-size: 26px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}
.project-box .project-info .heading-wrap p{
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 600;
}
.project-box .project-info h6{
    font-size: 14px;
    line-height: 2;
    color: #ffffff;
    font-weight: 600;
    font-family: "Lato", sans-serif;
    background-color: #ff8604;
    display: inline-block;
    padding: 10px 30px;
    margin: 0;
    position: relative;
    left: -30px;
    top: -6px;
    z-index: -1;
}

.project-box .project-info p a{
    font-size: 23px;
    line-height: 1;
    color: #b1252b;
    font-weight: 600;
    width: 140px;
    display: block;
    padding: 8.5px 6px;
    text-align: center;
    border-radius: 5px;
    background-color: transparent;
    text-decoration: none;
    transition: .5s;
    border: 1px solid #b1252b;
}
.project-box .project-info p a:hover{
    background-color: #b1252b;
    color: #fff;
}
.section-project .project-btn{
    padding: 80px 0 0;
}
.section-project .project-btn a{
    font-size: 23px;
    line-height: 1;
    text-transform: uppercase;
    color: #b1252b;
    font-weight: 600;
    border: 1px solid #464646;
    transition: .5s;
    padding: 20px 20px;
    width: 90%;
    display: block;
    margin: 0 auto;
    max-width: 375px;
    text-decoration: none;
    text-align: center;
}
.section-project .project-btn a:hover{
    background-color: #b1252b;
    color: #fff;
    border-color: #b1252b;
}

/* ====================================== Category Section =========================== */

.section-category .category-wrap{
    background: rgb(122 17 46 / 5%);
    padding: 40px 0 20px;
}
.section-category .category-wrap p{
    font-size: 23px;
    color: #1c1b1b;
    padding: 10px 0 20px;
}
.section-category .category-wrap ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    row-gap: 40px;
}
.section-category .category-wrap ul li{
    text-align: center;
}

.section-category .category-wrap .category-box{
    background-color: #b1252b;
    width: 230px;
    margin: 0 auto;
    border-radius: 100%;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}
.section-category .category-wrap .category-box P{
    color: #ffffff;
    font-weight: 600;
    padding: 0;
}
.section-category .category-wrap .category-box:hover{
    background-color: #b1252b26;
    
}
.section-category .category-wrap .category-box:hover p{
    color: #b1252b;
}

/* ===================================== Service Section ============================= */

.section-service .nav-tabs{
    border: 0;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 50px;
}
.section-service .nav-tabs .nav-link{
    border: 0;
    text-align: center;
    cursor: pointer;
    padding: 60px 50px;
    border-radius: 10px;
}
.section-service .nav-tabs .nav-link.active, 
.section-service .nav-tabs .nav-link:hover{
    filter: drop-shadow(13.156px 4.788px 24.5px rgba(0, 0, 0, 0.05));
    background-color: #ffffff;

}
.section-service .nav-tabs .nav-link img{
    height: 90px;
    width: auto;
    max-width: 100%;
}
.section-service .nav-tabs .nav-link p{
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    color: #1c1b1b;
    font-weight: 400;
    margin-top: 30px;
}
.section-service{
    padding-bottom: 100px;
}

.section-service .row{
    align-items: center;
}
.section-service .img-sec{
    position: relative;
    padding: 30px 0 0 30px;
}
.section-service .img-sec::before{
    content: "";
    background: rgb(122 17 46 / 5%);
    width: 80%;
    height: 80%;
    position: absolute;
    left: 0;
    top: 0;
}
.section-service .img-sec ul{
    margin: 0;
    padding: 0 !important;
    list-style: none;
    display: inline-block;
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}
.section-service .img-sec ul li{
    width: calc(50% - 13px);
    /* display: inline-block; */
}

.section-service .img-sec .img-wrap {
    position: relative;
}
.section-service .img-sec .img-wrap::before{
    content: "";
    display: block;
}
.section-service .img-sec li:nth-child(2) .img-wrap::before, 
.section-service .img-sec li:nth-child(3) .img-wrap::before{
    padding-bottom: 110%;
}
.section-service .img-sec li:nth-child(1) .img-wrap::before, 
.section-service .img-sec li:nth-child(4) .img-wrap::before{
    padding-bottom: 130%;
}
.section-service .img-sec li:nth-child(1){
    padding-top:60px;
}
.section-service .img-sec li:nth-child(2){
    
}
.section-service .img-sec li:nth-child(3){
    
}
.section-service .img-sec li:nth-child(4){
    margin-top: -115px;
}
.section-service .img-sec .img-wrap img{
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    position: absolute;
    top: 0;
    height: 100%;
    object-fit: cover;
    left: 0;
    object-position: center;
}


.section-service .content-sec{
    padding-left: 30px;
}
.section-service .content-sec p{
    font-size: 17px;
    line-height: 1.5;
    color: #1f1f1f;
    font-weight: 500;
}
.section-service .content-sec p+p{
    margin-top:30px;
}
.section-service .content-sec p span{
    color: #161616;
    font-weight: 700;
}
.section-service .content-sec p a{
    font-size: 23px;
    line-height: 1;
    color: #ffffff;
    font-weight: 600;
    width: 140px;
    display: block;
    padding: 8.5px 6px;
    text-align: center;
    border-radius: 5px;
    background-color: #b1252b;
    text-decoration: none;
    transition: .5s;
    border: 1px solid #b1252b;
}
.section-service .content-sec p a:hover{
    background: transparent;
    color: #b1252b;
}

/* ======================================== Journey Section ============================= */
.section-journey{
    position: relative;
}
.section-journey::before{
    content: "";
    background-color: #b1252b;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 250px;
}
.section-journey h4{
    position: relative;
    color: #fff;
}
.section-journey .journey-wrap{
    border: 1px solid #c32853;
    background-color: transparent;
    padding: 12px;
    position: relative;
}
.section-journey .journey-wrap .mapping-wrap{
    filter: drop-shadow(13.156px 4.788px 24.5px rgba(0,0,0,0.05));
    background-color: #ffffff;
    padding: 40px;
}
.section-journey .journey-wrap .mapping-wrap ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.section-journey .journey-wrap .mapping-wrap li{
    position: relative;
    border-right: 1px solid #1f1f1f;
    border-top: 1px solid #1f1f1f;
    height: 100%;
    padding: 30px 10px;
}
.section-journey .journey-wrap .mapping-wrap li:nth-child(1), 
.section-journey .journey-wrap .mapping-wrap li:nth-child(2), 
.section-journey .journey-wrap .mapping-wrap li:nth-child(3), 
.section-journey .journey-wrap .mapping-wrap li:nth-child(4), 
.section-journey .journey-wrap .mapping-wrap li:nth-child(5){
    border-top: 0;
}
.section-journey .journey-wrap .mapping-wrap li:nth-child(5n){
    border-right: 0;
}
.mapping-box .img-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
.mapping-box .img-wrap img{
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}
.mapping-box p{
    font-size: 17px;
    line-height: 1.3;
    color: #1f1f1f;
    font-weight: 400;
    margin-top: 10px;
}
.mapping-box p span{
    color: #b1252b;
    font-weight: 700;
}


/* ===================================== Review Section ============================== */

.customer-review{
    margin-bottom: -50px;
}
.review-slider .review-box{
    padding-top: 50px;
}
.review-box img{
    width: 100%;
    max-width: 100%;
}
.review-box h4{
    color: #b1252b;
    padding: 0;
    text-align: left;
}
.review-slider .review-box p{
    font-size: 17px;
    line-height: 1.4;
    color: #1f1f1f;
    font-weight: 500;
    margin: 10px 0;
}
.review-slider .review-box p+p{
    margin-bottom: 0px;
}
.review-slider .review-box p span{
    color: #999999;
}
.review-slider .reviews{
    background-color: #ffffff;
    border: 0.5px solid #363636;
    padding: 20px 40px;
}

.review-slider .slick-slide{
    transition: all 0.4s ease-in-out;
    
    background-color: #ffffff;
    opacity: .5;
}
.review-slider .review-box .info-wrap{
    display: none;
    transition: all 0.4s ease-in-out;
    padding: 12px;
    background: #fff;
    transform: translateY(0px);
    filter: drop-shadow(13.156px 4.788px 24.5px rgba(0,0,0,0.05));
}
.review-slider .slick-current.slick-active{
    opacity: 1;
}
.review-slider .slick-current.slick-active .review-box{
    padding-top: 0;
}
.review-slider .slick-current.slick-active .review-box .info-wrap{
    display: block;
    transform: translateY(-50px);
}
.review-slider .review-box .img-wrap{
    position: relative;
}
.review-slider .review-box .img-wrap::before{
    content: "";
    padding-bottom: 50%;
    display: block;
}
.review-slider .review-box .img-wrap img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    object-position: 100% 50%;
}


/* ===================================== Blog section ============================== */

.section-blog .blog-slider  .slick-list{
    margin-right: -40px;
}
.section-blog .blog-slider .slick-slide{
    padding-right: 40px;
}
.section-blog .blog-box{
    filter: drop-shadow(10.337px 3.762px 20px rgba(0,0,0,0.05));
    background-color: #ffffff;
    padding: 10px;
}
.section-blog .blog-box img{
    width: 100%;
    max-width: 100%;
}
.section-blog .blog-info-wrap{
    padding: 20px 30px 10px;
}
.section-blog .blog-slider .info-wrap{

}
.section-blog .info-wrap h4{
    color: #b1252b;
    padding: 0;
    text-align: left;
    min-height: 72px;
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 36px;
}
.section-blog .info-wrap p{
    font-size: 23px;
    line-height: 1;
    color: #8e8e8e;
    /* font-weight: 600; */
}
.section-blog .info-wrap p span{
    color: #000000;
}
.section-blog .info-wrap .btn-wrap{
    text-align: right;
    margin-top: 10px;
}
.section-blog .info-wrap .btn-wrap a{
    font-size: 23px;
    line-height: 1;
    color: #ffffff;
    font-weight: 600;
    background-color: #b1252b;
    display: flex;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: capitalize;
    max-width: 230px;
    padding: 20px 10px;
    transition: .5s;
    border: 1px solid #b1252b;
}
.section-blog .info-wrap .btn-wrap a:hover{
    color: #b1252b;
    background-color: transparent;
}
.section-blog .blog-btn-wrap{
    text-align: center;
    padding: 80px 0 0;
}
.section-blog .blog-btn-wrap a{
    font-size: 23px;
    line-height: 1;
    text-transform: uppercase;
    color: #b1252b;
    font-weight: 600;
    border: 1px solid #464646;
    transition: .5s;
    padding: 20px 20px;
    width: 90%;
    display: block;
    margin: 0 auto;
    max-width: 375px;
    text-decoration: none;
}
.section-blog .blog-btn-wrap a:hover{
    background-color: #b1252b;
    color: #fff;
    border-color: #b1252b;
}


/* ==================================== Faq Section =============================== */

.section-faq h4{
    max-width: 650px;
    margin: 0 auto;
}
.section-faq .faq-wrap .accordion{
    border-radius: 15px;
    filter: drop-shadow(0 0 19px rgba(0,0,0,0.08));
    background-color: #ffffff;
    max-width: 1150px;
    margin: 0 auto;
    border: 0;
    --bs-body-color: #222222;
}
.accordion-item{
    border: 1px solid #4141410d;
    border-left: 0;
    border-right: 0px;
}
.faq-wrap .accordion-button::after{
    background-image: url('../img/arrow.png');
    margin-left: 0;
    margin-right: auto;
    position: absolute;
    left: 30px;
    rotate: 90deg;
}

.section-faq .faq-wrap .accordion h5.accordion-header{
    max-width: 100%;
    padding: 0;
}
.section-faq .faq-wrap .accordion-header button.accordion-button{
    font-size: 16px;
    line-height: 1;
    color: var(--bs-body-color);
    font-weight: 500;
    padding: 30px 30px 30px 80px;
    border: 0;
    box-shadow: none;
}
.section-faq .faq-wrap .accordion-collapse{
    background: rgb(122 17 46 / 5%);
}
.section-faq .faq-wrap .accordion-collapse .accordion-body{
    padding: 0 30px 30px 80px;
    position: relative;
}
.section-faq .faq-wrap .accordion-header button.accordion-button::before{
    content: "";
    background: #b1252b;
    position: absolute;
    right: 0;
    width: 4px;
    height: 100%;
    opacity: 0;
    top: 0;
}
.section-faq .faq-wrap .accordion-header button.accordion-button:not(.collapsed)::before{
    opacity: 1;
}
.section-faq .faq-wrap .accordion-collapse .accordion-body::before{
    content: "";
    background: #b1252b;
    position: absolute;
    right: 0;
    width: 4px;
    height: 100%;
    opacity: 0;
}
.section-faq .faq-wrap .accordion-collapse.show .accordion-body::before{
    opacity: 1;
}
.section-faq .faq-wrap .accordion-button:not(.collapsed){
    background: rgb(122 17 46 / 5%);
    color: #b1252b !important;
    padding-bottom: 10px !important;
}
.section-faq .faq-wrap .accordion-collapse.show{
    color: var(--bs-body-color) !important;
}
.section-faq .faq-wrap .accordion-btn-section{
    text-align: center;
    padding: 80px 0 40px;
}
.section-faq .faq-wrap .accordion-btn-section .button{
    font-size: 23px;
    line-height: 1;
    text-transform: uppercase;
    color: #b1252b;
    font-weight: 600;
    border: 1px solid #464646;
    transition: .5s;
    padding: 20px 20px;
    width: 90%;
    display: block;
    margin: 0 auto;
    max-width: 375px;
    text-decoration: none;
}
.section-faq .faq-wrap .accordion-btn-section .button:hover{
    background-color: #b1252b;
    color: #fff;
    border-color: #b1252b;
}



/* ================================== Gallery Section ============================== */

.section-gallery .img-wrap{
    position: relative;
}
.section-gallery .slick-slide{
    padding: 6px;
}
.section-gallery .img-wrap::before{
    content:"";
    display: block;
}
.section-gallery .slick-slide:nth-child(odd) .img-wrap::before{
    padding-bottom: 140%;
}
.section-gallery .slick-slide:nth-child(even) .img-wrap{
    margin-top: 15%;
}
.section-gallery .slick-slide:nth-child(even) .img-wrap::before{
    padding-bottom: 110%;
}
.section-gallery .img-wrap img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}


/* ================================ Video Section ================================== */

.video-wrap{
    position: relative;
}
.video-wrap #play{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgb(0 0 0 / 40%); */
}
.video-wrap #play:has(.icon-pause){
    background: rgb(0 0 0 / 0%);
}
.video-wrap #play span{
    font-size: 26px;
    border-radius: 100%;
    background: #fff;
    padding: 22px 25px;
    cursor: pointer;
    opacity: .8;

}
.video-wrap #play span.icon-pause{
    opacity: 0;
}
.video-wrap #play:hover span.icon-pause{
    opacity: 1;
}

/* ================================== Property Deals =============================== */

.section-property .deals-list ul{
    filter: drop-shadow(10.337px 3.762px 20px rgba(0,0,0,0.05));
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1024px;
    margin: 0 auto;
    overflow: hidden;
}

.section-property .deals-list a{
    font-size: 14px;
    line-height: 2px;
    color: #0d0d0d;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: 0.5s;
    min-width: 256px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-property .deals-list li:hover a{
    padding-right: 24px;
    padding-left: 8px;
}
.section-property .deals-list li a::before{
    content: '';
    background-image: url('../img/arrow.png');
    position: absolute;
    opacity: 0;
    top: 12px;
    right: -20px;
    transition: 0.5s;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: 100%;
    top: 50%;
    transform: translateY(-50%);

}
.section-property .deals-list li:hover a::before{
    opacity: 1;
    right: 10px;
}

/* ================================= contact Section ============================== */

.section-contact .contact-wrap{
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
}
.contact-wrap .form-sec{
    background-color: #fff;
    border-radius: 8px;
    padding: 24px 26px;
}
.contact-wrap .form-sec h5{
    text-align: center;
    font-weight: 600;
    color: #12345e;
    line-height: 1.2;
    font-size: 23px;
}
.contact-wrap .form-sec input, 
.contact-wrap .form-sec textarea{
    width: 100%;
    padding: 9px 20px;
    text-align: left;
    outline: 0;
    border-radius: 6px;
    background-color: #fff;
    font-size: 15px;
    font-weight: 400;
    color: #1c1b1b;
    transition: .3s;
    border: 1px solid #ced4da;
}
.contact-wrap .form-sec .form-control:focus, 
.contact-wrap .form-sec .form-control:hover{
    border-color: #1c1b1b;
    outline: 0 !important;
    box-shadow: none !important;
}
.contact-wrap .form-sec input::placeholder, 
.contact-wrap .form-sec textarea::placeholder{
    color: #8d8d8d;
}
.contact-wrap .form-sec button.btn{
    color: #fff;
    background-color: #b1252b;
    padding: 8.5px 30px;
}


/* ================================ Footer ============================ */
footer .footer-section{
    background: #b1252b;
    padding-top: 60px;
}
.footer-contact-section{
    margin-top: 60px;
}
.footer-contact-section{
    background: #ca3c42;
}
.footer-section .footer-blocks{
    display: grid;
    grid-template-columns: 1fr .5fr .5fr;
    gap: 60px;
}
.footer-about-sec{
    text-align: left;
    margin: 0 auto;
    padding: 0px 0;
}
.footer-about-sec .footer-logo{
    padding-bottom: 20px;
}
.footer-about-sec .footer-logo img{
    max-width: 180px;
    filter: grayscale(1) invert(1);
}
.footer-links h4{
    font-family: "Lato", sans-serif;
    font-size: 24px;
    color: #fff;
    text-align: left;
    margin: 61px 0 20px !important;
}
.footer-about-sec p{
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
    font-weight: 500;
    text-align: left;
}
.footer-section .footer-links{
    padding: 0px 0;
}
.footer-links h4{
    padding: 0;
    margin: 0 0 30px;
}
.footer-links ul{
    margin: 0;
    padding: 0px 0;
    list-style: none;
    /* display: flex; */
    align-items: center;
    margin-left: 0px;
    margin-right: 0px;
    /* overflow-x: auto; */
}

.footer-links li{
    /* display: flex;
    position: relative; */
}
.footer-links li:first-child{
    margin-left: auto;
}
.footer-links li:last-child{
    margin-right: auto;
}
.footer-links li a{
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    padding: 0 0;
    text-align: center;
    text-wrap: nowrap;
    border: 0px solid #ebebeb;
    border-right: 0px;
}
.footer-links li:last-child a{
    border-right: 0px solid #ebebeb;
}
.footer-links li a:hover{
    color: #fff;
    background-color: #b1252b;
    border-color: #b1252b;

}

.footer-section .conatct-section{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 30px 0;
}

.conatct-section p{
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}
.conatct-section p span{
    color: #fff;
    padding: 0 4px;
}
.conatct-section p a{
    font-size: 20px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    text-transform: lowercase;
}
.conatct-section p a:hover{
    opacity: .8;
}
.social-sec ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.social-sec ul li{

}
.social-sec ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}
.social-sec ul li a:hover{
    opacity: .8;
}


footer .copy-right{
    background-color: #fff; 
    padding: 22px 15px;
}

.copy-right p{
    font-size: 18px;
    color: #b1252b;
    font-weight: 500;
    text-align: center;
    
}


/* ===================== Responsive ================================= */

@media (max-width:1550px){
    .sticky-navbar .nav-link {
        font-size: 16px;
    }
}
@media (max-width:1200px){
    .sticky-navbar .navbar-nav{
        gap: 30px;
    }
    h4{
        padding: 60px 0;
        font-size: 36px;
    }
    .project-box .project-info .heading-wrap h5 {
        font-size: 22px;
    }
    .project-box .project-info .heading-wrap p {
        font-size: 12px;
        font-weight: 500;
    }
    .project-box .project-info .heading-wrap{
        padding: 16px 22px;
        left: -50px;
        margin-top: 30px;
    }
    .project-box .project-info {
        padding-left: 30px;
    }
    .project-box .project-info h6{
        padding: 10px 20px;
        font-size: 12px;
        font-weight: 500;
        left: -20px;
    }   
    .project-box .project-info .amount-sec+p {
        padding-top: 30px;
        max-width: 100%;
    }
    .project-slider-controls .slick-dots li button{
        font-size: 16px;
    }
    .project-box .project-info p+p {
        /* padding-top: 30px; */
    }
    .project-slider-controls{
        left: calc(50% + 30px);
        bottom: 126px;
    }
    .section-project .project-btn{
        padding: 60px 0 0;
    }
    .section-service .img-sec li:nth-child(4){
        margin-top: calc(-20% - 13px);
    }

    .section-property .deals-list li{
        width: 25%;
    }
    .section-property .deals-list a{
        min-width: auto;
        height: 70px;
    }
    .section-contact .contact-wrap{
        padding: 60px 0;
    }
    footer .footer-section{
        padding-top: 20px;
    }
    .footer-links ul::-webkit-scrollbar{
        height: 6px;
        display: none;
    }
    .footer-links h4{
        margin: 0 0 20px;
    }

    .footer-section .conatct-section, 
    .footer-section .footer-links, 
    .footer-links ul, 
    .footer-about-sec{
        padding: 0px 0;
    }
    .footer-section .conatct-section{
        padding: 20px 0;
    }
    footer .copy-right{
        padding: 15px 15px;
    }
    .footer-contact-section{
        margin-top: 20px;
    }

    /* ============================ Font Size ======================== */

    .section-project .project-btn a, 
    .section-blog .blog-btn-wrap a, 
    .section-faq .faq-wrap .accordion-btn-section .button{
        padding: 15px 10px;
        max-width: 300px;
    }
    .section-category .category-wrap .category-box{
        width: 200px;
        height: 200px;
    }
    .section-service .nav-tabs{
        margin-bottom: 40px;
        gap: 40px;
    }
    .section-service .nav-tabs .nav-link{
        padding: 50px 40px;
    }
    .section-service .content-sec {
        padding-left: 20px;
    }
    .section-service .nav-tabs .nav-link p {
        font-size: 16px;
    }
    .section-journey .journey-wrap .mapping-wrap{
        padding: 30px;
    }
    .section-journey .journey-wrap .mapping-wrap li{
        padding: 40px 10px;
    }
    .mapping-box p{
        line-height: 1.5;
    }
    .review-slider .reviews{
        padding: 20px 30px;
    }
    .review-slider .review-box{
        padding-top: 30px;
    }
    .review-slider .slick-current.slick-active .review-box .info-wrap{
        transform: translateY(-30px);
    }
    .customer-review {
        margin-bottom: -40px;
    }
    .section-blog .blog-slider .slick-list{
        margin-right: -20px;
    }
    .section-blog .blog-slider .slick-slide{
        padding-right: 20px;
    }
    .section-blog .blog-info-wrap{
        padding: 10px 22px 10px;
    }

    .section-blog .info-wrap h4{
        min-height: 87px;
        margin-bottom: 20px;
        font-size: 28px;
    }
    .section-blog .info-wrap .btn-wrap a{
        padding: 15px 10px;
        max-width: 200px;
    }
    .section-blog .blog-btn-wrap{
        padding: 60px 0 0;
    }
    .section-service {
        padding-bottom: 80px;
    }
    .section-faq h4 {
        max-width: 550px;
    }    
    .section-faq .faq-wrap .accordion-btn-section{
        padding: 60px 0 20px;
    }
    .section-gallery .img-wrap img{
        border-radius: 30px;
    }

    .project-box .project-info p, 
    .project-box .project-info p a, 
    .section-project .project-btn a, 
    .section-category .category-wrap p, 
    .section-service .content-sec p, 
    .section-service .content-sec p a, 
    .mapping-box p, 
    .review-slider .review-box p, 
    .section-blog .info-wrap p, 
    .section-blog .info-wrap .btn-wrap a, 
    .section-blog .blog-btn-wrap a, 
    .section-faq .faq-wrap .accordion-btn-section .button, 
    .contact-wrap .form-sec h5, 
    .footer-about-sec p, 
    .footer-links li a, 
    .conatct-section p, 
    .conatct-section p a {
        font-size: 18px;
    }
    .copy-right p{
        font-size: 16px;
    }
}

.navbar-toggler{
    padding: 0;
    border: 0;
    outline: 0;
    box-shadow: none !important;
    color: #fff;
}
.sticky-navbar.active .navbar-toggler{
    color: #1c1b1b;
}
.sticky-navbar .offcanvas {
    height: 100vh;
}

@media (max-width:992px){
    .sticky-navbar{
        padding: 10px 0;
    }
    .navbar-brand{
        max-width: 140px;
    }
    .sticky-navbar.active .navbar-brand {
        max-width: 90px;
    }
    .sticky-navbar.active{
        padding: 15px 0 5px;
    }
    .sticky-navbar .offcanvas .navbar-nav{
        margin-left: 0 !important;
    }
    .sticky-navbar .nav-link{
        color: #161616;
    }
    .sticky-navbar .navbar-nav .nav-link.active, .sticky-navbar .navbar-nav .nav-link.show{
        color: #b1252b;
    }
    .sticky-navbar .nav-link{
        justify-content: flex-start;
    }
    .sticky-navbar .navbar-nav .nav-item{
        padding: 0 16px;
    }
    .sticky-navbar .navbar-nav {
        gap: 16px;
        padding: 16px 0;
    }
    .sticky-navbar .nav-btn .nav-link{
        justify-content: center;
        color: #fff !important;
        background-color: #b1252b;
        border-color: #b1252b;
    }
    .sticky-navbar.active .navbar-nav{
        padding: 26px 0 16px;
    }
    .main-banner .banner-content{
        width: 100%;
        text-align: center;
    }
    .main-banner .banner-content h1{
        font-size: 52px;
    }
    .project-box .img-wrap {
        width: 45%;
    }
    .project-box .project-info{
        width: 55%;
        padding-left: 20px;
    }
    .project-box .project-info .heading-wrap {
        padding: 8px 22px 12px;
        left: -40px;
        margin-top: 20px;
    }
    .project-box .project-info h6{
        left: -10px;
    }
    .project-box .project-info .amount-sec+p {
        padding-top: 10px;

    }
    .project-box .project-info p+p {
        padding-top: 20px;
    }
    .project-slider-controls {
        left: 50%;
        transform: translateX(-50%);
        bottom: 106px;
    }
    .section-category .category-wrap .category-box {
        width: 160px;
        height: 160px;
    }
    .section-service .nav-tabs .nav-link img {
        height: 70px;
    }
    .section-service .nav-tabs .nav-link {
        padding: 35px 25px;
    }
    .section-service .nav-tabs{
        margin-bottom: 30px;
        gap: 0;
        justify-content: space-between;
    }
    .section-service .img-sec ul{
        gap: 12px;
    }
    .section-service .img-sec ul li {
        width: calc(50% - 6px);
    }
    .section-service .img-sec li:nth-child(1) {
        padding-top: 30px;
    }
    .section-service .img-sec{
        padding: 15px 0 0 15px;
    }
    .section-service .img-sec li:nth-child(4) {
        margin-top: calc(-20% + 6px);
    }    
    .section-service .content-sec p+p {
        margin-top: 20px;
    }
    .section-service .content-sec {
        padding-left: 0px;
    }
    .section-journey .journey-wrap .mapping-wrap {
        padding: 10px;
    }
    .section-journey .journey-wrap .mapping-wrap li {
        padding: 20px 5px;
    }
    .mapping-box .img-wrap {
        height: 60px;
    }
    .review-slider .reviews {
        padding: 12px 16px;
    }
    .section-blog .info-wrap h4{
        font-size: 20px;
        min-height:60px;
    }
    .section-blog .info-wrap .btn-wrap a{
        max-width: 150px;
    }
    .project-box .project-info p, 
    .project-box .project-info p a, 
    .section-project .project-btn a, 
    .section-category .category-wrap p, 
    .section-service .content-sec p, 
    .section-service .content-sec p a, 
    .mapping-box p, 
    .review-slider .review-box p, 
    .section-blog .info-wrap p, 
    .section-blog .info-wrap .btn-wrap a, 
    .section-blog .blog-btn-wrap a, 
    .section-faq .faq-wrap .accordion-btn-section .button, 
    .contact-wrap .form-sec h5, 
    .footer-about-sec p, 
    .footer-links li a, 
    .conatct-section p, 
    .conatct-section p a {
        font-size: 16px;
    }
    .footer-links h4{
        margin-top: 0 !important;
    }
    .footer-section .footer-blocks{
        gap: 32px;
    }
}

@media (max-width:760px){

    h4 {
        padding: 40px 0;
        font-size: 28px;
    }

    .main-banner .banner-slider, .main-banner .banner-slider .slick-list, .main-banner .banner-slider .slick-track {
        height: 60vh;
        max-height: 480px;
    }
    .main-banner .banner-img img{
        object-position: 60%;
    }
    .main-banner .banner-content h1 {
        font-size: 42px;
    }
    .main-banner .arrow-down img{
        width: 18px;
    }
    .project-box{
        flex-wrap: wrap;
        position: relative;
    }
    .project-box .img-wrap{
        width: 100%;
    }
    .project-box .project-info{
        width: 100%;
        padding-left: 0;
        position: unset;
    }
    .project-box .project-info .heading-wrap{
        position: absolute;
        top: 0;
        margin: 0;
        left: 0;
        z-index: 1;
    }
    .project-box .project-info .amount-sec{
        position: absolute;
        top: 65px;
        z-index: 0;
    }
    .project-box .project-info h6{
        left: 10px;
    }
    .project-box .project-info .heading-wrap h5 {
        font-size: 18px;
    }
    .section-project .project-btn {
        padding: 40px 0 0;
    }
    .project-slider-controls{
        bottom: 86px;
    }
    .section-category .category-wrap{
        padding: 20px 0 0;
    }
    .section-category .category-wrap ul{
        grid-template-columns:1fr 1fr;
        row-gap: 20px;
    }
    .section-category .category-wrap .category-box {
        width: 150px;
        height: 150px;
    }
    .section-service .nav-tabs .nav-link img {
        height: 50px;
    }
    .section-service .nav-tabs .nav-link {
        padding: 25px 10px;
    }
    .section-service .nav-tabs {
        margin-bottom: 20px;
        justify-content: unset;
        gap: 15px;
        overflow-y: hidden;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    .section-service .nav-tabs li:first-child{
        margin-left: auto;
    }
    .section-service .nav-tabs li:last-child{
        margin-right: auto;
    }
    .section-service .content-sec{
        padding-top: 20px;
    }
    .section-service {
        padding-bottom: 40px;
    }
    .section-journey .journey-wrap .mapping-wrap ul{
        grid-template-columns:1fr 1fr;
    }
    .section-journey::before{
        height: 50%;
    }
    .mapping-box .img-wrap {
        height: 50px;
    }
    .section-journey .journey-wrap .mapping-wrap li:nth-child(3){
        border-top: 1px solid #1f1f1f;
    }
    .section-journey .journey-wrap .mapping-wrap li:nth-child(3n){
        border-right: 1px solid #1f1f1f;
    }
    .section-journey .journey-wrap .mapping-wrap li:nth-child(2n){
        border-right: 0;
    }
    .mapping-box p{
        font-size: 12px;
    }
    .review-slider .review-box {
        padding-top: 20px;
    }
    .review-slider .review-box .info-wrap{
        padding: 8px;
    }
    .review-slider .slick-current.slick-active .review-box .info-wrap{
        transform: translateY(-20px);
    }
    .review-slider .reviews {
        padding: 10px 10px;
    }
    .customer-review {
        margin-bottom:-24px;
    }
    .section-blog .blog-slider .slick-list{
        margin-right: 0;
    }
    .section-blog .blog-slider .slick-slide{
        padding-right:0;
    }
    .section-blog .blog-info-wrap {
        padding: 10px 16px 10px;
    }
    .section-blog .blog-btn-wrap{
        padding: 40px 0 0;
    }
    .section-faq .faq-wrap .accordion-header button.accordion-button{
        padding: 20px 20px 20px 60px;
    }
    .section-faq .faq-wrap .accordion-collapse .accordion-body{
        padding: 0 20px 20px 60px;
    }
    .faq-wrap .accordion-button::after{
        left: 20px;
    }
    .section-faq .faq-wrap .accordion-btn-section {
        padding: 40px 0 10px;
    }
    .section-gallery .img-wrap img{
        border-radius: 20px;
    }
    .section-property .deals-list ul{
        overflow-y: hidden;
        overflow-x: auto;
    }
    .section-property .deals-list ul li:first-child{
        margin-left: auto;
    }
    .section-property .deals-list ul li:last-child{
        margin-right: auto;
    }
    .section-contact .contact-wrap{
        padding: 40px 0;
    }
    .contact-wrap .form-sec{
        padding: 15px 15px;
        margin-bottom: 15px;
    }
    .sticky-navbar .offcanvas{
        width: 90%;
    }
    .footer-section .conatct-section{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 0;
    }
    .conatct-section p {
        font-size: 16px;

    }
    .footer-about-sec {
        padding: 16px 0 0;
    }
    .footer-about-sec p {
        font-size: 16px;
        line-height: 1.5;

    }
    .footer-links h4{
        font-size: 32px;
        margin: 0 0 16px;
    }
    .footer-section .footer-links {
        padding: 0 0;
    }
    .conatct-section p a {
        font-size: 18px;

    }
    .footer-links li a{
        font-size: 16px;
    }

    .conatct-section p{
        text-align: left;
    }
    .footer-links ul{
        padding:0;
    }
    .copy-right p {
        font-size: 14px;
    }
    footer .copy-right{
        padding: 12px 15px;
    }   
    .footer-section .footer-blocks{
        gap: 32px;
        grid-template-columns: 1fr;
    } 
}


/* =========================== About Page =============================== */

.section-about{
    padding: 80px 0 0;
}
.section-about .row{
    align-items: center;
}
.section-about .img-wrap img{
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
}
.section-about  h4{
    color: #b1252b;
}

.section-about  .content-wrap h4{
    padding-bottom: 15px;
    text-align: left;
}
.section-about p, .section-director p, .section-director h6, .section-journey-mapping .journey-mapping-wrap .mapping-wrap p, 
.client-details h6{
    font-size: 17px;
    line-height: 1.5;
    color: #0c0c09;
    font-weight: 500;
}


/* ===================================== Icon text ==================== */

.icon-text-sec h4{
    color: #b1252b;
}

.icon-text-sec .mapping-box{
    text-align: center;
    box-shadow: 13.156px 4.788px 24.5px rgba(0, 0, 0, 0.05);
    background: #fff;
    padding: 40px 40px;
}
.icon-text-sec .mapping-box .img-wrap{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.icon-text-sec .mapping-box .img-wrap img{
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================ Director Section ======================== */

.section-director h4, .section-director p span, .section-director h6{
    color: #b1252b;
}
.section-director .row{
    align-items: center;
}
.section-director .img-wrap img{
    max-width: 100%;
    width: 100%;
    border-radius: 30px;
}
.section-director .row+.row{
    margin-top:80px;
}
.section-director h6{
    margin: 30px 0 0;
    text-align: right;
}
.section-director h6 span{
    position: relative;
    padding-left: 10%;
}
.section-director h6 span::before{
    content: "";
    background: #b1252b;
    width: 10%;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
}
.section-director .row+.row h6{
    text-align: left;
}
.section-director .row+.row h6 span{
    padding-left: 0%;
    padding-right: 10%;
    
}
.section-director .row+.row h6 span::before{
    left: unset;
    right: 0;
    width: 9%;
}

/* =================================== Team Section ============================= */

.section-team.icon-text-sec .mapping-box{
    padding: 15px;
}
.section-team.icon-text-sec .mapping-box .img-wrap{
    height: 100%;
    margin-bottom: 20px;
}
.section-team.icon-text-sec .mapping-box .img-wrap img {
    object-fit: cover;
    width: 100%;
}
.section-team .mapping-box p+p{
    font-size: 16px;
    line-height: 1.5;
}

/* ============================== Section Journey Mapping =============================== */

.section-journey-mapping h4{
    color: #b1252b;
}
.section-journey-mapping .journey-mapping-wrap{
    background: rgb(122 17 46 / 5%);
    padding: 40px 0;
}
.section-journey-mapping .journey-mapping-wrap ul{
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.section-journey-mapping .journey-mapping-wrap ul li{
    position: relative;
    width: calc(33.33% - 60px);
}
.section-journey-mapping .journey-mapping-wrap ul li::before{
    content: "";
    background: url(../img/ARROW-15.png);
    position: absolute;
    width: 40px;
    height: 20px;
    background-size: 40px;
    background-repeat: no-repeat;
    right: -65px;
    top: calc(185px / 2);
}
.section-journey-mapping .journey-mapping-wrap .mapping-wrap .content{
    background: #b1252b;
}
.section-journey-mapping .journey-mapping-wrap .mapping-wrap p{
    text-align: center;
}
.section-journey-mapping .journey-mapping-wrap .mapping-wrap .content{
    margin-bottom: 10px;
    padding: 40px;
    min-height: 185px;
    display: flex;
    align-items: center;
}
.section-journey-mapping .journey-mapping-wrap .mapping-wrap .content p{
    font-size: 14px;
    color: #fff;
    font-weight: 400;
}
.section-journey-mapping .journey-mapping-wrap ul li:nth-child(3):before, 
.section-journey-mapping .journey-mapping-wrap ul li:nth-child(6):before{
    display: none;
}
.section-journey-mapping .journey-mapping-wrap ul li:nth-child(5):before, 
.section-journey-mapping .journey-mapping-wrap ul li:nth-child(4):before{
    rotate: -180deg;
}

/* ======================== Gallery Section =========================== */

.section-journey-mapping+.section-gallery h4{
    color: #b1252b;
}

/* ================================= Client Section =================================== */
.section-client-feedback{
    padding-bottom: 60px;
}

.section-client-feedback h4{
    color: #b1252b;
}
.section-client-feedback .slick-dots{
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 10px;
}
.section-client-feedback .slick-dots li{

}
.section-client-feedback .slick-dots button{
    font-size: 0px;
    border: 0;
    box-shadow: none;
    border-radius: 100%;
    padding: 5px;
    background: #000;
    opacity: .4;
}
.section-client-feedback .slick-dots .slick-active button{
    opacity: .8;
}
.client-slider .slick-list{
    margin: 0 -10px;
}
.section-client-feedback .client-wrap{
    padding: 0px 10px;
}
.section-client-feedback .client-wrap .client-box{
    border:1px solid #ebebeb;
    /* box-shadow: 13.156px 4.788px 24.5px rgba(0, 0, 0, 0.05); */
    background: #fff;
    border-radius: 16px;
    padding: 20px 15px 30px;
}
.rating-sec{

}
.rating-sec ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 3px;
}
.rating-sec ul li{
    font-size: 10px;
    color: #f0f03a;
}
.section-client-feedback .rating-sec+p{
    margin-top: 10px;
}
.section-client-feedback .client-sec{
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-client-feedback .client-box .rating-sec+p{
    min-height: 120px;
}
.section-client-feedback .img-wrap img{
    width: 70px;
    border-radius: 10px;
}
.section-client-feedback h6{
    color: #b1252b;
    margin: 0;
}
.section-client-feedback .client-details p{
    font-size: 14px;
    opacity: .7;
}

@media (max-width: 1200px){
    .section-about {
        padding: 60px 0 0;
    }
    .section-about .content-wrap h4 {
        padding-bottom: 30px;
    }
    .section-about p,
    .section-director p,
    .section-director h6,
    .section-journey-mapping .journey-mapping-wrap .mapping-wrap p,
    .client-details h6{
        font-size: 18px;
    }
    .section-director .row+.row{
        margin-top: 60px;
    }
    .section-team.icon-text-sec .mapping-box {
        padding: 8px;
    }
    .section-journey-mapping .journey-mapping-wrap .mapping-wrap .content{
        padding: 30px 20px;
        min-height: 200px;
    }
}

@media (max-width:992px){
    .section-about p,
    .section-director p,
    .section-director h6, 
    .section-journey-mapping .journey-mapping-wrap .mapping-wrap p, 
    .client-details h6{
        font-size: 16px;
    }
    .icon-text-sec .mapping-box{
        padding: 30px 10px;
    }
    .section-director h6 span, 
    .section-director .row+.row h6 span{
        padding: 0;
    }
    .section-director h6 span::before{
        display: none;
    }
    .section-journey-mapping .journey-mapping-wrap .mapping-wrap .content{
        padding: 20px 10px;
        min-height: 230px;
    }
}

@media (max-width: 760px){
    .section-about {
        padding: 40px 0 0;
    }
    .section-about .content-wrap h4{
        padding-bottom: 20px;
        line-height: 1.5;
    }
    .section-about h4{
        text-align: left;
    }
    .section-about .row.mb-5{
        flex-direction: column-reverse;
        margin-bottom: 20px !important;
    }
    .section-about .col-md-6 .img-wrap{
        margin-bottom: 20px;
    }
    .section-icon-text.icon-text-sec h4{
        padding-bottom: 30px;
    }
    .section-icon-text.icon-text-sec .col-md-4{
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .icon-text-sec .mapping-box{
        padding: 40px 40px;
    }
    .section-director .content-wrap{
        padding-top: 20px;
    }
    .section-director .row+.row{
        margin-top: 40px;
        flex-direction: column-reverse;
    }
    .section-director h6 {
        margin: 20px 0 0;
        text-align: left;
    }    
    .section-team.icon-text-sec .col-md-3+.col-md-3{
        margin-top: 20px;
    }
    .section-team.icon-text-sec .mapping-box {
        padding: 12px;
    }
    .section-journey-mapping .journey-mapping-wrap ul{
        gap: 90px 40px;
    }
    .section-journey-mapping .journey-mapping-wrap ul li{
        width: 100%;
    }
    .section-journey-mapping .journey-mapping-wrap ul li::before{
        right: unset;
        top: unset;
        bottom: -55px;
        left: calc(50% - 20px);
        rotate: 90deg;
    }
    .section-journey-mapping .journey-mapping-wrap .mapping-wrap .content {
        padding: 40px 40px;
    }
    .section-journey-mapping .journey-mapping-wrap ul li:nth-child(3):before, 
    .section-journey-mapping .journey-mapping-wrap ul li:nth-child(6):before{
        display: block;
    }
    .section-journey-mapping .journey-mapping-wrap ul li:nth-child(5):before, 
    .section-journey-mapping .journey-mapping-wrap ul li:nth-child(4):before{
        rotate: 90deg;
    }
    .section-journey-mapping .journey-mapping-wrap ul li:nth-child(1){
        order: 1;
    }
    .section-journey-mapping .journey-mapping-wrap ul li:nth-child(2){
        order: 2;
    }
    .section-journey-mapping .journey-mapping-wrap ul li:nth-child(3){
        order: 3;
    }
    .section-journey-mapping .journey-mapping-wrap ul li:nth-child(4){
        order: 6;
    }
    .section-journey-mapping .journey-mapping-wrap ul li:nth-child(5){
        order: 5;
    }
    .section-journey-mapping .journey-mapping-wrap ul li:nth-child(6){
        order: 4;
    }
    .section-journey-mapping .journey-mapping-wrap ul li:nth-child(4)::before{
        display: none;
    }
}

/* ================================ Property Search Section ================================ */

:has(.section-property-search-list) .main-banner .banner-content{
    /* top: 0; */
}
.section-property-search-list .row{
    box-shadow: 13.156px 4.788px 24.5px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 16px;
    padding: 30px 18px 0;
    margin-top: -120px;
    align-items: center;
}
.section-property-search-list label{
    color: #b1252b;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
}
.section-property-search-list label span{
    padding-right: 10px;
}
.section-property-search-list label img{
    width: 20px;
    position: relative;
    top: -1px;
}
.section-property-search-list .form-group{
    padding-bottom: 30px;
}
.section-property-search-list .btn-form-group{
    padding-bottom: 30px;
}
.section-property-search-list .btn-form-group .btn{
    color: #fff;
    background-color: #b1252b;
    padding: 8.5px 30px;
}

@media (max-width: 576px) {
    .section-property-search-list .row{
        padding: 18px 6px 0;
        width: 100%;
        margin: -60px auto 0;

    }
    .section-property-search-list .form-group{
        padding-bottom: 18px;
    }
    .section-property-search-list .btn-form-group{
        padding-bottom: 18px;
    }
}

/* ================================ Property Listing Section ================================ */

.section-property-list{
    padding: 80px 0;
}

.section-property-list .property-list{
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 30px;
}

.section-property-list .property-box{
    display: flex;
    align-items: center;
    gap: 40px;
}
.section-property-list .property-box .img-wrap{
    position: relative;
    width: calc(40% - 20px);
}
.section-property-list .property-box .property-content{
    width: calc(60% - 20px);
}
.section-property-list .property-box .badge-sec{
    background-color: #b1252b;
    position: absolute;
    left: 15px;
    top: 15px;
    padding: 4px 16px;
    border-radius: 6px;
    text-align: center;
}
.section-property-list .property-box .badge-sec p{
    color: #fff;
}
.section-property-list .property-box img{
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
}
.section-property-list .property-box .badge-logo{
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #ffffffd9;
    padding: 10px;
    border-radius: 12px;
}
.section-property-list .property-box .badge-logo span{
    position: relative;
    top: -14px;
    font-size: 14px;
    font-weight: 600;
    left: 2px;
}
.section-property-list .property-box .badge-logo img{
    border-radius: 0;
    width: 100px;
}
.section-property-list .property-box .property-content h4{
    font-family: "Lato", sans-serif;
    padding: 0 0 15px !important;
    font-weight: 600;
    text-align: left;
}
.section-property-list .property-box .property-content h6, 
.section-property-list .property-box .property-content p, 
.section-property-list .property-box .property-content a, 
.section-property-list .property-box .property-content li, 
.section-property-list .filter-btn{
    font-size: 18px;
}
.section-property-list .property-box .property-content h6 span{
    color: #b1252b;
}
.section-property-list .property-box .property-content a{
    line-height: 1;
    color: #b1252b;
    font-weight: 600;
    width: 140px;
    display: block;
    padding: 8.5px 6px;
    text-align: center;
    border-radius: 5px;
    background-color: transparent;
    text-decoration: none;
    transition: .5s;
    border: 1px solid #b1252b;
    margin-top: 20px;
}
.section-property-list .property-box .property-content a:hover{
    background-color: #b1252b;
    color: #fff;
}
.section-property-list .property-box .property-content ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.section-property-list .property-box .property-content ul li{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: .8;
    margin-bottom: .5rem;
}
.section-property-list .property-box .property-content ul li div{
    min-width: 90px;
}
.section-property-list .property-box .property-content ul li span{
    padding: 0 20px 0 10px;
}
.section-property-list .filterDiv{
    padding: 30px 0;
    border-bottom: 1px solid #1c1b1b;
}
.section-property-list .button-group{
    box-shadow:13.156px 4.788px 24.5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    padding: 20px 0;
}
.section-property-list .filter-btn{
    text-transform: capitalize;
    border: 1px solid transparent;
    background: transparent;
    outline: 0;
    box-shadow: none;
    border-radius: 6px;
    font-weight: 600;
}
.section-property-list .filter-btn.is-checked{
    border-color: #b1252b;
    color: #b1252b;
}
@media (max-width: 1800px) {
    .section-property-list .filter-btn.filter-icon img{
        width: 30px;
    }
}

@media (max-width: 1200px) {
    .section-property-list .property-box .property-content h6, 
    .section-property-list .property-box .property-content p, 
    .section-property-list .property-box .property-content a, 
    .section-property-list .property-box .property-content li, 
    .section-property-list .filter-btn{
        font-size: 18px;
    }
    .section-property-list{
        padding: 60px 0;
    }
    .section-property-list .property-list{
        margin-top: 10px;
    }
    .section-property-list .property-box .property-content h4{
        font-size: 28px;
    }
}
@media (max-width: 992px){
    .section-property-list .property-box .property-content h4{
        font-size: 20px;
    }
    .section-property-list .property-box .property-content h6, 
    .section-property-list .property-box .property-content p, 
    .section-property-list .property-box .property-content a, 
    .section-property-list .property-box .property-content li, 
    .section-property-list .filter-btn{
        font-size: 16px;
    }
    .section-property-list .property-box{
        gap: 20px;
    }
    .section-property-list .property-box .img-wrap{
        width: calc(45% - 10px);
    }
    .section-property-list .property-box .property-content{
        width: calc(55% - 10px);
    }
    .main-banner .banner-content span{
        border: 0;
        line-height: 1.5;
    }
}

@media (max-width: 760px){
    .section-property-list{
        padding: 40px 0;
    }
    .section-property-list .filter-btn.filter-icon{
        display: none;
    }
    .section-property-list .button-group{
        gap: 6px;
        padding: 15px 0;
    }
    .section-property-list .filterDiv{
        padding: 20px 0;
    }
    .section-property-list .property-box{
        flex-wrap: wrap;
        gap: 15px;
    }
    .section-property-list .property-box .img-wrap, 
    .section-property-list .property-box .property-content{
        width: 100%;
    }
    .section-property-list .property-list {
        margin-top: 20px;
    }
    .section-property-list .property-box .badge-sec p{
        font-size: 14px;
    }
    .section-property-list .property-box .badge-logo img{
        width: 80px;
    }
    .section-property-list .property-box .badge-logo span{
        top:-12px;
    }
}

/* =============================================== Contact Page Section ======================= */

.section-contact.contact-page .contact-wrap{
    padding: 0;
}
.section-contact.contact-page h4{
    color: #b1252b;
}
.section-contact.contact-page .contact-wrap iframe{
    border-radius: 20px;
}
.section-contact.contact-page .address-box{
    padding: 40px 0 0 40px;
}
.section-contact.contact-page .address-box ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.section-contact.contact-page .address-box li{
    font-size: 23px;
    margin-bottom: 12px;
}
.section-contact.contact-page .address-box li a{
    color: currentColor;
    text-decoration: none;
}
.section-contact.contact-page .address-box span{
    color: #b1252b;
    padding-right: 6px;
    font-weight: 600;
}
.section-contact.contact-page .contact-wrap .form-sec{
    box-shadow:13.156px 4.788px 24.5px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1200px){
    .section-contact.contact-page .address-box li{
        font-size: 18px;
    }
}
@media (max-width: 992px){
    .section-contact.contact-page .address-box li{
        font-size: 16px;
    }
}
@media (max-width: 760px){
    .section-contact.contact-page .address-box{
        padding-left: 0;
    }
}


/* ======================================== Blog Page Section ============================= */

.section-blog-detail{
    padding: 80px 0 0;
}
.section-blog-detail .img-wrap img{
    max-width: 100%;
    width: 100%;
    border-radius: 20px;
}
.section-blog-detail .content-wrap h4{
    padding-bottom: 40px;
    text-align: left;
    font-size: 36px;
    color: #b1252b;
}
.section-blog-detail .content-wrap p{
    font-size: 18px;
    line-height: 1.5;
    color: #0c0c09;
    font-weight: 500;
}
.section-blog-detail .content-wrap p+p{
    margin-top: 1rem;
}
.section-blog-detail .content-wrap{
    padding-bottom: 80px;
    border-bottom: 1px solid #0c0c09;
}
.section-blog.blog-recent h4{
    color: #b1252b;
}
.section-blog.blog-recent .blog-box{
    margin-bottom: 24px;
    border-radius: 12px;
}

@media (max-width: 1200px){
    .section-blog-detail .content-wrap{
        padding-bottom: 60px;
    }
    .section-blog-detail .content-wrap h4{
        font-size: 28px;
        padding-bottom: 30px;
    }
    .section-blog-detail .content-wrap p{
        font-size: 18px;
    }
}

@media (max-width: 992px){
    .section-blog-detail .content-wrap h4{
        font-size: 20px;
    }
    .section-blog-detail .content-wrap p{
        font-size: 16px;
    }
}

@media (max-width: 760px){
    .section-blog-detail .content-wrap h4{
        padding-bottom: 20px;
    }
    .section-blog-detail .content-wrap{
        padding-bottom: 40px;
    }
}


/* ========================================== Property Details ============================== */

.section-property{
    padding: 80px 0 0;
}

.section-description p, 
.section-property li a, 
.section-address li p, 
.section-property-details li p, 
.section-unit-plan .nav-link, 
.section-enquiry h4+p{
    font-size: 17px;
    line-height: 1.5;
}





.section-property ul{
    border-radius: 15px;
    box-shadow: 10.337px 3.762px 20px rgba(0,0,0,0.1);
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    padding: 20px 16px;
    background: #fff;
    justify-content: space-between;
}
.section-property li a{
    line-height: 1;
    font-weight: 600;
    color: #0d0d0d;
    transition: .5s;
    border: 1px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    padding: 7px 8px;
    display: block;
}
.section-property li.active a{
    border-color:#b1252b;
    color: #b1252b;
}

.section-description h4, 
.section-address h4, 
.section-property-details h4, 
.section-calculator h4, 
.section-specification h4, 
.section-site-plan h4, 
.section-unit-plan h4, 
.section-property-gallery h4, 
.section-location h4, 
.section-enquiry h4{
    color: #b1252b;
    padding-bottom: 40px;
}
.section-description p{
    color: #0d0d0d;
    font-weight: 400;
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
}
.section-address ul{
    column-count: 3;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: -20px;
}
.section-address ul li{
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.section-address ul li img{
    width: 18px;
}
.section-address ul li p{
    color: #0d0d0d;
    font-weight: 500;
}
.section-property-details ul{
    column-count: 2;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: -15px;
}
.section-property-details ul li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}
.section-property-details ul li::before{
    content: "";
    background-image: url('../img/check.png');
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: 20px;
    top: 20%;
    transform: translateY(-20%);
}
.section-calculator .form-sec form{
    display: flex;
    flex-wrap: wrap;
    gap: 40px 16px;
}
.section-calculator .form-sec .form-group{
    width: calc(50% - 8px);
}
.section-calculator .btn-form-group{
    margin-top: 0;
    width: 100%;
}
.section-calculator .form-sec .btn-form-group .btn{
    color: #fff;
    background-color: #b1252b;
    padding: 8.5px 30px;
}
.section-calculator .form-sec label{
    color: #0d0d0d;
    padding-bottom:6px;
}
.section-calculator .form-sec input, 
.section-calculator .form-sec select{
    outline: 0;
    box-shadow: none;
    border-left: 4px solid #b1252b;
}
.section-specification .mapping-box p{
    color: #212121;
    font-weight: 600;
}
.section-specification .mapping-box{
    box-shadow:13.156px 4.788px 24.5px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    text-align: center;
    padding: 40px;
    border-radius: 20px;
}
.section-specification ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.section-specification ul li{
    width: calc(25% -  ((3 * 20px)/4));
}
.section-specification ul img{
    max-height: 60px;
}
.site-plan-img{
    text-align: center;
}
.site-plan-img img{
    max-width: 100%;
    border-radius: 30px;
}
.section-unit-plan .img-wrap{
    text-align: center;
}
.section-unit-plan .img-wrap img{
    border-radius: 30px;
    max-width: 100%;
}
.section-unit-plan .nav-tabs{
    justify-content: center;
    border: 0 !important;
    gap: 20px;
    padding-bottom: 20px;
}
.section-unit-plan .nav-tabs .nav-link{
    color: #212121;
    border: 0 !important;
    padding: 0;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 2;
}
.section-unit-plan .nav-tabs .nav-link.active{
    color: #b1252b;
}
.section-property-gallery #video {
    border-radius: 30px;
}
.section-location iframe{
    border-radius: 30px;
}
.section-gallery.section-property-gallery .property-gallery-slider{
    padding-top: 60px;
}
.section-gallery.section-property-gallery .img-wrap img{
    border-radius: 0;
}
.section-gallery.section-property-gallery .slick-list{
    margin: 0 -16px;
}
.section-gallery.section-property-gallery .slick-slide{
    padding: 0 16px;
}
.section-enquiry h4{
    padding-bottom: 30px;
}
.section-enquiry h4+p{
    text-align: center;
    color: #0d0d0d;
    font-weight: 500;
    padding-bottom: 20px;
}
.section-enquiry .form-sec{
    max-width: 900px;
    margin: 0 auto;
}
.section-enquiry .form-sec form{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 16px;
}
.section-enquiry .form-sec .form-group{
    width: calc(50% - 8px);
}
.section-enquiry .form-sec .form-group:nth-child(3), 
.section-enquiry .form-sec .form-group:nth-child(4){
    width: 100%;
}
.section-enquiry .form-sec .form-group textarea{
    width: 100%;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    outline: 0;
    box-shadow: none;
}
.section-enquiry .btn-form-group{
    margin-top: 0;
    width: 100%;
    text-align: center;
}
.section-enquiry .form-sec .btn-form-group .btn{
    color: #fff;
    background-color: #b1252b;
    padding: 8.5px 30px;
    width: 50%;
}
.section-enquiry .form-sec label{
    color: #0d0d0d;
    padding-bottom: 10px;
    width: 100%;
}
.section-enquiry .form-sec label img{
    max-width: 100%;
    margin-right: 8px;
    height: 40px;
}
.section-enquiry .form-sec input, 
.section-enquiry .form-sec select{
    outline: 0;
    box-shadow: none;
    border-left: 4px solid #b1252b;
}
.section-enquiry{
    padding-bottom: 40px;
}
@media (max-width: 1200px){
    .section-property {
        padding: 60px 0 0;
    }
    .section-description h4,
    .section-address h4,
    .section-property-details h4,
    .section-calculator h4,
    .section-specification h4,
    .section-site-plan h4,
    .section-unit-plan h4,
    .section-property-gallery h4,
    .section-location h4,
    .section-enquiry h4{
        padding-bottom: 30px;
    }
    .section-description p,
    .section-property li a, 
    .section-address li p, 
    .section-property-details li p, 
    .section-unit-plan .nav-link, 
    .section-enquiry h4+p {
        font-size: 18px;
    }
    .section-property ul{
        overflow-x: auto;
        justify-self: unset;
        gap: 8px;
    }
    .section-property ul li:first-child{
        margin-left: auto;
    }
    .section-property ul li:last-child{
        margin-right: auto;
    }
    .section-property li a{
        white-space: nowrap;
    }
    .section-specification .mapping-box{
        padding: 40px 10px;
    }
    .section-specification ul{
        gap: 16px 12px;
    }
    .section-specification ul li {
        width: calc(25% - ((3 * 12px) / 4));
    }
}

@media (max-width: 992px){
    .section-description p,
    .section-property li a, 
    .section-address li p, 
    .section-property-details li p, 
    .section-unit-plan .nav-link, 
    .section-enquiry h4+p {
        font-size: 16px;
    }
    .section-property-details ul li::before{
        background-size: 15px;

    }
}

@media (max-width: 760px) {
    .section-property{
        padding: 40px 0 0;
    }
    .section-description h4,
    .section-address h4,
    .section-property-details h4,
    .section-calculator h4,
    .section-specification h4,
    .section-site-plan h4,
    .section-unit-plan h4,
    .section-property-gallery h4,
    .section-location h4,
    .section-enquiry h4{
        padding-bottom: 20px;
    }
    .section-address ul {
        column-count: 1;
    }
    .section-property-details ul {
        column-count: 1;
    }
    .section-property-details ul li{
        padding-left: 24px;
    }
    .section-property-details ul li::before{
        height: 15px;
    }
    .section-calculator .form-sec .form-group{
        width: 100%;
    }
    .section-calculator .form-sec form{
        gap: 20px;
    }
    .section-specification ul li{
        width: calc(50% - ((1 * 12px) / 2));
    }
    .site-plan-img img, 
    .section-unit-plan .img-wrap img, 
    .section-property-gallery #video, 
    .section-location iframe{
        border-radius: 16px;
    }
    .section-gallery.section-property-gallery .property-gallery-slider{
        padding-top: 40px;
    }
    .section-enquiry .form-sec .form-group, 
    .section-enquiry .form-sec .btn-form-group .btn{
        width: 100%;
    }
    .section-enquiry .form-sec label img{
        height: 20px;
    }
    .section-enquiry{
        padding-bottom: 20px;
    }
    .section-gallery.section-property-gallery .slick-list{
        margin: 0 -5px;
    }
    .section-gallery.section-property-gallery .slick-slide{
        padding: 0 5px;
    }
}

/* ======================================== Gallery Details ======================================= */

.section-gallery-details{
    padding: 80px 0 40px;
}
.section-gallery-details .gallery-list{
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.section-gallery-details .gallery-list .gallery-box{
    display: block;
}
.section-gallery-details .gallery-list .gallery-box:nth-child(1){
    grid-row: span 4;
    grid-column: span 3;
}
.section-gallery-details .gallery-list .gallery-box:nth-child(2){
    grid-row: span 2;
    grid-column: span 3;
}
.section-gallery-details .gallery-list .gallery-box:nth-child(3){
    grid-row: span 2;
    grid-column: span 3;
}
.section-gallery-details .gallery-list .gallery-box:nth-child(4){
    grid-row: span 2;
    grid-column: span 4;
}
.section-gallery-details .gallery-list .gallery-box:nth-child(5){
    grid-row: span 3;
    grid-column: span 2;
}
.section-gallery-details .gallery-list .gallery-box:nth-child(6){
    grid-row: span 2;
    grid-column: span 4;
}
.section-gallery-details .gallery-list .gallery-box:nth-child(7){
    grid-row: span 2;
    grid-column: span 2;
}
.section-gallery-details .gallery-list .gallery-box:nth-child(8){
    grid-row: span 2;
    grid-column: span 4;
}
.section-gallery-details .gallery-list .gallery-box:nth-child(9){
    grid-row: span 1;
    grid-column: span 2;
}
.section-gallery-details .gallery-list .gallery-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pswp__img{
    object-fit: contain;
}
figure{
    margin: 0;
}

@media (max-width: 1200px){
    .section-gallery-details{
        padding: 60px 0 40px;
    }
}

@media (max-width: 760px){
    .section-gallery-details{
        padding: 40px 0 20px;
    }
}

/* ======================================= Blog Details ======================================== */

.section-about.blog-details-page{
    padding-bottom: 80px;
}
.section-about.blog-details-page .content-wrap h4{
    font-size: 32px;
    padding-bottom: 10px;
}
.section-about.blog-details-page .content-wrap h4:first-child{
    padding-bottom: 40px;
}
@media (max-width: 1200px){
    .section-about.blog-details-page .content-wrap h4 {
        font-size: 26px;
    }
    .section-about.blog-details-page{
        padding-bottom: 40px;
    }
}
@media (max-width: 992px){
    .section-about.blog-details-page .content-wrap h4 {
        font-size: 26px;
        padding: 40px 0 0;
    }
    .section-about.blog-details-page .content-wrap h4:first-child {
        padding-bottom: 24px;
    }
}
