  .banner {
    padding: 110px 0;
    background: #f3f3f3;
    padding-bottom: 0;
    background-image: linear-gradient(to right, #f3f3f3 65%, #d5d5d5 100%);
  }

  .banner h1 {
    color: #000;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .video-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
  }

  .banner video {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to left, black 75%, transparent 100%);
    mask-image: linear-gradient(to left, black 75%, transparent 100%);
  }

  .banner p {
    color: #434343;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 177.778% */
  }

  .video-box {
    height: 350px;
  }

  @media (min-width: 992px) {
    .video-box {
      height: 420px;
    }
    
  }
@media (max-width: 768px) {
    .banner h1 {
    font-size: 22px;
    }
  }
  .btn-custom {
    background-color: #1f3c88;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
  }

  .btn-custom:hover {
    background-color: #162d66;
  }