/** Shopify CDN: Minification failed

Line 46:4 Unexpected "{"
Line 46:5 Expected identifier but found "%"
Line 49:4 Unexpected "{"
Line 49:5 Expected identifier but found "%"
Line 56:4 Unexpected "{"
Line 56:5 Expected identifier but found "%"
Line 58:4 Unexpected "{"
Line 58:5 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.inner-container-center {
    justify-content: center;
    display: flex;
  }

  .img-content-card-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(var(--columns), 1fr);
    max-width: var(--container-max-width);
    padding: .5em 0;
  }

  .img-content-card-grid > .img-content-card-link,
  .img-content-card-grid > .img-content-card {
    max-height: max-content;
  }


  .img-content-card {
    display: grid;
    grid-template-rows: auto 1fr;
    background-color: var(--card-bg);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, .05);
  }

  .img-content-card__image img {
    width: 100%;
    {% if section.settings.equal_image_height %}
    aspect-ratio: 16/9;
    object-fit: cover;
    {% endif %}
  }

  .img-content-card__content {
    display: grid;
    text-align: center;
    grid-auto-rows: max-content;
    {% if section.settings.equal_card_height %}
    height: 100%;
    {% endif %}
    /* padding: 1.5rem 2rem 2rem; */
    padding: 1.5rem 2rem 1rem;
  }


  .img-content-card__content .heading-prim {
    color: #243F54;
    font-family: 'Damion';
    font-size: 2.5em;
    line-height: 1.15;
    margin: 0 .25em .3em;
  }
  .img-content-card__content .heading-sec {
    color: #F6A305;
    font-family: "Bio Rhyme", serif;
    font-weight: 400;
    font-size: 1.2em;
    margin-bottom: 0.3em;
  }
  .img-content-card__content .textcontent {
    margin-top: .3em;
    margin-bottom: 1rem;
  }



.contact-card {
  /* background-color: var(--card-bg); */
  /* border: 2px dashed #ccc; */
  padding: 2rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* justify-content: space-between; */
  justify-content: center;
  text-align: center;
}

.contact-card .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 0.25rem;
}

.contact-card .heading-prim {
  
  color: #F6A305;
  font-family: 'Damion';
  font-size: 2.5em;
  line-height: 1.15;
  margin: 0 .25em .3em;
}

.contact-card .textcon {
  color: #243F54;
  /* color: #F6A305; */
  font-family: "Bio Rhyme", serif;
  font-weight: 400;
  font-size: 1.2em;
  margin-bottom: 0.3em;
}
.contact-card .btn {
  background-color: #F6A305;
  color: #fff;
}




@media screen and (max-width: 1280px) {
  .img-content-card-grid {
    --columns: 2 !important;
  }
}
@media screen and (max-width: 700px) {
  .img-content-card-grid {
    --columns: 1 !important;
  }
}