.discover-section {
    position: relative;
    overflow: hidden;
}

.discover-section .container {
    max-width: 650px;
    margin: 0;
}

.discover-section a {
    letter-spacing: -0.03rem;
    padding-top: 40px;
    font-family: 'Whyte-Semi';
}

.discover-section a::after {
    width: 100%;
}

.discover-section p {
    font-size: 22px;
    margin: 10px 0;
    text-align: center;
    text-transform: capitalize;
    line-height: 1.2;
}

.discover-section img {
    position: absolute;
    z-index: -1;
    left: calc(50% + var(--gap));
    transform: translateX(100%);
    max-height: 100%;
}

@media screen and (max-width: 767px) {
    .discover-section p {
        max-width: unset;
    }

    .discover-section .container {
        margin: 50px 0 0;
        padding-left: 0;
        padding-right: 0;
    }

    .discover-section .text {
        margin-bottom: 50px;
    }

    .discover-section img {
        position: absolute;
        left: auto;
        transform: none;
        right: var(--gap);
        bottom: 0;
        width: 33%;
    }

    .discover-section a {
        margin-bottom: 50px;
    }
}