﻿.special-ppt{
grid-row:2;  grid-column: 1 / span 12;
  	border-radius:10px;  padding:12px; 
 	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    box-sizing: border-box;
    }



    .swiper-container ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .swiper-container {
             width: 100%;
      max-width: 1200px;
      height: 300px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border-radius: 4px;
    }

    .swiper-list {
      width: 100%;
      height: 100%;
      position: relative;
    }

    .swiper-item {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 500ms ease-in-out;
      will-change: opacity;
      pointer-events: none;
      padding: 0;
      box-sizing: border-box;
    }

    .swiper-item.active {
      opacity: 1;
      pointer-events: auto;
      z-index: 2;
    }

    .swiper-item a {
      color: white;
      text-decoration: none;
      text-align: center;
      display: block;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }


    .swiper-item img {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .swiper-item p {
      width: 100%;
      height: 30px;
      line-height: 30px;
      background: linear-gradient(rgba(0, 0, 0, 0), rgba(160, 146, 146, 0.7));
      bottom: 0;
      left: 0;
      position: absolute;
      z-index: 5;
      margin: 0;
      padding-left: 5px;
      letter-spacing: 1px;
      text-align: left;
    }


    .swiper-item a:hover {
      transform: scale(1.05);
    }

    .swiper-pagination {
      position: absolute;
      bottom: 15px;
      left: 0;
      right: 0;
      text-align: center;
      z-index: 10;
    }

    .swiper-pagination-bullet {
      display: inline-block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.6);
      margin: 0 6px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .swiper-pagination-bullet.active {
      background: #fff;
      transform: scale(1.2);
    }

    .swiper-button-prev,
    .swiper-button-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: all 0.3s;
      z-index: 10;
      opacity: 0;
      visibility: hidden;
    }

    .swiper-container:hover .swiper-button-prev,
    .swiper-container:hover .swiper-button-next {
      opacity: 1;
      visibility: visible;
    }

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
      background: rgba(0, 0, 0, 0.7);
    }

    .swiper-button-prev {
      left: 15px;
    }

    .swiper-button-next {
      right: 15px;
    }

        /* max-width: 768px */

@media screen and (max-width: 768px) {
 
    .swiper-container {

      height: 200px;
   
    }

   }