.header.apply-header .nav-con {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header.apply-header .nav-con__logo {
  margin: 0;
}

.yeseo-logo {
  position: relative;
  display: inline-block;
  width: 13rem;
  height: auto;
}

.yeseo-logo__img {
  display: block;
  width: 13rem;
  height: auto;
  transition: opacity 0.4s ease;
}

.yeseo-logo__img--blue {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.yeseo-header.scrollOn {
  background: #fff;
  box-shadow: rgba(150, 150, 150, 0.2) 2px 2px 10px;
  border-bottom: 1px solid #E6E8ED;
}

.yeseo-header.scrollOn .yeseo-logo__img--base {
  opacity: 0;
}

.yeseo-header.scrollOn .yeseo-logo__img--blue {
  opacity: 1;
}

.yeseo-header .yeseo-nav {
  position: relative;
  max-width: none;
  width: 100%;
  padding: 0;
}

.yeseo-header .yeseo-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  width: 100%;
}

.yeseo-header .yeseo-nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.yeseo-header .yeseo-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 14.5px 16px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.yeseo-header .yeseo-nav-link:hover,
.yeseo-header .yeseo-nav-link.is-active {
  color: #009AFF;
}

.yeseo-header .yeseo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 14.5px 16px;
  border-radius: 4px;
  background: #3361FF;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.yeseo-header .yeseo-cta:hover {
  background: #7E9BFF;
}

.yeseo-header .yeseo-cta:active {
  background: #0029B5;
}

.yeseo-header.scrollOn .yeseo-nav-link {
  color: #424D7A;
}

.yeseo-header.scrollOn .yeseo-nav-link.is-active {
  color: #009AFF;
}

.yeseo-header .mobile-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.yeseo-header .hamburger-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 24px;
  height: 20px;
}

.yeseo-header .hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.yeseo-header .hamburger-close {
  display: none;
  position: relative;
  width: 22px;
  height: 22px;
}

.yeseo-header .hamburger-close::before,
.yeseo-header .hamburger-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transform-origin: center;
}

.yeseo-header .hamburger-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.yeseo-header .hamburger-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.yeseo-header .mobile-menu-button.is-open .hamburger-icon {
  display: none;
}

.yeseo-header .mobile-menu-button.is-open .hamburger-close {
  display: block;
}

.yeseo-header.scrollOn .hamburger-icon span,
.yeseo-header.scrollOn .hamburger-close::before,
.yeseo-header.scrollOn .hamburger-close::after {
  background: #424D7A;
}

.yeseo-header .mobile-menu-container {
  position: absolute;
  top: 100%;
  right: 14.5px;
  width: 139px;
  min-height: 212px;
  background: rgba(0, 0, 0, 0.16);
  display: none;
  flex-direction: column;
  padding: 10px 0;
  z-index: 50;
}

.yeseo-header .mobile-menu-container.is-open {
  display: flex;
}

.yeseo-header .mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 48px;
  padding: 10px 16px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.yeseo-header .mobile-menu-link:hover {
  background: rgba(0, 0, 0, 0.16);
}

.yeseo-header .mobile-menu-link:active,
.yeseo-header .mobile-menu-link.is-active {
  background: rgba(0, 0, 0, 0.24);
}

@media screen and (max-width: 1279px) {
  .yeseo-header .yeseo-nav-link,
  .yeseo-header .yeseo-cta {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  .yeseo-header .mobile-menu-button,
  .yeseo-header .mobile-menu-container {
    display: none;
  }

  .yeseo-header .yeseo-header-inner {
    padding: 22px 40px;
  }

  .yeseo-logo,
  .yeseo-logo__img {
    width: 18.8rem;
  }
}
