/* Minification failed. Returning unminified contents.
(5,28): run-time error CSS1039: Token not allowed after unary operator: '-primary-white'
(21,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(32,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(41,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(60,22): run-time error CSS1039: Token not allowed after unary operator: '-box-shadow-home'
(61,25): run-time error CSS1039: Token not allowed after unary operator: '-border-radius-base'
(94,25): run-time error CSS1039: Token not allowed after unary operator: '-border-radius-base'
 */
#customers {
    float: right;
    width: 100%;
    padding: 100px 10%;
    background-color: var(--primary-white);
    background-image: url("../overlay.54db4bc9f1915e6374e6.png");
    background-position: center right;
    background-size: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
#customers > .title{
    float: right;
    width: auto;
    position: relative;
    padding: 0 50px;
    font-weight: 700;
    font-size: 25px;
    color: var(--primary);
    margin-bottom: 50px;
}

#customers > .title:before{
    content: "";
    width: 35px;
    height: 2px;
    position: absolute;
    right: 0;
    top: calc((100% - 3px) / 2);
    background-color: var(--primary);
}
#customers > .title:after{
    content: "";
    width: 35px;
    height: 2px;
    position: absolute;
    left: 0;
    top: calc((100% - 3px) / 2);
    background-color: var(--primary);
}

#customers .items{
    float: right;
    width: 100%;
}

#customers .item-con{
    float: right;
    width: 100%;
    padding: 15px;
}
#customers .item-con .item{
    float: right;
    width: 100%;
    padding-top: 100%;
    position: relative;
    background-color: white;
    box-shadow: var(--box-shadow-home);
    border-radius: var(--border-radius-base);
    overflow: hidden;
}
#customers .item-con .item .image{
    float: right;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
#customers .item-con .item .image img{
    float: right;
    width: 75%;
}

#customers .item-con .item .info{
    float: right;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    background-color: #333333dd;
    height: 0;
    overflow: hidden;
    transition: all .3s;
    border-radius: var(--border-radius-base);
}
#customers .item-con .item:hover .info {
    height: 100%;
}


#customers .item-con .item .info .name{
    float: right;
    width: 100%;
    margin-bottom: 5px;
    color: white;
    font-weight: 700;
    font-size: 11px;
    text-align: center;
    padding: 0 10px;
}
#customers .item-con .item .info .ename{
    float: right;
    width: 100%;
    color: white;
    font-size: 9px;
    text-align: center;
    padding: 0 10px 5px 10px;
}

@media (max-width: 999.98px) {
    #customers .item-con{
        width: calc(100% / 2);
    }
}

@media (max-width: 699.98px) {
    #customers .item-con{
        width: 100%;
    }
}

