:root {
  --fade-in-duration: 0.8s;
  --fade-out-duration: 0.8s;
  --fade-in-delay: 0s;
  --fade-in-opacity: 1;
  --fade-out-opacity: 0;
  --fade-out-opacity-init: 0.5;
  --fade-in-duration-mobile: 0.8s;
}

.pc-neowiz-main {
  width: 2560px;
  height: 1230px;
  background-color: #fff;
  overflow: hidden;
  text-align: left;
  font-size: 18px;
  color: #fff;
  font-family: "Pretendard", sans-serif;
  position: relative;
}
.pc-neowiz-main__wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}
.pc-neowiz-main__wrapper.active {
  display: block;
}
.pc-neowiz-main__site-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.pc-neowiz-main__site-bg-mobile {
  display: none;
}
.pc-neowiz-main__banner-show {
  position: relative;
  top: 93px;
  left: 414px;
  right: 433px;
  width: 1732px;
  height: 567px;
  font-size: 18px;
}
.pc-neowiz-main__banner > div {
  display: none;
}
.pc-neowiz-main__banner > div.pc-neowiz-main__wrapper-character {
  display: block;
  z-index: 3;
}
.pc-neowiz-main__banner.active {
  height: 100%;
  display: block;
  display: flex;
}
.pc-neowiz-main__banner.active > div {
  display: flex;
}
.pc-neowiz-main__banner.active > div.pc-neowiz-main__wrapper-character {
  z-index: 2;
}
.pc-neowiz-main__wrapper-banner {
  position: absolute;
  display: flex;
  bottom: 0;
  width: 1280px;
  height: 510px;
  z-index: 1;
  animation: fadeIn 2s forwards;
}
.pc-neowiz-main__img-banner {
  width: 100%;
  height: 510px;
  display: block;
  border-radius: 16px;
  z-index: 1;
}
.pc-neowiz-main__img-banner-mobile {
  display: none;
  z-index: 1;
}
.pc-neowiz-main__wrapper-character {
  bottom: 0;
  position: absolute;
  width: 1280px;
  height: 567px;
  z-index: 3;
}
.pc-neowiz-main__img-character {
  display: none;
  width: 100%;
  height: 100%;
  right: 90px;
  left: 659px;
  bottom: 0;
  max-width: 100%;
  overflow: hidden;
  object-fit: cover;
  pointer-events: none;
}
@media (min-width: 1280px) {
  .pc-neowiz-main__img-character {
    transform: translateX(100%);
  }
  .pc-neowiz-main__img-character.active {
    display: block;
    animation: fadeInRight var(--fade-in-duration) var(--fade-in-delay) forwards;
  }
  .pc-neowiz-main__img-character.inactive {
    display: block;
    opacity: var(--fade-out-opacity-init);
    animation: fadeOutLeft var(--fade-out-duration) forwards;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(5%);
  }
  100% {
    opacity: var(--fade-in-opacity);
    transform: translateX(0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: var(--fade-out-opacity-init);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-10%);
  }
}
.pc-neowiz-main__img-character-mobile {
  display: none;
}
.pc-neowiz-main__wrapper-logo-btn-text {
  left: 125px;
  width: 505px;
  height: 567px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 4;
}
.pc-neowiz-main__wrapper-logo {
  position: absolute;
  bottom: 190px;
  height: 240px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pc-neowiz-main__img-logo {
  bottom: 190px;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  object-fit: cover;
  animation: fadeIn 2s forwards;
}
.pc-neowiz-main__img-logo-mobile {
  display: none;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pc-neowiz-main__btn {
  position: absolute;
  bottom: 94px;
  height: 36px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.pc-neowiz-main__wrapper-btn {
  height: 36px;
  display: flex;
  flex: 1;
  border-radius: 34px;
  border: 2px solid #dcdee4;
  overflow: hidden;
  padding: 5px 23px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  animation: fadeIn 2s forwards;
}
.pc-neowiz-main__container-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc-neowiz-main__container-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dcdee4;
}
.pc-neowiz-main__container-btn a:hover {
  color: #ffffff;
}
.pc-neowiz-main__div-text {
  position: absolute;
  bottom: 148px;
  left: 50%;
  transform: translateX(-50%);
  width: 470px;
  font-family: "Pretendard", sans-serif;
  line-height: 32px;
  font-weight: 300;
  font-size: 20px;
  text-align: center;
  align-items: center;
  color: #ffffff;
}
.pc-neowiz-main__frame-parent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  position: absolute;
  top: calc(50% + 243.5px);
  left: 1176px;
  z-index: 20;
}
.pc-neowiz-main__frame-parent .icon {
  color: #b4b6be;
  cursor: pointer;
}
.pc-neowiz-main__frame-parent .icon:hover {
  color: #ffffff;
}
.pc-neowiz-main__icon-parent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}
.pc-neowiz-main__icon-function {
  height: 20px;
  width: 20px;
  position: relative;
  overflow: visible;
  flex-shrink: 0;
}
.pc-neowiz-main__list-parent {
  position: absolute;
  height: 432px;
  top: 100px;
  left: 1330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  font-size: 21px;
  color: #dcdee4;
}
.pc-neowiz-main__list-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  width: 383px;
  height: 114px;
  cursor: pointer;
}
.pc-neowiz-main__list-banner:hover .pc-neowiz-main__list-icon-border, .pc-neowiz-main__list-banner--active .pc-neowiz-main__list-icon-border {
  border: 2px solid #ffffff;
}
.pc-neowiz-main__list-banner:hover .pc-neowiz-main__text-of-p, .pc-neowiz-main__list-banner--active .pc-neowiz-main__text-of-p {
  color: #ffffff;
}
.pc-neowiz-main__list-icon {
  position: relative;
  width: 114px;
  height: 114px;
  border-radius: 16px;
  overflow: hidden;
}
.pc-neowiz-main__list-icon-lop {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pc-neowiz-main__list-icon-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.pc-neowiz-main__text-of-p-parent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.pc-neowiz-main__text-of-p {
  font-size: 21px;
  font-weight: 400;
  font-family: "Pretendard", sans-serif;
  color: #dcdee4;
}
.pc-neowiz-main__text-of-p-container {
  width: 241px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #a7a9b1;
}
.pc-neowiz-main__p {
  margin: 0;
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.pc-neowiz-main__divider {
  width: 383px;
  position: relative;
  height: 1px;
}
.pc-neowiz-main__divider-child {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  opacity: 0.2;
}

@media (min-width: 1920px) and (max-width: 2559px) {
  .pc-neowiz-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .pc-neowiz-main__wrapper {
    width: 100%;
    height: 100%;
  }
  .pc-neowiz-main__site-bg {
    width: 100%;
    height: 100%;
  }
  .pc-neowiz-main__site-bg-mobile {
    display: none;
  }
  .pc-neowiz-main__banner-show {
    top: 93px;
    width: 1732px;
    height: 567px;
    left: 0;
    right: 0;
    border-radius: 16px;
    margin: 0 auto;
  }
}
@media (min-width: 1280px) and (max-width: 1919px) {
  .pc-neowiz-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .pc-neowiz-main__wrapper {
    width: 100%;
    height: 100%;
  }
  .pc-neowiz-main__site-bg {
    width: 100%;
    height: 100%;
  }
  .pc-neowiz-main__site-bg-mobile {
    display: none;
  }
  .pc-neowiz-main__banner-show {
    top: 93px;
    width: 1280px;
    height: 567px;
    left: 0;
    border-radius: 16px;
    margin: 0 auto;
  }
  .pc-neowiz-main__wrapper-logo-btn-text {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .pc-neowiz-main__btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .pc-neowiz-main__div-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .pc-neowiz-main__frame-parent {
    left: 91.87%;
  }
  .pc-neowiz-main__list-parent {
    display: none;
  }
}
@media (max-width: 1279px) {
  .pc-neowiz-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    position: relative;
  }
  .pc-neowiz-main__wrapper {
    width: 100%;
    height: 100%;
  }
  .pc-neowiz-main__site-bg {
    display: none;
  }
  .pc-neowiz-main__site-bg-mobile {
    width: 100%;
    height: 100%;
    bottom: 0;
    display: block;
  }
  .pc-neowiz-main__banner-show {
    position: relative;
    top: 135px;
    left: 0;
    right: 0;
    bottom: 175px;
    margin: 0 auto;
    width: 670px;
    height: 1125px;
  }
  .pc-neowiz-main__banner {
    width: 100%;
    height: 1125px;
  }
  .pc-neowiz-main__banner > div {
    display: none;
  }
  .pc-neowiz-main__banner > div.pc-neowiz-main__wrapper-character {
    display: block;
    z-index: 2;
  }
  .pc-neowiz-main__banner:nth-child(1) .pc-neowiz-main__wrapper-mobile-linear-gradient, .pc-neowiz-main__banner:nth-child(n+4) .pc-neowiz-main__wrapper-mobile-linear-gradient {
    background: linear-gradient(180deg, rgba(15, 15, 16, 0) 0%, rgb(15, 15, 16) 100%);
  }
  .pc-neowiz-main__banner:nth-child(2) .pc-neowiz-main__wrapper-mobile-linear-gradient {
    background: linear-gradient(180deg, rgba(22, 62, 152, 0) 0%, rgb(22, 62, 152) 100%);
  }
  .pc-neowiz-main__banner:nth-child(3) .pc-neowiz-main__wrapper-mobile-linear-gradient {
    background: linear-gradient(180deg, rgba(56, 114, 57, 0) 0%, rgb(56, 114, 57) 100%);
  }
  .pc-neowiz-main__wrapper-banner {
    right: 0;
    left: 0;
    width: 100%;
    height: 1060px;
    z-index: 1;
  }
  .pc-neowiz-main__img-banner {
    display: none;
  }
  .pc-neowiz-main__img-banner-mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    border-radius: 16px;
    z-index: 1;
  }
  .pc-neowiz-main__wrapper-character {
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 1125px;
    z-index: 3;
  }
  .pc-neowiz-main__img-character {
    display: none;
  }
  .pc-neowiz-main__img-character-mobile {
    display: none;
    width: 100%;
    height: 100%;
    right: 90px;
    left: 659px;
    overflow: hidden;
    object-fit: cover;
    pointer-events: none;
    transform: translateX(100%);
  }
  .pc-neowiz-main__img-character-mobile.active {
    display: block;
    animation: fadeInRightMobile var(--fade-in-duration-mobile) var(--fade-in-delay) forwards;
  }
  .pc-neowiz-main__img-character-mobile.inactive {
    display: none;
  }
}
@media (max-width: 1279px) and (min-width: 769px) {
  .pc-neowiz-main__img-character-mobile {
    width: 670px;
    margin: auto;
  }
}
@media (max-width: 1279px) {
  @keyframes fadeInRightMobile {
    0% {
      opacity: 0;
      transform: translateY(0.9%);
    }
    100% {
      opacity: var(--fade-in-opacity);
      transform: translateY(0);
    }
  }
  @keyframes fadeOutLeftMobile {
    0% {
      margin-bottom: 70px;
      opacity: var(--fade-out-opacity-init);
      transform: translateY(0);
    }
    100% {
      margin-top: 70px;
      opacity: 0;
      transform: translateY(-10%);
    }
  }
  .pc-neowiz-main__wrapper-logo-btn-text {
    left: 50%;
    transform: translateX(-50%);
    width: 606px;
    height: 604px;
    bottom: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .pc-neowiz-main__wrapper-mobile-linear-gradient {
    z-index: 3;
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 800px;
    border-radius: 16px;
  }
  .pc-neowiz-main__wrapper-logo {
    position: absolute;
    bottom: 316px;
    width: 606px;
    height: 288px;
    right: 0;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }
  .pc-neowiz-main__img-logo {
    display: none;
  }
  .pc-neowiz-main__img-logo-mobile {
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
    animation: fadeIn 2s forwards;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .pc-neowiz-main__btn {
    position: absolute;
    bottom: 120px;
    width: auto;
    height: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  .pc-neowiz-main__wrapper-btn {
    height: 60px;
    padding: 16px 55px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .pc-neowiz-main__container-btn {
    gap: 30px;
  }
  .pc-neowiz-main__div-text {
    bottom: 222px;
    width: 100%;
    max-width: 571px;
    height: 67px;
    font-size: 28px;
    font-family: "Pretendard", sans-serif;
    z-index: 1;
    line-height: 1.2;
  }
  .pc-neowiz-main__frame-parent {
    top: 1062px;
    position: absolute;
    left: 0;
    right: 0;
  }
  .pc-neowiz-main__icon-parent {
    display: none;
  }
  .pc-neowiz-main__icon-function-pause, .pc-neowiz-main__icon-function-play {
    position: absolute;
    right: 32px;
    z-index: 1;
  }
  .pc-neowiz-main__list-parent {
    display: none;
  }
}
@media (max-width: 768px) {
  .pc-neowiz-main__icon-function-pause, .pc-neowiz-main__icon-function-play {
    right: 16px;
    bottom: auto;
  }
  .pc-neowiz-main__banner-show {
    top: 68px;
    width: calc(100vw - 40px);
    height: calc((100vw - 40px) / 0.5955555556);
  }
  .pc-neowiz-main__banner {
    height: fit-content;
  }
  .pc-neowiz-main__banner > div {
    display: none;
  }
  .pc-neowiz-main__wrapper-banner {
    height: fit-content;
    animation: fadeIn 2s forwards;
  }
  .pc-neowiz-main__img-banner-mobile {
    border-radius: 8px;
  }
  .pc-neowiz-main__wrapper-mobile-linear-gradient {
    height: 400px;
    border-radius: 8px;
  }
  .pc-neowiz-main__wrapper-character {
    width: 100%;
    top: auto;
    bottom: auto;
    height: fit-content;
  }
  .pc-neowiz-main__wrapper-logo-btn-text {
    height: 430px;
    margin: auto;
    right: 0;
    width: 100%;
  }
  .pc-neowiz-main__wrapper-logo {
    width: 90.447761194%;
    bottom: 29.811320754%;
    object-fit: contain;
  }
  .pc-neowiz-main__img-logo-mobile {
    object-fit: contain;
  }
  .pc-neowiz-main__btn {
    bottom: 11.320754717%;
  }
  .pc-neowiz-main__wrapper-btn {
    height: 30px;
    padding: 8px 27px;
    flex: unset;
    margin: 0 auto;
    animation: fadeIn 2s forwards;
    border-width: 1px;
  }
  .pc-neowiz-main__container-btn {
    gap: 15px;
  }
  .pc-neowiz-main__div-text {
    bottom: 20.943396226%;
    font-size: 14px;
    max-width: 85.223880597%;
  }
  .pc-neowiz-main__frame-parent {
    top: calc(100% - 32px);
  }
}
