.aeroflot-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #02458D;
    overflow: hidden;
    border-radius: 60px;
    padding-block: 60px;
    &::before {
        position: absolute;
        content: "";
        bottom: -10px;
        left: -10px;
        background-image: url('../../assets/ru/gradient.png');
        background-repeat: no-repeat;
        background-position: center;
        width: 300px;
        height: 370px;
    }
    &::after {
        position: absolute;
        content: "";
        top: -10px;
        left: 77%;
        bottom: -10px;
        background-image: url('../../assets/ru/plane.png');
        background-repeat: no-repeat;
        background-position: center;
        width: 420px;
    }
}

.aeroflot-block__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    z-index: 10;
    margin: 0 auto;
}

.aeroflot-block__title {
    font-size: 48px;
    margin-block: 0 24px;

    span {
        font-weight: 400;
    }
}

.aeroflot-block__description {
    font-size: 24px;
}

.aeroflot-block__benefits {
    display: flex;
    flex-direction: row;
    column-gap: 88px;
    padding-block: 40px;
}

.aeroflot-block__benefit {
    display: flex;
    row-gap: 16px;
    flex-direction: column;
    align-items: center;
    &::before {
        content: "";
        background-image: url('../../assets/ru/check.svg');
        background-repeat: no-repeat;
        background-position: center;
        width: 54px;
        height: 46px;
    }
}

.aeroflot-block__bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 40px;
    max-width: 660px;
}

.aeroflot-block__button {
    border-radius: 8px;
    padding: 12px 24px;
    background: #FFFFFF;
    color: #051F1C;
    font-size: 18px;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    text-wrap: nowrap;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .aeroflot-block {
        &::after {
            right: -150px;
        }
    }

    .aeroflot-block__title {
        font-size: 40px;
    }

    .aeroflot-block__description {
        font-size: 20px;
    }
}
