.customer-container {
    transform: rotate(0deg);
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 200px;
}

.customer-btn {
    /* border: 3px solid black; */
    position: absolute;
    display: flex;
    justify-content: center;
}

.customer-content {
    position: fixed;
    padding: 10px;
    border: 1px solid black;
    border-radius: 30px;
    top: -170px;
    background-color: #fff9e6;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
    width: 80%;
    text-align: center;
}

.customer-btn:hover .customer-content {
    /* top: 50px */
    opacity: 1;
    pointer-events: auto;
}