.cWSO2logo {
  line-height: 3px;
}

.cWSO2logo img {
  width: 100px;
}
.cHeadWrap .header {
  display: block;
  width: 100%;
  position: relative;
  z-index: 99999;
  padding: 0;
  background: #fff;
  box-shadow: 1px 3px 4px 0 #adadad33;
}

.header .cWSO2logo a {
  font-size: 30px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.header .cWSO2logo a {
  font-size: 30px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.cWSO2logo img {
  width: 100px;
}

.cWSO2logo {
  line-height: 3px;
}

.header .item-left {
  flex: 0 0 10%;
}

.header .item-center {
  flex: 0 0 63%;
}

.header .item-right {
  flex: 0 0 27%;
  display: flex;
  justify-content: flex-end;
}
.header .item-right ul {
  margin: 0;
}
.header .item-right .block__title {
  display: none;
}
.header .item-right a {
  text-decoration: none;
  font-size: 16px;
  color: #555;
  display: inline-block;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.header .menu > ul > li {
  display: inline-block;
  line-height: 40px;
  margin-left: -5px;
}

.header .menu > ul > li > a,
.header .menu > ul > li > span {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  position: relative;
  text-transform: none;
  transition: color 0.3s ease;
  padding-right: 20px;
  padding-left: 20px;
  text-decoration: none;
  cursor: pointer;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a,
.header .menu > ul > li > span:hover {
  color: var(--color-link);
}
.header-contact-menu {
  display: inline-flex;
  flex: 0;
  margin-left: auto;
}
.header-contact-menu ul {
  margin: 0;
  padding: 0;
}
.header .menu > ul > li.menu-item--expanded {
  position: relative;
}
.header .menu > ul > li.menu-item--expanded:hover {
  background: #f8f8f8;
}
.header .menu > ul > li.menu-item--expanded::before {
  content: "";
  position: absolute;
  height: 6px;
  top: -1px;
  background-color: #ff7300;
  transition: 0.2s ease-in-out;
  left: 0;
  display: none;
  width: 100%;
}
.header .menu > ul > li.menu-item--expanded:hover::before {
  display: block;
}
.header .menu--header-contact-menu ul li a {
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  margin: 0;
  padding: 0 30px;
  font-size: 16pxt;
  font-weight: 500;
  transition: color 0.3s ease;
  border-radius: 5px;
  color: #000;
  border: solid 2px #000;
  word-spacing: 3px;
  line-height: 40px;
}
.header .menu--header-contact-menu ul li a:hover {
  background-color: #ff7300;
  border: solid 2px #ff7300;
  color: #fff;
  text-decoration: none;
}
.mobile-menu-head, .mobile-menu-trigger {
  display: none;
}
@media (max-width: 1320px) {
  .main-header-wrapper {
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .header .item-left {
    flex: 0 0 auto;
  }
  .header .item-center {
    order: 3;
    flex: 0 0 100%;
  }
  .header .item-right {
    flex: 0 0 24%;
    display: flex;
    justify-content: flex-end;
  }
  .header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #333;
    width: 24px;
    position: relative;
  }
  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
  }
  .header .mobile-menu-trigger span:before {
    top: -6px;
  }
  .header .mobile-menu-trigger span:after {
    top: 6px;
  }
  .header .menu--main,
  .header .header-contact-menu {
    position: fixed;
    width: 320px;
    background-color: #fff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }
  .header .menu--main.active {
    transform: translate(0%);
  }
  .header .menu--main .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #fff;
    top: 0;
  }
  .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, .1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000;
    font-size: 16px;
    display: block;
  }
  .header .menu--main .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000;
  }
  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, .5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, .1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000;
    font-size: 25px;
  }
  .mobile-menu-close img {
    max-width: 100%;
    width: 30px;
    display: inline-block;
  }
  .mobile-menu-close {
    background-color: #ff7300;
  }
}
.go-back, .go-back.hide {
    display: none;
  }
