/* ============================================================
   TRUSTED BUSINESSES SECTION
   Trisha Web Enterprise SEO CMS
   ============================================================ */

.trusted-businesses-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}


/* ============================================================
   SECTION HEADER
   ============================================================ */

.trusted-businesses-header {
    max-width: 1000px;
    margin: 0 auto 55px;
}

.trusted-businesses-badge {
    display: inline-block;
    margin-bottom: 15px;
    padding: 8px 18px;
    border-radius: 30px;
    background: #f2f7ff;
    color: #1268e8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.trusted-businesses-title {
    margin: 0 0 18px;
    color: #111827;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
}

.trusted-businesses-description {
    max-width: 850px;
    margin: 0 auto;
    color: #667085;
    font-size: 18px;
    line-height: 1.7;
}


/* ============================================================
   SLIDER
   ============================================================ */

.trusted-businesses-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.trusted-businesses-track {
    display: flex;
    align-items: stretch;
    gap: 38px;
    width: max-content;
    padding: 5px 0 15px;

    animation: trustedBusinessesScroll 28s linear infinite;
}

.trusted-businesses-track:hover {
    animation-play-state: paused;
}


/* ============================================================
   BUSINESS ITEM
   ============================================================ */

.trusted-business-item {
    flex: 0 0 280px;
    width: 280px;
}


/* ============================================================
   BUSINESS CARD
   ============================================================ */

.trusted-business-card {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 125px;

    padding: 25px;

    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 18px;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(15, 23, 42, .06);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.trusted-business-card:hover {
    transform: translateY(-6px);

    border-color: #1268e8;

    box-shadow:
        0 15px 35px rgba(18, 104, 232, .12);
}


/* ============================================================
   LOGO
   ============================================================ */

.trusted-business-logo {
    width: 100%;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-business-logo img {
    display: block;

    max-width: 190px;
    max-height: 65px;

    width: auto;
    height: auto;

    object-fit: contain;

    transition: transform .3s ease;
}

.trusted-business-card:hover .trusted-business-logo img {
    transform: scale(1.05);
}


/* ============================================================
   INFINITE SCROLL
   ============================================================ */

@keyframes trustedBusinessesScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991px) {

    .trusted-businesses-section {
        padding: 80px 0;
    }

    .trusted-businesses-header {
        margin-bottom: 45px;
    }

    .trusted-businesses-title {
        font-size: 38px;
    }

    .trusted-businesses-description {
        font-size: 17px;
    }

    .trusted-business-item {
        flex-basis: 250px;
        width: 250px;
    }

    .trusted-business-card {
        min-height: 115px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .trusted-businesses-section {
        padding: 65px 0;
    }

    .trusted-businesses-header {
        padding: 0 20px;
        margin-bottom: 35px;
    }

    .trusted-businesses-badge {
        font-size: 11px;
        padding: 7px 14px;
    }

    .trusted-businesses-title {
        font-size: 30px;
        line-height: 1.25;
    }

    .trusted-businesses-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .trusted-businesses-track {
        gap: 20px;
        animation-duration: 24s;
    }

    .trusted-business-item {
        flex-basis: 220px;
        width: 220px;
    }

    .trusted-business-card {
        min-height: 105px;
        padding: 20px;
        border-radius: 15px;
    }

    .trusted-business-logo {
        height: 65px;
    }

    .trusted-business-logo img {
        max-width: 160px;
        max-height: 55px;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .trusted-businesses-title {
        font-size: 26px;
    }

    .trusted-businesses-description {
        font-size: 14px;
    }

    .trusted-business-item {
        flex-basis: 200px;
        width: 200px;
    }

    .trusted-business-card {
        min-height: 95px;
        padding: 15px;
    }

    .trusted-business-logo img {
        max-width: 145px;
        max-height: 50px;
    }

}