.image-with-text .grid {
  margin-bottom: 0;
}
.image-with-text .grid__item {
  position: relative;
}
@media screen and (min-width: 750px) {
  .image-with-text__grid--reverse {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1100px) {
  .image-with-text .image-with-text__media-item,
  .image-with-text .image-with-text__text-item {
    padding: 4rem calc(5rem / var(--font-body-scale)) 5rem;
  }
}
.image-with-text__media {
  min-height: 100%;
  overflow: visible;
}
.image-with-text__media--small {
  height: 19.4rem;
}
.image-with-text__media--custom {
  height: 70.5rem;
  width: 100%;
  max-width: 100%;
}
.image-with-text__media--large {
  height: 43.5rem;
}
@media screen and (min-width: 750px) {
  .image-with-text__media--small {
    height: 31.4rem;
  }
  .image-with-text__media--custom {
    height: 55.5rem;
    width: 100%;
    max-width: 71%;
  }
  .image-with-text__media--large {
    height: 69.5rem;
  }
}
.image-with-text__media--placeholder {
  position: relative;
  overflow: hidden;
}
.image-with-text__media--placeholder:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(var(--color-foreground), 0.04);
}
.image-with-text__media--placeholder.image-with-text__media--adapt {
  height: 20rem;
}
@media screen and (min-width: 750px) {
  .image-with-text__media--placeholder.image-with-text__media--adapt {
    height: 30rem;
  }
}
.image-with-text__media--placeholder > svg {
  position: absolute;
  left: 50%;
  max-width: 80rem;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  fill: currentColor;
}
.image-with-text__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-self: center;
  padding: 4rem 3rem 3rem;
  position: relative;
  z-index: 1;
}
.image-with-text .grid__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.image-with-text:not(.image-with-text--overlap)
  .image-with-text__media-item:after {
  border-radius: var(--media-radius);
  box-shadow: var(--media-shadow-horizontal-offset)
    var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
}
.image-with-text:not(.image-with-text--overlap)
  .image-with-text__text-item:after {
  border-radius: var(--text-boxes-radius);
  box-shadow: var(--text-boxes-shadow-horizontal-offset)
    var(--text-boxes-shadow-vertical-offset)
    var(--text-boxes-shadow-blur-radius)
    rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
}
.image-with-text .image-with-text__media-item > * {
  border-radius: var(--media-radius);
  overflow: hidden;
  box-shadow: var(--media-shadow-horizontal-offset)
    var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
}
.image-with-text .global-media-settings {
  overflow: hidden !important;
}
.image-with-text .image-with-text__text-item > * {
  border-radius: var(--text-boxes-radius);
  overflow: hidden;
  box-shadow: var(--text-boxes-shadow-horizontal-offset)
    var(--text-boxes-shadow-vertical-offset)
    var(--text-boxes-shadow-blur-radius)
    rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
}
.image-with-text:not(.image-with-text--overlap)
  .image-with-text__media-item
  > *,
