/** Content **/
.bg-content {
    padding-block: clamp(24px, 4vw, 48px);
    padding-inline: clamp(12px, 3vw, 24px);
    background: var(--color1);
    border-radius: clamp(12px, 3vw, 32px);
    color: white;
}
.video-wrapper {
    display: flex;
    position: relative;
}
.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: var(--color1);
    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;
    }
}