.cta {
    position: relative;
    z-index: 5;
    padding: 180px 0 190px;
}

.cta h2 {
    text-align: center;
    margin: 0 auto 30px;
    font-size: 100px;
    width: 600px;
}

.cta h3 {
    text-align: center;
    margin: 0 0 10px;
    color: var(--sage);
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.cta .buttons_container .button {
    margin-right: 0;
}

.mushroom {
    position: absolute;
    top: 280px;
    left: 0;
}

.chilli {
    position: absolute;
    top: 140px;
    right: 0;
}

@media (max-width: 1200px) {
    .cta .mushroom {
        bottom: 120px;
        top: unset;
        left: 0;
    }

    .chilli {
        top: 50px;
        right: 0;
    }

    .cta .mushroom,
    .cta .mushroom svg {
        width: 230px;
        height: 230px;
    }

    .cta .chilli,
    .cta .chilli svg {
        width: 210px;
        height: 210px;
    }
}

@media (max-width: 950px) {
    .cta {
        padding: 280px 0;
    }

    .cta .mushroom {
        top: unset;
        bottom: 80px;
        left: 0;
    }

    .cta .chilli {
        top: 80px;
        right: 0;
    }
}

@media (max-width: 660px) {
    .cta {
        padding: 280px 0 340px 0;
    }
    
    .cta h1 {
        font-size: 48px;
    }

    .cta h2,
    .cta p {
        width: 100%;
    }
    
    .cta .buttons_container {
        flex-direction: column;
    }

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

    .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 .mushroom {
        bottom: 100px;
        left: 50%;
        margin-left: -100px;
        width: 200px;
        height: 200px;
    }

    .cta .mushroom svg {
        width: 200px;
        height: 200px;
    }

    .cta .chilli {
        top: 60px;
        right: 50%;
        margin-right: -100px;
        width: 180px;
        height: 180px;
    }

    .cta .chilli svg {
        width: 180px;
        height: 180px;
    }
}