.section-highlight-block{
    padding: 96px 0;
}

.section-highlight-block .inner-wrapper{
    padding: 80px 40px 80px 100px;
    background-image: url('../../assets/images/highlight-sec-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
}
.section-highlight-block .inner-wrapper .left-part{
    max-width: 473px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: 48px;
}
.section-highlight-block .inner-wrapper .right-part{
    max-width: min(48%,574px);

}
.section-highlight-block .title{
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
    color: var(--color-light);
}
.section-highlight-block .desc,.section-highlight-block .desc p{
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-light);
}
.section-highlight-block .desc p{
    margin-bottom: 20px;
}
.section-highlight-block .desc p:last-child{
    margin-bottom: 0;
}
.section-highlight-block .inner-wrapper .right-part img{
    border-radius: 5px;
    margin-bottom: 8px;
}
.section-highlight-block .inner-wrapper .right-part img:last-child{
    margin-bottom: 0;
}
.section-highlight-block .inner-wrapper .right-part .caption{
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; 
    color: var(--color-light);
}   

@media only screen and (max-width:992px){
    .section-highlight-block .inner-wrapper{
        padding: 40px;
        flex-direction: column;
        row-gap: 40px;
    }
    .section-highlight-block .inner-wrapper .left-part,
    .section-highlight-block .inner-wrapper .right-part{
        max-width: 100%;
    }
}
@media only screen and (max-width:768px){
    .section-highlight-block{
        padding: 32px 0;
    }
    
    .section-highlight-block .container{
        padding: 0;
    }
    .section-highlight-block .inner-wrapper{
        padding: 44px 20px;
    }
    .section-highlight-block .title{
        font-size: 29px;
        line-height: normal;
    }
    .section-highlight-block .inner-wrapper .left-part{
        row-gap: 24px;
    }
    .section-highlight-block .desc, .section-highlight-block .desc p{
        font-size: 15px;
        line-height: 23px;
    }
    .section-highlight-block .inner-wrapper .right-part img{
        width: 100%;
        max-width: 100%;
        aspect-ratio: 390 / 209;
        object-fit: cover;
        object-position: center;
    }
    .section-highlight-block .inner-wrapper .right-part .caption{
        font-size: 12px;
        line-height: normal;
    }
}