section.overview-area.pt-80.pb-80{
background-color : #fcd2ac;
}
.banner-area-three {
    overflow: hidden;
}

.custom-full-image{
    width:100%;
    overflow:hidden;
}

.custom-full-image img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
}


.office-partition-section{
    padding:100px 0;
    background:#FCD2AC;
    position:relative;
    overflow:hidden;
    font-family:'Poppins', sans-serif;
}

.office-partition-section .container{
    width:90%;
    margin:auto;
}

/* HEADING */

.partition-heading{
    text-align:center;
    max-width:950px;
    margin:auto auto 70px;
}

.partition-heading span{
    display:inline-block;
    color:#F38221;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.partition-heading h2{
    font-size:55px;
    line-height:1.2;
    color:#942e34;
    font-weight:800;
    margin-bottom:20px;
}

.partition-heading p{
    font-size:18px;
    line-height:1.9;
    color:#5f3b3d;
}

/* GRID */

.partition-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

/* CARD */

.partition-card{
    background:#fff7ef;
    border-radius:30px;
    padding:35px;
    display:flex;
    gap:25px;
    margin-bottom:30px;
    transition:0.4s ease;
    box-shadow:0 15px 40px rgba(148,46,52,0.08);
    border:2px solid transparent;
    position:relative;
    overflow:hidden;
}

.partition-card:hover{
    transform:translateY(-8px);
    border-color:#F38221;
}

.partition-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(to right,#942e34,#F38221);
}

/* ICON */

.icon-box{
    min-width:85px;
    height:85px;
    border-radius:24px;
    background:linear-gradient(135deg,#942e34,#F38221);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(148,46,52,0.18);
}

.icon-box i{
    color:#fff;
    font-size:34px;
}

/* CONTENT */

.content{
    width:100%;
}

.content h3{
    font-size:28px;
    color:#942e34;
    margin-bottom:15px;
    font-weight:700;
}

.content p{
    font-size:16px;
    line-height:1.9;
    color:#5f3b3d;
}

.content ul{
    padding-left:18px;
    margin:0;
}

.content ul li{
    font-size:16px;
    line-height:1.8;
    color:#5f3b3d;
    margin-bottom:12px;
}

.content ul li strong{
    color:#942e34;
}

/* MAIN WRAP */
.content-bottom .list-wrap{

    justify-content:center;

}

/* CARD */
.content-bottom .list-wrap li{

    max-width:280px;
    gap:18px;
    background:#fff;
}



/* ICON */

.content-bottom .icon{
   
    width:70px;
    display:flex;
    justify-content:center;
    color:#fff;
}


.content-bottom .content{
    flex:1;
}



/* RESPONSIVE */

@media(max-width:1100px){

    .partition-wrapper{
        grid-template-columns:1fr;
    }

}

@media(max-width:991px) {

    .content-bottom .list-wrap {
        /* gap:20px; */
    }

    .content-bottom .list-wrap li {
        max-width: 240px;
        padding: 24px 20px;
    }

    .content-bottom .count {
        font-size: 32px;
    }
}


@media(max-width:768px){

    .office-partition-section{
        padding:70px 0;
    }

    .partition-heading{
        margin-bottom:45px;
    }

    .partition-heading h2{
        font-size:34px;
    }

    .partition-heading p{
        font-size:16px;
        line-height:1.8;
    }

    .partition-card{
        flex-direction:column;
        padding:28px 22px;
        border-radius:24px;
        gap:20px;
    }

    .icon-box{
        width:75px;
        min-width:75px;
        height:75px;
        border-radius:20px;
    }

    .icon-box i{
        font-size:28px;
    }

    .content h3{
        font-size:24px;
    }

    .content p,
    .content ul li{
        font-size:15px;
        line-height:1.7;
    }
      .content-bottom .list-wrap {
        flex-direction: column;
        /* gap:18px; */
    }

    .content-bottom .list-wrap li {
        max-width: 100%;
         width:100%; 
    }

    .content-bottom .icon {
        /* min-width:60px; */
        /* width:60px; */
        /* height:60px; */

        /* font-size:24px; */
    }

    .content-bottom .count {
        /* font-size:28px; */
    }

    .content-bottom .content p {
        /* font-size:14px; */
    }

}