.footer {
  padding: 3rem 5% 3rem;
  background: #fff;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.footer__logo {
  width: 200px;
  display: block;
}

.footer__logo a {
  display: block;
}

.footer__logo img {
  display: block;
  width: 100%;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

@media (orientation: landscape)  {
  .footer__menu {
    flex-direction: row;
   justify-content: space-between;
  align-items: center;
  }
  .footer__logo {
    width: 160px;
  }
  .footer__nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 66.66%;
  }

  .footer__col {
    width: 33%;
    display: flex;
    flex-direction: column;
  }
}

.footer__nav__link {
  color: var(--darkblue);
  margin: 0 0.5rem 0;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  padding: 0.75rem 1rem 0.5rem;
  border-radius: var(--radius);
}