/** Shopify CDN: Minification failed

Line 40:2 Unexpected ","

**/
.info-boxes__title {
    font-size: 50px;
    line-height: 100%;
    font-family: Playfair, sans-serif;
    color: var(--color-text);
    text-align: center;
    font-weight: 300;
}

.info-boxes__card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    justify-content: center;
}

.info-boxes__card {
    display: grid;
    background-color: #F4F2FA;
    border-radius: 20px;
    padding: 50px 60px 12px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 382px;
    max-width: 555px;
}

  .info-boxes__card-grid > .info-boxes__card:nth-child(4n+1),
  .info-boxes__card-grid > .info-boxes__card:nth-child(4n+3)
   {
    justify-self: end;
  }

  ,
  .info-boxes__card-grid > .info-boxes__card:nth-child(4n+4),
  .info-boxes__card-grid > .info-boxes__card:nth-child(4n+2) {
    justify-self: start;
  }

a.info-boxes__button {
    font-size: 18px;
    font-family: Figtree, sans-serif;
    padding: 15px 30px;
    background-color: #B7C4FF;
    border-radius: 100px;
    color: #1A1B21;
}

img.info-boxes__image {
    width: 129px;
    height: 129px;
}

h3.info-boxes__card-title {
  font-size: 26px;
  font-weight: medium;
  color: #1A1B21;
  font-family: Figtree, sans-serif;
  line-height: 130%;
  margin-bottom: 18px;
}

p.info-boxes__card-text {
  font-size: 18px;
  font-family: Figtree, sans-serif;
  color: #1A1B21;
  margin-bottom: 24px;
}

.info-boxes__button-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-boxes__show-more-button {
    color: #324074;
    margin-top: 26px;
    cursor: pointer;
    text-decoration: underline;
    font-size: 16px;
    font-weight: Medium;
    font-family: Figtree, sans-serif;
    line-height: 140%;
    display: none;
    text-align: center;
}

.dark-theme .info-boxes__show-more-button {
    color: #B7C4FF;
}

@media screen and (max-width: 1024px) {
    .info-boxes__card {
        padding: 32px 32px 16px 32px;
        min-height: unset;
    }

    img.info-boxes__image {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 768px) {
    .info-boxes__show-more-button {
        display: block;
    }
    .info-boxes__card-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
        justify-self: center;
    }

    .info-boxes__card-grid .info-boxes__card {
        display: none;
    }

    .info-boxes__card-grid .info-boxes__card:nth-child(-n+3) {
        display: block;
    }

    .info-boxes.--show-all-boxes .info-boxes__card {
        display: block;
    }

    .info-boxes.--show-all-boxes .info-boxes__show-more-button {
        display: none;
    }
}