/* custom helpers & properties */
.section-headline {
  max-width: 730px;
}
.cards-container {
  overflow-y: auto;
}
.card-block {
  overflow-x: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.card-block::-webkit-scrollbar {
  display: none; /* Chrome */
}
.three-cards-wrapper .card {
  border-radius: 6px;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.15);
  min-height: 284px;
  min-width: 350px;
}
.three-cards-wrapper .card-icon-container {
  height: 60px;
  width: 60px;
}
.three-cards-wrapper .card-icon-container img {
  height: 32px;
  max-width: 32px;
}
.card p {
  color: var(--midnight-blue);
}
.card a {
  color: var(--primary-dark);
  font-weight: 500;
  margin: 0;
  position: relative;
}
.card a::after {
  background-image: url(https://f.hubspotusercontent20.net/hubfs/442271/2021%20DOC-FAC%20Merge%20Project/Common%20assets/Icons/UI/CaretRight.svg);
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  height: 15px;
  position: absolute;
  margin: 15px 6px;
  width: 15px;
  transition: all 0.25s ease-in-out 0s;
  top: -11px;
}

@media (max-width: 575px) {
  .three-cards-wrapper .card {
    min-width: 270px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
