@import url('fonts.css');

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	word-break: break-word;
/*	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
*/
	vertical-align: top;
}

section:before,section:after,
.section-inner:before,.section-inner:after,
.section-slideshow:before, .section-slideshow:after  {
    content: "";
    display: table;
} 
section:after,
.section-inner:after,
.section-slideshow:after {
    clear: both;
}
section,
.section-inner,
.section-slideshow:after {
    zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}

body{
	background:#ECECEE;
	color:#000;
	text-align: center;
	font-family: 'Franklin-Gothic', helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.45em;
	letter-spacing:.04em;
	word-spacing: -.08em;
	padding-bottom:100px;
}

h1, h2{
	font-size: 1.5em;
	font-weight:bold;
	margin: 0.75em 0;
	line-height: 1em;
	letter-spacing: 0;
}

h2{
	border-top: 1px solid;
	padding:10px 0 20px;
}

h1 span, h2 span{
	font-weight:normal;
	text-transform: none;
	letter-spacing: .02em;
	display: block;
}

h3{
	font-size: 1.5em;
	font-weight:normal;
	margin: 0 0 0.75em 0;
	line-height: 1em;
}

h4{
	font-size: 1em;
	letter-spacing: 0;
	margin: 1em auto;
	font-family:'Franklin-Gothic-Demi', 'Franklin-Gothic',sans-serif; 
	font-weight: normal;
}

a{
	color: inherit;
}

strong, 
.strong {
	    font-family: 'Franklin-Gothic-Demi', 'Franklin-Gothic',sans-serif;
	    letter-spacing:0;
}

hr{
	color:inherit; 
	background-color:transparent;
	height: 0;
	text-align:center; 
	border: none;
	border-top: 1px solid rgba(0,0,0,.2);
}

hr.short{
	width: 4em;
	margin: 0 auto;
}

img{
	max-width: 100%;
	margin:0;
}




/* -----Layout-----*/

section,
footer {
	text-align: left;
	padding:0 3%;
	min-width: 280px;
	max-width: 2048px;
	margin:0 auto 6em;
}

section.intro{
	margin:10vh auto;
}


.slide{
	width: 100%;
	height:100%;
	margin-bottom:5px;
	display: flex;
}

.slide > *{
    margin-top: 5px;
}

.slide-text{
    position: relative;
    z-index: 1;
    width:22%;
    padding-right:2%;
    max-width: 276px;
}

.slide-text > *{
    margin-top: 0;
}

.slide-img {
	min-height: 220px;
    z-index: -1;
    width: 79%;
    min-height: 580px;
    overflow: hidden;
    text-align: center;
    background-color:#fff;
    display: flex;
    align-items:center;

}

.slide-img img{
	width: 70%;
	min-width: 300px;
	margin:0 auto;
}


.laptop {
    background: transparent url('../img/laptop.png') top center no-repeat;
    background-size: contain;
    border: 0;
    overflow: hidden;
}

.laptop img{
    max-height: none!important;
}

.laptop div:first-child {
    margin: 3.5% 13% 10.2%;
    padding-top: 47.5%;
    height: 0;
    position: relative;
    background-color: #000;
    overflow: hidden;
-webkit-box-shadow: 0px 0px 40px 0px rgba(150,150,150,0.35);
-moz-box-shadow: 0px 0px 40px 0px rgba(150,150,150,0.35);
box-shadow: 0px 0px 40px 0px rgba(150,150,150,0.35);
}

.laptop div:first-child :first-child {
	display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}


@media (max-width: 769px) {
	.slide{
		display: block;
	}
	
	hr{display:none;}
	

	.slide-text{
	    width:100%;
	    padding-right:0;
	    max-width: 100%;
	    padding-top:1em;
	    border-top:1px solid #ccc;
	}
	.slide-img {
	    z-index: -1;
	    width: 100%;
	   min-height:300px;
	    margin-bottom: 3em;
	}

	.slide-img img{
		width: 70%;
		min-width: 300px;
		margin:0 auto;
	}

}