.image-with-text:not(.image-with-text--overlap)
  .image-with-text__text-item
  > * {
  box-shadow: none;
}
@media screen and (max-width: 749px) {
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__media-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid__item
    .image-with-text__media,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__media
    img {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__text-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid__item
    .image-with-text__content {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .image-with-text.collapse-borders:not(.image-with-text--overlap)
    .image-with-text__content {
    border-top: 0;
  }
}
.image-with-text__content--mobile-right > * {
  align-self: flex-end;
  text-align: right;
}
.image-with-text__content--mobile-center > * {
  align-self: center;
  text-align: center;
}
.image-with-text--overlap .image-with-text__content {
  width: 90%;
  margin: -3rem auto 0;
}
@media screen and (min-width: 750px) {
  .image-with-text__grid--reverse .image-with-text__content {
    margin-left: auto;
  }
  .image-with-text__content--bottom {
    justify-content: flex-end;
    align-self: flex-end;
  }
  .image-with-text__content--top {
    justify-content: flex-start;
    align-self: flex-start;
  }
  .image-with-text__content--desktop-right > * {
    align-self: flex-end;
    text-align: right;
  }
  .image-with-text__content--desktop-left > * {
    align-self: flex-start;
    text-align: left;
  }
  .image-with-text__content--desktop-center > * {
    align-self: center;
    text-align: center;
  }
  .image-with-text--overlap .image-with-text__text-item {
    display: flex;
    padding: 3rem 0;
  }
  .image-with-text--overlap .image-with-text__content {
    height: auto;
    width: calc(100% + 4rem);
    min-width: calc(100% + 4rem);
    margin-top: 0;
    margin-left: -4rem;
  }
  .image-with-text--overlap
    .image-with-text__grid--reverse
    .image-with-text__content {
    margin-left: 0;
    margin-right: -4rem;
  }
  .image-with-text--overlap
    .image-with-text__grid--reverse
    .image-with-text__text-item {
    justify-content: flex-end;
  }
  .image-with-text--overlap .image-with-text__media-item--top {
    align-self: flex-start;
  }
  .image-with-text--overlap .image-with-text__media-item--middle {
    align-self: center;
  }
  .image-with-text--overlap .image-with-text__media-item--bottom {
    align-self: flex-end;
  }
  .image-with-text__media-item--small,
  .image-with-text__media-item--large + .image-with-text__text-item {
    flex-grow: 0;
  }
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__media-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__media,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__media
    img,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__text-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__content,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__content:after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__text-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__content,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__content:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__media-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__media,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__media
    img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .image-with-text.collapse-borders:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__content {
    border-left: 0;
  }
  .image-with-text.collapse-borders:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__content {
    border-right: 0;
  }
}
.image-with-text:not(.collapse-corners, .image-with-text--overlap)
  .image-with-text__media-item {
  z-index: 2;
}
.image-with-text__content {
  border-radius: var(--text-boxes-radius);
  box-shadow: var(--text-boxes-shadow-horizontal-offset)
    var(--text-boxes-shadow-vertical-offset)
    var(--text-boxes-shadow-blur-radius)
    rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
}
.image-with-text__content > * + * {
  margin-top: 2rem;
}
.image-with-text__content > .image-with-text__text:empty ~ a {
  margin-top: 2rem;
}
.image-with-text__content > :first-child:is(.image-with-text__heading),
.image-with-text__text--caption + .image-with-text__heading,
.image-with-text__text--caption:first-child {
  margin-top: 0;
}
.image-with-text__content :last-child:is(.image-with-text__heading),
.image-with-text__text--caption {
  margin-bottom: 0;
}
.image-with-text__content .button + .image-with-text__text {
  margin-top: 2rem;
}
.image-with-text__content .image-with-text__text + .button {
  margin-top: 3rem;
}
.image-with-text__heading {
  word-break: break-word;
  margin-bottom: 0;
}
.image-with-text__text p {
  word-break: break-word;
  margin-top: 0;
  margin-bottom: 1rem;
}
@supports not (inset: 10px) {
  .image-with-text .grid {
    margin-left: 0;
  }
}
.home-image-with-text-1 .image-with-text__grid .image-with-text__text-item,
.home-image-with-text-1 .image-with-text__grid .image-with-text__media-item,
.home-image-with-text-2 .image-with-text__grid .image-with-text__text-item,
.home-image-with-text-2 .image-with-text__grid .image-with-text__media-item,
.home-image-with-text-3 .image-with-text__grid .image-with-text__text-item,
.home-image-with-text-3 .image-with-text__grid .image-with-text__media-item,
.home-image-with-text-4 .image-with-text__grid .image-with-text__text-item,
.home-image-with-text-4 .image-with-text__grid .image-with-text__media-item {
  padding: 0;
}
.home-image-with-text-1
  .image-with-text__grid
  .image-with-text__media-item
  .image_slider
  .swiper-wrapper
  .swiper-slide:before,
.home-image-with-text-2
  .image-with-text__grid
  .image-with-text__media-item
  .image_slider
  .swiper-wrapper
  .swiper-slide:before,
.home-image-with-text-3
  .image-with-text__grid
  .image-with-text__media-item
  .image_slider
  .swiper-wrapper
  .swiper-slide:before,
.home-image-with-text-4
  .image-with-text__grid
  .image-with-text__media-item
  .image_slider
  .swiper-wrapper
  .swiper-slide:before {
  border: 1px solid #ffffff;
  bottom: 0;
  content: "";
  left: 0;
  margin: 2%;
  position: absolute;
  right: 0;
  top: 0;
}
.home-image-with-text-1
  .image-with-text__grid
  .image-with-text__text-item
  .image-with-text__content,
.home-image-with-text-2
  .image-with-text__grid
  .image-with-text__text-item
  .image-with-text__content,
.home-image-with-text-3
  .image-with-text__grid
  .image-with-text__text-item
  .image-with-text__content,
.home-image-with-text-4
  .image-with-text__grid
  .image-with-text__text-item
  .image-with-text__content {
  justify-content: center;
}
.home-image-with-text-1
  .image-with-text__grid
  .image-with-text__text-item
  .image-with-text__content
  .image-with-text__text,
.home-image-with-text-2
  .image-with-text__grid
  .image-with-text__text-item
  .image-with-text__content
  .image-with-text__text,
.home-image-with-text-3
  .image-with-text__grid
  .image-with-text__text-item
  .image-with-text__content
  .image-with-text__text,
.home-image-with-text-4
  .image-with-text__grid
  .image-with-text__text-item
  .image-with-text__content
  .image-with-text__text {
  width: 100%;
  max-width: 68%;
}
.home-image-with-text-5
  .image-with-text__grid
  .image-with-text__text-item
  .image-with-text__content
  .image-with-text__heading {
  font-size: clamp(2rem, 1.7419rem + 1.2903vw, 4rem);
  font-weight: 100;
  margin-top: 35px;
}
.home-image-with-text-5
  .image-with-text__grid
  .image-with-text__text-item
  .image-with-text__content
  .footer__newsletter.newsletter-form {
  margin-top: 50px;
  margin-left: 0;
}
.home-image-with-text-5 .image-with-text__grid .image-with-text__text-item {
  padding: 0;
}
.home-image-with-text-5 .image-with-text__grid {
  gap: 30px;
}
@media screen and (min-width: 767px) {
  .home-image-with-text-5
    .image-with-text__grid
    .image-with-text__text-item
    .image-with-text__content {
    padding-top: 0;
    padding-bottom: 0;
  }
  .home-image-with-text-5 .image-with-text__grid .image-with-text__text-item,
  .home-image-with-text-5 .image-with-text__grid .image-with-text__media-item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
    padding: 0;
  }
}
.image-with-text__content .image-with-text__text + .button {
  transition: all 0.3s linear;
  padding-left: 70px;
  padding-right: 20px;
  padding-top: 16px;
}
.image-with-text__content .image-with-text__text + .button span {
  transition: all 0.3s linear;
  left: -2px;
  font-size: 14px;
  padding-top: 18px;
  padding-left: 18px;
  padding-right: 18px;
  margin-right: 20px;
  box-sizing: border-box;
  display: inline-block;
  height: 100%;
  position: absolute;
  top: 0;
  border-width: 1px;
  border-style: solid;
  line-height: 12px;
  background: var(--gradient-base-accent-1);
  color: var(--gradient-base-accent-3);
  border: none;
}
.image-with-text__content .image-with-text__text + .button:hover span {
  background: var(--gradient-base-accent-3);
  transition: all 0.3s linear;
  color: var(--gradient-base-accent-1);
}
.image-with-text__content .image-with-text__text + .button:hover span:after {
  background: var(--gradient-base-accent-3);
  transition: all 0.3s linear;
}
.image-with-text__content .image-with-text__text + .button span:after {
  content: "";
  transition: all 0.3s linear;
  display: block;
  height: 12px;
  width: 12px;
  left: 62px;
  margin: 0 0 0 -12px;
  position: absolute;
  top: 50%;
  vertical-align: middle;
  z-index: 1;
  transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  background: var(--gradient-base-accent-1);
}
.home-image-with-text-5
  .image-with-text__grid
  .image-with-text__text-item
  .image-with-text__content
  .image-with-text__text {
  margin: 15px 0 0;
}
.home-image-with-text-5
  .image-with-text__grid
  .image-with-text__text-item
  .image-with-text__content
  .image-with-text__heading:first-child {
  margin: 0;
}
.home-image-with-text-1
  .image-with-text__grid
  .image-with-text__text-item
  .image-with-text__content
  .image-with-text__heading,
.home-image-with-text-2
  .image-with-text__grid
  .image-with-text__text-item
  .image-with-text__content
  .image-with-text__heading,
.home-image-with-text-3
  .image-with-text__grid
  .image-with-text__text-item
  .image-with-text__content
  .image-with-text__heading,
.home-image-with-text-4
  .image-with-text__grid
  .image-with-text__text-item
  .image-with-text__content
  .image-with-text__heading {
  font-size: clamp(2rem, 1.6129rem + 1.9355vw, 5rem);
  font-weight: 100;
}
.home-image-with-text-1
  .image-with-text__grid
  .image-with-text__media-item
  .image_slider
  .image-section-slider
  .swiper
  .swiper-wrapper
  .swiper-slide
  img,
.home-image-with-text-2
  .image-with-text__grid
  .image-with-text__media-item
  .image_slider
  .image-section-slider
  .swiper
  .swiper-wrapper
  .swiper-slide
  img,
.home-image-with-text-3
  .image-with-text__grid
  .image-with-text__media-item
  .image_slider
  .image-section-slider
  .swiper
  .swiper-wrapper
  .swiper-slide
  img,
.home-image-with-text-4
  .image-with-text__grid
  .image-with-text__media-item
  .image_slider
  .image-section-slider
  .swiper
  .swiper-wrapper
  .swiper-slide
  img {
  width: 100%;
}
.home-image-with-text-1
  .image-with-text__grid
  .image-with-text__media-item
  .image_slider
  .image-section-slider
  .swiper
  .swiper-wrapper
  .swiper-slide,
.home-image-with-text-2
  .image-with-text__grid
  .image-with-text__media-item
  .image_slider
  .image-section-slider
  .swiper
  .swiper-wrapper
  .swiper-slide,
.home-image-with-text-3
  .image-with-text__grid
  .image-with-text__media-item
  .image_slider
  .image-section-slider
  .swiper
  .swiper-wrapper
  .swiper-slide,
.home-image-with-text-4
  .image-with-text__grid
  .image-with-text__media-item
  .image_slider
  .image-section-slider
  .swiper
  .swiper-wrapper
  .swiper-slide {
  display: flex;
}
@media screen and (min-width: 990px) {
  .home-image-with-text-5
    .image-with-text__grid
    .image-with-text__media-item
    .image_slider
    img {
    height: 570px;
  }
  .home-image-with-text-1
    .image-with-text__grid
    .image-with-text__text-item
    .image-with-text__content,
  .home-image-with-text-2
    .image-with-text__grid
    .image-with-text__text-item
    .image-with-text__content,
  .home-image-with-text-3
    .image-with-text__grid
    .image-with-text__text-item
    .image-with-text__content,
  .home-image-with-text-4
    .image-with-text__grid
    .image-with-text__text-item
    .image-with-text__content {
    padding: 0;
  }
}
@media screen and (min-width: 990px) and (max-width: 1440px) {
  .home-image-with-text-1
    .image-with-text__grid
    .image-with-text__text-item
    .image-with-text__content
    .image-with-text__text,
  .home-image-with-text-2
    .image-with-text__grid
    .image-with-text__text-item
    .image-with-text__content
    .image-with-text__text,
  .home-image-with-text-3
    .image-with-text__grid
    .image-with-text__text-item
    .image-with-text__content
    .image-with-text__text,
  .home-image-with-text-4
    .image-with-text__grid
    .image-with-text__text-item
    .image-with-text__content
    .image-with-text__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media only screen and (max-width: 766px) {
  .home-image-with-text-5 .image-with-text__grid {
    width: 70%;
    margin: auto;
  }
}
@media only screen and (max-width: 420px) {
  .home-image-with-text-5
    .image-with-text__grid
    .image-with-text__text-item
    .image-with-text__content
    .footer__newsletter.newsletter-form
    .newsletter-form__field-wrapper
    .field {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
@media only screen and (max-width: 990px) {
  .home-image-with-text-5
    .image-with-text__grid
    .image-with-text__text-item
    .image-with-text__content
    .image-with-text__heading {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 576px) {
  .image-with-text__text-item .image-with-text__text {
    width: 100%;
    max-width: 90% !important;
  }
}
/*# sourceMappingURL=/cdn/shop/t/7/assets/component-image-with-text.css.map?v=35154457595571605411756734758 */
