.list-wrap {
  padding: 40px 0;
}
.list-wrap .row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  padding: 40px 0;
}
.list-wrap .row:nth-child(even) {
  flex-direction: row;
}
.list-wrap .row h2 {
  font-size: 40px;
  color: var(--main-color);
  margin: unset;
}
.list-wrap .row .cover img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}
.list-wrap .row .rich-text {
  /* text-indent: 36px; */
  font-size: 16px;
  color: #4E4E4E;
  line-height: 1.8;
  margin-top: 20px;
}

.customer-wrap {
  padding: 128px 0;
  background: url(/images/home-bg-5.png) no-repeat center;
  background-size: cover;
}
.customer-wrap .container {
  text-align: center;
}
.customer-wrap .container header {
  text-align: center;
  margin-bottom: 80px;
}
.customer-wrap .container header small {
  font-size: 30px;
  color: #333333;
}
.customer-wrap .container header h2 {
  font-weight: bold;
  font-size: 40px;
  color: #333333;
  margin: 5px 0 30px;
}
.customer-wrap .container header p {
  max-width: 1055px;
  margin: 0 auto;
  font-size: 16px;
  color: #454545;
  line-height: 1.8;
}
.customer-wrap .container .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.customer-wrap .container .list .col {
  width: 25%;
  margin-bottom: 52px;
}
.customer-wrap .container .list .col img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}
.customer-wrap .container .more {
  display: inline-flex;
  align-items: center;
  padding: 3px 5px;
  background: #fff;
  border: 2px solid var(--main-color);
  border-radius: 30px;
  padding-left: 15px;
  line-height: 1;
  color: var(--main-color);
  transition: transform .3s ease;
}
.customer-wrap .container .more:hover {
  transform: scale(1.05);
}
.customer-wrap .container .more:hover .icon {
  transform: rotate(360deg);
}
.customer-wrap .container .more .icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color);
  border-radius: 50%;
  margin-left: 10px;
  transition: transform 1s ease;
}
.customer-wrap .container .more img {
  width: 40%;
  height: 40%;
  object-fit: contain;
}
@media screen and (max-width: 640px) {
  .list-wrap {
    padding: 0 0 40px;
  }
  .list-wrap .row {
    padding-bottom: unset;
  }
  .list-wrap .row h2 {
    font-size: 30px;
    margin-top: 15px;
  }
  .list-wrap .row .rich-text p {
    margin: 10px 0;
  }

  .customer-wrap {
    padding: 40px 0;
  }
  .customer-wrap .container header {
    margin-bottom: 30px;
  }
  .customer-wrap .container header small {
    font-size: 28px;
  }
  .customer-wrap .container header h2 {
    font-size: 32px;
  }
  .customer-wrap .container {
    padding-top: unset;
  }
  .customer-wrap .container .list .col {
    margin-bottom: 30px;
  }
}
