.services-cards {
  margin: 100px 0;
}

.services-cards .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 100px;
  border-top: 1px solid var(--Silver);
  border-bottom: 1px solid var(--Silver);
  gap: 30px;
}

.services-cards__text-wrapper {
  min-width: 407px;
  max-width: 407px;
}

.services-cards__title {
  color: var(--Dark-blue);
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.services-cards__desc p {
  color: var(--Black)222;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.services-cards__desc p:not(:last-child) {
  margin-bottom: 20px;
}

.services-cards__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}

.services-cards__item {
  width: calc((100% - 30px) / 2);
  padding: 24px;
  border-radius: 20px;
  background-color: var(--Gray);
}

.services-cards__item-arrow {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 24px;
  background-repeat: no-repeat;
}

.services-cards__item-text {
  color: var(--Black)222;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

@media screen and (max-width: 1200px) {
  .services-cards {
    margin: 50px 0;
  }

  .services-cards .container {
    padding-top: 60px;
    padding-bottom: 60px;
    display: block;
  }

  .services-cards__text-wrapper {
    min-width: auto;
    max-width: none;
  }

  .services-cards__title {
    max-width: 600px;
    font-size: 26px;
  }

  .services-cards__desc {
    font-size: 16px;
  }

  .services-cards__list {
    gap: 20px;
  }

  .services-cards__desc {
    margin-bottom: 40px;
  }
}

@media (max-width: 680px) {
  .services-cards__title {
    font-size: 22px;
  }

  .services-cards__item {
    width: 100%;
  }
}