.contentWrapper1 {
    position: relative;
    width: 1066px;
    left: 50%;
    transform: translateX(-50%);
}
.contentWrapper1 .ko-only {
  letter-spacing: -0.07em;
}
.contentWrapper1 .loader {
    position: absolute;
    left: 32%;
    top: 0%;
    transform: translate(600px, -40px);
    opacity: 0;
    transition-duration: .6s;
}
.contentWrapper1.active .loader {
    transition-delay: 1.1s;
    opacity: 1;
    transform: translate(560px, -40px);
}
.contentWrapper1 h1 {
    font-size: 67px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 40px;
    transition-duration: .6s;
    opacity: 0;
    transform: translateX(40px);
}
.contentWrapper1.active h1 {
    transition-delay: .3s;
    opacity: 1;
    transform: translateX(0px);
}
/*.contentWrapper1 p:nth-child(3) {
    font-size: 26px;
    font-weight: 400;
    color: #000000;
    line-height: 32px;
    transition-duration: .6s;
    opacity: 0;
    transform: translateX(40px);
}
.contentWrapper1.active p:nth-child(3) {
    transition-delay: .5s;
    opacity: 1;
    transform: translateX(0px);
    margin-bottom: 5px;
}*/
.contentWrapper1 p:nth-child(3) {
    font-size: 17px;
    font-weight: 300;
    text-align: justify;
    color: #7c7c7c;
    line-height: 32px;
    transition-duration: .6s;
    opacity: 0;
    transform: translateX(40px);
}
.contentWrapper1.active p:nth-child(3) {
    transition-delay: .7s;
    opacity: 1;
    transform: translateX(0px);
}
.contentWrapper1 p:nth-child(4) span {
  color: #231f20;
  font-weight: 500;
}

.bulbPart {
  background-color: #000000;
  padding: 70px 0 100px;
  text-align: center;
  margin-top: 70px;
}
.bulbPart h1 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 9px;
  opacity: 0;
  transition-duration: .6s;
}
.bulbPart.active h1 {
  transition-delay: .3s;
  opacity: 1;
}
.bulbPart img:nth-child(2) {
  margin-bottom: 50px;
  width: 212px;
  opacity: 0;
  transition-duration: .6s;
}
.bulbPart.active img:nth-child(2) {
  transition-delay: .4s;
  opacity: 1;
}
.bulbPart .textPart {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition-duration: .6s;
}
.bulbPart.active .textPart:nth-child(3) {
  transition-delay: .6s;
  opacity: 1;
}
.bulbPart.active .textPart:nth-child(5) {
  transition-delay: 1s;
  opacity: 1;
}
.bulbPart .textPart p {
  font-size: 14px;
  font-weight: 300;
  color: #b5b5b5;
}
.bulbPart .textPart:nth-child(3) p {
  padding: 0 114px;
  transform: translateX(-133px);
}
.bulbPart .textPart:nth-child(5) p {
  padding: 0 102px;
  transform: translateX(-30px);
}
.bulbPart img:nth-child(4) {
  width: 1066px;
  margin: 7px 0;
  height: auto;
  opacity: 0;
  transition-duration: .6s;
}
.bulbPart.active img:nth-child(4) {
  transition-delay: .8s;
  opacity: 1;
}

