
    .docCorner .swiper-slide {
      text-align: center;
    }
      .docCorner {
          width: 100%;
      }
    .video-card {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .video-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .video-card img {
      width: 100%;
      display: block;
    }

    .video-title {
      margin-top: 10px;
      font-size: 1rem;
      font-weight: 600;
      color: #000;
      text-decoration: none;
      display: block;
      text-align: center;
    }

    .video-title:hover {
      color: #165699;
      /*text-decoration: underline;*/
    }
    
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 20px;
    }


    .swiper-button-next,
    .swiper-button-prev {
          background-color: #165699;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
    }