/* Styles for CSS-only slider */

#slideshow {
    position: relative;
    width: 100%;
    height: 250px;
    margin: 0;
    padding: 0;
    background-color: rgba(17,17,17,.9);
    margin-bottom: calc(0.5rem + 0.5vh);
}
#slideshow > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
}
#slideshow > div a {
    text-align: center;
}
#slideshow > div .title {
    position: absolute;
    left: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    min-height: 35px;
    width: 100%;
    background-color: rgba(17, 17, 17, 0.8);
    padding: 3px 10px;
}
#slideshow i.fa {
    position: absolute;
    top: 95px;
    color: #eee;
    cursor: pointer;
    z-index: 999;
}
#slideshow i.fa-angle-left {
    left: 10px;
}
#slideshow i.fa-angle-right {
    right: 10px;
}
#slideshow img {
    height: 100%;
    width: auto;
}
@media screen and (min-width: 366px) and (max-width: 991px) {
    #slideshow {
        height: 210px;
    }
    #slideshow i.fa {
        top: 75px;
    }
    #slideshow .logo {
        width: 60px;
        height: 60px;
    }
}
@media screen and (max-width: 365px) {
    #slideshow {
        height: 170px;
    }
    #slideshow i.fa {
        top: 55px;
    }
    #slideshow .logo {
        width: 45px;
        height: 45px;
    }
}