

/* General Demo Style */
body{
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
	overflow: hidden;
}
.ie-note {
	color: #7b0c31;
	font-size: 30px;
	text-align: center;
	padding: 20px;
	display: none;
}

.sl-slider {
	position: absolute;
	top: 0;
	left: 0;
	font-family: 'Montserrat', Arial, sans-serif;
	z-index:-999;
}

/* Navigation arrows */

.sl-slider nav span {
	position: fixed;
	z-index: 2000;
	top: 50%;
	width: 43px;
	height: 43px;
	margin-top: -40px;
	cursor: pointer;
	
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.sl-slider nav span:hover {
	border-color: rgba(150,150,150,0.9);
}

.sl-slider nav span.sl-prev {
	left: 60px;
	border-right: none;
	border-top: none;
}

.sl-slider nav span.sl-next {
	right: 60px;
	border-left: none;
	border-bottom: none;
}

.sl-slider nav span.sl-prev.show-on-phones {
	left: -20px;
	border-right: none;
	border-top: none;
}
.sl-slider nav span.sl-prev.show-on-phones:hover {
	left: 0px;
}

.sl-slider nav span.sl-next.show-on-phones {
	right: -20px;
	border-left: none;
	border-bottom: none;
}
.sl-slider nav span.sl-next.show-on-phones:hover  {
	right: 0px;
}

/* Slide wrapper and slides */

.sl-slide, .sl-slides-wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
} 

.sl-slide {
	z-index: 1;
}

/* The duplicate parts/cuts */

.sl-content-cut {
	overflow: hidden;
	position: absolute;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	background: #fff;
}

/* Horizontal cut */

.sl-slide-horizontal .sl-content-cut {
	width: 100%;
	height: 50%;
	left: -200px;
}

.sl-slide-horizontal .sl-content-cut:first-child {
	top: -200px;
	padding: 200px 200px 0px 200px;
}

.sl-slide-horizontal .sl-content-cut:nth-child(2) {
	top: 50%;
	padding: 0px 200px 200px 200px;
}

/* Vertical cut */

.sl-slide-vertical .sl-content-cut {
	width: 50%;
	height: 100%;
	top: -200px;
}

.sl-slide-vertical .sl-content-cut:first-child {
	left: -200px;
	padding: 200px 0px 200px 200px;
}

.sl-slide-vertical .sl-content-cut:nth-child(2) {
	left: 50%;
	padding: 200px 200px 200px 0px;
}

/* Content wrapper */
/* Width and height is set dynamically */
.sl-content-wrapper {
	position: absolute;
}

.sl-content {
	width: 100%;
	height: 100%;
	background: #fff;
}
.sl-slide .bac{
	width:100%;
	height:100%;
}
/* Content elements */

.sl-deco{
	width: 160px;
	height: 160px;
	border-bottom: 4px solid #ddd;
	border-bottom: 4px solid rgba(150,150,150,0.4);
	position: absolute;
	bottom: 50%;
	left: 50%;
	margin-left: -80px;
}

[data-icon]:after {
    content: attr(data-icon);
    color: #000;
	text-shadow: 0 0 1px #000;
	position: absolute;
	width: 220px;
	height: 220px;
	line-height: 220px;
	text-align: center;
	font-size: 60px;
	top: 50%;
	left: 50%;
	margin: -110px 0 0 -110px;
}

.sl-slide h2 {
	color: #000;
	text-shadow: 0 0 1px #000;
	padding: 20px;
	position: absolute;
	font-size: 34px;
	font-weight: 300;
	letter-spacing: 13px;
	text-transform: uppercase;
	width: 80%;
	left: 9.6%;
	text-align: center;
	line-height: 50px;
	bottom: 50%;
	margin: 0 0 -120px 0;
}

.sl-slide h2.show-on-phones {
	color: #000;
	text-shadow: 0 0 1px #000;
	padding: 20px;
	position: absolute;
	font-size: 20px;
	font-weight: 300;
	letter-spacing: 13px;
	text-transform: uppercase;
	width: 80%;
	left: 9.6%;
	text-align: center;
	line-height: 50px;
	top: 70px;
	margin: 0 0 -120px 0;
}

.sl-slide blockquote {
	position: absolute;
	width: 30%;
	text-align: center;
	left: 35%;
	font-size: 13px;
	line-height: 20px;
	height: 70px;
	color: #8b8b8b;
	z-index: 2;
	bottom: 50%;
	margin: 0 0 -200px 0;
	padding: 10px;
	background:#FFF;
}



.sl-slide blockquote cite {
	font-size: 10px;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 4px;
}

/* Dark slides */
.sl-slide-dark .sl-content-cut,
.sl-slide-dark .sl-content {
	background: #000;
}

.sl-slide-dark [data-icon]:after,
.sl-slide-dark.sl-slide h2 {
	color: #fff;
}

.sl-slide-dark.sl-slide blockquote:before {
	color: #222;
}



/* Animations for elements */

