 .customer_detail {
    width: 100%;
    height: 298px;
    padding: 20px 0 68px 0;
    display: flex;
    justify-content: space-between;
    margin: 0 -6px 80px;
}

 .customer_bigbox{
    width: 33.33%;
    height: 286px;
    padding: 0 6px 12px;
}

.customer_bgcbox {
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all ease 0.3s;
}

.customer_bgcbox:hover {
    box-shadow: 0  2px 2px 0 rgba(0, 0, 0, 0.1);
}

.customer_bgcbox .customer_top{
    height: 66%;
    padding: 32px;
}

.customer_bgcbox .customer_top h4{
    font-size: 20px;
    color: #393f56;
    font-weight: 400;
    margin-bottom: 8px;
    transition: all ease 0.3s;
}

.customer_bgcbox:hover h4 {
    color:#2dd4e0 !important;
}

.customer_bgcbox .customer_top p{
    font-size: 14px;
    color: #999db1;
    font-weight: 400;
}

.customer_bgcbox .customer_bottom{
    height: 34%;
    background-color: #fdfdfd;
    padding: 32px;
}

 .customer_bottom .customer_bottom_flex {
    display: flex;
    justify-content:space-around;
}

 .customer_bottom .customer_bottom_flex p{
    color: #999db1;
    font-size: 12px;
}

 .customer_bottom .customer_bottom_flex p span{
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background-color: #2dd4e0;
    margin: 2px 4px 2px 2px;
}

 .customer_bottom .customer_bottom_flex h6{
    color: #777c96;
    font-size: 18px;
}