footer {
  background-color: var(--midnightBlue);
  color: white;
  padding-top: 60px;
  z-index: 2;
  position: relative;
  text-align: center;
}

.copyright {
  font-size: 14px;
  text-align: center;
  font-weight: 300;
  padding: 16px 0;
}

.copyright a {
  color: white;
}

.certification {
  max-width: 236px;
}

.certification > a > img {
  max-height: 90px;
}
.certification > img {
  position: relative;
  left: -10px;
  max-height: 120px;
}

.slogan {
  font-size: 14px;
  font-weight: 300;
  border-bottom: solid 1px white;
  padding-bottom: 6px;
  margin: 14px 0;
}

.footerContent {
  margin-bottom: 75px;
  display: flex;
  justify-content: space-between;
}

.footerLinks {
  display: flex;
  min-width: 800px;
  gap: 42px;
}

.footerLinks a {
  color: white;
  text-decoration: none;
}

.footerLinks a:hover {
  text-decoration: underline;
}

.footerLinks > * {
  flex-basis: 33.33%;
  display: flex;
  gap: 28px;
  flex-direction: column;
}

.footerLinks p {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
}

.footerLinks ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.operator ul {
  gap: 28px;
}

@media screen and (max-width: 1280px) {
  footer {
    padding: 42px 15px 0;
  }

  .footerContent, .footerLinks {
    flex-direction: column;
    gap: 28px;
  }

  .footerContent {
    align-items: center;
    margin-bottom: 42px;
  }

  .footerLinks {
    min-width: initial;
  }

  .certification, .footerLinks > * {
    text-align: center;
  }

  .certification > img {
    left: initial;
  }
}