.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 190px;

    width: 60px;
    height: 60px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

    z-index: 999;

    animation: whatsapp-pulse 2s infinite;

    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.call-float {
    position: fixed;
    right: 20px;
    bottom: 100px;

    width: 60px;
    height: 60px;

    background: #2C80D3;
    color: #fff;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

    z-index: 999;

    animation: whatsapp-pulse 2s infinite;

    transition: 0.3s;
}

.call-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Pulse animation */
@keyframes whatsapp-pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }

}

/* Mobile */
@media(max-width:768px) {

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        right: 15px;
        bottom: 90px;
    }

    .call-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        right: 15px;
        bottom: 15px;
    }

}


/*social*/

.sticky-icon {
    z-index: 999;
    position: fixed;
    top: 40%;
    left: -1%;
    width: 5%;
    display: flex;
    flex-direction: column;
}

.sticky-icon a {
    /*transform: translate(-120px, 0px);*/
    border-radius: 0px 50px 50px 0px;
    text-align: right;
    margin: 2px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px;
    font-size: 22px;
    font-family: 'Oswald', sans-serif;
    transition: all 0.8s;
}

.sticky-icon a:hover {
    color: #FFF;
    transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
    transform: rotate(360deg);
}

.call {
    background-color: #2C80D3;
    color: #FFF;
}

.linkedin {
    background-color: #0077B5;
    color: #FFF;
}

.Instagram {
    background-color: #FD1D1D;
    color: #FFF;
}

.sticky-icon a i {
    background-color: #FFF;
    height: 30px;
    width: 30px;
    color: #000;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 2px;
    transition: all 0.5s;
}

.sticky-icon a i.fa-facebook-f {
    background-color: #FFF;
    color: #2C80D3;
}

.sticky-icon a i.fa-instagram {
    background-color: #FFF;
    color: #FD1D1D;
}

.sticky-icon a i.fa-linkedin-in {
    background-color: #FFF;
    color: #0077B5;
}

.fas fa-shopping-cart {
    background-color: #FFF;
}

#myBtn {
    height: 30px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    text-align: center;
    padding: 10px;
    text-align: center;
    line-height: 25px;
    border: none;
    outline: none;
    background-color: #1e88e5;
    color: white;
    cursor: pointer;
    border-radius: 50%;
}

.fa-arrow-circle-up {
    font-size: 20px;
}

#myBtn:hover {
    background-color: #555;
}

@media (max-width: 767px) {
    .sticky-icon {
        z-index: 999;
        position: fixed;
        top: 40%;
        left: -1%;
        width: 14.5%;
        display: flex;
        flex-direction: column;
    }

}

@media (min-width: 768px) and (max-width: 1199px) {
    .sticky-icon {
        z-index: 999;
        position: fixed;
        top: 40%;
        left: -0.5%;
        width: 6.7%;
        display: flex;
        flex-direction: column;
    }

}