@import url("https://use.typekit.net/rge1xkb.css");
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.three-column__content {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.three-column__preheading {
  flex: 0 0 100%;
  order: 1;
  text-align: center;
}
.three-column__heading {
  flex: 0 0 100%;
  order: 2;
  text-align: center;
}
.three-column__columns {
  flex: 0 0 100%;
  order: 3;
  display: flex;
  flex-flow: row wrap;
  column-gap: 20px;
  row-gap: 40px;
  margin-top: clamp(1rem, 1.338vw + 0.699rem, 2rem);
}
@media screen and (min-width: 1024px) {
  .three-column__columns {
    gap: 64px calc(5.5555555556% + 10px);
  }
}
.three-column__column {
  flex: 0 0 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media screen and (min-width: 768px) {
  .three-column__column {
    flex: 0 0 calc(33.33% - 13.332px);
  }
}
@media screen and (min-width: 1024px) {
  .three-column__column {
    flex: 0 0 calc(33.33% - (5.5555555556% + 10px) * 0.6666);
  }
}
.three-column__column-image {
  order: 1;
  margin-bottom: clamp(1rem, 1.338vw + 0.699rem, 2rem);
  aspect-ratio: 1/1;
}
.three-column__column-image img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
}
.three-column__column-pretitle {
  order: 2;
}
.three-column__column-title {
  order: 3;
}
.three-column__column-text {
  order: 4;
}
.three-column__column-link {
  order: 5;
}
