/*==================================================
FLOATING SIDEBAR
==================================================*/

.floating-sidebar{

    position:fixed;

    right:20px;

    top:50%;

    transform:translateY(-50%);

    z-index:999;

    display:flex;

    flex-direction:column;

    gap:12px;

}

.float-item{

    width:70px;

    height:70px;

    background:#214f99;

    color:#fff;

    border-radius:14px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    transition:.3s;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.float-item span{

    font-size:22px;

    margin-bottom:4px;

}

.float-item small{

    font-size:11px;

    font-weight:600;

}

.float-item:hover{

    transform:translateX(-8px);

    background:#5e832a;

}

.call{
    background:#111111;
}

.whatsapp{
    background:#25D366;
}

.quote{
    background:#214f99;
}

.profile{
    background:#5e832a;
}

.scope{
    background:#214f99;
}

.certificate{
    background:#111111;
}

@media(max-width:991px){

.floating-sidebar{

display:none;

}

}
