.c4y-icon-box {
  margin-bottom: var(--base-spacing-unit);
  position: relative;
  min-height: 200px;
  padding: 10px;
}

.c4y-icon-box.center {
  text-align: center;
}

.c4y-icon-box.center i {
  font-size: 50px;
}

.c4y-icon-box.bg {
  background-color: var(--c4y-icon-box-border);
  --color-links: white;
}

.c4y-icon-box.bg p,
.c4y-icon-box.bg a,
.c4y-icon-box.bg h1,
.c4y-icon-box.bg h2,
.c4y-icon-box.bg h3 {
  color: #ffffff;
}

.c4y-icon-box h2 {
  margin-top: 0.5rem; text-align: center;
}

.c4y-icon-box p {
  text-align: center;
}

.c4y-icon-box figure {
  display: inline-block;
}

.c4y-icon-box .image-icon img {
  border-radius: 50%;
  border: 3px solid var(--c4y-icon-box-border);
}

.c4y-icon-box a.hover-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999em;
}

.c4y-icon-box:hover a.hover-link {
  background: var(--color1);
  opacity: 0.5;
}

.c4y-icon-box a:hover {
  font-weight: bold;
}

.c4y-icon-box a.btn:hover {
  font-weight: normal;
}

.c4y-icon-box a.hover-link:after {
  text-indent: 0;
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2em;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: -0.5em auto 0;
  z-index: 10;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1em;
  font-size: 1.8em;
  opacity: 0;
  text-shadow: 0 4px 10px #000;
  transition: 0.15s all ease-in-out 0s;
  transform: translateY(40px);
}

.c4y-icon-box a.hover-link:hover:after {
  opacity: 1;
  transform: translateY(0);
}