@font-face {
  font-family: "jost";
  src: url("/fonts/jost.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "jost", sans-serif;
  color: #323232;
}

html,
body {
  background-color: #fff;
}

a {
  text-decoration: none;
  color: #000;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 24px;
}
header #currentLang {
  white-space: nowrap;
}
header .app-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  list-style: none;
  gap: 80px;
}
header .app-nav li a {
  text-decoration: none;
  color: #000;
  letter-spacing: 4px;
}
header .language-switcher {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  margin-left: 30px;
}
header .language-switcher #language-select {
  background: none;
  border: 1px solid #ccc;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.2s;
  outline: none;
  border-radius: 5px;
}
header .language-switcher #language-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
header .app-nav-mobile-modal {
  display: none;
}
header .app-icon {
  width: 96px;
}
header .mobile-nav-btn {
  display: none;
}

.max-1200 {
  max-width: 1200px;
  margin: 0 auto;
}

footer {
  background-color: #f4f4f4;
}
footer .contact-btn {
  display: block;
  position: fixed;
  bottom: 120px;
  right: 21px;
}
footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 0 48px;
}
footer .footer-content .footer-column {
  width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .footer-content .footer-column .footer-logo {
  width: 141px;
}
footer .footer-content .footer-column .footer-logo img {
  width: 100%;
}
footer .footer-content .footer-column .footer-col-title,
footer .footer-content .footer-column .footer-col-content {
  color: #000;
  font-size: 16px;
  line-height: 27px;
}
footer .footer-content .footer-column .footer-col-title {
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  body {
    width: 100vw;
    overflow-x: hidden;
  }
  header {
    position: relative;
    height: 60px;
  }
  header .app-nav {
    display: none;
  }
  header .language-switcher {
    margin-left: auto;
    margin-right: 21px;
  }
  header .language-switcher .language-btn {
    padding: 0px 18px;
    font-size: 16px;
  }
  header .app-nav-mobile-modal.show {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    z-index: 9999;
  }
  header .app-nav-mobile {
    position: absolute;
    top: 100px;
    right: 20px;
    width: 50%;
    background-color: #fff;
    list-style: none;
    padding: 12px 24px;
    box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.1);
    font-size: 16px;
  }
  header .app-nav-mobile.show {
    display: block;
  }
  header .app-nav-mobile li a {
    display: block;
    padding: 12px 0;
    letter-spacing: 4px;
  }
  header .mobile-nav-btn {
    display: block;
    width: 27px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  header .mobile-nav-btn-line {
    width: 100%;
    height: 1px;
    background-color: #000;
  }
  footer .contact-btn {
    display: block;
    position: fixed;
    bottom: 120px;
    right: 21px;
  }
  footer .footer-content {
    padding: 27px 21px;
    flex-direction: column;
    align-items: center;
  }
  footer .footer-content .footer-column {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 27px;
  }
  footer .footer-content .footer-column .footer-col-title {
    margin-bottom: 6px;
  }
  footer .footer-content .footer-column:first-child {
    align-items: center;
  }
}
