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

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

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

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

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

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

.opening .buttons_container .button_2 {
    margin-left: 25px;
}

.opening .bell_pepper {
    position: absolute;
    top: 280px;
    left: 0;
    width: 330px;
    height: 330px;
    opacity: 0.25;
}

.opening .beetroot {
    position: absolute;
    top: 140px;
    right: 0;
    width: 310px;
    height: 310px;
    opacity: 0.25;
}

.opening .carrot {
    position: absolute;
    top: 280px;
    right: 0;
    width: 330px;
    height: 330px;
    /* transform: rotateZ(-30deg); */
    opacity: 0.25;
}

.opening .brocolli {
    position: absolute;
    top: 140px;
    left: 0;
    width: 360px;
    height: 360px;
    opacity: 0.25;
}

@media (max-width: 1200px) {
    .opening .bell_pepper,
    .opening .carrot {
        width: 230px;
        height: 230px;
    }

    .opening .beetroot {
        width: 210px;
        height: 210px;
    }

    .opening .brocolli {
        width: 260px;
        height: 260px;
    }
}

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

    .opening .bell_pepper {
        top: unset;
        bottom: 80px;
        left: 0;
    }

    .opening .beetroot {
        top: 80px;
        right: 0;
    }

    .opening .carrot {
        top: unset;
        bottom: 60px;
        right: 0;
    }

    .opening .carrot,
    .opening .carrot svg {
        width: 220px;
        height: 220px;
    }

    .opening .brocolli {
        top: 60px;
        left: 0;
    }

    .opening .brocolli,
    .opening .brocolli svg {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 750px) {
    .opening {
        padding: 250px 0 340px 0;
    }

    .opening .bell_pepper {
        bottom: 80px;
        left: 0;
    }

    .opening .beetroot {
        top: 30px;
        right: 0;
    }
}

@media (max-width: 660px) {
    .opening {
        padding: 280px 0 340px 0;
    }

    .opening h1,
    .opening h2 {
        font-size: 80px;
    }

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

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

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

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

    .opening .bell_pepper {
        bottom: 80px;
        left: 50%;
        margin-left: -100px;
        width: 200px;
        height: 200px;
    }

    .opening .bell_pepper svg {
        width: 200px;
        height: 200px;
    }

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

    .opening .beetroot svg {
        width: 180px;
        height: 180px;
    }

    .opening .carrot {
        top: unset;
        bottom: 60px;
        right: 50%;
        margin-right: -90px;
    }

    .opening .carrot,
    .opening .carrot svg {
        width: 180px;
        height: 180px;
    }

    .opening .brocolli {
        top: 60px;
        left: 50%;
        margin-left: -100px;
    }

    .opening .brocolli,
    .opening .brocolli svg {
        width: 200px;
        height: 200px;
    }
}