﻿ 

/* Hide the images by default */
.slider_item {
    display: none;
}
.slider-active{
    display:block
}
.proj-projectContainer{
    display :flex;
}
/* Next & previous buttons */
 
 

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

 

.image-Slider{
    position:relative;

}
.slider_item{
    position:absolute;
}
.image-slider-next {
    position: absolute;
    top: 50%;
    right: 5px;
}
.image-slider-prev{
    position:absolute;
    top:50%;
    left:5px;
}
.image-slider-next, .image-slider-prev{
    cursor : pointer;
}
.image-slider-next.SliderBtn-deactive {
    opacity: 0.0;
}
    .image-slider-prev.SliderBtn-deactive {
        opacity: 0.0;
    }