.icons-block h2 {
  margin-bottom: 6rem !important;
}

.icon_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon_wrapper:hover .icon::before {
  background: var(--color-accent);
}

.icon_wrapper h3,
.icon_wrapper p,
.icon::before {
  transition: all 0.3s ease;
}

.icon_wrapper:hover h3,
.icon_wrapper:hover p {
  color: var(--color-accent);
}

.icon_wrapper:hover .icon::before {
  background: var(--color-accent);
}

.icon {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--color-blue-grey);
  border-radius: 50%;
  z-index: 0;
}

.icon img {
  position: relative;
  z-index: 1;
  width: 90px;
  height: auto;
}

@media (max-width: 600px) {
  .icon::before {
    width: 120px;
    height: 120px;
  }
}
