/* Start custom CSS for html, class: .elementor-element-a28bf61 *//* =====================================================
   VMR VIDEO SECTION
   Header & Footer are NOT affected
   ===================================================== */

.vmr-video-section {
    width: 100%;
    padding: 80px 20px;
    background: #f7f9fc;
    box-sizing: border-box;
}

.vmr-video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* ---------- HEADING ---------- */

.vmr-video-heading {
    text-align: center;
    margin-bottom: 45px;
}

.vmr-video-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 16px;
    border-radius: 30px;
    background: #eaf1ff;
    color: #155eef;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.vmr-video-heading h2 {
    margin: 0 0 12px;
    color: #101828;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.vmr-video-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #667085;
    font-size: 16px;
    line-height: 1.7;
}


/* ---------- VIDEO GRID ---------- */

.vmr-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}


/* ---------- VIDEO CARD ---------- */

.vmr-video-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(16, 24, 40, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.vmr-video-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.13);
}


/* ---------- YOUTUBE ---------- */

.vmr-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000000;
}

.vmr-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* ---------- CONTENT ---------- */

.vmr-video-content {
    padding: 25px 27px 28px;
}

.vmr-video-number {
    display: inline-block;
    margin-bottom: 10px;
    color: #155eef;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.vmr-video-content h3 {
    margin: 0 0 10px;
    color: #101828;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 750;
}

.vmr-video-content p {
    margin: 0 0 22px;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}


/* ---------- BUTTON ---------- */

.vmr-watch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 12px 19px;

    border-radius: 9px;
    background: #155eef;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.vmr-watch-btn:hover {
    background: #0040c1;
    color: #ffffff;
    transform: translateY(-2px);
}

.vmr-watch-btn span {
    font-size: 17px;
    line-height: 1;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 900px) {

    .vmr-video-section {
        padding: 65px 18px;
    }

    .vmr-video-heading h2 {
        font-size: 32px;
    }

    .vmr-video-grid {
        gap: 22px;
    }

    .vmr-video-content {
        padding: 22px;
    }
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 650px) {

    .vmr-video-section {
        padding: 50px 15px;
    }

    .vmr-video-heading {
        margin-bottom: 30px;
    }

    .vmr-video-heading h2 {
        font-size: 28px;
    }

    .vmr-video-heading p {
        font-size: 14px;
    }

    .vmr-video-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .vmr-video-content h3 {
        font-size: 21px;
    }
}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 400px) {

    .vmr-video-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .vmr-video-content {
        padding: 20px;
    }

    .vmr-video-heading h2 {
        font-size: 25px;
    }
}/* End custom CSS */