.customer {
    width: 2.5em;
    height: 2.5em;
    /* background-color: rgb(212, 170, 170); */
    /*  */

    position: fixed;
    right: 2em;
    bottom: 6em;
    z-index: 99;
    cursor: pointer;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customerInner {
    width: 2em;
    height: 2em;

    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../image/customer.png);
}

.customerService {
    position: fixed;
    right: 6em;
    bottom: 6em;
    z-index: 99;
    height: 36em;
    width: 24em;

    background: #fff;

    overflow: hidden;
    transition: all .5s;
    clip-path: circle(0px at 24em 36em);

}

/* .customerService:hover {

    clip-path: ;
} */