/* cases-styles */
.statistic-box {
  display: flex;
  -moz-column-gap: 20px;
  column-gap: 20px;
  justify-content: space-between;
  padding: 30px;
  color: #000;
  margin-bottom: 30px;
}

.statistic-box .statistic-box__item {
  flex: 1;
}

.statistic-box .statistic-box__item span {
  font-size: 14px;
  line-height: 1.6;
}

.statistic-box .statistic-box__item > * + * {
  margin-top: 10px;
}

.statistic-box .h-30 {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  line-height: 1.6;
}

.case-card {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dbdbdb;
  hyphens: auto;
}

.case-card:first-child {
  padding-top: 0;
}

.case-card .flex-row {
  -moz-column-gap: 20px;
  column-gap: 20px;
  align-items: stretch;
}

.case-card__img {
  aspect-ratio: 40/22;
  flex-shrink: 0;
  max-width: 400px;
  width: 33%;
}

.case-card__txt {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding-top: 14px;
  max-width: 707px;
}
.case-card__txt .accent-link{margin-top: auto;}
.case-card .statistic-box {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}

.bg-trsp.btn-br-white {
  background-color: transparent;
}

.snippet-text.case-descrip {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}

.snippet-text.case-descrip h4 {
  border-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}

.snippet-text.case-descrip img {
  max-height: 480px;
  -o-object-fit: contain;
  object-fit: contain;
}

.snippet-text.case-descrip:first-child h4 {
  margin-top: 0;
}

.pb-0,
*.pb-0 {
  padding-bottom: 0;
}

@media (max-width: 1024px) {
  .statistic-box .statistic-box__item span {
    font-size: 14px;
  }

  .statistic-box .h-30 {
    font-size: 25px;
    font-weight: 700;
    hyphens: auto;
  }

  .case-card .statistic-box .statistic-box__item .h-30 {
    font-size: 16px;
  }

  .case-card .statistic-box .statistic-box__item span {
    font-size: 14px;
  }

  .case-card .statistic-box .statistic-box__item > * + * {
    margin-top: 2px;
  }
}

@media (max-width: 767px) {
  .statistic-box {
    row-gap: 10px;
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
  }

  .statistic-box .statistic-box__item {
    width: 100%;
  }

  .case-card .flex-row {
    flex-direction: column;
  }

  .case-card__img {
    width: 100%;
  }

  .case-card__txt {
    width: 100%;
    padding-top: 10px;
  }

  .case-card .statistic-box {
    flex-direction: row;
  }
}