/*social media icon */

       .social-sidebar {
      position: fixed;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      z-index: 1000;
    }

    .social-icon {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      margin: 6px 0;
      background-color: #444;
      border-radius: 50%;
      text-decoration: none;
      color: white;
      transition: 0.3s;
    }

    .social-icon:hover,
    .social-icon:focus,
    .social-icon:active {
      background-color: #555;
      transform: scale(1.1);
    }

    .social-icon .label {
      position: absolute;
      right: 60px;
      background: #e74c3c;
      color: #fff;
      padding: 5px 12px;
      border-radius: 4px;
      font-size: 14px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: 0.3s ease;
      transform: translateY(-50%);
      top: 50%;
    }

    .social-icon:hover .label,
    .social-icon:focus .label,
    .social-icon:active .label {
      opacity: 1;
    }

    .social-icon i {
      font-size: 18px;
    }
/*social media icon end*/