@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(get-svg-url('checkmark', $user-variables: (fill: 'tomato')));
* Example: background-image: url(get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink')));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
.services-main {
  background: #f3f3f3;
}
.services-main__items {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
  border-radius: 15px;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .services-main__items {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 40px;
  }
}
.services-main__item {
  position: relative;
  min-height: 330px;
  background-color: #fff;
  padding: 20px 15px;
}
@media (min-width: 576px) {
  .services-main__item {
    display: flex;
    justify-content: space-between;
    min-height: 190px;
    padding: unset;
  }
}
@media (min-width: 768px) {
  .services-main__item {
    min-height: 212px;
  }
}
@media (min-width: 992px) {
  .services-main__item {
    min-height: 250px;
  }
}
@media (min-width: 1200px) {
  .services-main__item {
    min-height: 282px;
  }
}
@media (min-width: 1800px) {
  .services-main__item {
    min-height: 330px;
  }
}
.services-main__item:not(.services-main__item--without-link):hover .services-main__item-title {
  color: #72C38E;
}
.services-main__item-text-block {
  z-index: 1;
  position: relative;
}
@media (min-width: 576px) {
  .services-main__item-text-block {
    align-self: center;
    width: 361px;
    padding: 24px 0 24px 24px;
  }
}
@media (min-width: 768px) {
  .services-main__item-text-block {
    width: 415px;
    padding: 32px 0 32px 32px;
  }
}
@media (min-width: 992px) {
  .services-main__item-text-block {
    width: 552px;
  }
}
@media (min-width: 1200px) {
  .services-main__item-text-block {
    width: 332px;
  }
}
@media (min-width: 1800px) {
  .services-main__item-text-block {
    width: 515px;
    padding: 40px 0 40px 40px;
  }
}
.services-main__item-stickers {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.services-main__item-stickers-item {
  color: #fff;
  font-size: 12px;
  line-height: 130%;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
}
.services-main__item-stickers-item--promo {
  background: linear-gradient(225deg, #54E173 0%, #41C3E0 100%);
}
.services-main__item-title {
  display: block;
  color: #000;
  font-size: 22px;
  line-height: 130%;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.2s linear;
}
@media (min-width: 576px) {
  .services-main__item-title {
    margin-bottom: 12px;
  }
}
@media (min-width: 992px) {
  .services-main__item-title {
    font-size: 32px;
  }
}
.services-main__item-description {
  color: #444;
  font-size: 14px;
  line-height: 160%;
  font-weight: 400;
}
@media (min-width: 992px) {
  .services-main__item-description {
    font-size: 16px;
    line-height: 140%;
  }
}
.services-main__item-button {
  margin-top: 12px;
}
.services-main__item-img-block {
  position: absolute;
  align-self: flex-end;
  width: 160px;
  bottom: 0;
  right: 0;
}
@media (min-width: 576px) {
  .services-main__item-img-block {
    position: unset;
    bottom: unset;
    right: unset;
  }
}
@media (min-width: 768px) {
  .services-main__item-img-block {
    width: 192px;
  }
}
@media (min-width: 992px) {
  .services-main__item-img-block {
    width: 235px;
  }
}
.services-main__item-img-block img {
  width: 100%;
}
.services-main__link {
  position: absolute;
  inset: 0;
  z-index: 3;
}
