@font-face {
  font-family: "Ruda";
  src: url("../fonts/Ruda-Regular.ttf") format("truetype");
  font-weight: 600 500 400 700;
  font-style: normal;
}
h2 {
  all: unset;
  display: block;
}
footer {
  display: flex;
  flex: 1;
  justify-content: space-evenly;
  align-items: center;
  color: rgb(74, 74, 74);
  gap:20px;
  bottom: 0;
  width: 100%;
  padding: 10% 10px;
}
footer article h2 {
  font-size: 18px;
  font-family: "Ruda", sans-serif;
  font-weight: 500;
  border-bottom: 2px solid #00124d;
}

footer article {
  max-width: 400px;
  min-width: 250px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
footer article ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer article ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 5px;
  flex: 1;
  align-items: center;
}
footer article ul li a {
  text-decoration: none;
  font-size: 15px;
  font-family: "Ruda", sans-serif;
  font-weight: 600;
  line-height: 27px;
  display: block;
  color: rgb(74, 74, 74);
  
}
footer article ul li a:hover {
  color: rgb(215, 6, 2);
}
footer div p {
  font-size: 15px;
  font-family: "Ruda", sans-serif;
  font-weight: 400;
  line-height: 27px;
  margin-top: 10px;
}

footer article img{
    max-width: 300px;
    padding: 5px;
    height: auto;
}
@media (max-width: 768px) {
    footer {
        display: flex;
        flex-direction: column;
        gap:30px;
        height: auto;
      }
  }

  @media (max-width: 425px) {
    footer div p {
        font-size: 12px;
      }
      footer article ul li a {
        font-size: 12px;
      }
      footer article img{
        max-width: 200px;
        height: auto;
    }
    .descripcion-footer{
      padding: 0 5px;
    }
  }