.mvv-block {
  padding: 110px 100px;
  background: var(--white);
}

.mvv-block__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mvv-block__card--top:only-child {
  grid-column: 1 / -1;
}

.mvv-block__card {
  background: #F5F7F382;
  border: 1px solid #dce0dd;
  border-radius: 20px;
  padding: 26px 30px;
}

.mvv-block__card--values {
  margin-top: 24px;
}

.mvv-block__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  position: relative;
}

.mvv-block__value-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  position: relative;
}

.mvv-block__icon img {
    width: 32px;
    height: 32px;
}

.mvv-block__value-icon img {
    width: 32px;
    height: 32px;
}

.mvv-block__eyebrow {
  display: block;
  margin-top: 16px;
  color: var(--color-link);
  font: var(--text-lg);
  font-weight: 500;
  line-height: 1.3;
}

.mvv-block__title {
  margin: 4px 0 16px;
  color: var(--text-color);
  font: var(--text-2xl);
  font-weight: 500;
  line-height: 1.2;
}

.mvv-block__copy {
  margin: 0;
  color: var(--light-grey);
  font: var(--text-lg);
  font-weight: 300;
  line-height: 1.7;
}

.mvv-block__copy + .mvv-block__copy {
  margin-top: 14px;
}

.mvv-block__values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.mvv-block__value-item:only-child,
.mvv-block__value-item:last-child:nth-child(odd):not(:only-child) {
  grid-column: 1 / -1;
}

.mvv-block__value-item {
  background: var(--white);
  border: 1px solid #dce0dd;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}


.mvv-block__value-icon::before {
  width: 10px;
  height: 1.5px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.mvv-block__value-icon::after {
  width: 1.5px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.mvv-block__value-content h4 {
  margin: 0;
  color: var(--text-color);
  font: var(--text-lg);
  font-weight: 700;
  line-height: 1.3;
}

.mvv-block__value-content p {
  margin: 8px 0 0;
  color: var(--light-grey);
  font: var(--text-lg);
  font-weight: 300;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .mvv-block {
    padding: 40px 16px;
  }

  .mvv-block .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .mvv-block__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mvv-block__card {
    border-radius: 14px;
    padding: 16px 14px;
  }

  .mvv-block__card--values {
    margin-top: 12px;
  }

  .mvv-block__icon {
    width: 48px;
    height: 48px;
  }
	
	.mvv-block__icon svg {
    width: 10px;
    height: 10px;
  }
  .mvv-block__value-icon {
/*     width: 26px;
    height: 26px; */
    flex-basis: 26px;
  }
  .mvv-block__value-icon svg {
    width: 10px;
    height: 10px;
  }
	.mvv-block__icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

  .mvv-block__icon::after {
    width: 4px;
    height: 4px;
  }

  .mvv-block__eyebrow {
    margin-top: 10px;
    font: var(--text-lg);
    font-weight: 500;
  }

  .mvv-block__title {
    margin: 4px 0 8px;
    font: var(--text-2xl);
    font-weight: 500;
    line-height: 1.2;
  }

  .mvv-block__copy {
    font: var(--text-lg);
    font-weight: 300;
    line-height: 1.6;
  }

  .mvv-block__copy + .mvv-block__copy {
    margin-top: 9px;
  }

  .mvv-block__values-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .mvv-block__value-item {
    border-radius: 10px;
    padding: 12px;
    gap: 10px;
  }

  .mvv-block__value-icon {
/*     width: 18px;
    height: 18px; */
    flex-basis: 18px;
    border-radius: 6px;
  }

  .mvv-block__value-icon::before {
    width: 8px;
  }

  .mvv-block__value-icon::after {
    height: 8px;
  }

  .mvv-block__value-content h4 {
    font: var(--text-lg);
    font-weight: 700;
    line-height: 1.2;
  }

  .mvv-block__value-content p {
    margin-top: 4px;
    font: var(--text-md);
    font-weight: 300;
    line-height: 1.45;
  }
}