.slider {

    width: 100%;
    /* background-color: dimgrey; /* DEBUG ONLY */
    border: 0;
    padding: 0;
    overflow: hidden;
    margin:0;

}

.slides {

    width: 100%;
    /*background-color: red; /* DEBUG ONLY */
    display: none;
    position:relative;
    overflow: hidden;
    justify-content: space-evenly;
    animation:animateright 0.4s
}

@keyframes animateright{
    from{right:-500px;opacity:0} to {right:0;opacity:1}
}

.slide {

    width: 30%;
    min-height: 300px;
    height: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
    margin: 25px 0 25px 0;
    box-shadow: 10px 10px 5px grey;
    border-radius: 15px;

}

.slide:hover {

    cursor: pointer;

}

.slide_title {

    width: 100%;
    background-color: #A2BED2;
    color: white;
    font-size: 150%;
    text-align: center;
    padding: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    text-transform: uppercase;

}

.slide_img {

    width: 50%;
    background-image: url("../img/sample4.png");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;

}

.slideWhere {

    padding: 5px 0 5px 30px;
    background-position: left;
    background-size: 25px;
    color: dimgrey;
    background-image: url("../img/whereIcon.png");
    background-repeat: no-repeat;

}

.slideWhen {

    padding: 5px 0 5px 30px;
    min-height: 50px;
    background-position: left;
    background-size: 25px;
    background-repeat: no-repeat;
    color: dimgrey;
    background-image: url("../img/whenIcon.png");

}

.slideCreds {

    padding: 5px 0 5px 30px;
    background-position: left;
    background-size: 25px;
    background-repeat: no-repeat;
    color: dimgrey;
    background-image: url("../img/certificate.png");

}

@media screen and (max-width: 1366px) {

    .slide {

        width: 45%;

    }

}