.bit-vgf {
    --bit-vgf-bg: #eef8fd;
    --bit-vgf-blue: #006a9d;
    --bit-vgf-text: #0f172a;
    --bit-vgf-muted: rgba(15, 23, 42, .70);
    --bit-vgf-gap: 20px;
    --bit-vgf-columns: 3;
    --bit-vgf-tablet-columns: 2;
    --bit-vgf-radius: 2px;
    --bit-vgf-section-pt: 34px;
    --bit-vgf-section-pb: 42px;
    --bit-vgf-section-mt: 0px;
    --bit-vgf-section-mb: 0px;
    --bit-vgf-max-width: 1700px;
    --bit-vgf-heading-color: var(--bit-vgf-blue);
    --bit-vgf-shadow: 0 18px 50px rgba(15, 47, 67, .16);
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: var(--bit-vgf-section-pt) 0 var(--bit-vgf-section-pb);
    margin-top: var(--bit-vgf-section-mt);
    margin-bottom: var(--bit-vgf-section-mb);
    background: var(--bit-vgf-bg);
    color: var(--bit-vgf-text);
    isolation: isolate;
}
.bit-vgf *{
	font-family: "Magistral";}

.bit-vgf--transparent {
    --bit-vgf-bg: transparent;
}

.bit-vgf--dark {
    --bit-vgf-bg: #07111c;
    --bit-vgf-blue: #7ab8ff;
    --bit-vgf-text: #f8fafc;
    --bit-vgf-muted: rgba(248,250,252,.72);
    --bit-vgf-shadow: 0 22px 56px rgba(0,0,0,.34);
}

.bit-vgf *,
.bit-vgf *::before,
.bit-vgf *::after {
    box-sizing: border-box;
}

.bit-vgf__inner {
    width: min(var(--bit-vgf-max-width), calc(100% - 48px));
    margin: 0 auto;
}

.bit-vgf__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 18px;
}

.bit-vgf__heading {
    margin: 0;
    font-family: "Magistral";
    font-size: clamp(20px, 1.55vw, 28px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: .01em;
    color: var(--bit-vgf-heading-color);
}

.bit-vgf__heading-spacer {
    min-height: 1px;
}

.bit-vgf__arrows {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 3.2vw, 62px);
    padding: 0;
    margin: 0;
}

.bit-vgf__arrows[hidden],
.bit-vgf__dots[hidden] {
    display: none !important;
}

.bit-vgf__arrow {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(54px, 4.6vw, 82px);
    height: 32px;
    padding: 0 !important;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--bit-vgf-blue);
    font-size: 0;
    line-height: 1;
    cursor: pointer;
    box-shadow: none;
    transition: opacity .24s ease, transform .24s ease, background .24s ease !important;
}

.bit-vgf__arrow span {
    position: relative;
    display: block;
    width: clamp(38px, 3.8vw, 68px);
    height: 14px;
    font-size: 0;
    line-height: 0;
}

.bit-vgf__arrow span::before,
.bit-vgf__arrow span::after {
    content: "";
    position: absolute;
    top: 50%;
    display: block;
    pointer-events: none;
}

.bit-vgf__arrow span::before {
    left: 0;
    right: 0;
    height: 1.5px;
    background: currentColor;
    transform: translateY(-50%);
}

.bit-vgf__arrow span::after {
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
}

.bit-vgf__arrow--prev span::after {
    left: 0;
    transform: translateY(-50%) rotate(-135deg);
}

.bit-vgf__arrow--next span::after {
    right: 0;
    transform: translateY(-50%) rotate(45deg);
}

.bit-vgf__arrow:hover,
.bit-vgf__arrow:focus-visible {
    background: rgba(0, 106, 157, .08);
    transform: translateY(-1px);
    outline: none;
}

.bit-vgf__arrow:disabled {
    opacity: .32;
    cursor: default;
    pointer-events: none;
}

.bit-vgf__viewport {
    overflow: hidden;
}

.bit-vgf__track {
    display: flex;
    gap: var(--bit-vgf-gap);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    transition: transform .88s cubic-bezier(.22, 1, .36, 1) !important;
}


.bit-vgf--is-moving .bit-vgf__track {
    transition-duration: .92s !important;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1) !important;
}

.bit-vgf__slide {
    flex: 0 0 calc((100% - (var(--bit-vgf-gap) * (var(--bit-vgf-columns) - 1))) / var(--bit-vgf-columns));
    min-width: 0;
}

