/* ---------------about-section START--------------- */
.about-section .about-wrap .about-list > .list-item {
  display: flex;
  align-items: center;
}
.about-section .about-wrap .about-list > .list-item:nth-of-type(odd) .text-box {
  padding-right: 2.5%;
}
.about-section .about-wrap .about-list > .list-item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.about-section .about-wrap .about-list > .list-item:nth-of-type(even) .text-box {
  text-align: right;
  padding-left: 2.5%;
}
.about-section .about-wrap .about-list > .list-item.active .ani-text .ani-inner {
  transform: translateY(0);
  opacity: 1;
}
.about-section .about-wrap .about-list > .list-item.active .opacity-text {
  opacity: 1;
  transition-delay: 0.3s;
}
.about-section .about-wrap .about-list > .list-item.active .opacity-img {
  opacity: 1;
  transition-delay: 0.6s;
}
.about-section .about-wrap .about-list > .list-item .text-box {
  width: 50%;
  box-sizing: border-box;
}
.about-section .about-wrap .about-list > .list-item .img-box {
  width: 50%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}
.about-section .about-wrap .about-list > .list-item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/* ---------------about-section END--------------- */
/* ---------------will-section START--------------- */
.will-section {
  position: relative;
}
.will-section.active .will-wrap .img-box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.will-section .will-bg {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.will-section .will-wrap {
  position: relative;
}
.will-section .will-wrap .img-box {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s, transform 1s;
}
.will-section .will-wrap .img-box img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 750px;
  margin: 0 auto;
}
.will-section .will-wrap .will-list {
  display: flex;
  align-items: stretch;
  gap: 25px;
}
.will-section .will-wrap .will-list > .list-item {
  width: calc((100% - 50px) / 3);
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
.will-section .will-wrap .will-list > .list-item.active {
  transform: translateY(0);
  opacity: 1;
}
.will-section .will-wrap .will-list > .list-item.active:nth-of-type(2) {
  transition-delay: 0.3s;
}
.will-section .will-wrap .will-list > .list-item.active:nth-of-type(3) {
  transition-delay: 0.6s;
}
.will-section .will-wrap .will-list > .list-item .inner {
  height: 100%;
  box-sizing: border-box;
  padding: 70px 50px;
}
.will-section .will-wrap .will-list > .list-item .inner .icon {
  display: block;
}
.will-section .will-wrap .will-list > .list-item .inner .icon img,
.will-section .will-wrap .will-list > .list-item .inner .icon svg {
  display: block;
  height: 70px;
  width: auto;
}
.will-section .will-wrap .will-list > .list-item .inner .title {
  margin-top: 40px;
}
.will-section .will-wrap .will-list > .list-item .inner .text {
  line-height: 1.5;
  margin-top: 25px;
}

/* ---------------will-section END--------------- */
/* ---------------history-section START--------------- */
.history-section .history-wrap .history-list .year-box {
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  border-top: 3px solid #f2f6fa;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s, transform 1s;
}
.history-section .history-wrap .history-list .year-box:nth-last-of-type(1) {
  border-bottom: 3px solid #f2f6fa;
}
.history-section .history-wrap .history-list .year-box.active {
  opacity: 1;
  transform: translateY(0);
}
.history-section .history-wrap .history-list .year-box .year-title {
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 40px 80px;
}
.history-section .history-wrap .history-list .year-box .month-list {
  width: 100%;
  box-sizing: border-box;
  padding-left: 80px;
}
.history-section .history-wrap .history-list .year-box .month-list > li {
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  gap: 35px;
  padding: 40px 40px 40px 0;
}
.history-section .history-wrap .history-list .year-box .month-list > li:not(:nth-of-type(1)) {
  border-top: 3px solid #f2f6fa;
}
.history-section .history-wrap .history-list .year-box .month-list > li .title {
  flex-shrink: 0;
  line-height: 1.5;
}
.history-section .history-wrap .history-list .year-box .month-list > li .text {
  line-height: 1.5;
}

/* ---------------history-section END--------------- */
/* ---------------media screen START--------------- */
@media screen and (max-width: 1350px) {
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .about-list > .list-item .img-box {
    height: 360px;
    border-radius: 19px;
  }
  /* ---------------about-section END--------------- */
  /* ---------------will-section START--------------- */
  .will-section .will-wrap .img-box img {
    max-width: 680px;
  }
  .will-section .will-wrap .will-list {
    gap: 20px;
  }
  .will-section .will-wrap .will-list > .list-item {
    width: calc((100% - 40px) / 3);
    border-radius: 45px;
  }
  .will-section .will-wrap .will-list > .list-item .inner {
    padding: 63px 45px;
  }
  .will-section .will-wrap .will-list > .list-item .inner .icon img,
  .will-section .will-wrap .will-list > .list-item .inner .icon svg {
    height: 63px;
  }
  .will-section .will-wrap .will-list > .list-item .inner .title {
    margin-top: 36px;
  }
  .will-section .will-wrap .will-list > .list-item .inner .text {
    margin-top: 23px;
  }
  /* ---------------will-section END--------------- */
  /* ---------------history-section START--------------- */
  .history-section .history-wrap .history-list .year-box .year-title {
    padding: 36px 72px;
  }
  .history-section .history-wrap .history-list .year-box .month-list {
    padding-left: 72px;
  }
  .history-section .history-wrap .history-list .year-box .month-list > li {
    gap: 32px;
    padding: 36px 36px 36px 0;
  }
  /* ---------------history-section END--------------- */
}
@media screen and (max-width: 1150px) {
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .about-list > .list-item .img-box {
    height: 320px;
    border-radius: 18px;
  }
  /* ---------------about-section END--------------- */
  /* ---------------will-section START--------------- */
  .will-section .will-wrap .img-box img {
    max-width: 610px;
  }
  .will-section .will-wrap .will-list {
    gap: 15px;
  }
  .will-section .will-wrap .will-list > .list-item {
    width: calc((100% - 30px) / 3);
    border-radius: 40px;
  }
  .will-section .will-wrap .will-list > .list-item .inner {
    padding: 56px 40px;
  }
  .will-section .will-wrap .will-list > .list-item .inner .icon img,
  .will-section .will-wrap .will-list > .list-item .inner .icon svg {
    height: 56px;
  }
  .will-section .will-wrap .will-list > .list-item .inner .title {
    margin-top: 32px;
  }
  .will-section .will-wrap .will-list > .list-item .inner .text {
    margin-top: 21px;
  }
  /* ---------------will-section END--------------- */
  /* ---------------history-section START--------------- */
  .history-section .history-wrap .history-list .year-box .year-title {
    padding: 32px 64px;
  }
  .history-section .history-wrap .history-list .year-box .month-list {
    padding-left: 64px;
  }
  .history-section .history-wrap .history-list .year-box .month-list > li {
    gap: 29px;
    padding: 32px 32px 32px 0;
  }
  /* ---------------history-section END--------------- */
}
@media screen and (max-width: 991px) {
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .about-list > .list-item:nth-of-type(odd) {
    flex-direction: column;
  }
  .about-section .about-wrap .about-list > .list-item:nth-of-type(even) {
    flex-direction: column;
  }
  .about-section .about-wrap .about-list > .list-item .text-box {
    width: 100%;
    padding: unset !important;
  }
  .about-section .about-wrap .about-list > .list-item .img-box {
    width: 100%;
    height: auto;
    margin-top: 26px;
  }
  /* ---------------about-section END--------------- */
  /* ---------------will-section START--------------- */
  .will-section .will-wrap .will-list {
    gap: 25px;
    flex-wrap: wrap;
  }
  .will-section .will-wrap .will-list > .list-item {
    width: 100%;
    transition-delay: 0s !important;
  }
  /* ---------------will-section END--------------- */
  /* ---------------history-section START--------------- */
  .history-section .history-wrap .history-list .year-box {
    flex-direction: column;
  }
  .history-section .history-wrap .history-list .year-box .year-title {
    width: 100%;
    padding: 32px 64px 0 0;
  }
  .history-section .history-wrap .history-list .year-box .month-list {
    padding-left: 32px;
  }
  /* ---------------history-section END--------------- */
}
@media screen and (max-width: 600px) {
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .about-list > .list-item .img-box {
    border-radius: 17px;
    margin-top: 24px;
  }
  /* ---------------about-section END--------------- */
  /* ---------------will-section START--------------- */
  .will-section .will-wrap .will-list {
    gap: 20px;
  }
  .will-section .will-wrap .will-list > .list-item {
    border-radius: 35px;
  }
  .will-section .will-wrap .will-list > .list-item .inner {
    padding: 49px 35px;
  }
  .will-section .will-wrap .will-list > .list-item .inner .icon img,
  .will-section .will-wrap .will-list > .list-item .inner .icon svg {
    height: 49px;
  }
  .will-section .will-wrap .will-list > .list-item .inner .title {
    margin-top: 28px;
  }
  .will-section .will-wrap .will-list > .list-item .inner .text {
    margin-top: 19px;
  }
  /* ---------------will-section END--------------- */
  /* ---------------history-section START--------------- */
  .history-section .history-wrap .history-list .year-box .year-title {
    padding: 28px 56px 0 0;
  }
  .history-section .history-wrap .history-list .year-box .month-list {
    padding-left: 28px;
  }
  .history-section .history-wrap .history-list .year-box .month-list > li {
    gap: 26px;
    padding: 28px 28px 28px 0;
  }
  /* ---------------history-section END--------------- */
}
@media screen and (max-width: 450px) {
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .about-list > .list-item .img-box {
    border-radius: 16px;
    margin-top: 22px;
  }
  /* ---------------about-section END--------------- */
  /* ---------------will-section START--------------- */
  .will-section .will-wrap .will-list {
    gap: 15px;
  }
  .will-section .will-wrap .will-list > .list-item {
    border-radius: 30px;
  }
  .will-section .will-wrap .will-list > .list-item .inner {
    padding: 42px 30px;
  }
  .will-section .will-wrap .will-list > .list-item .inner .icon img,
  .will-section .will-wrap .will-list > .list-item .inner .icon svg {
    height: 42px;
  }
  .will-section .will-wrap .will-list > .list-item .inner .title {
    margin-top: 24px;
  }
  .will-section .will-wrap .will-list > .list-item .inner .text {
    margin-top: 17px;
  }
  /* ---------------will-section END--------------- */
  /* ---------------history-section START--------------- */
  .history-section .history-wrap .history-list .year-box .year-title {
    padding: 24px 48px 0 0;
  }
  .history-section .history-wrap .history-list .year-box .month-list {
    padding-left: 24px;
  }
  .history-section .history-wrap .history-list .year-box .month-list > li {
    gap: 23px;
    padding: 24px 24px 24px 0;
  }
  /* ---------------history-section END--------------- */
}
/* ---------------media screen END--------------- */