@charset "utf-8";
/* CSS Document */
.brand-box{
    background-color: #fff;
    border-radius: 0.25rem;
    border: 1px solid #dfdfdf;
    color:#333;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
    padding: 1rem;
    text-align: center;
}
.brand-box-image{
    max-height: 96px;
    max-width: 200px;
    margin:0 auto 1rem;
}
.brand-box-image > img{
    max-width: 100%;
    height:96px;
}
.brand-box h5 {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* END HOME */