.bit-vgf__card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-radius: var(--bit-vgf-radius);
    background: #0b1220;
    box-shadow: var(--bit-vgf-shadow);
    transform: translateZ(0);
}

.bit-vgf__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #020617;
}

.bit-vgf__poster {
    appearance: none;
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #020617;
    color: inherit;
    cursor: pointer;
    text-align: left;
    overflow: hidden;
}

.bit-vgf__poster picture,
.bit-vgf__image,
.bit-vgf__player,
.bit-vgf__player iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.bit-vgf__image {
    object-fit: cover;
    transform: scale(1.001);
    transition: transform .55s cubic-bezier(.22, .61, .36, 1), filter .35s ease !important;
}

.bit-vgf__poster:hover .bit-vgf__image,
.bit-vgf__poster:focus-visible .bit-vgf__image {
    transform: scale(1.045);
    filter: saturate(1.06) contrast(1.04);
}

.bit-vgf__shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,.46) 0%, rgba(0,0,0,.08) 42%, rgba(0,0,0,.56) 100%);
}

.bit-vgf__caption {
    position: absolute;
    left: clamp(16px, 2vw, 28px);
    right: clamp(16px, 2vw, 28px);
    top: clamp(12px, 1.4vw, 22px);
    z-index: 2;
    display: grid;
    gap: 4px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,.55);
}

.bit-vgf__caption strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    font-size: clamp(15px, 1.28vw, 26px);
    line-height: 1.08;
    font-weight: 800;
}

.bit-vgf__caption em {
    display: block;
    font-style: normal;
    font-size: 13px;
    line-height: 1.1;
    font-weight: 600;
    opacity: .92;
}

.bit-vgf__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: clamp(58px, 5.5vw, 82px);
    transform: translate(-50%, -50%) scale(1);
    filter: drop-shadow(0 12px 22px rgba(0,0,0,.35));
    transition: transform .24s ease, filter .24s ease !important;
}

.bit-vgf__play svg {
    display: block;
    width: 100%;
    height: auto;
}

.bit-vgf__play path:first-child {
    fill: #ff0000;
}

.bit-vgf__play-triangle {
    fill: #fff;
}

.bit-vgf__poster:hover .bit-vgf__play,
.bit-vgf__poster:focus-visible .bit-vgf__play {
    transform: translate(-50%, -50%) scale(1.08);
    filter: drop-shadow(0 16px 26px rgba(0,0,0,.42));
}

.bit-vgf__poster:focus-visible {
    outline: 3px solid rgba(0, 106, 157, .55);
    outline-offset: -3px;
}

.bit-vgf__player {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    background: #000;
}

.bit-vgf__player iframe {
    border: 0;
    background: #000;
}

.bit-vgf__media.is-playing .bit-vgf__poster {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.bit-vgf__media.is-playing .bit-vgf__player {
    opacity: 1;
    pointer-events: auto;
}

.bit-vgf__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    min-height: 30px;
    margin-top: 18px;
}

.bit-vgf__dots--desktop {
    min-height: 0;
    margin-top: 0;
    padding: 0 2px;
}

.bit-vgf__dots--mobile {
    display: none;
}

.bit-vgf__dot {
    appearance: none;
    display: block;
    width: 7px;
    height: 7px;
    padding: 0 !important;
    border: 1px solid var(--bit-vgf-blue);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, opacity .2s ease !important;
}

.bit-vgf__dot.is-active {
    background: var(--bit-vgf-blue);
    transform: scale(1.12);
}

.bit-vgf__dot:hover,
.bit-vgf__dot:focus-visible {
    opacity: .75;
    outline: none;
}

.bit-vgf__modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.bit-vgf__modal.is-open {
    display: flex;
}

.bit-vgf__modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, .72);
    backdrop-filter: blur(10px);
}

.bit-vgf__modal-dialog {
    position: relative;
    z-index: 2;
    width: min(1100px, 96vw);
    border-radius: 18px;
    background: #020617;
    box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.bit-vgf__modal-frame {
    aspect-ratio: 16 / 9;
}

.bit-vgf__modal-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 18px;
}

.bit-vgf__modal-close {
    position: absolute;
    right: -12px;
    top: -12px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #0f172a;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.bit-vgf-modal-open {
    overflow: hidden !important;
}

