.header-container{
    width: 90%;
    margin: auto;
}

.trusted-section{
    width: 100%;
    margin: auto;
    margin-top: 40px;
    gap: 36px;
    padding: 20px 0;
}

.trusted-heading{
    height: 60px;
}

.trusted-heading h4{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
}

.trusted-image{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 22px;
    min-height: 48px;
    flex-wrap: nowrap;
}

.trusted-image img{
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}


@media (max-width:1200px){

    .trusted-image{
        gap: 18px;
    }

    .trusted-image img{
        height: 36px;
    }
}

@media (max-width:1024px){

    .trusted-section{
        margin-top: 30px;
    }

    .trusted-image{
        gap: 16px;
    }

    .trusted-image img{
        height: 34px;
    }
}

@media (max-width:768px){

    .trusted-section{
        padding: 24px 0;
    }

    .trusted-heading{
        height: auto;
        margin-bottom: 20px;
    }

    .trusted-heading h4{
        line-height: 1.5;
        font-size: 16px;
    }

    .trusted-image{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        min-height: auto;
        justify-items: center;
        align-items: center;
    }

    .trusted-image img{
        height: 32px;
    }
}


@media (max-width:425px){

    .trusted-section{
        margin-top: 24px;
        padding: 20px 0;
    }

    .trusted-heading h4{
        font-size: 15px;
        letter-spacing: 0.8px;
    }

    .trusted-image{
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .trusted-image img{
        height: 24px;
    }
}

@media (max-width:375px){

    .trusted-heading h4{
        font-size: 14px;
        line-height: 1.4;
    }

    .trusted-image{
        gap: 14px;
    }

    .trusted-image img{
        height: 22px;
    }
}

@media (max-width:320px){

    .trusted-section{
        padding: 16px 0;
    }

    .trusted-heading h4{
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .trusted-image{
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .trusted-image img{
        height: 18px;
    }
}