#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-box {
  position: relative;
  width: calc(100% + 2px);
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.callout-icon {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  background-color: #FBFDDF;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(50px);
  transition: all .25s ease;
  bottom: 0;
  color: #82001A;
}
.callout-icon i {
  color: inherit;
  font-size: 45px;
}

.callout-title {
  position: absolute;
  width: 100%;
  height: 30%;
  background-color: #82001A;
  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: #231C1A;
  color: #fff;
}

.callout:hover .callout-title {
  transform: translateY(0%);
}
@media (min-width: 1001px){
  .callout {
    margin-right: 15px;
    margin-left: 15px;
  }
}
