/*
 * jQuery sliders Plugin with easing and transitions
 * Examples at http://www.dylan-foster.com/sliders
 * Copyright (c) 2014 Dylan Foster | Fostered Development
 * Version 1.0.0
 * Licensed under MIT
 */
/*
    Created on : Mar 22, 2014, 9:47:18 AM
    Author     : dylan_foster
*/

.sliders {
    position: relative;
    width: 100%;
    max-width: 1280px;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 10px;
}
.sliders > figure {
    position: absolute;
    opacity: 0;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
}
.sliders > figure img {
    width: 100%;
}
.sliders > figure > figcaption {
    width: 100%;
    left: 0;
    bottom: 0;
    top: 250px;
    min-height: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Gruppo';
    font-size: 20px;
}
.sliders > figure > figcaption > p {
    padding: 20px;
}
.page {
    z-index: 5;
}
#arrow_left {
    background: url(images/arrow_left.svg)no-repeat;
    background-size: cover;
    width: 75px;
    height: 75px;
    position: absolute;
    bottom: 50%;
    margin-bottom: -175px;
    left: 0px;
    margin-left: 1rem;
}
#arrow_right {
    background: url(images/arrow_right.svg)no-repeat;
    background-size: cover;
    width: 75px;
    height: 75px;
    position: absolute;
    bottom: 50%;
    margin-bottom: -175px;
    right: 0px;
    margin-right: 1rem;
}
ul.pager {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    margin-left: -150px;
    bottom: 15px;
}
li.page {
    text-indent: -9999px;
    display: inline-block;
    height: 20px;
    width: 20px;
    text-align: center;
    background: #D2E1E1;
    padding: 10px;
    margin: 10px;
    border-radius: 50%;
}