

/*========================================  Gallery Start ======================================== */

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
  }
  
  .swiper {
    width: 100%;
    /* height: 405px; */
    margin-left: auto;
    margin-right: auto;
  }
  
  .mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    /* opacity: 0.4; */
  }
  
  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
  }
  
  
  .swiper-slide img {
    display: block;
    width: 487px;
    height: 254px;
    object-fit: cover;
  }
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
   .gallery-item img {
    object-fit: cover;
  }
  
   .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.125);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
  }
  
   .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
  }
  
   .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
  }
  
  .gallery-item:hover .gallery-content .gallery-info,
   .gallery-item:hover .gallery-plus-icon {
    opacity: 1;
    margin: 0;
  }
  
   .gallery-item img {
    transition: 0.5s;
  }
  
   .gallery-item:hover img {
    transform: scale(1.2);
  }
  
  .gallery-item:hover .gallery-content {
    background: rgb(185 125 37 / 62%);
  }
  
  .tab-class .nav-item {
    padding: 0 0 20px 0;
  }
   .tab-class .nav-item a.active {
    background: var(--second-color) !important;
  }
  
   .tab-class .nav-item a.active span {
    color: var(--color-white) !important;
  }
  
  .swiper_gallery{
    display: none;
  }
  
  .sho{
      display: none;
  }
  
  .character-gallery {
    display: grid;
    gap: 0.25rem;
    grid-template-columns: repeat(4, calc(100px - 0.25rem / 2));
    grid-template-rows: repeat(6, calc(100px - 0.25rem / 2));
  }
  
  .character-gallery img {
    aspect-ratio: 1;
    object-fit: cover;
    grid-column: span 2;
    clip-path: path(
      "M 80 20 C 100 0 100 0 120 20 C 140 40 160 60 180 80 C 200 100 200 100 180 120 C 160 140 140 160 120 180 C 100 200 100 200 80 180 C 60 160 40 140 20 120 C 0 100 0 100 20 80 Z"
    );
    transition: filter 0.5s, clip-path 0.5s;
    border-radius: 0.5rem;
  }
  
  .character-gallery img:nth-of-type(3),
  .character-gallery img:nth-of-type(6) {
    grid-column: 2 / span 2;
  }
  
  
  .character-gallery img:not(:hover) {
    animation: zIndexHack 0.5s;
  }
  
  @keyframes zIndexHack {
    0%,
    100% {
      z-index: 10;
    }
  }
  
  .character-gallery > img:hover {
    filter: brightness(1) saturate(1.5);
  }
  

  @media (max-width: 767px) {
    .mySwiper .swiper-slide {
      width: 70%;
      height: 100%;
  }


  }
