@charset "UTF-8";

.services {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 10px;
}
.services__item {
  width: calc(100% / 5 - 10px * 4 / 5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: solid 2px #f2f2f2;
  background: linear-gradient(70deg, #fffcf2, #fff, #fff, #fffcf2);
  border-radius: 8px;
  box-sizing: border-box;
}
.services__icon {
  margin-top: 15px;
  width: 70px;
}
.services__name {
    margin-top: 5px;
    padding-top: 5px;
    padding-bottom: 20px;
    border-top: 1px dashed var(--i_main_color);
    font-size: 1.4rem;
    width: 100%;
    text-align: center;
}
@media screen and (max-width: 600px) {
  .services__item {
    width: calc(100% / 2 - 10px * 1 / 2);
  }
}