.offers {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.offers > a {
    flex: 0 30%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.treugolnik {
    width: 100%;
    position: absolute;
    bottom: 0;
    display: block;
    display: flex;
    align-items: end;
    background: linear-gradient(to  top right, var(--navy) 50%, transparent 0%);
}
.treugolnik > span {
    font-weight: 500;
    display: block;
    color: white;
}
@media(min-width:1100px) {
    .treugolnik {
        height: 178px;
    }
    .treugolnik > span {
        font-size: 30px;
        margin-bottom: 24px;
        margin-left: 24px;
    }
    #offer-rem {
        background-image: url('/index/offers/img/1-desk.webp');
    }
    #offer-zapr {
        background-image: url('/index/offers/img/2-desk.webp');
    }
    #offer-obs {
        background-image: url('/index/offers/img/3-desk.webp');
    }
}
@media(min-width:1371px) {
    .offers {
        width: 1330px;
    }
    .offers > a {
        height: 475px;
    }
}
@media(min-width:1100px) and (max-width:1370px) {
    .offers {
        width: 1040px;
    }
    .offers > a {
        height: 365px;
    }
}
@media(max-width:1099px) {
    #offer-rem {
        background-image: url('/index/offers/img/1.webp');
    }
    #offer-zapr {
        background-image: url('/index/offers/img/2.webp');
    }
    #offer-obs {
        background-image: url('/index/offers/img/3.webp');
    }
    .offers > a {
        height: 255px;
    }
    .treugolnik {
        height: 84px;
    }
    .treugolnik > span {
        font-size: 14px;
        margin-bottom: 14px;
        margin-left: 14px;
    }
}
@media(min-width:760px) and (max-width:1099px) {
    .offers {
        width: 690px;    
    }
}
@media(min-width:760px) {
    .offers {
        margin: 86px auto;
    }
}
@media(max-width:759px) {
    .offers {
        flex-direction: column;
        height: 700px;
        margin: 48px auto;
    }
    .offers > a {
        width: 207px;
    }
}
.offer-cont {
    width: 100%;
    height: 100%;
    background-color: var(--navy);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: tr 600ms;
}
.offer-cont > span {
    width: 280px;
    display: block;
    padding: 22px 0;
}
