.bg-footer {
    background-color: rgb(51, 69, 85);
}

.img-circulo {
    width: 64px;
}

.hover:hover {
    opacity: 50%;

}

.texto-enlace {
    position: absolute;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* BOTON IDIOMAS */


.switch input {
    display: none;
  }
  

  .switch {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 34px;
  }
  

  .switch label {
    background-image: url(img/españa_switch.png);
    background-size: cover;
    background-position: center;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 34px;
    cursor: pointer;
    transition: background-image 0.3s;
  }
  

  .switch label::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 26px;
    height: 26px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
  }
  

  .switch input:checked + label {
    background-image: url(img/ingles_switch.png);
  }
  
  .switch input:checked + label::after {
    transform: translateX(26px);
  }