@-webkit-keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  .slider {
    background: rgba(0, 0, 0, 0);
    box-shadow: 0 10px 20px -5px rgba(8, 8, 8, 0);
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 960px;
  }
  .slider::before, .slider::after {
    background: linear-gradient(to right, rgba(36, 36, 36, 0) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  .slider::before {
    left: 0;
    top: 0;
  }
  .slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
            animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
  }
  .slider .slide {
    height: 100px;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about {
    position: relative;
    padding-top: 15rem;
    padding-bottom: 18rem;
  }
  
  .about .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .about video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .about video::-webkit-media-controls {
    display: none;
  }
  
  .about video::-webkit-media-controls-enclosure {
    display: none !important;
  }
  
  .about-content {
    position: relative;
    z-index: 1;
  }
  
  @media (max-width: 767.98px) {
    .about {
      padding-top: 12rem;
      padding-bottom: 13rem;
    }
  }

  @media (max-width: 767.98px) {
    .slider {
      width: 100%;
    }
    .slider .slide-track {
      width: calc(250px * 12);
    }
  }
  

  .hero-home {
    position: relative;
  }
  
  .hero-home .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .hero-home video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-home video::-webkit-media-controls {
    display: none;
  }
  
  .hero-home video::-webkit-media-controls-enclosure {
    display: none !important;
  }
  
  .hero-home .container {
    position: relative;
    z-index: 1;
  }
  