/* =====================================================
   GLOBAL
===================================================== */

:root {
    --primary: #635bff;
    --primary-dark: #5048e5;
    --dark: #111827;
    --text: #5f6675;
    --light-bg: #f7f8fc;
    --border: #e7e9f0;
    --success: #16a36a;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--dark);

    background: #ffffff;
}


a {
    text-decoration: none;
}


/* =====================================================
   NAVBAR
===================================================== */

.custom-navbar {

    min-height: 78px;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.03);

    backdrop-filter: blur(15px);
}


.navbar-brand {

    display: flex;

    align-items: center;

    color: var(--dark);

    font-size: 20px;

    font-weight: 700;
}


.navbar-brand:hover {
    color: var(--dark);
}


.brand-icon {

    width: 35px;
    height: 35px;

    margin-right: 9px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    color: #ffffff;

    border-radius: 9px;

    font-size: 15px;
}


.navbar-nav {
    gap: 5px;
}


.nav-link {

    color: #596174 !important;

    font-size: 14px;

    font-weight: 500;

    padding: 10px 13px !important;

    transition: 0.25s ease;
}


.nav-link:hover,
.nav-link.active {

    color: var(--primary) !important;
}


.dropdown-menu {

    border-radius: 12px;

    padding: 8px;

    min-width: 190px;
}


.dropdown-item {

    padding: 9px 12px;

    border-radius: 7px;

    font-size: 13px;
}


.dropdown-item:hover {

    background: #f2f1ff;

    color: var(--primary);
}


.nav-button {

    border-radius: 9px;

    padding: 10px 20px;

    font-size: 14px;

    font-weight: 600;

    background: var(--primary);

    border-color: var(--primary);
}


.nav-button:hover {

    background: var(--primary-dark);

    border-color: var(--primary-dark);
}


/* =====================================================
   HERO
===================================================== */

