/*reset*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}
html{
	background:#fff;
	height:100%;
	width:100%;
}

body {
	height:100%;
	width:100%; 
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.42857143;
    color: #ffffff;
    background-color: #2d2d2d;
}

p{
	margin-bottom:1em;
}

small{
	font-size:80%;
	color: #ccc;
    font-weight: 300;
}

a{
	text-decoration:none; 
    color: #f29208;
    white-space: nowrap;
    font-weight: 300;
}

strong{
	font-weight:600;
}

img{
	max-width:100%;
}

h1{
    font-size: 2.5em;
    font-weight: 200;
    margin: 0 0 20px 0;
}

section{
	min-height:100vh;
}

.container{
	max-width:720px;
	margin: 4em 3em;
}
.d-flex{
	display:flex;
}

.justify-content-center{
	justify-content:center;
}

.align-items-center{
	align-items:center;
}

.text-center{
	text-align:center;
}

.text-right{
	text-align:right;
}

.info{
	position:relative; 
	transform:translateY(2%);
	opacity:0;
}

body.loaded .info{ 
	transform:translateY(0);
	opacity:1;
	transition:all 1s ease;
}
.info__logo{
    width:12em;
	padding-top:1em;
}

.info__logo:before {
    position: absolute;
    z-index: 0;
    top: -6em;
    left: -7.5em;
    content: "";
    opacity: .06;
    height: 250px;
    width: 250px;
    background: url(images/lensTESTER_shutter.png);
    background-size: contain;
}

.info__note{
    margin-top: 5em;
}

.info__note img{
    width:16em;
    margin-bottom: 1em;
}

.info__note--lenstester{
    background-color: #3d3c3c;
    padding: 1.5em 2em;
    padding-bottom: .75em;
    margin-left: -2em;
    margin-right: -2em;
}

@media screen and (min-width: 720px){
	.info__contact{
		display:flex;
	}
	.info__contact div:first-child{
		flex:2;
	}
	.info__contact div:last-child{
		flex:1;
		text-align:right;
	}
}