.values-block {
  padding: 3em 3em 2em 3em;
}

.values-block h1 {
  text-align: center;
  margin: 0 0 0 0;
}

.value-items {
  display: flex;
  flex-flow: row wrap;
  gap: 2em;
  justify-content: space-around;
  align-items: stretch;
}

.mobile-instructions {
  opacity: 0;
  transition: opacity 1s;

  font-weight: bold;
}

.value-item {
  max-width: 27em;
  position: relative;

  background-color: var(--kpalette-lgreen);
  border-radius: 10px;
  border: 5px solid var(--kpalette-dpink);

  width: 100%;
  padding: 0 2em 0 2em;

  box-shadow: .1em .2em .5em .1em rgba(0, 0, 0, 0.1);

  min-height: 10em;
}

.value-item h3 {
  text-align: center;
}

.value-item p {
  transition: opacity 1s ease-out;
  opacity: 0;
}

.value-item svg {
  transition: opacity 1s ease-out;
  width: 100px;
  opacity: 1;
  position: absolute;
  right: calc(50% - 50px);
  top: calc(50% - 20px);
  z-index: 5;
}

@media screen and (min-width: 800px) {
  .value-item h3 {
    font-size: 1.25em;
  }
  
  .value-item p {
    font-size: 1.2em;

    opacity: 0;
  }
}

@media screen and (min-width: 500px) {

}