/* ---- header element ---- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 5;
  transition: 0.3s linear all;
}
header.sticky {
  background-color: #093027;
}
header .logo {
  display: flex;
  align-items: center;
  height: 100%;
}
header .logo a {
  color: #000000;
  font-size: 22px;
  text-decoration: none;
}
header .logo img {
  display: block;
  max-width: 210px;
  width: 100%;
  height: auto;
}
header .header-bottom {

}
header nav.desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
header nav.desktop ul {
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav.desktop ul li {
  position: relative;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  margin: 0 40px 0 0;
}
header nav.desktop ul li:last-of-type {
  margin: 0;
}

header nav.desktop ul li a {
  color: #E7F0ED;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 24px 0;
  transition: 0.2s linear all;
}
header nav.desktop ul li a:hover {
  color: #65EBB1;
}
header nav.desktop ul li.active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

header .header-right {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
}
header .language-switcher {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
header .language-switcher a {
  font-size: 15px;
  font-weight: 600;
  color: #65EBB1;
  text-decoration: none;
  padding: 20px 0;
  margin: 0 20px 0 0;
  transition: 0.15s linear all;
}
header .language-switcher a:hover {
  color: #E7F0ED;
}
header .language-switcher a:last-of-type {
  margin: 0 40px 0 0;
}

header #contact-trigger {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #093027;
  background-color: #67e9af;
  padding: 12px 36px;
  border: 1px solid #67e9af;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.15s linear all;
}
header #contact-trigger:hover {
  background-color: #0B4739;
  color: #FFFFFF;
  border: 1px solid #0B4739;
}

header .nav-trigger {
  display: none;
}

@media only screen and (max-width: 1440px) {
  header nav ul li {
    margin: 0 30px 0 0;
  }
}

@media only screen and (max-width: 1280px) {
  header nav ul li {
    margin: 0 20px 0 0;
  }
  header nav ul li a {
    font-size: 14px;
  }
  header .language-switcher a {
    font-size: 14px;
  }
  header #contact-trigger {
    font-size: 14px;
  }
}

@media only screen and (max-width: 992px) {
  header {
    background-color: #093027;
  }
  header .nav-col {
    display: none;
  }
  header .nav-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  header #contact-trigger {
    display: none;
  }
  nav.mobile {
    width: 100%;
    background-color: #093027;
    padding: 40px 20px;
  }
  nav.mobile ul {
    padding: 0;
    margin: 0;
  }
  nav.mobile ul li {
    display: block;
    list-style: none;
    margin: 0 0 20px 0;
  }
  nav.mobile ul li a {
    color: #FFFFFF;
    font-size: 18px;
    text-decoration: none;
  }
}

@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 576px) {

}
