.services-new .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: unset;
}
.services-new__block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.services-new__top {
  display: flex;
  justify-content: space-between;
}
.services-new__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 72%;
  color: #271a16;
}
.services-new__btn-all {
  font-weight: 400;
  font-size: 28px;
  color: #379620;
  display: flex;
  align-items: center;
  gap: 25px;
  cursor: pointer;
}
.services-new__show-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  background: #379620;
  border-radius: 20px;
  padding: 11px 40px;

  font-family: inherit;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #fff;

  cursor: pointer;

  transition:
    background-color 0.3s ease,
    opacity 0.3s ease;
}
.services-new__show-more:hover {
  background: #2f811b;
}

.services-new__show-more[hidden] {
  display: none;
}
.services-new__bottom {
  width: 100%;
  display: flex;
  justify-content: center;
}
.services-new__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.services-new__item {
    cursor: pointer;
  position: relative;
  border: 1px solid #c3c0c0;
  border-radius: 24px;
  overflow: hidden;
  max-height: 270px;
  height: 100%;
  opacity: 1;
  transition:
    opacity 0.45s ease,
    border-color 0.3s ease;
}
.services-new.is-ready .services-new__item:not(.is-visible) {
  opacity: 0;
}
.services-new__item:hover {
  border-color: #379620;
}
.services-new__item:hover svg {
  border-color: #379620;
  background: #fff;
}

.services-new__item:hover svg path {
  fill: #379620;
}
.services-new__item img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.services-new__item svg {
  position: absolute;
  top: 11px;
  right: 9px;

  border: 1px solid transparent;
  border-radius: 26px;

  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}
.services-new__item svg path {
  transition: fill 0.3s ease;
  fill: #c3c0c0;
}