.scrollPart {
  background-color: #191919;
  padding: 70px 0 5px;
  text-align: center;
}
.scrollPart h1 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 9px;
  opacity: 0;
  transition-duration: .6s;
}
.scrollPart.active h1 {
  transition-delay: .3s;
  opacity: 1;
}
.scrollPart img:nth-child(2) {
  margin-bottom: 50px;
  width: 140px;
  opacity: 0;
  transition-duration: .6s;
}
.scrollPart.active img:nth-child(2) {
  transition-delay: .4s;
  opacity: 1;
}
.scrollPart .box {
  width: 1066px;
  height: 112px;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  left: 50%;
  transform: translate(-50%, 20px);
  margin: 2px 0;
  transition-duration: .6s;
  opacity: 0;
  transition:
    opacity 0.6s ease var(--appear-delay, 0s),
    transform 0.6s ease var(--appear-delay, 0s),
    background-color 0.3s ease; /* hover는 항상 즉시 */
}
.scrollPart.active .box {
  opacity: 1;
  transform: translate(-50%, 0);
}
.scrollPart.active .box:nth-child(3) {
  --appear-delay: .6s;
}
.scrollPart.active .box:nth-child(5) {
  --appear-delay: .7s;
}
.scrollPart.active .box:nth-child(7) {
  --appear-delay: .8s;
}
.scrollPart.active .box:nth-child(9) {
  --appear-delay: .9s;
}
.scrollPart.active .box:nth-child(11) {
  --appear-delay: 1s;
}
.scrollPart .box:hover {
  background-color: #21aac1;
}
.scrollPart .box p:nth-child(2) {
  font-size: 15px;
  font-weight: 300;
  color: #7c7c7c;
  margin-left: 44px;
}
.scrollPart .box:hover p:nth-child(2) {
  color: #ffffff;
}
.scrollPart .box h1 {
  font-size: 26px;
  font-weight: 400;
  color: #adadad;
  width: 160px;
  margin: 0 100px 0 120px;
  line-height: 31px;
  position: relative;
  top: 5px;
}
.scrollPart .box:hover h1 {
  color: #ffffff;
}
.scrollPart .box h1 .smallH1 {
  font-size: 21px;
  display: block;
}
.scrollPart .box img:nth-child(4) {
  width: 50px;
  height: 50px;
  margin-right: 106px;
  transition-duration: .3s;
  opacity: 1;
}
.scrollPart .box:hover img:nth-child(4) {
  opacity: 0;
}
.scrollPart .box.onClick img:nth-child(4) {
  transform: rotate(180deg);
}
.scrollPart .box img:nth-child(1) {
  width: 200px;
}
.scrollPart .box img:nth-child(5) {
  width: 200px;
}
.scrollPart .box p:nth-child(6) {
  position: absolute;
  color: #ffffff;
  font-size: 14px;
  border: 2px solid #ffffff;
  border-radius: 25px;
  width: 103px;
  height: 23px;
  line-height: 18px;
  right: 280px;
  font-weight: 400;
  opacity: 0;
  cursor: pointer;
  transition-duration: .6s;
}
.scrollPart .box:hover p:nth-child(6) {
  opacity: 1;
}

/*ChatGPT*/
.scrollPart .box h1,
.scrollPart .box p:nth-child(2) {
  transition: color 0.6s ease, opacity 0.6s ease var(--appear-delay, 0s), transform 0.6s ease var(--appear-delay, 0s);
}
.scrollPart .box:hover h1,
.scrollPart .box:hover p:nth-child(2) {
  color: #ffffff;
  transition-delay: 0s !important;
}

