.cta {
    position: relative;
    z-index: 5;
    padding: 120px 0 140px;
    background-color: var(--form-field);
}

.cta h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1.3;
	color: var(--black);
	font-size: 40px;
}

.cta p {
    width: 500px;
    margin: 0 auto 25px;
    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;
}

.cta .bee_illustration {
    position: absolute;
    top: -10px;
    left: 0px;
}

.cta .bee_illustration,
.cta .bee_illustration svg {
    width: 80px;
    height: 80px;
}

.cta .cat_illustration {
    position: absolute;
    bottom: -140px;
    right: 0px;
}

.cta .cat_illustration,
.cta .cat_illustration svg {
    width: 200px;
    height: 200px;
}

@media (max-width: 600px) {
    .cta {
        padding: 170px 0 200px;
    }

    .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%;
    }

    .cta .bee_illustration {
        position: absolute;
        top: -90px;
        left: 30px;
    }

    .cta .cat_illustration {
        position: absolute;
        bottom: -202px;
        right: 60px;
    }
}