
.sticky02 {
    left: 0;
    position: fixed;
    bottom: 30px;
    z-index: 1000;
}

.sticky01 {
    left: 0;
    position: fixed;
    bottom: 100px;
    z-index: 1000;
}

.sticky01 .fa-whatsapp {
    background: #318e33;
    padding: 10px;
	width: 50px;
    height: 50px;
    border-radius: 100%;
    font-size: 28px;
    color: #fff;
    
    text-align: center;
    margin: 2px 0 2px 10px;
    animation: glowing 1300ms infinite;
    border: 2px solid #fff;
}

.sticky02 .fa-phone-square {
    background: #D00003;
    padding: 10px;
    border-radius: 100%;
    font-size: 28px;
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    margin: 2px 0 2px 10px;
    animation: glowing 1300ms infinite;
     border: 2px solid #fff;
}

.fa {
    display: inline-block;
    font: normal normal normal 12px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #7a2cff;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  transform: translateY(-4px);
}

/* Mobile */
@media (max-width: 768px) {
  #scrollTopBtn {
    bottom: 20px;
    right: 20px;
  }
}