/* CSS Document */
/*-------------------------*/
header {
  background-color: #fff;
  z-index: 103;
  position: fixed;
  width: 100%;
}
header .inner {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}
@media screen and (max-width: 840px) {
  header .inner {
    padding: 20px;
  }
}
header .inner.jcc {
  justify-content: center;
}
@media screen and (max-width: 840px) {
  header .inner.jcc {
    padding: 0;
  }
}
header img {
  width: 100%;
  height: auto;
}

.lang-sw {
  background-color: #fff;
  border-radius: 5px;
  padding: 0 10px;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
  margin-bottom: 0;
}

.main_logo {
  width: 188px;
}
@media screen and (max-width: 540px) {
  .main_logo {
    width: 98px;
  }
}

.menu {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.menu a {
  font-size: 16px;
  font-family: "deuterium-variable", sans-serif;
  font-variation-settings: "wght" 300;
}
@media screen and (max-width: 840px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: initial;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-flow: column;
    z-index: 104;
    height: 100vh;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    padding: 30px 20px;
    transition: all ease 0.3s;
    align-items: start;
    gap: 20px;
  }
  .menu a {
    width: 100%;
    padding: 5px;
    aspect-ratio: initial;
  }
  .menu.open {
    opacity: 1;
    pointer-events: initial;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 840px) {
  .hamburger {
    position: fixed;
    top: 22px;
    right: 20px;
    width: 45px;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 6px;
    z-index: 105;
  }
  .hamburger span {
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all ease 0.3s;
    transform-origin: center;
  }
}
.hamburger.open span:nth-of-type(1), .hamburger.open span:nth-of-type(3) {
  transform: translateX(5px);
}
.hamburger.open span:nth-of-type(2) {
  transform: translateX(-5px);
}

footer {
  background-color: #606060;
  padding: 90px 0;
}
footer .menu {
  color: #fff;
  margin-bottom: 5rem;
}
footer p {
  text-align: center;
  font-size: 15px;
  color: #fff;
}
footer img {
  width: 100%;
  height: auto;
}

.ft_link_btn {
  max-width: 95%;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "deuterium-variable", sans-serif;
  font-variation-settings: "wght" 400;
  padding: 25px 150px;
  background-color: #fff;
  border-radius: 1rem;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.ft_link_btn::after {
  content: "";
  width: 46px;
  height: 12px;
  background-image: url(images/bk_arrow.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 840px) {
  .ft_link_btn {
    width: 430px;
  }
}

.btn_wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 25px;
  justify-content: center;
}

.ft_logo {
  width: 226px;
  margin: 90px auto;
}/*# sourceMappingURL=header-footer.css.map */