/* Add here all your css styles (customizations) */
.hubungi-kami {
    position: fixed;
    bottom: 30px;
    left: 35px;
    z-index: 1000;
}

.hubungi-kami .profile {
    position: relative;
    width: 50px;
    height: 50px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.hubungi-kami .profile img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hubungi-kami .menu::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 28px;
    width: 20px;
    height: 20px;
    background: #fff;
    transform: rotate(45deg);
}

.hubungi-kami .menu {
    position: absolute;
    bottom: 55px;
    left: -15px;
    padding: 10px 20px;
    background: #fff;
    width: 500px;
    box-sizing: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.hubungi-kami .menu.active {
    bottom: 70px;
    visibility: visible;
    opacity: 1;
}

.hubungi-kami .menu h3 {
    width: 100%;
    text-align: center;
    font-size: 20px;
    padding: 20px 0;
    font-weight: 600;
    color: #555;
    line-height: 1.2em;
}

.hubungi-kami .menu ul li {
    list-style: none;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.hubungi-kami .menu ul li img {
    max-width: 20px;
    margin-right: 10px;
    opacity: 0.5;
    transition: 0.3s;
}

.hubungi-kami .menu ul li:hover img {
    opacity: 1;
}

.hubungi-kami .menu ul li a {
    display: inline-block;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: 0.3s;
}

.hubungi-kami .menu ul li:hover a {
    color: #000;
}

.btn-contact {
    padding: 15px 20px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    background: #294bff;
    color: #fff;
    transition: 0.5s;
}

.btn-contact:hover {
    background: #152781;
}

.hide-hubungi-kami {
    display: none;
}
/* end btn top dan hubungi kami */

/* responsive */
@media (max-width: 991px) {
    .hubungi-kami {
        left: 20px;
        bottom: 25px;
    }

    .hubungi-kami .profile {
        width: 40px;
        height: 40px;
    }

    .hubungi-kami .menu {
        left: -15px;
        width: 240px;
    }

    .hubungi-kami .menu.active {
        width: 240px;
    }

    .hubungi-kami .menu ul li a {
        font-size: 12px;
        font-weight: 500;
    }

    .hubungi-kami .menu h3 {
        font-size: 16px;
        padding: 18px 0;
        margin-bottom: 5px;
    }
}