/*!
 * JR Slider Stylesheet
 *
 * @package JR Slider
 * @since JR Slider 1.0
 */

/**
 * Table of Contents:
 *
 * 1.0 - Default Styles
 * 2.0 - Slider Images
 * 3.0 - Slider Info
 * 4.0 - Slider Buttons
 * 5.0 - Button Icons
 * 6.0 - Responsive Touches
 * -----------------------------------------------------------------------------
 */

/*-----------------------------------------------------------------------------------*/
/*	1.0 - Default styles
/*-----------------------------------------------------------------------------------*/
.jrslider {
    display: block;
    position: relative;
    width: 99vw !important;
    height: 100vh !important;
    max-width: unset !important;
    margin: 0 auto;
    margin-left: calc(50% - 49.5vw) !important;
    margin-right: calc(50% - 49.5vw) !important;
    overflow: hidden;
}

.jrslider .no-gutters {
	margin-left: 0;
	margin-right: 0;
}

.clearfix:before,
.clearfix:after {
	display: table;
	content: " ";
}

.clearfix:after {
	clear: both;
}

.vertical-alignment-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}

.vertical-align-center,
.vertical-align-bottom,
.vertical-align-top {
	width: 100%;
	z-index: 2;
}

.vertical-align-bottom {
	align-self: flex-end;
}

.vertical-align-top {
	align-self: flex-start;
}

.slide-wrapper-main {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.slide-wrapper-secondary {
    display: inline-block;
    position: absolute;
    top: auto;
    bottom: 0px;
    left: auto;
    right: 0;
    width: 25%;
    height: 45%;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.jrslider .slide-wrapper-secondary .slide-info h3,
.jrslider .slide-wrapper-secondary .slide-info a,
.jrslider .slide-wrapper-secondary .slide-info p {
	color: #fff;
}

.jrslider .slide-wrapper-secondary .slide-info p a {
	text-decoration: underline;
	margin-left: 10px;
}

.jrslider-item .content-area {
    height: auto;
    max-height: 35vh;
}

.jrslider-item {
    position: relative;
    height: 100vh;
    min-width: 100%;
}

.jrslider-item .slide-wrapper-secondary.slide-1 {
    right: 25%;
}

/*-----------------------------------------------------------------------------------*/
/*	2.0 - Slider images
/*-----------------------------------------------------------------------------------*/
.jrslider .slide-image {
	display: block;
	position: relative;
	outline: none;
	overflow: hidden;
	height: 100%;
	width: 100%;
}

.jrslider .slide-image .slide-image-holder {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.jrslider .slide-image:after,
.slide-wrapper-secondary:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.35);
    width: 100%;
    height: 100%;
    z-index: 2;
}

/*-----------------------------------------------------------------------------------*/
/*	3.0 - Slider Info
/*-----------------------------------------------------------------------------------*/
.jrslider .slide-info {
	position: relative;
	width: 100%;
	padding: 0 10%;
	z-index: 3;
}

.jrslider .slide-info a,
.jrslider .slide-info a:focus,
.jrslider .slide-info a:active {
	text-decoration: none;
	outline: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}

.jrslider .slide-info h3 {
	font-size: 30px;
	line-height: 1.5em;
	margin: 0 0 15px;
}

.jrslider .slide-wrapper-secondary .slide-info h3 {
	font-size: 24px;
}

.jrslider .slide-info h3 a:hover,
.jrslider .slide-info p a:hover {
	opacity: 0.7;
}

.jrslider .slide-info .slide-excerpt {
	line-height: 1.25em;
	margin: 20px 0 40px;
}

.jrslider .slide-wrapper-secondary .slide-info .slide-excerpt {
    margin-bottom: 0;
}

/*-----------------------------------------------------------------------------------*/
/*	4.0 - Slider Buttons:: Icons
/*-----------------------------------------------------------------------------------*/
.jrslider-button i {
	margin-right: 5px;
	font-weight: 400;
	font-size: 1.1em;
	letter-spacing: normal;
}

/*-----------------------------------------------------------------------------------*/
/*	5.0 - Slider Buttons:: Navigation
/*-----------------------------------------------------------------------------------*/
.jrslider .slick-next,
.jrslider .slick-prev {
	font-size: 0;
	left: 1%;
	right: auto;
	right: calc(50% - 100px);
	bottom: calc(45% - 21px);
	left: auto;
	top: auto;
	width: 100px;
	height: 50px;
	line-height: 65px;
	color: #fff;
	background: #333;
	border: none;
	border-radius: 0;
	z-index: 3;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.jrslider .slick-next:hover,
.jrslider .slick-prev:hover {
	color: #eee;
	background: #111;
}

.jrslider .slick-next {
	right: calc(50% - 200px);
}

body.single-jrslider .jrslider .slick-next,
body.single-jrslider .jrslider .slick-prev {
	bottom: calc(45% - 21px);
}

.jrslider .slick-next:before,
.jrslider .slick-prev:before {
    display: inline-block;
    font-size: 22px;
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.jrslider .slick-dots li {
	margin: 0 3px;
}

.jrslider .slick-dots li button:before {
	content: "\f111";
	font-family: "FontAwesome";
	font-size: 8px;
}

/*-----------------------------------------------------------------------------------*/
/*	6.0 - Responsive Touches
/*-----------------------------------------------------------------------------------*/
@media (max-width: 992px) {
	.jrslider .slide-image {
		min-height: 35vh;
	}
	.slide-wrapper-secondary,
	.jrslider-item .slide-wrapper-secondary.slide-1 {
		width: 50%;
		height: 30vh;
	}

	.jrslider-item .slide-wrapper-secondary.slide-1 {
		left: 0;
		right: auto;
	}

	.jrslider-item .content-area {
		padding: 40px 0;
	}

	.slide-wrapper-main {
		height: 70vh;
	}

	.jrslider .slick-next,
	.jrslider .slick-prev {
		left: 15px;
		right: auto;
		bottom: calc(45% - 50px);
		width: 50px;
	}

	.jrslider .slick-next {
		right: 15px;
		left: auto;
	}

	.jrslider .slick-next:before,
	.jrslider .slick-prev:before {
		font-size: 20px;
	}

	.jrslider .slide-info {
		padding: 0 20%;
		text-align: center;
	}
	
	.jrslider .slide-info h3 {
		font-size: 24px;
		line-height: 1.25em;
	}

	.jrslider .slide-wrapper-secondary .slide-info h3 {
		font-size: 18px;
	}

	.jrslider .slide-wrapper-secondary .slide-info {
		padding: 0 10%;
	}
}

@media (max-width: 600px) {

	.jrslider .slide-info {
		padding: 0 18%;
		text-align: center;
	}
	
	.jrslider .slide-info h3 {
		font-size: 20px;
		line-height: 1.25em;
	}

	.jrslider .slide-wrapper-secondary .slide-info h3 {
		font-size: 15px;
	}

	.jrslider .slide-wrapper-secondary .slide-info {
		padding: 0 10%;
	}

	.jrslider .slick-next,
	.jrslider .slick-prev {
		left: 10px;
		width: 40px;
	}

	.jrslider .slick-next {
		right: 10px;
		left: auto;
	}
	
	.jrslider .slide-info .slide-excerpt {
		font-size: 13px;
		margin: 10px 0 25px;
	}
}