.bit-vgf-admin-empty {
    padding: 14px;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    color: #64748b;
}

@media (max-width: 1024px) {
    
.bit-vgf--is-moving .bit-vgf__track {
    transition-duration: .92s !important;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1) !important;
}

.bit-vgf__slide {
        flex-basis: calc((100% - (var(--bit-vgf-gap) * (var(--bit-vgf-tablet-columns) - 1))) / var(--bit-vgf-tablet-columns));
    }
}

@media (max-width: 767px) {
    .bit-vgf {
        padding-top: var(--bit-vgf-section-pt);
        padding-bottom: var(--bit-vgf-section-pb);
    }

    .bit-vgf__inner {
        width: calc(100% - 30px);
    }

    .bit-vgf__top {
        display: block;
        margin-bottom: 10px;
    }

    .bit-vgf__heading {
        margin-left: -15px;
        font-size: 18px;
    }

    .bit-vgf__arrows {
        display: none !important;
    }

    .bit-vgf__dots--mobile {
        display: flex;
    }

    .bit-vgf__track {
        gap: 14px;
    }

    
.bit-vgf--is-moving .bit-vgf__track {
    transition-duration: .92s !important;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1) !important;
}

.bit-vgf__slide {
        flex-basis: 100%;
    }

    .bit-vgf__caption {
        left: 16px;
        right: 16px;
        top: 12px;
    }

    .bit-vgf__caption strong {
        font-size: 17px;
    }

    .bit-vgf__play {
        width: 66px;
    }

    .bit-vgf__dots {
        margin-top: 14px;
        gap: 10px;
    }

    .bit-vgf__dot {
        width: 6px;
        height: 6px;
    }
}


/* Animation hardening for Elementor/themes that override transitions.
   Do not make .bit-vgf__track transform important: JS updates it inline. */
.bit-vgf .bit-vgf__track {
    transition-property: transform !important;
    transition-duration: .88s !important;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1) !important;
    will-change: transform !important;
}

.bit-vgf.bit-vgf--is-moving .bit-vgf__track {
    transition-duration: .92s !important;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1) !important;
}

.bit-vgf .bit-vgf__image {
    transition-property: transform, filter !important;
    transition-duration: .55s, .35s !important;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1), ease !important;
}

.bit-vgf .bit-vgf__poster:hover .bit-vgf__image,
.bit-vgf .bit-vgf__poster:focus-visible .bit-vgf__image {
    transform: scale(1.045) !important;
    filter: saturate(1.06) contrast(1.04) !important;
}

.bit-vgf .bit-vgf__play {
    transition-property: transform, filter !important;
    transition-duration: .24s, .24s !important;
    transition-timing-function: ease, ease !important;
}

.bit-vgf .bit-vgf__poster:hover .bit-vgf__play,
.bit-vgf .bit-vgf__poster:focus-visible .bit-vgf__play {
    transform: translate(-50%, -50%) scale(1.08) !important;
    filter: drop-shadow(0 16px 26px rgba(0,0,0,.42)) !important;
}

.bit-vgf .bit-vgf__arrow {
    transition-property: opacity, transform, background !important;
    transition-duration: .24s, .24s, .24s !important;
    transition-timing-function: ease, ease, ease !important;
}

.bit-vgf .bit-vgf__arrow:hover,
.bit-vgf .bit-vgf__arrow:focus-visible {
    transform: translateY(-1px) !important;
}

.bit-vgf .bit-vgf__dot {
    transition-property: transform, background, opacity !important;
    transition-duration: .2s, .2s, .2s !important;
    transition-timing-function: ease, ease, ease !important;
}

.bit-vgf .bit-vgf__dot.is-active {
    transform: scale(1.12) !important;
}

@media (prefers-reduced-motion: reduce) {
    .bit-vgf__track,
    .bit-vgf__image,
    .bit-vgf__play,
    .bit-vgf__arrow,
    .bit-vgf__dot {
        transition: none !important;
    }
}

