.header {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.header .logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 55px;
}
@media only screen and (max-width: 1366px) {
  .header .logo {
    font-size: 21px;
  }
  .header .logo > svg {
    width: 25px;
    height: 25px;
  }
}
.header .btn__round {
  width: 140px;
  height: 42px;
  padding: 0;
  border: 2px solid #fff;
  box-sizing: border-box;
  border-radius: 20px;
  background: transparent;
  margin: 10px 0;
  font-size: 18px;
  line-height: 21px;
}
@media only screen and (max-width: 1366px) {
  .header .btn__round {
    width: 100px;
    height: 30px;
    font-size: 14px;
    line-height: 16px;
  }
}
.header .menu .logo {
  display: none;
}
.header .menu-list {
  margin: 40px 0;
  font-style: normal;
  font-weight: bold;
  font-size: 13px;
  line-height: 15px;
  display: flex;
}
.header .menu-item {
  margin: 0 22px;
}
.header .menu-link {
  color: #fff;
  font-size: 18px;
  line-height: 21px;
  cursor: pointer;
}
@media only screen and (max-width: 1366px) {
  .header .menu-link {
    font-size: 13px;
    line-height: 15px;
  }
}
.header .menu-link:hover {
  color: #1d9d6f;
}
.wrap {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sticky-customized {
  background: #fff;
  color: #000;
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.sticky-customized .menu-link {
  color: #000;
  cursor: pointer;
}
.sticky-customized .btn__round {
  color: #000;
  border: 2px solid #000;
}
.fixed-customized {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 5;
}
@media only screen and (max-width: 1000px) {
  .header .btn__round {
    width: 100px;
    height: 30px;
    padding: 0;
    border: 2px solid;
    box-sizing: border-box;
    border-radius: 20px;
    background: transparent;
    margin: 10px 0;
  }
  .header .menu {
    color: #fff;
    background-color: #000;
    display: block;
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 230px;
    height: 100%;
    font-size: 120%;
    padding: 1em 0.6em 0.6em 4em;
    transform: translateX(-505px);
    transition: transform 350ms;
    -webkit-box-shadow: 10px 10px 67px -3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 67px -3px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 67px -3px rgba(0, 0, 0, 0.75);
  }
  .header .menu .logo {
    display: block;
  }
  .header .menu.open {
    transform: translateX(0);
  }
  .header .menu-list {
    flex-direction: column;
  }
  .header .menu-item {
    margin: 18px 0;
  }
  .header .menu-link {
    color: #fff;
    cursor: pointer;
  }
  .wrap {
    width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  .logo {
    padding-left: 10px;
  }
  .menu .logo {
    padding-left: 0;
  }
}
@media only screen and (max-width: 375px) {
  .logo {
    padding-left: 25px;
  }
  .menu .logo {
    padding-left: 0;
  }
}
@media only screen and (max-width: 1000px) and (orientation: landscape) {
  .header .menu-list {
    margin: 10px 0;
  }
  .header .menu-item {
    margin: 8px;
  }
}
