/* Full Screen jQuery Content Slider <https://github.com/jacobxperez/full-screen-jquery-content-slider>
 * Copyright (C) 2020 Jacob Perez <jacobxperez@gmx.com>
 * Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0
------------------------------------------------------------------------------*/

/* Reset
------------------------------------------------------------------------------*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 none;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    text-align: inherit;
    vertical-align: baseline;
    background-color: transparent;
    color: inherit;
    outline: 0;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
}

summary {
    display: list-item;
}

body,
html {
    height: 100%;
}

html {
    font-size: 100%;
}

body {
    overflow: auto;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Nimbus Sans L", "Liberation Sans", FreeSans, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    color: #555;
    background-color: #fff;
}
/* Content Slider
------------------------------------------------------------------------------*/
.slider {
    position: relative;
    width: 100%;
    height: 100%;
    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: 40%;
    right: 0;
    width: 100%;
    z-index: 10;
}

/*.prev-slide{*/
    /*background-image: url("../img/pr-left.png");*/
    /*background-repeat: no-repeat;*/
    /*width: 77px;*/
    /*height: 124px;*/
/*}*/
/*.next-slide{*/
    /*background-image: url("../img/pr-right.png");*/
    /*background-repeat: no-repeat;*/
    /*width: 77px;*/
    /*height: 124px;*/
/*}*/
.next-slide,
.prev-slide {
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 124px;
    line-height: 3.125;
    margin: 0;
    backface-visibility: hidden;
    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: 0%;
}

.next-slide {
    right: 0%;
}

.prev-slide::before {
    transform: rotate(-45deg);
    right: 25%;
}

.next-slide::before {
    transform: rotate(135deg);
    left: 25%;
}
@media screen and (max-width: 42.5em) {
}
@media screen and (max-width: 61.25em) {
    .slider {
        max-height: 57.95918367vw;
    }
}
@media screen and (min-height: 61.25em) {
    .slider {
        max-height: 57.95918367vw;
    }
}


@media screen and (max-width: 768px) {
    .slider-box {
        height: 35vw;
    }
    .next-slide, .prev-slide{
        width: 50px;
    }
    .slider-nav{
        top: 30%;
    }
}