.client_breadcrumb h1 {
    font-size: 50px;
    font-weight: 500;
    margin-top: 15px;
}

.client_breadcrumb p {
    font-size: 24px;
    color: #444;
}

.client_list {
    height: 100%;
    width: 100%;
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.108);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: .4s all;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    -ms-transition: .4s all;
    -o-transition: .4s all;
}

.client_list.big img {
    width: 150px;
}

.client_list:hover {
    box-shadow: 0 5px 4px 0 rgba(0, 0, 0, 0.171);
}

.client_list p {
    color: #444;
}

.medium img {
    width: 200px;
}

.small img {
    width: 190px;
}


@media screen and (max-width: 768px) {
    .client_breadcrumb {
        padding-left: 20px;
        padding-right: 20px;
    }

    .client_breadcrumb h1 {
        font-size: 30px;
        font-weight: 500;
        margin-top: 15px;
    }

    .client_breadcrumb p {
        font-size: 16px;
        color: #444;
    }
}