.services {
  padding: 30px 0;
}

.services .title {
  margin-bottom: 15px;
}

.services .sub-info {
  line-height: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.services .item:not(:last-child) {
  margin-bottom: 30px;
}

.services .pic {
  max-width: 212px;
  margin-bottom: 20px;
}

.services .pic img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 212 / 212;
}

.services .info-group {
  width: 100%;
  padding: 20px;
  border: 2px solid var(--style-color);
  border-radius: 15px;
}

.services .icon {
  width: auto;
  height: 42px;
}

.services .tit {
  margin-top: 12px;
  margin-bottom: 8px;
  color: var(--style-color);
}

.services .info {
  line-height: 30px;
}

@media (min-width: 768px) {
  .services .item {
    display: flex;
    align-items: center;
  }

  .services .item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .services .pic {
    width: 212px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .services .item:nth-child(odd) .pic {
    margin-right: 30px;
  }

  .services .item:nth-child(even) .pic {
    margin-left: 30px;
  }

  .services .info-group {
    position: relative;
  }

  .services .info-group::after {
    content: '';
    position: absolute;
    top: 50%;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    display: none;
  }

  .services .item:nth-child(odd) .info-group::after {
    left: 0;
    transform: translate(-100%, -50%);
    border-right: 30px solid var(--style-color);
  }

  .services .item:nth-child(even) .info-group::after {
    right: 0;
    transform: translate(100%, -50%);
    border-left: 30px solid var(--style-color);
  }
}

@media (min-width: 992px) {
  .services .item:nth-child(odd) {
    padding-left: 100px;
  }

  .services .item:nth-child(even) {
    padding-right: 100px;
  }
}

@media (min-width: 1200px) {
  .services {
    padding: 60px 0;
  }

  .services .title {
    margin-bottom: 24px;
  }

  .services .sub-info {
    margin-bottom: 50px;
  }

  .services .item:not(:last-child) {
    margin-bottom: 50px;
  }

  .services .item:nth-child(odd) {
    padding-left: 150px;
  }

  .services .item:nth-child(even) {
    padding-right: 150px;
  }

  .services .item:nth-child(odd) .pic {
    margin-right: 72px;
  }

  .services .item:nth-child(even) .pic {
    margin-left: 72px;
  }

  .services .info-group {
    padding: 30px 50px;
  }
}

@media (min-width: 1440px) {
  .services {
    padding-top: 80px;
    padding-bottom: 93px;
  }

  .services .item:nth-child(odd) {
    padding-left: 216px;
  }

  .services .item:nth-child(even) {
    padding-right: 216px;
  }
}