.corporate-mobile {
    display: flex;
    flex-direction: column;
    width: 100vw;
    padding-top: 2em;
    padding-bottom: 2em;
    text-align: center;
    align-items: center;
    background: #f5f5f5;
}

.corporate-mobile h3 {
    font-family: var(--numbers-font);
    color: var(--primary-green);    
    font-weight: 300;
    font-size: 1em;
    font-weight: 600;
}

.corporate-mobile h1 {
    font-family: var(--header-font);
    color:var(--primary-green);
    font-weight: 200;
    font-size: 1.5em;
}


.corporate-mobile p {
    font-family: var(--body-font);
    color: #424242;
    font-size: .875em;
    width: 90vw;
}

.clients-box {
    margin-top: 1em;
    width: 100vw;
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    row-gap: 1em;
    column-gap: 1em;
    padding-bottom: 2em;
    align-items: center;
    justify-content: center;
}

.clients-box img {
    width: 40vw;
    object-fit: contain;
}

@media only screen and (min-width: 768px) {

    .corporate-mobile
    {
        display: none;
    }
    

}