.header {
  width: 100%;
  height: 12.7rem;
  position: fixed;
  z-index: 9996;
  transition: all 0.3s linear;
  background: #fff;
}
@media (max-width: 980px) {
  .header {
    z-index: 100;
    height: 9.6rem;
  }
}
.header .container-xl {
  height: 100%;
  padding: 0;
}
.header .header-inner {

  height: 100%;
  width: 100%;
  padding: 35px 35px 35px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 9998;

}
@media (max-width: 980px) {
  .header .header-inner {
    padding: 0 !important;
  }
}
.header .header-logo {
  margin-left: 15px;
}
.header .header-logo a {
  height: 100%;
  display: flex;
}
.header .header-logo__img {
	height: 50px;
 /* width: 150px;*/
}
@media (max-width: 475px) {
  .header .header-logo__img {
    /*width: 120px;*/
	  height: 40px;
	  width: auto;
  }
}
.header .header-nav {
  margin-left: 40px;
  position: relative;
  top: 0;
}
@media (max-width: 980px) {
  .header .header-nav {
    width: calc(100% - 80px);
    height: 100vh;
    margin-left: 0;
    position: fixed;
    left: -100%;
    transition: all 0.6s;
    background-color: #e6e6e6;
    z-index: 9997;
    overflow: hidden;
  }
}
.header.open .header-nav {
  left: 0;
  transition: all 0.6s;
}
.header .header-nav__inner {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 980px) {
  .header .header-nav__inner {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: -moz-max-content;
    width: max-content;
    transform: translate(-50%, -50%);
    display: grid;
    gap: 15px;
  }
}
.header .header-nav__item {
  margin-right: 30px;
}
@media (max-width: 980px) {
  .header .header-nav__item {
    margin-right: 0;
  }
}
.header .c-button {
  width: 19rem;
  min-width: 0;
  height: 100%;
  padding: 1.5rem 0;
}
@media (max-width: 475px) {
  .header .c-button {
    width: 20rem;
  }
}

.hamburger {
  display: none;
}
@media (max-width: 980px) {
  .hamburger {
    display: block;
    position: fixed;
    top: 25px;
    right: 50px;
    z-index: 9999;
  }
  .hamburger span {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #0e3661;
    display: block;
    transition: all 0.5s;
  }
  .hamburger span:nth-of-type(1) {
    top: 13px;
  }
  .hamburger span:nth-of-type(2) {
    top: 23px;
  }
  .hamburger span:nth-of-type(3) {
    top: 34px;
  }
  .hamburger.active {
    transition: all 0.5s;
  }
  .hamburger.active span {
    transition: all 0.5s;
  }
  .hamburger.active span:nth-of-type(1) {
    top: 15px;
    transform: translateY(6px) rotate(-45deg);
  }
  .hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-of-type(3) {
    top: 27px;
    transform: translateY(-6px) rotate(45deg);
  }
}

.mask {
  display: none;
  position: fixed;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
}/*# sourceMappingURL=header.css.map */