/*	THREE COLUMN CARDS LAYOUT
-------------------------------------------- */
.three-column-cards {
  padding-bottom: 60px;
}
.three-column-cards .container {
  max-width: 1295px;
}
.three-column-cards .section-title {
  margin-bottom: 60px;
}
.three-column-cards .section-title .section-title__heading {
  font-size: 48px;
}
@media (max-width: 991.98px) {
  .three-column-cards .section-title .section-title__heading {
    font-size: 40px;
  }
}
.three-column-cards__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575.98px) {
  .three-column-cards__grid {
    flex-direction: column;
    gap: 40px;
  }
}
.three-column-cards__card {
  max-width: 404px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .three-column-cards__card {
    max-width: 350px;
  }
}
@media (max-width: 575.98px) {
  .three-column-cards__card {
    max-width: 404px;
  }
}
.three-column-cards__image {
  border-radius: 24px;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.three-column-cards__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
  pointer-events: none;
}
.three-column-cards__image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 24px;
  -o-object-fit: cover;
  object-fit: cover;
}
.three-column-cards__content {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 16px;
  background: #FFF;
  max-width: 372px;
  margin: 0 auto;
  margin-top: -64px;
  z-index: 2;
}
.three-column-cards__heading {
  margin: 0;
  color: #1e1f1a;
}
.three-column-cards__text {
  margin: 0;
}
.three-column-cards__text p {
  margin: 0 0 1em 0;
}
.three-column-cards__text p:last-child {
  margin-bottom: 0;
}
.three-column-cards__cta {
  display: flex;
  padding: 8px 0;
  align-items: center;
  gap: 4px;
  color: #18B1B5;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}
.three-column-cards__cta:hover {
  color: rgb(21.6, 159.3, 162.9);
}
.three-column-cards__arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}