.acu-hero-video {
    height: 100%;
    width: 100%;
}

.video-section {
    aspect-ratio: 16/9;
    height: 100%;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#video-toggle {
    align-items: center;
    background: #000;
    border: none;
    border-radius: 5rem;
    color: white;
    cursor: pointer;
    display: flex;
    height: 1.25rem;
    justify-content: center;
    line-height: 1;
    opacity: 0.3;
    padding: 3px;
    position: absolute;
    right: 2rem;
    top: 2rem;
    width: 1.25rem;
    z-index: 1;

    svg {
        width: 100%;
        height: 100%;

        path {
            fill: white;
        }
    }
}

#video-toggle:hover,
#video-toggle:focus {
    opacity: 0.8;
}