.header {
  /* layout */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 74px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 180px;
  padding-right: 180px;

  /* style */
  background: var(--white, #fff);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.05);

  /* responsive */
  @media screen and (max-width: 1100px) {
    padding-left: 60px;
    padding-right: 60px;
  }

  @media screen and (max-width: 860px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header-logo {
  /* layout */
  width: 72px;
  height: 34px;
  margin-right: auto;

  /* style */
  cursor: pointer;
}

.header-logo-wrapper {
  /* layout */
  width: 178px;
}

.header-menu-wrapper {
  /* layout */
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  column-gap: 40px;

  /* typegraphy */
  color: var(--gray50, #a0a0a0);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;

  /* responsive */
  @media screen and (max-width: 860px) {
    display: none;
  }
}

.header-menu {
  /* style */
  cursor: pointer;
}

.header-cta-btn {
  /* layout */
  width: 178px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;

  /* style */
  border-radius: 8px;
  background: var(--primary, #27b5b7);
  border: none;

  /* typography */
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;

  /* responsive */
  @media screen and (max-width: 860px) {
    width: 116px;
    height: 34px;
    margin-left: auto;

    font-size: 14px;
    line-height: 22px;
  }
}
