.home .section-video svg {
    display: none;
}

.section-video {
    position: relative;
    overflow: hidden;
    padding: 0;
}

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

.section-video svg path,
.section-video svg circle {
    stroke: var(--accent, var(--green));
}

.video-wrapper {
    position: relative;
    z-index: 1;
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    aspect-ratio: 1;
    padding: var(--spacer);
    border: none;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    text-align: center;
    cursor: pointer;
}

.video-controls .fa-play {
    position: relative;
    left: 5%;
}