@charset "utf-8";

@import url('fonts.css');

*, 
*::after,
*::before { border-box; box-sizing: border-box; padding:0; margin:0;}
.clearfix:before, .clearfix:after { content: ''; display: table; }
.clearfix:after { clear: both; }

body {
	font-size: 16px;
	font-family: 'Roboto', Arial, sans-serif;
	color: #E9ECEC;
	background: #111811;
}

html, 
body,
.js .container,
.js .dragslider,
.js .img-dragger .handle {
	height: 100%;
}

input,
textarea,
button{font-family: 'Roboto-Medium';}

ul,
ol{list-style:none;}

html.js,
.js body {
	overflow: hidden;
	position: relative;
}

a {
	color: #fff;
	text-decoration: none;
	outline: none;
}

a:hover, a:focus {
	color: #c5d3d6;
}

.js .header{
	position: fixed;
	z-index: 1000;
}

.header {
	margin: 0 auto;
	width: 100%;
	left: 0;
	top: 0;
	padding:15px;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.message {
	display: none;
	clear: both;
	color: #f39c12;
}

.overlay {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(17,24,17,0.95);
	z-index: 10000;
}

.no-js .overlay, 
.overlay.hide {
	-webkit-transition: opacity 0.3s, visibility 0.3s;
	transition: opacity 0.3s, visibility 0.3s;
	visibility: hidden;
}

.info {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 80%;
	width: 100%;
}

.info span {
	display: inline-block;
	width: 180px;
	height: 180px;
	padding: 10px;
	margin: 4px;
	text-align: center;
	vertical-align: top;
	background-size: 75%;
	background-color: rgba(46,65,46,0.8);
	background-repeat: no-repeat;
	background-position: 50% 85%;
	border-radius: 2px;
}

.info span.info-drag {background-image: url(../images/assets/drag.svg);}

.info span.info-keys {background-image: url(../images/assets/keys.svg);}

.info span.info-switch {
	background-image: url(../images/assets/switchmin.svg);
	background-size: 65%;
}

.info button {
	font-size: 13px;
	color: #2e412e;
	padding: 13px 39px;
	letter-spacing: 1px;
	text-transform: uppercase;
	display: block;
	margin: 22px auto 0 auto;
	outline: none;
	cursor: pointer;
	background: #eaeaea;
	border: 2px solid #eaeaea;
	border-radius: 2px;
	-webkit-transition:all .2s ease-in-out;
	-moz-transition:all .2s ease-in-out;
	transition:all .2s ease-in-out;
}

.info button:hover {
	background: #7CA27C;
	border-color: #7CA27C;
}

.dragdealer {
  position: relative;
  height: 30px;
}

.dragdealer .handle {
  position: absolute;
  top: 0;
  left: 0;
}

.dragdealer .red-bar {
  width: 100px;
  height: 30px;
  background: #CC0000;
  color: #FFF;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
}

.dragdealer .disabled {
  background: #898989;
}

.js .dragslider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(.7,0,.3,1);
	transition: transform 0.6s cubic-bezier(.7,0,.3,1);
}

.dragslider.show-content {
	-webkit-transform: translate3d(0,-100%,0);
	transform: translate3d(0,-100%,0);
}

.dragslider h2 {
	font-family: 'Roboto';
	font-weight: normal;
	font-size: 5.5em;
	margin: 0 auto;
	line-height: 1;
	position: relative;
}

.no-js .dragslider h2 {
	padding: 15px;
}

/* Switch button */
button.slider-switch {
	float: right;
	font-size: 0;
	width: 80px;
	height: 80px;
	padding: 0;
	color: transparent;
	position: relative;
	border: none;
	background: url(../images/assets/switchmin.svg) no-repeat center center;
	background-size: 90%;
	outline: none;
	overflow: hidden;
	opacity: 0.7;
	cursor: pointer;
	border-radius: 50%;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	pointer-events: auto;
}

