/* services */
.services {
  padding-top: 30px;
}

.services .title {
  margin-bottom: 20px;
}

.services .info {
  line-height: 1.8;
}

.services .info>*:not(:last-child) {
  margin-bottom: 10px;
}

.services .btn {
  width: 162px;
  color: #fff;
  margin-top: 20px;
  padding: 10px 15px 9px;
  border-radius: 26px;
  background: var(--style-color);
}

@media (min-width: 992px) {
  .services .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .services {
    padding-top: 60px;
  }

  .services .title {
    margin-bottom: 30px;
  }

  .services .info>*:not(:last-child) {
    margin-bottom: 20px;
  }

  .services .btn {
    margin-top: 30px;
  }
}


/* support */
.support {
  padding-top: 30px;
}

.support .item {
  background-color: #e6ebf0;
}

.support .item:not(:last-child) {
  margin-bottom: 30px;
}

.support .lt {
  padding: 30px 15px;
}

.support .title {
  line-height: 1.2;
  text-align: left;
  margin-bottom: 10px;
}

.support .info {
  max-height: 116px;
  line-height: 1.8;
}

.support .btn {
  width: 162px;
  color: #fff;
  margin-top: 20px;
  padding: 10px 15px 9px;
  border-radius: 26px;
  background: var(--style-color);
}

.support .rt img {
  width: 100%;
  height: auto;
  aspect-ratio: 637 / 372;
}

@media (min-width: 992px) {
  .support .item {
    display: flex;
    align-items: center;
  }

  .support .item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .support .lt {
    flex: 0 0 51.42%;
    max-width: 51.42%;
    padding: 0 30px;
  }

  .support .rt {
    flex: 0 0 48.58%;
    max-width: 48.58%;
  }

  .support .rt img {
    min-height: 300px;
  }

  .support .item:nth-child(odd) .rt img {
    -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(#000), to(transparent));
    -webkit-mask-image: -webkit-linear-gradient(right, #000, transparent);
    mask-image: -webkit-gradient(linear, right top, left top, from(#000), to(transparent));
    mask-image: linear-gradient(270deg, #000, transparent);
  }

  .support .item:nth-child(even) .rt img {
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(#000), to(transparent));
    -webkit-mask-image: -webkit-linear-gradient(left, #000, transparent);
    mask-image: -webkit-gradient(linear, left top, right top, from(#000), to(transparent));
    mask-image: linear-gradient(90deg, #000, transparent);
  }
}

@media (min-width: 1200px) {
  .support {
    padding-top: 60px;
  }

  .support .item:not(:last-child) {
    margin-bottom: 40px;
  }

  .support .lt {
    padding-left: 45px;
    padding-right: 45px;
  }

  .support .title {
    margin-bottom: 25px;
  }

  .support .btn {
    margin-top: 25px;
  }
}


/* download */
.download {
  padding-top: 30px;
  padding-bottom: 30px;
}

.download .title {
  margin-bottom: 20px;
}

.download .item {
  padding-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #CFCFCF;
}

.download .item:not(:last-child) {
  margin-bottom: 15px;
}

.download .download-btn {
  margin-left: 20px;
  line-height: 1;
}

.download .download-btn i {
  font-size: 25px;
  line-height: 1;
}

@media (min-width: 1200px) {
  .download {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .download .title {
    margin-bottom: 40px;
  }

  .download .item {
    padding-bottom: 28px;
  }

  .download .item:not(:last-child) {
    margin-bottom: 28px;
  }
}

@media (min-width: 1440px) {
  .download {
    padding-bottom: 80px;
  }

  .download .title {
    margin-bottom: 51px;
  }
}