.hero-section {

    padding-top: 145px;

    padding-bottom: 100px;

    overflow: hidden;

    background:

        radial-gradient(circle at 85% 25%,
            rgba(99, 91, 255, 0.15),
            transparent 34%),

        radial-gradient(circle at 15% 80%,
            rgba(99, 91, 255, 0.05),
            transparent 30%),

        linear-gradient(180deg,
            #fbfbff 0%,
            #ffffff 100%);
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 14px;

    background: #eeedff;

    color: var(--primary);

    border-radius: 50px;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 20px;
}


.hero-title {

    max-width: 650px;

    margin-bottom: 25px;

    font-size: clamp(45px, 5vw, 70px);

    line-height: 1.04;

    letter-spacing: -3px;

    font-weight: 800;
}


.hero-title span {
    color: var(--primary);
}


.hero-description {

    max-width: 570px;

    margin-bottom: 30px;

    color: var(--text);

    font-size: 17px;

    line-height: 1.8;
}


.hero-buttons {

    display: flex;

    gap: 12px;

    margin-bottom: 45px;
}


.hero-buttons .btn {

    padding: 13px 22px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 600;
}


.hero-buttons .btn-primary {

    background: var(--primary);

    border-color: var(--primary);
}


.hero-buttons .btn-primary:hover {

    background: var(--primary-dark);

    border-color: var(--primary-dark);
}


/* =====================================================
   HERO STATS
===================================================== */

.hero-stats {

    display: flex;

    gap: 50px;
}


.hero-stats div {

    display: flex;

    flex-direction: column;
}


.hero-stats strong {

    font-size: 24px;

    font-weight: 700;
}


.hero-stats span {

    margin-top: 3px;

    color: #8a90a0;

    font-size: 12px;
}


/* =====================================================
   HERO IMAGE SCROLLING SLIDER
===================================================== */

.hero-slider-wrapper {

    width: 100%;

    height: 500px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* Main image area */

.hero-image-slider {

    width: 440px;

    height: 410px;

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    background: #f0efff;

    box-shadow:

        0 35px 80px rgba(47, 43, 110, 0.18);
}


/* Every slide */

.hero-slide {

    position: absolute;

    inset: 0;

    opacity: 0;

    transform: scale(1.08);

    transition:

        opacity 0.9s ease,

        transform 4.5s ease;

    pointer-events: none;
}


/* Active slide */

.hero-slide.active {

    opacity: 1;

    transform: scale(1);
}


/* Slider image */

.hero-slide img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;
}


/* =====================================================
   SLIDER OVERLAY
===================================================== */

.slider-overlay {

    position: absolute;

    width: 440px;

    height: 410px;

    inset: 0;

    margin: auto;

    z-index: 2;

    border-radius: 24px;

    pointer-events: none;

    background:

        linear-gradient(180deg,
            rgba(10, 12, 30, 0.02) 0%,
            rgba(10, 12, 30, 0.04) 50%,
            rgba(10, 12, 30, 0.30) 100%);
}


/* =====================================================
   FLOATING CARDS
===================================================== */

.slider-floating-card {

    position: absolute;

    z-index: 5;

    background:
        rgba(255, 255, 255, 0.96);

    border:
        1px solid rgba(255, 255, 255, 0.8);

    box-shadow:
        0 18px 45px rgba(30, 35, 70, 0.15);

    backdrop-filter: blur(12px);

    border-radius: 15px;
}


/* Growth card */

.slider-card-top {

    top: 35px;

    left: 0;

    padding: 12px 16px;

    display: flex;

    align-items: center;

    gap: 10px;
}


.slider-icon {

    width: 38px;

    height: 38px;

    border-radius: 9px;

    background: #e5f8ef;

    color: var(--success);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 17px;
}


.slider-card-top strong {

    display: block;

    color: #111827;

    font-size: 14px;
}


.slider-card-top small {

    display: block;

    margin-top: 2px;

    color: #89909f;

    font-size: 11px;
}


/* Clients card */

.slider-card-bottom {

    right: -15px;

    bottom: 35px;

    padding: 12px 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 12px;
}


/* =====================================================
   AVATARS
===================================================== */

.avatar-group {

    display: flex;

    align-items: center;
}


.avatar-group span {

    width: 30px;

    height: 30px;

    margin-left: -7px;

    border-radius: 50%;

    background: var(--primary);

    border: 2px solid #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 8px;

    font-weight: 600;
}


.avatar-group span:first-child {

    margin-left: 0;
}


/* =====================================================
   SLIDER CONTROLS
===================================================== */

.slider-controls {

    position: absolute;

    z-index: 10;

    bottom: -10px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 7px 9px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:

        0 10px 30px rgba(20, 20, 60, 0.12);
}


/* Arrow */

.slider-controls button {

    width: 30px;

    height: 30px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #f1f1f8;

    color: #333;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: 0.25s;
}


.slider-controls button:hover {

    background: var(--primary);

    color: #ffffff;
}


/* Dots */

.slider-dots {

    display: flex;

    align-items: center;

    gap: 5px;
}


.slider-dot {

    width: 6px !important;

    height: 6px !important;

    min-width: 6px;

    padding: 0 !important;

    border: 0 !important;

    border-radius: 50% !important;

    background: #c8cad5 !important;
}


.slider-dot.active {

    width: 18px !important;

    border-radius: 10px !important;

    background: var(--primary) !important;
}


/* =====================================================
   CLIENTS
===================================================== */

.clients-section {

    padding: 45px 0;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}


.clients-title {

    margin-bottom: 28px;

    color: #a0a5b2;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}





/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {

    max-width: 650px;

    margin: 0 auto 60px;

    text-align: center;
}


.section-heading span {

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


.section-heading h2 {

    margin: 15px 0;

    font-size: 42px;

    line-height: 1.15;

    letter-spacing: -1.5px;
}


.section-heading p {

    color: var(--text);

    font-size: 15px;

    line-height: 1.7;
}


/* =====================================================
   SERVICES
===================================================== */

.services-section {

    padding: 50px 0;
}


.service-card {

    height: 100%;

    padding: 30px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 18px;

    transition:

        transform 0.3s ease,

        box-shadow 0.3s ease,

        border-color 0.3s ease;
}


.service-card:hover {

    transform: translateY(-8px);

    border-color: #dcd9ff;

    box-shadow:

        0 20px 50px rgba(40, 45, 90, 0.10);
}


.service-icon {

    width: 52px;

    height: 52px;

    margin-bottom: 25px;

    border-radius: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;
}


.service-icon.blue {

    background: #e9f0ff;

    color: #3973e6;
}


.service-icon.purple {

    background: #f0eaff;

    color: #7a52d4;
}


.service-icon.orange {

    background: #fff0e6;

    color: #e77a25;
}


.service-icon.green {

    background: #e7f8ef;

    color: #20a369;
}


.service-card h4 {

    margin-bottom: 13px;

    font-size: 18px;
}


.service-card p {

    min-height: 65px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.7;
}


.service-card a {

    color: var(--dark);

    font-size: 13px;

    font-weight: 700;

    transition: 0.2s;
}


.service-card a:hover {

    color: var(--primary);
}


/* =====================================================
   PROJECTS
===================================================== */

.projects-section {

    padding-bottom: 110px;
}


.project-card {

    position: relative;

    overflow: hidden;

    min-height: 340px;

    border-radius: 20px;

    background: #111;
}


.project-card img {

    width: 100%;

    height: 340px;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.project-card:hover img {

    transform: scale(1.05);
}


.project-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(transparent 35%,
            rgba(0, 0, 0, 0.82));
}


.project-content {

    position: absolute;

    z-index: 2;

    left: 28px;

    right: 28px;

    bottom: 25px;

    color: #ffffff;
}


.project-content span {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    opacity: 0.75;
}


.project-content h4 {

    margin: 7px 0 0;

    font-size: 22px;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {

    padding-bottom: 100px;
}


.cta-box {

    padding: 55px 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    color: #ffffff;

    border-radius: 24px;

    background:

        radial-gradient(circle at 80% 30%,
            rgba(255, 255, 255, 0.16),
            transparent 35%),

        linear-gradient(135deg,
            #635bff,
            #5147df);
}


.cta-box>div {

    max-width: 650px;
}


.cta-box span {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    opacity: 0.75;
}


.cta-box h2 {

    margin: 12px 0;

    font-size: 38px;
}


.cta-box p {

    margin: 0;

    opacity: 0.8;

    line-height: 1.7;
}


.cta-box .btn {

    flex-shrink: 0;

    padding: 13px 22px;

    border-radius: 10px;

    font-weight: 700;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    padding: 75px 0 25px;

    color: #ffffff;

    background: #11131a;
}


.footer-brand {

    display: inline-flex;

    align-items: center;

    color: #ffffff;

    font-size: 20px;

    font-weight: 700;
}


.footer-brand:hover {

    color: #ffffff;
}


.footer-description {

    max-width: 390px;

    margin: 20px 0;

    color: #9297a5;

    font-size: 13px;

    line-height: 1.8;
}


.social-links {

    display: flex;

    gap: 9px;
}


.social-links a {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #aaa;

    background: #1d2029;

    border-radius: 8px;

    transition: 0.2s;
}


.social-links a:hover {

    color: #ffffff;

    background: var(--primary);
}


.footer h5 {

    margin-bottom: 20px;

    font-size: 14px;
}


.footer-link {

    display: block;

    margin-bottom: 13px;

    color: #9297a5;

    font-size: 13px;

    transition: 0.2s;
}


.footer-link:hover {

    color: #ffffff;
}


.footer-contact {

    margin-bottom: 13px;

    color: #9297a5;

    font-size: 13px;
}


.footer-contact i {

    margin-right: 8px;

    color: var(--primary);
}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 55px;

    padding-top: 22px;

    color: #707582;

    font-size: 12px;

    border-top: 1px solid #282b34;
}


.footer-bottom a {

    margin-left: 20px;

    color: #707582;
}


.footer-bottom a:hover {

    color: #ffffff;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .navbar-nav {

        margin-top: 20px;
    }


    .nav-button {

        display: inline-block;

        margin: 15px 0 20px;
    }


    .hero-section {

        padding-top: 125px;
    }


    .hero-slider-wrapper {

        margin-top: 35px;
    }





    .cta-box {

        padding: 45px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .hero-section {

        padding-top: 115px;

        padding-bottom: 70px;
    }


    .hero-title {

        font-size: 46px;

        letter-spacing: -2px;
    }


    .hero-description {

        font-size: 15px;
    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;
    }


    .hero-buttons .btn {

        width: 100%;
    }


    .hero-stats {

        gap: 25px;

        justify-content: space-between;
    }


    .hero-stats strong {

        font-size: 20px;
    }


    /* Slider mobile */

    .hero-slider-wrapper {

        height: 420px;
    }


    .hero-image-slider {

        width: 100%;

        max-width: 440px;

        height: 350px;
    }


    .slider-overlay {

        width: 100%;

        max-width: 440px;

        height: 350px;
    }


    .slider-card-top {

        left: 0;

        top: 20px;
    }


    .slider-card-bottom {

        right: 0;

        bottom: 35px;
    }


    .services-section {

        padding: 75px 0;
    }


    .section-heading {

        margin-bottom: 40px;
    }


    .section-heading h2 {

        font-size: 34px;
    }


    .projects-section {

        padding-bottom: 75px;
    }


    .cta-section {

        padding-bottom: 70px;
    }


    .cta-box {

        padding: 35px 25px;

        flex-direction: column;

        align-items: flex-start;
    }


    .cta-box h2 {

        font-size: 30px;
    }


    .cta-box .btn {

        width: 100%;
    }


    .footer {

        padding-top: 55px;
    }


    .footer-bottom {

        flex-direction: column;
    }


    .footer-bottom a {

        margin-left: 0;

        margin-right: 15px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .hero-title {

        font-size: 40px;
    }


    .hero-slider-wrapper {

        height: 370px;
    }


    .hero-image-slider {

        height: 300px;

        border-radius: 18px;
    }


    .slider-overlay {

        height: 300px;

        border-radius: 18px;
    }


    .slider-card-top {

        top: 5px;

        left: -5px;

        padding: 9px 12px;
    }


    .slider-card-bottom {

        right: -5px;

        bottom: 30px;

        padding: 9px 12px;

        font-size: 10px;
    }


    .slider-icon {

        width: 32px;

        height: 32px;
    }


    .slider-controls {

        bottom: 0;
    }




    .section-heading h2 {

        font-size: 30px;
    }


    .project-card,
    .project-card img {

        min-height: 280px;

        height: 280px;
    }

}

/* ================= FULL HERO SLIDER ================= */

.hero-full-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 78px);
    min-height: 550px;
    overflow: hidden;
    background: #111;
}

.hero-full-slider {
    height: 450px;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-full-slider .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.05);

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 5s ease;
}

.hero-full-slider .hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-full-slider .hero-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* ================= SLIDER BUTTONS ================= */

.hero-slider-prev,
.hero-slider-next {
    position: absolute;

    top: 58%;
    z-index: 10;

    transform: translateY(-50%);

    width: 52px;
    height: 52px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.92);

    color: #111827;

    font-size: 20px;

    cursor: pointer;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);

    transition: 0.25s ease;
}

