/*
General styling
*/
footer .container {
  max-width: min(1600px, calc(100% - 0px));
}

footer .parent {
  justify-content: center;
  display: flex;
  margin: auto 0;
}

footer .logo {
  max-width: 100%;
  margin: 0 auto 40px;
}

footer .logo img {
  max-width: 100% !important;
}

footer p {
  text-transform: uppercase;
  line-height: 2;
  font-weight: inherit;
}

footer a {
  text-decoration: none;
  font-weight: inherit;
  text-transform: uppercase;
  transition: all 0.3s ease-out;
}

/*
Unordered Lists (menus)
*/
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

footer ul > li {
  display: block;
}

footer ul > li > a {
  padding: 10px 0;
  display: inline-block;
}

/*
Tables
*/

footer table {
  width: 100%;
}

footer table tbody th {
  text-align: left;
}

footer table tbody tr td {
  text-transform: uppercase;
  line-height: 2;
}

footer table.opening-hours tbody tr td:last-child {
  text-align: right;
}

/*
Social icons
*/
footer .social {
  margin-top: 50px;
  padding: 0;
  flex-flow: row wrap;
  display: flex;
  gap: 25px;
}

footer .social a {
  text-decoration: none;
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

footer .social .footer-instagram{
  font-size:32px;
}

footer .social .footer-trustpilot{
  font-size:32px;
}

/* Fix for hovering issue in Safari */
footer .social a span {
  margin: 0 -2px;
}

/* Fix for hovering issue in Safari */
footer .social a span:before {
  padding: 0 2px;
}

  /*
  Columns
  */
footer .parent > div:first-child {
  flex: 0 0 360px;
  max-width: 100%;
  padding: 60px 30px 60px;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer .parent > .columns {
  display: flex;
  flex: 1 0 100px;
  flex-flow: row wrap;
  align-content: center;
  max-width: 100%;
}

footer .parent > .columns > div {
  padding: 30px;
  max-width: 100%;
  flex: 1;
}

@media screen and (max-width: 850px) {
  footer .parent {
    column-gap: 30px;
  }

  footer .parent > div:first-child {
    padding-bottom: 45px;
    margin-right: 0;
    text-align: center;
  }

  footer .social {
    justify-content: center;
  }

  footer .parent > .columns {
    flex-basis: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-flow: column;
    align-items: center;
    text-align: center;
    max-width: 360px;
  }

  footer table tbody td {
    text-align: left;
  }

  footer .parent > .columns > div {
    padding: 15px 0;
    min-width: 100%;
  }
}
