.top-header {
  background-color: #000;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito Sans", sans-serif;
}
.top-header .header-contact {
  display: flex;
  justify-content: space-between;
  padding: 0px;
  height: 100%;
  margin: 0px;
  align-items: center;
}
.top-header .header-contact .boxx {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.top-header .header-contact .boxx img {
  width: 25px;
  margin-right: 10px;
}
.top-header .header-contact .boxx a {
  text-decoration: none;
  color: #fff;
}

header {
  z-index: 100;
  position: relative;
  margin: auto;
  top: 0;
  width: 100%;
  background: #fff;
  padding: 19px 0;
  transition: 0.3s;
}
@media (max-width: 991px) {
  header {
    padding: 10px 0;
  }
}
header.hidden {
  top: -92px;
}
@media (max-width: 991px) {
  header.hidden {
    top: -74px;
  }
}
header.active {
  top: 0;
}
header .my-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  display: flex;
  width: 240px;
  height: auto;
}
@media (max-width: 991px) {
  header .header-nav {
    display: none;
  }
}
header .header-nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: center;
}
header .header-nav-menu .menu-item {
  position: relative;
  cursor: pointer;
}
header .header-nav-menu .menu-item a {
  color: #000;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}
header .header-nav-menu .menu-item:hover a {
  opacity: 0.6;
}
header .header-nav-menu .current-menu-item a,
header .header-nav-menu .current_page_parent a {
  opacity: 0.6;
}
header .hamburger {
  width: 50px !important;
  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 .hamburger {
    display: none;
  }
}
header .hamburger .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #000;
  stroke-width: 5.5;
  stroke-linecap: round;
}
header .hamburger .top {
  stroke-dasharray: 40 160;
}
header .hamburger .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}
header .hamburger .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}
header .hamburger.active {
  transform: rotate(45deg);
}
header .hamburger.active .top {
  stroke-dashoffset: -64px;
}
header .hamburger.active .middle {
  transform: rotate(90deg);
}
header .hamburger.active .bottom {
  stroke-dashoffset: -64px;
}

.mobile-menu-container {
  z-index: 101;
  background: #14375a;
  position: fixed;
  top: 0;
  left: -70%;
  width: 70%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media (min-width: 992px) {
  .mobile-menu-container {
    display: none;
  }
}
.mobile-menu-container.active {
  left: 0;
}
.mobile-menu-container .mobile-nav {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.mobile-menu-container .mobile-nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: right;
}
.mobile-menu-container .mobile-nav-menu .menu-item a {
  color: #fff;
  text-align: right;
  font-size: 26px;
  line-height: 34px;
  text-decoration: none;
}
.mobile-menu-container.active {
  opacity: 1;
  visibility: visible;
}/*# sourceMappingURL=style.css.map */