/**
 * @file
 * The footer components.
 *
 * It includes styles for the footer itself and its
 * components.
 */


/**
 * Global footer rules
 */

.region-footer {
  background-color: #0A184D;
}
.footer {
  position: relative;
}
.footer__content {
  display: flex;
  flex-direction: column;
  padding-top: 29px;
  padding-bottom: 50px;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
}
@media all and (min-width:1600px) {
  .footer__content {
    display: flex;
    align-items: center;
    gap: 8%;
    justify-content: center;
  }
}


/**
 * Content (logo, contact and social menu)
 */

.footer__logo {
  position: relative;
}
.footer__logo img{
  width: 237px;
  height: auto;
}
.footer__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin-top: 27px;
}
.footer__contact::before {
  content: '';
  background-image: url("../images/icons/envelope_icon.svg");
  width: 31px;
  height: 22px;
  margin-right: 10px;
  background-repeat: no-repeat;
}
.footer__contact a:hover {
  border-bottom: solid 2px #FFDC40;
  transition-duration: 0.10s;
}
.footer__contact a {
  color: #FFDC40;
}
.footer__social-menu {
  margin-top: 27px;
}
.footer__social-menu ul.menu {
  display: flex;
  margin-left: 0;
  height: 37px;
  width: 144px;
  justify-content: space-around;
}
.footer__social-menu .menu__icon--linkedin,
.footer__social-menu .menu__icon--facebook,
.footer__social-menu .menu__icon--youtube,
.footer__social-menu .menu__icon--instagram {
  background-size: contain;
}
.footer__link {
  margin-top: 67px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer__link a:hover {
  border-bottom: solid 2px #FFDC40;
  transition-duration: 0.10s;
}
.footer__link a {
  color: white;
}
.footer__content::before {
  content: '';
  position: absolute;
  display: block;
  background-color: #FFDC40;
  height: 3px;
  width: 95px;
  top: 67%;
  transform: translatex(50%);
  right: 50%;
}
@media all and (min-width:1600px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-around;
  }
  .footer__content::before {
    content: none;
    background-image: none;
  }
  .footer__logo::after {
    content: '';
    position: absolute;
    display: block;
    background-color: #FFDC40;
    height: 68px;
    width: 3px;
    top: 50%;
    transform: translateY(-50%);
    right: -40%;
  }
  .footer__contact,
  .footer__social-menu  {
    margin-top: 0;
  }
  .footer__link {
    margin-top: 0;
    text-align: left;
    align-items: baseline;
  }
  .footer__link::before {
    content: none;
    background-image: none;
    background-position: center;
    background-size: 0;
    width: 0;
    height: 0;
    margin-bottom: 0;
  }
}
