﻿
/* Video container */
#video-container {
    position: relative;
    background: #fff; /* Fallback background */
    overflow: hidden;
}
/* Text overlay with animation */
#video-text {
    position: absolute;
    top: 50%;
    left: 100%; /* Start off-screen */
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    white-space: nowrap;
}

/* Right-to-left animation */
@keyframes slideIn {
    from {
        left: 100%; /* Start from the right */
    }

    to {
        left: 50%; /* Move to center */
        transform: translateX(-50%);
    }
}

@keyframes slideOut {
    from {
        left: 50%;
        transform: translateX(-50%);
    }

    to {
        left: -100%; /* Move out to the left */
    }
}


/* Default styling for video */
#background-video {
    width: 100%;
    height: 889px;
    object-fit: fill;
}

.lblvid {
    margin-top: 5%;
}

/* Extra Small Devices (phones, 320px - 480px) */
@media (max-width: 480px) {
    #background-video {
        width: 100%;
        margin-top: 5%;
    }
}

/* Small Devices (landscape phones, 481px - 767px) */
@media (max-width: 767px) {
    #background-video {
        width: 100%;
        margin-top: 6%;
    }
}

/* Medium Devices (tablets, 768px - 1024px) */
@media (max-width: 1024px) {
    #background-video {
        width: 100%;
        margin-top: 6%;
    }
}

/* Large Devices (desktops, 1025px - 1366px) */
@media (max-width: 1366px) {
    #background-video {
        width: 100%;
        margin-top: 20%;
    }
}

/* Extra Large Devices (large desktops, 1367px and above) */
@media (min-width: 1367px) {
    #background-video {
        width: 100%;
        margin-top: 6%;
    }
}

.customers__marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.customers__flex {
    display: flex;
    gap: 20px; /* Adjust spacing between images */
    animation: marquee 20s linear infinite;
}

    .customers__flex img {
        max-height: 80px; /* Adjust size as needed */
        display: inline-block;
    }

@keyframes marquee {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}


.infscroll_1 {
    animation: scroll1 20s linear infinite;
}

.inf_scroll {
    animation: scroll 25s linear infinite
}

@keyframes scroll {
    to {
        transform: translate(calc(-100% - 15% * 8))
    }
}

@keyframes scroll1 {
    to {
        transform: translate(calc(-100% - 80px))
    }
}

.infscroll_2 {
    animation: scroll2 15s linear infinite
}

@keyframes scroll2 {
    to {
        transform: translate(calc(-100%))
    }
}

.infscroll_3 {
    animation: scroll3 15s linear infinite
}

@keyframes scroll3 {
    to {
        transform: translate(calc(-80%))
    }
}

.\*\:flex-shrink-0 > *, .\*\:shrink-0 > * {
    flex-shrink: 0;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pt-14 {
    padding-top: 3.5rem;
}

.flex {
    display: flex;
}

.space-x-20 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(5rem* var(--tw-space-x-reverse));
    margin-left: calc(5rem* calc(1 - var(--tw-space-x-reverse)));
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.w-screen {
    width: 100vw;
}

.h-8 {
    height: 3rem;
}
