#index_customers {
}
#index_customers_container {
}
#index_customers_content {
    flex-direction: column;
}
#index_customers_title {

}
#index_customers_customers {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    border: solid 3px var(--primary-color);
    border-radius: 30px;
    /*border: solid 1px green;*/
}
.index_customers_customer_details {
    margin: 10px;
    text-decoration: none;
    /*border: solid 1px green;*/
}
.index_customers_customer_details:not(:first-child) {
    /*margin-left: 10px;*/
    /*border: solid 1px green;*/
}
.index_customers_customer_image {
    max-width: 150px;
    /*border: solid 1px red;*/
}
.index_customers_customer_image img {
    width: 100%;
    filter: grayscale(1);
    /*border: solid 1px blue;*/
}
.index_customers_customer_image img:hover {
    filter: grayscale(0);
}
.index_customers_customer_name {
    border: solid 1px red;
}
#index_customers_more {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
    /*border: solid 1px red;*/
}
#index_customers_more_text {
    padding: 10px 20px;
    background-color: var(--primary-background);
    border-radius: 30px;
    font-size: 1em;
    color: var(--black);
    /*border: solid 1px red;*/
}

@media all and (min-width: 600px) {
}
@media all and (min-width: 900px) {
}
@media all and (min-width: 1200px) {
}    