/* Footer Styles */

.footer {
  background-color: #ffffff;
  color: #000;
  position: relative;
  z-index: 100;
}

.footer__content {
  padding: 4rem 2rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer__columns {
  display: -webkit-grid;
  display: grid;
  -webkit-grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  -webkit-grid-gap: 2.5rem;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  justify-content: center;
}

.footer__column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 2rem;
}

.footer__title {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  margin: 0 0 1.25rem 0;
  color: #000;
  text-transform: uppercase;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.75rem;
  -webkit-grid-gap: 0.75rem;
}

.footer__link {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.2s ease;
  transition: color 0.3s ease, -webkit-transform 0.2s ease;
  -o-transition: color 0.3s ease, transform 0.2s ease;
  transition: color 0.3s ease, transform 0.2s ease;
  transition: color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  display: inline-block;
}

.footer__link:hover,
.footer__link:focus {
  color: #000;
}

.footer__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5rem;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 49, 82, 0.1);
  font-size: 0.8rem;
}

.footer__copyright {
  font-family: "NimbusRomNo9L-Reg", serif !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
  color: #000 !important;
}

.footer__logo img {
  height: 24px;
  width: auto;
  display: block;
}

.link--io {
  position: relative;
  display: inline-block;
  font-family: "NimbusRomNo9L-Reg", serif;
  text-decoration: none;
  color: inherit;
}

.link--io::before,
.link--io::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: currentColor;
  top: calc(100% + 2px);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.7, 0, 0.2, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.7, 0, 0.2, 1);
  -o-transition: transform 0.5s cubic-bezier(0.7, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.2, 1),
    -webkit-transform 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.link--io::before {
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

.link--io::after {
  -webkit-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  top: calc(100% + 6px);
}

.link--io:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
  -o-transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
  transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
}

.link--io:hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
  -o-transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
  transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
}

@supports not (display: grid) {
  .footer__columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer__column {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 200px;
    -ms-flex: 1 1 200px;
    flex: 1 1 200px;
    margin-right: 2.5rem;
  }

  .footer__column:last-child {
    margin-right: 0;
  }
}

/* Desktop */
@media screen and (min-width: 1141px) {
  .footer__columns {
    -webkit-grid-template-columns: repeat(6, 1fr);
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
    -webkit-grid-gap: 3rem;
    margin-left: 6rem;
    justify-content: center;
  }

  .footer__content {
    padding: 5rem 3rem 2rem;
  }

  @supports not (display: grid) {
    .footer__columns {
      margin-left: 6rem;
    }

    .footer__column {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -ms-flex: 1;
      flex: 1;
      margin-right: 3rem;
    }
  }
}

/* Large Tablet */
@media screen and (max-width: 1140px) and (min-width: 768px) {
  .footer__columns {
    -webkit-grid-template-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    -webkit-grid-auto-flow: column;
    grid-auto-flow: column;
    row-gap: 1.5rem;
    -webkit-row-gap: 1.5rem;
    column-gap: 2rem;
    -webkit-column-gap: 2rem;
  }

  .footer__column {
    margin-bottom: 0rem;
  }

  .footer__content {
    padding: 4rem 3.5rem 3.5rem;
  }

  .footer__title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer__link {
    font-size: 1rem;
  }

  .link--io::before,
  .link--io::after {
    display: none;
  }

  @supports not (display: grid) {
    .footer__columns {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
    }

    .footer__column {
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 50%;
      -ms-flex: 1 1 50%;
      flex: 1 1 50%;
      margin-right: 2rem;
    }
  }
}

/* Small Tablet */
@media screen and (max-width: 820px) and (min-width: 768px) {
  .footer__content {
    padding: 3.5rem 3.5rem 3.5rem;
  }

  .link--io::before,
  .link--io::after {
    display: none;
  }
}

/* Mobile */
@media screen and (max-width: 767px) {
  .footer__columns {
    display: -webkit-grid;
    display: grid;
    -webkit-grid-template-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
    -webkit-row-gap: 1.5rem;
    -webkit-box-pack: center;
    -webkit-justify-items: center;
    justify-items: center;
  }

  .footer__column {
    width: 300px;
    max-width: 90%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer__column {
    margin-bottom: 0rem;
  }

  .footer__content {
    padding: 2.5rem 2.5rem 2.5rem;
  }

  .footer__title {
    font-size: 1rem;
    margin-bottom: 0.875rem;
  }

  .footer__link {
    font-size: 1rem;
  }

  .footer__links {
    gap: 0.75rem;
    -webkit-grid-gap: 0.75rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    -webkit-grid-gap: 1rem;
    text-align: center;
    padding: 1rem 1.5rem;
  }

  .footer__copyright {
    font-size: 0.75rem;
  }

  .footer__logo img {
    height: 20px;
  }

  .link--io::before {
    top: calc(100% + 0px);
  }

  .link--io::after {
    top: calc(100% + 4px);
  }

  .link--io::before,
  .link--io::after {
    display: none;
  }

  @supports not (display: grid) {
    .footer__columns {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
    }

    .footer__column {
      margin-right: 0;
      margin-bottom: 1.5rem;
    }
  }
}