.opening_banner {
    position: relative;
}

.opening_banner_image {
    width: 100%;
    height: 415px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--black);
}

.opening_banner_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    opacity: 0.6;
}

.opening_banner_content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

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

.opening_banner .side {
    width: 40px;
    height: 5px;
    background-color: var(--gold);
}

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

/***************************** Our Story *******************************/
.our_story {
    text-align: center;
}

.our_story_heading {
    margin: 80px auto 20px;
    width: 300px;
}

.our_story_image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.our_story_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
}

.gold_heading,
.gold_heading svg {
    width: 200px;
    height: 130px;
}

.svg-flex-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.heading1 {
    display: block;
    margin-bottom: 30px;
}

.heading2,
.heading3,
.heading4 {
    display: none;
}

.base_images {
    display: flex;
    align-items: stretch;
}

.base_image {
    width: 50%;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.base_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.dancing_leaves {
    width: 200px;
    margin: 60px auto -40px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

@media (max-width: 1050px) {
    .heading1 {
        display: none;
    }

    .heading2 {
        display: block;
    }
}

@media (max-width: 990px) {
    .gold_heading {
        margin: 0 auto;
    }

    .heading2 {
        display: none;
    }

    .heading3 {
        display: block;
        width: 70%;
        margin: 0 auto;
    }

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

@media (max-width: 850px) {
    .base_images {
        flex-direction: column;
    }

    .base_image {
        width: 100%;
        aspect-ratio: 1;
    }
}

@media (max-width: 700px) {
    .opening_banner_image img {
        object-position: 100% 50%;
        opacity: 0.5;
    }
}

@media (max-width: 600px) {
    .opening_banner_image {
        height: 550px;
    }

    .opening_banner h1 {
        width: 330px;
    }

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

    .heading3 {
        width: 85%;
    }
}

@media (max-width: 500px) {
    .heading3 {
        width: 95%;
    }
}

@media (max-width: 450px) {
    .heading3 {
        display: none;
    }

    .heading4 {
        display: block;
        width: 90%;
        margin: 0 auto 40px;
    }

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