.trusted {
    background-color: rgba(196, 189, 189, 0.5);
    text-align: center;
}

.trusted__title {
    padding-top: 1rem;
    font-size: 0.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--clr-textgray);
}

.trusted__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.4rem;
}

.trusted__logo {
    height: 6rem;
    width: auto;
    transition: 0.4s;
}

.trusted__logo:hover {
    transform: translateY(-0.2rem);
}

@media (max-width: 1280px) {
    .trusted__logo {
        height: 5rem;
        width: auto;
    }
}

@media (max-width: 768px) {
    .trusted__logo {
        height: 4rem;
        width: auto;
    }
}