/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 95:0 Unexpected "<"

**/
<style>
.about-us__info-title-text {
  color: #B1B1B1;
}
.about-us {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100vh; 
}

.about-us__info {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  /*padding-top: 134px;
  padding-bottom: 134px;*/
  padding-top: 140px;
  padding-bottom: 84px;
}

.about-us__info-title {
  width: 50%;
}

.about-us__info-content {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  width: 50%;
}

/* Блок з контентом (зображеннями) */
.about-us__content {
  display: flex;
  width: 100%;
  flex: 1 0 auto; /* Адаптивність по ширині та висоті */
  box-sizing: border-box;
}

.about-us__content-image {
  height: auto;
  display: block; 
  object-fit: cover; /* Забезпечити, щоб зображення покривали контейнер без обрізання */
}

.about-us__content-image--40 {
  width: 40%;
}

.about-us__content-image--60 {
  width: 60%;
}
.about-us__info-text {
  width: 100%;
  max-width: 365px;
  color: var(--custom-color-dark)
}


@media screen and (max-width: 989px) {
  .about-us__content {
    flex-direction: column-reverse;
    max-height: unset; /* Скасування обмеження висоти на малих екранах */
  }
  .about-us__content-image--40, .about-us__content-image--60 {
    width: 100%;
  }
  .about-us__info {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .about-us__info-title-text {
    color: var(--custom-color-grey)
  }
  .about-us__info-text {
    max-width: unset;
  }
  .about-us__info {
    flex-direction: column;
  }
  .about-us__info-content {
    width: 100%;
    flex-direction: column;
  }
}
</style>