/* --- Estilos del Pie de Pagina --- */
footer{
  width: 100%;
  background-color: #F5EA46;
}
.contFooter{
  width: 70%;
  margin: auto;
}
.supFoot{
  width: 100%;
  min-height: 2rem;
  display: grid;
  grid-template-columns: 70% 30%;
  background-color: #F2C51E;
}
.supFoot-izq{
  padding: 1rem;
}
.supFoot-izq ul{
  list-style: none;
  margin: 0.5rem;
}
.supFoot-izq ul li{
  padding: 0.3rem;
}
.supFoot-der span{
  position: relative;
  right: 0;
  margin: 0.5rem;
  font-size: 1.5rem;
  display: block;
  text-align: center;
  border-radius: 50%;
  transition: all 0.5s;
}
.textoSolo{
  font-size: 1rem;
  padding-top: 1rem;
  text-align: center;
}
.socialIcons{
  display: flex;
  justify-content: space-around;
}
#facebook:hover{background-color: #3b5998;}
#twitter:hover{background-color: #1DA1F2;}
.supFoot span a{
  color: #fff;
  text-decoration: none;
  display: block;
  min-width: 60px;
  min-height: 60px;
  padding: 1rem;
}
.infFoot{
  display: flex;
  justify-content: space-around;
  padding-top: 0.5rem;
  background-color: #F2A21A;
}
.infFoot span{
  padding: 0.5rem;
  margin: 0.5rem;
}
.infFoot span a{
  color: rgb(50, 50, 50);
  text-decoration: none;
}
.infFoot span a:hover{
  text-decoration: underline;
}
#topBack{
  color: #000;
  display: inline-block;
  width: max-content;
  min-width: unset;
  min-height: unset;
  padding: 0;
  margin: 0.5rem auto auto 1.5rem;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all ease 0.3s;
}
#topBack >span{
  color: #fff;
}
@media only screen and (max-width: 750px) {
  .contFooter{
    position: relative;
  }
  span{
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .supFoot{
    display: block;
    /*grid-template-columns: initial;
    grid-template-rows: 70% 30%;*/
  }
  .supFoot-izq{
    margin: auto;
  }
  .infFoot{
    text-align: center;
  }
}
@media only screen and (max-width: 484px) {
  .contFooter{
    width: 100%;
  }
}
@media only screen and (max-width: 300px) {
  .contFooter{
    text-align: center;
  }
  .infFoot{
    display: block;
  }
  .infFoot span{
    display: block;
    margin: 0;
  }
}
