.section1 .wrap {
  padding-top: 150px;
  width: 1400px;
  margin: 0 auto;
}

.section1 .wrap .title {
  position: relative;
  margin-bottom: 130px;
}

.section1 .wrap .title .row {
  width: max-content;
  margin: 0 auto;
}

.section1 .wrap .title .row:nth-child(2) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.section1 .wrap .title .row:nth-child(2) p {
  color: #1a1a1a;
  clip-path: inset(0px 100% 0px 0px);
}

.section1 .wrap .title .row p {
  color: #888888;
  font-size: 32px;
  line-height: 46px;
  font-weight: 700;
  text-align: center;
}

.section1 .wrap .main .item {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
}

.section1 .wrap .main .item:not(:last-child) {
  margin-bottom: 60px;
}

.section1 .wrap .main .item:nth-child(2n) {
  flex-direction: row-reverse;
}

.section1 .wrap .main .item .img {
  width: 50%;
}

.section1 .wrap .main .item .img img {
  height: 100%;
}

.section1 .wrap .main .item .content {
  padding: 100px;
  flex: 1;
  background-color: #F9F9F9;
}

.section1 .wrap .main .item .content .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 40px;
}

.section1 .wrap .main .item .content h4 {
  color: #1a1a1a;
  font-size: 42px;
  margin-bottom: 40px;
}

.section1 .wrap .main .item .content .text p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 2;
}

.section2 .wrap {
  padding-top: 140px;
  padding-bottom: 130px;
}

.section2 .wrap .title {
  text-align: center;
  width: 1400px;
  margin: 0 auto 100px;
}

.section2 .wrap .title h3 {
  color: #1a1a1a;
  font-size: 40px;
}

.section2 .wrap .main {
  position: relative;
}

.section2 .wrap .main .line {
  width: 1920px;
  position: absolute;
  left: 50%;
  top: 30px;
  z-index: -1;
  transform: translateX(-50%);
}

.section2 .wrap .main .list {
  width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
}

.section2 .wrap .main .list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section2 .wrap .main .list .item:nth-child(2) {
  margin-top: 20px;
}

.section2 .wrap .main .list .item:nth-child(3) {
  margin-top: 80px;
}

.section2 .wrap .main .list .item:nth-child(4) {
  margin-top: 90px;
}

.section2 .wrap .main .list .item .num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  background-color: #FFB3AB;
  margin-bottom: 60px;
  position: relative;
}

.section2 .wrap .main .list .item .num::after {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  display: block;
  border-radius: 50%;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFB3AB;
  animation: amplify 1.4s linear infinite;
}

.section2 .wrap .main .list .item .text {
  color: #1a1a1a;
  font-size: 18px;
  line-height: 32px;
}

@keyframes amplify {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

@media screen and (max-width: 1919px) {
  .section1 .wrap {
    padding-top: 7.8125vw;
    width: 72.9166666667vw;
  }

  .section1 .wrap .title {
    margin-bottom: 6.7708333333vw;
  }

  .section1 .wrap .title .row p {
    font-size: 1.6666666667vw;
    line-height: 2.3958333333vw;
  }

  .section1 .wrap .main .item {
    border-radius: 0.625vw;
  }

  .section1 .wrap .main .item:not(:last-child) {
    margin-bottom: 3.125vw;
  }

  .section1 .wrap .main .item .content {
    padding: 5.2083333333vw;
  }

  .section1 .wrap .main .item .content .icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
    margin-bottom: 2.0833333333vw;
  }

  .section1 .wrap .main .item .content h4 {
    font-size: 2.1875vw;
    margin-bottom: 2.0833333333vw;
  }

  .section1 .wrap .main .item .content .text p {
    font-size: 0.8333333333vw;
  }

  .section2 .wrap {
    padding-top: 7.2916666667vw;
    padding-bottom: 6.7708333333vw;
  }

  .section2 .wrap .title {
    width: 72.9166666667vw;
    margin: 0px auto 5.2083333333vw;
  }

  .section2 .wrap .title h3 {
    font-size: 2.0833333333vw;
  }

  .section2 .wrap .main .line {
    width: 100vw;
    top: 1.5625vw;
  }

  .section2 .wrap .main .list {
    width: 72.9166666667vw;
    padding: 0px 2.0833333333vw;
  }

  .section2 .wrap .main .list .item:nth-child(2) {
    margin-top: 1.0416666667vw;
  }

  .section2 .wrap .main .list .item:nth-child(3) {
    margin-top: 4.1666666667vw;
  }

  .section2 .wrap .main .list .item:nth-child(4) {
    margin-top: 4.6875vw;
  }

  .section2 .wrap .main .list .item .num {
    width: 3.125vw;
    height: 3.125vw;
    font-size: 1.25vw;
    margin-bottom: 3.125vw;
  }

  .section2 .wrap .main .list .item .text {
    font-size: 0.9375vw;
    line-height: 1.6666666667vw;
  }
}
@media screen and (max-width: 1024px) {
  .section1 .wrap{
    width: 90vw;
    padding-top: 60px;
  }
  .section1 .wrap .title{
    margin-bottom: 30px;
  }
  .section1 .wrap .main .item .content h4{
    font-size: 24px;
  }
  .section1 .wrap .main .item .content .text p{
    font-size: 14px;
  }
  .section1 .wrap .main .item .content{
    padding: 30px;
  }
  .section1 .wrap .title .row p{
    font-size: 20px;
    line-height: 1.6;
  }
  .section1 .wrap .main .item:not(:last-child){
    margin-bottom: 30px;
  }
  .section1 .wrap .main .item:nth-child(2n),
  .section1 .wrap .main .item{
    border-radius: 10px;
    flex-direction: column-reverse;
  }
  .section1 .wrap .main .item .img img,
  .section1 .wrap .main .item .img{
    width: 100%;
  }
   .section1 .wrap .main .item .img img{
    object-position: center center;
   }
  .section1 .wrap .main .item .img{
    max-height: 400px;
  }
  .section1 .wrap .main .item .content .icon{
    width: 24px;
    height: 24px;
    margin-bottom: 20px;
  }
  .section2 .wrap .title h3{
    font-size: 28px;
  }
  .section2 .wrap {
    padding: 60px 0;
  }
  .section2 .wrap .main .line{
    display: none;
  }
  .section2 .wrap .main .list .item{
    margin-top: 0 !important;
  }
  .section2 .wrap .main .list{
    width: 90vw;
    padding: 0 ;
  }
  .section2 .wrap .main .list .item .text{
    font-size: 14px;
    line-height: 2;
  }
  .section2 .wrap .main .list .item .num{
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .section2 .wrap .title{
    width: 90vw;
    margin-bottom: 40px;
  }
  
}
@media screen and (max-width: 767px) {
  .section1 .wrap .title .row:nth-child(2){
    display: none;
  }
  .section1 .wrap .title .row{
    width: 100%;
    text-align: center;
  }
  .section1 .wrap .title .row p{
    color: #1a1a1a;
    display: inline;
    clip-path: none !important;
  }
}
@media screen and (max-width: 541px) {
  .section2 .wrap .main .list{
    flex-wrap: wrap;
    gap: 40px 0;
  }
  .section2 .wrap .main .list .item{
    width: 50%;
  }
}