.trade-wrap {
  padding: 80px 0;
}
.trade-wrap h2 {
  font-size: 32px;
  color: #333;
  margin: 0 0 15px;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}
.trade-wrap h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: var(--main-color);
}
.trade-wrap img  {
  border-radius: 10px;
  width: 100%;
}
.trade-wrap .row {
  margin-top: 50px;
}
.trade-wrap .rich-text {
  color: #333;
  padding-top: 1.0417vw;
}
.trade-wrap .rich-text p {
  font-size: 1.0417vw;
  font-weight: 300;
  color: #333;
  line-height: 2;
  text-indent: 40px;
}
.trade-wrap .rich-text p + p {
  margin-top: 1.5625vw;
}


.network-wrap {
  padding: 80px 0;
  background: #fafafa;
}
.network-wrap h2 {
  font-size: 32px;
  color: #333;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}
.network-wrap h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: var(--main-color);
}
.network-wrap .rw {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.network-wrap .desc {
  max-width: 412px;
}
.network-wrap .desc h3 {
  font-size: 24px;
  color: #333;
  margin: unset;
}
.network-wrap .desc p {
  font-size: 20px;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin: 20px 0 0;
}
.network-wrap .map {
  width: 48.6979vw;
  height: 38.0208vw;
}



.client-wrap {
  padding: 80px 0;
  background: #F7F7F7;
}
.client-wrap h2 {
  font-size: 32px;
  color: #333;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}
.client-wrap h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: var(--main-color);
}

.client-wrap .row {
  margin: 40px -15px 0;
}
.client-wrap .col {
  padding: 10px 15px;
}
.client-wrap .col .wrap {
  background: #fff;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
}
.client-wrap .col .wrap img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: all .3s ease;
  transform: scale(0.9);
}
.client-wrap .col .wrap:hover img {
  transform: scale(1);
}



@media screen and (max-width: 640px) {
  .trade-wrap,
  .client-wrap {
    padding: 50px 0 30px;
  }
  .trade-wrap h2,
  .network-wrap h2,
  .client-wrap h2 {
    margin-bottom: unset;
    font-size: 28px;
  }
  .trade-wrap .row {
    margin: 20px -15px 0;
  }
  .trade-wrap .rich-text p {
    font-size: 14px;
  }
  .network-wrap {
    padding: 50px 0 30px;
  }
  .network-wrap .rw {
    display: block;
  }
  .network-wrap .map {
    width: 100%;
    height: 280px;
  }
  .network-wrap .desc h3 {
    font-size: 18px;
    margin: 30px 0 10px;
  }
  .network-wrap .desc p {
    font-size: 14px;
    margin: unset;
  }
  .client-wrap .row {
    margin-top: 20px;
  }
}

