/* Footer */
.footer {
  background-color: var(--primary-color);
  padding-top: 100px;
  padding-bottom: 40px;
}

.footer .content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer .content-top-left .logo {
  max-width: 280px;
}

.footer .content-top-left .subtext-text-desc {
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 393px;
}

.footer .content-top-right .subtext-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer .content-top-right .subtext-menu .wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer .content-top-right .subtext-menu-subtitle {
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.footer .content-top-right .nav-link {
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0;
}

.footer .content-top-right .nav-link:hover {
  color: var(--secondary-color);
}

.footer .content-top-right .nav-link:hover path {
  fill: var(--secondary-color);
}

.footer .content-bottom .copyright {
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer .subtext-menu .ic-wrap {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .footer .content-top {
    gap: 32px;
  }

  .footer .content-top-left .logo {
    max-width: 200px;
  }

  .footer .content-top-left .subtext-text-desc {
    font-size: 16px;
  }

  .footer .content-top-right {
    gap: 32px;
  }

  .footer .content-top-right .subtext-menu-subtitle {
    font-size: 20px;
  }

  .footer .content-top-right .nav-link,
  .footer .content-bottom .copyright {
    font-size: 16px;
  }
}
