
/*** Swiper JS ***/
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-container::before {
    position: absolute;
    content:'';
    width:100%;
    height:100%;
    z-index:2;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&1+0,0+25 */
    background: -moz-linear-gradient(top,  rgba(0,0,0,1) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}
  
.swiper-button-next, .swiper-button-prev {
    color: #000 !important;
}

.swiper-pagination-bullet{
    width:35px;
    height:5px;
    border-radius: 0;
}

.swiper-pagination-bullet-active{
    background: #000 !important;
}

.swiper-button-next{
    background: rgba(255,255,255,0.55);
    right: 0 !important;
    width: 50px !important;
    height: 80px !important;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    transition: all 0.5s ease-in-out !important;
}

.swiper-button-next:hover{
    background: rgba(255,255,255,0.95);
}

.swiper-button-prev{
    background: rgba(255,255,255,0.55);
    left: 0 !important;
    width: 50px !important;
    height: 80px !important;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: all 0.5s ease-in-out !important;
}

.swiper-button-prev:hover{
    background: rgba(255,255,255,0.95);
}
  
.swiper-slide-duplicate,
.swiper-slide {
    background-position: center center;
    background-size: cover;
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    /* Slide content */
}
.swiper-slide-duplicate .description,
.swiper-slide-duplicate .title,
.swiper-slide .description,
.swiper-slide .title {
    display: block;
    opacity: 0;
    transition: 0.5s ease 0.5s;
}
.swiper-slide-duplicate-active .description,
.swiper-slide-duplicate-active .title,
.swiper-slide-active .description,
.swiper-slide-active .title {
    opacity: 1;
}
.swiper-slide-duplicate-active .title,
.swiper-slide-active .title {
    margin-bottom: 0.5rem;
    font-size: 24px;
    color: #000;
    transition: opacity 0.5s ease 0.5s;
}
.swiper-slide-duplicate-active .description,
.swiper-slide-active .description {
    font-size: 16px;
    color: #777;
    transition: opacity 0.5s ease 0.75s;
}

.swiper-progress-bar {
    position: relative;
    width: 100%;
    display: block;
    z-index: 1;
    height: 0;
}
.swiper-progress-bar .slide_progress-bar {
    position: absolute;
    height: 4px;
    background: rgba(0, 0, 0, 0.3);
    width: auto;
    clear: both;
    opacity: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.swiper-progress-bar .slide_progress-bar:after {
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    height: 100%;
    width: 0;
    content: "";
}
.swiper-progress-bar.active .slide_progress-bar {
    opacity: 1;
}
.swiper-progress-bar.animate .slide_progress-bar:after {
    transition: width linear;
    transition-delay: unset;
    width: 100%;
    transition-duration: 3s;
}

.swiper-pagination-fraction{
    background: rgba(0,0,0,0.85);
    width: AUTO;
    left: 48%;
    right: 48%;
    color: #fff;
    padding: 5px 0;
    font-size: 0.8rem;
}

.swiper-button-prev:focus, 
.swiper-button-next:focus{
    outline: none;
}

@media all and (max-width: 480px) {
    .page-home{
        padding-top:75px !important;
    }

    .swiper-pagination-fraction{
        left: 43%;
        right:43%;
    }

    .swiper-button-prev,
    .swiper-button-next{
        width: 25px !important;
        height: 55px !important;
    }

    .swiper-button-prev:after, 
    .swiper-button-next:after{
        font-size: 1.2rem;
    }

    .swiper-container {
        width: 100%;
        height: auto;
    }
    
    .swiper-container::before {
        background-color: transparent;
    }
}
