.home-banner {
  display: flex;
  margin: 5px -10px 15px
}
.home-banner>div {
  display: flex
}
.home-banner__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 100%;
  margin: 0 0 20px;
}
.home-banner__item.link {
  cursor: pointer
}
.home-banner__icon {
  min-width: 1.25em;
  font-size: 3em;
  color: var(--home-banner-icon-c)
}
.home-banner__image {
  width: auto;
  height: auto;
  max-width: 120px;
  max-height: 120px;
}
.home-banner__text {
  position: relative;
  height: 100%;
  padding: 0;
  background: var(--home-banner-bg);
  border-radius: 20px;
  pointer-events: none;
}
.home-banner__text .inner {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  color: var(--home-banner-text-c);
  word-wrap: break-word;
  padding: 17px;
}
.home-banner__text:after {
  position: absolute;
  top: 0;
  bottom: 20px;
  left: 10px;
  right: 10px;
  content: '';
  background: rgba(255 255 255 / .03);
  transform: scale(0);
  transition: all linear .15s
}
.home-banner__item:hover .home-banner__text:after {
  transform: scale(1)
}
.home-banner__text-1 {
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 700
}
.home-banner__text-1.link {
  text-decoration: underline dotted
}
@media (min-width:575px) and (max-width:757px) {
  .home-banner>div {
    width: 50%
  }
}