.promo {
    background-color: #270143;
    border-radius: var(--brad);

    display: flex;
    flex-direction: row;
    overflow: hidden;
}
.promo > div:first-child {
    padding: 60px 0 60px 80px;
    width: 50%;
}
.promo > div:last-child {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}
.promo h2 {
    margin-top: 16px;
}
.promo img {
    object-fit: contain;
    object-position: bottom;
}
.promo img:last-child {
    display: none;
}
.promo p:not(.promo ul p) {
    margin-bottom: 24px;
}
.promo ul {
    margin-bottom: 24px;
}
@media (max-width: 1024px) {
    .promo {
        flex-direction: column-reverse;
        overflow: visible;
    }
    .promo > div:first-child {
        background-color: var(--black1);
        padding: 24px 0 0 0;
        width: 100%;
    }
    .promo > div:last-child {
        position: relative;
        top: unset;
        right: unset;
        height: unset;
    }
    .promo img:first-child {
        display: none;
    }
    .promo img:last-child {
        display: block;
    }
    .promo a {
        width: 100%;
    }
}
