.opening_banner {
    position: relative;
}

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

.opening_banner_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    opacity: 1;
    mask-image: linear-gradient(180deg, transparent 3%, black 65%);
    -webkit-mask-image: linear-gradient(180deg, transparent 3%, black 65%);
}

.opening_banner .overlay_text {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.opening_banner .overlay_text h1 {
    text-align: center;
    color: var(--black);
	font-size: 40px;
    font-weight: 400;
    margin: 0 auto;
}

.opening_banner .overlay_text h2 {
    text-align: center;
    color: var(--black);
	font-size: 30px;
    font-weight: 400;
}

.opening_heading {
    width: 400px;
    margin: 50px auto 30px;
}

.the_field {
    margin-bottom: 100px;
}

.opening_illustration {
    margin-top: 120px;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.the_field h3 {
    text-align: center;
    color: var(--black);
	font-size: 40px;
    font-weight: 400;
}

.the_field p strong {
    font-weight: 700;
}

.base_image {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

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

@media (max-width: 1350px) {
    .opening_banner_image img {
        mask-image: linear-gradient(180deg, transparent 3%, black 65%);
        -webkit-mask-image: linear-gradient(180deg, transparent 3%, black 65%);
    }

    .opening_banner .overlay_text {
        top: 100px;
    }
}

@media (max-width: 800px) {
    .opening_banner .overlay_text {
        width: calc(100% - 40px);
    }
}

@media (max-width: 500px) {
    .opening_banner_image img {
        mask-image: linear-gradient(180deg, transparent 15%, black 65%);
        -webkit-mask-image: linear-gradient(180deg, transparent 15%, black 65%);
    }

    .opening_heading {
        width: 100%;
    }

    .the_field {
        margin-bottom: 70px;
    }

    .base_image {
        width: 100%;
        height: 250px;
    }
}