.about-block {
  margin-top: max( 104 / 19.2 * 1vw, 40px);
}
.about-block__wrap {
  display: grid;
  grid-template-columns: 54.7% 1fr;
  max-height: 600px;
}
.about-block__image {
  position: relative;
  height: 100%;
  max-height: inherit;
}
.about-block__image:after {
  content: "";
  display: block;
  padding-bottom: 65.1%;
}
.about-block__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
	z-index: 5;
  border-radius: 15px;
}

.about-block__image.video::before{
	content: '';
	background-image: url("./images/play.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 60px;
	height: 60px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}

.about-block__content {
  padding: 0 0 0 max( 30 / 19.2 * 1vw, 20px);
  max-height: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.about-block__title {
  margin-bottom: max( 12 / 19.2 * 1vw, 8px);
  font-weight: 400;
  font-size: max( 22 / 19.2 * 1vw, 17px);
  line-height: 125%;
}
.about-block__title-big {
  color: var(--colorB0);
  font-size: max( 86 / 19.2 * 1vw, 32px);
  font-family: "Montserrat";
  font-weight: 700;
  line-height: 120%;
  white-space: nowrap;
/*   transform: translateX(min( -132 / 19.2 * 1vw, -10px)); */
}
.about-block__text {
  margin-bottom: max( 16 / 19.2 * 1vw, 12px);
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
}

.about-block__text::-webkit-scrollbar {
  width: 14px;
}
.about-block__text::-webkit-scrollbar-thumb {
  background: var(--colorB0);
  border-radius: 41px;
}
.about-block__text::-webkit-scrollbar-track {
  background-color: #CBCFCF;
  border-radius: 0px;
  border-left: 6.5px solid transparent;
  border-right: 6.5px solid transparent;
  background-clip: padding-box;
}
.about-block__pages {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: min( -30 / 19.2 * 1vw, -10px);
  margin-right: min( -30 / 19.2 * 1vw, -15px);
}
.about-block__pages-item {
  margin-bottom: max( 30 / 19.2 * 1vw, 10px);
  padding: max( 10 / 19.2 * 1vw, 5px) max( 30 / 19.2 * 1vw, 15px);
  border-radius: 25px;
  background: var(--colorB0);
  color: var(--colorFF);
}
.about-block__pages-item:not(:last-child) {
  margin-right: max( 30 / 19.2 * 1vw, 15px);
}
@media (max-width: 1024px) {
  .about-block__wrap{
    max-height: 500px;
  }
}
@media (min-width: 991px) {
  .about-block__pages-item:hover {
    color: var(--colorFF);
    background: var(--colorA0);
  }
}
@media (max-width: 890px) {
  .about-block__wrap{
    aspect-ratio: 3 / 1;
  }
}
@media (max-width: 767px) {
  .about-block__wrap {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .about-block__content {
    order: -1;
    margin-bottom: 20px;
    padding: 0;
    max-height: 480px;
  }
  .about-block__title-big {
    transform: translateX(0);
  }
  .about-block__image{
    max-height: 300px;
  }
  .about-block__image img {
    border-radius: 15px;
  }
  .about-block__wrap {
    aspect-ratio: auto;;
  }
}/*# sourceMappingURL=block.css.map */

@media (max-width: 420px){
  .about-block__pages-item{
    width: 100%;
    text-align: center;
  }

  .about-block__pages-item:last-child{
    margin-right: max(30 / 19.2 * 1vw, 15px);
  }
}