/* partnership */
.partnership {
  padding-top: 30px;
}

.partnership .title {
  margin-bottom: 10px;
}

.partnership .sub-info {
  line-height: 1.8;
  margin-bottom: 20px;
}

.partnership .info h3 {
  margin: 10px 0 5px;
  color: var(--style-color);
}

@media(min-width: 992px) {
  .partnership .row {
    align-items: center;
  }

  .partnership .info>*:first-child {
    margin-top: 0;
  }
}

@media(min-width: 1200px) {
  .partnership {
    padding-top: 60px;
  }

  .partnership .title {
    margin-bottom: 26px;
  }

  .partnership .sub-info {
    margin-bottom: 40px;
  }

  .partnership .info h3 {
    margin: 20px 0 10px;
  }
}


/* support */
.support {
  padding-top: 30px;
}

.support .title {
  margin-bottom: 10px;
}

.support .sub-info {
  line-height: 1.8;
  margin-bottom: 20px;
}

.support .swiper-slide {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.support .swiper-slide:hover {
  color: #fff;
}

.support .swiper-slide img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
}

.support .info-group {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  background: #eee;
  transition: background .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.support .swiper-slide:hover .info-group {
  background: transparent;
}

.support .icon {
  height: 60px;
  text-align: center;
  overflow: hidden;
}

.support .icon img {
  width: auto;
  height: 100%;
}

.support .swiper-slide:hover .icon img {
  position: relative;
  top: -60px;
  filter: drop-shadow(0 60px 0 #fff);
}

.support .tit {
  margin: 10px 0 5px;
  text-align: center;
}

.support .info {
  line-height: 1.8;
  height: 116px;
}

.support .btn-wrap {
  margin-top: 30px;
}

.support .btn {
  color: #fff;
  background: var(--style-color);
}

@media(min-width:768px) {
  .support .icon {
    height: 80px;
  }

  .support .swiper-slide:hover .icon img {
    position: relative;
    top: -80px;
    filter: drop-shadow(0 80px 0 #fff);
  }

  .support.has-btn .btn-wrap {
    display: block;
  }
}

@media(min-width:1200px) {
  .support {
    padding-top: 60px;
  }

  .support .title {
    margin-bottom: 26px;
  }

  .support .sub-info {
    margin-bottom: 40px;
  }

  .support .info-group {
    padding: 30px 20px;
  }

  .support .tit {
    margin: 15px 0 10px;
  }

  .support .btn-wrap {
    margin-top: 50px;
  }
}

@media(min-width: 1440px) {
  .support {
    padding-top: 80px;
  }

  .support .info-group {
    padding: 45px 30px;
  }

  .support .icon {
    height: 85px;
  }

  .support .swiper-slide:hover .icon img {
    position: relative;
    top: -85px;
    filter: drop-shadow(0 85px 0 #fff);
  }
}

/* process */
.process {
  padding-top: 30px;
}

.process .title,
.process .list-tag {
  margin-bottom: 20px;
}

.process .tab-list li {
  padding: 6px 15px;
  color: var(--style-color);
  border: 1px solid var(--style-color);
  margin-bottom: 10px;
  cursor: pointer;
}

.process .tab-list li.active {
  color: #fff;
  background: var(--style-color);
}

.process .swiper-slide {
  text-align: center;
}

.process .back {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 0 auto;
}

.process .icon {
  width: 100%;
  height: 100%;
  padding: 15px;
  border-radius: 50%;
  border: 1px solid var(--style-color);
}

.process .icon img {
  height: 100%;
}

.process .back .arrow {
  display: none;
}

.process .arrow i {
  font-size: inherit;
}

.process .tit {
  margin-top: 10px;
}

@media(min-width:768px) {
  .process .list-tag>ul>li {
    margin-bottom: 0;
    margin-right: 50px;
  }

  .process .tab-list li {
    margin: 0 25px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media(min-width: 1200px) {
  .process {
    padding-top: 60px;
  }

  .process .title {
    margin-bottom: 30px;
  }

  .process .list-tag {
    margin-bottom: 50px;
  }

  .process .back {
    width: 100px;
    height: 100px;
  }

  .process .back .arrow {
    position: absolute;
    top: 50%;
    right: -75%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--style-color);
    display: block;
  }

  .process .swiper-slide:last-child .arrow {
    display: none;
  }

  .process .tit {
    margin-top: 20px;
  }
}

@media(min-width: 1440px) {
  .process {
    padding-top: 80px;
  }
}


/*requirement*/
.requirement {
  padding-top: 30px;
}

.requirement .title {
  margin-bottom: 20px;
}

.requirement .sub-info {
  line-height: 1.8;
  margin-bottom: 20px;
}

.requirement .row>div:first-child {
  margin-bottom: 30px;
}

.requirement .info {
  line-height: 1.8;
  max-height: 173px;
}

.requirement .info>*:not(:last-child) {
  margin-bottom: 10px;
}

.requirement .btn {
  color: #fff;
  margin-top: 20px;
  background-color: var(--style-color);
}

@media(min-width: 992px) {
  .requirement .row {
    align-items: center;
  }

  .requirement .row>div:first-child {
    margin-bottom: 0;
  }
}

@media(min-width: 1200px) {
  .requirement {
    padding-top: 60px;
  }

  .requirement .title {
    margin-bottom: 32px;
  }

  .requirement .sub-info {
    margin-bottom: 40px;
  }

  .requirement .info {
    max-height: 231px;
  }
}

@media(min-width: 1440px) {
  .requirement {
    padding-top: 80px;
  }

  .requirement .info {
    max-height: 317px;
  }
}

@media(max-width: 767px) {
  .requirement .btn {
    font-size: 16px;
  }
}

/*training*/
.training {
  padding: 30px 0;
}

.training .title {
  margin-bottom: 15px;
}

.training .sub-info {
  line-height: 1.8;
  margin-bottom: 20px;
}

.training .row>div:first-child {
  margin-bottom: 30px;
}

.training .training-box:not(:last-child) {
  margin-bottom: 30px;
}

.training h3 {
  margin-bottom: 10px;
  color: var(--style-color);
}

.training ul {
  color: var(--style-color);
  padding-left: 16px;
  margin-top: 20px;
}

.training ul>li:not(:last-child) {
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .training .row {
    align-items: center;
  }

  .training .row>div:first-child {
    margin-bottom: 0;
  }

  .training .info-desc {
    max-height: 144px;
  }
}

@media (min-width: 1200px) {
  .training {
    padding: 60px 0;
  }

  .training .title {
    margin-bottom: 30px;
  }

  .training .sub-info {
    margin-bottom: 40px;
  }

  .training .row>div:last-child {
    padding-left: 30px;
  }

  .training .training-box:not(:last-child) {
    margin-bottom: 40px;
  }

  .training .tit {
    margin-bottom: 20px;
  }

  .training .info-desc {
    max-height: 180px;
  }
}

@media (min-width: 1440px) {
  .training {
    padding: 80px 0;
  }

  .training .row>div:last-child {
    padding-left: 60px;
  }

  .training .info-desc {
    max-height: 252px;
  }
}


/*form*/
.become {
  padding: 30px 0;
  background: #e5eaed;
}

.become .title {
  margin-bottom: 10px;
}

.become .form-group {
  margin-bottom: 20px;
}

.become .form-control {
  border-color: #ced4da;
}

.become .btn-wrap {
  margin-top: 20px;
}

.become .btn {
  width: 130px;
  color: #fff;
  background: var(--style-color);
}

@media(min-width: 1200px) {
  .become {
    padding: 60px 0;
  }

  .become .title {
    margin-bottom: 26px;
  }

  .become textarea.form-control {
    height: 180px;
  }

  .become .btn-wrap {
    margin-top: 30px;
  }
}

@media(min-width: 1440px) {
  .become {
    padding: 80px 0;
  }

  .become .btn-wrap {
    margin-top: 50px;
  }
}