.video_wrapper {
  position: relative;
}
.video_img img {
  width: 100%;
}
.video_img {
  position: relative;
}
.video_img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.video_content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video_play i {
  height: 120px;
  width: 120px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.192);
  border-radius: 100px;
  font-size: 50px;
  border: 2px solid var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  animation: ripple-small 1.6s linear infinite;
}
@keyframes ripple-small {
  0% {
    box-shadow: 0 0 0 0 rgba(81, 36, 47, 0.3), 0 0 0 0.2em rgba(73, 35, 49, 0.3),
      0 0 0 0.5em rgba(255, 158, 181, 0.3), 0 0 0 1em rgba(63, 28, 38, 0.3);
  }

  100% {
    box-shadow: 0 0 0 1em rgba(77, 38, 49, 0.26),
      0 0 0 0.5em rgba(115, 58, 67, 0.3), 0 0 0 0.9em rgba(100, 51, 51, 0.3),
      0 0 0 1.5em rgba(88, 41, 41, 0);
  }
}

.tile_video {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  transition: 0.5s ease;
  visibility: hidden;
  opacity: 0;
}
.tile_video.active {
  opacity: 1;
  visibility: visible;
  transition: 0.5s ease;
}
.tile_video__frame {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.close-video {
  position: absolute;
  right: 2rem;
  top: 2rem;
}
.close-video i {
  color: var(--white-color);
  font-size: 40px;
  transition: 0.4s ease;
  cursor: pointer;
}
.close-video i:hover {
  color: var(--text-color);
  transition: 0.4s ease;
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .video_play i {
    height: 80px;
    width: 80px;
    font-size: 30px;
  }
  .about-inner{
    padding-bottom: 50px;
  }
}
