/* 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
------------------------------------------------------------------------------*/
.fcslider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #555;
}

.fcslide {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fcslide img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    cursor: default;
}

.fcslide-content {
    position: absolute;
    bottom: 15%;
    width: 100%;
    text-align: center;
}

.fcslide-title {
    font-size: 50px;
	color: #fff;
    text-shadow: 0 .125em .3125em rgba(0, 0, 0, 0.6), 0 0 .3125em rgba(0, 0, 0, 0.5);
}
.fcslide-text {
    font-size: 18px;
	color: #eee;
	text-shadow: 0 .125em .3125em rgba(0, 0, 0, 0.6), 0 0 .3125em rgba(0, 0, 0, 0.5);
}

.fcslider-nav {
    position: absolute;
    top: 50%;
    right: 0;
	margin-top: -25px;
    width: 100%;
    z-index: 10;
}

.next-fcslide,
.prev-fcslide {
    position: absolute;
    display: inline-block;
    width: 3.125rem;
    height: 3.125rem;
    line-height: 3.125;
    margin: 0;
	border-radius: 50%;
    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-fcslide {
    left: 2%;
}

.next-fcslide {
    right: 2%;
}

.next-fcslide:hover,
.prev-fcslide:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.next-fcslide::before,
.prev-fcslide::before {
    position: absolute;
    top: 36%;
    display: inline-block;
    width: .8125rem;
    height: .8125rem;
    content: "";
    border-left: .25rem solid white;
    border-top: .25rem solid white;
    backface-visibility: hidden;
}

.prev-fcslide::before {
    transform: rotate(-45deg);
    right: 30%;
}

.next-fcslide::before {
    transform: rotate(135deg);
    left: 30%;
}
@media screen and (max-width: 42.5em) {
    .next-fcslide,
    .prev-fcslide {
        display: none;
    }
}
@media screen and (max-width: 61.25em) {
    .fcslider {
        max-height: 57.95918367vw;
    }
}
@media screen and (min-height: 61.25em) {
    .fcslider {
        max-height: 57.95918367vw;
    }
}

@media screen and (max-width: 768px) {
.fcslider {
    min-height: 250px !important;
	margin-bottom: 15px;
}
.fcslide-content {
    position: absolute;
    bottom: 5%;
    width: 100%;
    text-align: center;
}
.fcslide-title {
    font-size: 25px;
    color: #fff;
}	
	
}