body{
  font-family: 'Raleway', sans-serif !important;
  overflow-x: hidden;
  font-weight: 600;
}
ul{
  margin: 0;
  padding: 0;
}
li{
  list-style: none;
}
a{
  text-decoration: none;
  color:#000;
}
.roundend-img{
  border-radius: 120px;
  transform: scale(1);
  transition: all .2s;
}
.roundend-img:hover{
  transform: scale(1.05);
}
.wp{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 15px;
  border-radius: 60px;
  border: coral;
  border: 2px solid #05cf65;
  margin-bottom: 6em;
}
.wp-stick, .chat-stick{
  position: fixed;
  bottom: 20px;
}
.wp-stick{
  left: 1em;
}
.chat-stick{
  right: 1em;
}
.anim{
  position: relative;
}
.anim span{
  position: absolute;
  bottom: -3px;
  width: 20%;
  height: 9px;
  background: #8245e6;
  right: 49px;
  border-radius: 80px;
  -webkit-animation: animate 1s infinite linear;
}
.anim span.twitter-bg{
  background: #0392ff;
}
.anim span.instagram-bg{
  background: #fa408b;
}
.anim span.youtube-bg{
  background: #cd0102;
}
.anim span.tiktok-bg{
  background: #020106;
}
.anim span.facebook-bg{
  background: #2e21a0;
}
@media screen and (max-width: 990px) {
  .roundend-img{
      width: 100%;
      border-radius: 0;
    }
}
@keyframes animate {
  0% {
    right: 25px;
  }
  50% {
    right: 50px;
  }
  100% {
    right: 25px;
  }
}