﻿/*=========================================================
VIDEO
=========================================================*/

.video-section {
    padding: 140px 0;
    background: #fff;
}

.video-header {
    text-align: center;
    max-width: 760px;
    margin: auto auto 70px;
}

    .video-header h2 {
        font-size: 56px;
        font-weight: 800;
        color: #131A36;
        margin: 20px 0;
    }

    .video-header p {
        font-size: 22px;
        color: #667085;
        line-height: 1.7;
    }

.video-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 70px;
    align-items: center;
}

.video-player {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

    .video-player img {
        width: 100%;
        display: block;
    }

.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #6C2BD9;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 44px;
    box-shadow: 0 15px 40px rgba(108,43,217,.35);
    transition: .3s;
}

.video-player:hover .play-button {
    transform: translate(-50%,-50%) scale(1.08);
}

.video-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-step {
    display: flex;
    gap: 20px;
    padding: 22px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .3s;
}

    .video-step:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(108,43,217,.12);
    }

    .video-step.active {
        border: 2px solid #6C2BD9;
    }

    .video-step span {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
        border-radius: 50%;
        background: #6C2BD9;
        color: #fff;
        font-weight: 700;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .video-step h4 {
        margin-bottom: 8px;
        font-size: 22px;
        color: #131A36;
    }

    .video-step p {
        color: #667085;
        line-height: 1.6;
    }

@media(max-width:1000px) {

    .video-wrapper {
        grid-template-columns: 1fr;
    }

    .video-header h2 {
        font-size: 42px;
    }
}
