/** Shopify CDN: Minification failed

Line 146:10 Expected identifier but found whitespace
Line 146:12 Unexpected "{"
Line 146:21 Expected ":"
Line 146:48 Unexpected "0"
Line 146:51 Unexpected "{"
Line 146:60 Expected ":"
Line 146:89 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:hyperlink-heading (INDEX:3) */
.inline-heading-link {
  background: var(--bg);
  padding-top: var(--pt);
  padding-bottom: var(--pb);
}

.inline-heading-link__text {
  font-size: var(--fs);
  font-weight: var(--fw);
  color: var(--color);
  line-height: 1.4;
  text-align: var(--align);
  text-transform: var(--transform);
}

.inline-heading-link__text a {
  color: var(--link-color);
  text-decoration: underline;
  margin-left: 6px;
  font-weight: var(--link-fw);
  text-transform: inherit;
}

@media (max-width: 768px) {
  .inline-heading-link__text {
    font-size: calc(var(--fs) * 0.85);
  }
}
/* END_SECTION:hyperlink-heading */

/* START_SECTION:alt-image-box (INDEX:12) */
:root{
  --alt-padding: 40px;
  --alt-img-size: 120px;
  --alt-radius: 10px;
}

/* wrapper & background */
.alt-section-wrapper {
  width: 100%;
  background-size: cover;
  background-position: center;
}

/* full-width container */
.alt-container {
  width: 100%;
  max-width: 100%;
}

/* left image column */
.alt-left-col {
  position: relative;
  overflow: hidden;
  min-height: 1px;
}
.alt-left-col .alt-left-img {
  width: 145px;
  height: auto;
  display: block;
  object-fit: cover;
}

/* right column & boxes */
.alt-right-col {
  padding: var(--alt-padding);
}
.alt-box {
  display: flex;
  align-items: center;
  padding: 0;
}
.flex-row-reverse {
  display: flex;
  align-items: center;
  gap: 16px;
}
.alt-box-img-wrapper {
  flex-shrink: 0;
}
.alt-box-img {
  width: 250px;
  height: auto;
  object-fit: cover;
  display: block;
}

/* text */
.alt-box-heading {
  margin: 10px 30px 10px 30px;
  font-size: 40px;
}
.alt-box-desc {
  margin: 0;
  padding: 10px 30px 10px 30px;
  text-align: justify;
}

/* mobile stacking: image on top, text under */
@media (max-width: 767px) {
  .alt-row { flex-wrap: wrap; }
  .alt-left-col { order: -1; width: 100% !important; }
  .alt-right-col { width: 100% !important; padding: 20px; }
  .alt-box { flex-direction: column !important; text-align: center; }
  .alt-box-img { margin-bottom: 12px; }
}

@media (max-width: 576px){
  .flex-row-reverse {
  padding: 20px;
}
.alt-box{
  padding: 20px;
}
.alt-left-col .alt-left-img{
  display: none;
}
.alt-box-heading {
  margin: 10px;
}
.alt-box-desc {
  padding: 10px;
  text-align: center;
}
}
/* END_SECTION:alt-image-box */

/* START_SECTION:dynamic-two-column-builder (INDEX:24) */
.dynamic-two-col {
  padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
}

.dynamic-two-col__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.dynamic-two-col__wrapper.reverse {
  direction: rtl;
}

.dynamic-two-col__wrapper.reverse > * {
  direction: ltr;
}

.dynamic-col {
  display: flex;
  flex-direction: column;
}

.dynamic-block {
  margin-top: var(--mt);
  margin-bottom: var(--mb);
}

/* 🔥 FIX */
.dynamic-block * {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

.dynamic-block p + p {
  margin-top: 10px;
}

.dynamic-block a {
  text-decoration: underline;
  color: #184a3a;
  font-weight: bold;
}

.dynamic-col img {
  max-width: 100%;
}

@media (max-width: 768px) {
  .dynamic-two-col__wrapper {
    grid-template-columns: 1fr;
  }
}
/* END_SECTION:dynamic-two-column-builder */

/* START_SECTION:static-gallery-section (INDEX:100) */
.gallery-section {
  width: 100%;
}

.gallery-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #184a3a
}

.gallery-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 40px;
}

.gallery-col {
  padding: 5px;
  width: 50%;
}

/* Desktop: 5 columns */
@media (min-width: 992px) {
  .gallery-col {
    width: 20%;
  }
}

.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-button {
    text-align: center;
    border: 1px solid;
    background: #000;
    padding: 5px;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.gallery-button:hover{
  background: #184a3a;
}
.gallery-button a{
  color: #fff;
}
/* END_SECTION:static-gallery-section */