@import url('../../assets-custom/root.css');

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--ea-primary-color);
}

.footer-row-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  border-bottom: 1px solid var(--footer-divider-color);
  padding-bottom: 30px;
  margin-top: 60px;
}

.title-btn-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-logo-footer {
  width: 271px;
  height: 72px;
}

.sign-up-today-title {
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--sign-up-today-title);
  font-size: 20px;
  font-style: normal;
  line-height: normal;
}

.start-now-btn {
  width: 128px;
  height: 44px;
  border: 1px solid var(--other-btn-border-color) !important;
}

.footer-row-2 {
  display: flex;
  justify-content: space-between;
  width: 90%;
  border-bottom: 1px solid var(--footer-divider-color);
  padding-bottom: 30px;
  margin-top: 50px;
}

.footer-navbar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  margin-top: 40px;
}

.footer-nav-link {
  font-family: var(--subtitle-paragraph-font);
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}

.footer-nav-link:hover {
  color: var(--text-color);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  margin-top: 30px;
}

.footer-contact {
  font-family: var(--subtitle-paragraph-font);
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  list-style: none;
}

.payment-methods {
  margin-top: 30px;
}

.sepa-img {
  margin-inline: 15px;
}

.rights-reserved {
  margin-top: 25px;
  color: var(--text-color);
}

/* Responsiveness */

@media (min-width: 992px) and (max-width: 1440px) {
}

@media (max-width: 676px) {
  .footer-row-1 {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .footer-row-2 {
    flex-direction: column;
    align-items: center;
  }

  .footer-navbar {
    align-items: center;
  }

  .footer-contacts {
    align-items: center;
  }
}

@media (max-width: 991px) {
  .footer-navbar {
    width: 320px;
    flex-direction: column;
  }

  .footer-contacts {
    flex-direction: column;
    width: 330px;
  }

  .footer-divider {
    margin-top: 20px;
  }

  .rights-reserved {
    margin-top: 15px;
  }

  .payment-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .payment-method-img {
    width: 40px;
  }

  .sepa-img {
    width: 70px;
  }
}
