*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* SECTION */
.trusted-brands{
    width:100%;
    background:#fff;
    border-radius:6px;
    padding:40px 50px;
}

/* CONTAINER */
.trusted-wrapper{
    max-width:1200px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;

    flex-wrap:wrap;
}

/* LEFT SIDE */
.trusted-left{
    flex:0 0 260px;
}

.trusted-small-title{
    color:#2563eb;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.trusted-heading{
    color:#1f2937;
    font-size:18px;
    line-height:1.6;
    font-weight:500;
}

/* RIGHT SIDE */
.trusted-logos{
    flex:1;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;

    flex-wrap:wrap;
}

/* LOGO BOX */
.logo-item{
    display:flex;
    align-items:center;
    justify-content:center;

    min-width:100px;
}

/* IMAGES */
.logo-item img{
    width:auto;
    max-width:120px;
    max-height:42px;
    height:auto;

    object-fit:contain;
    display:block;

    transition:0.3s ease;
    opacity:0.9;
}

.logo-item img:hover{
    opacity:1;
    transform:scale(1.05);
}

/* TABLET */
@media(max-width:992px){

    .trusted-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .trusted-left{
        flex:none;
    }

    .trusted-logos{
        justify-content:center;
    }
}

/* MOBILE */
@media(max-width:576px){

    .trusted-brands{
        padding:30px 20px;
    }

    .trusted-heading{
        font-size:16px;
    }

    .trusted-logos{
        gap:25px;
    }

    .logo-item{
        min-width:80px;
    }

    .logo-item img{
        max-width:90px;
        max-height:35px;
    }
}
