.parallax--video {
    height: 350px;
    background-image: url(../images/parallax-video.webp);
    background-position: bottom;
}

.video-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: var(--white);
    background: var(--header);
    z-index: 1;
    cursor: pointer;
}

.video-loader {
    position: absolute;
    left: -39%;
    top: -39%;
    transform: translate(-50%,-50%);
    z-index: -5;
}

.video-loader>div {
    border-radius: 50%;
    position: absolute;
    width: 140px;
    height: 140px;
    opacity: 0;
    background: var(--header);
    animation: ball-scale-multiple 3s 0s linear infinite;
}

.video-loader>div:nth-child(2) {
    animation-delay: -0.4s;
}

@keyframes ball-scale-multiple {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.parallax-title {
    font-size: 36px;
    font-weight: 500;
}