header#header {
  z-index: 100;
  position: fixed;
  margin: auto;
  top: 0;
  width: 100%;
  background-color: #fff;
  padding: 25px 0;
  box-shadow: 32px 32px 64px 0px rgba(52, 64, 84, 0.08);
  transition: background-color 0.3s ease-in-out;
  transition: padding 0.2s ease-in-out;
}
header#header.affix {
  padding: 20px 0;
}
@media (max-width: 991px) {
  header#header {
    padding: 15px 0;
    background: transparent;
  }
  header#header.active {
    background-color: #fff;
  }
  header#header.affix {
    transition: background-color 0.3s ease-in-out;
    transition: padding 0.2s ease-in-out;
    padding: 10px 0;
    background-color: #fff;
    box-shadow: 32px 32px 64px 0px rgba(52, 64, 84, 0.08) !important;
  }
  header#header .hamburger {
    background-color: #fff;
    border-radius: 15px;
  }
}
header#header .et-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
header#header .logo svg,
header#header .logo img {
  max-width: 122px;
  height: 54px;
}
header#header .logo.active {
  opacity: 0;
  visibility: hidden;
}
header#header .wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
}
header#header .icons {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
header#header .icons a {
  display: block;
  width: 24px;
  height: 24px;
}
@media (max-width: 991px) {
  header#header .header-nav {
    display: none;
    order: 100;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    transition-duration: 0.3s;
  }
  header#header .header-nav .header-nav-menu {
    flex-direction: column;
  }
  header#header .header-nav.wrap {
    flex-direction: column;
    gap: 0;
  }
  header#header .header-nav.wrap .icons {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  header#header .header-nav.wrap .icons a {
    display: block;
    width: 24px;
    height: 24px;
  }
  header#header .header-nav.active {
    max-height: 1000px;
    margin-bottom: 20px;
    padding-top: 20px;
    margin-top: 10px;
  }
  header#header .header-nav.active .header-nav-menu {
    transition-duration: 0.3s;
  }
  header#header .header-nav.active .header-nav-menu .menu-item-has-children {
    text-align: center;
  }
  header#header .header-nav.active .header-nav-menu .menu-item-has-children .sub-menu {
    padding: 0;
    width: -moz-max-content;
    width: max-content;
    text-align: center;
    position: relative;
  }
}
header#header .header-nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}
header#header .header-nav-menu .menu-item {
  position: relative;
  cursor: pointer;
}
header#header .header-nav-menu .menu-item a {
  color: var(--c2);
  text-decoration: none;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
header#header .hamburger {
  width: 50px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
@media (min-width: 992px) {
  header#header .hamburger {
    display: none;
  }
}
header#header .hamburger .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #000;
  stroke-width: 5.5;
  stroke-linecap: round;
}
header#header .hamburger .top {
  stroke-dasharray: 40 160;
}
header#header .hamburger .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}
header#header .hamburger .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}
header#header .hamburger.active {
  transform: rotate(45deg);
}
header#header .hamburger.active .top {
  stroke-dashoffset: -64px;
}
header#header .hamburger.active .middle {
  transform: rotate(90deg);
}
header#header .hamburger.active .bottom {
  stroke-dashoffset: -64px;
}

.mobile-wrap {
  display: flex;
  flex-direction: column;
  z-index: 101;
  order: 100;
  background: #fff;
  top: 74px;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  transition: 0.3s;
  overflow: hidden;
}
.mobile-wrap.active {
  height: calc(100vh - 74px);
}
.mobile-wrap .logo-mobile {
  max-width: 400px;
  margin: 20px auto 80px;
}
@media (min-width: 992px) {
  .mobile-wrap .mobile-nav {
    display: none;
  }
}
.mobile-wrap .mobile-nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.mobile-wrap .mobile-nav-menu .menu-item {
  position: relative;
  cursor: pointer;
}
.mobile-wrap .mobile-nav-menu .menu-item a {
  color: var(--c2);
  text-decoration: none;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.mobile-wrap .contact-wrap {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.mobile-wrap .contact-wrap a {
  color: var(--c2);
  text-decoration: none;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
}
.mobile-wrap .icons-mobile {
  justify-content: center;
  padding-top: 40px;
}
.mobile-wrap.active {
  opacity: 1;
  visibility: visible;
}
.mobile-wrap.active .menu-nav-menu {
  transition-duration: 0.3s;
}
.mobile-wrap.active .menu-nav-menu .menu-item-has-children {
  text-align: center;
}
.mobile-wrap.active .menu-nav-menu .menu-item-has-children .sub-menu {
  padding: 0;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  position: relative;
}/*# sourceMappingURL=style.css.map */