/* Content Slider
------------------------------------------------------------------------------*/
.slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #555;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    cursor: default;
}

.slide-content {
    position: absolute;
    bottom: 20%;
    width: 100%;
    text-align: center;
    color: #fff;
    text-shadow: 0 .125em .3125em rgba(0, 0, 0, 0.6), 0 0 .3125em rgba(0, 0, 0, 0.5);
}

.slide-title {
    font-size: 10vw;
}

.slider-nav {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    z-index: 10;
}

.next-slide,
.prev-slide {
    position: absolute;
    display: inline-block;
    width: 3.125rem;
    height: 3.125rem;
    line-height: 3.125;
    margin: 0;
    border: .125rem solid white;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    overflow: hidden;
    cursor: pointer;
    z-index: 20;
    transition: all .3s ease-in-out 0s;
    -webkit-user-select: none;
    user-select: none;
}

.prev-slide {
    left: 2%;
}

.next-slide {
    right: 2%;
}

.next-slide:hover,
.prev-slide:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.next-slide::before,
.prev-slide::before {
    position: absolute;
    top: 33%;
    display: inline-block;
    width: .8125rem;
    height: .8125rem;
    content: "";
    border-left: .25rem solid white;
    border-top: .25rem solid white;
    backface-visibility: hidden;
}

.prev-slide::before {
    transform: rotate(-45deg);
    right: 25%;
}

.next-slide::before {
    transform: rotate(135deg);
    left: 25%;
}
@media screen and (max-width: 42.5em) {
    .next-slide,
    .prev-slide {
        display: none;
    }
}
@media screen and (max-width: 61.25em) {
    .slider {
        max-height: 450px;
    }
}
@media screen and (min-height: 61.25em) {
    .slider {
        max-height: 57.95918367vw;
    }
}
