.offer-section {
    width: 100%;
    height: 69vw;

    justify-content: center;
    background-size: auto;
    background-position: 0 -8vw;
    background-repeat: no-repeat;
    background-image: url('../images/offer.jpg');

    text-align: center;
    color: var(--color-main-contrary);

    .title {
        font-weight: bolder;
        padding-top: 3vw;
        padding-bottom: 0vw;
        font-size: 6vw;
    }

    .offer-pill {
        width: 36vw;
        height: 6.4vw;
        margin: 1.5vw auto 0 auto;
        border-radius: 8vw;
        border: 0.2vw solid;
        color: var(--color-main-contrary);
        border-color: var(--color-main-contrary);
        padding: 1vw 5vw;
        position: relative;

        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;

        .pill-title {
            font-size: 1.8vw;
            font-weight: 600;
        }

        .pill-text {
            font-size: 1.2vw;
        }

        .pill-icon {
            img {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 10;
                width: 5vw;
            }
        }

        .icon-left {
            img {
                left: -3vw;
            }
        }

        .icon-right {
            img {
                right: -3vw;
            }
        }

    }

    .pill-left {
        text-align: left;
    }

    .pill-right {
        text-align: right;
    }

}

@media (max-width: 768px) {

    .offer-section {
        height: 100vw;

        .title {
            padding-top: 10vw;
            font-size: 5vw;
        }

        .offer-pill {
            width: 52vw;
            height: 8vw;
            margin: 2.5vw auto 0 auto;
            padding: 2vw 5vw;

            .pill-title {
                font-size: 2.5vw;
                font-weight: 600;
            }

            .pill-text {
                font-size: 1.8vw;
            }


        }

    }
}