.background-video {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

.background-video > * {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.background-video > .overlay {
    z-index: 1;
}

.background-video > video {
    z-index: 0;
}

.bg-image {
    position: fixed;
    z-index: -1;
    height: 100vh;
    width: 100vh;
}

.bg-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
}

.title {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 25px;
    text-align: center;
    margin-top: 24px;
}


.partners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin: 32px 16px 64px;
}

.partner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner img {
    max-height: 140px;
    max-width: 140px;
}

@media (min-width: 768px) {
    .partners {
        grid-template-columns: repeat(4,1fr);
        grid-row-gap: 32px;
    }
}