* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #e4e4e7;
}

main {
  background-color: #f4f4f5;
}

.navbar {
  display: flex;
  padding: 20px 5%;
  position: relative;
  z-index: 1000;
  background-color: #f4f4f5;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.12));
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
  padding: 0;
}

.nav-links a {
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  color: #1b2046;
  transition: color 0.3s;

  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0f766e;
}

.blank-container {
  display: none;
}
.nav-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 2em;
}

.social-icon,
.flag-icon {
  max-height: 32px;
  filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.1));
}
.nav-links-social-icon {
  max-height: 32px;
  filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.1));
  margin-bottom: 20px;
}

.language-switcher {
  display: flex;
  align-items: center;
}
.language-switcher a {
  text-decoration: none;
}
.flag-icon {
  filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.1));
  max-height: 24px;
  cursor: pointer;
}
.flag-icon.active {
  opacity: 0.7;
}

.separator {
  width: 2px;
  height: 32px;
  background: #d4d4d8;
}

.language-switcher span {
  font-weight: 600;
  font-size: 18px;
  color: #1b2046;
  margin-right: 24px;
  margin-left: 6px;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
}
.hamburger-menu img:hover {
  filter: invert(21%) sepia(80%) saturate(2991%) hue-rotate(163deg)
    brightness(91%) contrast(88%);
}

footer {
  background: #1b2046;
  color: #f4f4f5;
  padding: 20px 5%;
  width: 100%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
  border-top: 5px solid #2dd4bf;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

.logo-footer img {
  max-width: 400px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-column,
.menu-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-contact-info,
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-item,
.footer-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-contact-item .icon {
  width: 24px;
  height: 24px;
}

.contact-column h2,
.menu-column h2 {
  font-weight: 600;
  font-size: 24px;
  color: #2dd4bf;
  border-bottom: 2px solid #2dd4bf;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  margin-top: 20px;
}

.facebook-icon img {
  max-height: 40px;
  margin-left: 20px;
}

.footer-menu a {
  color: #f4f4f5;
  font-family: "Inter";
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
}

.footer-menu a:hover {
  color: #2dd4bf;
}

.footer-p {
  color: #f4f4f5;
  opacity: 0.2;
}

.nav-links.show {
  max-height: 300px;
}

.nav-links li {
  margin: 10px 0;
  text-align: center;
}
.policy-privacy {
  text-decoration: none;
  color: white;
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-right {
    display: none;
  }
  .blank-container {
    display: inline;
  }
  .hamburger-menu {
    display: contents;
  }

  .nav-center {
    align-items: start;
    justify-content: start;
  }
  .menu-column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact-column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-content {
    margin: 0 2em;
  }
  .language-switcher {
    margin-left: 24px;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contact-column h2,
  .menu-column h2 {
    font-size: 20px;
  }

  .footer-bottom p {
    width: 50%;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-menu li {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-contact-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-menu a {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .logo-footer img {
    max-width: 250px;
  }

  .footer-p {
    margin-top: 10px;
    text-align: center;
  }
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    background: #f4f4f5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .nav-links.show {
    max-height: 500px;
  }

  .footer-bottom p {
    order: 2;
  }

  .facebook-icon {
    order: 1;
  }
  .nav-links li:last-child {
    margin-bottom: 40px;
    margin-top: 10px;
    text-align: center;
  }
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 0;
  transition: max-height 0.3s ease-out;
  overflow: hidden;
}

.nav-links.show {
  max-height: 500px;
}

.nav-links li {
  margin: 10px 0;
  text-align: center;
}