.home-bttn{
	display: block;
	width: 72px;
	height: 72px;
	background: url('../images/icons/home.png') no-repeat center #fefefe;
	border-radius: 50%;
	-webkit-transition:all .2s ease-in-out;
	-moz-transition:all .2s ease-in-out;
	transition:all .2s ease-in-out;
}

.home-bttn:hover{background-color: #7CA27C;}

.no-js button.slider-switch {
	display: none;
}

button.slider-switch.view-maxi {
	background-image: url(../images/assets/switchmax.svg)
}

button.slider-switch:hover {
	opacity: 1;
}

/* Dragger */
.img-dragger {
	position: relative;
	z-index: 100;
}

.js .img-dragger {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%,-50%,0);
	transform: translate3d(-50%,-50%,0);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.js .img-dragger-large {
	width: 100%;
	height: 100%;
}

.js .img-dragger .handle {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	white-space: nowrap;
	font-size: 0;
}

.no-js .img-dragger,
.no-js .img-dragger .handle {
	height: auto;
	position: relative;
	text-align: center;
	font-size: 0;
	clear: both;
	white-space: nowrap;
	overflow: auto;
}

.no-js .img-dragger .handle {
	padding: 40px 0 0;
}

.img-dragger .slide {
	display: inline-block;
	position: relative;
	height: 100%;
	background: #567076;
	font-size: 16px;
	white-space: normal;
	cursor: -webkit-grab; 
	cursor: -moz-grab;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	vertical-align: top;
}

.no-js .img-dragger .slide {
	width: 300px;
	font-size: 7px;
	min-height: 200px;
}

.img-dragger .slide:active {
	cursor: -webkit-grabbing; 
	cursor: -moz-grabbing;
}

.img-wrap {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.img-wrap img {
	position: absolute;
	display: block;
	height: calc(100% + 0.2px);
	opacity: 0.5;
}

@media screen and (min-aspect-ratio: 1280/850) {
    .img-dragger .img-wrap  img {
        width: calc(100% + 0.2px);
        height: auto;
    }
}

.js .slide h2 {
	color: #fff;
	position: absolute;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.js .img-dragger-large .slide h2 {
	width: 100%;
	left: 0;
	top: 50%;
	text-align: center;
	text-shadow: 0 0 10px #121212;
	padding:0 30px;
	-webkit-transform: translate3d(0,-50%,0);
	transform: translate3d(0,-50%,0);
}

.img-dragger-small .slide h2 {
	font-size: 2.5em;
	padding-top: 1em;
	top: 100%;
	width: 100%;
	text-align: center;
	color: #2a2a2a;
	-webkit-animation: slideUpFade 0.4s 0.1s;
}

@-webkit-keyframes slideUpFade {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0,20px,0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0,0,0);
	}
}

.img-dragger-small .slide h2 span {
	font-size: 0.35em;
}

.img-dragger-small .slide.current h2 {
	color: #7CA27C;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-transition: color 0.3s, opacity 0.3s;
	transition: color 0.3s, opacity 0.3s;
}

.slide h2 i {
	font-style: normal;
	font-weight: normal;
}

button.content-switch {
	border: 2px solid #eaeaea;
	width: 160px;
	text-indent: 200%;
	overflow: hidden;
	white-space: nowrap;
	background: transparent;
	color: #eaeaea;
	font-family: 'Roboto';
	position: absolute;
	cursor: pointer;
	top: 100%;
	left: 50%;
	-webkit-transform: translate3d(-50%,-200%,0);
	transform: translate3d(-50%,-200%,0);
	padding: 1em 2em;
	font-size: 0.85em;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: normal;
	border-radius: 2px;
	outline: none;
	z-index: 1000;
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(.7,0,.3,1), opacity 0.3s, color 0.3s, border-color 0.3s;
	transition: transform 0.6s cubic-bezier(.7,0,.3,1), opacity 0.3s, color 0.3s, border-color 0.3s;
}

.no-js button.content-switch {
	display: none;
}

button.content-switch::before {
	content: '\e097';
	font-family: 'feathericons';
	speak: none;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	text-indent: 0;
	font-size: 1.5em;
	line-height: 0.75;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.show-content .current button.content-switch {
	border-color: #2E412E;
	background: #dfe3e3;
	color: #2E412E;
	-webkit-transform: translate3d(-50%,100%,0);
	transform: translate3d(-50%,100%,0);
}

.show-content .current button.content-switch::before {
	content: '\e096';
}

/* Content */
.js .pages {
	position: absolute;
	top: 100%;
	height: 0;
	width: 100%;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: height 0s 0.6s;
	transition: height 0s 0.6s;
}

.js .show-content .pages {
	-webkit-transition: none;
	transition: none;
	height: 100%;
}

.pages .content {
	background: #ffffff;
	text-align: center;
	color: #2c2c2c;
	font-size: 17px;
}

.js .pages .content {
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 100%;
	overflow: hidden;
	-webkit-transition: height 0s 0.6s;
	transition: height 0s 0.6s;
}

.pages .content.show {
	height: auto;
	-webkit-transition: none;
	transition: none;
}

.pages .content h2 {
	font-size: 4em;
	max-width: 100%;
	color: #252C2C;
	padding: 2.25em 10px 1em;
}

.no-js .pages .content h2 {
	padding-top: 1em;
}

.inner-content{
	max-width: 1100px;
	padding:0 15px;
	margin: 0 auto;
	text-align: left;
}

.inner-content p:first-child{margin-top:15px;}

.pages .content h2 span {color: #555C5C;}

.pages .content p {
	margin: 50px 0;
	line-height: 1.7;
	text-align: justify;
	font-family: 'Roboto';
}

.pages .content h4{
	font-size: 30px;
	margin:50px 0;
}

.js .pages .content h2,
.js .pages .content .inner-content {
	-webkit-transform: translate3d(0,200px,0);
	transform: translate3d(0,200px,0);
	-webkit-transition-property: opacity;
	transition-property: opacity;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: cubic-bezier(.7,0,.3,1);
	transition-timing-function: cubic-bezier(.7,0,.3,1);
}

.pages .content.show h2,
.pages .content.show .inner-content {
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
	-webkit-transition-property: -webkit-transform, opacity;
	transition-property: transform, opacity;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.pages .content.show .inner-content {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/* Switch */
.switch-min .img-dragger-large .slide > *:not(.img-wrap),
.switch-max .img-dragger-small .slide > *:not(.img-wrap)  { /* fade out everything except image */
	opacity: 0;
	-webkit-transition: none;
	transition: none;
}

.switch-min .img-dragger-large,
.switch-max .img-dragger-small {
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(.7,0,.3,1);
	transition: transform 0.6s cubic-bezier(.7,0,.3,1);
}

.img-dragger-small button.content-switch {
	opacity: 0;
	pointer-events: none;
}

/* Helper classes */
.no-transition {
	-webkit-transition: none !important;
	transition: none !important;
}

.hide {
	opacity: 0 !important;
	pointer-events: none !important;
}

.footer{
	width: 100%;
	overflow: hidden;
	font-size: 16px;
	color:#eaeaea;
	text-align: left;
	padding:22px 35px 20px 35px;
	margin-top:80px;
	background:#111811;
}

.author{float: right;}

.footer a{
	-webkit-transition:all .2s ease-in-out;
	-moz-transition:all .2s ease-in-out;
	transition:all .2s ease-in-out;
}

.copyright a:hover{color:#667A79;}
.author a:hover{color:darkorange;}

/**************************
********* _Tables **********
***************************/

table{
	width: 100%;
	border-collapse: collapse;
}

.table{
	width: 100%;
	overflow: hidden;
	margin:60px 0;
	border:1px solid #121212;
	border-top:none;
	border-radius: 2px;
}

.table tr{border-bottom: 1px solid #121212;}

.table tr:first-child,
.table tr:last-child{border-bottom: none;}

.table td,
.table th{
	font-size: 15px;
	color:#010101;
	text-align: left;
	padding:15px;
}

.table.centered td,
.table.centered th{text-align: center;}

.table td{border-right: 1px solid #121212;}

.table td:last-child{border-right:none;}

.table th{
	font-family: 'Roboto';
	font-weight: normal;
	font-size: 20px;
	color:#efefef;
	text-align: center;
	background: #2e412e;
}

.table-filter{
	font-family: 'Roboto-Medium';
	padding-right: 15px;
	cursor: pointer;
	background: url('../images/assets/arrow-down-black.png') no-repeat right 6px;
	-webkit-transition:all .2s ease-in-out;
	-moz-transition:all .2s ease-in-out;
	transition:all .2s ease-in-out;
}

.table-filter.active{background: url('../images/assets/arrow-up-black.png') no-repeat right center;}

.column-5{width: 5%;}
.column-10{width: 10%;}
.column-15{width: 15%;}
.column-20{width: 20%;}
.column-25{width: 25%;}
.column-30{width: 30%;}
.column-35{width: 35%;}
.column-40{width: 40%;}
.column-45{width: 45%;}
.column-50{width: 50%;}

td.has-ul{padding:0 !important;}

td.has-ul ul li{
	padding:10px;
	border-bottom: 1px dotted #eaeaea;
}

td.has-ul ul li:last-child{border-bottom: none;}

.gallery{
	text-align: center;
	margin:50px 0;
}

.gallery.left-aligned{text-align: left;}

.gallery-item{
	display: inline-block;
	vertical-align: top;
	width: 230px;
	height: 230px;
	text-align: center;
	overflow: hidden;
	padding-top:15px;
	margin:15px;
	background: #ffffff;
	border-radius: 2px;
}

.no-img-padd .gallery-item{padding:0;}

.list-items li{
	text-transform: capitalize;
	margin:12px 0;
}

.list-items li::before{
	content: '';
    display: inline-block;
    vertical-align: top;
    width: 9px;
    margin:8px 12px 0 0;
    height: 9px;
    background: #2e412e;
    border-radius: 2px;
}

.list-items ul{margin-left: 20px;}

.list-items ul li::before{
	width:6px;
	height: 6px;
	border-radius: 2px;
	margin:9px 10px 0 0;
}

.has-top-margin{margin-top:40px;}

.logos{border-top:1px dashed #7a7a7a;}

@media screen and (max-width: 63.125em) {
	.dragslider h2 {
		font-size: 2.8em;
	}
	.pages .content {
		font-size: 100%;
	}
	.pages .content h2 {
		font-size: 3em;
	}
}

@media screen and (max-width: 650px) {

	.gallery{margin:20px 0;}

	.gallery-item{margin:25px;}

	button.slider-switch {
		display: none;
	}

	.message {
		display: block;
	}
	.info span.info-keys,
	.info span.info-switch {
		display: none;
	}

	button.content-switch{
		width: 140px;
		padding: 10px;
	}

	.pages .content h4{margin:20px 0 30px 0;}

	.author{
		float: none;
		padding:15px 0;
	}

	.footer strong{
		display: block;
		text-align: center;
		font-size: 14px;
	}

	.table,
	.pages .content p{margin:40px 0;}

	.table th{font-size: 15px;}
	.table td{font-size: 13px;}

	.table th,
	.table td{padding:10px;}

	.pages .content h2{padding-bottom: 0;}
}

@media screen and (max-width: 480px) {

	.img-wrap img{
		-webkit-translateX(-150px);
		-moz-translateX(-150px);
		transform:translateX(-150px);
	}
	
	.owl-carousel .owl-wrapper-outer{overflow:visible !important;}
	
	.gallery{margin:30px 0 !important;}
	
	.gallery-item{margin:0;}
	
	.owl-carousel .owl-item{text-align:left !important;}
	
	.owl-theme .owl-controls{margin-top:35px !important;}

}