.block-three-column-cards {
  display: flex;
  align-items: center;
  justify-content: center;
}

.three-column-cards__container--desktop {
  display: none;
}
@media only screen and (min-width: 992px) {
  .three-column-cards__container--desktop {
    display: flex;
  }
}

.three-column-cards__container--desktop {
  gap: 20px;
  align-items: flex-start;
}
@media only screen and (min-width: 1400px) {
  .three-column-cards__container--desktop {
    gap: 40px;
  }
}
.three-column-cards__container--desktop > * {
  flex: 1;
}

.three-column-cards__card {
  background: #1B1E1D;
  padding: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background-color 0.4s ease;
  z-index: 1;
  aspect-ratio: 400/620;
  height: auto;
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
}
@media only screen and (min-width: 1200px) {
  .three-column-cards__card {
    padding: 30px;
    aspect-ratio: 400/600;
  }
}
@media only screen and (min-width: 1400px) {
  .three-column-cards__card {
    flex-basis: calc((100% - 120px) / 4);
    aspect-ratio: 400/520;
  }
}
@media only screen and (min-width: 1600px) {
  .three-column-cards__card {
    aspect-ratio: 400/440;
  }
}
@media only screen and (min-width: 1800px) {
  .three-column-cards__card {
    padding: 50px;
  }
}
.three-column-cards__card[data-card="1"] {
  order: 2;
}
.three-column-cards__card[data-card="2"] {
  order: 3;
}
.three-column-cards__card[data-card="3"] {
  order: 4;
}
.three-column-cards__card.active {
  background: white;
  box-shadow: 0 0 24px 0 #92C6C1;
  cursor: default;
  z-index: 2;
}

.three-column-cards__card-icon {
  width: auto;
  height: 110px;
  margin-bottom: 25px;
  transition: height 0.45s ease, margin-bottom 0.45s ease, opacity 0.45s ease;
  overflow: hidden;
  align-self: center;
  flex-shrink: 0;
}
.three-column-cards__card-icon img,
.three-column-cards__card-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.three-column-cards__card.active .three-column-cards__card-icon {
  height: 0;
  margin-bottom: 0;
  opacity: 0;
}

.three-column-cards__card-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  color: white;
  transition: color 0.4s ease;
  line-height: 1.2;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .three-column-cards__card-title {
    font-size: 26px;
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 1400px) {
  .three-column-cards__card-title {
    font-size: 28px;
    margin-bottom: 21px;
  }
}
.three-column-cards__card.active .three-column-cards__card-title {
  color: #1B1E1D;
}

.three-column-cards__card-content {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.three-column-cards__card.active .three-column-cards__card-content {
  opacity: 1;
  pointer-events: auto;
}

.three-column-cards__card-description p {
  font-size: 16px;
  line-height: normal;
  color: #1B1E1D;
  font-weight: 300;
}
@media only screen and (min-width: 1200px) {
  .three-column-cards__card-description p {
    font-size: 20px;
  }
}

.three-column-cards__card-button-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.three-column-cards__card-button {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  background-color: transparent;
}

.three-column-cards__image-wrapper {
  background: #2a2a2a;
  position: relative;
  overflow: hidden;
  order: 1;
  z-index: 3;
  aspect-ratio: 400/710;
  height: auto;
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
}
@media only screen and (min-width: 1200px) {
  .three-column-cards__image-wrapper {
    aspect-ratio: 400/660;
  }
}
@media only screen and (min-width: 1400px) {
  .three-column-cards__image-wrapper {
    aspect-ratio: 400/580;
  }
}
@media only screen and (min-width: 1600px) {
  .three-column-cards__image-wrapper {
    aspect-ratio: 400/510;
  }
}
@media only screen and (min-width: 1400px) {
  .three-column-cards__image-wrapper {
    flex-basis: calc((100% - 120px) / 4);
  }
}
.three-column-cards__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.three-column-cards__image-wrapper img.active {
  opacity: 1;
}

.three-column-cards__container--mobile {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .three-column-cards__container--mobile {
    display: none;
  }
}

.three-column-cards__mobile-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 0;
  overflow: hidden;
}

.three-column-cards__mobile-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.three-column-cards__mobile-bg-image.active {
  opacity: 1;
}

.three-column-cards__mobile-content {
  position: relative;
  z-index: 1;
  background: white;
  padding: 0;
  min-height: 296px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.three-column-cards__mobile-card {
  display: flex;
  flex-direction: column;
  grid-column: 1;
  grid-row: 1;
  padding: 30px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.three-column-cards__mobile-card.active {
  opacity: 1;
  pointer-events: auto;
}

.three-column-cards__mobile-card-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 21px;
  color: #1B1E1D;
  line-height: normal;
  text-align: center;
}

.three-column-cards__mobile-card-description {
  margin-bottom: 30px;
}
.three-column-cards__mobile-card-description p {
  font-size: 16px;
  line-height: 1;
  color: #1B1E1D;
  font-weight: 300;
}

.three-column-cards__mobile-card-button-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.three-column-cards__mobile-card-button {
  display: inline-flex;
  align-items: center;
}

.three-column-cards__mobile-tiles {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 2;
  transform: translateY(-45px);
  width: calc(100% - 48px);
  margin: 0 auto;
  background-size: cover;
  background-position: center;
}

.three-column-cards__mobile-tile {
  flex: 1;
  background: #1B1E1D;
  border: none;
  border-radius: 12px;
  padding: 15px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  transition: all 0.3s ease;
  min-height: 90px;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 4px 12px 0 rgba(0, 0, 0, 0.25);
}
.three-column-cards__mobile-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.three-column-cards__mobile-tile:not(.active)[data-bg-image]::before {
  background-image: var(--bg-image);
  background-color: rgba(0, 0, 0, 0.8);
  background-blend-mode: darken;
}
.three-column-cards__mobile-tile.active::before {
  background: linear-gradient(to right, #883D21, #C05630, #EDA58B);
}
.three-column-cards__mobile-tile > * {
  position: relative;
  z-index: 1;
}
.three-column-cards__mobile-tile.active .three-column-cards__mobile-tile-icon img,
.three-column-cards__mobile-tile.active .three-column-cards__mobile-tile-icon svg {
  filter: brightness(0) invert(1);
}

.three-column-cards__mobile-tile-icon {
  width: auto;
  height: 26px;
  flex-shrink: 0;
}
.three-column-cards__mobile-tile-icon img,
.three-column-cards__mobile-tile-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.three-column-cards__mobile-tile-label {
  color: white;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/*# sourceMappingURL=three-column-cards.css.map */
