.footer {
  background-color: #ba0a3b;
  padding: 60px 0 100px;
}

.footer .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer_logo {
  background: url('../images/footer/logo_footer.png') center/contain no-repeat;
  aspect-ratio: 266/40;
  width: 226px;
  height: auto;
  display: block;
  text-indent: -5000em;
  margin-bottom: 15px;
}

.footer_social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer_social a {
  text-indent: -5000em;
  display: block;
  width: 27px;
  height: 27px;
}

.footer_social .instagram {
  background: url('../images/footer/instagram_white.svg') no-repeat center/ contain;
}

.footer_social .facebook {
  background: url('../images/footer/facebook_white.svg') no-repeat center/ contain;
}

.footer_social .youtube {
  background: url('../images/footer/youtube_white.svg') no-repeat center/ contain;
}

.footer_social .linkedin {
  background: url('../images/footer/linkedin_white.svg') no-repeat center/ contain;
}

.footer_col_title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
}

.footer_col_list {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  list-style: none;
  color: white;
}

.footer_col_list a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 860px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 4rem;
  }
}