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

.trusted-clients {
    background: #05070D;
    padding: 50px 0 90px;
}


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

.trusted-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.trusted-title span {
    width: 180px;
    height: 1px;

    background: linear-gradient(
        to right,
        transparent,
        #D4AF37,
        transparent
    );
}

.trusted-title h3 {
    color: #D4AF37;

    font-size: 18px;
    letter-spacing: 4px;

    font-weight: 700;
    margin: 0;
}


/*=========================================*
* TRUSTED SUBTITLE
*=========================================*/

.trusted-subtitle {
    max-width: 760px;

    margin: 0 auto;

    text-align: center;

    color: #C7CDD5;

    font-size: 17px;

    line-height: 1.8;
}


/*=========================================*
* DIVIDER
*=========================================*/

.trusted-divider {
    width: 80px;
    height: 3px;

    background: #D4AF37;

    border-radius: 20px;

    margin: 30px auto 45px;
}


/*=========================================*
* LOGO GRID
*=========================================*/

.trusted-logos {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 24px;

    align-items: center;

    margin-top: 45px;
}


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

.logo-card {
    background: #fff;

    border-radius: 18px;

    height: 125px;

    display: flex;

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

    padding: 18px;

    border: 2px solid rgba(212, 175, 55, 0.15);

    transition: 0.35s;

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


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

.logo-card:hover {
    transform: translateY(-8px);

    border-color: #D4AF37;

    box-shadow:
        0 0 25px rgba(212, 175, 55, 0.25),
        0 18px 45px rgba(0, 0, 0, 0.25);
}


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

.logo-card img {
    max-width: 150px;

    max-height: 60px;

    object-fit: contain;

    transition: 0.35s;
}


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

.logo-card:hover img {
    transform: scale(1.08);
}


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

@media (max-width: 1100px) {

    .trusted-logos {
        grid-template-columns: repeat(3, 1fr);
    }

}


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

@media (max-width: 768px) {

    .trusted-clients {
        padding: 40px 0 70px;
    }

    .trusted-title span {
        width: 60px;
    }

    .trusted-title h3 {
        font-size: 16px;
        letter-spacing: 3px;
    }

    .trusted-subtitle {
        font-size: 15px;

        padding: 0 20px;
    }

    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }

    .logo-card {
        height: 110px;
    }

    .logo-card img {
        max-width: 130px;
    }

}


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

@media (max-width: 480px) {

    .trusted-logos {
        grid-template-columns: 1fr;
    }

    .logo-card {
        max-width: 320px;

        width: 100%;

        margin: auto;
    }

    .logo-card img {
        max-width: 120px;
    }

}