/* ------------------------------ */
/* ------- Call to action ------- */
/* ------------------------------ */
.cta {
    position: relative;
}

.cta__content {
    position: relative;
    padding: 1.25rem 4rem 1.4rem 1.5rem;
    background-color: var(--brand-background-color-transparent);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.no-touchevents .cta:hover .cta__content {
    background-color: var(--brand-color);
}

.cta .cta__content__inside > span {
    display: block;
    font-weight: normal;
    color: var(--brand-color);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.no-touchevents .cta:hover .cta__content__inside > span {
    color: var(--brand-white);
}



/* ------------------------------ */
/* -------- Media Queries ------- */
/* ------------------------------ */

@media only screen and (max-width: 1439.98px) {
    .cta__content {
        padding-right: 78px;
    }
}


@media (min-width: 768px) {

    .cta__content__inside .button {
        display: none;
    }

}

@media (max-width: 767.98px) {

    .cta__content {
        padding: 1rem;
    }

    .cta::before, .cta::after {
        display: none;
    }

    .cta .cta__content__inside > span {
        line-height: 1.4;
    }

    .cta__content__inside .button {
        margin-top: 10px;
    }

    .cta .button span, .cta .button span::before {
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
    }

    .no-touchevents .cta:hover .button span {
        color: var(--brand-white);   
    }

    .no-touchevents .cta:hover .button span::before {
        background-color: rgba(255, 255, 255, .075);
    }

}