.footer {
  background: var(--ft_color);
  position: relative;
  width: 100%;
  bottom: 0px;
  height: 20em;
}

.footer-content {
  background: var(--ft_color);
  color: var(--sec_color);
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap-reverse;
  margin: 0em 2em;
}

.footer-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.footer-left img {
  position: relative;
  top: -2em;
}

.social-media {
  margin: 20px 0;
}

.social-media a {
  color: var(--sec_color);
}

.social-media .fab {
  font-size: 1.45em;
  background: var(--ft_b_color);
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s;
  cursor: pointer;
}

.social-media .fab:hover {
  background: var(--main_color);
}

.footer-bottom {
  background: var(--ft_b_color);
  height: 30px;
  width: 100%;
  position: relative;
  bottom: 0px;
  left: 0px;
  padding-top: 10px;
}

.rights {
  color: #888;
  text-align: center;
  line-height: 10px;
}

/*
  Right
*/

.footer-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.footer-content h2 {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  top: -30px;
}

.footer-content .contact-underline {
  height: 3px;
  width: 170px;
  border-radius: 10px;
  background: var(--main_color);
  position: relative;
  top: -30px;
}

.footer-right .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-right .content .fas {
  font-size: 1.45em;
  background: var(--ft_b_color);
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s;
  cursor: default;
  margin: 8px;
}

.footer-right .content .contacto {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer-right .content .text {
  font-size: 1rem;
  font-weight: 500;
  padding-left: 12px;
  float: right;
}

.footer-right .content .fas:hover {
  background: var(--main_color);
}

/*
  Diferentes resoluciones
*/

@media (max-width: 45em) {
  .footer-content {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-around;
    margin: 5px 0px 0px 0px;
    height: 37.5em;
  }

  .footer-right {
    width: 18.75em;
  }
}
