/* =========================
   RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Cambria, sans-serif;
}

html,body{
    overflow-x:hidden;
}

body{
    background:#f4f4f4;
    color:#333;
}

/* TOP BAR */
.top-bar{
    width:100%;
    height:40px;
    background:#002b36;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    position:relative;
}

.contact-slider{
    width:100%;
    height:100%;
    position:relative;
}

.slide-text{
    position:absolute;
    width:100%;
    text-align:center;
    color:#fff;
    line-height:40px;
    font-weight:bold;
    opacity:0;
    animation:slideText 10s infinite;
}

.slide-text:nth-child(2){
    animation-delay:5s;
}

@keyframes slideText{
    0%{opacity:0;transform:translateY(100%);}
    10%{opacity:1;transform:translateY(0);}
    40%{opacity:1;}
    50%{opacity:0;transform:translateY(-100%);}
    100%{opacity:0;}
}

/* HEADER */
header{
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:5px 25px;
    position:relative;
}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:inherit;
}

.logo img{
    height:80px;
    width:auto;
}

.logo-text h1{
    color:#0A2A5E;
    font-size:26px;
}

.logo-text p{
    color:#0A2A5E;
    font-size:16px;
    text-align:center;
}

/* DESKTOP MENU */

.desktop-menu{
    display:flex;
    align-items:center;
    gap:25px;
}

.desktop-menu a{
    color:#0A2A5E;
    text-decoration:none;
    font-size:16px;
    font-weight:bold;
    transition:.3s;
}

.desktop-menu a:hover{
    color:#00bfff;
}

/* HIDE MOBILE THINGS ON DESKTOP */

.menu-toggle,
.mobile-menu,
.menu-overlay{
    display:none;
}

/* MOBILE */

@media(max-width:991px){

    .desktop-menu{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .mobile-menu{
        display:block;
    }

    .menu-overlay{
        display:block;
    }
}

/* ==========================
   MOBILE MENU TOGGLE
========================== */

.menu-toggle{
    display:none;
    width:30px;
    height:24px;
    position:relative;
    cursor:pointer;
    z-index:1001;
}

.menu-toggle span{
    position:absolute;
    width:100%;
    height:3px;
    background:#0A2A5E;
    border-radius:3px;
    transition:.35s;
}

.menu-toggle span:nth-child(1){
    top:0;
}

.menu-toggle span:nth-child(2){
    top:10px;
}

.menu-toggle span:nth-child(3){
    top:20px;
}

/* X Animation */

.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg);
    top:10px;
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg);
    top:10px;
}


/* ==========================
   MOBILE MENU
========================== */

.mobile-menu{
    position:fixed;
    top:0;
    right:-320px;
    width:300px;
    height:100vh;
    background:#ffffff;
    padding:90px 25px;
    box-shadow:-5px 0 20px rgba(0,0,0,.15);
    transition:.4s ease;
    z-index:1000;
    overflow-y:auto;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu a,
.dropdown-btn{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:500;
    border-bottom:1px solid #eee;
    cursor:pointer;
}


/* ==========================
   SUBMENU
========================== */

.submenu{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.submenu.active{
    max-height:400px;
}

.submenu a{
    padding:12px 0 12px 20px;
    font-size:15px;
    color:#555;
    border-bottom:none;
}

#arrow{
    transition:.3s;
}

#arrow.rotate{
    transform:rotate(180deg);
}


/* ==========================
   OVERLAY
========================== */

.menu-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}


/* ==========================
   MOBILE ONLY
========================== */

@media(max-width:991px){

    .menu-toggle{
        display:block;
    }

    .desktop-menu{
        display:none;
    }
}

/* HERO */
.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    color:#fff;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    animation:fadeSlider 16s infinite;
}

.slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.6);
}

.slide1{background-image:url("images/DP-4.PNG");animation-delay:0s;}
.slide2{background-image:url("images/DP-3.PNG");animation-delay:4s;}
.slide3{background-image:url("images/dp-2.JPG");animation-delay:8s;}
.slide4{background-image:url("images/DP.PNG");animation-delay:12s;}

.hero-content{
    position:relative;
    z-index:2;
    top:50%;
    transform:translateY(-50%);
    text-align:center;
    padding:20px;
    text-shadow:0 2px 8px rgba(0,0,0,.8);
}

.hero-content h2{
    font-size:48px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    margin-bottom:30px;
}

@keyframes fadeSlider{
    0%{opacity:0;}
    10%{opacity:1;}
    25%{opacity:1;}
    35%{opacity:0;}
    100%{opacity:0;}
}

