.main__footer {
  margin-top: auto;
  color: var(--color-white);
  background: radial-gradient(145.97% 280.18% at 100% 120.54%, #35356C 0%, #ED5226 59.13%);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4rem 0 2rem 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 200px;
}

.footer-logo img {
  display: block;
  height: auto;
  max-width: 160px;
}

.footer-middle {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

.footer-column p {
  margin: 0;
  font-size: var(--content-size-s);
  line-height: 1.6;
}

.footer-nav .menu--level-0 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav .menu--level-0 > .menu__item > a.menu__link {
  font-weight: 700;
  font-size: var(--content-size-s);
  text-decoration: none;
}

.footer-nav .menu--level-0 > .menu__item:not(.menu__item--expanded) > a.menu__link {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-nav .menu--level-0 > .menu__item:not(.menu__item--expanded) > a.menu__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.footer-nav .menu--level-0 > .menu__item:not(.menu__item--expanded):hover > a.menu__link::after {
  width: 100%;
}

.footer-nav .menu--level-1 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-nav .menu--level-1::before {
  content: unset;
}

.footer-nav .menu--level-1 > .menu__item > a.menu__link {
  position: relative;
  display: inline-block;
  font-size: var(--content-size-s);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav .menu--level-1 > .menu__item > a.menu__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.footer-nav .menu--level-1 > .menu__item:hover > a.menu__link::after {
  width: 100%;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.footer-nav-secondary .menu--level-0 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav-secondary .menu--level-0 > .menu__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
}

.footer-nav-secondary .menu--level-0 > .menu__item > a.menu__link {
  position: relative;
  display: inline-block;
  font-size: var(--content-size-s);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-secondary .menu--level-0 > .menu__item > a.menu__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.footer-nav-secondary .menu--level-0 > .menu__item:hover > a.menu__link::after {
  width: 100%;
}

.footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  align-items: center;
  justify-content: center;
}

.footer-partners img {
  width: auto;
  display: block;
}

@media (min-width: 750px) {
  .footer-content {
    gap: 2rem;
    justify-content: space-between;
    padding: 5.75rem 0 2rem 0;
  }

  .footer-nav .menu--level-0 {
    flex-direction: row;
    gap: 3rem;
  }

  .footer-nav-secondary .menu--level-0 {
    flex-direction: row;
  }

  .footer-nav-secondary .menu--level-0 > .menu__item + .menu__item::before {
    content: "-";
  }

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

  .footer-partners {
    justify-content: flex-end;
  }
}

@media (min-width: 1350px) {
  .footer-nav .menu--level-0 {
    flex-wrap: unset;
    gap: 6rem;
  }
}

@media (min-width: 1600px) {
  .footer-middle {
    flex-direction: row;
    gap: 6rem;
  }
}