.opening {
    background-color: var(--yellow);
    padding: 120px 0;
}

.opening h1 {
    font-size: 60px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

.opening h3 {
    margin: 0 auto;
    text-align: center;
    font-family: "adlery-pro-swash", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: capitalize;
    color: var(--dark-blue);
}

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

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

.opening .buttons_container .button,
.opening .buttons_container .button_2 {
    margin-right: 25px;
}

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

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

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

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

@media (max-width: 650px) {
    .opening h1 {
        font-size: 48px;
    }
}

@media (max-width: 660px) {
    .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%;
    }
}