.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 0px;
  background: #f9dfee;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-public-after {
  height: 76px;
}

.header-content {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.header .main-menu {
  display: flex;
}

.header .main-menu ul {
  list-style: none;
  display: flex;
  flex-direction: row;
}

.header .main-menu ul li {
  margin-left: 10px;
}

.header .main-menu ul li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  line-height: 21px;
}

@media screen and (min-width: 780px) {
  .header-content {
    max-width: 1200px;
  }
}

.header ul {
  display: flex;
  list-style: none;
  justify-content: flex-start;
  align-items: center;
  column-gap: 30px;
  margin: 0;
  padding: 0;
  margin-left: 20px;
}

.header ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
  color: #c96ca3;
  font-size: 24px;
  line-height: 28px;
}

.header .left-menu {
  display: flex;
}

.header .left-side {
  display: flex;
  align-items: center;
}

.header .right-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header .right-menu a {
  color: #c96ca3;
  font-size: 22px;
  line-height: 25px;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 15px;
}

.header .right-menu .button-primary {
  background: #c96ca3;
  border-radius: 6px;
  font-weight: bold;
  border: 1px solid #c96ca3;
  text-align: center;
  font-size: 20px;
  line-height: 45px;
  color: #fff;
  padding: 3px 20px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: normal;
  margin-bottom: 0;
}

.header .logo {
  height: 100%;
  display: flex;
}

.header .logo img {
  width: 95px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.header .intro-label {
  white-space: nowrap;
}

@media all and (max-width: 960px) {
  .header .intro-label {
    display: none;
  }

  .header .logo {
    margin-left: 16px;
  }

  .header .right-menu {
    margin-right: 16px;
    margin-left: 16px;
  }
}

@media all and (max-width: 550px) {
  .header .logo img {
    width: 75px;
  }

  .header .right-menu {
    margin-left: 0;
  }

  .header .main-menu ul {
    margin: 0;
  }

  .header .main-menu ul li {
    margin-left: 10px;
    margin-right: 10px;
  }

  .header .main-menu ul li a {
    font-size: 16px;
    text-align: center;
  }

  .header .right-menu .button-primary {
    font-size: 13px;
    white-space: normal;
    line-height: 14px;
    padding: 10px 10px;
    margin-left: 0;
  }

  .header .logo {
    width: auto;
  }

  .header-content {
    justify-content: space-between;
  }
}
