.clients-main-section {
    background-image: url('../images/background-clients-section.jpg');
    background-size: cover;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    row-gap: 150px;
    padding: 2% 1%;
    font-family: 'Century Gothic';
}

.tittle-clients {
    grid-column: 2/3;
    grid-row: 1/2;
    justify-self: center;
    text-align: end;
}

.tittle-clients h2 {
    font-size: 50px;
    margin: 0;
}

.tittle-clients h4 {
    color: #fff;
    margin: 0;
    font-size: 20px;
}

.clients-main-box {
    grid-column: 1/3;
    grid-row: 2/3;
    background-color: #888;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-radius: 10px;
    padding: 1%;
}

.client {
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.client h4 {
    font-weight: normal;
}

@media(320px <= width <= 640px) {
    .clients-main-section {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        row-gap: 20px;
        padding: 10% 0;
    }

    .tittle-clients {
        grid-column: 1/2;
        grid-row: 1/2;
        text-align: center;
    }

    .tittle-clients h4 {
        text-shadow:
            2px 2px 0px black,
            /* Sombras alrededor del texto */
            -2px -2px 0px black,
            2px -2px 0px black,
            -2px 2px 0px black;
    }

    .clients-main-box {
        grid-column: 1/2;
        grid-row: 2/4;
        background-color: transparent;
        grid-template-columns: 1fr;
    }
    .client{
        width: 50%;
        justify-self: center;
    }
    .client h4{
    background: rgba(0, 0, 0, 0.3); /* Fondo semi-transparente */
    backdrop-filter: blur(2px); /* Desenfoca el fondo detrás del elemento */
    border-radius: 10px;
    padding: 5px;
    filter: brightness(1.2);
    }
}