.sevio-footer {
  margin-top: auto;
  padding: 11.25rem 3rem 8rem;
  background: var(--black);
  color: var(--gray);
}

.sevio-footer .footer-wrapper {
  max-width: var(--max-screen-width);
  margin-inline: auto;
  box-sizing: border-box;
}

.sevio-footer .divider-line {
  margin-block: 2rem 3rem;
  width: 100%;
  border: none;
  border-top: 1px solid var(--dark-gray);
}

.footer-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer-top-right-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 2.375rem;
}

.footer-top .footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-top .footer-column.footer-logo-column,
.footer-top .footer-logo-column .footer-title {
  max-width: 21.5rem;
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-column .footer-heading {
  text-transform: uppercase;
  color: var(--light-gray);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-l);
  line-height: 1.5rem;
  letter-spacing: 0.5rem;
  margin-block: 0 2rem;
}

.footer-column .footer-list li a {
  display: inline-block;
  text-decoration: none;
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-l);
  line-height: 1.5rem;
  color: var(--gray);
  white-space: nowrap;
  transition: all 0.2s ease-in;
}

.footer-bottom .social-link,
.footer-column .product-link {
  text-decoration: none;
}

.footer-bottom .social-link img:hover,
.footer-column .product-link img:hover {
  filter: invert(99%) sepia(3%) saturate(8%) hue-rotate(99deg) brightness(200%)
    contrast(100%);
  transition: all 0.2s ease-in-out;
}

.footer-list li a:hover {
  color: var(--white);
}

.footer-column .footer-title {
  margin-block: 2rem 1rem;
  line-height: 1.5rem;
  font-size: var(--font-size-l);
  color: var(--light-gray);
  font-weight: var(--font-weight-bold);
  width: 100%;
}

.footer-column .footer-description {
  font-weight: var(--font-weight-regular);
  color: var(--gray);
  font-size: var(--font-size-l);
  line-height: 1.5rem;
  margin-bottom: 2rem;
  width: 100%;
}

.footer-bottom .social-links-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.careers-link {
  display: flex;
  gap: 1rem;
}

.footer-list li {
  margin-bottom: 1rem;
}

.footer-list .hiring-status {
  font-weight: var(--font-weight-regular);
  background: var(--blue);
  padding-inline: 0.5rem;
  color: var(--white);
  font-size: var(--font-size-xm);
  line-height: 1.1875rem;
  border-radius: var(--border-radius);
  height: max-content;
}

/* Responsive */

@media only screen and (max-width: 1366px) {
  .footer-column {
    max-width: 10rem;
    width: 100%;
  }

  .sevio-footer {
    padding: 8rem 3rem 5rem;
  }
}

@media only screen and (max-width: 1200px) {
  .sevio-footer {
    padding: 5rem 1.5rem 3rem;
  }

  .footer-top {
    gap: 2.6rem;
    justify-content: space-between;
  }

  .footer-top-right-section {
    gap: 2rem;
    justify-content: space-between;
  }

  .footer-top .footer-logo-column .footer-title {
    max-width: 17.5rem;
    width: 100%;
  }
}

@media only screen and (max-width: 1080px) {
  .footer-top .footer-column.footer-logo-column,
  .footer-top .footer-logo-column .footer-title {
    width: 100%;
    max-width: 100%;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: initial;
    row-gap: 4rem;
    column-gap: 4rem;
  }
}

@media only screen and (max-width: 960px) {
  .footer-top {
    column-gap: normal;
  }
}

@media only screen and (max-width: 767px) {
  .sevio-footer {
    padding: 4rem 1.5rem 3rem;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: initial;
  }
}

@media only screen and (max-width: 480px) {
  .footer-column {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .sevio-footer {
    padding: 4rem 1rem 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
