.sectors__wrapper{
    display:flex;
    justify-content: space-between;
    flex-wrap:wrap;
    row-gap:30px;
}

.sectors__item{
    width:32%;
}

.sectors__item-image{
    position:relative;
    width:100%;
    height:250px;
    z-index: -1;
}

.sectors__item-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:16px 16px 0 0;
}

.sectors__item-title{
    background: #e82100;
    margin:-20px 0 0;
    padding:30px 0 30px 20px;
    border-radius:16px;
    color:#fff;
    font-size:24px;
}

@media (max-width:993px){
    .sectors__item{
        width:49%;
    }
}

@media (max-width:576px){
    .sectors__item{
        width:100%;
    }
}