  @media (max-width: 768px) {
    .redes_sociales_wrapper_developers {
      display: none !important;
    }
  }

  .redes_sociales_wrapper_developers {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    position: fixed;
    padding: 0 10px;
    top: 33%;
    z-index: 999;
  }

  .redes_sociales_wrapper_developers .redes_sociales_icon_developers {
    position: relative;
    background: #212830;
    border-radius: 50%;
    padding: 15px;
    margin: 4px 0;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .redes_sociales_wrapper_developers .redes_sociales_icon_developers em {
    font-size: 34px;
    color: #fff;
    transition: color 0.3s ease;
  }

  .redes_sociales_wrapper_developers .redes_sociales_tooltip_developers {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    background: #ffffff;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .redes_sociales_wrapper_developers .redes_sociales_tooltip_developers::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #ffffff;
  }

  .redes_sociales_wrapper_developers
  .redes_sociales_icon_developers:hover
  .redes_sociales_tooltip_developers {
    left: 65px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .redes_sociales_wrapper_developers .redes_sociales_linkedin_developers:hover {
    background: #0A66C2;
  }

  .redes_sociales_wrapper_developers
  .redes_sociales_linkedin_developers:hover em {
    color: #fff;
  }

  .redes_sociales_wrapper_developers .redes_sociales_github_developers:hover {
    background: #333333;
  }

  .redes_sociales_wrapper_developers
  .redes_sociales_github_developers:hover em {
    color: #fff;
  }

  .redes_sociales_wrapper_developers .redes_sociales_youtube_developers:hover {
    background: #CD201F;
  }

  .redes_sociales_wrapper_developers
  .redes_sociales_youtube_developers:hover em {
    color: #fff;
  }