.hero-slider-prev {
    left: 30px;
}

.hero-slider-next {
    right: 30px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: #635bff;
    color: #ffffff;

    transform:
        translateY(-50%) scale(1.08);
}


/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .hero-full-slider {
        height: 420px;
        min-height: 250px;
    }

    .hero-slider-prev,
    .hero-slider-next {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .hero-slider-prev {
        left: 12px;
    }

    .hero-slider-next {
        right: 12px;
    }

}


/* =====================================================
   CLIENT LOGO SLIDER
===================================================== */

.clients-section {

    padding: 45px 0 38px;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    background: #ffffff;

}


/* =====================================================
   TITLE
===================================================== */

.clients-title {

    margin-bottom: 30px;

    color: #9da2af;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


/* =====================================================
   SLIDER MAIN
===================================================== */

.clients-slider {

    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

    gap: 25px;

}


/* =====================================================
   VIEWPORT
===================================================== */

.clients-slider-viewport {

    width: 100%;

    overflow: hidden;

}


/* =====================================================
   TRACK
===================================================== */

.clients-slider-track {

    display: flex;

    gap: 28px;

    will-change: transform;

    transition:
        transform 0.55s cubic-bezier(0.22,
            0.61,
            0.36,
            1);

}


/* =====================================================
   EACH SLIDE

   5 LOGOS VISIBLE
===================================================== */

.client-logo-slide {

    flex: 0 0 calc((100% - 112px) / 5);

    min-width: 0;

}


/* =====================================================
   LOGO CARD
===================================================== */

.client-logo-card {

    height: 85px;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px;

    border: 1px solid #eef0f5;

    border-radius: 4px;

    background: #ffffff;

    color: #7e8798;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;

}


/* =====================================================
   LOGO IMAGE
===================================================== */

.client-logo-card img {

    width: 25px;

    height: 25px;

    object-fit: contain;

    opacity: 0.58;

    filter: grayscale(100%);

    transition:
        opacity 0.25s ease,
        filter 0.25s ease;

}


/* =====================================================
   LOGO NAME
===================================================== */

.client-logo-card span {

    font-size: 17px;

    font-weight: 600;

    white-space: nowrap;

}


/* =====================================================
   HOVER
===================================================== */

.client-logo-card:hover {

    border-color: #dedcff;

    box-shadow:
        0 10px 30px rgba(40, 45, 90, 0.08);

    transform: translateY(-3px);

}


.client-logo-card:hover img {

    opacity: 0.85;

    filter: grayscale(0%);

}


/* =====================================================
   LEFT / RIGHT BUTTONS
===================================================== */

.clients-slider-prev,
.clients-slider-next {

    flex: 0 0 45px;

    width: 45px;

    height: 45px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: transparent;

    color: #7d8493;

    font-size: 28px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;

}


/* =====================================================
   ARROW HOVER
===================================================== */

.clients-slider-prev:hover,
.clients-slider-next:hover {

    background: #f1f0ff;

    color: var(--primary);

}


.clients-slider-prev:active {

    transform: translateX(-3px);

}


.clients-slider-next:active {

    transform: translateX(3px);

}


/* =====================================================
   DISABLED ARROW
===================================================== */

.clients-slider-prev:disabled,
.clients-slider-next:disabled {

    opacity: 0.25;

    cursor: not-allowed;

    background: transparent;

    color: #7d8493;

}


/* =====================================================
   DOTS
===================================================== */

.clients-slider-dots {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 5px;

    margin-top: 18px;

}


.clients-slider-dot {

    width: 7px;

    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #c9ccd5;

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;

}


.clients-slider-dot.active {

    width: 19px;

    border-radius: 10px;

    background: var(--primary);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .client-logo-slide {

        flex: 0 0 calc((100% - 56px) / 3);

    }

    .clients-slider {

        gap: 10px;

    }

    .clients-slider-prev,
    .clients-slider-next {

        flex: 0 0 38px;

        width: 38px;

        height: 38px;

        font-size: 22px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .clients-section {

        padding: 35px 0 30px;

    }

    .clients-slider {

        gap: 5px;

    }

    .client-logo-slide {

        flex: 0 0 calc((100% - 15px) / 2);

    }

    .client-logo-card {

        height: 75px;

        padding: 10px;

    }

    .client-logo-card img {

        width: 21px;

        height: 21px;

    }

    .client-logo-card span {

        font-size: 13px;

    }

    .clients-slider-prev,
    .clients-slider-next {

        flex: 0 0 32px;

        width: 32px;

        height: 32px;

        font-size: 19px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .client-logo-slide {

        flex: 0 0 100%;

    }

    .client-logo-card {

        height: 70px;

    }

}