.flex_cards {
  padding: 120px 0;
}
.flex_cards .flex_title_holder {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}
.flex_cards .items_holder .items_flex_row {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 64px;
}
.flex_cards .items_holder .items_flex_row:last-child {
  margin-bottom: 0;
}
.flex_cards .items_holder .items_flex_row.reverse {
  flex-direction: row-reverse;
}
.flex_cards .items_holder .items_flex_row .card_item {
  overflow: hidden;
  border-radius: 16px;
  border: 3px solid #e7e7ea;
}
.flex_cards .items_holder .items_flex_row .card_item .card_content {
  padding: 32px;
}
.flex_cards .items_holder .items_flex_row .card_item .card_content h3 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}
.flex_cards .items_holder .items_flex_row .card_item .card_content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.flex_cards .items_holder .items_flex_row .card_item .card_content p a {
  color: #614efa;
  text-decoration: underline;
}
.flex_cards .items_holder .items_flex_row .card_item .card_image_holder {
  height: 392px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  overflow: hidden;
}
.flex_cards .items_holder .items_flex_row .card_item .card_image_holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.flex_cards .items_holder .items_flex_row .card_item:last-child {
  flex: 0 0 38%;
}

@media screen and (max-width: 1280px) {
  .flex_cards {
    padding: 100px 0;
  }
  .flex_cards .flex_title_holder {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 56px;
    gap: 40px;
  }
  .flex_cards .items_holder .items_flex_row {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .flex_cards .items_holder .items_flex_row.reverse {
    flex-direction: column;
  }
}
@media screen and (max-width: 1280px) {
  .flex_cards {
    padding: 40px 0;
  }
  .flex_cards .items_holder .items_flex_row .card_item .card_content {
    padding: 20px;
  }
  .flex_cards .items_holder .items_flex_row .card_item .card_content h3 {
    font-size: 22px;
    line-height: 32px;
  }
  .flex_cards .items_holder .items_flex_row .card_item .card_content p {
    font-size: 14px;
    line-height: 20px;
  }
  .flex_cards .items_holder .items_flex_row .card_item .card_image_holder {
    height: 185px;
  }
}