.bold {
  font-weight: 500;
  color: #231f20;
}

.contentWrapper1 {
    position: relative;
    width: 1066px;
    left: 50%;
    transform: translateX(-50%);
}
.contentWrapper1 .loader {
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(250px, -40px);
    opacity: 0;
    transition-duration: .6s;
}
.contentWrapper1.active .loader {
    transition-delay: 1.1s;
    opacity: 1;
    transform: translate(210px, -40px);
}
.contentWrapper1 h1 {
    font-size: 67px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 50px;
    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(4) {
    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(4) {
    transition-delay: .7s;
    opacity: 1;
    transform: translateX(0px);
}
.bold {
  font-weight: 500;
  color: #231f20;
}
.contentWrapper1 img {
    width: 1066px;
    padding: 70px 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    transition-duration: .6s;
    opacity: 0;
}
.contentWrapper1.active img {
    transition-delay: .9s;
    opacity: 1;
}

.inBox {
  width: 1066px;
  text-align: left;
  transition-duration: .9s;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.inBox>h1 {
  font-size: 29px;
  font-weight: 500;
  color: var(--main-color);
  margin-bottom: 30px;
  transition-duration: .6s;
  opacity: 0;
  transform: translateX(40px);
}
.inBox.active>h1 {
  transition-delay: .3s;
  opacity: 1;
  transform: translateX(0px);
}
.inBox .flexBox {
  display: flex;
  padding-bottom: 40px;
}
.inBox .textBox {
  transition-duration: .6s;
  opacity: 0;
  transform: translateX(40px);
}
.inBox.active .textBox {
  opacity: 1;
  transform: translateX(0px);
}
.inBox.active .textBox:nth-child(1) {
  transition-delay: .6s;
}
.inBox.active .textBox:nth-child(2) {
  transition-delay: .7s;
}
.inBox.active .textBox:nth-child(3) {
  transition-delay: .8s;
}
.inBox.active .textBox:nth-child(4) {
  transition-delay: .9s;
}
.inBox.active .textBox:nth-child(5) {
  transition-delay: 1s;
}
.inBox .textBox:nth-child(1) {
  padding-right: 70px;
  width: 320px;
}
.inBox .textBox h1 {
  font-size: 18px;
  font-weight: 400;
  color: var(--main-color);
  margin-bottom: 7px;
}
.inBox .textBox p {
  font-size: 17px;
  font-weight: 300;
  color: #7e8083;
  line-height: 24px;
}
.inBox img:nth-child(1) {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 8px;
}
.inBox .flexWrap {
  display: flex;
}
.inBox .textWrap {
  padding-left: 25px;
  position: relative;
  top: -23px;
}
.inBox .textWrap .textBox {
  width: 740px;
  margin-bottom: 43px;
  padding-right: 0px;
}
.inBox .textWrap .textBox:nth-child(3) p {
  text-indent : -105px;
  padding-left: 105px;
}
.inBox .flexWrap .imgWrap img {
  width: 290px;
  height: auto;
  transition-duration: 1s;
  opacity: 0;
}
.inBox.active .flexWrap .imgWrap img {
  transition-delay: .6s;
  opacity: 1;
}

/**** Responsive CSS Code ****/
/* 0~767 768~1279 1280~1980*/

/** 0~768 **/
@media (max-width: 768px) {

}
/** 768~1280 **/
@media (min-width: 768px) and (max-width: 1279px) {

    .contentWrapper1 .loader {
        transform: translate(350px, -40px);
    }
    .contentWrapper1.active .loader {
        transform: translate(310px, -40px);
    }
    .contentWrapper1 {
        width: 768px;
        margin-top: 120px;
        padding: 0 13px;
    }
    .contentWrapper1 img {
      width: 744px;
      padding: 50px 0;
    }
    .inBox {
      width: 768px;
      padding: 0 13px;
    }
    .inBox .flexWrap .imgWrap {
      height: 649px;
      width: 100px;
      overflow: clip;
      border-radius: 10px;
    }
    .inBox .flexWrap .imgWrap img {
      width: 234px;
      height: 649px;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
    }
    .inBox .textWrap {
      padding-left: 25px;
    }
    .inBox .textWrap .textBox {
      width: auto;
      margin-bottom: 38px;
    }
    .inBox .textWrap .textBox:nth-child(1) p {
      text-indent: -220px;
      padding-left: 220px;
    }
    .inBox .textWrap .textBox:nth-child(2) p {
      text-indent: -129px;
      padding-left: 129px;
    }
    .inBox .textWrap .textBox:nth-child(4) p {
      text-indent: -325px;
      padding-left: 325px;
    }

}