/** Shopify CDN: Minification failed

Line 66:50 Expected ":"

**/


 .text-scroll-image__texts {
   grid-column: content;
   display: flex;
  }

.text-scroll-image .texts {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 80px 0;
}

@media only screen and (max-width: 749px) {
.text-scroll-image .texts {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 25px 0;
}
  
}

.text-scroll-image__image, .text-scroll-image__container {
  animation: fade-in-image linear;
  animation-timeline: view(250px);
  animation-fill-mode: both;
}

@keyframes fade-in-image {

}
.text-scroll-image__text-block {
  margin: auto 0;
}

.text-scroll-image__text-block .head {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.text-scroll-image__text-block .head h3{
  margin: 0;
}

.my-scroll-section .reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.my-scroll-section .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.text-scroll-image__text-block .text.line-decoration {
  border-left: 2px rgb(var(--color-button)); solid;
   padding-left: 10px;
}