/* Button state hard reset for themes/Elementor global button rules. */
.bit-vgf button[type="button"],
.bit-vgf [type="button"].bit-vgf__arrow,
.bit-vgf [type="button"].bit-vgf__dot,
.bit-vgf [type="button"].bit-vgf__poster,
.bit-vgf [type="button"].bit-vgf__modal-close {
    -webkit-appearance: none !important;
    appearance: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.bit-vgf button[type="button"]:hover,
.bit-vgf button[type="button"]:focus,
.bit-vgf button[type="button"]:focus-visible,
.bit-vgf button[type="button"]:active {
    text-decoration: none !important;
    box-shadow: none !important;
}

.bit-vgf button[type="button"].bit-vgf__arrow,
.bit-vgf button[type="button"].bit-vgf__arrow:hover,
.bit-vgf button[type="button"].bit-vgf__arrow:focus,
.bit-vgf button[type="button"].bit-vgf__arrow:focus-visible,
.bit-vgf button[type="button"].bit-vgf__arrow:active {
    width: 46px !important;
    height: 34px !important;
    min-width: 46px !important;
    min-height: 34px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: var(--bit-vgf-blue) !important;
    outline: 0 !important;
    outline-color: transparent !important;
    line-height: 1 !important;
}

.bit-vgf button[type="button"].bit-vgf__arrow:hover,
.bit-vgf button[type="button"].bit-vgf__arrow:focus-visible {
    transform: translateY(-1px) !important;
    opacity: .82 !important;
}

.bit-vgf button[type="button"].bit-vgf__arrow:focus:not(:focus-visible) {
    outline: 0 !important;
}

.bit-vgf button[type="button"].bit-vgf__arrow:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--bit-vgf-blue) 45%, transparent) !important;
    outline-offset: 3px !important;
}

.bit-vgf button[type="button"].bit-vgf__dot,
.bit-vgf button[type="button"].bit-vgf__dot:hover,
.bit-vgf button[type="button"].bit-vgf__dot:focus,
.bit-vgf button[type="button"].bit-vgf__dot:focus-visible,
.bit-vgf button[type="button"].bit-vgf__dot:active {
    width: 7px !important;
    height: 7px !important;
    min-width: 7px !important;
    min-height: 7px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid var(--bit-vgf-blue) !important;
    border-radius: 999px !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: transparent !important;
    outline: 0 !important;
    outline-color: transparent !important;
    line-height: 0 !important;
}

.bit-vgf button[type="button"].bit-vgf__dot.is-active,
.bit-vgf button[type="button"].bit-vgf__dot[aria-current="true"],
.bit-vgf button[type="button"].bit-vgf__dot:hover,
.bit-vgf button[type="button"].bit-vgf__dot:focus-visible {
    background: var(--bit-vgf-blue) !important;
    background-color: var(--bit-vgf-blue) !important;
    border-color: var(--bit-vgf-blue) !important;
    opacity: 1 !important;
}

.bit-vgf button[type="button"].bit-vgf__dot:focus:not(:focus-visible) {
    outline: 0 !important;
}

.bit-vgf button[type="button"].bit-vgf__dot:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--bit-vgf-blue) 45%, transparent) !important;
    outline-offset: 4px !important;
}

.bit-vgf button[type="button"].bit-vgf__poster,
.bit-vgf button[type="button"].bit-vgf__poster:hover,
.bit-vgf button[type="button"].bit-vgf__poster:focus,
.bit-vgf button[type="button"].bit-vgf__poster:focus-visible,
.bit-vgf button[type="button"].bit-vgf__poster:active {
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #020617 !important;
    background-color: #020617 !important;
    background-image: none !important;
    color: inherit !important;
    box-shadow: none !important;
    text-align: left !important;
}

.bit-vgf button[type="button"].bit-vgf__poster:focus:not(:focus-visible) {
    outline: 0 !important;
}

.bit-vgf button[type="button"].bit-vgf__poster:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--bit-vgf-blue) 55%, transparent) !important;
    outline-offset: -3px !important;
}

.bit-vgf button[type="button"].bit-vgf__modal-close,
.bit-vgf button[type="button"].bit-vgf__modal-close:hover,
.bit-vgf button[type="button"].bit-vgf__modal-close:focus,
.bit-vgf button[type="button"].bit-vgf__modal-close:focus-visible,
.bit-vgf button[type="button"].bit-vgf__modal-close:active {
    background: rgba(255,255,255,.12) !important;
    background-color: rgba(255,255,255,.12) !important;
    background-image: none !important;
    color: #fff !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.bit-vgf button[type="button"].bit-vgf__modal-close:hover,
.bit-vgf button[type="button"].bit-vgf__modal-close:focus-visible {
    background: rgba(255,255,255,.2) !important;
    background-color: rgba(255,255,255,.2) !important;
}
