.linkList .Img img, .newsArea .plusArrow, .bannerArea .socialBox .socialList li a svg, .bannerArea .socialBox .socialList li, .popWin .close::before, .popWin .close::after, .popWin .close {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.popWin {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100vh;
  font-size: 15px;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 800px;
  max-width: 90%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .popContent {
  max-height: 88vh;
  overflow-y: auto;
}
.popWin img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.popWin .Txt {
  padding: 30px;
}
.popWin .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWin .close {
  width: 46px;
  height: 46px;
  background-color: #f1bc47;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.popWin .close::before, .popWin .close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 23px;
  width: 25px;
  height: 1px;
  background-color: #fff;
}
.popWin .close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popWin .close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 1181px) {
  .popWin .close:hover {
    background-color: #f1bc47;
  }
  .popWin .close:hover::before {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  .popWin .close:hover::after {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}
.popWin.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
  opacity: 1;
}
.popWin.show .inner {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 1180px) {
  .popWin .popContent {
    max-height: calc(100vh - 150px);
  }
}

.mainArea {
  padding: 0;
}

.bannerArea:not(.show) .bannerItem .Txt .Img {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
.bannerArea:not(.show) .bannerItem .Txt .textEditor {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
.bannerArea:not(.show) .linkBannerBox .linkBanner .Img {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
.bannerArea:not(.show) .linkBannerBox .linkBanner .Txt {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
.bannerArea.show .bannerItem .Txt .Img {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-animation: showLeft 0.4s 1s ease-in-out forwards;
          animation: showLeft 0.4s 1s ease-in-out forwards;
}
.bannerArea.show .bannerItem .Txt .textEditor {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-animation: showLeft 0.4s 1.2s ease-in-out forwards;
          animation: showLeft 0.4s 1.2s ease-in-out forwards;
}
.bannerArea.show .linkBannerBox .linkBanner .Img {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-animation: showRight 0.4s 1s ease-in-out forwards;
          animation: showRight 0.4s 1s ease-in-out forwards;
}
.bannerArea.show .linkBannerBox .linkBanner .Txt {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-animation: showRight 0.4s 1.2s ease-in-out forwards;
          animation: showRight 0.4s 1.2s ease-in-out forwards;
}
.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 100%;
}
.bannerArea .bg .Img {
  width: 86%;
  max-width: 1630px;
}
.bannerArea .bg .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.bannerArea .bannerInfo {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.bannerArea .bannerList {
  width: 71%;
  max-width: 1345px;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerItem .Txt {
  max-width: 710px;
  padding: 110px 20px 85px;
}
.bannerArea .bannerItem .Txt .textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-left: 5px;
}
.bannerArea .bannerItem .Txt .title {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 5.8px;
  opacity: 0;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 18px;
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #fff;
  display: block;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-top: 10px;
  opacity: 0;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 22px;
  }
}
.bannerArea .bannerItem .Txt .text {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2.8px;
  margin-left: 13px;
  opacity: 0;
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 14px;
  }
}
.bannerArea .bannerItem .Txt .btnBox {
  opacity: 0;
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn {
  width: 100px;
  height: 100px;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  bottom: 150px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #fff;
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 5px);
  z-index: 1;
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn::after {
  content: "";
  border: 1px dashed #fff;
  border-radius: 50%;
  z-index: 1;
  width: 75%;
  height: 75%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt {
    padding: 20px 20px 85px;
  }
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt {
    padding: 20px;
  }
}
.bannerArea .bannerItem .Txt .Img {
  position: relative;
  padding-bottom: 35px;
  margin-bottom: 30px;
  margin-top: -35px;
}
.bannerArea .bannerItem .Txt .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.bannerArea .bannerItem .Txt .Img::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 6px;
  bottom: 0;
  background-color: #fff;
}
.bannerArea .bannerItem > .Img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.bannerArea .bannerItem > .Img img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 640px) {
  .bannerArea .bannerItem > .Img {
    padding-bottom: 75%;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem > .Img {
    padding-bottom: 100%;
  }
}
@media (min-width: 1181px) {
  .bannerArea .bannerItem:hover > .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.bannerArea .linkBannerArea {
  background-color: #fff;
  height: 85%;
  width: 25%;
  max-width: 465px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bannerArea .linkBannerArea .linkBannerBox {
  margin-top: -45px;
}
.bannerArea .linkBannerArea .linkBanner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 20px;
  max-height: 760px;
  gap: 70px;
}
.bannerArea .linkBannerArea .linkBanner .Img {
  width: 100%;
  max-width: 250px;
  padding: 27.5px;
  background-color: #f7f9f9;
  border-radius: 10px;
}
.bannerArea .linkBannerArea .linkBanner .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.bannerArea .linkBannerArea .linkBanner .Txt .textEditor {
  color: #2e2e2e;
  width: 100%;
  max-width: 295px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  letter-spacing: 2.3px;
  line-height: 1.7;
  text-align: center;
}
.bannerArea .linkBannerArea .linkBanner .Txt .textEditor .enFont {
  letter-spacing: 2px;
}
@media (max-width: 1440px) {
  .bannerArea .linkBannerArea .linkBannerBox {
    margin-top: 0px;
    height: 100%;
  }
  .bannerArea .linkBannerArea .linkBanner {
    gap: 0;
    height: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 1280px) {
  .bannerArea .linkBannerArea .linkBanner .Img {
    max-width: 215px;
  }
}
.bannerArea .slick-current .Txt .title {
  -webkit-animation: slideUpAnimation 0.8s ease-in-out forwards;
          animation: slideUpAnimation 0.8s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .subtitle {
  -webkit-animation: slideUpAnimation 0.8s 0.4s ease-in-out forwards;
          animation: slideUpAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .text {
  -webkit-animation: slideUpAnimation 0.8s 0.8s ease-in-out forwards;
          animation: slideUpAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .btnBox {
  -webkit-animation: slideUpAnimation 0.8s 1.2s ease-in-out forwards;
          animation: slideUpAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .videoBtn::after {
  -webkit-animation: rotate 50s linear forwards;
          animation: rotate 50s linear forwards;
}
.bannerArea .slick-arrow {
  top: 80%;
  left: auto;
}
.bannerArea .slick-arrow.slick-prev {
  right: 110px;
}
.bannerArea .slick-arrow.slick-next {
  right: 50px;
}
.bannerArea .socialBox {
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bannerArea .socialBox .socialList {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.bannerArea .socialBox .socialList li {
  margin: 7.5px 0;
}
.bannerArea .socialBox .socialList li:first-child {
  margin-top: 0;
}
.bannerArea .socialBox .socialList li:last-child {
  margin-bottom: 0;
}
.bannerArea .socialBox .socialList li a {
  color: #fff;
  display: block;
  font-size: 18px;
  line-height: 35px;
  text-align: center;
}
.bannerArea .socialBox .socialList li a svg {
  width: 20px;
  height: 18px;
  display: inline-block;
  fill: #fff;
  margin-top: -2px;
  vertical-align: middle;
}
@media (min-width: 1181px) {
  .bannerArea .socialBox .socialList li a:hover {
    color: #f1bc47;
  }
  .bannerArea .socialBox .socialList li a:hover svg {
    fill: #f1bc47;
  }
}
.bannerArea .scrollDown {
  cursor: pointer;
  display: block;
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 2;
}
.bannerArea .scrollDown span {
  display: block;
}
.bannerArea .scrollDown span.text {
  color: #fff;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  letter-spacing: 0.5px;
}
.bannerArea .scrollDown span.line {
  width: 2px;
  height: calc(100% + 20px);
  background-color: #fff;
  overflow: hidden;
  position: absolute;
  top: -5px;
  left: -5px;
  z-index: 1;
}
.bannerArea .scrollDown span.line::before {
  content: "";
  width: 2px;
  height: calc(100% + 20px);
  -webkit-animation: bannerScrollAnimation 2.5s linear infinite forwards;
          animation: bannerScrollAnimation 2.5s linear infinite forwards;
  background-color: #f1bc47;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.bannerArea .slick-dots {
  bottom: 50%;
  right: 50px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media (max-width: 1440px) {
  .bannerArea .wrap {
    height: 100%;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bg {
    display: none;
  }
  .bannerArea .bannerInfo {
    position: static;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }
  .bannerArea .bannerList {
    width: 100%;
    max-width: 100%;
  }
  .bannerArea .bannerList .Txt {
    padding: 20px 20px;
  }
  .bannerArea .linkBannerArea {
    width: 100%;
    max-width: 100%;
  }
  .bannerArea .linkBannerArea .linkBanner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    background-image: url(../images/bannerMobileBg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt .Img img {
    position: static;
  }
  .bannerArea .linkBannerArea .linkBanner {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerList .bannerItem {
    height: 516px;
  }
  .bannerArea .bannerList .bannerItem > .Img {
    height: 100%;
  }
  .bannerArea .bannerList .bannerItem .Txt .Img {
    padding-bottom: 23px;
    margin-top: 15px;
    margin-bottom: 22px;
  }
  .bannerArea .bannerList .bannerItem .Txt .Img::after {
    height: 4px;
  }
  .bannerArea .bannerList .bannerItem .Txt .textBox {
    margin-left: 0;
  }
  .bannerArea .bannerList .bannerItem .Txt .textBox .title {
    letter-spacing: 3.7px;
    padding-bottom: 15px;
  }
  .bannerArea .bannerList .bannerItem .Txt .textBox .text {
    letter-spacing: 1.9px;
  }
  .bannerArea .linkBannerArea .linkBanner {
    gap: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .bannerArea .linkBannerArea .linkBanner .Img {
    max-width: 180px;
    padding: 20px;
  }
  .bannerArea .linkBannerArea .linkBanner .Txt {
    max-width: 50%;
    margin-left: 15px;
    padding: 10px 0;
  }
  .bannerArea .linkBannerArea .linkBanner .Txt .textEditor .enFont {
    letter-spacing: 1px;
  }
}
@media (max-width: 414px) {
  .bannerArea .bannerItem .Txt .textBox .text {
    display: none;
  }
  .bannerArea .linkBannerArea .linkBanner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .bannerArea .linkBannerArea .linkBanner .Txt {
    max-width: 100%;
    margin-left: 0px;
    padding-top: 0px;
  }
}

.aboutArea {
  padding: 78px 0 40px;
}
.aboutArea:not(.show) .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.aboutArea:not(.show) .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.aboutArea:not(.show) .decTitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.aboutArea:not(.show) .textEditor {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.aboutArea.show .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottomRotate 0.4s ease-in-out forwards;
          animation: showBottomRotate 0.4s ease-in-out forwards;
}
.aboutArea.show .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottomRotate 0.4s 0.2s ease-in-out forwards;
          animation: showBottomRotate 0.4s 0.2s ease-in-out forwards;
}
.aboutArea.show .decTitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottomRotate 0.4s 0.4s ease-in-out forwards;
          animation: showBottomRotate 0.4s 0.4s ease-in-out forwards;
}
.aboutArea.show .textEditor {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottomRotate 0.4s 0.6s ease-in-out forwards;
          animation: showBottomRotate 0.4s 0.6s ease-in-out forwards;
}
.aboutArea .aboutBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 960px) {
  .aboutArea .aboutBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.aboutArea .Txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
  max-width: 815px;
}
.aboutArea .Txt .title {
  font-size: 35px;
  font-weight: 700;
  color: #363636;
  line-height: 1.4;
  letter-spacing: 3px;
  padding-bottom: 30px;
}
.aboutArea .Txt .title .decX {
  position: relative;
  width: 30px;
  height: 30px;
  color: transparent;
}
.aboutArea .Txt .title .decX::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #f1bc47;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 1px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.aboutArea .Txt .title .decX::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #f1bc47;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 1px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.aboutArea .Txt .subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #f1bc47;
  letter-spacing: 1.7px;
  line-height: 1.7;
}
.aboutArea .Txt .decTitle {
  font-size: 22px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 1px;
}
.aboutArea .Txt .decTitle .decText {
  padding: 2px 10px;
  margin: 0 5px;
  border: 2px solid #000;
}
.aboutArea .Txt .textBox {
  font-size: 18px;
  font-weight: 400;
  color: #393939;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 23px 0 0;
  line-height: 2;
  letter-spacing: 0.3px;
}
@media (max-width: 1440px) {
  .aboutArea {
    padding: 50px 0 15px;
  }
}
@media (max-width: 1280px) {
  .aboutArea {
    padding: 40px 0 0;
  }
}
@media (max-width: 768px) {
  .aboutArea {
    padding: 60px 0 0;
  }
}
@media (max-width: 640px) {
  .aboutArea .Txt {
    padding: 0;
  }
  .aboutArea .Txt .title {
    padding-bottom: 22px;
    font-size: 24px;
    letter-spacing: 2.5px;
  }
  .aboutArea .Txt .title .decX::before {
    content: "";
    position: absolute;
    width: 30px;
  }
  .aboutArea .Txt .title .decX::after {
    content: "";
    position: absolute;
    width: 30px;
  }
  .aboutArea .Txt .decTitle {
    font-size: 18px;
  }
  .aboutArea .Txt .decTitle .decText {
    margin: 0;
  }
  .aboutArea .Txt .textBox {
    font-size: 16px;
    letter-spacing: 1.2px;
    line-height: 1.94;
    padding: 32px 0 0;
  }
}

.storeArea {
  padding: 10px 0 40px;
}
.storeArea:not(.show) .slick-arrow {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.storeArea.show .slick-arrow {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottom 0.3s 1.2s ease-in-out forwards;
          animation: showBottom 0.3s 1.2s ease-in-out forwards;
}
.storeArea .wrap {
  max-width: 1380px;
}
.storeArea .storeList {
  margin-left: -27px;
  margin-right: -27px;
}
.storeArea .storeList .storeItem {
  padding: 25px 25px;
}
.storeArea .storeList .item {
  position: relative;
}
@media (min-width: 1181px) {
  .storeArea .storeList .item:hover .Img {
    opacity: 0.7;
  }
  .storeArea .storeList .item:hover .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .storeArea .storeList .item:hover .title {
    color: #f1bc47;
  }
  .storeArea .storeList .item:hover .title::after {
    border-right: 1px solid #f1bc47;
    border-bottom: 1px solid #f1bc47;
  }
}
.storeArea .storeList .storeLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.storeArea .storeList .Txt {
  padding: 10px 0;
}
.storeArea .storeList .title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  font-weight: 400;
  color: #1d1d1d;
  padding-right: 25px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.storeArea .storeList .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  right: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-right: 1px solid #1d1d1d;
  border-bottom: 1px solid #1d1d1d;
}
.storeArea .storeList .Img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  overflow: hidden;
}
.storeArea .storeList .Img img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.storeArea .btnBox.phoneBtn {
  display: none;
}
@media (max-width: 640px) {
  .storeArea .btnBox.phoneBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
  }
}
.storeArea .slick-arrow {
  top: 40%;
}
.storeArea .slick-arrow.slick-next {
  right: -55px;
}
.storeArea .slick-arrow.slick-prev {
  left: -55px;
}
@media (max-width: 1500px) {
  .storeArea .slick-arrow.slick-next {
    right: 0px;
  }
  .storeArea .slick-arrow.slick-prev {
    left: 0px;
  }
}
@media (max-width: 1440px) {
  .storeArea {
    padding: 10px 0 20px;
  }
}
@media (max-width: 1180px) {
  .storeArea {
    padding: 10px 0;
  }
}
@media (max-width: 640px) {
  .storeArea {
    padding: 20px 0 0px;
  }
  .storeArea .storeList {
    margin-left: 0px;
    margin-right: 0px;
  }
  .storeArea .storeList .storeItem {
    padding: 10px;
  }
  .storeArea .storeList .title {
    font-size: 20px;
  }
  .storeArea .slick-arrow.slick-next {
    right: 8px;
  }
  .storeArea .slick-arrow.slick-prev {
    left: 8px;
  }
}
@media (max-width: 480px) {
  .storeArea .storeList .storeItem {
    padding: 5px;
  }
  .storeArea .storeList .title {
    font-size: 18px;
  }
  .storeArea .slick-arrow.slick-next {
    right: -18px;
  }
  .storeArea .slick-arrow.slick-prev {
    left: -18px;
  }
}
@media (max-width: 414px) {
  .storeArea .storeList .title {
    font-size: 14px;
  }
}

.experienceArea {
  padding: 25px 0 50px;
}
.experienceArea:not(.show) .wrap > .titleBox .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.experienceArea:not(.show) .wrap > .titleBox .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.experienceArea:not(.show) .wrap > .titleBox .title::after {
  width: 0;
}
.experienceArea:not(.show) .wrap > .titleBox .title::before {
  width: 0;
}
.experienceArea.show .wrap > .titleBox .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottomRotate 0.4s ease-in-out forwards;
          animation: showBottomRotate 0.4s ease-in-out forwards;
}
.experienceArea.show .wrap > .titleBox .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottomRotate 0.4s 0.4s ease-in-out forwards;
          animation: showBottomRotate 0.4s 0.4s ease-in-out forwards;
}
.experienceArea.show .wrap > .titleBox .title::after {
  width: 0;
  -webkit-animation: showLine 0.4s 0.5s ease-in-out forwards;
          animation: showLine 0.4s 0.5s ease-in-out forwards;
}
.experienceArea.show .wrap > .titleBox .title::before {
  width: 0;
  -webkit-animation: showLine100 0.4s 0.5s ease-in-out forwards;
          animation: showLine100 0.4s 0.5s ease-in-out forwards;
}
.experienceArea .wrap > .titleBox {
  margin-bottom: 58px;
}
.experienceArea .wrap > .titleBox .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 35px;
  font-weight: 500;
  color: #252525;
  line-height: 1.4;
  letter-spacing: 3px;
  padding-bottom: 30px;
  position: relative;
}
.experienceArea .wrap > .titleBox .title::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(37, 37, 37, 0.2);
}
.experienceArea .wrap > .titleBox .title::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 105px;
  height: 1px;
  background-color: #f1bc47;
}
.experienceArea .wrap > .titleBox .subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #f1bc47;
  letter-spacing: 1.7px;
  line-height: 1.7;
}
.experienceArea .experienceList {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 65px 1fr 65px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px 65px;
}
.experienceArea .experienceList .experienceItem {
  padding: 5px;
}
.experienceArea .experienceList .titleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.experienceArea .experienceList .title {
  font-size: 22px;
  font-weight: 500;
  color: #1d1d1d;
  line-height: 1.2;
  letter-spacing: 0.8px;
  margin-left: 25px;
  margin-bottom: 10px;
}
.experienceArea .experienceList .textEditor {
  font-size: 16px;
  font-weight: 400;
  color: #393939;
  letter-spacing: 0.3px;
  line-height: 1.75;
}
@media (max-width: 1440px) {
  .experienceArea .experienceList {
    gap: 30px 40px;
  }
}
@media (max-width: 1180px) {
  .experienceArea {
    padding: 20px;
  }
  .experienceArea .wrap > .titleBox {
    margin-bottom: 25px;
  }
  .experienceArea .wrap > .titleBox .title {
    font-size: 24px;
    letter-spacing: 2px;
  }
  .experienceArea .wrap .experienceList {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .experienceArea .wrap .experienceList .titleBox {
    margin-bottom: 22px;
  }
  .experienceArea .wrap .experienceList .textEditor {
    letter-spacing: 0.5px;
    line-height: 1.74;
  }
  .experienceArea .wrap .experienceList .title {
    margin-bottom: 0;
  }
  .experienceArea .wrap .slick-arrow.slick-next {
    right: -30px;
  }
  .experienceArea .wrap .slick-arrow.slick-prev {
    left: -30px;
  }
}
@media (max-width: 960px) {
  .experienceArea .wrap .experienceList {
    grid-gap: 30px 20px;
  }
}
@media (max-width: 640px) {
  .experienceArea .wrap .experienceList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .experienceArea .wrap .experienceList .experienceItem {
    padding: 5px 20px;
  }
}
@media (max-width: 480px) {
  .experienceArea .wrap .experienceList .experienceItem {
    padding: 5px 10px;
  }
}
@media (max-width: 450px) {
  .experienceArea .wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .experienceArea .slick-slider .slick-dots {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .experienceArea .slick-slider .slick-dots li {
    width: 6px;
    height: 6px;
  }
  .experienceArea .slick-slider .slick-dots li button::before {
    background-color: #000;
  }
  .experienceArea .slick-slider .slick-dots li.slick-active button::before {
    background-color: #f1bc47;
  }
}

.featureArea {
  padding: 60px 0 50px;
}
.featureArea:not(.show) .featureBox {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.featureArea:not(.show) .leftBox > .titleBox .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.featureArea:not(.show) .leftBox > .titleBox .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.featureArea:not(.show) .leftBox > .titleBox .decoTitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.featureArea:not(.show) .scrollDown {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.featureArea:not(.show) .featureItem {
  opacity: 0;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.featureArea.show .featureBox {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottom 0.2s ease-in-out forwards;
          animation: showBottom 0.2s ease-in-out forwards;
}
.featureArea.show .leftBox > .titleBox .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottomRotate 0.3s 0.2s ease-in-out forwards;
          animation: showBottomRotate 0.3s 0.2s ease-in-out forwards;
}
.featureArea.show .leftBox > .titleBox .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottomRotate 0.3s 0.4s ease-in-out forwards;
          animation: showBottomRotate 0.3s 0.4s ease-in-out forwards;
}
.featureArea.show .leftBox > .titleBox .decoTitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottomRotate 0.3s 0.6s ease-in-out forwards;
          animation: showBottomRotate 0.3s 0.6s ease-in-out forwards;
}
.featureArea.show .scrollDown {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottom 0.4s 0.8s ease-in-out forwards;
          animation: showBottom 0.4s 0.8s ease-in-out forwards;
}
.featureArea.show .featureItem {
  opacity: 0;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-animation: showBottomRight 0.4s ease-in-out forwards;
          animation: showBottomRight 0.4s ease-in-out forwards;
}
.featureArea.show .featureItem:nth-child(1) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.featureArea.show .featureItem:nth-child(2) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.featureArea.show .featureItem:nth-child(3) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.featureArea.show .featureItem:nth-child(4) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.featureArea.show .featureItem:nth-child(5) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.featureArea.show .featureItem:nth-child(6) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.featureArea.show .featureItem:nth-child(7) {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.featureArea.show .featureItem:nth-child(8) {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}
.featureArea.show .featureItem:nth-child(9) {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}
.featureArea.show .featureItem:nth-child(10) {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}
.featureArea.show .featureItem:nth-child(11) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.featureArea.show .featureItem:nth-child(12) {
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}
.featureArea.show .featureItem:nth-child(13) {
  -webkit-animation-delay: 2.9s;
          animation-delay: 2.9s;
}
.featureArea.show .featureItem:nth-child(14) {
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}
.featureArea.show .featureItem:nth-child(15) {
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s;
}
.featureArea.show .featureItem:nth-child(16) {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}
.featureArea.show .featureItem:nth-child(17) {
  -webkit-animation-delay: 3.7s;
          animation-delay: 3.7s;
}
.featureArea.show .featureItem:nth-child(18) {
  -webkit-animation-delay: 3.9s;
          animation-delay: 3.9s;
}
.featureArea.show .featureItem:nth-child(19) {
  -webkit-animation-delay: 4.1s;
          animation-delay: 4.1s;
}
.featureArea.show .featureItem:nth-child(20) {
  -webkit-animation-delay: 4.3s;
          animation-delay: 4.3s;
}
.featureArea.show .featureItem:nth-child(21) {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}
.featureArea.show .featureItem:nth-child(22) {
  -webkit-animation-delay: 4.7s;
          animation-delay: 4.7s;
}
.featureArea.show .featureItem:nth-child(23) {
  -webkit-animation-delay: 4.9s;
          animation-delay: 4.9s;
}
.featureArea.show .featureItem:nth-child(24) {
  -webkit-animation-delay: 5.1s;
          animation-delay: 5.1s;
}
.featureArea.show .featureItem:nth-child(25) {
  -webkit-animation-delay: 5.3s;
          animation-delay: 5.3s;
}
.featureArea.show .featureItem:nth-child(26) {
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
}
.featureArea.show .featureItem:nth-child(27) {
  -webkit-animation-delay: 5.7s;
          animation-delay: 5.7s;
}
.featureArea.show .featureItem:nth-child(28) {
  -webkit-animation-delay: 5.9s;
          animation-delay: 5.9s;
}
.featureArea.show .featureItem:nth-child(29) {
  -webkit-animation-delay: 6.1s;
          animation-delay: 6.1s;
}
.featureArea.show .featureItem:nth-child(30) {
  -webkit-animation-delay: 6.3s;
          animation-delay: 6.3s;
}
.featureArea.show .featureItem:nth-child(31) {
  -webkit-animation-delay: 6.5s;
          animation-delay: 6.5s;
}
.featureArea.show .featureItem:nth-child(32) {
  -webkit-animation-delay: 6.7s;
          animation-delay: 6.7s;
}
.featureArea.show .featureItem:nth-child(33) {
  -webkit-animation-delay: 6.9s;
          animation-delay: 6.9s;
}
.featureArea.show .featureItem:nth-child(34) {
  -webkit-animation-delay: 7.1s;
          animation-delay: 7.1s;
}
.featureArea.show .featureItem:nth-child(35) {
  -webkit-animation-delay: 7.3s;
          animation-delay: 7.3s;
}
.featureArea.show .featureItem:nth-child(36) {
  -webkit-animation-delay: 7.5s;
          animation-delay: 7.5s;
}
.featureArea.show .featureItem:nth-child(37) {
  -webkit-animation-delay: 7.7s;
          animation-delay: 7.7s;
}
.featureArea.show .featureItem:nth-child(38) {
  -webkit-animation-delay: 7.9s;
          animation-delay: 7.9s;
}
.featureArea.show .featureItem:nth-child(39) {
  -webkit-animation-delay: 8.1s;
          animation-delay: 8.1s;
}
.featureArea.show .featureItem:nth-child(40) {
  -webkit-animation-delay: 8.3s;
          animation-delay: 8.3s;
}
.featureArea.show .featureItem:nth-child(41) {
  -webkit-animation-delay: 8.5s;
          animation-delay: 8.5s;
}
.featureArea.show .featureItem:nth-child(42) {
  -webkit-animation-delay: 8.7s;
          animation-delay: 8.7s;
}
.featureArea.show .featureItem:nth-child(43) {
  -webkit-animation-delay: 8.9s;
          animation-delay: 8.9s;
}
.featureArea.show .featureItem:nth-child(44) {
  -webkit-animation-delay: 9.1s;
          animation-delay: 9.1s;
}
.featureArea.show .featureItem:nth-child(45) {
  -webkit-animation-delay: 9.3s;
          animation-delay: 9.3s;
}
.featureArea.show .featureItem:nth-child(46) {
  -webkit-animation-delay: 9.5s;
          animation-delay: 9.5s;
}
.featureArea.show .featureItem:nth-child(47) {
  -webkit-animation-delay: 9.7s;
          animation-delay: 9.7s;
}
.featureArea.show .featureItem:nth-child(48) {
  -webkit-animation-delay: 9.9s;
          animation-delay: 9.9s;
}
.featureArea.show .featureItem:nth-child(49) {
  -webkit-animation-delay: 10.1s;
          animation-delay: 10.1s;
}
.featureArea.show .featureItem:nth-child(50) {
  -webkit-animation-delay: 10.3s;
          animation-delay: 10.3s;
}
.featureArea.show .featureItem:nth-child(51) {
  -webkit-animation-delay: 10.5s;
          animation-delay: 10.5s;
}
.featureArea.show .featureItem:nth-child(52) {
  -webkit-animation-delay: 10.7s;
          animation-delay: 10.7s;
}
.featureArea.show .featureItem:nth-child(53) {
  -webkit-animation-delay: 10.9s;
          animation-delay: 10.9s;
}
.featureArea.show .featureItem:nth-child(54) {
  -webkit-animation-delay: 11.1s;
          animation-delay: 11.1s;
}
.featureArea.show .featureItem:nth-child(55) {
  -webkit-animation-delay: 11.3s;
          animation-delay: 11.3s;
}
.featureArea.show .featureItem:nth-child(56) {
  -webkit-animation-delay: 11.5s;
          animation-delay: 11.5s;
}
.featureArea.show .featureItem:nth-child(57) {
  -webkit-animation-delay: 11.7s;
          animation-delay: 11.7s;
}
.featureArea.show .featureItem:nth-child(58) {
  -webkit-animation-delay: 11.9s;
          animation-delay: 11.9s;
}
.featureArea.show .featureItem:nth-child(59) {
  -webkit-animation-delay: 12.1s;
          animation-delay: 12.1s;
}
.featureArea.show .featureItem:nth-child(60) {
  -webkit-animation-delay: 12.3s;
          animation-delay: 12.3s;
}
.featureArea.show .featureItem:nth-child(61) {
  -webkit-animation-delay: 12.5s;
          animation-delay: 12.5s;
}
.featureArea.show .featureItem:nth-child(62) {
  -webkit-animation-delay: 12.7s;
          animation-delay: 12.7s;
}
.featureArea.show .featureItem:nth-child(63) {
  -webkit-animation-delay: 12.9s;
          animation-delay: 12.9s;
}
.featureArea.show .featureItem:nth-child(64) {
  -webkit-animation-delay: 13.1s;
          animation-delay: 13.1s;
}
.featureArea.show .featureItem:nth-child(65) {
  -webkit-animation-delay: 13.3s;
          animation-delay: 13.3s;
}
.featureArea.show .featureItem:nth-child(66) {
  -webkit-animation-delay: 13.5s;
          animation-delay: 13.5s;
}
.featureArea.show .featureItem:nth-child(67) {
  -webkit-animation-delay: 13.7s;
          animation-delay: 13.7s;
}
.featureArea.show .featureItem:nth-child(68) {
  -webkit-animation-delay: 13.9s;
          animation-delay: 13.9s;
}
.featureArea.show .featureItem:nth-child(69) {
  -webkit-animation-delay: 14.1s;
          animation-delay: 14.1s;
}
.featureArea.show .featureItem:nth-child(70) {
  -webkit-animation-delay: 14.3s;
          animation-delay: 14.3s;
}
.featureArea.show .featureItem:nth-child(71) {
  -webkit-animation-delay: 14.5s;
          animation-delay: 14.5s;
}
.featureArea.show .featureItem:nth-child(72) {
  -webkit-animation-delay: 14.7s;
          animation-delay: 14.7s;
}
.featureArea.show .featureItem:nth-child(73) {
  -webkit-animation-delay: 14.9s;
          animation-delay: 14.9s;
}
.featureArea.show .featureItem:nth-child(74) {
  -webkit-animation-delay: 15.1s;
          animation-delay: 15.1s;
}
.featureArea.show .featureItem:nth-child(75) {
  -webkit-animation-delay: 15.3s;
          animation-delay: 15.3s;
}
.featureArea.show .featureItem:nth-child(76) {
  -webkit-animation-delay: 15.5s;
          animation-delay: 15.5s;
}
.featureArea.show .featureItem:nth-child(77) {
  -webkit-animation-delay: 15.7s;
          animation-delay: 15.7s;
}
.featureArea.show .featureItem:nth-child(78) {
  -webkit-animation-delay: 15.9s;
          animation-delay: 15.9s;
}
.featureArea.show .featureItem:nth-child(79) {
  -webkit-animation-delay: 16.1s;
          animation-delay: 16.1s;
}
.featureArea.show .featureItem:nth-child(80) {
  -webkit-animation-delay: 16.3s;
          animation-delay: 16.3s;
}
.featureArea.show .featureItem:nth-child(81) {
  -webkit-animation-delay: 16.5s;
          animation-delay: 16.5s;
}
.featureArea.show .featureItem:nth-child(82) {
  -webkit-animation-delay: 16.7s;
          animation-delay: 16.7s;
}
.featureArea.show .featureItem:nth-child(83) {
  -webkit-animation-delay: 16.9s;
          animation-delay: 16.9s;
}
.featureArea.show .featureItem:nth-child(84) {
  -webkit-animation-delay: 17.1s;
          animation-delay: 17.1s;
}
.featureArea.show .featureItem:nth-child(85) {
  -webkit-animation-delay: 17.3s;
          animation-delay: 17.3s;
}
.featureArea.show .featureItem:nth-child(86) {
  -webkit-animation-delay: 17.5s;
          animation-delay: 17.5s;
}
.featureArea.show .featureItem:nth-child(87) {
  -webkit-animation-delay: 17.7s;
          animation-delay: 17.7s;
}
.featureArea.show .featureItem:nth-child(88) {
  -webkit-animation-delay: 17.9s;
          animation-delay: 17.9s;
}
.featureArea.show .featureItem:nth-child(89) {
  -webkit-animation-delay: 18.1s;
          animation-delay: 18.1s;
}
.featureArea.show .featureItem:nth-child(90) {
  -webkit-animation-delay: 18.3s;
          animation-delay: 18.3s;
}
.featureArea.show .featureItem:nth-child(91) {
  -webkit-animation-delay: 18.5s;
          animation-delay: 18.5s;
}
.featureArea.show .featureItem:nth-child(92) {
  -webkit-animation-delay: 18.7s;
          animation-delay: 18.7s;
}
.featureArea.show .featureItem:nth-child(93) {
  -webkit-animation-delay: 18.9s;
          animation-delay: 18.9s;
}
.featureArea.show .featureItem:nth-child(94) {
  -webkit-animation-delay: 19.1s;
          animation-delay: 19.1s;
}
.featureArea.show .featureItem:nth-child(95) {
  -webkit-animation-delay: 19.3s;
          animation-delay: 19.3s;
}
.featureArea.show .featureItem:nth-child(96) {
  -webkit-animation-delay: 19.5s;
          animation-delay: 19.5s;
}
.featureArea.show .featureItem:nth-child(97) {
  -webkit-animation-delay: 19.7s;
          animation-delay: 19.7s;
}
.featureArea.show .featureItem:nth-child(98) {
  -webkit-animation-delay: 19.9s;
          animation-delay: 19.9s;
}
.featureArea.show .featureItem:nth-child(99) {
  -webkit-animation-delay: 20.1s;
          animation-delay: 20.1s;
}
.featureArea.show .featureItem:nth-child(100) {
  -webkit-animation-delay: 20.3s;
          animation-delay: 20.3s;
}
.featureArea.show .featureItem:nth-child(101) {
  -webkit-animation-delay: 20.5s;
          animation-delay: 20.5s;
}
.featureArea.show .featureItem:nth-child(102) {
  -webkit-animation-delay: 20.7s;
          animation-delay: 20.7s;
}
.featureArea.show .featureItem:nth-child(103) {
  -webkit-animation-delay: 20.9s;
          animation-delay: 20.9s;
}
.featureArea.show .featureItem:nth-child(104) {
  -webkit-animation-delay: 21.1s;
          animation-delay: 21.1s;
}
.featureArea.show .featureItem:nth-child(105) {
  -webkit-animation-delay: 21.3s;
          animation-delay: 21.3s;
}
.featureArea.show .featureItem:nth-child(106) {
  -webkit-animation-delay: 21.5s;
          animation-delay: 21.5s;
}
.featureArea.show .featureItem:nth-child(107) {
  -webkit-animation-delay: 21.7s;
          animation-delay: 21.7s;
}
.featureArea.show .featureItem:nth-child(108) {
  -webkit-animation-delay: 21.9s;
          animation-delay: 21.9s;
}
.featureArea.show .featureItem:nth-child(109) {
  -webkit-animation-delay: 22.1s;
          animation-delay: 22.1s;
}
.featureArea.show .featureItem:nth-child(110) {
  -webkit-animation-delay: 22.3s;
          animation-delay: 22.3s;
}
.featureArea.show .featureItem:nth-child(111) {
  -webkit-animation-delay: 22.5s;
          animation-delay: 22.5s;
}
.featureArea.show .featureItem:nth-child(112) {
  -webkit-animation-delay: 22.7s;
          animation-delay: 22.7s;
}
.featureArea.show .featureItem:nth-child(113) {
  -webkit-animation-delay: 22.9s;
          animation-delay: 22.9s;
}
.featureArea.show .featureItem:nth-child(114) {
  -webkit-animation-delay: 23.1s;
          animation-delay: 23.1s;
}
.featureArea.show .featureItem:nth-child(115) {
  -webkit-animation-delay: 23.3s;
          animation-delay: 23.3s;
}
.featureArea.show .featureItem:nth-child(116) {
  -webkit-animation-delay: 23.5s;
          animation-delay: 23.5s;
}
.featureArea.show .featureItem:nth-child(117) {
  -webkit-animation-delay: 23.7s;
          animation-delay: 23.7s;
}
.featureArea.show .featureItem:nth-child(118) {
  -webkit-animation-delay: 23.9s;
          animation-delay: 23.9s;
}
.featureArea.show .featureItem:nth-child(119) {
  -webkit-animation-delay: 24.1s;
          animation-delay: 24.1s;
}
.featureArea.show .featureItem:nth-child(120) {
  -webkit-animation-delay: 24.3s;
          animation-delay: 24.3s;
}
.featureArea.show .featureItem:nth-child(121) {
  -webkit-animation-delay: 24.5s;
          animation-delay: 24.5s;
}
.featureArea.show .featureItem:nth-child(122) {
  -webkit-animation-delay: 24.7s;
          animation-delay: 24.7s;
}
.featureArea.show .featureItem:nth-child(123) {
  -webkit-animation-delay: 24.9s;
          animation-delay: 24.9s;
}
.featureArea.show .featureItem:nth-child(124) {
  -webkit-animation-delay: 25.1s;
          animation-delay: 25.1s;
}
.featureArea.show .featureItem:nth-child(125) {
  -webkit-animation-delay: 25.3s;
          animation-delay: 25.3s;
}
.featureArea.show .featureItem:nth-child(126) {
  -webkit-animation-delay: 25.5s;
          animation-delay: 25.5s;
}
.featureArea.show .featureItem:nth-child(127) {
  -webkit-animation-delay: 25.7s;
          animation-delay: 25.7s;
}
.featureArea.show .featureItem:nth-child(128) {
  -webkit-animation-delay: 25.9s;
          animation-delay: 25.9s;
}
.featureArea.show .featureItem:nth-child(129) {
  -webkit-animation-delay: 26.1s;
          animation-delay: 26.1s;
}
.featureArea.show .featureItem:nth-child(130) {
  -webkit-animation-delay: 26.3s;
          animation-delay: 26.3s;
}
.featureArea.show .featureItem:nth-child(131) {
  -webkit-animation-delay: 26.5s;
          animation-delay: 26.5s;
}
.featureArea.show .featureItem:nth-child(132) {
  -webkit-animation-delay: 26.7s;
          animation-delay: 26.7s;
}
.featureArea.show .featureItem:nth-child(133) {
  -webkit-animation-delay: 26.9s;
          animation-delay: 26.9s;
}
.featureArea.show .featureItem:nth-child(134) {
  -webkit-animation-delay: 27.1s;
          animation-delay: 27.1s;
}
.featureArea.show .featureItem:nth-child(135) {
  -webkit-animation-delay: 27.3s;
          animation-delay: 27.3s;
}
.featureArea.show .featureItem:nth-child(136) {
  -webkit-animation-delay: 27.5s;
          animation-delay: 27.5s;
}
.featureArea.show .featureItem:nth-child(137) {
  -webkit-animation-delay: 27.7s;
          animation-delay: 27.7s;
}
.featureArea.show .featureItem:nth-child(138) {
  -webkit-animation-delay: 27.9s;
          animation-delay: 27.9s;
}
.featureArea.show .featureItem:nth-child(139) {
  -webkit-animation-delay: 28.1s;
          animation-delay: 28.1s;
}
.featureArea.show .featureItem:nth-child(140) {
  -webkit-animation-delay: 28.3s;
          animation-delay: 28.3s;
}
.featureArea.show .featureItem:nth-child(141) {
  -webkit-animation-delay: 28.5s;
          animation-delay: 28.5s;
}
.featureArea.show .featureItem:nth-child(142) {
  -webkit-animation-delay: 28.7s;
          animation-delay: 28.7s;
}
.featureArea.show .featureItem:nth-child(143) {
  -webkit-animation-delay: 28.9s;
          animation-delay: 28.9s;
}
.featureArea.show .featureItem:nth-child(144) {
  -webkit-animation-delay: 29.1s;
          animation-delay: 29.1s;
}
.featureArea.show .featureItem:nth-child(145) {
  -webkit-animation-delay: 29.3s;
          animation-delay: 29.3s;
}
.featureArea.show .featureItem:nth-child(146) {
  -webkit-animation-delay: 29.5s;
          animation-delay: 29.5s;
}
.featureArea.show .featureItem:nth-child(147) {
  -webkit-animation-delay: 29.7s;
          animation-delay: 29.7s;
}
.featureArea.show .featureItem:nth-child(148) {
  -webkit-animation-delay: 29.9s;
          animation-delay: 29.9s;
}
.featureArea.show .featureItem:nth-child(149) {
  -webkit-animation-delay: 30.1s;
          animation-delay: 30.1s;
}
.featureArea.show .featureItem:nth-child(150) {
  -webkit-animation-delay: 30.3s;
          animation-delay: 30.3s;
}
.featureArea.show .featureItem:nth-child(151) {
  -webkit-animation-delay: 30.5s;
          animation-delay: 30.5s;
}
.featureArea.show .featureItem:nth-child(152) {
  -webkit-animation-delay: 30.7s;
          animation-delay: 30.7s;
}
.featureArea.show .featureItem:nth-child(153) {
  -webkit-animation-delay: 30.9s;
          animation-delay: 30.9s;
}
.featureArea.show .featureItem:nth-child(154) {
  -webkit-animation-delay: 31.1s;
          animation-delay: 31.1s;
}
.featureArea.show .featureItem:nth-child(155) {
  -webkit-animation-delay: 31.3s;
          animation-delay: 31.3s;
}
.featureArea.show .featureItem:nth-child(156) {
  -webkit-animation-delay: 31.5s;
          animation-delay: 31.5s;
}
.featureArea.show .featureItem:nth-child(157) {
  -webkit-animation-delay: 31.7s;
          animation-delay: 31.7s;
}
.featureArea.show .featureItem:nth-child(158) {
  -webkit-animation-delay: 31.9s;
          animation-delay: 31.9s;
}
.featureArea.show .featureItem:nth-child(159) {
  -webkit-animation-delay: 32.1s;
          animation-delay: 32.1s;
}
.featureArea.show .featureItem:nth-child(160) {
  -webkit-animation-delay: 32.3s;
          animation-delay: 32.3s;
}
.featureArea.show .featureItem:nth-child(161) {
  -webkit-animation-delay: 32.5s;
          animation-delay: 32.5s;
}
.featureArea.show .featureItem:nth-child(162) {
  -webkit-animation-delay: 32.7s;
          animation-delay: 32.7s;
}
.featureArea.show .featureItem:nth-child(163) {
  -webkit-animation-delay: 32.9s;
          animation-delay: 32.9s;
}
.featureArea.show .featureItem:nth-child(164) {
  -webkit-animation-delay: 33.1s;
          animation-delay: 33.1s;
}
.featureArea.show .featureItem:nth-child(165) {
  -webkit-animation-delay: 33.3s;
          animation-delay: 33.3s;
}
.featureArea.show .featureItem:nth-child(166) {
  -webkit-animation-delay: 33.5s;
          animation-delay: 33.5s;
}
.featureArea.show .featureItem:nth-child(167) {
  -webkit-animation-delay: 33.7s;
          animation-delay: 33.7s;
}
.featureArea.show .featureItem:nth-child(168) {
  -webkit-animation-delay: 33.9s;
          animation-delay: 33.9s;
}
.featureArea.show .featureItem:nth-child(169) {
  -webkit-animation-delay: 34.1s;
          animation-delay: 34.1s;
}
.featureArea.show .featureItem:nth-child(170) {
  -webkit-animation-delay: 34.3s;
          animation-delay: 34.3s;
}
.featureArea.show .featureItem:nth-child(171) {
  -webkit-animation-delay: 34.5s;
          animation-delay: 34.5s;
}
.featureArea.show .featureItem:nth-child(172) {
  -webkit-animation-delay: 34.7s;
          animation-delay: 34.7s;
}
.featureArea.show .featureItem:nth-child(173) {
  -webkit-animation-delay: 34.9s;
          animation-delay: 34.9s;
}
.featureArea.show .featureItem:nth-child(174) {
  -webkit-animation-delay: 35.1s;
          animation-delay: 35.1s;
}
.featureArea.show .featureItem:nth-child(175) {
  -webkit-animation-delay: 35.3s;
          animation-delay: 35.3s;
}
.featureArea.show .featureItem:nth-child(176) {
  -webkit-animation-delay: 35.5s;
          animation-delay: 35.5s;
}
.featureArea.show .featureItem:nth-child(177) {
  -webkit-animation-delay: 35.7s;
          animation-delay: 35.7s;
}
.featureArea.show .featureItem:nth-child(178) {
  -webkit-animation-delay: 35.9s;
          animation-delay: 35.9s;
}
.featureArea.show .featureItem:nth-child(179) {
  -webkit-animation-delay: 36.1s;
          animation-delay: 36.1s;
}
.featureArea.show .featureItem:nth-child(180) {
  -webkit-animation-delay: 36.3s;
          animation-delay: 36.3s;
}
.featureArea.show .featureItem:nth-child(181) {
  -webkit-animation-delay: 36.5s;
          animation-delay: 36.5s;
}
.featureArea.show .featureItem:nth-child(182) {
  -webkit-animation-delay: 36.7s;
          animation-delay: 36.7s;
}
.featureArea.show .featureItem:nth-child(183) {
  -webkit-animation-delay: 36.9s;
          animation-delay: 36.9s;
}
.featureArea.show .featureItem:nth-child(184) {
  -webkit-animation-delay: 37.1s;
          animation-delay: 37.1s;
}
.featureArea.show .featureItem:nth-child(185) {
  -webkit-animation-delay: 37.3s;
          animation-delay: 37.3s;
}
.featureArea.show .featureItem:nth-child(186) {
  -webkit-animation-delay: 37.5s;
          animation-delay: 37.5s;
}
.featureArea.show .featureItem:nth-child(187) {
  -webkit-animation-delay: 37.7s;
          animation-delay: 37.7s;
}
.featureArea.show .featureItem:nth-child(188) {
  -webkit-animation-delay: 37.9s;
          animation-delay: 37.9s;
}
.featureArea.show .featureItem:nth-child(189) {
  -webkit-animation-delay: 38.1s;
          animation-delay: 38.1s;
}
.featureArea.show .featureItem:nth-child(190) {
  -webkit-animation-delay: 38.3s;
          animation-delay: 38.3s;
}
.featureArea.show .featureItem:nth-child(191) {
  -webkit-animation-delay: 38.5s;
          animation-delay: 38.5s;
}
.featureArea.show .featureItem:nth-child(192) {
  -webkit-animation-delay: 38.7s;
          animation-delay: 38.7s;
}
.featureArea.show .featureItem:nth-child(193) {
  -webkit-animation-delay: 38.9s;
          animation-delay: 38.9s;
}
.featureArea.show .featureItem:nth-child(194) {
  -webkit-animation-delay: 39.1s;
          animation-delay: 39.1s;
}
.featureArea.show .featureItem:nth-child(195) {
  -webkit-animation-delay: 39.3s;
          animation-delay: 39.3s;
}
.featureArea.show .featureItem:nth-child(196) {
  -webkit-animation-delay: 39.5s;
          animation-delay: 39.5s;
}
.featureArea.show .featureItem:nth-child(197) {
  -webkit-animation-delay: 39.7s;
          animation-delay: 39.7s;
}
.featureArea.show .featureItem:nth-child(198) {
  -webkit-animation-delay: 39.9s;
          animation-delay: 39.9s;
}
.featureArea.show .featureItem:nth-child(199) {
  -webkit-animation-delay: 40.1s;
          animation-delay: 40.1s;
}
.featureArea.show .featureItem:nth-child(200) {
  -webkit-animation-delay: 40.3s;
          animation-delay: 40.3s;
}
.featureArea.show .featureItem:nth-child(201) {
  -webkit-animation-delay: 40.5s;
          animation-delay: 40.5s;
}
.featureArea.show .featureItem:nth-child(202) {
  -webkit-animation-delay: 40.7s;
          animation-delay: 40.7s;
}
.featureArea.show .featureItem:nth-child(203) {
  -webkit-animation-delay: 40.9s;
          animation-delay: 40.9s;
}
.featureArea.show .featureItem:nth-child(204) {
  -webkit-animation-delay: 41.1s;
          animation-delay: 41.1s;
}
.featureArea.show .featureItem:nth-child(205) {
  -webkit-animation-delay: 41.3s;
          animation-delay: 41.3s;
}
.featureArea.show .featureItem:nth-child(206) {
  -webkit-animation-delay: 41.5s;
          animation-delay: 41.5s;
}
.featureArea.show .featureItem:nth-child(207) {
  -webkit-animation-delay: 41.7s;
          animation-delay: 41.7s;
}
.featureArea.show .featureItem:nth-child(208) {
  -webkit-animation-delay: 41.9s;
          animation-delay: 41.9s;
}
.featureArea.show .featureItem:nth-child(209) {
  -webkit-animation-delay: 42.1s;
          animation-delay: 42.1s;
}
.featureArea.show .featureItem:nth-child(210) {
  -webkit-animation-delay: 42.3s;
          animation-delay: 42.3s;
}
.featureArea.show .featureItem:nth-child(211) {
  -webkit-animation-delay: 42.5s;
          animation-delay: 42.5s;
}
.featureArea.show .featureItem:nth-child(212) {
  -webkit-animation-delay: 42.7s;
          animation-delay: 42.7s;
}
.featureArea.show .featureItem:nth-child(213) {
  -webkit-animation-delay: 42.9s;
          animation-delay: 42.9s;
}
.featureArea.show .featureItem:nth-child(214) {
  -webkit-animation-delay: 43.1s;
          animation-delay: 43.1s;
}
.featureArea.show .featureItem:nth-child(215) {
  -webkit-animation-delay: 43.3s;
          animation-delay: 43.3s;
}
.featureArea.show .featureItem:nth-child(216) {
  -webkit-animation-delay: 43.5s;
          animation-delay: 43.5s;
}
.featureArea.show .featureItem:nth-child(217) {
  -webkit-animation-delay: 43.7s;
          animation-delay: 43.7s;
}
.featureArea.show .featureItem:nth-child(218) {
  -webkit-animation-delay: 43.9s;
          animation-delay: 43.9s;
}
.featureArea.show .featureItem:nth-child(219) {
  -webkit-animation-delay: 44.1s;
          animation-delay: 44.1s;
}
.featureArea.show .featureItem:nth-child(220) {
  -webkit-animation-delay: 44.3s;
          animation-delay: 44.3s;
}
.featureArea.show .featureItem:nth-child(221) {
  -webkit-animation-delay: 44.5s;
          animation-delay: 44.5s;
}
.featureArea.show .featureItem:nth-child(222) {
  -webkit-animation-delay: 44.7s;
          animation-delay: 44.7s;
}
.featureArea.show .featureItem:nth-child(223) {
  -webkit-animation-delay: 44.9s;
          animation-delay: 44.9s;
}
.featureArea.show .featureItem:nth-child(224) {
  -webkit-animation-delay: 45.1s;
          animation-delay: 45.1s;
}
.featureArea.show .featureItem:nth-child(225) {
  -webkit-animation-delay: 45.3s;
          animation-delay: 45.3s;
}
.featureArea.show .featureItem:nth-child(226) {
  -webkit-animation-delay: 45.5s;
          animation-delay: 45.5s;
}
.featureArea.show .featureItem:nth-child(227) {
  -webkit-animation-delay: 45.7s;
          animation-delay: 45.7s;
}
.featureArea.show .featureItem:nth-child(228) {
  -webkit-animation-delay: 45.9s;
          animation-delay: 45.9s;
}
.featureArea.show .featureItem:nth-child(229) {
  -webkit-animation-delay: 46.1s;
          animation-delay: 46.1s;
}
.featureArea.show .featureItem:nth-child(230) {
  -webkit-animation-delay: 46.3s;
          animation-delay: 46.3s;
}
.featureArea.show .featureItem:nth-child(231) {
  -webkit-animation-delay: 46.5s;
          animation-delay: 46.5s;
}
.featureArea.show .featureItem:nth-child(232) {
  -webkit-animation-delay: 46.7s;
          animation-delay: 46.7s;
}
.featureArea.show .featureItem:nth-child(233) {
  -webkit-animation-delay: 46.9s;
          animation-delay: 46.9s;
}
.featureArea.show .featureItem:nth-child(234) {
  -webkit-animation-delay: 47.1s;
          animation-delay: 47.1s;
}
.featureArea.show .featureItem:nth-child(235) {
  -webkit-animation-delay: 47.3s;
          animation-delay: 47.3s;
}
.featureArea.show .featureItem:nth-child(236) {
  -webkit-animation-delay: 47.5s;
          animation-delay: 47.5s;
}
.featureArea.show .featureItem:nth-child(237) {
  -webkit-animation-delay: 47.7s;
          animation-delay: 47.7s;
}
.featureArea.show .featureItem:nth-child(238) {
  -webkit-animation-delay: 47.9s;
          animation-delay: 47.9s;
}
.featureArea.show .featureItem:nth-child(239) {
  -webkit-animation-delay: 48.1s;
          animation-delay: 48.1s;
}
.featureArea.show .featureItem:nth-child(240) {
  -webkit-animation-delay: 48.3s;
          animation-delay: 48.3s;
}
.featureArea.show .featureItem:nth-child(241) {
  -webkit-animation-delay: 48.5s;
          animation-delay: 48.5s;
}
.featureArea.show .featureItem:nth-child(242) {
  -webkit-animation-delay: 48.7s;
          animation-delay: 48.7s;
}
.featureArea.show .featureItem:nth-child(243) {
  -webkit-animation-delay: 48.9s;
          animation-delay: 48.9s;
}
.featureArea.show .featureItem:nth-child(244) {
  -webkit-animation-delay: 49.1s;
          animation-delay: 49.1s;
}
.featureArea.show .featureItem:nth-child(245) {
  -webkit-animation-delay: 49.3s;
          animation-delay: 49.3s;
}
.featureArea.show .featureItem:nth-child(246) {
  -webkit-animation-delay: 49.5s;
          animation-delay: 49.5s;
}
.featureArea.show .featureItem:nth-child(247) {
  -webkit-animation-delay: 49.7s;
          animation-delay: 49.7s;
}
.featureArea.show .featureItem:nth-child(248) {
  -webkit-animation-delay: 49.9s;
          animation-delay: 49.9s;
}
.featureArea.show .featureItem:nth-child(249) {
  -webkit-animation-delay: 50.1s;
          animation-delay: 50.1s;
}
.featureArea.show .featureItem:nth-child(250) {
  -webkit-animation-delay: 50.3s;
          animation-delay: 50.3s;
}
.featureArea.show .featureItem:nth-child(251) {
  -webkit-animation-delay: 50.5s;
          animation-delay: 50.5s;
}
.featureArea.show .featureItem:nth-child(252) {
  -webkit-animation-delay: 50.7s;
          animation-delay: 50.7s;
}
.featureArea.show .featureItem:nth-child(253) {
  -webkit-animation-delay: 50.9s;
          animation-delay: 50.9s;
}
.featureArea.show .featureItem:nth-child(254) {
  -webkit-animation-delay: 51.1s;
          animation-delay: 51.1s;
}
.featureArea.show .featureItem:nth-child(255) {
  -webkit-animation-delay: 51.3s;
          animation-delay: 51.3s;
}
.featureArea.show .featureItem:nth-child(256) {
  -webkit-animation-delay: 51.5s;
          animation-delay: 51.5s;
}
.featureArea.show .featureItem:nth-child(257) {
  -webkit-animation-delay: 51.7s;
          animation-delay: 51.7s;
}
.featureArea.show .featureItem:nth-child(258) {
  -webkit-animation-delay: 51.9s;
          animation-delay: 51.9s;
}
.featureArea.show .featureItem:nth-child(259) {
  -webkit-animation-delay: 52.1s;
          animation-delay: 52.1s;
}
.featureArea.show .featureItem:nth-child(260) {
  -webkit-animation-delay: 52.3s;
          animation-delay: 52.3s;
}
.featureArea.show .featureItem:nth-child(261) {
  -webkit-animation-delay: 52.5s;
          animation-delay: 52.5s;
}
.featureArea.show .featureItem:nth-child(262) {
  -webkit-animation-delay: 52.7s;
          animation-delay: 52.7s;
}
.featureArea.show .featureItem:nth-child(263) {
  -webkit-animation-delay: 52.9s;
          animation-delay: 52.9s;
}
.featureArea.show .featureItem:nth-child(264) {
  -webkit-animation-delay: 53.1s;
          animation-delay: 53.1s;
}
.featureArea.show .featureItem:nth-child(265) {
  -webkit-animation-delay: 53.3s;
          animation-delay: 53.3s;
}
.featureArea.show .featureItem:nth-child(266) {
  -webkit-animation-delay: 53.5s;
          animation-delay: 53.5s;
}
.featureArea.show .featureItem:nth-child(267) {
  -webkit-animation-delay: 53.7s;
          animation-delay: 53.7s;
}
.featureArea.show .featureItem:nth-child(268) {
  -webkit-animation-delay: 53.9s;
          animation-delay: 53.9s;
}
.featureArea.show .featureItem:nth-child(269) {
  -webkit-animation-delay: 54.1s;
          animation-delay: 54.1s;
}
.featureArea.show .featureItem:nth-child(270) {
  -webkit-animation-delay: 54.3s;
          animation-delay: 54.3s;
}
.featureArea.show .featureItem:nth-child(271) {
  -webkit-animation-delay: 54.5s;
          animation-delay: 54.5s;
}
.featureArea.show .featureItem:nth-child(272) {
  -webkit-animation-delay: 54.7s;
          animation-delay: 54.7s;
}
.featureArea.show .featureItem:nth-child(273) {
  -webkit-animation-delay: 54.9s;
          animation-delay: 54.9s;
}
.featureArea.show .featureItem:nth-child(274) {
  -webkit-animation-delay: 55.1s;
          animation-delay: 55.1s;
}
.featureArea.show .featureItem:nth-child(275) {
  -webkit-animation-delay: 55.3s;
          animation-delay: 55.3s;
}
.featureArea.show .featureItem:nth-child(276) {
  -webkit-animation-delay: 55.5s;
          animation-delay: 55.5s;
}
.featureArea.show .featureItem:nth-child(277) {
  -webkit-animation-delay: 55.7s;
          animation-delay: 55.7s;
}
.featureArea.show .featureItem:nth-child(278) {
  -webkit-animation-delay: 55.9s;
          animation-delay: 55.9s;
}
.featureArea.show .featureItem:nth-child(279) {
  -webkit-animation-delay: 56.1s;
          animation-delay: 56.1s;
}
.featureArea.show .featureItem:nth-child(280) {
  -webkit-animation-delay: 56.3s;
          animation-delay: 56.3s;
}
.featureArea.show .featureItem:nth-child(281) {
  -webkit-animation-delay: 56.5s;
          animation-delay: 56.5s;
}
.featureArea.show .featureItem:nth-child(282) {
  -webkit-animation-delay: 56.7s;
          animation-delay: 56.7s;
}
.featureArea.show .featureItem:nth-child(283) {
  -webkit-animation-delay: 56.9s;
          animation-delay: 56.9s;
}
.featureArea.show .featureItem:nth-child(284) {
  -webkit-animation-delay: 57.1s;
          animation-delay: 57.1s;
}
.featureArea.show .featureItem:nth-child(285) {
  -webkit-animation-delay: 57.3s;
          animation-delay: 57.3s;
}
.featureArea.show .featureItem:nth-child(286) {
  -webkit-animation-delay: 57.5s;
          animation-delay: 57.5s;
}
.featureArea.show .featureItem:nth-child(287) {
  -webkit-animation-delay: 57.7s;
          animation-delay: 57.7s;
}
.featureArea.show .featureItem:nth-child(288) {
  -webkit-animation-delay: 57.9s;
          animation-delay: 57.9s;
}
.featureArea.show .featureItem:nth-child(289) {
  -webkit-animation-delay: 58.1s;
          animation-delay: 58.1s;
}
.featureArea.show .featureItem:nth-child(290) {
  -webkit-animation-delay: 58.3s;
          animation-delay: 58.3s;
}
.featureArea.show .featureItem:nth-child(291) {
  -webkit-animation-delay: 58.5s;
          animation-delay: 58.5s;
}
.featureArea.show .featureItem:nth-child(292) {
  -webkit-animation-delay: 58.7s;
          animation-delay: 58.7s;
}
.featureArea.show .featureItem:nth-child(293) {
  -webkit-animation-delay: 58.9s;
          animation-delay: 58.9s;
}
.featureArea.show .featureItem:nth-child(294) {
  -webkit-animation-delay: 59.1s;
          animation-delay: 59.1s;
}
.featureArea.show .featureItem:nth-child(295) {
  -webkit-animation-delay: 59.3s;
          animation-delay: 59.3s;
}
.featureArea.show .featureItem:nth-child(296) {
  -webkit-animation-delay: 59.5s;
          animation-delay: 59.5s;
}
.featureArea.show .featureItem:nth-child(297) {
  -webkit-animation-delay: 59.7s;
          animation-delay: 59.7s;
}
.featureArea.show .featureItem:nth-child(298) {
  -webkit-animation-delay: 59.9s;
          animation-delay: 59.9s;
}
.featureArea.show .featureItem:nth-child(299) {
  -webkit-animation-delay: 60.1s;
          animation-delay: 60.1s;
}
.featureArea.show .featureItem:nth-child(300) {
  -webkit-animation-delay: 60.3s;
          animation-delay: 60.3s;
}
.featureArea.show .featureItem:nth-child(301) {
  -webkit-animation-delay: 60.5s;
          animation-delay: 60.5s;
}
.featureArea.show .featureItem:nth-child(302) {
  -webkit-animation-delay: 60.7s;
          animation-delay: 60.7s;
}
.featureArea.show .featureItem:nth-child(303) {
  -webkit-animation-delay: 60.9s;
          animation-delay: 60.9s;
}
.featureArea.show .featureItem:nth-child(304) {
  -webkit-animation-delay: 61.1s;
          animation-delay: 61.1s;
}
.featureArea.show .featureItem:nth-child(305) {
  -webkit-animation-delay: 61.3s;
          animation-delay: 61.3s;
}
.featureArea.show .featureItem:nth-child(306) {
  -webkit-animation-delay: 61.5s;
          animation-delay: 61.5s;
}
.featureArea.show .featureItem:nth-child(307) {
  -webkit-animation-delay: 61.7s;
          animation-delay: 61.7s;
}
.featureArea.show .featureItem:nth-child(308) {
  -webkit-animation-delay: 61.9s;
          animation-delay: 61.9s;
}
.featureArea.show .featureItem:nth-child(309) {
  -webkit-animation-delay: 62.1s;
          animation-delay: 62.1s;
}
.featureArea.show .featureItem:nth-child(310) {
  -webkit-animation-delay: 62.3s;
          animation-delay: 62.3s;
}
.featureArea.show .featureItem:nth-child(311) {
  -webkit-animation-delay: 62.5s;
          animation-delay: 62.5s;
}
.featureArea.show .featureItem:nth-child(312) {
  -webkit-animation-delay: 62.7s;
          animation-delay: 62.7s;
}
.featureArea.show .featureItem:nth-child(313) {
  -webkit-animation-delay: 62.9s;
          animation-delay: 62.9s;
}
.featureArea.show .featureItem:nth-child(314) {
  -webkit-animation-delay: 63.1s;
          animation-delay: 63.1s;
}
.featureArea.show .featureItem:nth-child(315) {
  -webkit-animation-delay: 63.3s;
          animation-delay: 63.3s;
}
.featureArea.show .featureItem:nth-child(316) {
  -webkit-animation-delay: 63.5s;
          animation-delay: 63.5s;
}
.featureArea.show .featureItem:nth-child(317) {
  -webkit-animation-delay: 63.7s;
          animation-delay: 63.7s;
}
.featureArea.show .featureItem:nth-child(318) {
  -webkit-animation-delay: 63.9s;
          animation-delay: 63.9s;
}
.featureArea.show .featureItem:nth-child(319) {
  -webkit-animation-delay: 64.1s;
          animation-delay: 64.1s;
}
.featureArea.show .featureItem:nth-child(320) {
  -webkit-animation-delay: 64.3s;
          animation-delay: 64.3s;
}
.featureArea.show .featureItem:nth-child(321) {
  -webkit-animation-delay: 64.5s;
          animation-delay: 64.5s;
}
.featureArea.show .featureItem:nth-child(322) {
  -webkit-animation-delay: 64.7s;
          animation-delay: 64.7s;
}
.featureArea.show .featureItem:nth-child(323) {
  -webkit-animation-delay: 64.9s;
          animation-delay: 64.9s;
}
.featureArea.show .featureItem:nth-child(324) {
  -webkit-animation-delay: 65.1s;
          animation-delay: 65.1s;
}
.featureArea.show .featureItem:nth-child(325) {
  -webkit-animation-delay: 65.3s;
          animation-delay: 65.3s;
}
.featureArea.show .featureItem:nth-child(326) {
  -webkit-animation-delay: 65.5s;
          animation-delay: 65.5s;
}
.featureArea.show .featureItem:nth-child(327) {
  -webkit-animation-delay: 65.7s;
          animation-delay: 65.7s;
}
.featureArea.show .featureItem:nth-child(328) {
  -webkit-animation-delay: 65.9s;
          animation-delay: 65.9s;
}
.featureArea.show .featureItem:nth-child(329) {
  -webkit-animation-delay: 66.1s;
          animation-delay: 66.1s;
}
.featureArea.show .featureItem:nth-child(330) {
  -webkit-animation-delay: 66.3s;
          animation-delay: 66.3s;
}
.featureArea.show .featureItem:nth-child(331) {
  -webkit-animation-delay: 66.5s;
          animation-delay: 66.5s;
}
.featureArea.show .featureItem:nth-child(332) {
  -webkit-animation-delay: 66.7s;
          animation-delay: 66.7s;
}
.featureArea.show .featureItem:nth-child(333) {
  -webkit-animation-delay: 66.9s;
          animation-delay: 66.9s;
}
.featureArea.show .featureItem:nth-child(334) {
  -webkit-animation-delay: 67.1s;
          animation-delay: 67.1s;
}
.featureArea.show .featureItem:nth-child(335) {
  -webkit-animation-delay: 67.3s;
          animation-delay: 67.3s;
}
.featureArea.show .featureItem:nth-child(336) {
  -webkit-animation-delay: 67.5s;
          animation-delay: 67.5s;
}
.featureArea.show .featureItem:nth-child(337) {
  -webkit-animation-delay: 67.7s;
          animation-delay: 67.7s;
}
.featureArea.show .featureItem:nth-child(338) {
  -webkit-animation-delay: 67.9s;
          animation-delay: 67.9s;
}
.featureArea.show .featureItem:nth-child(339) {
  -webkit-animation-delay: 68.1s;
          animation-delay: 68.1s;
}
.featureArea.show .featureItem:nth-child(340) {
  -webkit-animation-delay: 68.3s;
          animation-delay: 68.3s;
}
.featureArea.show .featureItem:nth-child(341) {
  -webkit-animation-delay: 68.5s;
          animation-delay: 68.5s;
}
.featureArea.show .featureItem:nth-child(342) {
  -webkit-animation-delay: 68.7s;
          animation-delay: 68.7s;
}
.featureArea.show .featureItem:nth-child(343) {
  -webkit-animation-delay: 68.9s;
          animation-delay: 68.9s;
}
.featureArea.show .featureItem:nth-child(344) {
  -webkit-animation-delay: 69.1s;
          animation-delay: 69.1s;
}
.featureArea.show .featureItem:nth-child(345) {
  -webkit-animation-delay: 69.3s;
          animation-delay: 69.3s;
}
.featureArea.show .featureItem:nth-child(346) {
  -webkit-animation-delay: 69.5s;
          animation-delay: 69.5s;
}
.featureArea.show .featureItem:nth-child(347) {
  -webkit-animation-delay: 69.7s;
          animation-delay: 69.7s;
}
.featureArea.show .featureItem:nth-child(348) {
  -webkit-animation-delay: 69.9s;
          animation-delay: 69.9s;
}
.featureArea.show .featureItem:nth-child(349) {
  -webkit-animation-delay: 70.1s;
          animation-delay: 70.1s;
}
.featureArea.show .featureItem:nth-child(350) {
  -webkit-animation-delay: 70.3s;
          animation-delay: 70.3s;
}
.featureArea.show .featureItem:nth-child(351) {
  -webkit-animation-delay: 70.5s;
          animation-delay: 70.5s;
}
.featureArea.show .featureItem:nth-child(352) {
  -webkit-animation-delay: 70.7s;
          animation-delay: 70.7s;
}
.featureArea.show .featureItem:nth-child(353) {
  -webkit-animation-delay: 70.9s;
          animation-delay: 70.9s;
}
.featureArea.show .featureItem:nth-child(354) {
  -webkit-animation-delay: 71.1s;
          animation-delay: 71.1s;
}
.featureArea.show .featureItem:nth-child(355) {
  -webkit-animation-delay: 71.3s;
          animation-delay: 71.3s;
}
.featureArea.show .featureItem:nth-child(356) {
  -webkit-animation-delay: 71.5s;
          animation-delay: 71.5s;
}
.featureArea.show .featureItem:nth-child(357) {
  -webkit-animation-delay: 71.7s;
          animation-delay: 71.7s;
}
.featureArea.show .featureItem:nth-child(358) {
  -webkit-animation-delay: 71.9s;
          animation-delay: 71.9s;
}
.featureArea.show .featureItem:nth-child(359) {
  -webkit-animation-delay: 72.1s;
          animation-delay: 72.1s;
}
.featureArea.show .featureItem:nth-child(360) {
  -webkit-animation-delay: 72.3s;
          animation-delay: 72.3s;
}
.featureArea.show .featureItem:nth-child(361) {
  -webkit-animation-delay: 72.5s;
          animation-delay: 72.5s;
}
.featureArea.show .featureItem:nth-child(362) {
  -webkit-animation-delay: 72.7s;
          animation-delay: 72.7s;
}
.featureArea.show .featureItem:nth-child(363) {
  -webkit-animation-delay: 72.9s;
          animation-delay: 72.9s;
}
.featureArea.show .featureItem:nth-child(364) {
  -webkit-animation-delay: 73.1s;
          animation-delay: 73.1s;
}
.featureArea.show .featureItem:nth-child(365) {
  -webkit-animation-delay: 73.3s;
          animation-delay: 73.3s;
}
.featureArea.show .featureItem:nth-child(366) {
  -webkit-animation-delay: 73.5s;
          animation-delay: 73.5s;
}
.featureArea.show .featureItem:nth-child(367) {
  -webkit-animation-delay: 73.7s;
          animation-delay: 73.7s;
}
.featureArea.show .featureItem:nth-child(368) {
  -webkit-animation-delay: 73.9s;
          animation-delay: 73.9s;
}
.featureArea.show .featureItem:nth-child(369) {
  -webkit-animation-delay: 74.1s;
          animation-delay: 74.1s;
}
.featureArea.show .featureItem:nth-child(370) {
  -webkit-animation-delay: 74.3s;
          animation-delay: 74.3s;
}
.featureArea.show .featureItem:nth-child(371) {
  -webkit-animation-delay: 74.5s;
          animation-delay: 74.5s;
}
.featureArea.show .featureItem:nth-child(372) {
  -webkit-animation-delay: 74.7s;
          animation-delay: 74.7s;
}
.featureArea.show .featureItem:nth-child(373) {
  -webkit-animation-delay: 74.9s;
          animation-delay: 74.9s;
}
.featureArea.show .featureItem:nth-child(374) {
  -webkit-animation-delay: 75.1s;
          animation-delay: 75.1s;
}
.featureArea.show .featureItem:nth-child(375) {
  -webkit-animation-delay: 75.3s;
          animation-delay: 75.3s;
}
.featureArea.show .featureItem:nth-child(376) {
  -webkit-animation-delay: 75.5s;
          animation-delay: 75.5s;
}
.featureArea.show .featureItem:nth-child(377) {
  -webkit-animation-delay: 75.7s;
          animation-delay: 75.7s;
}
.featureArea.show .featureItem:nth-child(378) {
  -webkit-animation-delay: 75.9s;
          animation-delay: 75.9s;
}
.featureArea.show .featureItem:nth-child(379) {
  -webkit-animation-delay: 76.1s;
          animation-delay: 76.1s;
}
.featureArea.show .featureItem:nth-child(380) {
  -webkit-animation-delay: 76.3s;
          animation-delay: 76.3s;
}
.featureArea.show .featureItem:nth-child(381) {
  -webkit-animation-delay: 76.5s;
          animation-delay: 76.5s;
}
.featureArea.show .featureItem:nth-child(382) {
  -webkit-animation-delay: 76.7s;
          animation-delay: 76.7s;
}
.featureArea.show .featureItem:nth-child(383) {
  -webkit-animation-delay: 76.9s;
          animation-delay: 76.9s;
}
.featureArea.show .featureItem:nth-child(384) {
  -webkit-animation-delay: 77.1s;
          animation-delay: 77.1s;
}
.featureArea.show .featureItem:nth-child(385) {
  -webkit-animation-delay: 77.3s;
          animation-delay: 77.3s;
}
.featureArea.show .featureItem:nth-child(386) {
  -webkit-animation-delay: 77.5s;
          animation-delay: 77.5s;
}
.featureArea.show .featureItem:nth-child(387) {
  -webkit-animation-delay: 77.7s;
          animation-delay: 77.7s;
}
.featureArea.show .featureItem:nth-child(388) {
  -webkit-animation-delay: 77.9s;
          animation-delay: 77.9s;
}
.featureArea.show .featureItem:nth-child(389) {
  -webkit-animation-delay: 78.1s;
          animation-delay: 78.1s;
}
.featureArea.show .featureItem:nth-child(390) {
  -webkit-animation-delay: 78.3s;
          animation-delay: 78.3s;
}
.featureArea.show .featureItem:nth-child(391) {
  -webkit-animation-delay: 78.5s;
          animation-delay: 78.5s;
}
.featureArea.show .featureItem:nth-child(392) {
  -webkit-animation-delay: 78.7s;
          animation-delay: 78.7s;
}
.featureArea.show .featureItem:nth-child(393) {
  -webkit-animation-delay: 78.9s;
          animation-delay: 78.9s;
}
.featureArea.show .featureItem:nth-child(394) {
  -webkit-animation-delay: 79.1s;
          animation-delay: 79.1s;
}
.featureArea.show .featureItem:nth-child(395) {
  -webkit-animation-delay: 79.3s;
          animation-delay: 79.3s;
}
.featureArea.show .featureItem:nth-child(396) {
  -webkit-animation-delay: 79.5s;
          animation-delay: 79.5s;
}
.featureArea.show .featureItem:nth-child(397) {
  -webkit-animation-delay: 79.7s;
          animation-delay: 79.7s;
}
.featureArea.show .featureItem:nth-child(398) {
  -webkit-animation-delay: 79.9s;
          animation-delay: 79.9s;
}
.featureArea.show .featureItem:nth-child(399) {
  -webkit-animation-delay: 80.1s;
          animation-delay: 80.1s;
}
.featureArea.show .featureItem:nth-child(400) {
  -webkit-animation-delay: 80.3s;
          animation-delay: 80.3s;
}
.featureArea.show .featureItem:nth-child(401) {
  -webkit-animation-delay: 80.5s;
          animation-delay: 80.5s;
}
.featureArea.show .featureItem:nth-child(402) {
  -webkit-animation-delay: 80.7s;
          animation-delay: 80.7s;
}
.featureArea.show .featureItem:nth-child(403) {
  -webkit-animation-delay: 80.9s;
          animation-delay: 80.9s;
}
.featureArea.show .featureItem:nth-child(404) {
  -webkit-animation-delay: 81.1s;
          animation-delay: 81.1s;
}
.featureArea.show .featureItem:nth-child(405) {
  -webkit-animation-delay: 81.3s;
          animation-delay: 81.3s;
}
.featureArea.show .featureItem:nth-child(406) {
  -webkit-animation-delay: 81.5s;
          animation-delay: 81.5s;
}
.featureArea.show .featureItem:nth-child(407) {
  -webkit-animation-delay: 81.7s;
          animation-delay: 81.7s;
}
.featureArea.show .featureItem:nth-child(408) {
  -webkit-animation-delay: 81.9s;
          animation-delay: 81.9s;
}
.featureArea.show .featureItem:nth-child(409) {
  -webkit-animation-delay: 82.1s;
          animation-delay: 82.1s;
}
.featureArea.show .featureItem:nth-child(410) {
  -webkit-animation-delay: 82.3s;
          animation-delay: 82.3s;
}
.featureArea.show .featureItem:nth-child(411) {
  -webkit-animation-delay: 82.5s;
          animation-delay: 82.5s;
}
.featureArea.show .featureItem:nth-child(412) {
  -webkit-animation-delay: 82.7s;
          animation-delay: 82.7s;
}
.featureArea.show .featureItem:nth-child(413) {
  -webkit-animation-delay: 82.9s;
          animation-delay: 82.9s;
}
.featureArea.show .featureItem:nth-child(414) {
  -webkit-animation-delay: 83.1s;
          animation-delay: 83.1s;
}
.featureArea.show .featureItem:nth-child(415) {
  -webkit-animation-delay: 83.3s;
          animation-delay: 83.3s;
}
.featureArea.show .featureItem:nth-child(416) {
  -webkit-animation-delay: 83.5s;
          animation-delay: 83.5s;
}
.featureArea.show .featureItem:nth-child(417) {
  -webkit-animation-delay: 83.7s;
          animation-delay: 83.7s;
}
.featureArea.show .featureItem:nth-child(418) {
  -webkit-animation-delay: 83.9s;
          animation-delay: 83.9s;
}
.featureArea.show .featureItem:nth-child(419) {
  -webkit-animation-delay: 84.1s;
          animation-delay: 84.1s;
}
.featureArea.show .featureItem:nth-child(420) {
  -webkit-animation-delay: 84.3s;
          animation-delay: 84.3s;
}
.featureArea.show .featureItem:nth-child(421) {
  -webkit-animation-delay: 84.5s;
          animation-delay: 84.5s;
}
.featureArea.show .featureItem:nth-child(422) {
  -webkit-animation-delay: 84.7s;
          animation-delay: 84.7s;
}
.featureArea.show .featureItem:nth-child(423) {
  -webkit-animation-delay: 84.9s;
          animation-delay: 84.9s;
}
.featureArea.show .featureItem:nth-child(424) {
  -webkit-animation-delay: 85.1s;
          animation-delay: 85.1s;
}
.featureArea.show .featureItem:nth-child(425) {
  -webkit-animation-delay: 85.3s;
          animation-delay: 85.3s;
}
.featureArea.show .featureItem:nth-child(426) {
  -webkit-animation-delay: 85.5s;
          animation-delay: 85.5s;
}
.featureArea.show .featureItem:nth-child(427) {
  -webkit-animation-delay: 85.7s;
          animation-delay: 85.7s;
}
.featureArea.show .featureItem:nth-child(428) {
  -webkit-animation-delay: 85.9s;
          animation-delay: 85.9s;
}
.featureArea.show .featureItem:nth-child(429) {
  -webkit-animation-delay: 86.1s;
          animation-delay: 86.1s;
}
.featureArea.show .featureItem:nth-child(430) {
  -webkit-animation-delay: 86.3s;
          animation-delay: 86.3s;
}
.featureArea.show .featureItem:nth-child(431) {
  -webkit-animation-delay: 86.5s;
          animation-delay: 86.5s;
}
.featureArea.show .featureItem:nth-child(432) {
  -webkit-animation-delay: 86.7s;
          animation-delay: 86.7s;
}
.featureArea.show .featureItem:nth-child(433) {
  -webkit-animation-delay: 86.9s;
          animation-delay: 86.9s;
}
.featureArea.show .featureItem:nth-child(434) {
  -webkit-animation-delay: 87.1s;
          animation-delay: 87.1s;
}
.featureArea.show .featureItem:nth-child(435) {
  -webkit-animation-delay: 87.3s;
          animation-delay: 87.3s;
}
.featureArea.show .featureItem:nth-child(436) {
  -webkit-animation-delay: 87.5s;
          animation-delay: 87.5s;
}
.featureArea.show .featureItem:nth-child(437) {
  -webkit-animation-delay: 87.7s;
          animation-delay: 87.7s;
}
.featureArea.show .featureItem:nth-child(438) {
  -webkit-animation-delay: 87.9s;
          animation-delay: 87.9s;
}
.featureArea.show .featureItem:nth-child(439) {
  -webkit-animation-delay: 88.1s;
          animation-delay: 88.1s;
}
.featureArea.show .featureItem:nth-child(440) {
  -webkit-animation-delay: 88.3s;
          animation-delay: 88.3s;
}
.featureArea.show .featureItem:nth-child(441) {
  -webkit-animation-delay: 88.5s;
          animation-delay: 88.5s;
}
.featureArea.show .featureItem:nth-child(442) {
  -webkit-animation-delay: 88.7s;
          animation-delay: 88.7s;
}
.featureArea.show .featureItem:nth-child(443) {
  -webkit-animation-delay: 88.9s;
          animation-delay: 88.9s;
}
.featureArea.show .featureItem:nth-child(444) {
  -webkit-animation-delay: 89.1s;
          animation-delay: 89.1s;
}
.featureArea.show .featureItem:nth-child(445) {
  -webkit-animation-delay: 89.3s;
          animation-delay: 89.3s;
}
.featureArea.show .featureItem:nth-child(446) {
  -webkit-animation-delay: 89.5s;
          animation-delay: 89.5s;
}
.featureArea.show .featureItem:nth-child(447) {
  -webkit-animation-delay: 89.7s;
          animation-delay: 89.7s;
}
.featureArea.show .featureItem:nth-child(448) {
  -webkit-animation-delay: 89.9s;
          animation-delay: 89.9s;
}
.featureArea.show .featureItem:nth-child(449) {
  -webkit-animation-delay: 90.1s;
          animation-delay: 90.1s;
}
.featureArea.show .featureItem:nth-child(450) {
  -webkit-animation-delay: 90.3s;
          animation-delay: 90.3s;
}
.featureArea.show .featureItem:nth-child(451) {
  -webkit-animation-delay: 90.5s;
          animation-delay: 90.5s;
}
.featureArea.show .featureItem:nth-child(452) {
  -webkit-animation-delay: 90.7s;
          animation-delay: 90.7s;
}
.featureArea.show .featureItem:nth-child(453) {
  -webkit-animation-delay: 90.9s;
          animation-delay: 90.9s;
}
.featureArea.show .featureItem:nth-child(454) {
  -webkit-animation-delay: 91.1s;
          animation-delay: 91.1s;
}
.featureArea.show .featureItem:nth-child(455) {
  -webkit-animation-delay: 91.3s;
          animation-delay: 91.3s;
}
.featureArea.show .featureItem:nth-child(456) {
  -webkit-animation-delay: 91.5s;
          animation-delay: 91.5s;
}
.featureArea.show .featureItem:nth-child(457) {
  -webkit-animation-delay: 91.7s;
          animation-delay: 91.7s;
}
.featureArea.show .featureItem:nth-child(458) {
  -webkit-animation-delay: 91.9s;
          animation-delay: 91.9s;
}
.featureArea.show .featureItem:nth-child(459) {
  -webkit-animation-delay: 92.1s;
          animation-delay: 92.1s;
}
.featureArea.show .featureItem:nth-child(460) {
  -webkit-animation-delay: 92.3s;
          animation-delay: 92.3s;
}
.featureArea.show .featureItem:nth-child(461) {
  -webkit-animation-delay: 92.5s;
          animation-delay: 92.5s;
}
.featureArea.show .featureItem:nth-child(462) {
  -webkit-animation-delay: 92.7s;
          animation-delay: 92.7s;
}
.featureArea.show .featureItem:nth-child(463) {
  -webkit-animation-delay: 92.9s;
          animation-delay: 92.9s;
}
.featureArea.show .featureItem:nth-child(464) {
  -webkit-animation-delay: 93.1s;
          animation-delay: 93.1s;
}
.featureArea.show .featureItem:nth-child(465) {
  -webkit-animation-delay: 93.3s;
          animation-delay: 93.3s;
}
.featureArea.show .featureItem:nth-child(466) {
  -webkit-animation-delay: 93.5s;
          animation-delay: 93.5s;
}
.featureArea.show .featureItem:nth-child(467) {
  -webkit-animation-delay: 93.7s;
          animation-delay: 93.7s;
}
.featureArea.show .featureItem:nth-child(468) {
  -webkit-animation-delay: 93.9s;
          animation-delay: 93.9s;
}
.featureArea.show .featureItem:nth-child(469) {
  -webkit-animation-delay: 94.1s;
          animation-delay: 94.1s;
}
.featureArea.show .featureItem:nth-child(470) {
  -webkit-animation-delay: 94.3s;
          animation-delay: 94.3s;
}
.featureArea.show .featureItem:nth-child(471) {
  -webkit-animation-delay: 94.5s;
          animation-delay: 94.5s;
}
.featureArea.show .featureItem:nth-child(472) {
  -webkit-animation-delay: 94.7s;
          animation-delay: 94.7s;
}
.featureArea.show .featureItem:nth-child(473) {
  -webkit-animation-delay: 94.9s;
          animation-delay: 94.9s;
}
.featureArea.show .featureItem:nth-child(474) {
  -webkit-animation-delay: 95.1s;
          animation-delay: 95.1s;
}
.featureArea.show .featureItem:nth-child(475) {
  -webkit-animation-delay: 95.3s;
          animation-delay: 95.3s;
}
.featureArea.show .featureItem:nth-child(476) {
  -webkit-animation-delay: 95.5s;
          animation-delay: 95.5s;
}
.featureArea.show .featureItem:nth-child(477) {
  -webkit-animation-delay: 95.7s;
          animation-delay: 95.7s;
}
.featureArea.show .featureItem:nth-child(478) {
  -webkit-animation-delay: 95.9s;
          animation-delay: 95.9s;
}
.featureArea.show .featureItem:nth-child(479) {
  -webkit-animation-delay: 96.1s;
          animation-delay: 96.1s;
}
.featureArea.show .featureItem:nth-child(480) {
  -webkit-animation-delay: 96.3s;
          animation-delay: 96.3s;
}
.featureArea.show .featureItem:nth-child(481) {
  -webkit-animation-delay: 96.5s;
          animation-delay: 96.5s;
}
.featureArea.show .featureItem:nth-child(482) {
  -webkit-animation-delay: 96.7s;
          animation-delay: 96.7s;
}
.featureArea.show .featureItem:nth-child(483) {
  -webkit-animation-delay: 96.9s;
          animation-delay: 96.9s;
}
.featureArea.show .featureItem:nth-child(484) {
  -webkit-animation-delay: 97.1s;
          animation-delay: 97.1s;
}
.featureArea.show .featureItem:nth-child(485) {
  -webkit-animation-delay: 97.3s;
          animation-delay: 97.3s;
}
.featureArea.show .featureItem:nth-child(486) {
  -webkit-animation-delay: 97.5s;
          animation-delay: 97.5s;
}
.featureArea.show .featureItem:nth-child(487) {
  -webkit-animation-delay: 97.7s;
          animation-delay: 97.7s;
}
.featureArea.show .featureItem:nth-child(488) {
  -webkit-animation-delay: 97.9s;
          animation-delay: 97.9s;
}
.featureArea.show .featureItem:nth-child(489) {
  -webkit-animation-delay: 98.1s;
          animation-delay: 98.1s;
}
.featureArea.show .featureItem:nth-child(490) {
  -webkit-animation-delay: 98.3s;
          animation-delay: 98.3s;
}
.featureArea.show .featureItem:nth-child(491) {
  -webkit-animation-delay: 98.5s;
          animation-delay: 98.5s;
}
.featureArea.show .featureItem:nth-child(492) {
  -webkit-animation-delay: 98.7s;
          animation-delay: 98.7s;
}
.featureArea.show .featureItem:nth-child(493) {
  -webkit-animation-delay: 98.9s;
          animation-delay: 98.9s;
}
.featureArea.show .featureItem:nth-child(494) {
  -webkit-animation-delay: 99.1s;
          animation-delay: 99.1s;
}
.featureArea.show .featureItem:nth-child(495) {
  -webkit-animation-delay: 99.3s;
          animation-delay: 99.3s;
}
.featureArea.show .featureItem:nth-child(496) {
  -webkit-animation-delay: 99.5s;
          animation-delay: 99.5s;
}
.featureArea.show .featureItem:nth-child(497) {
  -webkit-animation-delay: 99.7s;
          animation-delay: 99.7s;
}
.featureArea.show .featureItem:nth-child(498) {
  -webkit-animation-delay: 99.9s;
          animation-delay: 99.9s;
}
.featureArea.show .featureItem:nth-child(499) {
  -webkit-animation-delay: 100.1s;
          animation-delay: 100.1s;
}
.featureArea.show .featureItem:nth-child(500) {
  -webkit-animation-delay: 100.3s;
          animation-delay: 100.3s;
}
.featureArea.show .featureItem:nth-child(501) {
  -webkit-animation-delay: 100.5s;
          animation-delay: 100.5s;
}
.featureArea.show .featureItem:nth-child(502) {
  -webkit-animation-delay: 100.7s;
          animation-delay: 100.7s;
}
.featureArea.show .featureItem:nth-child(503) {
  -webkit-animation-delay: 100.9s;
          animation-delay: 100.9s;
}
.featureArea.show .featureItem:nth-child(504) {
  -webkit-animation-delay: 101.1s;
          animation-delay: 101.1s;
}
.featureArea.show .featureItem:nth-child(505) {
  -webkit-animation-delay: 101.3s;
          animation-delay: 101.3s;
}
.featureArea.show .featureItem:nth-child(506) {
  -webkit-animation-delay: 101.5s;
          animation-delay: 101.5s;
}
.featureArea.show .featureItem:nth-child(507) {
  -webkit-animation-delay: 101.7s;
          animation-delay: 101.7s;
}
.featureArea.show .featureItem:nth-child(508) {
  -webkit-animation-delay: 101.9s;
          animation-delay: 101.9s;
}
.featureArea.show .featureItem:nth-child(509) {
  -webkit-animation-delay: 102.1s;
          animation-delay: 102.1s;
}
.featureArea.show .featureItem:nth-child(510) {
  -webkit-animation-delay: 102.3s;
          animation-delay: 102.3s;
}
.featureArea.show .featureItem:nth-child(511) {
  -webkit-animation-delay: 102.5s;
          animation-delay: 102.5s;
}
.featureArea.show .featureItem:nth-child(512) {
  -webkit-animation-delay: 102.7s;
          animation-delay: 102.7s;
}
.featureArea.show .featureItem:nth-child(513) {
  -webkit-animation-delay: 102.9s;
          animation-delay: 102.9s;
}
.featureArea.show .featureItem:nth-child(514) {
  -webkit-animation-delay: 103.1s;
          animation-delay: 103.1s;
}
.featureArea.show .featureItem:nth-child(515) {
  -webkit-animation-delay: 103.3s;
          animation-delay: 103.3s;
}
.featureArea.show .featureItem:nth-child(516) {
  -webkit-animation-delay: 103.5s;
          animation-delay: 103.5s;
}
.featureArea.show .featureItem:nth-child(517) {
  -webkit-animation-delay: 103.7s;
          animation-delay: 103.7s;
}
.featureArea.show .featureItem:nth-child(518) {
  -webkit-animation-delay: 103.9s;
          animation-delay: 103.9s;
}
.featureArea.show .featureItem:nth-child(519) {
  -webkit-animation-delay: 104.1s;
          animation-delay: 104.1s;
}
.featureArea.show .featureItem:nth-child(520) {
  -webkit-animation-delay: 104.3s;
          animation-delay: 104.3s;
}
.featureArea.show .featureItem:nth-child(521) {
  -webkit-animation-delay: 104.5s;
          animation-delay: 104.5s;
}
.featureArea.show .featureItem:nth-child(522) {
  -webkit-animation-delay: 104.7s;
          animation-delay: 104.7s;
}
.featureArea.show .featureItem:nth-child(523) {
  -webkit-animation-delay: 104.9s;
          animation-delay: 104.9s;
}
.featureArea.show .featureItem:nth-child(524) {
  -webkit-animation-delay: 105.1s;
          animation-delay: 105.1s;
}
.featureArea.show .featureItem:nth-child(525) {
  -webkit-animation-delay: 105.3s;
          animation-delay: 105.3s;
}
.featureArea.show .featureItem:nth-child(526) {
  -webkit-animation-delay: 105.5s;
          animation-delay: 105.5s;
}
.featureArea.show .featureItem:nth-child(527) {
  -webkit-animation-delay: 105.7s;
          animation-delay: 105.7s;
}
.featureArea.show .featureItem:nth-child(528) {
  -webkit-animation-delay: 105.9s;
          animation-delay: 105.9s;
}
.featureArea.show .featureItem:nth-child(529) {
  -webkit-animation-delay: 106.1s;
          animation-delay: 106.1s;
}
.featureArea.show .featureItem:nth-child(530) {
  -webkit-animation-delay: 106.3s;
          animation-delay: 106.3s;
}
.featureArea.show .featureItem:nth-child(531) {
  -webkit-animation-delay: 106.5s;
          animation-delay: 106.5s;
}
.featureArea.show .featureItem:nth-child(532) {
  -webkit-animation-delay: 106.7s;
          animation-delay: 106.7s;
}
.featureArea.show .featureItem:nth-child(533) {
  -webkit-animation-delay: 106.9s;
          animation-delay: 106.9s;
}
.featureArea.show .featureItem:nth-child(534) {
  -webkit-animation-delay: 107.1s;
          animation-delay: 107.1s;
}
.featureArea.show .featureItem:nth-child(535) {
  -webkit-animation-delay: 107.3s;
          animation-delay: 107.3s;
}
.featureArea.show .featureItem:nth-child(536) {
  -webkit-animation-delay: 107.5s;
          animation-delay: 107.5s;
}
.featureArea.show .featureItem:nth-child(537) {
  -webkit-animation-delay: 107.7s;
          animation-delay: 107.7s;
}
.featureArea.show .featureItem:nth-child(538) {
  -webkit-animation-delay: 107.9s;
          animation-delay: 107.9s;
}
.featureArea.show .featureItem:nth-child(539) {
  -webkit-animation-delay: 108.1s;
          animation-delay: 108.1s;
}
.featureArea.show .featureItem:nth-child(540) {
  -webkit-animation-delay: 108.3s;
          animation-delay: 108.3s;
}
.featureArea.show .featureItem:nth-child(541) {
  -webkit-animation-delay: 108.5s;
          animation-delay: 108.5s;
}
.featureArea.show .featureItem:nth-child(542) {
  -webkit-animation-delay: 108.7s;
          animation-delay: 108.7s;
}
.featureArea.show .featureItem:nth-child(543) {
  -webkit-animation-delay: 108.9s;
          animation-delay: 108.9s;
}
.featureArea.show .featureItem:nth-child(544) {
  -webkit-animation-delay: 109.1s;
          animation-delay: 109.1s;
}
.featureArea.show .featureItem:nth-child(545) {
  -webkit-animation-delay: 109.3s;
          animation-delay: 109.3s;
}
.featureArea.show .featureItem:nth-child(546) {
  -webkit-animation-delay: 109.5s;
          animation-delay: 109.5s;
}
.featureArea.show .featureItem:nth-child(547) {
  -webkit-animation-delay: 109.7s;
          animation-delay: 109.7s;
}
.featureArea.show .featureItem:nth-child(548) {
  -webkit-animation-delay: 109.9s;
          animation-delay: 109.9s;
}
.featureArea.show .featureItem:nth-child(549) {
  -webkit-animation-delay: 110.1s;
          animation-delay: 110.1s;
}
.featureArea.show .featureItem:nth-child(550) {
  -webkit-animation-delay: 110.3s;
          animation-delay: 110.3s;
}
.featureArea.show .featureItem:nth-child(551) {
  -webkit-animation-delay: 110.5s;
          animation-delay: 110.5s;
}
.featureArea.show .featureItem:nth-child(552) {
  -webkit-animation-delay: 110.7s;
          animation-delay: 110.7s;
}
.featureArea.show .featureItem:nth-child(553) {
  -webkit-animation-delay: 110.9s;
          animation-delay: 110.9s;
}
.featureArea.show .featureItem:nth-child(554) {
  -webkit-animation-delay: 111.1s;
          animation-delay: 111.1s;
}
.featureArea.show .featureItem:nth-child(555) {
  -webkit-animation-delay: 111.3s;
          animation-delay: 111.3s;
}
.featureArea.show .featureItem:nth-child(556) {
  -webkit-animation-delay: 111.5s;
          animation-delay: 111.5s;
}
.featureArea.show .featureItem:nth-child(557) {
  -webkit-animation-delay: 111.7s;
          animation-delay: 111.7s;
}
.featureArea.show .featureItem:nth-child(558) {
  -webkit-animation-delay: 111.9s;
          animation-delay: 111.9s;
}
.featureArea.show .featureItem:nth-child(559) {
  -webkit-animation-delay: 112.1s;
          animation-delay: 112.1s;
}
.featureArea.show .featureItem:nth-child(560) {
  -webkit-animation-delay: 112.3s;
          animation-delay: 112.3s;
}
.featureArea.show .featureItem:nth-child(561) {
  -webkit-animation-delay: 112.5s;
          animation-delay: 112.5s;
}
.featureArea.show .featureItem:nth-child(562) {
  -webkit-animation-delay: 112.7s;
          animation-delay: 112.7s;
}
.featureArea.show .featureItem:nth-child(563) {
  -webkit-animation-delay: 112.9s;
          animation-delay: 112.9s;
}
.featureArea.show .featureItem:nth-child(564) {
  -webkit-animation-delay: 113.1s;
          animation-delay: 113.1s;
}
.featureArea.show .featureItem:nth-child(565) {
  -webkit-animation-delay: 113.3s;
          animation-delay: 113.3s;
}
.featureArea.show .featureItem:nth-child(566) {
  -webkit-animation-delay: 113.5s;
          animation-delay: 113.5s;
}
.featureArea.show .featureItem:nth-child(567) {
  -webkit-animation-delay: 113.7s;
          animation-delay: 113.7s;
}
.featureArea.show .featureItem:nth-child(568) {
  -webkit-animation-delay: 113.9s;
          animation-delay: 113.9s;
}
.featureArea.show .featureItem:nth-child(569) {
  -webkit-animation-delay: 114.1s;
          animation-delay: 114.1s;
}
.featureArea.show .featureItem:nth-child(570) {
  -webkit-animation-delay: 114.3s;
          animation-delay: 114.3s;
}
.featureArea.show .featureItem:nth-child(571) {
  -webkit-animation-delay: 114.5s;
          animation-delay: 114.5s;
}
.featureArea.show .featureItem:nth-child(572) {
  -webkit-animation-delay: 114.7s;
          animation-delay: 114.7s;
}
.featureArea.show .featureItem:nth-child(573) {
  -webkit-animation-delay: 114.9s;
          animation-delay: 114.9s;
}
.featureArea.show .featureItem:nth-child(574) {
  -webkit-animation-delay: 115.1s;
          animation-delay: 115.1s;
}
.featureArea.show .featureItem:nth-child(575) {
  -webkit-animation-delay: 115.3s;
          animation-delay: 115.3s;
}
.featureArea.show .featureItem:nth-child(576) {
  -webkit-animation-delay: 115.5s;
          animation-delay: 115.5s;
}
.featureArea.show .featureItem:nth-child(577) {
  -webkit-animation-delay: 115.7s;
          animation-delay: 115.7s;
}
.featureArea.show .featureItem:nth-child(578) {
  -webkit-animation-delay: 115.9s;
          animation-delay: 115.9s;
}
.featureArea.show .featureItem:nth-child(579) {
  -webkit-animation-delay: 116.1s;
          animation-delay: 116.1s;
}
.featureArea.show .featureItem:nth-child(580) {
  -webkit-animation-delay: 116.3s;
          animation-delay: 116.3s;
}
.featureArea.show .featureItem:nth-child(581) {
  -webkit-animation-delay: 116.5s;
          animation-delay: 116.5s;
}
.featureArea.show .featureItem:nth-child(582) {
  -webkit-animation-delay: 116.7s;
          animation-delay: 116.7s;
}
.featureArea.show .featureItem:nth-child(583) {
  -webkit-animation-delay: 116.9s;
          animation-delay: 116.9s;
}
.featureArea.show .featureItem:nth-child(584) {
  -webkit-animation-delay: 117.1s;
          animation-delay: 117.1s;
}
.featureArea.show .featureItem:nth-child(585) {
  -webkit-animation-delay: 117.3s;
          animation-delay: 117.3s;
}
.featureArea.show .featureItem:nth-child(586) {
  -webkit-animation-delay: 117.5s;
          animation-delay: 117.5s;
}
.featureArea.show .featureItem:nth-child(587) {
  -webkit-animation-delay: 117.7s;
          animation-delay: 117.7s;
}
.featureArea.show .featureItem:nth-child(588) {
  -webkit-animation-delay: 117.9s;
          animation-delay: 117.9s;
}
.featureArea.show .featureItem:nth-child(589) {
  -webkit-animation-delay: 118.1s;
          animation-delay: 118.1s;
}
.featureArea.show .featureItem:nth-child(590) {
  -webkit-animation-delay: 118.3s;
          animation-delay: 118.3s;
}
.featureArea.show .featureItem:nth-child(591) {
  -webkit-animation-delay: 118.5s;
          animation-delay: 118.5s;
}
.featureArea.show .featureItem:nth-child(592) {
  -webkit-animation-delay: 118.7s;
          animation-delay: 118.7s;
}
.featureArea.show .featureItem:nth-child(593) {
  -webkit-animation-delay: 118.9s;
          animation-delay: 118.9s;
}
.featureArea.show .featureItem:nth-child(594) {
  -webkit-animation-delay: 119.1s;
          animation-delay: 119.1s;
}
.featureArea.show .featureItem:nth-child(595) {
  -webkit-animation-delay: 119.3s;
          animation-delay: 119.3s;
}
.featureArea.show .featureItem:nth-child(596) {
  -webkit-animation-delay: 119.5s;
          animation-delay: 119.5s;
}
.featureArea.show .featureItem:nth-child(597) {
  -webkit-animation-delay: 119.7s;
          animation-delay: 119.7s;
}
.featureArea.show .featureItem:nth-child(598) {
  -webkit-animation-delay: 119.9s;
          animation-delay: 119.9s;
}
.featureArea.show .featureItem:nth-child(599) {
  -webkit-animation-delay: 120.1s;
          animation-delay: 120.1s;
}
.featureArea.show .featureItem:nth-child(600) {
  -webkit-animation-delay: 120.3s;
          animation-delay: 120.3s;
}
.featureArea.show .featureItem:nth-child(601) {
  -webkit-animation-delay: 120.5s;
          animation-delay: 120.5s;
}
.featureArea.show .featureItem:nth-child(602) {
  -webkit-animation-delay: 120.7s;
          animation-delay: 120.7s;
}
.featureArea.show .featureItem:nth-child(603) {
  -webkit-animation-delay: 120.9s;
          animation-delay: 120.9s;
}
.featureArea.show .featureItem:nth-child(604) {
  -webkit-animation-delay: 121.1s;
          animation-delay: 121.1s;
}
.featureArea.show .featureItem:nth-child(605) {
  -webkit-animation-delay: 121.3s;
          animation-delay: 121.3s;
}
.featureArea.show .featureItem:nth-child(606) {
  -webkit-animation-delay: 121.5s;
          animation-delay: 121.5s;
}
.featureArea.show .featureItem:nth-child(607) {
  -webkit-animation-delay: 121.7s;
          animation-delay: 121.7s;
}
.featureArea.show .featureItem:nth-child(608) {
  -webkit-animation-delay: 121.9s;
          animation-delay: 121.9s;
}
.featureArea.show .featureItem:nth-child(609) {
  -webkit-animation-delay: 122.1s;
          animation-delay: 122.1s;
}
.featureArea.show .featureItem:nth-child(610) {
  -webkit-animation-delay: 122.3s;
          animation-delay: 122.3s;
}
.featureArea.show .featureItem:nth-child(611) {
  -webkit-animation-delay: 122.5s;
          animation-delay: 122.5s;
}
.featureArea.show .featureItem:nth-child(612) {
  -webkit-animation-delay: 122.7s;
          animation-delay: 122.7s;
}
.featureArea.show .featureItem:nth-child(613) {
  -webkit-animation-delay: 122.9s;
          animation-delay: 122.9s;
}
.featureArea.show .featureItem:nth-child(614) {
  -webkit-animation-delay: 123.1s;
          animation-delay: 123.1s;
}
.featureArea.show .featureItem:nth-child(615) {
  -webkit-animation-delay: 123.3s;
          animation-delay: 123.3s;
}
.featureArea.show .featureItem:nth-child(616) {
  -webkit-animation-delay: 123.5s;
          animation-delay: 123.5s;
}
.featureArea.show .featureItem:nth-child(617) {
  -webkit-animation-delay: 123.7s;
          animation-delay: 123.7s;
}
.featureArea.show .featureItem:nth-child(618) {
  -webkit-animation-delay: 123.9s;
          animation-delay: 123.9s;
}
.featureArea.show .featureItem:nth-child(619) {
  -webkit-animation-delay: 124.1s;
          animation-delay: 124.1s;
}
.featureArea.show .featureItem:nth-child(620) {
  -webkit-animation-delay: 124.3s;
          animation-delay: 124.3s;
}
.featureArea.show .featureItem:nth-child(621) {
  -webkit-animation-delay: 124.5s;
          animation-delay: 124.5s;
}
.featureArea.show .featureItem:nth-child(622) {
  -webkit-animation-delay: 124.7s;
          animation-delay: 124.7s;
}
.featureArea.show .featureItem:nth-child(623) {
  -webkit-animation-delay: 124.9s;
          animation-delay: 124.9s;
}
.featureArea.show .featureItem:nth-child(624) {
  -webkit-animation-delay: 125.1s;
          animation-delay: 125.1s;
}
.featureArea.show .featureItem:nth-child(625) {
  -webkit-animation-delay: 125.3s;
          animation-delay: 125.3s;
}
.featureArea.show .featureItem:nth-child(626) {
  -webkit-animation-delay: 125.5s;
          animation-delay: 125.5s;
}
.featureArea.show .featureItem:nth-child(627) {
  -webkit-animation-delay: 125.7s;
          animation-delay: 125.7s;
}
.featureArea.show .featureItem:nth-child(628) {
  -webkit-animation-delay: 125.9s;
          animation-delay: 125.9s;
}
.featureArea.show .featureItem:nth-child(629) {
  -webkit-animation-delay: 126.1s;
          animation-delay: 126.1s;
}
.featureArea.show .featureItem:nth-child(630) {
  -webkit-animation-delay: 126.3s;
          animation-delay: 126.3s;
}
.featureArea.show .featureItem:nth-child(631) {
  -webkit-animation-delay: 126.5s;
          animation-delay: 126.5s;
}
.featureArea.show .featureItem:nth-child(632) {
  -webkit-animation-delay: 126.7s;
          animation-delay: 126.7s;
}
.featureArea.show .featureItem:nth-child(633) {
  -webkit-animation-delay: 126.9s;
          animation-delay: 126.9s;
}
.featureArea.show .featureItem:nth-child(634) {
  -webkit-animation-delay: 127.1s;
          animation-delay: 127.1s;
}
.featureArea.show .featureItem:nth-child(635) {
  -webkit-animation-delay: 127.3s;
          animation-delay: 127.3s;
}
.featureArea.show .featureItem:nth-child(636) {
  -webkit-animation-delay: 127.5s;
          animation-delay: 127.5s;
}
.featureArea.show .featureItem:nth-child(637) {
  -webkit-animation-delay: 127.7s;
          animation-delay: 127.7s;
}
.featureArea.show .featureItem:nth-child(638) {
  -webkit-animation-delay: 127.9s;
          animation-delay: 127.9s;
}
.featureArea.show .featureItem:nth-child(639) {
  -webkit-animation-delay: 128.1s;
          animation-delay: 128.1s;
}
.featureArea.show .featureItem:nth-child(640) {
  -webkit-animation-delay: 128.3s;
          animation-delay: 128.3s;
}
.featureArea.show .featureItem:nth-child(641) {
  -webkit-animation-delay: 128.5s;
          animation-delay: 128.5s;
}
.featureArea.show .featureItem:nth-child(642) {
  -webkit-animation-delay: 128.7s;
          animation-delay: 128.7s;
}
.featureArea.show .featureItem:nth-child(643) {
  -webkit-animation-delay: 128.9s;
          animation-delay: 128.9s;
}
.featureArea.show .featureItem:nth-child(644) {
  -webkit-animation-delay: 129.1s;
          animation-delay: 129.1s;
}
.featureArea.show .featureItem:nth-child(645) {
  -webkit-animation-delay: 129.3s;
          animation-delay: 129.3s;
}
.featureArea.show .featureItem:nth-child(646) {
  -webkit-animation-delay: 129.5s;
          animation-delay: 129.5s;
}
.featureArea.show .featureItem:nth-child(647) {
  -webkit-animation-delay: 129.7s;
          animation-delay: 129.7s;
}
.featureArea.show .featureItem:nth-child(648) {
  -webkit-animation-delay: 129.9s;
          animation-delay: 129.9s;
}
.featureArea.show .featureItem:nth-child(649) {
  -webkit-animation-delay: 130.1s;
          animation-delay: 130.1s;
}
.featureArea.show .featureItem:nth-child(650) {
  -webkit-animation-delay: 130.3s;
          animation-delay: 130.3s;
}
.featureArea.show .featureItem:nth-child(651) {
  -webkit-animation-delay: 130.5s;
          animation-delay: 130.5s;
}
.featureArea.show .featureItem:nth-child(652) {
  -webkit-animation-delay: 130.7s;
          animation-delay: 130.7s;
}
.featureArea.show .featureItem:nth-child(653) {
  -webkit-animation-delay: 130.9s;
          animation-delay: 130.9s;
}
.featureArea.show .featureItem:nth-child(654) {
  -webkit-animation-delay: 131.1s;
          animation-delay: 131.1s;
}
.featureArea.show .featureItem:nth-child(655) {
  -webkit-animation-delay: 131.3s;
          animation-delay: 131.3s;
}
.featureArea.show .featureItem:nth-child(656) {
  -webkit-animation-delay: 131.5s;
          animation-delay: 131.5s;
}
.featureArea.show .featureItem:nth-child(657) {
  -webkit-animation-delay: 131.7s;
          animation-delay: 131.7s;
}
.featureArea.show .featureItem:nth-child(658) {
  -webkit-animation-delay: 131.9s;
          animation-delay: 131.9s;
}
.featureArea.show .featureItem:nth-child(659) {
  -webkit-animation-delay: 132.1s;
          animation-delay: 132.1s;
}
.featureArea.show .featureItem:nth-child(660) {
  -webkit-animation-delay: 132.3s;
          animation-delay: 132.3s;
}
.featureArea.show .featureItem:nth-child(661) {
  -webkit-animation-delay: 132.5s;
          animation-delay: 132.5s;
}
.featureArea.show .featureItem:nth-child(662) {
  -webkit-animation-delay: 132.7s;
          animation-delay: 132.7s;
}
.featureArea.show .featureItem:nth-child(663) {
  -webkit-animation-delay: 132.9s;
          animation-delay: 132.9s;
}
.featureArea.show .featureItem:nth-child(664) {
  -webkit-animation-delay: 133.1s;
          animation-delay: 133.1s;
}
.featureArea.show .featureItem:nth-child(665) {
  -webkit-animation-delay: 133.3s;
          animation-delay: 133.3s;
}
.featureArea.show .featureItem:nth-child(666) {
  -webkit-animation-delay: 133.5s;
          animation-delay: 133.5s;
}
.featureArea.show .featureItem:nth-child(667) {
  -webkit-animation-delay: 133.7s;
          animation-delay: 133.7s;
}
.featureArea.show .featureItem:nth-child(668) {
  -webkit-animation-delay: 133.9s;
          animation-delay: 133.9s;
}
.featureArea.show .featureItem:nth-child(669) {
  -webkit-animation-delay: 134.1s;
          animation-delay: 134.1s;
}
.featureArea.show .featureItem:nth-child(670) {
  -webkit-animation-delay: 134.3s;
          animation-delay: 134.3s;
}
.featureArea.show .featureItem:nth-child(671) {
  -webkit-animation-delay: 134.5s;
          animation-delay: 134.5s;
}
.featureArea.show .featureItem:nth-child(672) {
  -webkit-animation-delay: 134.7s;
          animation-delay: 134.7s;
}
.featureArea.show .featureItem:nth-child(673) {
  -webkit-animation-delay: 134.9s;
          animation-delay: 134.9s;
}
.featureArea.show .featureItem:nth-child(674) {
  -webkit-animation-delay: 135.1s;
          animation-delay: 135.1s;
}
.featureArea.show .featureItem:nth-child(675) {
  -webkit-animation-delay: 135.3s;
          animation-delay: 135.3s;
}
.featureArea.show .featureItem:nth-child(676) {
  -webkit-animation-delay: 135.5s;
          animation-delay: 135.5s;
}
.featureArea.show .featureItem:nth-child(677) {
  -webkit-animation-delay: 135.7s;
          animation-delay: 135.7s;
}
.featureArea.show .featureItem:nth-child(678) {
  -webkit-animation-delay: 135.9s;
          animation-delay: 135.9s;
}
.featureArea.show .featureItem:nth-child(679) {
  -webkit-animation-delay: 136.1s;
          animation-delay: 136.1s;
}
.featureArea.show .featureItem:nth-child(680) {
  -webkit-animation-delay: 136.3s;
          animation-delay: 136.3s;
}
.featureArea.show .featureItem:nth-child(681) {
  -webkit-animation-delay: 136.5s;
          animation-delay: 136.5s;
}
.featureArea.show .featureItem:nth-child(682) {
  -webkit-animation-delay: 136.7s;
          animation-delay: 136.7s;
}
.featureArea.show .featureItem:nth-child(683) {
  -webkit-animation-delay: 136.9s;
          animation-delay: 136.9s;
}
.featureArea.show .featureItem:nth-child(684) {
  -webkit-animation-delay: 137.1s;
          animation-delay: 137.1s;
}
.featureArea.show .featureItem:nth-child(685) {
  -webkit-animation-delay: 137.3s;
          animation-delay: 137.3s;
}
.featureArea.show .featureItem:nth-child(686) {
  -webkit-animation-delay: 137.5s;
          animation-delay: 137.5s;
}
.featureArea.show .featureItem:nth-child(687) {
  -webkit-animation-delay: 137.7s;
          animation-delay: 137.7s;
}
.featureArea.show .featureItem:nth-child(688) {
  -webkit-animation-delay: 137.9s;
          animation-delay: 137.9s;
}
.featureArea.show .featureItem:nth-child(689) {
  -webkit-animation-delay: 138.1s;
          animation-delay: 138.1s;
}
.featureArea.show .featureItem:nth-child(690) {
  -webkit-animation-delay: 138.3s;
          animation-delay: 138.3s;
}
.featureArea.show .featureItem:nth-child(691) {
  -webkit-animation-delay: 138.5s;
          animation-delay: 138.5s;
}
.featureArea.show .featureItem:nth-child(692) {
  -webkit-animation-delay: 138.7s;
          animation-delay: 138.7s;
}
.featureArea.show .featureItem:nth-child(693) {
  -webkit-animation-delay: 138.9s;
          animation-delay: 138.9s;
}
.featureArea.show .featureItem:nth-child(694) {
  -webkit-animation-delay: 139.1s;
          animation-delay: 139.1s;
}
.featureArea.show .featureItem:nth-child(695) {
  -webkit-animation-delay: 139.3s;
          animation-delay: 139.3s;
}
.featureArea.show .featureItem:nth-child(696) {
  -webkit-animation-delay: 139.5s;
          animation-delay: 139.5s;
}
.featureArea.show .featureItem:nth-child(697) {
  -webkit-animation-delay: 139.7s;
          animation-delay: 139.7s;
}
.featureArea.show .featureItem:nth-child(698) {
  -webkit-animation-delay: 139.9s;
          animation-delay: 139.9s;
}
.featureArea.show .featureItem:nth-child(699) {
  -webkit-animation-delay: 140.1s;
          animation-delay: 140.1s;
}
.featureArea.show .featureItem:nth-child(700) {
  -webkit-animation-delay: 140.3s;
          animation-delay: 140.3s;
}
.featureArea.show .featureItem:nth-child(701) {
  -webkit-animation-delay: 140.5s;
          animation-delay: 140.5s;
}
.featureArea.show .featureItem:nth-child(702) {
  -webkit-animation-delay: 140.7s;
          animation-delay: 140.7s;
}
.featureArea.show .featureItem:nth-child(703) {
  -webkit-animation-delay: 140.9s;
          animation-delay: 140.9s;
}
.featureArea.show .featureItem:nth-child(704) {
  -webkit-animation-delay: 141.1s;
          animation-delay: 141.1s;
}
.featureArea.show .featureItem:nth-child(705) {
  -webkit-animation-delay: 141.3s;
          animation-delay: 141.3s;
}
.featureArea.show .featureItem:nth-child(706) {
  -webkit-animation-delay: 141.5s;
          animation-delay: 141.5s;
}
.featureArea.show .featureItem:nth-child(707) {
  -webkit-animation-delay: 141.7s;
          animation-delay: 141.7s;
}
.featureArea.show .featureItem:nth-child(708) {
  -webkit-animation-delay: 141.9s;
          animation-delay: 141.9s;
}
.featureArea.show .featureItem:nth-child(709) {
  -webkit-animation-delay: 142.1s;
          animation-delay: 142.1s;
}
.featureArea.show .featureItem:nth-child(710) {
  -webkit-animation-delay: 142.3s;
          animation-delay: 142.3s;
}
.featureArea.show .featureItem:nth-child(711) {
  -webkit-animation-delay: 142.5s;
          animation-delay: 142.5s;
}
.featureArea.show .featureItem:nth-child(712) {
  -webkit-animation-delay: 142.7s;
          animation-delay: 142.7s;
}
.featureArea.show .featureItem:nth-child(713) {
  -webkit-animation-delay: 142.9s;
          animation-delay: 142.9s;
}
.featureArea.show .featureItem:nth-child(714) {
  -webkit-animation-delay: 143.1s;
          animation-delay: 143.1s;
}
.featureArea.show .featureItem:nth-child(715) {
  -webkit-animation-delay: 143.3s;
          animation-delay: 143.3s;
}
.featureArea.show .featureItem:nth-child(716) {
  -webkit-animation-delay: 143.5s;
          animation-delay: 143.5s;
}
.featureArea.show .featureItem:nth-child(717) {
  -webkit-animation-delay: 143.7s;
          animation-delay: 143.7s;
}
.featureArea.show .featureItem:nth-child(718) {
  -webkit-animation-delay: 143.9s;
          animation-delay: 143.9s;
}
.featureArea.show .featureItem:nth-child(719) {
  -webkit-animation-delay: 144.1s;
          animation-delay: 144.1s;
}
.featureArea.show .featureItem:nth-child(720) {
  -webkit-animation-delay: 144.3s;
          animation-delay: 144.3s;
}
.featureArea.show .featureItem:nth-child(721) {
  -webkit-animation-delay: 144.5s;
          animation-delay: 144.5s;
}
.featureArea.show .featureItem:nth-child(722) {
  -webkit-animation-delay: 144.7s;
          animation-delay: 144.7s;
}
.featureArea.show .featureItem:nth-child(723) {
  -webkit-animation-delay: 144.9s;
          animation-delay: 144.9s;
}
.featureArea.show .featureItem:nth-child(724) {
  -webkit-animation-delay: 145.1s;
          animation-delay: 145.1s;
}
.featureArea.show .featureItem:nth-child(725) {
  -webkit-animation-delay: 145.3s;
          animation-delay: 145.3s;
}
.featureArea.show .featureItem:nth-child(726) {
  -webkit-animation-delay: 145.5s;
          animation-delay: 145.5s;
}
.featureArea.show .featureItem:nth-child(727) {
  -webkit-animation-delay: 145.7s;
          animation-delay: 145.7s;
}
.featureArea.show .featureItem:nth-child(728) {
  -webkit-animation-delay: 145.9s;
          animation-delay: 145.9s;
}
.featureArea.show .featureItem:nth-child(729) {
  -webkit-animation-delay: 146.1s;
          animation-delay: 146.1s;
}
.featureArea.show .featureItem:nth-child(730) {
  -webkit-animation-delay: 146.3s;
          animation-delay: 146.3s;
}
.featureArea.show .featureItem:nth-child(731) {
  -webkit-animation-delay: 146.5s;
          animation-delay: 146.5s;
}
.featureArea.show .featureItem:nth-child(732) {
  -webkit-animation-delay: 146.7s;
          animation-delay: 146.7s;
}
.featureArea.show .featureItem:nth-child(733) {
  -webkit-animation-delay: 146.9s;
          animation-delay: 146.9s;
}
.featureArea.show .featureItem:nth-child(734) {
  -webkit-animation-delay: 147.1s;
          animation-delay: 147.1s;
}
.featureArea.show .featureItem:nth-child(735) {
  -webkit-animation-delay: 147.3s;
          animation-delay: 147.3s;
}
.featureArea.show .featureItem:nth-child(736) {
  -webkit-animation-delay: 147.5s;
          animation-delay: 147.5s;
}
.featureArea.show .featureItem:nth-child(737) {
  -webkit-animation-delay: 147.7s;
          animation-delay: 147.7s;
}
.featureArea.show .featureItem:nth-child(738) {
  -webkit-animation-delay: 147.9s;
          animation-delay: 147.9s;
}
.featureArea.show .featureItem:nth-child(739) {
  -webkit-animation-delay: 148.1s;
          animation-delay: 148.1s;
}
.featureArea.show .featureItem:nth-child(740) {
  -webkit-animation-delay: 148.3s;
          animation-delay: 148.3s;
}
.featureArea.show .featureItem:nth-child(741) {
  -webkit-animation-delay: 148.5s;
          animation-delay: 148.5s;
}
.featureArea.show .featureItem:nth-child(742) {
  -webkit-animation-delay: 148.7s;
          animation-delay: 148.7s;
}
.featureArea.show .featureItem:nth-child(743) {
  -webkit-animation-delay: 148.9s;
          animation-delay: 148.9s;
}
.featureArea.show .featureItem:nth-child(744) {
  -webkit-animation-delay: 149.1s;
          animation-delay: 149.1s;
}
.featureArea.show .featureItem:nth-child(745) {
  -webkit-animation-delay: 149.3s;
          animation-delay: 149.3s;
}
.featureArea.show .featureItem:nth-child(746) {
  -webkit-animation-delay: 149.5s;
          animation-delay: 149.5s;
}
.featureArea.show .featureItem:nth-child(747) {
  -webkit-animation-delay: 149.7s;
          animation-delay: 149.7s;
}
.featureArea.show .featureItem:nth-child(748) {
  -webkit-animation-delay: 149.9s;
          animation-delay: 149.9s;
}
.featureArea.show .featureItem:nth-child(749) {
  -webkit-animation-delay: 150.1s;
          animation-delay: 150.1s;
}
.featureArea.show .featureItem:nth-child(750) {
  -webkit-animation-delay: 150.3s;
          animation-delay: 150.3s;
}
.featureArea.show .featureItem:nth-child(751) {
  -webkit-animation-delay: 150.5s;
          animation-delay: 150.5s;
}
.featureArea.show .featureItem:nth-child(752) {
  -webkit-animation-delay: 150.7s;
          animation-delay: 150.7s;
}
.featureArea.show .featureItem:nth-child(753) {
  -webkit-animation-delay: 150.9s;
          animation-delay: 150.9s;
}
.featureArea.show .featureItem:nth-child(754) {
  -webkit-animation-delay: 151.1s;
          animation-delay: 151.1s;
}
.featureArea.show .featureItem:nth-child(755) {
  -webkit-animation-delay: 151.3s;
          animation-delay: 151.3s;
}
.featureArea.show .featureItem:nth-child(756) {
  -webkit-animation-delay: 151.5s;
          animation-delay: 151.5s;
}
.featureArea.show .featureItem:nth-child(757) {
  -webkit-animation-delay: 151.7s;
          animation-delay: 151.7s;
}
.featureArea.show .featureItem:nth-child(758) {
  -webkit-animation-delay: 151.9s;
          animation-delay: 151.9s;
}
.featureArea.show .featureItem:nth-child(759) {
  -webkit-animation-delay: 152.1s;
          animation-delay: 152.1s;
}
.featureArea.show .featureItem:nth-child(760) {
  -webkit-animation-delay: 152.3s;
          animation-delay: 152.3s;
}
.featureArea.show .featureItem:nth-child(761) {
  -webkit-animation-delay: 152.5s;
          animation-delay: 152.5s;
}
.featureArea.show .featureItem:nth-child(762) {
  -webkit-animation-delay: 152.7s;
          animation-delay: 152.7s;
}
.featureArea.show .featureItem:nth-child(763) {
  -webkit-animation-delay: 152.9s;
          animation-delay: 152.9s;
}
.featureArea.show .featureItem:nth-child(764) {
  -webkit-animation-delay: 153.1s;
          animation-delay: 153.1s;
}
.featureArea.show .featureItem:nth-child(765) {
  -webkit-animation-delay: 153.3s;
          animation-delay: 153.3s;
}
.featureArea.show .featureItem:nth-child(766) {
  -webkit-animation-delay: 153.5s;
          animation-delay: 153.5s;
}
.featureArea.show .featureItem:nth-child(767) {
  -webkit-animation-delay: 153.7s;
          animation-delay: 153.7s;
}
.featureArea.show .featureItem:nth-child(768) {
  -webkit-animation-delay: 153.9s;
          animation-delay: 153.9s;
}
.featureArea.show .featureItem:nth-child(769) {
  -webkit-animation-delay: 154.1s;
          animation-delay: 154.1s;
}
.featureArea.show .featureItem:nth-child(770) {
  -webkit-animation-delay: 154.3s;
          animation-delay: 154.3s;
}
.featureArea.show .featureItem:nth-child(771) {
  -webkit-animation-delay: 154.5s;
          animation-delay: 154.5s;
}
.featureArea.show .featureItem:nth-child(772) {
  -webkit-animation-delay: 154.7s;
          animation-delay: 154.7s;
}
.featureArea.show .featureItem:nth-child(773) {
  -webkit-animation-delay: 154.9s;
          animation-delay: 154.9s;
}
.featureArea.show .featureItem:nth-child(774) {
  -webkit-animation-delay: 155.1s;
          animation-delay: 155.1s;
}
.featureArea.show .featureItem:nth-child(775) {
  -webkit-animation-delay: 155.3s;
          animation-delay: 155.3s;
}
.featureArea.show .featureItem:nth-child(776) {
  -webkit-animation-delay: 155.5s;
          animation-delay: 155.5s;
}
.featureArea.show .featureItem:nth-child(777) {
  -webkit-animation-delay: 155.7s;
          animation-delay: 155.7s;
}
.featureArea.show .featureItem:nth-child(778) {
  -webkit-animation-delay: 155.9s;
          animation-delay: 155.9s;
}
.featureArea.show .featureItem:nth-child(779) {
  -webkit-animation-delay: 156.1s;
          animation-delay: 156.1s;
}
.featureArea.show .featureItem:nth-child(780) {
  -webkit-animation-delay: 156.3s;
          animation-delay: 156.3s;
}
.featureArea.show .featureItem:nth-child(781) {
  -webkit-animation-delay: 156.5s;
          animation-delay: 156.5s;
}
.featureArea.show .featureItem:nth-child(782) {
  -webkit-animation-delay: 156.7s;
          animation-delay: 156.7s;
}
.featureArea.show .featureItem:nth-child(783) {
  -webkit-animation-delay: 156.9s;
          animation-delay: 156.9s;
}
.featureArea.show .featureItem:nth-child(784) {
  -webkit-animation-delay: 157.1s;
          animation-delay: 157.1s;
}
.featureArea.show .featureItem:nth-child(785) {
  -webkit-animation-delay: 157.3s;
          animation-delay: 157.3s;
}
.featureArea.show .featureItem:nth-child(786) {
  -webkit-animation-delay: 157.5s;
          animation-delay: 157.5s;
}
.featureArea.show .featureItem:nth-child(787) {
  -webkit-animation-delay: 157.7s;
          animation-delay: 157.7s;
}
.featureArea.show .featureItem:nth-child(788) {
  -webkit-animation-delay: 157.9s;
          animation-delay: 157.9s;
}
.featureArea.show .featureItem:nth-child(789) {
  -webkit-animation-delay: 158.1s;
          animation-delay: 158.1s;
}
.featureArea.show .featureItem:nth-child(790) {
  -webkit-animation-delay: 158.3s;
          animation-delay: 158.3s;
}
.featureArea.show .featureItem:nth-child(791) {
  -webkit-animation-delay: 158.5s;
          animation-delay: 158.5s;
}
.featureArea.show .featureItem:nth-child(792) {
  -webkit-animation-delay: 158.7s;
          animation-delay: 158.7s;
}
.featureArea.show .featureItem:nth-child(793) {
  -webkit-animation-delay: 158.9s;
          animation-delay: 158.9s;
}
.featureArea.show .featureItem:nth-child(794) {
  -webkit-animation-delay: 159.1s;
          animation-delay: 159.1s;
}
.featureArea.show .featureItem:nth-child(795) {
  -webkit-animation-delay: 159.3s;
          animation-delay: 159.3s;
}
.featureArea.show .featureItem:nth-child(796) {
  -webkit-animation-delay: 159.5s;
          animation-delay: 159.5s;
}
.featureArea.show .featureItem:nth-child(797) {
  -webkit-animation-delay: 159.7s;
          animation-delay: 159.7s;
}
.featureArea.show .featureItem:nth-child(798) {
  -webkit-animation-delay: 159.9s;
          animation-delay: 159.9s;
}
.featureArea.show .featureItem:nth-child(799) {
  -webkit-animation-delay: 160.1s;
          animation-delay: 160.1s;
}
.featureArea.show .featureItem:nth-child(800) {
  -webkit-animation-delay: 160.3s;
          animation-delay: 160.3s;
}
.featureArea.show .featureItem:nth-child(801) {
  -webkit-animation-delay: 160.5s;
          animation-delay: 160.5s;
}
.featureArea.show .featureItem:nth-child(802) {
  -webkit-animation-delay: 160.7s;
          animation-delay: 160.7s;
}
.featureArea.show .featureItem:nth-child(803) {
  -webkit-animation-delay: 160.9s;
          animation-delay: 160.9s;
}
.featureArea.show .featureItem:nth-child(804) {
  -webkit-animation-delay: 161.1s;
          animation-delay: 161.1s;
}
.featureArea.show .featureItem:nth-child(805) {
  -webkit-animation-delay: 161.3s;
          animation-delay: 161.3s;
}
.featureArea.show .featureItem:nth-child(806) {
  -webkit-animation-delay: 161.5s;
          animation-delay: 161.5s;
}
.featureArea.show .featureItem:nth-child(807) {
  -webkit-animation-delay: 161.7s;
          animation-delay: 161.7s;
}
.featureArea.show .featureItem:nth-child(808) {
  -webkit-animation-delay: 161.9s;
          animation-delay: 161.9s;
}
.featureArea.show .featureItem:nth-child(809) {
  -webkit-animation-delay: 162.1s;
          animation-delay: 162.1s;
}
.featureArea.show .featureItem:nth-child(810) {
  -webkit-animation-delay: 162.3s;
          animation-delay: 162.3s;
}
.featureArea.show .featureItem:nth-child(811) {
  -webkit-animation-delay: 162.5s;
          animation-delay: 162.5s;
}
.featureArea.show .featureItem:nth-child(812) {
  -webkit-animation-delay: 162.7s;
          animation-delay: 162.7s;
}
.featureArea.show .featureItem:nth-child(813) {
  -webkit-animation-delay: 162.9s;
          animation-delay: 162.9s;
}
.featureArea.show .featureItem:nth-child(814) {
  -webkit-animation-delay: 163.1s;
          animation-delay: 163.1s;
}
.featureArea.show .featureItem:nth-child(815) {
  -webkit-animation-delay: 163.3s;
          animation-delay: 163.3s;
}
.featureArea.show .featureItem:nth-child(816) {
  -webkit-animation-delay: 163.5s;
          animation-delay: 163.5s;
}
.featureArea.show .featureItem:nth-child(817) {
  -webkit-animation-delay: 163.7s;
          animation-delay: 163.7s;
}
.featureArea.show .featureItem:nth-child(818) {
  -webkit-animation-delay: 163.9s;
          animation-delay: 163.9s;
}
.featureArea.show .featureItem:nth-child(819) {
  -webkit-animation-delay: 164.1s;
          animation-delay: 164.1s;
}
.featureArea.show .featureItem:nth-child(820) {
  -webkit-animation-delay: 164.3s;
          animation-delay: 164.3s;
}
.featureArea.show .featureItem:nth-child(821) {
  -webkit-animation-delay: 164.5s;
          animation-delay: 164.5s;
}
.featureArea.show .featureItem:nth-child(822) {
  -webkit-animation-delay: 164.7s;
          animation-delay: 164.7s;
}
.featureArea.show .featureItem:nth-child(823) {
  -webkit-animation-delay: 164.9s;
          animation-delay: 164.9s;
}
.featureArea.show .featureItem:nth-child(824) {
  -webkit-animation-delay: 165.1s;
          animation-delay: 165.1s;
}
.featureArea.show .featureItem:nth-child(825) {
  -webkit-animation-delay: 165.3s;
          animation-delay: 165.3s;
}
.featureArea.show .featureItem:nth-child(826) {
  -webkit-animation-delay: 165.5s;
          animation-delay: 165.5s;
}
.featureArea.show .featureItem:nth-child(827) {
  -webkit-animation-delay: 165.7s;
          animation-delay: 165.7s;
}
.featureArea.show .featureItem:nth-child(828) {
  -webkit-animation-delay: 165.9s;
          animation-delay: 165.9s;
}
.featureArea.show .featureItem:nth-child(829) {
  -webkit-animation-delay: 166.1s;
          animation-delay: 166.1s;
}
.featureArea.show .featureItem:nth-child(830) {
  -webkit-animation-delay: 166.3s;
          animation-delay: 166.3s;
}
.featureArea.show .featureItem:nth-child(831) {
  -webkit-animation-delay: 166.5s;
          animation-delay: 166.5s;
}
.featureArea.show .featureItem:nth-child(832) {
  -webkit-animation-delay: 166.7s;
          animation-delay: 166.7s;
}
.featureArea.show .featureItem:nth-child(833) {
  -webkit-animation-delay: 166.9s;
          animation-delay: 166.9s;
}
.featureArea.show .featureItem:nth-child(834) {
  -webkit-animation-delay: 167.1s;
          animation-delay: 167.1s;
}
.featureArea.show .featureItem:nth-child(835) {
  -webkit-animation-delay: 167.3s;
          animation-delay: 167.3s;
}
.featureArea.show .featureItem:nth-child(836) {
  -webkit-animation-delay: 167.5s;
          animation-delay: 167.5s;
}
.featureArea.show .featureItem:nth-child(837) {
  -webkit-animation-delay: 167.7s;
          animation-delay: 167.7s;
}
.featureArea.show .featureItem:nth-child(838) {
  -webkit-animation-delay: 167.9s;
          animation-delay: 167.9s;
}
.featureArea.show .featureItem:nth-child(839) {
  -webkit-animation-delay: 168.1s;
          animation-delay: 168.1s;
}
.featureArea.show .featureItem:nth-child(840) {
  -webkit-animation-delay: 168.3s;
          animation-delay: 168.3s;
}
.featureArea.show .featureItem:nth-child(841) {
  -webkit-animation-delay: 168.5s;
          animation-delay: 168.5s;
}
.featureArea.show .featureItem:nth-child(842) {
  -webkit-animation-delay: 168.7s;
          animation-delay: 168.7s;
}
.featureArea.show .featureItem:nth-child(843) {
  -webkit-animation-delay: 168.9s;
          animation-delay: 168.9s;
}
.featureArea.show .featureItem:nth-child(844) {
  -webkit-animation-delay: 169.1s;
          animation-delay: 169.1s;
}
.featureArea.show .featureItem:nth-child(845) {
  -webkit-animation-delay: 169.3s;
          animation-delay: 169.3s;
}
.featureArea.show .featureItem:nth-child(846) {
  -webkit-animation-delay: 169.5s;
          animation-delay: 169.5s;
}
.featureArea.show .featureItem:nth-child(847) {
  -webkit-animation-delay: 169.7s;
          animation-delay: 169.7s;
}
.featureArea.show .featureItem:nth-child(848) {
  -webkit-animation-delay: 169.9s;
          animation-delay: 169.9s;
}
.featureArea.show .featureItem:nth-child(849) {
  -webkit-animation-delay: 170.1s;
          animation-delay: 170.1s;
}
.featureArea.show .featureItem:nth-child(850) {
  -webkit-animation-delay: 170.3s;
          animation-delay: 170.3s;
}
.featureArea.show .featureItem:nth-child(851) {
  -webkit-animation-delay: 170.5s;
          animation-delay: 170.5s;
}
.featureArea.show .featureItem:nth-child(852) {
  -webkit-animation-delay: 170.7s;
          animation-delay: 170.7s;
}
.featureArea.show .featureItem:nth-child(853) {
  -webkit-animation-delay: 170.9s;
          animation-delay: 170.9s;
}
.featureArea.show .featureItem:nth-child(854) {
  -webkit-animation-delay: 171.1s;
          animation-delay: 171.1s;
}
.featureArea.show .featureItem:nth-child(855) {
  -webkit-animation-delay: 171.3s;
          animation-delay: 171.3s;
}
.featureArea.show .featureItem:nth-child(856) {
  -webkit-animation-delay: 171.5s;
          animation-delay: 171.5s;
}
.featureArea.show .featureItem:nth-child(857) {
  -webkit-animation-delay: 171.7s;
          animation-delay: 171.7s;
}
.featureArea.show .featureItem:nth-child(858) {
  -webkit-animation-delay: 171.9s;
          animation-delay: 171.9s;
}
.featureArea.show .featureItem:nth-child(859) {
  -webkit-animation-delay: 172.1s;
          animation-delay: 172.1s;
}
.featureArea.show .featureItem:nth-child(860) {
  -webkit-animation-delay: 172.3s;
          animation-delay: 172.3s;
}
.featureArea.show .featureItem:nth-child(861) {
  -webkit-animation-delay: 172.5s;
          animation-delay: 172.5s;
}
.featureArea.show .featureItem:nth-child(862) {
  -webkit-animation-delay: 172.7s;
          animation-delay: 172.7s;
}
.featureArea.show .featureItem:nth-child(863) {
  -webkit-animation-delay: 172.9s;
          animation-delay: 172.9s;
}
.featureArea.show .featureItem:nth-child(864) {
  -webkit-animation-delay: 173.1s;
          animation-delay: 173.1s;
}
.featureArea.show .featureItem:nth-child(865) {
  -webkit-animation-delay: 173.3s;
          animation-delay: 173.3s;
}
.featureArea.show .featureItem:nth-child(866) {
  -webkit-animation-delay: 173.5s;
          animation-delay: 173.5s;
}
.featureArea.show .featureItem:nth-child(867) {
  -webkit-animation-delay: 173.7s;
          animation-delay: 173.7s;
}
.featureArea.show .featureItem:nth-child(868) {
  -webkit-animation-delay: 173.9s;
          animation-delay: 173.9s;
}
.featureArea.show .featureItem:nth-child(869) {
  -webkit-animation-delay: 174.1s;
          animation-delay: 174.1s;
}
.featureArea.show .featureItem:nth-child(870) {
  -webkit-animation-delay: 174.3s;
          animation-delay: 174.3s;
}
.featureArea.show .featureItem:nth-child(871) {
  -webkit-animation-delay: 174.5s;
          animation-delay: 174.5s;
}
.featureArea.show .featureItem:nth-child(872) {
  -webkit-animation-delay: 174.7s;
          animation-delay: 174.7s;
}
.featureArea.show .featureItem:nth-child(873) {
  -webkit-animation-delay: 174.9s;
          animation-delay: 174.9s;
}
.featureArea.show .featureItem:nth-child(874) {
  -webkit-animation-delay: 175.1s;
          animation-delay: 175.1s;
}
.featureArea.show .featureItem:nth-child(875) {
  -webkit-animation-delay: 175.3s;
          animation-delay: 175.3s;
}
.featureArea.show .featureItem:nth-child(876) {
  -webkit-animation-delay: 175.5s;
          animation-delay: 175.5s;
}
.featureArea.show .featureItem:nth-child(877) {
  -webkit-animation-delay: 175.7s;
          animation-delay: 175.7s;
}
.featureArea.show .featureItem:nth-child(878) {
  -webkit-animation-delay: 175.9s;
          animation-delay: 175.9s;
}
.featureArea.show .featureItem:nth-child(879) {
  -webkit-animation-delay: 176.1s;
          animation-delay: 176.1s;
}
.featureArea.show .featureItem:nth-child(880) {
  -webkit-animation-delay: 176.3s;
          animation-delay: 176.3s;
}
.featureArea.show .featureItem:nth-child(881) {
  -webkit-animation-delay: 176.5s;
          animation-delay: 176.5s;
}
.featureArea.show .featureItem:nth-child(882) {
  -webkit-animation-delay: 176.7s;
          animation-delay: 176.7s;
}
.featureArea.show .featureItem:nth-child(883) {
  -webkit-animation-delay: 176.9s;
          animation-delay: 176.9s;
}
.featureArea.show .featureItem:nth-child(884) {
  -webkit-animation-delay: 177.1s;
          animation-delay: 177.1s;
}
.featureArea.show .featureItem:nth-child(885) {
  -webkit-animation-delay: 177.3s;
          animation-delay: 177.3s;
}
.featureArea.show .featureItem:nth-child(886) {
  -webkit-animation-delay: 177.5s;
          animation-delay: 177.5s;
}
.featureArea.show .featureItem:nth-child(887) {
  -webkit-animation-delay: 177.7s;
          animation-delay: 177.7s;
}
.featureArea.show .featureItem:nth-child(888) {
  -webkit-animation-delay: 177.9s;
          animation-delay: 177.9s;
}
.featureArea.show .featureItem:nth-child(889) {
  -webkit-animation-delay: 178.1s;
          animation-delay: 178.1s;
}
.featureArea.show .featureItem:nth-child(890) {
  -webkit-animation-delay: 178.3s;
          animation-delay: 178.3s;
}
.featureArea.show .featureItem:nth-child(891) {
  -webkit-animation-delay: 178.5s;
          animation-delay: 178.5s;
}
.featureArea.show .featureItem:nth-child(892) {
  -webkit-animation-delay: 178.7s;
          animation-delay: 178.7s;
}
.featureArea.show .featureItem:nth-child(893) {
  -webkit-animation-delay: 178.9s;
          animation-delay: 178.9s;
}
.featureArea.show .featureItem:nth-child(894) {
  -webkit-animation-delay: 179.1s;
          animation-delay: 179.1s;
}
.featureArea.show .featureItem:nth-child(895) {
  -webkit-animation-delay: 179.3s;
          animation-delay: 179.3s;
}
.featureArea.show .featureItem:nth-child(896) {
  -webkit-animation-delay: 179.5s;
          animation-delay: 179.5s;
}
.featureArea.show .featureItem:nth-child(897) {
  -webkit-animation-delay: 179.7s;
          animation-delay: 179.7s;
}
.featureArea.show .featureItem:nth-child(898) {
  -webkit-animation-delay: 179.9s;
          animation-delay: 179.9s;
}
.featureArea.show .featureItem:nth-child(899) {
  -webkit-animation-delay: 180.1s;
          animation-delay: 180.1s;
}
.featureArea.show .featureItem:nth-child(900) {
  -webkit-animation-delay: 180.3s;
          animation-delay: 180.3s;
}
.featureArea.show .featureItem:nth-child(901) {
  -webkit-animation-delay: 180.5s;
          animation-delay: 180.5s;
}
.featureArea.show .featureItem:nth-child(902) {
  -webkit-animation-delay: 180.7s;
          animation-delay: 180.7s;
}
.featureArea.show .featureItem:nth-child(903) {
  -webkit-animation-delay: 180.9s;
          animation-delay: 180.9s;
}
.featureArea.show .featureItem:nth-child(904) {
  -webkit-animation-delay: 181.1s;
          animation-delay: 181.1s;
}
.featureArea.show .featureItem:nth-child(905) {
  -webkit-animation-delay: 181.3s;
          animation-delay: 181.3s;
}
.featureArea.show .featureItem:nth-child(906) {
  -webkit-animation-delay: 181.5s;
          animation-delay: 181.5s;
}
.featureArea.show .featureItem:nth-child(907) {
  -webkit-animation-delay: 181.7s;
          animation-delay: 181.7s;
}
.featureArea.show .featureItem:nth-child(908) {
  -webkit-animation-delay: 181.9s;
          animation-delay: 181.9s;
}
.featureArea.show .featureItem:nth-child(909) {
  -webkit-animation-delay: 182.1s;
          animation-delay: 182.1s;
}
.featureArea.show .featureItem:nth-child(910) {
  -webkit-animation-delay: 182.3s;
          animation-delay: 182.3s;
}
.featureArea.show .featureItem:nth-child(911) {
  -webkit-animation-delay: 182.5s;
          animation-delay: 182.5s;
}
.featureArea.show .featureItem:nth-child(912) {
  -webkit-animation-delay: 182.7s;
          animation-delay: 182.7s;
}
.featureArea.show .featureItem:nth-child(913) {
  -webkit-animation-delay: 182.9s;
          animation-delay: 182.9s;
}
.featureArea.show .featureItem:nth-child(914) {
  -webkit-animation-delay: 183.1s;
          animation-delay: 183.1s;
}
.featureArea.show .featureItem:nth-child(915) {
  -webkit-animation-delay: 183.3s;
          animation-delay: 183.3s;
}
.featureArea.show .featureItem:nth-child(916) {
  -webkit-animation-delay: 183.5s;
          animation-delay: 183.5s;
}
.featureArea.show .featureItem:nth-child(917) {
  -webkit-animation-delay: 183.7s;
          animation-delay: 183.7s;
}
.featureArea.show .featureItem:nth-child(918) {
  -webkit-animation-delay: 183.9s;
          animation-delay: 183.9s;
}
.featureArea.show .featureItem:nth-child(919) {
  -webkit-animation-delay: 184.1s;
          animation-delay: 184.1s;
}
.featureArea.show .featureItem:nth-child(920) {
  -webkit-animation-delay: 184.3s;
          animation-delay: 184.3s;
}
.featureArea.show .featureItem:nth-child(921) {
  -webkit-animation-delay: 184.5s;
          animation-delay: 184.5s;
}
.featureArea.show .featureItem:nth-child(922) {
  -webkit-animation-delay: 184.7s;
          animation-delay: 184.7s;
}
.featureArea.show .featureItem:nth-child(923) {
  -webkit-animation-delay: 184.9s;
          animation-delay: 184.9s;
}
.featureArea.show .featureItem:nth-child(924) {
  -webkit-animation-delay: 185.1s;
          animation-delay: 185.1s;
}
.featureArea.show .featureItem:nth-child(925) {
  -webkit-animation-delay: 185.3s;
          animation-delay: 185.3s;
}
.featureArea.show .featureItem:nth-child(926) {
  -webkit-animation-delay: 185.5s;
          animation-delay: 185.5s;
}
.featureArea.show .featureItem:nth-child(927) {
  -webkit-animation-delay: 185.7s;
          animation-delay: 185.7s;
}
.featureArea.show .featureItem:nth-child(928) {
  -webkit-animation-delay: 185.9s;
          animation-delay: 185.9s;
}
.featureArea.show .featureItem:nth-child(929) {
  -webkit-animation-delay: 186.1s;
          animation-delay: 186.1s;
}
.featureArea.show .featureItem:nth-child(930) {
  -webkit-animation-delay: 186.3s;
          animation-delay: 186.3s;
}
.featureArea.show .featureItem:nth-child(931) {
  -webkit-animation-delay: 186.5s;
          animation-delay: 186.5s;
}
.featureArea.show .featureItem:nth-child(932) {
  -webkit-animation-delay: 186.7s;
          animation-delay: 186.7s;
}
.featureArea.show .featureItem:nth-child(933) {
  -webkit-animation-delay: 186.9s;
          animation-delay: 186.9s;
}
.featureArea.show .featureItem:nth-child(934) {
  -webkit-animation-delay: 187.1s;
          animation-delay: 187.1s;
}
.featureArea.show .featureItem:nth-child(935) {
  -webkit-animation-delay: 187.3s;
          animation-delay: 187.3s;
}
.featureArea.show .featureItem:nth-child(936) {
  -webkit-animation-delay: 187.5s;
          animation-delay: 187.5s;
}
.featureArea.show .featureItem:nth-child(937) {
  -webkit-animation-delay: 187.7s;
          animation-delay: 187.7s;
}
.featureArea.show .featureItem:nth-child(938) {
  -webkit-animation-delay: 187.9s;
          animation-delay: 187.9s;
}
.featureArea.show .featureItem:nth-child(939) {
  -webkit-animation-delay: 188.1s;
          animation-delay: 188.1s;
}
.featureArea.show .featureItem:nth-child(940) {
  -webkit-animation-delay: 188.3s;
          animation-delay: 188.3s;
}
.featureArea.show .featureItem:nth-child(941) {
  -webkit-animation-delay: 188.5s;
          animation-delay: 188.5s;
}
.featureArea.show .featureItem:nth-child(942) {
  -webkit-animation-delay: 188.7s;
          animation-delay: 188.7s;
}
.featureArea.show .featureItem:nth-child(943) {
  -webkit-animation-delay: 188.9s;
          animation-delay: 188.9s;
}
.featureArea.show .featureItem:nth-child(944) {
  -webkit-animation-delay: 189.1s;
          animation-delay: 189.1s;
}
.featureArea.show .featureItem:nth-child(945) {
  -webkit-animation-delay: 189.3s;
          animation-delay: 189.3s;
}
.featureArea.show .featureItem:nth-child(946) {
  -webkit-animation-delay: 189.5s;
          animation-delay: 189.5s;
}
.featureArea.show .featureItem:nth-child(947) {
  -webkit-animation-delay: 189.7s;
          animation-delay: 189.7s;
}
.featureArea.show .featureItem:nth-child(948) {
  -webkit-animation-delay: 189.9s;
          animation-delay: 189.9s;
}
.featureArea.show .featureItem:nth-child(949) {
  -webkit-animation-delay: 190.1s;
          animation-delay: 190.1s;
}
.featureArea.show .featureItem:nth-child(950) {
  -webkit-animation-delay: 190.3s;
          animation-delay: 190.3s;
}
.featureArea.show .featureItem:nth-child(951) {
  -webkit-animation-delay: 190.5s;
          animation-delay: 190.5s;
}
.featureArea.show .featureItem:nth-child(952) {
  -webkit-animation-delay: 190.7s;
          animation-delay: 190.7s;
}
.featureArea.show .featureItem:nth-child(953) {
  -webkit-animation-delay: 190.9s;
          animation-delay: 190.9s;
}
.featureArea.show .featureItem:nth-child(954) {
  -webkit-animation-delay: 191.1s;
          animation-delay: 191.1s;
}
.featureArea.show .featureItem:nth-child(955) {
  -webkit-animation-delay: 191.3s;
          animation-delay: 191.3s;
}
.featureArea.show .featureItem:nth-child(956) {
  -webkit-animation-delay: 191.5s;
          animation-delay: 191.5s;
}
.featureArea.show .featureItem:nth-child(957) {
  -webkit-animation-delay: 191.7s;
          animation-delay: 191.7s;
}
.featureArea.show .featureItem:nth-child(958) {
  -webkit-animation-delay: 191.9s;
          animation-delay: 191.9s;
}
.featureArea.show .featureItem:nth-child(959) {
  -webkit-animation-delay: 192.1s;
          animation-delay: 192.1s;
}
.featureArea.show .featureItem:nth-child(960) {
  -webkit-animation-delay: 192.3s;
          animation-delay: 192.3s;
}
.featureArea.show .featureItem:nth-child(961) {
  -webkit-animation-delay: 192.5s;
          animation-delay: 192.5s;
}
.featureArea.show .featureItem:nth-child(962) {
  -webkit-animation-delay: 192.7s;
          animation-delay: 192.7s;
}
.featureArea.show .featureItem:nth-child(963) {
  -webkit-animation-delay: 192.9s;
          animation-delay: 192.9s;
}
.featureArea.show .featureItem:nth-child(964) {
  -webkit-animation-delay: 193.1s;
          animation-delay: 193.1s;
}
.featureArea.show .featureItem:nth-child(965) {
  -webkit-animation-delay: 193.3s;
          animation-delay: 193.3s;
}
.featureArea.show .featureItem:nth-child(966) {
  -webkit-animation-delay: 193.5s;
          animation-delay: 193.5s;
}
.featureArea.show .featureItem:nth-child(967) {
  -webkit-animation-delay: 193.7s;
          animation-delay: 193.7s;
}
.featureArea.show .featureItem:nth-child(968) {
  -webkit-animation-delay: 193.9s;
          animation-delay: 193.9s;
}
.featureArea.show .featureItem:nth-child(969) {
  -webkit-animation-delay: 194.1s;
          animation-delay: 194.1s;
}
.featureArea.show .featureItem:nth-child(970) {
  -webkit-animation-delay: 194.3s;
          animation-delay: 194.3s;
}
.featureArea.show .featureItem:nth-child(971) {
  -webkit-animation-delay: 194.5s;
          animation-delay: 194.5s;
}
.featureArea.show .featureItem:nth-child(972) {
  -webkit-animation-delay: 194.7s;
          animation-delay: 194.7s;
}
.featureArea.show .featureItem:nth-child(973) {
  -webkit-animation-delay: 194.9s;
          animation-delay: 194.9s;
}
.featureArea.show .featureItem:nth-child(974) {
  -webkit-animation-delay: 195.1s;
          animation-delay: 195.1s;
}
.featureArea.show .featureItem:nth-child(975) {
  -webkit-animation-delay: 195.3s;
          animation-delay: 195.3s;
}
.featureArea.show .featureItem:nth-child(976) {
  -webkit-animation-delay: 195.5s;
          animation-delay: 195.5s;
}
.featureArea.show .featureItem:nth-child(977) {
  -webkit-animation-delay: 195.7s;
          animation-delay: 195.7s;
}
.featureArea.show .featureItem:nth-child(978) {
  -webkit-animation-delay: 195.9s;
          animation-delay: 195.9s;
}
.featureArea.show .featureItem:nth-child(979) {
  -webkit-animation-delay: 196.1s;
          animation-delay: 196.1s;
}
.featureArea.show .featureItem:nth-child(980) {
  -webkit-animation-delay: 196.3s;
          animation-delay: 196.3s;
}
.featureArea.show .featureItem:nth-child(981) {
  -webkit-animation-delay: 196.5s;
          animation-delay: 196.5s;
}
.featureArea.show .featureItem:nth-child(982) {
  -webkit-animation-delay: 196.7s;
          animation-delay: 196.7s;
}
.featureArea.show .featureItem:nth-child(983) {
  -webkit-animation-delay: 196.9s;
          animation-delay: 196.9s;
}
.featureArea.show .featureItem:nth-child(984) {
  -webkit-animation-delay: 197.1s;
          animation-delay: 197.1s;
}
.featureArea.show .featureItem:nth-child(985) {
  -webkit-animation-delay: 197.3s;
          animation-delay: 197.3s;
}
.featureArea.show .featureItem:nth-child(986) {
  -webkit-animation-delay: 197.5s;
          animation-delay: 197.5s;
}
.featureArea.show .featureItem:nth-child(987) {
  -webkit-animation-delay: 197.7s;
          animation-delay: 197.7s;
}
.featureArea.show .featureItem:nth-child(988) {
  -webkit-animation-delay: 197.9s;
          animation-delay: 197.9s;
}
.featureArea.show .featureItem:nth-child(989) {
  -webkit-animation-delay: 198.1s;
          animation-delay: 198.1s;
}
.featureArea.show .featureItem:nth-child(990) {
  -webkit-animation-delay: 198.3s;
          animation-delay: 198.3s;
}
.featureArea.show .featureItem:nth-child(991) {
  -webkit-animation-delay: 198.5s;
          animation-delay: 198.5s;
}
.featureArea.show .featureItem:nth-child(992) {
  -webkit-animation-delay: 198.7s;
          animation-delay: 198.7s;
}
.featureArea.show .featureItem:nth-child(993) {
  -webkit-animation-delay: 198.9s;
          animation-delay: 198.9s;
}
.featureArea.show .featureItem:nth-child(994) {
  -webkit-animation-delay: 199.1s;
          animation-delay: 199.1s;
}
.featureArea.show .featureItem:nth-child(995) {
  -webkit-animation-delay: 199.3s;
          animation-delay: 199.3s;
}
.featureArea.show .featureItem:nth-child(996) {
  -webkit-animation-delay: 199.5s;
          animation-delay: 199.5s;
}
.featureArea.show .featureItem:nth-child(997) {
  -webkit-animation-delay: 199.7s;
          animation-delay: 199.7s;
}
.featureArea.show .featureItem:nth-child(998) {
  -webkit-animation-delay: 199.9s;
          animation-delay: 199.9s;
}
.featureArea.show .featureItem:nth-child(999) {
  -webkit-animation-delay: 200.1s;
          animation-delay: 200.1s;
}
.featureArea .wrap {
  position: relative;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.featureArea .featureBg {
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../images/featureBg.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.featureArea .featureBox {
  max-width: 1300px;
  padding: 85px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
  max-height: 100vh;
}
.featureArea .leftBox {
  width: 31%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.featureArea .leftBox .titleBox {
  margin-bottom: 58px;
  text-align: start;
  margin-top: -75px;
}
.featureArea .leftBox .titleBox .title {
  font-size: 35px;
  font-weight: 500;
  color: #252525;
  line-height: 1.4;
  letter-spacing: 3px;
  padding-bottom: 15px;
}
.featureArea .leftBox .titleBox .subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #f1bc47;
  letter-spacing: 1.7px;
  line-height: 1.7;
}
.featureArea .leftBox .titleBox .decoTitle {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.4px;
}
.featureArea .leftBox .scrollDown {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 2px;
}
.featureArea .leftBox .scrollDown .mouse {
  width: 15px;
  height: 25px;
  fill: #636363;
  margin-bottom: 15px;
}
.featureArea .leftBox .scrollDown .text {
  position: relative;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  letter-spacing: 0.5px;
  font-size: 14px;
  font-weight: 500;
  color: #636363;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.featureArea .leftBox .scrollDown .text::after {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  border-right: 1px solid #636363;
  border-bottom: 1px solid #636363;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
@media (min-width: 1181px) {
  .featureArea .leftBox .scrollDown:hover .mouse {
    -webkit-animation: scrollAnimation 1.5s linear infinite;
            animation: scrollAnimation 1.5s linear infinite;
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  .featureArea .leftBox .scrollDown:hover .text::after {
    -webkit-animation: scrollDown 0.3s linear infinite;
            animation: scrollDown 0.3s linear infinite;
  }
}
.featureArea .rightBox {
  width: 61%;
  max-width: 790px;
  padding-bottom: 120px;
}
.featureArea .rightBox .featureList {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
.featureArea .rightBox .featureItem:nth-child(odd) {
  margin-bottom: 55px;
}
.featureArea .rightBox .featureItem:nth-child(even) {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  margin-top: 55px;
}
.featureArea .rightBox .item {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  position: relative;
  padding: 35px 22px;
}
@media (min-width: 1181px) {
  .featureArea .rightBox .item:hover::before {
    -webkit-animation: lineLeft 1s 0s ease-in-out forwards;
            animation: lineLeft 1s 0s ease-in-out forwards;
  }
  .featureArea .rightBox .item:hover .Img img {
    scale: 1.1;
  }
}
.featureArea .rightBox .item::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, right top, left top, from(#f1bc47), to(#f1bc47)), -webkit-gradient(linear, right top, left top, from(#f1bc47), to(#f1bc47)), -webkit-gradient(linear, right top, left top, from(#f1bc47), to(#f1bc47)), -webkit-gradient(linear, right top, left top, from(#f1bc47), to(#f1bc47));
  background-image: linear-gradient(right, #f1bc47 0%, #f1bc47 100%), linear-gradient(right, #f1bc47 0%, #f1bc47 100%), linear-gradient(right, #f1bc47 0%, #f1bc47 100%), linear-gradient(right, #f1bc47 0%, #f1bc47 100%);
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-size: 0 0, 0 0;
}
.featureArea .rightBox .item .featureLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.featureArea .rightBox .item .enTitleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
.featureArea .rightBox .item .enTitleBox .number {
  width: 25px;
  font-size: 16px;
  font-weight: 400;
  color: #1d1d1d;
}
.featureArea .rightBox .item .enTitleBox .subLine {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}
.featureArea .rightBox .item .enTitleBox .enTitle {
  display: inline;
  padding: 0 5px 0 10px;
  font-size: 16px;
  font-weight: 400;
  color: #1d1d1d;
  letter-spacing: 0.7px;
}
.featureArea .rightBox .item .Img {
  position: relative;
  margin-bottom: 50px;
  width: 100%;
  overflow: hidden;
}
.featureArea .rightBox .item .Img img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.featureArea .rightBox .item .Img .backImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.featureArea .rightBox .item .Txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.featureArea .rightBox .item .Txt .title {
  font-size: 22px;
  font-weight: 500;
  color: #1d1d1d;
  letter-spacing: 1px;
  line-height: 1;
  padding: 5px 0;
}
.featureArea .rightBox .item .Txt .decTitle {
  font-size: 18px;
  font-weight: 500;
  color: #1d1d1d;
  letter-spacing: 0.8px;
  line-height: 1;
  padding: 5px 0;
}
.featureArea .rightBox .item .Txt .textEditor {
  font-size: 16px;
  font-weight: 400;
  color: #393939;
  letter-spacing: 0.1px;
  padding-top: 10px;
}
@media (max-width: 1440px) {
  .featureArea {
    padding: 40px 0 20px;
  }
  .featureArea .featureBox {
    gap: 30px;
  }
  .featureArea .leftBox {
    width: 35%;
  }
  .featureArea .rightBox {
    width: 65%;
  }
}
@media (max-width: 1180px) {
  .featureArea .rightBox .featureList {
    gap: 30px;
  }
  .featureArea .rightBox .featureItem:nth-child(odd) {
    margin-bottom: 35px;
  }
  .featureArea .rightBox .featureItem:nth-child(even) {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    margin-top: 35px;
  }
}
@media (max-width: 1024px) {
  .featureArea .featureBg {
    height: 100%;
  }
  .featureArea .featureBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-height: 100%;
  }
  .featureArea .leftBox {
    width: 100%;
  }
  .featureArea .leftBox .titleBox {
    margin-top: 0;
  }
  .featureArea .rightBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    max-width: 100%;
    padding-bottom: 40px;
    margin-top: -180px;
  }
  .featureArea .rightBox .featureList {
    max-width: 80%;
  }
  .featureArea .rightBox .item .Txt .textEditor {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (max-width: 768px) {
  .featureArea .rightBox .featureList {
    max-width: 90%;
  }
}
@media (max-width: 640px) {
  .featureArea {
    padding: 40px 0 0;
  }
  .featureArea .featureBox {
    padding: 58px 0 0;
  }
  .featureArea .leftBox .titleBox {
    margin-bottom: 88px;
  }
  .featureArea .leftBox .titleBox .title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2.3px;
    padding-bottom: 8px;
  }
  .featureArea .leftBox .titleBox .decoTitle {
    font-size: 20px;
    letter-spacing: 0.4px;
    letter-spacing: 0.8px;
  }
  .featureArea .leftBox .scrollDown {
    margin-left: 6px;
  }
  .featureArea .rightBox {
    padding-bottom: 60px;
    margin-top: -245px;
  }
  .featureArea .rightBox .featureList {
    display: block;
  }
  .featureArea .rightBox .featureItem {
    padding: 10px 8px;
  }
  .featureArea .rightBox .featureItem:nth-child(odd) {
    margin-bottom: 0px;
  }
  .featureArea .rightBox .featureItem:nth-child(even) {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    margin-top: 0px;
  }
  .featureArea .rightBox .featureItem .Img {
    margin-bottom: 8px;
  }
  .featureArea .rightBox .featureItem .Img img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  .featureArea .rightBox .featureItem .item {
    padding: 30px 22px;
  }
  .featureArea .slick-slider .slick-dots {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .featureArea .slick-slider .slick-dots li {
    width: 6px;
    height: 6px;
  }
  .featureArea .slick-slider .slick-dots li button::before {
    background-color: #000;
  }
  .featureArea .slick-slider .slick-dots li.slick-active button::before {
    background-color: #f1bc47;
  }
}
@media (max-width: 414px) {
  .featureArea .leftBox .scrollDown {
    opacity: 0 !important;
    pointer-events: none;
  }
  .featureArea .rightBox .featureList {
    max-width: 100%;
  }
  .featureArea .rightBox .item .enTitleBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 10px;
  }
  .featureArea .rightBox .item .enTitleBox .enTitle {
    padding: 0;
  }
}

.interviewArea {
  padding: 40px 0 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #f4f4f4), to(#f4f4f4));
  background: linear-gradient(to bottom, #fff 0%, #fff 50%, #f4f4f4 50%, #f4f4f4 100%);
}
.interviewArea:not(.show) .wrap > .titleBox .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.interviewArea:not(.show) .wrap > .titleBox .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.interviewArea.show .wrap > .titleBox .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottomRotate 0.4s 0.2s ease-in-out forwards;
          animation: showBottomRotate 0.4s 0.2s ease-in-out forwards;
}
.interviewArea.show .wrap > .titleBox .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottomRotate 0.4s 0.4s ease-in-out forwards;
          animation: showBottomRotate 0.4s 0.4s ease-in-out forwards;
}
.interviewArea .wrap {
  position: relative;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.interviewArea .wrap > .titleBox {
  margin-bottom: 15px;
}
.interviewArea .wrap > .titleBox .title {
  font-size: 35px;
  font-weight: 500;
  color: #252525;
  line-height: 1.4;
  letter-spacing: 3px;
  padding-bottom: 30px;
}
.interviewArea .wrap > .titleBox .subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #f1bc47;
  letter-spacing: 1.7px;
  line-height: 1.7;
}
.interviewArea .interviewBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-left: -11px;
}
.interviewArea .leftBox,
.interviewArea .rightBox {
  width: 50%;
  max-width: 860px;
}
.interviewArea .leftBox .item,
.interviewArea .rightBox .item {
  padding: 0 25px;
}
.interviewArea .leftBox .Txt,
.interviewArea .rightBox .Txt {
  padding: 23px 17px;
}
.interviewArea .leftBox .Txt .dateBox::after,
.interviewArea .rightBox .Txt .dateBox::after {
  content: "";
  position: absolute;
  height: 50px;
}
.interviewArea .leftBox .interviewLeftList {
  margin-right: -25px;
}
.interviewArea .midBox {
  position: relative;
  width: 29%;
  max-width: 545px;
  margin: 0 50px;
  z-index: 1;
}
.interviewArea .rightBox {
  margin-left: -25px;
}
.interviewArea .rightBox .interviewRightList {
  margin-right: -25px;
}
.interviewArea .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1181px) {
  .interviewArea .item:hover .Img {
    opacity: 0.8;
  }
  .interviewArea .item:hover .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .interviewArea .item:hover .Txt .title {
    color: #f1bc47;
  }
}
.interviewArea .interviewLefLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.interviewArea .Img {
  overflow: hidden;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.interviewArea .Img img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.interviewArea .Txt {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding: 25px 23px;
}
.interviewArea .Txt .dateBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 15px;
  position: relative;
}
.interviewArea .Txt .dateBox .year {
  font-size: 12px;
  font-weight: 400;
  color: #6d6d6d;
  line-height: 1;
}
.interviewArea .Txt .dateBox .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 30px;
  font-weight: 400;
  color: #1d1d1d;
  line-height: 1.1;
}
.interviewArea .Txt .dateBox .date .slash {
  display: block;
  font-size: 12px;
  margin-bottom: -5px;
  padding: 0 5px;
}
.interviewArea .Txt .dateBox::after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 70px;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.interviewArea .Txt .textBox {
  padding-left: 15px;
  margin-top: -5px;
}
.interviewArea .Txt .textBox .title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 1.4;
  color: #1d1d1d;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.interviewArea .Txt .textBox .text {
  font-size: 16px;
  font-weight: 400;
  color: #393939;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.interviewArea .slick-arrow {
  top: auto;
  bottom: 30px;
}
.interviewArea .slick-arrow.slick-next {
  right: -100px;
}
.interviewArea .slick-arrow.slick-prev {
  left: -100px;
}
@media (max-width: 1280px) {
  .interviewArea .slick-arrow {
    bottom: 0;
  }
}
@media (max-width: 1180px) {
  .interviewArea .leftBox,
  .interviewArea .rightBox {
    width: 28%;
  }
  .interviewArea .midBox {
    width: 40%;
    margin: 0 25px;
  }
  .interviewArea .Txt {
    padding: 20px;
  }
  .interviewArea .Txt .textBox {
    padding-left: 18px;
  }
  .interviewArea .Txt .textBox .title {
    font-size: 18px;
  }
  .interviewArea .Txt .textBox .text {
    margin-top: 12px;
    -webkit-line-clamp: 3;
  }
  .interviewArea .slick-arrow {
    bottom: 8%;
  }
  .interviewArea .slick-arrow.slick-next {
    right: -80px;
  }
  .interviewArea .slick-arrow.slick-prev {
    left: -80px;
  }
}
@media (max-width: 960px) {
  .interviewArea .leftBox,
  .interviewArea .rightBox {
    display: none;
  }
  .interviewArea .midBox {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .interviewArea .midBox .item {
    padding: 0 15px;
  }
  .interviewArea .slick-arrow {
    bottom: -110px;
  }
  .interviewArea .slick-arrow.slick-next {
    right: 20%;
  }
  .interviewArea .slick-arrow.slick-prev {
    left: 20%;
  }
  .interviewArea .slick-slider .slick-dots {
    bottom: -28px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .interviewArea .slick-slider .slick-dots li {
    width: 6px;
    height: 6px;
  }
  .interviewArea .slick-slider .slick-dots li button::before {
    background-color: #000;
  }
  .interviewArea .slick-slider .slick-dots li.slick-active button::before {
    background-color: #f1bc47;
  }
}
@media (max-width: 840px) {
  .interviewArea .interviewBox {
    margin-left: 0;
  }
  .interviewArea .midBox {
    margin: 0;
  }
}
@media (max-width: 640px) {
  .interviewArea {
    padding: 75px 0 45px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .interviewArea .wrap > .titleBox {
    margin-bottom: 0;
  }
  .interviewArea .wrap > .titleBox .title {
    font-size: 24px;
    font-weight: 500;
    color: #363636;
    line-height: 1.4;
    letter-spacing: 3px;
    padding-bottom: 25px;
  }
  .interviewArea .wrap > .titleBox .subtitle {
    letter-spacing: 1.7px;
    line-height: 1.7;
  }
  .interviewArea .midBox {
    width: 100%;
  }
  .interviewArea .midBox .interviewItem {
    margin-bottom: 20px;
  }
  .interviewArea .slick-arrow {
    bottom: -80px;
  }
  .interviewArea .btnBox.phoneBtn {
    display: none;
  }
}
@media (max-width: 640px) and (max-width: 640px) {
  .interviewArea .btnBox.phoneBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 450px) {
  .interviewArea .slick-arrow.slick-next {
    right: 15%;
  }
  .interviewArea .slick-arrow.slick-prev {
    left: 15%;
  }
}
@media (max-width: 414px) {
  .interviewArea .slick-arrow.slick-next {
    right: 5%;
  }
  .interviewArea .slick-arrow.slick-prev {
    left: 5%;
  }
}

.processArea {
  padding: 95px 0 55px;
}
.processArea:not(.show) .wrap > .titleBox .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.processArea:not(.show) .wrap > .titleBox .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.processArea:not(.show) .wrap > .titleBox .title::after {
  width: 0;
}
.processArea:not(.show) .wrap > .titleBox .title::before {
  width: 0;
}
.processArea.show .wrap > .titleBox .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottomRotate 0.4s 0.2s ease-in-out forwards;
          animation: showBottomRotate 0.4s 0.2s ease-in-out forwards;
}
.processArea.show .wrap > .titleBox .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottomRotate 0.4s 0.4s ease-in-out forwards;
          animation: showBottomRotate 0.4s 0.4s ease-in-out forwards;
}
.processArea.show .wrap > .titleBox .title::after {
  width: 0;
  -webkit-animation: showLine 0.4s 0.5s ease-in-out forwards;
          animation: showLine 0.4s 0.5s ease-in-out forwards;
}
.processArea.show .wrap > .titleBox .title::before {
  width: 0;
  -webkit-animation: showLine100 0.4s 0.5s ease-in-out forwards;
          animation: showLine100 0.4s 0.5s ease-in-out forwards;
}
.processArea .wrap > .titleBox {
  margin-bottom: 50px;
}
.processArea .wrap > .titleBox .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 35px;
  font-weight: 500;
  color: #252525;
  line-height: 1.4;
  letter-spacing: 3px;
  padding-bottom: 30px;
  position: relative;
}
.processArea .wrap > .titleBox .title::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(37, 37, 37, 0.2);
}
.processArea .wrap > .titleBox .title::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 105px;
  height: 1px;
  background-color: #f1bc47;
}
.processArea .wrap > .titleBox .subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #f1bc47;
  letter-spacing: 1.7px;
  line-height: 1.7;
}
.processArea .processList {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  position: relative;
}
.processArea .processItem {
  width: 100%;
  max-width: 330px;
}
.processArea .processItem:first-child {
  margin-left: 5px;
}
.processArea .processItem:last-child {
  margin-right: 5px;
}
.processArea .decDot {
  position: absolute;
  top: 80px;
}
.processArea .decDot img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.processArea .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (min-width: 1181px) {
  .processArea .item:hover .iconBox {
    -webkit-animation: rotate3DHorizontal 1.5s cubic-bezier(0.4, 0.2, 0.2, 1) forwards;
            animation: rotate3DHorizontal 1.5s cubic-bezier(0.4, 0.2, 0.2, 1) forwards;
  }
}
.processArea .iconBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.17);
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.17);
  margin-bottom: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.processArea .iconBox .processLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.processArea .iconBox .step {
  font-size: 16px;
  font-weight: 600;
  color: #f1bc47;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.processArea .iconBox .step .stepNumber {
  margin-left: 5px;
}
.processArea .iconBox .Img {
  width: 45px;
  height: 45px;
}
.processArea .iconBox .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.processArea .Txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
}
.processArea .Txt .title {
  font-size: 22px;
  font-weight: 500;
  color: #1d1d1d;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 5px;
}
.processArea .Txt .textEditor {
  font-size: 16px;
  font-weight: 400;
  color: #393939;
  letter-spacing: 0.3px;
  line-height: 1.75;
}
@media (max-width: 1440px) {
  .processArea {
    padding: 60px 0 40px;
  }
}
@media (max-width: 768px) {
  .processArea .wrap > .titleBox {
    margin-bottom: 60px;
  }
  .processArea .decDot {
    display: none;
  }
  .processArea .processList {
    justify-items: start;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
    row-gap: 45px;
  }
  .processArea .processItem {
    max-width: 100%;
  }
  .processArea .processItem:last-child .item .iconBox::after {
    display: none;
  }
  .processArea .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
  .processArea .item .iconBox {
    position: relative;
  }
  .processArea .item .iconBox::after {
    content: "";
    position: absolute;
    position: absolute;
    display: block;
    width: 5px;
    height: 35%;
    bottom: -42%;
    border-left: 5px dotted #000;
  }
  .processArea .Txt {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: center;
    margin-top: -20px;
  }
  .processArea .Txt .title {
    text-align: start;
    font-size: 20px;
  }
  .processArea .Txt .textEditor {
    text-align: start;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 640px) {
  .processArea {
    padding: 60px 0 55px;
  }
  .processArea .wrap > .titleBox .title {
    font-size: 24px;
    padding-bottom: 30px;
  }
}
@media (max-width: 414px) {
  .processArea .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .processArea .item .iconBox::after {
    content: "";
    position: absolute;
    display: none;
  }
  .processArea .Txt .title {
    text-align: start;
    font-size: 18px;
  }
  .processArea .Txt .textEditor {
    text-align: start;
    letter-spacing: 0.5px;
  }
}

.faqArea {
  padding: 55px 0 130px;
}
.faqArea:not(.show) .wrap > .titleBox .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.faqArea:not(.show) .wrap > .titleBox .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.faqArea:not(.show) .wrap > .titleBox .title::after {
  width: 0;
}
.faqArea:not(.show) .wrap > .titleBox .title::before {
  width: 0;
}
.faqArea.show .wrap > .titleBox .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottomRotate 0.4s 0.2s ease-in-out forwards;
          animation: showBottomRotate 0.4s 0.2s ease-in-out forwards;
}
.faqArea.show .wrap > .titleBox .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: showBottomRotate 0.4s 0.4s ease-in-out forwards;
          animation: showBottomRotate 0.4s 0.4s ease-in-out forwards;
}
.faqArea.show .wrap > .titleBox .title::after {
  width: 0;
  -webkit-animation: showLine 0.4s 0.5s ease-in-out forwards;
          animation: showLine 0.4s 0.5s ease-in-out forwards;
}
.faqArea.show .wrap > .titleBox .title::before {
  width: 0;
  -webkit-animation: showLine100 0.4s 0.5s ease-in-out forwards;
          animation: showLine100 0.4s 0.5s ease-in-out forwards;
}
.faqArea .wrap {
  max-width: 1390px;
}
.faqArea .wrap > .titleBox {
  margin-bottom: 0px;
}
.faqArea .wrap > .titleBox .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 35px;
  font-weight: 500;
  color: #252525;
  line-height: 1.4;
  letter-spacing: 3px;
  padding-bottom: 27px;
  position: relative;
}
.faqArea .wrap > .titleBox .title::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(37, 37, 37, 0.2);
}
.faqArea .wrap > .titleBox .title::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 105px;
  height: 1px;
  background-color: #f1bc47;
}
.faqArea .wrap > .titleBox .subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #f1bc47;
  letter-spacing: 1.7px;
  line-height: 1.7;
}
@media (max-width: 1440px) {
  .faqArea {
    padding: 40px 0 130px;
  }
}
@media (max-width: 640px) {
  .faqArea .wrap > .titleBox .title {
    font-size: 24px;
    padding-bottom: 30px;
  }
}

