﻿
@media only screen and (min-width: 200px) {
    #slides {
        position: relative;
        height: 50px;
        padding: 0px;
        margin: 0px;
        list-style-type: none;
        text-align: center;
    }
}

@media only screen and (min-width: 768px) 
{
    #slides {
        position: relative;
        height: 300px;
        padding: 0px;
        margin: 0px;
        list-style-type: none;
        text-align: center;
    }
}

@media only screen and (min-width: 1400px) {
    #slides {
        position: relative;
        height: 450px;
        padding: 0px;
        margin: 0px;
        list-style-type: none;
        text-align: center;
    }
}

.slide {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    opacity: 0;
    z-index: 1;
    text-align: center;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.showing {
    opacity: 1;
    z-index: 2;
}

.slide {
    font-size: 40px;
    box-sizing: border-box;
    /*background: #333;*/
    color: #fff;
}


figcaption {
    color: #fff;
    font-family: "Kaushan Script","Lato","arial";
    font-size: 22px;
    background: rgba(128, 128, 128, 0.60);
    /*background: rgba(1, 144, 238, 0.76);*/
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    /*line-height: 50px;*/
    /*height: 50px;*/
    z-index: 5;
    text-align: left;
    padding-left: 15px;
}
