.hero,
.hero_content {
    /*position: absolute;*/
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero_video,
.hero iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
/*    height: 56.25vw;
    min-height: 100vh;*/
    min-width: 177.77vh;
}

.hero iframe {
    opacity: 0;
}

.hero iframe.loaded {
    opacity: 1;
}

.hero_content {
    z-index: 8675309;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero_content_title {
    color: #fff;
    font-family: Georgia, Times, Times New Roman, serif;
    font-size: clamp(1.5rem, 5vw, 3.25rem);
    line-height: 1.75rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.375em;
    font-weight: lighter;
    margin-bottom: 2.625rem;
}

.hero_content_play {
    display: block;
    position: relative;
    width: 4rem;
    height: 4rem;
    border: 2px solid transparent;
    border-radius: 50%;
    background: rgba(22, 22, 16, 0.75);
    text-indent: -9999px;
    transition: border-color 0.3s ease;
    -webkit-animation: pulse 3s infinite;
    animation: pulse 3s infinite;
}

.hero_content_play:hover {
    border-color: #fff;
    -webkit-animation: none;
    animation: none;
}

.hero_content_play:after {
    content: "";
    display: block;
    position: absolute;
    border-color: transparent transparent transparent #fff;
    border-style: solid;
    border-width: 1rem 0 1rem 1.5rem;
}

@-webkit-keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(205, 170, 147, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(205, 170, 147, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(205, 170, 147, 0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(205, 170, 147, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(205, 170, 147, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(205, 170, 147, 0);
    }
}
