.homepage_opening {
    position: relative;
    width: 100%;
    min-height: 500px;
    height: calc(100vh - (var(--nav-height)) - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.homepage_opening .homepage_opening_image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.homepage_opening_content {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.homepage_opening h1 p,
.homepage_opening .mobile_opening_heading {
    font-size: 32px;
    color: var(--black);
    text-transform: uppercase;
    margin: 7.5vh 0 0;
    width: 560px;
}

.homepage_opening .mobile_opening_heading {
    display: none;
}

.homepage_opening .bird_illustration {
    position: absolute;
    top: -140px;
    left: 120px;
}

.homepage_opening .bird_illustration,
.homepage_opening .bird_illustration svg {
    width: 100px;
    height: 100px;
}

@media (max-width: 1050px) {
    .homepage_opening .bird_illustration {
        top: -140px;
        left: 40px;
    }
}

@media (max-width: 850px) {
    .homepage_opening .bird_illustration {
        top: 30px;
        left: 40px;
    }
}

@media (max-width: 620px) {
    .homepage_opening {
        min-height: 550px;
        height: calc(100vh - (var(--nav-height)) - 20px);
    }

    .homepage_opening h1 p,
    .homepage_opening .mobile_opening_heading {
        width: calc(100% - 40px);
    }

    .homepage_opening h1 p {
        display: none;
    }

    .homepage_opening .mobile_opening_heading {
        display: block;
    }
}

@media (max-width: 520px) {
    .homepage_opening .bird_illustration {
        top: 30px;
        left: -10px;
    }
}

@media (max-width: 400px) {
    .homepage_opening .bird_illustration {
        display: none;
    }
}