.cta {
    position: relative;
    z-index: 5;
    padding: 80px 0 96px;
}

.cta h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
}

.cta p {
    width: 500px;
    margin: 0 auto 35px;
    text-align: center;
}

.cta .buttons_container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 30px auto 0;
}

.cta .buttons_container .button,
.cta .buttons_container .button_2 {
    margin-right: 20px;
}

.cta .buttons_container .button_2:last-of-type {
    margin-right: 0;
}

.cta li a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    color: var(--gold);
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.2s ease-in-out;
}

.cta li a:hover {
    opacity: 0.7;
    transition: all 0.2s ease-in-out;
}

.cta li a i {
    margin-right: 10px;
}

.fox {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 166px;
    height: 225px;
}

@media (max-width: 800px) {
    .fox {
        position: relative;
        margin: 0 auto -81px;
        width: 118px;
        height: 159px;
    }
}

@media (max-width: 600px) {
    .cta p {
        width: 100%;
    }

    .cta .buttons_container {
        flex-direction: column;
    }

    .cta .buttons_container .button,
    .cta .buttons_container .button_2 {
        margin: 0 auto 20px;
    }

    .cta .buttons_container .button_2:last-of-type {
        margin-right: auto;
        margin-bottom: 0;
    }

    .cta .buttons_container .button,
    .cta .buttons_container .button_2 {
        width: 100%;
    }
}