/* Reset */
body {
    margin: 0;
    padding: 0;
}
*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.video-container {
    position: relative;
    background: #2a2e31;
    padding: 15px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-play {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    background: #2a2e31e8;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;

    &:hover ~ .video-button-mask {
        color: #5bb7fd;
    }

    &:hover .icon:before {
        border-left: 22px solid #e55005;
    }
}

.icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 1;
    margin-left: 2px;
    z-index: 2;
}

.icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid #08ba35af;
}

.video-button-mask {
    position: absolute;
    width: 200px;
    height: 200px;
    color: #4df477af;

    &:hover {
        color: #5bb7fd;
    }
}

.video-button-mask::before,
.video-button-mask::after {
    opacity: 0;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    border-style: solid;
    border-width: 3px;
    border-color: currentColor;
    width: 100%;
    height: 100%;
    -webkit-animation: zoomBig 1.5s linear infinite;
    animation: zoomBig 1.5s linear infinite;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.video-button-mask::after {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}

@keyframes zoomBig {
    0% {
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
        opacity: 0.8;
        border-width: 4px;
    }
    25% {
        border-width: 3px;
    }
    50% {
        border-width: 2px;
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
        border-width: 1px;
    }
}
.fullscreen-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 9999;
}
