@media (min-width: 764px) and (max-width: 1023px) {

	body:after {
		content: "tablet";
	}

	section.page article,
	section.page h2 {
		width: 700px;
	}
		
	section.page h2 {
		margin-left: -350px;
	}
	
	section.page .left,
	section.page .right {
		width: 320px;
	}

}

@media (max-width: 764px) {

	body:after {
		content: "phone";
	}
	
	a.mobile-menu {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 40px;
		z-index: 11;
		cursor: pointer;
		background: white url(../media/mobile.png) center center no-repeat;
		opacity: 0.9;		
	}
	
	a.mobile-menu.closed:after, a.mobile-menu.closed:before { 
		top: 100%; 
		left: 50%; 
		border: solid transparent; 
		content: " "; 
		height: 0; 
		width: 0; 
		position: absolute; 
		pointer-events: none; 
	} 
	
	.a.mobile-menu.closed:after { 
		border-color: transparent; 
		border-top-color: red; 
		border-width: 15px; 
		margin-left: -15px; 
	} 
	
	a.mobile-menu.closed:before { 
		border-color: transparent; 
		border-top-color: white; 
		border-width: 17px; 
		margin-left: -17px; 
	}
	
	header {
		position: fixed;
		top: -500px;
		left: 0;		
		width: 100%;
		background-color: white;
		color: black;
		z-index: 10;
		transition: top 0.3s
	}
	
	header.show {
		top: 40px;
		transition: top 0.3s;
		opacity: 0.9;
	}
	
	header nav.main {
		margin-top: 50px;
		padding-bottom: 10px;
	}
	
	header nav.main a {
		width: 100%;
		color: black;
		display: block;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		padding: 5px 0;
	}
	
	nav.lang {
		position: absolute;
		top: 10px;
		left: 0;
		width: 100%;
	}
	
	nav.lang ul {
		position: relative;
		float: left;
		left: 50%;
		list-style: none;
	}
	
	nav.lang li {
		float: left;
		position: relative;
		right: 50%;
		margin-left: 10px;
		padding-left: 10px;
		border-left: 1px solid black;
		height: 15px;
		line-height: 1;
	}
	
	nav.lang li:first-child {
		margin-left: 0;
		padding-left: 0;
		border: 00
	}
	
	nav.lang a {
		text-decoration: none;
		color: black;
	}
	
	section.main ul {
		font-size: 15px;
	}
	
	section.main #logo img {
		max-width: 100%;
		
	}
	
	section.page {
		padding-top: 300px;
		background-size: 100%;
		background-position: top left;
		background-attachment: scroll !important;
	}
	
	section.page h2 {
		top: 0;
		font-size: 50px;
		font-size: 10vw;
		margin: 0;
		width: 100%;
		left: auto;
		padding-top: 50px;
	}
	
	section.page cite {
		top: 130px;
		font-size: 20px;
		line-height: 25px;
	}
	
	section.page article {
		width: 100%;
		box-sizing: border-box;
		padding-left: 30px;
		padding-right: 30px;
	}
	
	section.page .left,
	section.page .right {
		width: 100%;
	}
	
}