/* 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
------------------------------------------------------------------------------*/

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: 580px;
	display:block;
	float:left;
    /* overflow: hidden; */
    /* background-color: #555; */
}

.slide2 {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: auto;
    /* overflow: hidden; */
}

.slide2 img {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    /* cursor: default; */
}

.slide-content {
    position: absolute;
    bottom: 50%;
    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: 60px;
}

.slider-nav {
    position: absolute;
    top: 40%;
    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: block;
    }
	.slider-nav {
    position: absolute;
    top: 20%;
    right: 0;
    width: 100%;
    z-index: 10;
}
}
@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 (max-width: 1370px) {
	
	.slider {
    position: relative;
    width: 100%;
    height: 400px;
	display:block;
	float:left;
    /* overflow: hidden; */
    /* background-color: #555; */
}
	
	
}