/**inBox**/
.scrollPart .inBox {
  width: 1066px;
  text-align: left;
  background-color: #191919;
  transition-duration: .9s;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.scrollPart .inBox.offClick {
  height: 0px;
  opacity: 0;
  overflow: hidden;
}
.scrollPart .inBox.onClick {
  opacity: 1;
  padding: 50px 0;
}
.scrollPart .inBox:nth-child(4).onClick {
  height: 1663px;
}
.scrollPart .inBox:nth-child(6).onClick {
  height: 1546px;
}
.scrollPart .inBox:nth-child(8).onClick {
  height: 1358px;
}
.scrollPart .inBox:nth-child(10).onClick {
  height: 1624px;
}
.scrollPart .inBox:nth-child(12).onClick {
  height: 2082px;
}
.scrollPart .inBox:nth-child(12) {
  padding-bottom: 0px;
}

/**inBox-공통코드**/
.scrollPart .inBox .flexBox {
  display: flex;
  padding-bottom: 40px;
}
.scrollPart .inBox .textBox:nth-child(1) {
  padding-right: 70px;
  width: 320px;
}
.scrollPart .inBox .textBox h1 {
  font-size: 18px;
  font-weight: 400;
  color: var(--main-color);
  margin-bottom: 7px;
}
.scrollPart .inBox .textBox p {
  font-size: 17px;
  font-weight: 300;
  color: #b8babc;
  line-height: 24px;
}

/*inBox-1*/
.scrollPart .inBox:nth-child(4) img:nth-child(1) {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 8px;
}
.scrollPart .inBox:nth-child(4)>p {
  font-size: 17px;
  font-weight: 300;
  color: #b8babc;
  margin-bottom: 70px;
  width: 100%;
  line-height: 30px;
}
.scrollPart .inBox:nth-child(4)>h1 {
  font-size: 29px;
  font-weight: 500;
  color: var(--main-color);
  margin-bottom: 20px;
}
.scrollPart .inBox:nth-child(4) img:nth-child(4) {
  margin-bottom: 20px;
}
.scrollPart .inBox:nth-child(4) img:nth-child(7) {
  margin-bottom: 20px;
}

/*inBox-2*/
.scrollPart .inBox:nth-child(6) img:nth-child(1) {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 8px;
}
.scrollPart .inBox:nth-child(6)>p {
  font-size: 17px;
  font-weight: 300;
  color: #b8babc;
  margin-bottom: 70px;
  width: 100%;
  line-height: 30px;
}
.scrollPart .inBox:nth-child(6)>h1 {
  font-size: 29px;
  font-weight: 500;
  color: var(--main-color);
  margin-bottom: 20px;
}
.scrollPart .inBox:nth-child(6) .flexWrap {
  display: flex;
}
.scrollPart .inBox:nth-child(6) .textWrap {
  padding-left: 40px;
  position: relative;
  top: -23px;
}
.scrollPart .inBox:nth-child(6) .flexWrap img:nth-child(1) {
  width: 330px;
}

/*inBox-3*/
.scrollPart .inBox:nth-child(8) img:nth-child(1) {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 8px;
}
.scrollPart .inBox:nth-child(8)>p {
  font-size: 17px;
  font-weight: 300;
  color: #b8babc;
  margin-bottom: 70px;
  width: 100%;
  line-height: 30px;
}
.scrollPart .inBox:nth-child(8)>h1 {
  font-size: 29px;
  font-weight: 500;
  color: var(--main-color);
  margin-bottom: 20px;
}
.scrollPart .inBox:nth-child(8) img:nth-child(4) {
  margin-bottom: 20px;
}

/*inBox-4*/
.scrollPart .inBox:nth-child(10)>img:nth-child(1) {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 8px;
}
.scrollPart .inBox:nth-child(10)>p {
  font-size: 17px;
  font-weight: 300;
  color: #b8babc;
  margin-bottom: 70px;
  width: 100%;
  line-height: 30px;
}
.scrollPart .inBox:nth-child(10)>h1 {
  font-size: 29px;
  font-weight: 500;
  color: var(--main-color);
  margin-bottom: 20px;
}
.scrollPart .inBox:nth-child(10) .flexWrap {
  display: flex;
}
.scrollPart .inBox:nth-child(10) .textWrap {
  padding-left: 40px;
  position: relative;
  top: -23px;
}
.scrollPart .inBox:nth-child(10) .textWrap .textBox {
  width: fit-content;
  padding-bottom: 30px;
}
.scrollPart .inBox:nth-child(10) .textWrap .textBox:nth-child(5) img {
  width: 530px;
  margin-top: 6px;
}

/*inBox-5*/
.scrollPart .inBox:nth-child(12) img:nth-child(1) {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 8px;
}
.scrollPart .inBox:nth-child(12)>p {
  font-size: 17px;
  font-weight: 300;
  color: #b8babc;
  margin-bottom: 70px;
  width: 100%;
  line-height: 30px;
} .scrollPart .inBox:nth-child(12) img:nth-child(3) {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 50px;
}
.scrollPart .inBox:nth-child(12) .flexWrap {
  display: flex;
}
.scrollPart .inBox:nth-child(12) .textWrap {
  padding-left: 25px;
  position: relative;
  top: -23px;
}
.scrollPart .inBox:nth-child(12) .textWrap .textBox {
  width: 792px;
  margin-bottom: 50px;
  padding-right: 0px;
}
.scrollPart .inBox:nth-child(12) .textWrap>p {
  font-size: 17px;
  color: #ffffff;
  position: relative;
  top: 39px;
}
.scrollPart .inBox:nth-child(12) .flexWrap img:nth-child(1) {
  width: 249px;
  height: auto;
}


/**Footer**/

#SideFooter {
  transition-delay: 0s!important;
  transition-duration: 0s!important;
  background: #191919;
  opacity: 1!important;
}
#SideFooter img {
  transition-duration: .6s;
  opacity: 0;
}
#SideFooter.active img {
  transition-delay: .3s;
  opacity: 1;
}
#SideFooter p {
  transition-duration: .6s;
  opacity: 0;
}
#SideFooter.active p {
  transition-delay: .3s;
  opacity: 1;
}