/** Content **/
.bg-content {
    background: var(--back);
}
.video-wrapper {
    display: flex;
    position: relative;
    & video,
    & img {
        border-radius: 20px;
    }
}
.play-btn {
    width: clamp(80px, 10vw, 120px);
    height: clamp(80px, 10vw, 120px);
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(40px, 5vw, 64px);
    color: white;
    cursor: pointer;
}
.play-btn::after,
.play-btn::before {
    content: '';
    box-sizing: border-box;
    width: clamp(80px, 10vw, 120px);
    height: clamp(80px, 10vw, 120px);
    border-radius: 50%;
    background: var(--color2);
    position: absolute;
    left: 0;
    top: 0;
    animation: animloader 2s linear infinite;
    z-index: -1;
}
.play-btn::after {
    animation-delay: 1s;
}
@keyframes animloader {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
@media only screen and (max-width: 768px) {
    .section-content .s-title,
    .section-content .subtitle {
        text-align: center;
    }
    .section-content .c-btn {
        justify-content: center;
    }
}
.section-content .s-title {
    font-family: var(--Medium);
}