/* ---------------about-section START--------------- */
.about-section {
  overflow: hidden;
}
.about-section .about-wrap {
  display: flex;
  align-items: center;
}
.about-section .about-wrap .text-box {
  width: 50%;
  box-sizing: border-box;
  padding-right: 75px;
}
.about-section .about-wrap .text-box .sub-title {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 1.5s, transform 1.5s;
  transition-delay: 0.2s;
}
.about-section .about-wrap .text-box .desc {
  line-height: 150%;
  margin-top: 60px;
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 1.5s, transform 1.5s;
  transition-delay: 0.4s;
}
.about-section .about-wrap .text-box .desc .sign {
  display: inline-flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1.5s;
  transition-delay: 1.1s;
}
.about-section .about-wrap .text-box .desc .sign img {
  display: block;
  height: 3em;
  width: auto;
  margin-left: 0.15em;
}
.about-section .about-wrap .img-box {
  width: 50%;
  box-sizing: border-box;
  padding-left: 75px;
  opacity: 0;
  transition: opacity 1.5s;
}
.about-section .about-wrap .img-box img {
  display: block;
  height: auto;
  width: 50%;
  margin: 0 auto;
}
.about-section.active .about-wrap .text-box .sub-title {
  opacity: 1;
  transform: translateX(0);
}
.about-section.active .about-wrap .text-box .desc {
  opacity: 1;
  transform: translateX(0);
}
.about-section.active .about-wrap .text-box .desc .sign {
  opacity: 1;
}
.about-section.active .about-wrap .img-box {
  opacity: 1;
}

/* ---------------about-section END--------------- */
/* 

*/
/* ---------------media query START--------------- */
@media screen and (max-width: 1600px) {
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .text-box {
    padding-right: 70px;
  }
  .about-section .about-wrap .text-box .desc {
    margin-top: 55px;
  }
  .about-section .about-wrap .img-box {
    padding-left: 70px;
  }
  /* ---------------about-section END--------------- */
}
@media screen and (max-width: 1350px) {
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .text-box {
    padding-right: 60px;
  }
  .about-section .about-wrap .text-box .desc {
    margin-top: 50px;
  }
  .about-section .about-wrap .img-box {
    padding-left: 60px;
  }
  /* ---------------about-section END--------------- */
}
@media screen and (max-width: 1150px) {
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .text-box {
    padding-right: 50px;
  }
  .about-section .about-wrap .text-box .desc {
    margin-top: 45px;
  }
  .about-section .about-wrap .img-box {
    padding-left: unset;
  }
  /* ---------------about-section END--------------- */
}
@media screen and (max-width: 991px) {
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .text-box {
    padding-right: 45px;
  }
  .about-section .about-wrap .text-box .desc {
    margin-top: 40px;
  }
  /* ---------------about-section END--------------- */
}
@media screen and (max-width: 850px) {
  /* ---------------about-section START--------------- */
  .about-section .about-wrap {
    flex-direction: column-reverse;
  }
  .about-section .about-wrap .text-box {
    width: 100%;
    padding-right: unset;
    padding-top: 45px;
  }
  .about-section .about-wrap .text-box .desc {
    margin-top: 35px;
  }
  .about-section .about-wrap .img-box {
    width: 100%;
    max-width: 450px;
    padding-left: unset;
  }
  /* ---------------about-section END--------------- */
}
@media screen and (max-width: 600px) {
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .text-box {
    padding-top: 40px;
  }
  .about-section .about-wrap .text-box .desc {
    margin-top: 30px;
  }
  /* ---------------about-section END--------------- */
}
@media screen and (max-width: 450px) {
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .text-box {
    padding-top: 35px;
  }
  .about-section .about-wrap .text-box .desc {
    margin-top: 25px;
  }
  /* ---------------about-section END--------------- */
}
@media screen and (max-width: 350px) {
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .text-box {
    padding-top: 30px;
  }
  .about-section .about-wrap .text-box .desc {
    margin-top: 20px;
  }
  /* ---------------about-section END--------------- */
}
/* ---------------media query END--------------- */