.highlights-section{
    border-bottom: 1px solid #f2663b !important;
    background:white;
}
.highlights-section .single-item{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:25px;
    background:#fff;
    border-radius:20px;
    /* min-height:180px;
    padding:30px; */
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.highlights-section .icon-box{
    width: 78px;
    height: 77px;
    min-width: 46px;
    border-radius:50%;
    border:2px dashed rgba(255,102,0,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ff6600;
    font-size:34px;
    position:relative;
}

.highlights-section .icon-box:before{
    content:'';
    position:absolute;
    width:72px;
    height:72px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.highlights-section .icon-box i{
    position:relative;
    z-index:2;
}

.highlights-section h5{
    margin:0;
    font-size:16px;
    line-height:1.3;
    font-weight:700;
    color:#111;
    flex:1;
    display:flex;
    align-items:center;
    min-height:90px;
}

.highlights-section h5 span{
    color:#ff6600;
}

@media(max-width:767px){

    .highlights-section .single-item{
        flex-direction:column;
        text-align:center;
    }

    .highlights-section h5{
        min-height:auto;
        justify-content:center;
    }
}