.footer {
  position: relative;
  background: var(--cool_grey);
  margin-top: 50px;
  padding: 20px 0;
  box-sizing: border-box;
}

.footer a {
  color: var(--dark_blue);
  text-decoration: underline;
  text-underline-position: under;
}

.footer .footer_row {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

@media (max-width: 800px) {
  .footer .footer_row {
    flex-wrap: wrap;
  }
}

.footer .footer_col {
  box-sizing: border-box;
  text-align: center;
  min-width: 0;
  padding: 0 20px;
}

.footer .footer_col_1 {
  flex: 0 0 22%;
}

.footer .footer_col_2 {
  flex: 0 1 56%;
  padding: 30px 20px;
}

.footer .footer_col_3 {
  flex: 0 0 22%;
}

@media (max-width: 800px) {
  .footer .footer_col {
    flex: 0 0 100%;
    text-align: center;
    padding: 20px 10px;
  }
}

.footer .logo_cont {
  padding-top: 30px;
}

.footer .logo_link {
  text-align: center;
}

.footer .logo {
  max-width: 200px;
  width: 100%;
  height: auto;
}

.footer .atsi img.flag {
  height: 80px;
  margin: 0 10px;
}

.footer .atsi_text {
  margin-top: 30px;
}

.footer .inclusive {
  padding: 30px 20px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer .inclusive img.flag {
  width: 45px;
  height: 30px;
}

.footer .footer_social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  margin: 20px 0 0;
  padding: 0 10px;
  font-size: 0.9em;
  text-align: center;
}

.footer .footer_social a {
  display: block;
}

.footer .footer_social img {
  display: block;
  width: 50px;
  height: 50px;
}

.footer .footer_links {
  width: 100%;
  margin: 30px 0 0;
  padding: 0 10px;
  text-align: center;
}

.footer .footer_link {
  display: inline-block;
  padding: 10px;
  font-size: 0.9em;
}

.footer .footer_bottom {
  width: 100%;
  margin: 30px 0 30px;
  padding: 0 10px;
  font-size: 0.9em;
  text-align: center;
}

