* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

@font-face {
  font-family: "Open Sans";
  src: url(../fonts/open-sans.ttf);
   font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Regular.ttf);
   font-display: swap;
}

@font-face {
  font-family: "Roboto bold";
  src: url(../fonts/Roboto-Bold.ttf);
   font-display: swap;
}

:root {
  --fuente-texto: "Open Sans";
  --fuente-titulos: "Roboto";
  --fuente-titulos-bold: "Roboto bold";
}

/* Footer */
footer {
  background-color: #0d5519;
  width: 100%;
  overflow: hidden;
}

footer > .contenedor {
  padding: 25px 80px 0px 80px;
  overflow: hidden;
  font-family: var(--fuente-texto);
}

footer ul {
  padding: 0px;
  margin-bottom: 10px !important;
}

footer a:hover {
  text-decoration: underline !important;
}

footer b {
    font-family: var(--fuente-titulos-bold) !important;
    font-weight: normal !important ;
}

footer > .contenedor > .superior {
  position: relative;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}

footer > .contenedor > .superior > .contenedor-item-1,
footer > .contenedor > .superior > .contenedor-item-2 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

footer > .contenedor > .superior > .contenedor-item-1 > .item-1,
footer > .contenedor > .superior > .contenedor-item-2 > .item-2 {
  width: 200px;
  color: #fff;
}

footer > .contenedor > .superior > .contenedor-item-1 > .item-1 > h1,
footer > .contenedor > .superior > .contenedor-item-2 > .item-2 > h1 {
  position: relative;
  width: 200px;
  font-size: 20px;
  /*font-weight: bold;*/
  padding-bottom: 7px;
  border-bottom: solid 1px #fff;
  font-family: var(--fuente-titulos-bold);
}

footer > .contenedor > .superior > .contenedor-item-1 > .item-1 li,
footer > .contenedor > .superior > .contenedor-item-2 > .item-2 li {
  list-style: none;
  margin-top: 12px;
  text-align: left;
  color: #fff !important;
  font-size: 16px;
}

footer > .contenedor > .superior > .contenedor-item-1 > .item-1 li a {
  color: #fff !important;
  font-size: 16px;
}

footer > .contenedor > .superior > .contenedor-item-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 50px;
}
footer > .contenedor > .superior > .contenedor-item-3 > .item-3 {
  width: 241px;
}

footer > .contenedor > .superior > .contenedor-item-3 > .item-3 > .iconos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer > .contenedor > .superior > .contenedor-item-3 > .item-3 > .iconos a {
  border-radius: 100px;
}

footer > .contenedor > .superior > .contenedor-item-3 > .item-3 > .iconos div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: solid 2px #fff;
  border-radius: 100px;
  box-shadow: 0px 4px 4px 0px #00000040;
  background-color: transparent;
}

.iconos a:nth-child(1):hover {
  background-color: #3b5998;
}

.iconos a:nth-child(2):hover {
  background-color: #00acee;
}

.iconos a:nth-child(3):hover {
  background: -webkit-linear-gradient(
    45deg,
    #fccc66 0%,
    #dd3569 45%,
    #dd3569 55%,
    #515cd2 100%
  );
}

.iconos a:nth-child(4):hover {
  background-color: #25d366;
}

.iconos a:nth-child(5):hover {
  background-color: #c4302b;
}

footer > .contenedor > .superior > .contenedor-item-3 > .item-3 > .logos {
  display: flex;
  align-items: center;
  margin-top: 39px;
}

footer > .contenedor > .superior > .contenedor-item-3 > .item-3 > .logos img {
  height: 82px;
}

footer
  > .contenedor
  > .superior
  > .contenedor-item-3
  > .item-3
  > .logos
  img:last-of-type {
  width: 57px;
  height: 57px;
}

footer > .contenedor > .superior > .contenedor-item-4 {
  position: relative;
  overflow: hidden;
  height: 240px;
}

footer > .contenedor > .superior > .contenedor-item-4 > .item-4 > iframe {
  position: absolute;
}

footer > .inferior {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 60px;
  color: #fff;
  border-top: solid 1px #fff;
  font-size: 20px;
}

footer > .inferior h1,
footer > .inferior b {
  font-size: 20px;
  font-family: var(--fuente-texto);
}
/* Footer */
@media only screen and (max-width: 1130px) {
  footer > .contenedor > .superior {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    row-gap: 20px;
  }
}

@media only screen and (max-width: 652px) {
  footer > .contenedor {
    padding: 10px;
  }
  footer > .contenedor > .superior {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
    row-gap: 20px;
  }
  footer > .contenedor > .superior > .contenedor-item-1,
  footer > .contenedor > .superior > .contenedor-item-2,
  footer > .contenedor > .superior > .contenedor-item-3 {
    align-items: center;
    padding: 0;
  }
}
