.customersSlide {
    background: white;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.customersTextBox {
    -webkit-backdrop-filter: blur(var(--blurRadius));
    backdrop-filter: blur(var(--blurRadius));
    color: gray;


    @media (min-width: 1000px) {
        font-size: 96px;
        margin: 150px auto 50px 200px;
    }
    @media (max-width: 999px) {
        font-size: 48px;
        margin: 150px auto 50px 10px;
    }
    padding: 10px 20px;
}

.customerLogo {
    margin: 20px;
    @media (min-width: 1000px) {
        max-height: 200px;
        max-width: 200px;
        margin: 50px;
    }
    @media (max-width: 999px) {
        max-height: 100px;
        max-width: 100px;
    }
}

