.floating-container{
    position: fixed;
    width: 100px;
    height: 100px;
    bottom: 0;
    left: 0;
    margin: 35px 25px;
    z-index: 9;
   
}
.floating-container:hover{
    height: 300px;
}
.floating-container:hover .floating__button{
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    transform: translateY(25px);
    transition: all 1s cubic-bezier(.215, .61, .355, 1);
}
.floating__button{
    position: absolute;
    width: 65px;
    height: 65px;
    color: var(--secondary-gold);
    background-color: var(--color-bg-0);
    font-size: 52px;
    bottom: 50px;
    border-radius: 50%;
    left: 0;
    right: 0;
    line-height: 54px;
    text-align: center;
    z-index: 999999;
    cursor: pointer;
    transition: all 1s cubic-bezier(.215, .61, .355, 1);
    box-shadow: inset 6px 0px 2px 4px rgba(0, 0, 0, 0.1),  0px 10px 13px -7px #000000, -1px 1px 6px -3px rgba(0,0,0,0.21);
    backdrop-filter: blur(0.1px);
    -webkit-backdrop-filter: blur(0.1px);
}
.element__container{
    z-index: 9999999;
}
.float__element{
    background-color: #2b2b2b9c;
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    margin: 15px 0;
    color: white;
    display: grid;
    place-items: center;
    z-index: 0;
    opacity: 0;
    cursor: pointer;
    border-radius: 50%;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.34);

}
.float__element a .bx{
    color: white;
}

.float__element:nth-child(1){
    border-top: 1px solid var(--secondary-gold); 
    border-left: 1px solid var(--secondary-gold); 
    box-shadow: 0px 10px 13px -7px #000000, -1px 1px 6px -3px rgba(0,0,0,0.21);
}
.float__element:nth-child(2){
    border-top: 1px solid var(--secondary-gold); 
    border-left: 1px solid var(--secondary-gold);
    box-shadow: 0px 10px 13px -7px #000000, -1px 1px 6px -3px rgba(0,0,0,0.21);
}
.float__element:nth-child(3){
    border-top: 1px solid var(--secondary-gold); 
    border-left: 1px solid var(--secondary-gold);
    box-shadow: 0px 10px 13px -7px #000000, -1px 1px 6px -3px rgba(0,0,0,0.21);
}
@keyframes come-in{
    0%{
        opacity: 0;
    }
    30%{
        transform: translateX(-50px) scale(0.4);
    }
    70%{
        transform: translateX(0px) scale(1.2);
    }
    100%{
        transform:  scale(1);
        opacity: 1;
    }

}
.floating-container:hover .element__container .float__element:nth-child(1){
    animation: come-in 0.4s forwards 0.2s;
}
.floating-container:hover .element__container .float__element:nth-child(2){
    animation: come-in 0.4s forwards 0.4s;
}
.floating-container:hover .element__container .float__element:nth-child(3){
    animation: come-in 0.4s forwards 0.6s;
}