.newsArea {
  padding: 50px 0;
}
.newsArea .newsBox {
  position: relative;
  padding: 20px 0;
}
.newsArea .slick-list {
  padding: 30px 0;
}
@media (max-width: 1180px) {
  .newsArea .slick-list {
    padding: 0;
  }
}
.newsArea .slick-slide:not(.slick-active) {
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.newsArea .newsItem {
  position: relative;
  border-bottom: 1px solid #303030;
  padding: 30px 0;
}
.newsArea .newsItem::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #f1bc47;
  position: absolute;
  right: 0;
  bottom: -1px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
@media (min-width: 1181px) {
  .newsArea .newsItem:hover::before {
    width: 100%;
    left: 0;
    right: auto;
  }
  .newsArea .newsItem:hover .Img {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .newsArea .newsItem:hover .title a {
    color: #f1bc47;
  }
  .newsArea .newsItem:hover .plusArrow {
    border-color: #f1bc47;
    background-color: #f1bc47;
  }
  .newsArea .newsItem:hover .plusArrow i {
    color: #fff;
  }
}
@media (max-width: 1180px) {
  .newsArea .newsItem {
    padding: 20px 0;
  }
}
@media (max-width: 480px) {
  .newsArea .newsItem {
    padding: 15px 0;
  }
}
.newsArea .item {
  position: relative;
  cursor: pointer;
}
.newsArea .Img {
  width: 320px;
  display: block;
  position: absolute;
  right: 200px;
  top: -60px;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 9;
}
.newsArea .Img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media (max-width: 960px) {
  .newsArea .Img {
    display: none;
  }
}
.newsArea .Txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media (max-width: 480px) {
  .newsArea .Txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.newsArea .newsInfoBox {
  border-right: 1px solid #ccc;
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.newsArea .newsInfoBox .dateBox {
  text-align: center;
}
.newsArea .newsInfoBox .dateBox .date {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.2;
}
.newsArea .newsInfoBox .dateBox .year {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .newsArea .newsInfoBox {
    padding: 0 30px;
  }
}
@media (max-width: 1180px) {
  .newsArea .newsInfoBox {
    padding: 0 20px;
  }
  .newsArea .newsInfoBox .dateBox .date {
    font-size: 44px;
  }
  .newsArea .newsInfoBox .dateBox .year {
    font-size: 13px;
    letter-spacing: 0.3px;
  }
}
@media (max-width: 640px) {
  .newsArea .newsInfoBox {
    padding: 0 10px;
  }
  .newsArea .newsInfoBox .dateBox .date {
    font-size: 40px;
  }
  .newsArea .newsInfoBox .dateBox .year {
    font-size: 12px;
    letter-spacing: 0px;
  }
}
@media (max-width: 480px) {
  .newsArea .newsInfoBox {
    width: 100%;
    border: none;
    padding: 0 10px 5px;
  }
  .newsArea .newsInfoBox .dateBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .newsArea .newsInfoBox .dateBox .date {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.2;
    font-weight: 500;
  }
  .newsArea .newsInfoBox .dateBox .date::before {
    content: ".";
  }
  .newsArea .newsInfoBox .dateBox .year {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.2;
  }
}
.newsArea .textBox {
  height: 110px;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 50px;
}
@media (max-width: 1440px) {
  .newsArea .textBox {
    padding: 0 60px 0 30px;
  }
}
@media (max-width: 1180px) {
  .newsArea .textBox {
    height: 100px;
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .newsArea .textBox {
    height: 95px;
    padding: 0 0px 0 20px;
  }
}
@media (max-width: 480px) {
  .newsArea .textBox {
    height: 90px;
    padding: 0 10px;
  }
}
.newsArea .textBox .classTitle {
  min-width: 86px;
  height: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f1bc47;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 13px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
  padding: 0 15px;
}
@media (max-width: 1180px) {
  .newsArea .textBox .classTitle {
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) {
  .newsArea .textBox .classTitle {
    margin-bottom: 0px;
  }
}
.newsArea .textBox .title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
  padding-right: 100px;
}
.newsArea .textBox .title.ellipsis {
  height: 45px;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .newsArea .textBox .title {
    padding-right: 0;
  }
}
@media (max-width: 1180px) {
  .newsArea .textBox .title {
    font-size: 22px;
    margin-bottom: 0;
  }
  .newsArea .textBox .title.ellipsis {
    height: 40px;
  }
}
@media (max-width: 768px) {
  .newsArea .textBox .title {
    font-size: 20px;
  }
  .newsArea .textBox .title.ellipsis {
    height: 36px;
  }
}
.newsArea .textBox .text {
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.5;
}
.newsArea .textBox .text.ellipsis {
  height: 22px;
  overflow: hidden;
}
.newsArea .plusArrow {
  position: absolute;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  border: 1px solid #303030;
  right: 50px;
  top: 50%;
  margin-top: -25px;
}
.newsArea .plusArrow i {
  font-size: 12px;
  color: #303030;
}
@media (max-width: 1440px) {
  .newsArea .plusArrow {
    right: 0px;
  }
}
@media (max-width: 1180px) {
  .newsArea .plusArrow {
    display: none;
  }
}
.newsArea .linkWrap {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.catalogArea {
  padding: 50px 0;
}
.catalogArea .unClick {
  pointer-events: none;
}
.catalogArea .catalogBox {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  padding-bottom: 20px;
}
.catalogArea .catalogBox.hide {
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.catalogList {
  margin: 0 -30px;
  position: relative;
}
.catalogList:not(.slick-slider) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.catalogList:not(.slick-slider) .catalogItem {
  width: 33.33%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1180px) {
  .catalogList {
    margin: 0 -20px;
  }
}
@media (max-width: 768px) {
  .catalogList {
    margin: 0 0px;
  }
}
.catalogList .catalogItem {
  padding: 0;
}
.catalogList .item {
  position: relative;
  overflow: hidden;
  padding: 30px;
}
@media (max-width: 1180px) {
  .catalogList .item {
    padding: 20px;
  }
}
.catalogList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.catalogList .Txt {
  position: relative;
  padding: 12px 20px 20px;
  text-align: center;
}
@media (max-width: 1180px) {
  .catalogList .Txt {
    padding: 10px 0 0px;
  }
}
.catalogList .Txt .title {
  padding-bottom: 10px;
  font-size: 24px;
}
.catalogList .Txt .title a {
  display: block;
}
@media (max-width: 1180px) {
  .catalogList .Txt .title {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .catalogList .Txt .title {
    font-size: 20px;
  }
}
.catalogList .Txt .text {
  font-size: 16px;
}
.catalogList .Txt .text.ellipsis {
  height: 75px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .catalogList .Txt .text {
    font-size: 14px;
  }
  .catalogList .Txt .text.ellipsis {
    height: 70px;
  }
}

.linkArea {
  padding: 0px 0;
  text-align: center;
  overflow: hidden;
}
.linkArea .wrap {
  max-width: 100%;
  padding: 0;
}

.linkList .item {
  position: relative;
}
@media (min-width: 1181px) {
  .linkList .item:hover .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.linkList .Img {
  width: 100%;
  overflow: hidden;
}
.linkList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.linkList .Txt {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 20px;
}
.linkList .Txt .title {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 20px;
}
.linkList .Txt .title a {
  color: #fff;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/*# sourceMappingURL=home.css.map */