.sl-trans-elems .sl-deco{
	-webkit-animation: roll 1s ease-out both;
	-moz-animation: roll 1s ease-out both;
	-o-animation: roll 1s ease-out both;
	-ms-animation: roll 1s ease-out both;
	animation: roll 1s ease-out both;
}
.sl-trans-elems h2{
	-webkit-animation: moveUp 1s ease-in-out both;
	-moz-animation: moveUp 1s ease-in-out both;
	-o-animation: moveUp 1s ease-in-out both;
	-ms-animation: moveUp 1s ease-in-out both;
	animation: moveUp 1s ease-in-out both;
}
.sl-trans-elems blockquote{
	-webkit-animation: fadeIn 0.5s linear 0.5s both;
	-moz-animation: fadeIn 0.5s linear 0.5s both;
	-o-animation: fadeIn 0.5s linear 0.5s both;
	-ms-animation: fadeIn 0.5s linear 0.5s both;
	animation: fadeIn 0.5s linear 0.5s both;
}
@-webkit-keyframes roll{
	0% {-webkit-transform: translateX(500px) rotate(360deg); opacity: 0;}
	100% {-webkit-transform: translateX(0px) rotate(0deg); opacity: 1;}
}
@-moz-keyframes roll{
	0% {-moz-transform: translateX(500px) rotate(360deg); opacity: 0;}
	100% {-moz-transform: translateX(0px) rotate(0deg); opacity: 1;}
}
@-o-keyframes roll{
	0% {-o-transform: translateX(500px) rotate(360deg); opacity: 0;}
	100% {-o-transform: translateX(0px) rotate(0deg); opacity: 1;}
}
@-ms-keyframes roll{
	0% {-ms-transform: translateX(500px) rotate(360deg); opacity: 0;}
	100% {-ms-transform: translateX(0px) rotate(0deg); opacity: 1;}
}
@keyframes roll{
	0% {transform: translateX(500px) rotate(360deg); opacity: 0;}
	100% {transform: translateX(0px) rotate(0deg); opacity: 1;}
}
@-webkit-keyframes moveUp{
	0% {-webkit-transform: translateY(40px);}
	100% {-webkit-transform: translateY(0px);}
}
@-moz-keyframes moveUp{
	0% {-moz-transform: translateY(40px);}
	100% {-moz-transform: translateY(0px);}
}
@-o-keyframes moveUp{
	0% {-o-transform: translateY(40px);}
	100% {-o-transform: translateY(0px);}
}
@-ms-keyframes moveUp{
	0% {-ms-transform: translateY(40px);}
	100% {-ms-transform: translateY(0px);}
}
@keyframes moveUp{
	0% {transform: translateY(40px);}
	100% {transform: translateY(0px);}
}
@-webkit-keyframes fadeIn{
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-moz-keyframes fadeIn{
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-o-keyframes fadeIn{
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-ms-keyframes fadeIn{
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes fadeIn{
	0% {opacity: 0;}
	100% {opacity: 1;}
}

.sl-trans-back-elems .sl-deco{
	-webkit-animation: scaleDown 1s ease-in-out both;
	-moz-animation: scaleDown 1s ease-in-out both;
	-o-animation: scaleDown 1s ease-in-out both;
	-ms-animation: scaleDown 1s ease-in-out both;
	animation: scaleDown 1s ease-in-out both;
}
.sl-trans-back-elems h2{
	-webkit-animation: fadeOut 1s ease-in-out both;
	-moz-animation: fadeOut 1s ease-in-out both;
	-o-animation: fadeOut 1s ease-in-out both;
	-ms-animation: fadeOut 1s ease-in-out both;
	animation: fadeOut 1s ease-in-out both;
}
.sl-trans-back-elems blockquote{
	-webkit-animation: fadeOut 1s linear both;
	-moz-animation: fadeOut 1s linear both;
	-o-animation: fadeOut 1s linear both;
	-ms-animation: fadeOut 1s linear both;
	animation: fadeOut 1s linear both;
}
@-webkit-keyframes scaleDown{
	0% {-webkit-transform: scale(1);}
	100% {-webkit-transform: scale(0.5);}
}
@-moz-keyframes scaleDown{
	0% {-moz-transform: scale(1);}
	100% {-moz-transform: scale(0.5);}
}
@-o-keyframes scaleDown{
	0% {-o-transform: scale(1);}
	100% {-o-transform: scale(0.5);}
}
@-ms-keyframes scaleDown{
	0% {-ms-transform: scale(1);}
	100% {-ms-transform: scale(0.5);}
}
@keyframes scaleDown{
	0% {transform: scale(1);}
	100% {transform: scale(0.5);}
}
@-webkit-keyframes fadeOut{
	0% {opacity: 1;}
	100% {opacity: 0;}
}
@-moz-keyframes fadeOut{
	0% {opacity: 1;}
	100% {opacity: 0;}
}
@-o-keyframes fadeOut{
	0% {opacity: 1;}
	100% {opacity: 0;}
}
@-ms-keyframes fadeOut{
	0% {opacity: 1;}
	100% {opacity: 0;}
}
@keyframes fadeOut{
	0% {opacity: 1;}
	100% {opacity: 0;}
}