.about-block .content-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.about-block .left-side {
  display: flex;
  position: relative;
  width: 50%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
.about-block .left-side img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}
.about-block .left-side .img-side {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-block .video {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.about-block .video iframe {
  width: 100%;
  height: 100%;
}
.about-block video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.about-block .video__preview {
  display: block;
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  transition: all 0.3s;
}
.about-block .video__btn {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  opacity: 0.7;
  background: var(--background);
  z-index: 2;
  transition: 0.3s;
}
.about-block .video__btn svg path {
  fill: var(--primary);
}

.about-block .text-side {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 50%;
  height: fit-content;
  padding: 40px;
  gap: 30px;
  border-radius: 10px;
  background: var(--background);
  overflow: hidden;
}
.about-block .text-side *:not(.img-bg) {
  z-index: 1;
}
.about-block .text-side .title {
  margin: 0;
}
.about-block .text-side .desc p {
  margin-bottom: 0;
}
.about-block .text-side .desc p:not(:last-of-type) {
  margin-bottom: 15px;
}
.about-block .text-side .desc ul,
.about-block .text-side .desc blockquote {
  margin-bottom: 15px;
}
.about-block .text-side .desc blockquote * {
  /*font-size c 20 до 14 */
  font-size: clamp(0.875rem, 0.8rem + 0.38vw, 1.25rem);
  font-weight: 700;
  line-height: 110%;
}
.about-block .text-side .btn {
  margin-top: 10px;
}
.about-block .text-side .img-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 90%;
  width: auto;
  opacity: 0.25;
  pointer-events: none;
}

@media (max-width: 1320px) {
  .about-block .content-top {
    gap: 20px;
  }
}
@media (max-width: 1100px) {
  .about-block .text-side {
    padding: 20px;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .about-block .content-top {
    flex-direction: column-reverse;
  }
  .about-block .left-side {
    height: 350px;
  }
  .about-block .left-side,
  .about-block .text-side {
    width: 100%;
  }
  .about-block .text-side .btn {
    margin: 0;
  }
}
@media (max-width: 512px) {
  .about-block .left-side {
    height: 250px;
  }
}
