.opening_banner {
    position: relative;
    width: 100%;
    padding: 120px 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--form-field);
    margin-bottom: 100px;
}

.opening_banner_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 720px;
}

.opening_banner h1 {
    position: relative;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--black);
    text-transform: uppercase;
    font-family: "feature_film_jnlregular";
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0 auto 40px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.opening_banner .health_stars {
    position: absolute;
    left: -30px;
    top: -30px;
    width: 260px;
    height: 165px;
}

.opening_banner h2 {
    font-size: 32px;
    color: var(--black);
    text-transform: uppercase;
    margin: 20px 0 0;
    width: 100%;
}

.opening_paragraph,
.disclaimer {
    width: 500px;
    text-align: center;
    margin: 0 auto 140px;
}

.opening_paragraph p,
.disclaimer {
    font-weight: 700;
}

.disclaimer {
    margin-top: 40px;
}

.bee_with_flight_path,
.bee_with_flight_path svg {
    width: 320px;
}

.bee_with_flight_path {
    position: absolute;
    top: -160px;
    left: -320px;
}

.about .column .about_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.about .column .about_content p {
    margin-top: 0;
}

#bibliography {
    height: 0;
    opacity: 0;
    transition: 0.1s all ease-in-out;
}

.show_bib {
    height: max-content !important;
    opacity: 1 !important;
    margin-top: 60px;
    transition: 0.2s all ease-in-out;
}

#bibButton {
    cursor: pointer;
    margin: 0 auto;
    background-color: var(--gold);
    transition: 0.2s all ease-in-out;
}

#bibButton i {
    margin-left: 8px;
    margin-right: 0px;
    transition: 0.2s all ease-in-out;
}

.rotate_icon {
    transform:rotate(180deg); 
    -webkit-transform:rotate(180deg); 
    -moz-transform:rotate(180deg); 
    -o-transform:rotate(180deg);
    transition: 0.2s all ease-in-out;
}

.disc_heading {
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--black);
}

@media (max-width: 990px) {
    .opening_paragraph {
        margin-bottom: 100px;
    }

    .about:first-of-type {
        margin-top: 100px;
    }

    .about .column .about_image {
        width: 80%;
    }

    .opening_banner {
        margin-bottom: 150px;
    }

    .opening_banner_content {
        width: 90%;
    }

    .bee_with_flight_path {
        position: absolute;
        top: -210px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .opening_paragraph,
    .disclaimer {
        width: 100%;
    }

    .opening_banner_content {
        width: calc(100% - 40px);
    }

    .about .column .about_image {
        width: 100%;
    }
}