
    .contact_icons {
        position: fixed;
        left: 20px;
        bottom: 10px;
        z-index: 999;
        width: 50px;
        text-align: center;
      }
  
      .contact_icons a {
        width: 70px;
        height: 70px;
        border-radius: 100%;
        text-align: center;
        line-height: 48px;
        font-size: 24px;
        color: #fff;
        background: #edac15;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16), 0px 3px 10px rgba(0, 0, 0, 0.16);
        clear: both;
        margin-bottom: 10px;
        display: inline-block;
      }
  
      .contact_icons a.whatsapp-icon {
        background: #2DC100;
        font-size: 49px;
        overflow: hidden;
        animation-duration: 1s;
        animation-timing-function: ease;
        animation-delay: 0s;
        animation-iteration-count: infinite;
        animation-direction: normal;
        animation-fill-mode: none;
        animation-play-state: running;
        animation-name: pulse2;
        color: #fff;
      }
  
      a.whatsapp-icon i {
        margin-top: 9px;
      }
  
      @-webkit-keyframes pulse2 {
        0% {
          -webkit-box-shadow: 0 0 0 0 #2DC100;
          box-shadow: 0 0 0 0 #2DC100;
        }
  
        100% {
          -webkit-box-shadow: 0 0 0 20px rgba(21, 101, 192, 0);
          box-shadow: 0 0 0 20px rgba(21, 101, 192, 0);
        }
      }
  
      @keyframes pulse2 {
        0% {
          -webkit-box-shadow: 0 0 0 0 #2DC100;
          box-shadow: 0 0 0 0 #2DC100;
        }
  
        100% {
          -webkit-box-shadow: 0 0 0 20px rgba(21, 101, 192, 0);
          box-shadow: 0 0 0 20px rgba(21, 101, 192, 0);
        }
  
  
      }
  
      .mobile {
        display: none;
      }
  
      @media (max-width: 920px) {
        .pc {
          display: none;
        }