.slideContainer{
    display: block;
    width: 100%;
    height: 400px;
    margin: 0px auto;
    padding: 5px;
    border-radius: 5px;
    position: relative;
}

.slideImage, .image_mobile{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    display: none;
}
.slideImages img{
    display: none;
}
.slideControlLeft, .slideControlRight{
    font-size: 70px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    opacity: 0.3;
    color: darkgrey;
    background-size: contain;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-clip: padding-box;
    transition: width 0.5s, height 0.5s;
}

.slideControlLeft{
   left: 5px;
  /* background-image: url(../img/Icons/arrowLeft.png);*/
}

.slideControlRight{
    right: 5px;
   /* background-image: url(../img/Icons/arrowRight.png);*/
}

.slideControlLeft:hover, .slideControlRight:hover{
    opacity: 0.8;
    cursor: pointer;
    box-shadow: 0 0 20px snow;
    border: thick double snow;
    background-color: lightgrey;
    width: 40px;
    height: 40px;
}

@media screen and (max-width: 900px){
    .slideContainer{
        /*height: 400px;*/
    }
}

@media screen and (max-width: 750px){
    .slideContainer{
        /*height: 300px;*/
    }
}

@media screen and (max-width: 590px){
    .slideContainer{
        height: 150px;
        width: 100%;
    }

    .slideControlLeft, .slideControlRight{
        width: 20px;
        height: 20px;
    }

    .slideControlLeft:hover, .slideControlRight:hover{
        width: 30px;
        height: 30px;
    }

}

.slideItemContainer{
    position: absolute;
    width: 100%;
    height: auto;
    text-align: center;
    bottom: 0;
}

.slideItemPoint{
    width: 15px;
    height: 15px;
    opacity: 0.6;
    margin: 0 5px;
    border-radius: 50%;
}

.slideItemPoint:hover{
    opacity: 0.8;
    box-shadow: 0 0 10px deepskyblue;
}

