.swiper-container {
        width: 100%;
        /* height: 600px; */
        margin: 20px auto;
        margin-top: 20px;
        padding-bottom: 20px; /* Keep Shadow visible */
    }
    .swiper-slide {
        margin-right: 30px;
        text-align: center;
        font-size: 18px;
        background: #F9F9F9;
        background: transparent;
        
        /* background-blend-mode: multiply; */

        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;

        /* Keep in one row */
        -webkit-flex-shrink: initial;
        -ms-flex: initial;
        flex-shrink: initial;
        
        /* Keep internal desc 100% height */
        width: auto!important;
        height: auto!important;
      }
     .swiper-slide---desc { 
        padding: 20px;
        color: #FFF;
        background: transparent; 
        width: 480px; 
        overflow: hidden; 
      }
      .swiper-slide---desc a { 
        font-size: 120px;
        color: white!important;
      }
     .swiper-slide img {
        opacity: .2;

        -webkit-transition: opacity 0.3s ease-in-out;
        -moz-transition: opacity 0.3s ease-in-out;
        -o-transition: opacity 0.3s ease-in-out;
        -ms-transition: opacity 0.3s ease-in-out;       
        transition: opacity 0.3s ease-in-out;

        max-width:2000px!important;
        height: 75vh!important; 
        max-height: 800px!important;
        width: auto!important;
        
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);

     }
    .swiper-slide---desc {
        opacity: 0.1;
        -webkit-transition: opacity 0.3s ease-in-out;
        -moz-transition: opacity 0.3s ease-in-out;
        -o-transition: opacity 0.3s ease-in-out;
        -ms-transition: opacity 0.3s ease-in-out;       
        transition: opacity 0.3s ease-in-out;
    }
     .swiper-slide-active {
         z-index: 8;
     }
     .swiper-slide-active img,
     .swiper-slide-active .swiper-slide---desc {
         opacity: 1;
         box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
     }
     .swiper-button-next, .swiper-button-prev {
        position: absolute;
        top: 0%;
        width: 50%;
        height: 100%;
        margin-top: 0px;
        z-index: 10;
        cursor: pointer;
        -moz-background-size: 27px 44px;
        -webkit-background-size: 27px 44px;
        background-size: 27px 44px;
        background-position: center;
        background-repeat: no-repeat;
        background: none;
      }
      .swiper-button-next { right: 0px; }
      .swiper-button-prev { left: 0px; }
      
      .swiper-slide---close a {
        color: white;
        font-size: 24px;
        display: inline-block;
        margin-left: 1px;
        margin-top: 1px;
        background: black;
        padding: 6px 15px;
        cursor: pointer;
      }