.about-section {
 margin-top: 40px;
 padding-bottom: 40px;
}

.about-top {
 display: flex;
 gap: 60px;
 flex-wrap: nowrap;
}

.about-top .about-text-block {
 flex: 1 1 50%;
}

.about-video-wrapper {
 margin-top: 40px;
 display: flex;
 gap: 40px;
 align-items: center;
}

.about-video-block {
 flex: 1 1 800px;
 max-width: 800px;
 position: relative;
 border-radius: 20px;
 overflow: hidden;
 max-height: 450px;
}

.about-video-block:hover img {
 transform: scale(1.04);
}

.about-video-title {
 position: absolute;
 top: 24px;
 left: 24px;
 color: #FFF;
 font-size: 20px;
 font-weight: 600;
 line-height: 125%;
 z-index: 2;
}

.about-video-bg {
 width: 100%;
 border-radius: 20px;
 height: 100%;
 object-fit: cover;
 transition: all .5s;
}

.about-video-play {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 cursor: pointer;
}

.about-video-play rect,
.about-video-play path {
 transition: all .3s;
}

.about-video-play:hover rect {
 fill: #fff;
}

.about-video-play:hover path {
 fill: #E63737;
}

.about-video-content {
 flex: 1 1;
}

.about-video-content h2 {
 margin-bottom: 15px;
}

.about-video-content p {
 font-size: 15px;
}

.about-bottom {
 margin-top: 36px;
}


@media (max-width: 1255px) {
 .about-video-block {
  flex: 1 1 50%;
  max-width: 50%;
 }
}

@media (max-width: 1024px) {
 .about-video-wrapper {
  flex-direction: column;
  gap: 30px;
 }

 .about-video-block {
  flex: 1 1 100%;
  max-width: 100%;
 }
}

@media (max-width: 768px) {
 .breadcrumbs {
  margin-bottom: 5px;
  gap: 5px;
 }

 .breadcrumbs-item {
  gap: 5px;
 }

 .breadcrumbs-link {
  font-size: 12px;
 }

 .breadcrumbs-last {
  font-size: 12px;
 }

 .about-section {
  margin-top: 25px;
  padding-bottom: 25px;
 }

 .about-top {
  flex-direction: column;
  gap: 25px;
 }

 .about-video-wrapper {
  margin-top: 25px;
 }

 .about-video-title {
  top: 22px;
  left: 22px;
  font-size: 15px;
 }

 .about-video-play svg {
  min-width: 48px;
  width: 48px;
  height: 48px;
 }

 .about-video-wrapper {
  gap: 25px;
 }

 .about-video-content p {
  font-size: 14px;
 }

 .about-bottom {
  margin-top: 25px;
 }

 .about-video-bg {
  border-radius: 15px;
 }
}