.btn{
    background:#00bfff;
    color:#fff;
    padding:12px 25px;
    border-radius:5px;
    text-decoration:none;
    display:inline-block;
    font-size:16px;
}

/* SERVICES */
.services{
    padding:60px 40px 20px;
    background:#f7f9fc;

}

.section-title{
    text-align:center;
    margin-bottom:35px;
margin-top: -20px;
}

.section-title h2{
    color:#0A2A5E;
    font-size:34px;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.service-content{
    padding:25px;
    flex:1;
}

.service-content h3{
    color:#0A2A5E;
    margin-bottom:15px;
}



/* INDUSTRIES */
.industries{
    padding:20px 20px 30px;
    background:#f8f9fb;
    text-align:center;
}

.industries h2{
    color:#0A2A5E;
    font-size:32px;
    margin-bottom:30px;
}

.industry-slider{
    overflow:hidden;
}

.industry-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:industryScroll 30s linear infinite;
}

.industry-card{
    width:380px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.industry-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.industry-content{
    padding:25px;
}

@keyframes industryScroll{
    from{transform:translateX(0);}
    to{transform:translateX(-30%);}
}

/* =========================
   BRAND SLIDER
========================= */

.brand-slider{
    background:white;
    padding:20px 20px;
    text-align:center;
    overflow:hidden;
}

.brand-slider h2{
    font-size:20px;
    color:#0A2A5E;
    position:relative;
    display:inline-block;
    padding-bottom:12px;
    margin:0 auto 10px;
}

.brand-slider h2::after{
    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:180px;
    height:2px;
    background:#0A2A5E;
}

.slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.slide-track{
    display:flex;
    width:calc(250px * 16);
    animation:scroll 25s linear infinite;
}

.brand-slide{
    width:250px;
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.brand-slide img{
    width:140px;
    height:70px;
    object-fit:contain;
    transition:0.3s;
    background:white;
    border:2px solid #dcdcdc;
    border-radius:10px;
    padding:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.brand-slide img:hover{
    transform:scale(1.08);
    border-color:#0A2A5E;
}

@keyframes scroll{
    from{transform:translateX(0);}
    to{transform:translateX(-20%);}
}

.....................
/* FOOTER */
.....................

.footer-box:first-child{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.footer-logo{
    width:120px;
    display:block;
    margin:0 auto 10px auto;
}

.footer-box:first-child h2{
    color:#fff;
    font-size:1.1rem;
    font-weight:700;
    margin:0 0 8px 0;
    line-height:1.2;
    text-align:center;
}

.footer-box:first-child p{
    font-size:0.9rem;
    color:#fff;
    margin:0 0 20px 0;
    text-align:center;
}

.social-icons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
}

.social-icons a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#0A5CFF;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:20px;
}

.footer{
    background:#002b36;
    padding:60px 8%;
    border-top:1px solid #ddd;
}

.footer-container{
    display:grid;
    grid-template-columns:1.2fr 1fr 1.2fr;
    gap:50px;
}

.footer-container .footer-box:nth-child(2),
.footer-container .footer-box:nth-child(3){
    margin-top:25px;
}

.footer-box h2{
    font-size:1.4rem;
    color:#fff;
    margin-bottom:10px;

}

.footer-box h3{
    font-size:1.6rem;
    color:#fff;
    margin-bottom:5px;
text-align:center;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    text-decoration:none;
    color:#fff;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:-18px;
}

.contact-item i{
    color:#fff;
    margin-top:3px;
    min-width:18px;
}

.contact-item a,
.contact-item p,
.contact-item span{
    color:#fff;
    text-decoration:none;
    line-height:1.5;
    margin:0;
}

.bottom-footer{
    background:#002b36;
    color:#fff;
    text-align:center;
    padding:12px;
}

.contact-item,
.contact-item *,
.footer-box *,
.footer-box ul li,
.footer-box ul li a{
    border:none !important;
    outline:none !important;
    box-shadow:none !important;
}

hr{
    display:none;
}

/* MOBILE */
@media(max-width:768px){

    .logo img{
        height:60px;
    }

    .logo-text{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        display:none;
        position:absolute;
        top:100%;
        right:10px;
        width:220px;
        background:#fff;
        flex-direction:column;
        box-shadow:0 10px 25px rgba(0,0,0,.15);
        z-index:999;
    }

    nav.active{
        display:flex;
    }

    nav a{
        padding:12px 15px;
    }

    .hero{
        height:70vh;
    }

    .hero-content h2{
        font-size:28px;
    }

    .hero-content p{
        font-size:15px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .industry-card{
        width:320px;
    }

    .industry-card img{
        height:200px;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:left;
    }

    .contact-item{
        justify-content:left;
    }

    .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   PRODUCTS SECTION
========================= */
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 1rem 0;
}

.product-card {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: #808080;
    border: 0.5px solid #6D28D9;
    cursor: pointer;
    transition: opacity 0.35s ease, transform 0.15s ease;
    user-select: none;
}

.product-card:hover  { transform: translateY(-3px); }
.product-card:active { opacity: 0.28; transform: scale(0.97); }
.product-card.faded  { opacity: 0.28; transform: scale(0.97); }

.product-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    line-height: 1.4;
}


/* Product Cards */
.products{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
padding:20px 0;
}
.product-card{
text-decoration:none;
background:#fff;
border-radius:15px;
padding:25px;
text-align:center;
min-height:220px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.35s;
}
.product-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,.15);
}
.card-icon{
width:70px;height:70px;border-radius:50%;
background:#002b36;color:#fff;
display:flex;align-items:center;justify-content:center;
font-size:28px;margin-bottom:20px;
}
.product-card h3{color:#002b36;}
.product-card span{color:#00AEEF;font-weight:600;}
.brand-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
padding:40px;
}



.brand-box img{
    max-width:55%;
    max-height:40px;
    object-fit:contain;
    transform: translateY(5px);
}

.brand-box{
background:#fff;
padding:20px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}
.category-hero{
background:#002b36;
color:#fff;
padding:60px 20px;
text-align:center;
}
@media(max-width:768px){
.products,.brand-grid{grid-template-columns:repeat(2,1fr);}
}


/* =========================
   PRODUCT SLIDER
========================= */

.product-slider{
    background:#f8f9fb;
    padding:50px 0;
    text-align:center;
    overflow:hidden;
}

/* Slider Wrapper */

.product-slider-wrapper{
    width:100%;
    overflow:hidden;
}

/* Moving Track */

.product-track{
    display:flex;
    width:max-content;
    animation:productScroll 130s linear infinite;
}

.product-track:hover{
    animation-play-state:paused;
}

/* Product Card */

.product-slide{
    width:300px;
    margin:0 15px;
    background:#fff;
    border-radius:15px;
    padding:20px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    flex-shrink:0;
    transition:0.3s;
}

.product-slide:hover{
    transform:translateY(-8px);
}

/* Product Image */

.product-slide img{
    width:100%;
    height:150px;
    object-fit:contain;
}

/* Product Title */

.product-slide h3{
    margin-top:15px;
    font-size:18px;
    color:#0A2A5E;
}

/* Animation */

@keyframes productScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}


