/** Shopify CDN: Minification failed

Line 22:10 Unexpected "{"
Line 22:19 Expected ":"
Line 23:14 Expected identifier but found whitespace
Line 23:16 Unexpected "{"
Line 23:25 Expected ":"
Line 23:51 Expected ":"
Line 24:17 Expected identifier but found whitespace
Line 24:19 Unexpected "{"
Line 24:28 Expected ":"
Line 24:57 Expected ":"

**/


/* CSS from section stylesheet tags */
.multirow-section {
  margin: 0 auto;
}

.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: bold;
}

.multirow-item {
  margin-bottom: 4rem;
}

.multirow-item:last-child {
  margin-bottom: 0;
}

.multirow-item__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.multirow-item.reverse .multirow-item__content {
  direction: rtl;
}

.multirow-item.reverse .multirow-item__text {
  direction: ltr;
}

.multirow-item__text {
  padding: 2rem;
}

.multirow-item__heading {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.multirow-item__description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.multirow-item__image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.multirow-item__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #333;
}

@media screen and (max-width: 749px) {
  .multirow-item__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .multirow-item.reverse .multirow-item__content {
    direction: ltr;
  }

  .multirow-item__text {
    padding: 1rem;
  }

  .multirow-item__heading {
    font-size: 1.5rem;
  }

  .section-heading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}