.mm-testimonials-video-section {
  * {
    letter-spacing: 0;
    font-family: var(--font-poppins);
  }

  .container {
    padding: 0 20px;
    max-width: 1320px;
    margin: 0 auto;
  }

  img,
  video {
    width: 100%;
    height: auto;
  }

  .slide-inner {
    border: 2px solid #072165;
    border-radius: 20px;
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .count {
    color: #072165;
    font-size: 24px;
    font-weight: 500;
    font-family: var(--font-larken);
    width: 40px;
    height: 40px;
    border: 1px solid #072165;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }

  .mm-title {
    font-size: 24px;
    font-weight: 500;
    font-family: var(--font-larken);
    color: #072165;
    margin: 24px 0 0;
  }

  .mm-review {
    font-size: 14px;
    color: #072165;
    text-align: center;
    font-weight: 300;
    line-height: 150%;
  }

  .testi-inner {
    margin-bottom: 40px;
  }

  .splide__pagination {
    position: static;
    margin-top: 20px;
  }

  .splide__pagination__page {
    border: 1px solid #072165;
    background-color: transparent;
    width: 10px;
    height: 10px;
  }

  .splide__pagination__page.is-active {
    transform: none;
    background-color: #072165;
    border: 1px solid #072165;
  }

  .video-container {
    display: flex;
    position: relative;

    video {
      border-radius: 10px;
      overflow: hidden;
      width: 100%;
      object-fit: cover;
    }

    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      background: none;
      border: none;
      cursor: pointer;

      img {
        max-width: 40px;
      }
    }
  }

  @media (min-width: 992px) {
    .testi-video {
      display: flex;
      gap: 20px;
    }

    .testi-inner {
      width: 50%;
      margin-bottom: 0;
    }

    .video-container {
      width: 50%;
    }

    .count {
      width: 50px;
      height: 50px;
      font-size: 28px;
    }

    .slide-inner {
      min-height: 385px;
      border-radius: 20px;
    }

    .play-button img {
      max-width: 65px;
    }

    .video-container video {
      border-radius: 20px;
    }

    .mm-title {
      font-size: 28px;
    }

    .mm-review {
      font-size: 16px;
      max-width: 435px;
      margin: auto;
    }

    .splide__arrow {
      background: transparent;

      svg {
        fill: #072165;
      }
    }

  }

}