/** Shopify CDN: Minification failed

Line 88:9 Expected identifier but found whitespace
Line 88:11 Unexpected "{"
Line 88:20 Expected ":"
Line 88:53 Expected ":"
Line 230:9 Expected identifier but found whitespace
Line 230:11 Unexpected "{"
Line 230:20 Expected ":"
Line 230:47 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:image-text-module (INDEX:102) */
.image-text-module-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
}

.image-text-module {
  display: flex;
  gap: 40px;
  margin: 60px 0;
}

.image-text-module__text {
  width: calc(33.333% - 20px);
  min-width: 300px;
}

.image-text-module__title {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 24px;
  color: #333;
  font-weight: 600;
}

.image-text-module__description {
  font-size: 15px;
  line-height: 24px;
  color: rgb(27,27,27);
  margin-bottom: 32px;
}

.image-text-module__description p {
  margin-bottom: 16px;
}

.image-text-module__description p:last-child {
  margin-bottom: 0;
}

.image-text-module__button {
  display: inline-block;
  padding: 10px 30px;
  background-color: #fff;
  color: rgb(77, 77, 77);
  border: 1px solid #b2b2b2;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  line-height: 20px;
  font-weight:700;
  transition: color .2s ease-out,background-color .2s ease-out
}

.image-text-module__button:hover {
  background-color: rgb(77, 77, 77);
  color: #fff;
}

.image-text-module__images {
  width: calc(66.666% - 20px);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-text-module__large-img-container {
  width: 100%;
  height: {{ section.settings.large_image_height }}px;
  overflow: hidden;
  border-radius: 8px;
}

.image-text-module__large-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-text-module__large-img-container:hover .image-text-module__large-img {
  transform: scale(1.05);
}

.image-text-module__small-images {
  display: flex;
  gap: 20px;
}

.image-text-module__small-img-container {
  flex: 1;
  height: calc({{ section.settings.large_image_height }}px / 2 - 10px);
  overflow: hidden;
  border-radius: 8px;
}

.image-text-module__small-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-text-module__small-img-container:hover .image-text-module__small-img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .image-text-module-container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .image-text-module-container {
    padding: 0 20px;
  }
  
  .image-text-module {
    flex-direction: column;
    margin: 40px 0;
    gap: 30px;
  }
  
  .image-text-module__text,
  .image-text-module__images {
    width: 100%;
  }
  
  .image-text-module__title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .image-text-module__small-images {
    flex-direction: column;
  }
  
  .image-text-module__small-img-container {
    height: calc({{ section.settings.large_image_height }}px / 2);
  }
}

@media (max-width: 480px) {
  .image-text-module-container {
    padding: 0 15px;
  }
  
  .image-text-module__title {
    font-size: 24px;
    line-height: 32px;
  }
  
  .image-text-module__description {
    font-size: 14px;
    line-height: 22px;
  }
  
  .image-text-module__button {
    font-size: 15px;
    padding: 8px 24px;
  }
  
  .image-text-module__large-img-container,
  .image-text-module__small-img-container {
    border-radius: 4px;
  }
}
/* END_SECTION:image-text-module */

/* START_SECTION:image-text (INDEX:103) */
.image-grid-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px;
  box-sizing: border-box;
}

.image-grid-title {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
}

.image-grid-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.image-grid-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.image-grid-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.image-grid-img-container {
  width: 100%;
  height: {{ section.settings.image_height }}px;
  overflow: hidden;
}

.image-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-grid-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  margin: 0;
  color: white;
  font-size: 18px;
  line-height: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  text-align: center;
  transition: all 0.3s ease;
}

.image-grid-item:hover .image-grid-img {
  transform: scale(1.05);
}

.image-grid-item:hover .image-grid-name {
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding-bottom: 25px;
}

@media (max-width: 768px) {
  .image-grid-section {
    padding: 30px;
  }
  
  .image-grid-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .image-grid-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 30px;
  }
  
  .image-grid-img-container {
    height: calc({{ section.settings.image_height }}px * 0.9);
  }
}

@media (max-width: 480px) {
  .image-grid-section {
    padding: 20px;
  }
  
  .image-grid-title {
    font-size: 24px;
    line-height: 32px;
  }
  
  .image-grid-name {
    font-size: 16px;
    padding: 15px;
  }
  
  .image-grid-img-container {
    height: calc({{ section.settings.image_height }}px * 0.8);
  }
}
/* END_SECTION:image-text */