.offer-section__content {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 24rem 24rem 71rem;
}

.offer-section__content-container {
    padding-left: 0;
    padding-right: 0;
}

.offer-section__title:not(:first-child) {
    margin-top: 30rem;
}

.offer-section__title mark {
    background-color: var(--ivory-color);
}

.offer-section__background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    background-color: var(--green-100-color);
    border-radius: 30rem;
}

.offer-section__background:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .7;
    background-color: var(--green-100-color);
}

.offer-section__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-section__background img:nth-child(2) {
    display: none;
}

.offer-section__cards:not(:first-child) {
    position: relative;
    z-index: 1;
    margin-top: -41rem;
}

@media screen and (min-width: 768px) {
    .offer-section__background img:nth-child(1) {
        display: none;
    }

    .offer-section__background img:nth-child(2) {
        display: block;
    }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .offer-section__container {
        max-width: 1582rem;
    }

    .offer-section__content {
        padding: 118rem 0;
    }

    .offer-section__content-container {
        padding-left: 16rem;
        padding-right: 16rem;
    }

    .offer-section__title {
        max-width: 936rem;
        margin: 0 auto;
    }

    .offer-section__tag + .offer-section__title {
        margin-top: -41rem;
    }

    .offer-section__cards:not(:first-child) {
        margin-top: -59rem;
    }
}