#three-callouts {
  width: 100%;
  height: min(25vw, 500px);
  display: flex;
  justify-content: center;
}

.callout {
  position: relative;
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
}

.callout:not(:last-of-type) {
  margin-right: 25px;
}

.callout-box {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow-y: hidden;
}

.callout-icon {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  background-color: #4899d1;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(50px);
  transition: background-color .6s ease;
}

.callout-icon i {
  color: white;
  font-size: 45px;
}

.callout-title {
  position: absolute;
  width: 100%;
  height: 30%;
  background-color: #4899d1;
  transform: translateY(105%);
  transition: transform .6s ease;
}

.callout-title p {
  font-size: 26px;
  text-align: center;
  color: white;
  margin-top: 10px;
}

.callout:hover .callout-icon {
  background-color: #95d9f1;
}

.callout:hover .callout-title {
  transform: translateY(0%);
}
