.text-image-block__wrap {
  display: flex;
  gap: clamp(10px, calc(1.25vw + 6px), 30px);
	height: 420px;
}
.text-image-block__text {
  flex: 1;
  background: var(--head-secondary);
  border-radius: 20px;
  overflow: hidden;
  padding: clamp(20px, calc(2.5vw + 12px), 60px) clamp(10px, calc(3.125vw + 0px), 60px);
	overflow: auto;
}
.text-image-block__text > p, .text-image-block__text > ul > li, .text-image-block__text > ol > li {
  font-size: clamp(16px, calc(0.25vw + 15.2px), 20px);
}
.text-image-block__text > ul > li:before {
  border-radius: 0;
  background-color: var(--secondary);
  transform: rotate(45deg);
  margin-top: 6px;
}
.text-image-block__image {
  width: 49%;
  border-radius: 20px;
  overflow: hidden;
  position: sticky;
  top: 105px;
  height: -moz-fit-content;
  height: fit-content;
	height: 100%;
}
.text-image-block__image:after {
  content: "";
  display: block;
  padding-bottom: 56.6%;
}
.text-image-block__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 769px) {
  .text-image-block__wrap {
    flex-direction: column;
  }
  .text-image-block__image {
    width: 100%;
    max-height: 300px;
  }
}

.text-image-block__text::-webkit-scrollbar {
  width: 3px;
}
.text-image-block__text::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}
.text-image-block__text::-webkit-scrollbar-track {
  background-color: var(--stroke);
  border-radius: 10px;
  background-clip: padding-box;
}


/*# sourceMappingURL=block.css.map */