.vision-section {
  background-image: url(../images/About/testimonial-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.vision-content p {
  max-width: 50%;
  margin: 0 auto;
}
.vision-content img {
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 70px;
}
.about-content ul {
  list-style: none;
}
.about-content li {
  position: relative;
  padding-bottom: 15px;
  margin-left: 1rem;
  line-height: 1.7;
  font-size: 14px;
}
.about-content ul li::before {
  content: "";
  background: url(../images/About/tick.webp) no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  left: -35px;
  top: 5px;
  background-color: #cfcefa;
  border-radius: 5px;
  background-position: center;
}
.video-section {
  background-image: url(../images/About/video-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  height: 325px;
  position: relative;
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.play-btn {
  width: 80px;
  height: 80px;
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}
.play-btn span {
  display: block;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #000 !important;
  position: relative;
  margin: 18px auto;
}
