.hero__main-wrapper {
    min-height: 100vh;
    display: grid;
    width: 100%;
    position: relative;
}
.hero__media-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
}
.hero__media-wrap img, .hero__media-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__header-wrap {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: var(--padding);
    align-items: center;
    flex-direction: column;
    gap: var(--padding);
}
h1.hero__header {
    margin: 0;
    font-size: var(--font-size-h1);
    font-weight: 400;
    text-align: center;
    line-height: 120%;
    color: white;
}
.hero__button {
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid white;
    color: white !important;
    text-decoration: none;
    font-size: var(--font-size-h6);
}