/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.values {
  padding: 0 0 60px;
}
.values__title {
  margin: 0 0 40px 0;
  width: 100%;
  text-align: center;
  font-weight: 600;
}
.values__content {
  width: 100%;
  text-align: center;
  margin: 0 0 40px 0;
}
.values__content p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
}
.values__boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.values__boxes__item {
  position: relative;
  padding: 40px 30px;
  background-color: hsl(0, 0%, 100%);
  border: 1px solid #cecece;
}
.values__boxes__item.-first {
  width: 100%;
}
.values__boxes__item.-first .values__boxes__image {
  top: unset;
  bottom: 40px;
}
.values__boxes__group {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.values__boxes__group.-row {
  flex-direction: column;
}
.values__boxes__title {
  color: #f58220;
  font-weight: 500;
  margin: 0 0 20px 0;
}
.values__boxes__image {
  display: none;
}
@media screen and (min-width: 768px) {
  .values {
    padding: 100px 0 150px;
  }
  .values__content {
    width: 60%;
    margin: 0 auto 40px auto;
  }
  .values__boxes {
    gap: 30px;
  }
  .values__boxes__item {
    padding: 80px 100px 80px 50px;
  }
  .values__boxes__item.-first {
    padding: 80px 50px;
    width: 33%;
  }
  .values__boxes__item.-first.w-50 {
    width: 50%;
  }
  .values__boxes__group {
    width: 66%;
    gap: 30px;
  }
  .values__boxes__group.-row {
    flex-direction: row;
    width: 100%;
  }
  .values__boxes__group.w-50 {
    width: 50%;
  }
  .values__boxes__image {
    display: flex;
    position: absolute;
    width: 80px;
    height: 80px;
    top: 40px;
    right: 40px;
  }
}