/* ==========================
   CONTACT HERO
========================== */

.contact-hero{
    height:320px;
    background:url('images/contact-cover.jpg') center center/cover no-repeat;
    position:relative;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(10,42,94,0.65);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.hero-overlay h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
    letter-spacing:1px;
}

.hero-overlay p{
    font-size:18px;
    max-width:700px;
}


/* ==========================
   CONTACT DETAILS
========================== */

.contact-section{
    background:#f4f4f4;
    padding:20px 20px 80px;
}

.contact-card{
    max-width:850px;
    margin:auto;
    background:#fff;
    padding:45px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.contact-card h3{
    text-align:center;
    color:#0A2A5E;
    margin-bottom:35px;
    font-size:28px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:18px 0;
    border-bottom:1px solid #eee;
}

.contact-item:last-child{
    border-bottom:none;
}

.icon{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:50%;
    background:#0A5CFF;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.contact-item strong{
    display:block;
    color:#0A2A5E;
    margin-bottom:6px;
    font-size:18px;
}

.contact-item p{
    margin:0;
    color:#555;
    line-height:1.7;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .contact-hero{
        height:250px;
    }

    .hero-overlay h1{
        font-size:36px;
    }

    .contact-card{
        padding:30px 25px;
    }

    .contact-item{
        gap:15px;
    }
}


/* =========================
   PRODUCT CTA
========================= */

.product-cta{
    text-align:center;
    margin-bottom:35px;
}

.product-cta h2{
    font-size:28px;
    font-weight:700;
    color:#0A2A5E;
    margin-bottom:12px;

}

.product-cta-btn{
    display:inline-block;
    padding:10px 30px;
    background:#0A2A5E;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:all .3s ease;
    box-shadow:0 5px 15px rgba(10,92,255,.25);
}

.product-cta-btn:hover{
    background:#0848c7;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(10,92,255,.35);
}

/* Mobile */

@media(max-width:768px){

    .product-cta h2{
        font-size:26px;
        line-height:1.4;
        padding:0 15px;
    }

    .product-cta-btn{
        padding:12px 28px;
        font-size:15px;
    }

}

/* ==========================
   ABOUT HERO
========================== */

.about-hero{
    height:320px;
    background:url("images/DP-4.png") center center/cover no-repeat;
    position:relative;
}

.about-hero .hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(10,42,94,0.70);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.about-hero h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.about-hero p{
    font-size:18px;
    max-width:700px;
}

/* ==========================
   COMPANY OVERVIEW
========================== */

.company-overview{
    background:#f4f4f4;
    padding:70px 20px;
}

.overview-container{
    max-width:1100px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    color:#0A2A5E;
    font-size:36px;
}

.title-line{
    width:80px;
    height:4px;
    background:#0A5CFF;
    margin:15px auto 0;
    border-radius:10px;
}

.overview-card{
    background:#fff;
    padding:45px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.overview-card p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

/* ==========================
   WHY CHOOSE US
========================== */

.why-us{
    background:#f4f4f4;
    padding:0 20px 80px;
}

.why-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.why-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card i{
    font-size:42px;
    color:#0A5CFF;
    margin-bottom:20px;
}

.why-card h3{
    color:#0A2A5E;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.7;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .about-hero{
        height:250px;
    }

    .about-hero h1{
        font-size:36px;
    }

    .overview-card{
        padding:30px;
    }

    .section-title h2{
        font-size:30px;
    }
}

/* ==========================
   SHOWCASE SWIPER
========================== */

.showcase-section{
    width:100%;
    padding:0;
    background:#f4f4f4;
}

.showcaseSwiper{
    width:100%;
    height:300px;   /* Desktop */
}

.showcaseSwiper .swiper-slide{
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;

    border-radius:12px;
    overflow:hidden;

    border:1px solid #e5e5e5;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.showcaseSwiper .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover; 
    transition:transform .6s ease;
}

.showcaseSwiper .swiper-slide-active img{
    transform:scale(1.02);
}

.swiper-button-next,
.swiper-button-prev{
    color:#fff;
}

.swiper-pagination-bullet{
    background:#fff;
}

.swiper-pagination-bullet-active{
    background:#0A5CFF;
}

/* Mobile */

@media(max-width:768px){

    .showcaseSwiper{
        height:200px;
    }

    .showcaseSwiper .swiper-slide img{
        object-fit:cover;
    }

}

/* ==========================
   SECTION
========================== */

.partner-showcase{
    width:100%;
    padding:30px 0;
   background:#f8f9fb;
   
    
    overflow:hidden;
}

/* ==========================
   HEADING ANIMATION
========================== */

.title-box{
    position:relative;
    height:30px;
    margin-bottom:35px;
}

.title{
    position:absolute;
    width:100%;
    text-align:center;
    color:#0A2A5E;
    font-size:30px;
    font-weight:700;
    opacity:0;
}

/* Clients visible first */
.clients-title{
    animation:titleClients 16s infinite;
}

/* Brands visible second */
.brands-title{
    animation:titleBrands 16s infinite;
}

@keyframes titleClients{

    0%,45%{
        opacity:1;
        transform:translateY(0);
    }

    50%,100%{
        opacity:0;
        transform:translateY(-15px);
    }
}

@keyframes titleBrands{

    0%,45%{
        opacity:0;
        transform:translateY(15px);
    }

    50%,95%{
        opacity:1;
        transform:translateY(0);
    }

    100%{
        opacity:0;
        transform:translateY(-15px);
    }
}

/* ==========================
   SLIDER CONTAINER
========================== */

.slider-container{
    position:relative;
    height:120px;
}

/* Both sliders occupy same space */

.slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    overflow:hidden;
}

/* Clients visible first */

.clients-slider{
    animation:showClients 16s infinite;
}

/* Brands visible second */

.brands-slider{
    animation:showBrands 16s infinite;
}

@keyframes showClients{

    0%,45%{
        opacity:1;
        visibility:visible;
    }

    50%,100%{
        opacity:0;
        visibility:hidden;
    }
}

@keyframes showBrands{

    0%,45%{
        opacity:0;
        visibility:hidden;
    }

    50%,95%{
        opacity:1;
        visibility:visible;
    }

    100%{
        opacity:0;
    }
}

/* ==========================
   LOGO SCROLL
========================== */

.slide-track{
    display:flex;
    width:max-content;
    animation:scroll 25s linear infinite;
}

.brand-slide{
    width:220px;
    height:120px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 15px;
    background:#f8f9fb;
    border-radius:12px;
}

.brand-slide img{
    max-width:180px;
    max-height:80px;
    object-fit:contain;
    transition:0.3s;
}

.brand-slide:hover img{
    transform:scale(1.05);
}

@keyframes scroll{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}