@font-face {
  font-family: "Poppins";
  src: url("https://45269993.fs1.hubspotusercontent-na1.net/hubfs/45269993/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("https://45269993.fs1.hubspotusercontent-na1.net/hubfs/45269993/fonts/Poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("https://45269993.fs1.hubspotusercontent-na1.net/hubfs/45269993/fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

.cards-container{
  display: flex;
  padding: 0rem 0rem 0rem 0rem;
  gap: 1.25rem;
}

.main-container{
  display: flex;
  min-height: 12rem;
  flex-direction: column;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  background-color: var(--surface-50, #F1F3F4);
}

.image-container{
  display: flex;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
}

.card-image{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-height: 20rem;
/*   flex: 1 0 0; */
  align-self: stretch;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.content-container{
  display: flex;
  padding: 2rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  align-self: stretch;
}

.content-text-container{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
  color: var(--ink-500, #535974);

  /* H/h5 */
  font-family: "Poppins", sans serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.75rem; /* 155.556% */
}

.content-text-container h2{
  align-self: stretch;
  
  color: var(--ink-500, #535974);
  margin:0;
  padding:0;
  /* H/h2 */
  font-family: "Poppins", sans serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4rem; /* 133.333% */
}


@media (max-width: 1024px) {
  .main-container{
    min-height: auto;
  }
  
  .cards-container {
    flex-direction: column;
    padding: 0rem: 2rem;
    gap: 2rem;
  }
}

