.floating-buttons {
    position: fixed;
    bottom: 80px;
    right: 30px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 15px;
    z-index: 1000
}

.nav-btn-container {
    position: relative;
    display: flex;
    z-index: 1000
}

.floating-nav-btn {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 1);
    border: 0.2px solid rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease, box-shadow 0.3s ease
}


.scroll-icon {
    width: 16px;
    height: 16px;
    transition: opacity 0.2s ease;
    cursor: pointer
}

.scroll-icon.active {
    opacity: 1
}

/* .scroll-icon:not(.active) {
    pointer-events: none
} */

.contact-btn-container {
    position: relative;
    display: flex;
    align-items: center
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 0.2px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative
}

.contact-button:hover {
    background-color: rgb(193, 196, 224);
    box-shadow: 0 6px 10px rgb(0 0 0 / .3)
}

.contact-float-btn {
    width: 50%;
}

@media (max-width:768px) {
    .floating-buttons {
        display: flex;
        flex-direction: column;
        bottom: 30px;
        right: 20px;
        gap: 10px
    }

    .floating-nav-btn {
        width: 40px;
        height: 40px
    }

    .scroll-icon {
        width: 12px;
        height: 12px
    }

    /* .scroll-icon:not(.active) {
        pointer-events: none
    } */


    .contact-button {
        width: 40px;
        height: 40px
    }

    .default-icon {
        width: 22px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1
    }

    .default-icon-logo {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1
    }


    .contact-text {
        display: none
    }

    .contact-button:hover {
        width: 40px;
        height: 40px;
        background-color: rgb(50 45 41)
    }

}