/* Footer (from TOP sample) */
.footer {
  height: 832px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 6px 6px 0;
  background: #5b575c;
}

.footer__card {
  width: 100%;
  height: 544px;
  border: 1px solid #e5e3df;
  border-bottom: 0;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  padding: 30px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.footer__left {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 64px;
  padding: 0 30px 100px;
}

.footer__logo,
.footer__mobile-logo {
  width: 36px;
  display: flex;
}

.footer__logo img,
.footer__logo svg,
.footer__mobile-logo img,
.footer__mobile-logo svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__address {
  display: flex;
  flex-direction: column;
  height: 148px;
  color: #ffffff;
}

.footer__company {
  font-family: "ryo-gothic-plusn", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 2;
  margin: 0;
}

.footer__addr-lines {
  font-family: "ryo-gothic-plusn", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 2;
}

.footer__addr-lines p,
.footer__mobile-address p,
.footer__mobile-copy {
  margin: 0;
}

.footer__right {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
}

.footer__contact-row {
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.contact-button {
  width: 135px;
  height: 72px;
  border: 1px solid #e5e3df;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "din-2014", "DIN 2014", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: #ffffff !important;
  text-decoration: none;
}
.contact-button:hover {
  border: 1px solid var(--color-border-on-inverse, #e5e3df);
  background: var(--color-icon-on-inverse, #e5e3df);
  color: var(--color-text-secondary, #5b575c)!important;
}
.footer__menu {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  padding-bottom: 100px;
}

.footer__menu-left,
.footer__menu-right {
  flex: 1 0 0;
  min-width: 0;
}

.footer__menu-left-list,
.footer__menu-right-list,
.footer__mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__menu-left-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  height: 148px;
}

.footer__menu-right-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  white-space: nowrap;
}

.footer__menu-left-list a {
  font-family: "din-2014", "DIN 2014", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.3;
  color: #ffffff !important;
  text-decoration: none;
}

.footer__menu-right-list a {
  font-family: "ryo-gothic-plusn", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 2;
  color: #ffffff !important;
  text-decoration: none;
}

.footer__mobile {
  display: none;
}

@media (max-width: 767px) {
  .footer {
    height: auto;
    padding: 0;
  }

  .footer__card {
    display: none;
  }

  .footer__mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 48px 16px 30px;
    gap: 30px;
  }

  .footer__mobile-menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer__mobile-menu-list a {
    font-family: "din-2014", "DIN 2014", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3;
    color: #ffffff !important;
    text-decoration: none;
  }

  .footer__mobile-address {
    font-family: "ryo-gothic-plusn", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 2;
    text-align: center;
    color: #ffffff !important;
  }

  .footer__mobile-copy {
    font-family: "din-2014", "DIN 2014", sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.3;
    color: #ffffff !important;
  }
}
