div.promo > * {
    position: relative;
    color: var(--white);
}

div.promo > .promo-bg {
    position: absolute;
}
.promo {
    height: 578px;
    position: relative;
    overflow: hidden;
}
.promo::after {
    content: '';
    width: 100%;
    height: 100px;
    background-image: url("../../images/promo-after.png");
    background-repeat: no-repeat;
    background-size: auto 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.promo-wrap {
    padding: 20px 0;
}
.promo-bg {
    position: absolute;
    top: -152px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 716px;
}
.promo-bg img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}
.promo-list__brands {
    position: relative;
    display: flex;
    gap: 33px;
}
.promo-list__brands li {
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
}
.promo-title {
    text-transform: uppercase;
    position: relative;
    max-width: 631px;
    padding-top: 35px;
}
.promo-text {
    position: relative;
    line-height: 100%;
    letter-spacing: 0;
    margin: 20px 0 40px;
}
.promo_btn__wrap {
    display: flex;
    gap: 20px;
}
.promo-btn {
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    padding: 10px 30px;
    display: inline-block;
}

.promo-btn__call {
    background-color: var(--red);
    color: var(--white);
}
div.promo .promo-btn__catalog-link {
    color: var(--black);
    background-color: var(--white);
}

@media (max-width: 1024px) {
    .promo {
        height: 400px;
    }
    .promo::after {
        display: none;
    }
    .promo-bg {
        top: 0;
        height: 468px;
    }
}
@media (max-width: 768px) {
    .promo {
        height: 297px;
    }
    .promo-bg {
        height: 297px;
    }
    .promo-list__brands {
        display: none;
    }
    .promo-btn {
        padding: 10px 17px;
        width: 100%;
    }
    .promo_btn__wrap {
        display: flex;
        gap: 10px;
    }
}
@media (max-width: 390px) {
    .promo_btn__wrap {
        flex-wrap: wrap;
        max-width: 200px;
    }
}