.client-container{
    width: 100%;
    /* display: grid;
    margin: auto; */
    
}

.client-title{
    padding: 4rem;
    color: #0b3961;
    font-size: 1.5rem;
    text-align: center;
    margin-top: -2rem;
    margin-bottom: -4rem;
}
.client-title h1{
    margin-bottom: -2rem;
    font-weight: 700;
} 
.client-title p{
    margin-bottom: .2rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    
}

.client-span-container{
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.client-container-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 3rem;
}

.client-image{
    display: flex;
    width: 40%;
   
    padding: 1rem 0;
    margin: auto;
    margin-bottom: -1rem;
    cursor: pointer;
    transition: transform 0.5s ease-in-out;

    
}
.client-image:hover{
       transform: scale(1.5);
    }
