:root {
  --azul: #03649c;
  --azul-oscuro: #013b5c;
  --rojo: #f54747;
  --rojo-oscuro: #800101;
  --verde: #27db5a;
  --verde-oscuro: #05541b;
  --negro: #0d0d0d;
}

body {
  font-family: "Nunito", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.sticky-social-container {
  padding: 0;
  margin: 0;
  position: fixed;
  top: 42%;
  width: 200px;
  z-index: 99;

  left: -155px;
}

.sticky-social-azul a {
  list-style: none;
  text-decoration: none;
  background-color: none;
  height: 46px;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: end;
  background-color: var(--azul);
  border-radius: 25px;

  transition: all 0.25s ease-in-out;
}

.sticky-social-azul a:hover {
  margin-right: -110px;
  background-color: var(--azul-oscuro);
}

.sticky-social-azul a i {
  margin: 0 10px;
  font-size: 28px;
  color: var(--azul-oscuro);
}

.sticky-social-azul a:hover i {
  color: var(--azul);
}

.sticky-social-azul a p {
  font-size: 1.1rem;
  color: var(--negro);
  font-weight: 900;
}


.sticky-social-rojo a {
  list-style: none;
  text-decoration: none;
  background-color: none;
  height: 46px;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: end;
  background-color: var(--rojo);
  border-radius: 25px;

  transition: all 0.25s ease-in-out;
}

.sticky-social-rojo a:hover {
  margin-right: -110px;
  background-color: var(--rojo-oscuro);
}

.sticky-social-rojo a i {
  margin: 0 10px;
  font-size: 28px;
  color: var(--rojo-oscuro);
}

.sticky-social-rojo a:hover i {
  color: var(--rojo);
}

.sticky-social-rojo a p {
  font-size: 1.1rem;
  color: var(--negro);
  font-weight: 900;
}


.sticky-social-verde a {
  list-style: none;
  text-decoration: none;
  background-color: none;
  height: 46px;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: end;
  background-color: var(--verde);
  border-radius: 25px;

  transition: all 0.25s ease-in-out;
}

.sticky-social-verde a:hover {
  margin-right: -110px;
  background-color: var(--verde-oscuro);
}

.sticky-social-verde a i {
  margin: 0 10px;
  font-size: 28px;
  color: var(--verde-oscuro);
}

.sticky-social-verde a:hover i {
  color: var(--verde);
}

.sticky-social-verde a p {
  font-size: 1.1rem;
  color: var(--negro);
  font-weight: 900;
}

@media only screen and (max-width: 1024px) {
  .sticky-social-container {
    left: -160px;
  }

  .sticky-social a {
    height: 36px;
  }

  .sticky-social a:hover {
    margin-right: -100px;
  }

  .sticky-social a i {
    font-size: 22px;
  }
}