/* Footer */

.footer {
  background-color: #e6e7e8;
  padding: 40px;
  font-family: Arial, sans-serif;
  color: #333;
}

.footer-grid-container {
  max-width: 1300px;
  margin: auto;
}

.footer-grid-container-top {
  border-bottom: 2px solid #21285f;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.mobile-footer {
  display: none !important;
}

.footer-logo-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  margin: auto;
  gap: 10px;
}

.footer-logo-wrapper a {
  width: calc((100% / 7) - 20px);
}

.footer-logo {
  width: 100%;
  object-fit: contain;
}

.footer-wrapper h2,
.footer-wrapper a,
.footer-wrapper p {
  text-align: center;
  text-decoration: none;
}

.footer-wrapper h2 {
  font-size: 24px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  color: #21285f;
}

.footer-wrapper p {
  margin: auto;
}

/* Channel list */

.location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
  font-size: 14px !important;
}

.location a {
  color: #333;
}

/* Footer layout */

.footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 120px;
}

.footer-column {
  width: 24%;
}

.footer-dropdown {
  margin-bottom: -2px;
}

/* Tablet */

@media only screen and (max-width: 980px) {

  .footer-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }

}

/* Mobile */

@media only screen and (max-width: 580px) {

  .footer-wrapper {
    gap: 2rem;
  }

  .footer-column {
    width: 100%;
  }

  .footer-dropdown {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: auto auto 0.5rem !important;
  }

}

/* Logo responsiveness */

@media only screen and (max-width: 1100px) {

  .footer-logo-wrapper.mobile-footer {
    display: flex !important;
  }

  .footer-logo-wrapper a {
    width: calc((100% / 4) - 10px);
  }

}

@media only screen and (max-width: 580px) {

  .footer-logo-wrapper a {
    width: calc((100% / 3) - 10px);
  }

}