.info_cards {
  padding-top: var(--padding-top-desktop, 160px);
  padding-bottom: var(--padding-bottom-desktop, 160px);
  background-color: #1A4352;
}
@media only screen and (max-width: 834px) {
  .info_cards {
    padding-top: var(--padding-top-mobile, 100px);
    padding-bottom: var(--padding-bottom-mobile, 100px);
  }
}
.info_cards__container:has(.two-col) {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}
@media only screen and (max-width: 1024px) {
  .info_cards__container:has(.two-col) {
    flex-direction: column;
  }
}
.info_cards__container:has(.two-col) .info_cards__head {
  max-width: 44.2rem;
  width: 40%;
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .info_cards__container:has(.two-col) .info_cards__head {
    width: 100%;
    max-width: 70rem;
  }
}
.info_cards__head {
  max-width: 83rem;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .info_cards__head {
    max-width: none;
  }
}
@media only screen and (max-width: 834px) {
  .info_cards__head {
    margin-bottom: 6rem;
  }
}
.info_cards__title {
  margin-bottom: 2rem;
}
.info_cards__title:last-child {
  margin-bottom: 0;
}
.info_cards__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 1024px) {
  .info_cards__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 465px) {
  .info_cards__list {
    grid-template-columns: 1fr;
  }
}
.info_cards__list.two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 74rem;
  width: 58%;
}
@media only screen and (max-width: 1024px) {
  .info_cards__list.two-col {
    width: 100%;
    max-width: none;
  }
}
@media only screen and (max-width: 640px) {
  .info_cards__list.two-col {
    grid-template-columns: 1fr;
  }
}
.info_cards__list.two-col .info_cards__item_head {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 640px) {
  .info_cards__list.two-col .info_cards__item_head {
    margin-bottom: 3.2rem;
  }
}
.info_cards__list.two-col .info_cards__item_title {
  max-width: 23.5rem;
}
.info_cards__list.white .info_cards__item {
  background-color: #FDFDFD;
}
.info_cards__list.white .info_cards__item_title,
.info_cards__list.white .info_cards__item_text {
  color: #1A4352;
}
.info_cards__item {
  padding: 3.8rem 3.1rem 3.8rem 3.3rem;
  display: flex;
  flex-direction: column;
  border: 2px solid #FDFDFD;
  border-radius: 2rem;
  transition: all ease-in-out 0.35s;
}
@media only screen and (max-width: 1024px) {
  .info_cards__item {
    min-height: 32rem;
  }
}
@media only screen and (max-width: 834px) {
  .info_cards__item {
    padding: 2.8rem 2rem;
    min-height: 28rem;
  }
}
@media only screen and (max-width: 576px) {
  .info_cards__item {
    padding: 2.8rem 1.3rem;
    min-height: 26.3rem;
  }
}
.info_cards__item_title {
  max-width: 27rem;
}
@media only screen and (max-width: 576px) {
  .info_cards__item_title {
    max-width: none;
  }
}
.info_cards__item_head {
  margin-bottom: 6rem;
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
@media only screen and (max-width: 834px) {
  .info_cards__item_head {
    margin-bottom: 4rem;
  }
}
.info_cards__item_counter {
  margin-bottom: 2rem;
  color: #76EAAF;
}