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, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, /*ul, li,*/
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
header, footer, menu, nav, section, article, aside {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	text-decoration:none;
	list-style:none;
	vertical-align: baseline;
	display:block;
}
:focus {outline: 0;}
table {border-collapse: separate;border-spacing: 0;}
caption, th, td {text-align: left;font-weight: normal;}
blockquote:before, blockquote:after,
q:before, q:after {content: "";}
blockquote, q {quotes: "" "";}

/***************************/

*,
*:before,
*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box; 
}

html{
	height:100%;
}

body{
	background:#212121;
	font-family: 'Open Sans', sans-serif;
	width:100%;
	height:100%;
	overflow:hidden;
}

/******* CT HEADER *******/

.ct-header{
	background:rgba(255, 255, 255, 0.5);
	width:100%;
	height:85px;
	padding:20px;
	position:absolute;
	z-index:10;
}

/******* retour webart *******/

.link-header{
	background:#fff;
	color:#f44336;
	padding:10px 20px;
	position:absolute;
	top:50%;
	left:50%;
	-webkit-transform:translateX(-50%) translateY(-50%);
	-moz-transform:translateX(-50%) translateY(-50%);
	transform:translateX(-50%) translateY(-50%);
	-webkit-border-radius:25px;
	-moz-border-radius:25px;
	border-radius:25px;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.75);
}

/******* ct logo *******/

.ct-logo{
	color:#424242;
	font-size:32px;
	display:inline;
}

.ct-logo span{
	color:#f44336;
	display:inline;
}

/******* ct icon hamburger *******/

.ct-icon-menu{
	width:32px;
	height:32px;
	position:absolute;
	top:33px;
	right:32px;
}

.ct-icon-menu:hover{
	cursor:pointer;
}

.icon-menu{
	background:#212121;
	width:32px;
	height:2px;
	position:relative;
	-webkit-transition:transform 0.5s ease;
	-moz-transition:transform 0.5s ease;
	transition:transform 0.5s ease;
}

.icon-menu:before, .icon-menu:after{
	content:'';
	background:#212121;
	width:32px;
	height:2px;
	position:absolute;
	top:8px;
	-webkit-transition:transform 0.5s ease, top 0.5s ease;
	-moz-transition:transform 0.5s ease, top 0.5s ease;
	transition:transform 0.5s ease, top 0.5s ease;
}

.icon-menu:after{
	top:16px;
}

.open .icon-menu{
	-webkit-transform:rotate(45deg) translateY(8px);
	-moz-transform:rotate(45deg) translateY(8px);
	transform:rotate(45deg) translateY(8px);
}

.open .icon-menu:before, .open .icon-menu:after{
	-webkit-transform:rotate(-90deg);
	-moz-transform:rotate(-90deg);
	transform:rotate(-90deg);
	top:0;
}

/******* CT MENU *******/

.ct-menu{
	background:rgba(255, 255, 255, 0.75);
	width:100%;
	height:100%;
	padding:0 0 0 10px;
	position:absolute;
	top:0;
	left:0;
	z-index:9;
	text-align:center;
	display:flex;
	flex-direction:column;
	justify-content:center;
	-webkit-transition:transform 0.5s ease;
	-moz-transition:transform 0.5s ease;
	transition:transform 0.5s ease;
	-webkit-transform:translateX(-100%);
	-moz-transform:translateX(-100%);
	transform:translateX(-100%);
}

.ct-menu.opened{
	-webkit-transform:translateX(0);
	-moz-transform:translateX(0);
	transform:translateX(0);
}

.ct-menu ul{
	list-style:none;
	padding:0;
}

.menu-link{
	color:#424242;
	font-size:32px;
	-webkit-transition:color 0.5s ease;
	-moz-transition:color 0.5s ease;
	transition:color 0.5s ease;
}

.menu-link.current{
	color:#f44336;
}

.menu-link:hover{
	color:#f44336;
}

/******* ct section *******/

.ct-section{
	background:#fff;
	width:100%;
	height:100%;
	min-height:100%;
	position:absolute;
	top:0;
	left:0;
	opacity:1;
	-webkit-transform:translateX(100%);
	-moz-transform:translateX(100%);
	transform:translateX(100%);
	-webkit-transition:transform 1s, box-shadow 1s, opacity 1s;
	-moz-transition:transform 1s, box-shadow 1s, opacity 1s;
	transition:transform 1s, box-shadow 1s, opacity 1s;
	overflow-y:auto;
}

.ct-section.current{
	-webkit-transform:translateX(0);
	-moz-transform:translateX(0);
	transform:translateX(0);
}

.ct-section.fade{
	opacity:0.25;
	-webkit-box-shadow:0 0 10px 10px;
	-moz-box-shadow:0 0 10px 10px;
	box-shadow:0 0 10px 10px;
	-webkit-transform:translateX(0) scale(0.9);
	-moz-transform:translateX(0) scale(0.9);
	transform:translateX(0) scale(0.9);
}

.ct-section-col{
	width:100%;
}

.ct-section-col.text{
	color:#757575;
	padding:80px 20px 0;
}

.ct-article{
	width:100%;
	height:100%;
	min-height:100%;
}

.ct-section-col h1{
	font-size:32px;
	margin:0 0 20px;
}

.ct-section-col h2{
	font-size:28px;
	margin:0 0 20px;
}

.ct-section-col h3{
	font-size:24px;
	margin:0 0 20px;
}

.ct-section-col p{
	font-size:16px;
	margin:0 0 20px;
}

.ct-section-col a{
	color:#f44336;
	display:inline;
}

.ct-section-col.img{
	background:no-repeat center center / cover;
	width:100%;
	height:50%;
}

@media only screen and (min-width: 640px){

.ct-section-col.text{
	padding:80px 80px 40px;
}
	
}

@media only screen and (min-width: 1280px){

.ct-header{
	background:rgba(255, 255, 255, 0);
}

.ct-icon-menu{
	display:none;
}

.ct-menu{
	background:none;
	width:120px;
	text-align:left;
	-webkit-transform:translateX(0);
	-moz-transform:translateX(0);
	transform:translateX(0);
}

.ct-menu ul{
	list-style:circle;
	padding:0 0 0 20px;
}

.ct-menu ul li{
	margin:0 0 20px;
	-webkit-transform:rotate(-33deg);
	-moz-transform:rotate(-33deg);
	transform:rotate(-33deg);
	-webkit-transform-origin:0 0;
	-moz-transform-origin:0 0;
	transform-origin:0 0;
}

.menu-link{
	font-size:16px;
}

/*******/

.ct-section-col{
	float:left;
}

.ct-section-col.text{
	width:calc(50% + 20px);
	padding:100px 80px 40px 240px;
}

.ct-section-col.img{
	width:calc(50% - 20px);
	height:100%;
	position:fixed;
	top:0;
	right:0;
	bottom:0;
}

}