@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;700&family=Open+Sans:wght@400;700&display=swap');

/* > NORMALIZE
-------------------------------------------------------------------------------------------------------------------------------- */
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 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
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: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
	box-sizing: border-box;
}

/* > COMMUNS
-------------------------------------------------------------------------------------------------------------------------------- */

body {
    font-family: 'Open Sans', sans-serif;
	line-height: 1.3em;
	font-size: 16px;
	color: #30446b;
}

a { color:inherit; text-decoration:none; }
a img{ border:none; }

strong { font-weight:bold; }

ol li, ul li { list-style:none }

h1,
.h1_like { }

h2, .h2_like {
	text-align:center;
	font-family: 'Cairo', sans-serif;
	margin: 0 0 1em;
	font-weight: 300;
	line-height: 1.25em;
	font-size: 3em;
	color: #30446b;
}
h2 strong, 
.h2_like strong { font-weight:700; }

h3, .h3_like {
	font-weight: 700;
	font-size: 1.125em;
	line-height: 1.25em;
	margin: 2em 0;
}

h4,
.h4_like { }

p { 
	margin: 0 0 1em;
	line-height: 1.4em;
}


@media screen and (max-width: 980px) {
	h2  { font-size: 2em; }
}
@media screen and (max-width: 640px) {
	h2  { font-size: 1.5em; }
}


/* > CLASS BLOCKS
-------------------------------------------------------------------------------------------------------------------------------- */
/* > Flux ---------------------------- */
.left { float:left; }
.right { float:right }
.clearleft { clear:left; }
.clearight { clear:right; }
.clear { display:block; clear: both; height: 0; }
.clearfix { display:block; }
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

/* > Block (base 100%) ---------------------- */
.content_row { 
	position: relative;
	width: 100%;
	max-width: 1280px; 
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin:0 auto; 
}

.wp20  { width:20% }            /* > 1/5  */
.wp25  { width:25% }            /* > 1/4  */
.wp30  { width:30% }
.wp33  { width:33.3333333333% } /* > 1/3  */
.wp40  { width:40% }            /* > 2/5  */
.wp50  { width:50% }            /* > 1/2  */
.wp60  { width:60% }            /* > 3/5  */
.wp66  { width:66.6666666666% } /* > 2/3  */
.wp70  { width:70% }
.wp75  { width:75% }            /* > 3/4  */
.wp80  { width:80% }            /* > 4/5  */
.wp100 { width:100%; }

.content_row,
.wp20, .wp25, .wp30, .wp33, .wp40, .wp50, 
.wp60, .wp66, .wp70, .wp75, .wp80, .wp100 {
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -o-box-sizing:border-box;
    box-sizing:border-box;
}

/* > HEADER
-------------------------------------------------------------------------------------------------------------------------------- */
#header,
#header * {
	-webkit-transition:all .3s ease-in-out;
	-moz-transition:all .3s ease-in-out;
	-ms-transition:all .3s ease-in-out;
	-o-transition:all .3s ease-in-out;
	transition:all .3s ease-in-out;
}
#header {
	position:fixed;
	height:80px;
	width:100%;
	z-index:2;
}
#header .content_row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
}
#logo-head {
	width: 28%; 
	max-width: 270px;
}
#logo-head img {
	display:block;
	width:100%;
}
.header-headline {
	width: 72%;
	text-align: center;
	font-weight: 700;
	font-size: 1.125em;
	color: #fff;
}
@media screen and (max-width: 1200px) {
	#logo-head { width:20%; }
	.header-headline { width:80%; }
}
@media screen and (max-width: 870px) {
	#logo-head {
		width:45%;
		max-width:170px; 
	}
	.header-headline { width: 55%; }
}

@media screen and (max-width: 380px) {
	#logo-head {
		width: 170px;
		margin: 0 auto;
	}
	.header-headline { display: none }
}

/* header fixed */
body.fixed_head #header { background:#fff; height:50px; }
body.fixed_head #logo-head img { display:none; }
body.fixed_head #logo-head { 
	background:url(../images/logo_header_alt.png) center no-repeat;
	background-size:100px 50px;
	width:120px; height:50px;
}
body.fixed_head .header-headline { color: #898989 }

/* > CONTENT
-------------------------------------------------------------------------------------------------------------------------------- */

/* > communs ------------------- */
.bg-vert { background-color: #61a375; color: #fff; }
.bg-gris { background-color: #b1d2e5; color: #30446b; }
.bg-blanc { background-color:#ffffff; }
.fig img {
	display:block;
	max-width:100%;
	margin:0 auto;
}

/* > Accueil ------------------- */
#home {
	background:url(../images/home_layer_1.jpg) center no-repeat;
	background-attachment: fixed;
	background-size: cover;
	position: relative;
	min-height: 580px;
	height: 90vh;
}
#layer-home-1 {
	position:absolute;
	width: 100%; 
	height: 100%;
	top: 0; 
	left: 0; 
	z-index: 0;
	opacity: .3;
	background:url(../images/home_layer_2.png) 0 0 no-repeat;
	background-attachment: fixed;
	background-size:cover;
}
#layer-home-2 {
	z-index:1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	max-width: 1280px;
	padding-top: 100px;
	height: 100%;
}
#layer-home-2 h1 { 
	width: 70%;
	padding: 30px;
	max-width: 440px;
	font-family: 'Cairo', sans-serif;
	font-weight: 300; 
	font-size: 3em;
	line-height: 1.2em;
	color: #d9e451;
}
#layer-home-2 h1 strong { 
	font-weight: 700;
	color: #fff;
}
@media screen and (max-width: 1200px) {
	/* accueil */
	#home { height:570px; }
	#layer-home-2 { top:0 }
}

@media screen and (max-width: 870px) {
	#layer-home-2  { right:3%; }
}

@media screen and (max-width: 740px) {
	
	#home { 
		height: 100vh;
	}
	#layer-home-2 {
		position: absolute;
		left: 0; bottom: 0;
		padding: 20px;
		top: auto;
		width: 100%;
		height: 25vh;
		min-height: 200px;
		background: #87b7a2;
	}
	#layer-home-2 h1 {
		text-align: center;
		font-size: 2em;
		max-width: 480px;
		margin: 0 auto;
		padding: 0;
		width: 100%;
	}
	#layer-home-2 h1 strong { display: block; }
	#layer-home-2 h1 br { display: none; }
}

@media screen and (max-width: 480px) {
	#layer-home-2 h1 { font-size: 1.5em; }
}

/* > presentations ------------------------------------------------ */
#presentation { 
	padding: 80px 0 0; 
}
#presentation > p { margin-bottom:30px; }
#presentation .wp33 { padding: 20px; }

#avantages { padding: 0 0 80px; }
#avantages .wp20 {
	text-align: center;
	padding: 20px;
}
#avantages .wp20 p { font-weight: 700 }

#mptechnic-qualite {
	background:#fff url(../images/presentation_layer.jpg) center 0 no-repeat;
	background-attachment:fixed;
	background-size:cover;
	text-align:center;
	padding: 10% 30px;	
}
#mptechnic-qualite p { 
	font-family: 'Cairo', sans-serif;
	line-height: 1.25em;
	font-weight: 700;
	font-size: 3em;
	color: #232d1d;
	margin: 0 auto;
}

@media screen and (max-width: 860px) {
	
	#avantages .wp20 { width: 33.33%; }
	
}
@media screen and (max-width: 750px) {
	
	/* presentation */
	#presentation { padding:40px 20px 20px; }
	#presentation .wp33 { width:50%; }
	#presentation .wp33 { float:left; clear:left }
	#presentation .wp33:nth-child(2n+0) { float:right; clear:right }
	#presentation .wp33.fig img { margin:20px auto }
	
	#mptechnic-qualite p { font-size: 1.75em; }
	
}
@media screen and (max-width: 540px) {
	
	#avantages .wp20 { width: 50%; }
	
}

@media screen and (max-width: 480px) {
	
	/* presentation */
	#presentation .wp33 { 
		width:100%; float:none;
		min-height:inherit;
		padding:20px 0 
	}
	#mptechnic-qualite {
		background-color:#97c022;
		background-image:none; 
		color:#fff;
	}
	#mptechnic-qualite > img { display:none; }
	#mptechnic-qualite p { font-size: 1.125em; }
	
}

.img-wall {
	display: flex;
	flex-wrap: wrap;
}
.img-wall img {
	display: block;
	width: 100%;
}
@media screen and (max-width: 640px) {
	.img-wall .wp25 { 
		width: 50%;
		overflow: hidden;
		max-height: 50vh;
	}
}

/* > désinfection douce ----------------------------------- */
#desinfection-douce { 
	padding: 80px 0; 
}
#desinfection-douce h3 { 
	font-size: 1.25em; 
}
#desinfection-douce .wp33 {
	padding: 20px;
	width: 33.33%;
}
#desinfection-douce .intro p {
	max-width: 320px;
	font-size: 1.125em;
	font-weight: 700;
}
#desinfection-douce ul li {
	background-image:url(../images/puce_1.gif);
	background-repeat: no-repeat;
	background-position: 0;
	margin-bottom: 10px;
	padding-left: 30px;
}


@media screen and (max-width: 750px) { 
	#desinfection-douce { padding: 40px 20px }
	#desinfection-douce .wp33 { width:50%; padding:0 20px; }
	#desinfection-douce .wp33.intro { 
		width: 100%;
		padding: 0 20px 30px;
		text-align: center;
	}
	#desinfection-douce .intro p {
		margin: 0 auto;
		max-width: inherit;
	}
}
@media screen and (max-width: 480px) {
	#desinfection-douce { padding: 40px 10px }
	#desinfection-douce .wp33 { 
		width: 100%;
		padding:0 20px;
	}
	#desinfection-douce .wp33.intro { 
		padding: 0 20px 20px;
		text-align: left;
	}
	#desinfection-douce .intro p { font-size: 1em; }
}

/* > Technologie Chlor in ------------------------------------------------------ */
#technologie-chlorin {
	padding: 80px 0;
}
#technologie-chlorin .content_row {
	max-width: 1440px;
}
#technologie-chlorin .wp33 {
	max-width: 440px;
	padding: 20px;
}
.technologie-col_fig { 
	display: block;
	position: relative;
}
.technologie-col_fig img {
	display: block;
	width: 100%;
	transition: transform .5s;
}
.technologie-col_fig::after { 
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	margin: -30px;
	opacity: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #193057 center no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 30 30'%3E%3Cpolygon fill='%23fff' points='30,12 18,12 18,0 12,0 12,12 0,12 0,18 12,18 12,30 18,30 18,18 30,18 '/%3E%3C/svg%3E");
	background-size: 30px 30px;
	transform: scale(.3);
	transition: transform .5s, opcity .3s;
}
a.technologie-col_fig:hover img {
	transform: translateY(-5px);
}
a.technologie-col_fig:hover::after {
	opacity: 1;
	transform: scale(1);
}
.technologie-col_content {
	padding: 0 30px;
}
.technologie-col_content h3 {}
.technologie-col_content ul li {
	background-image:url(../images/puce_2.gif);
	background-repeat: no-repeat;
	background-position: 0;
	margin-bottom: 10px;
	padding-left: 30px;
}
a.square-bt {
	margin: 2em 0 0;
	position: relative;
	display: inline-block;
	padding: 10px 10px 10px 40px;
	text-align: left;
	font-size: 1.125em;
	font-weight: 700;
	color: #30446b;
	transition: color .3s, padding .5s;
}
a.square-bt::before {
	content: "";
	display: block;
	position: absolute;
	width: 30px; height: 30px;
	margin: -15px 0;
	left: 0; top: 50%;
	background-color: #61a375;
	transition: transform .5s, background-color .3s;
}
a.square-bt:hover {
	padding: 10px 0 10px 50px;
	color: #61a375 
}
a.square-bt:hover::before {
	transform: rotateZ(-405deg);
	background-color: #30446b
}
@media screen and (max-width: 980px) {
	#technologie-chlorin {
		padding: 60px 10px;
	}
	#technologie-chlorin .wp33 { padding: 10px; }
	.technologie-col_content { padding: 0 }
	#technologie-chlorin .wp100 {
		text-align: center;
	}
}

@media screen and (max-width: 740px) { 
	#technologie-chlorin .wp33 {
		width: 100%;
		/*max-width: 440px;*/
		max-width: 100%;
		display: flex;
		padding: 20px;
	}
	.technologie-col_fig { width: 33.33%; }
	.technologie-col_content {
		width: 66.66%;
		padding-left: 20px;
	}
}
@media screen and (max-width: 480px) { 
	#technologie-chlorin .wp33 {
		max-width: 440px;
		display: block;
	}
	.technologie-col_fig { 
		width: auto;
		max-width: 220px;
		margin: 0 auto;
	}
	.technologie-col_content {
		width: 100%;
		padding: 0;
	}
}

/* POLITIQUE DE CONFIDENTIALITE > contact.php ------------------------------------------------------------------------------------------------ */
#privacy_disclaimer { 
	font-size: 12px;
	color: #fff;
}
label#privacy_checkbox {
	position: relative;
	padding: 5px 5px 5px 30px;
	text-align: left;
	line-height: 14px;
	font-size: 12px;
	color: #000;
}
label#privacy_checkbox input {
	position: absolute;
	top: 5px; left: 5px;
}
label#privacy_checkbox a:hover { color: #fff }
label#privacy_checkbox.errorfield {
	border: #e50c1d 1px solid;
	margin: 0 10px;
	padding: 10px 10px 30px 40px;
}
label#privacy_checkbox a { text-decoration: underline; }
label#privacy_checkbox input {
	width: auto;
    margin: 0; 
    display: inline-block;
}

/* > contact ------------------------------------------------------ */
#contact {
	background: #87b7a2 url(../images/contact_layer.jpg) center 0 no-repeat;
	background-attachment: fixed;
	background-size: cover;
	padding: 5% 20px 20px;
	text-align: center;
	color: #fff;
}
#contact h2 {
	font-weight: 700;
	color: #fff;
}
#contact p strong { 
	color: #fff;
	font-size: 1.25em;
}
form {
	display:block;
	max-width:640px;
	margin:40px auto;
}
label {
	position:relative;
	display:block;
	padding:0 10px 20px;
}
#fillme { display:none }
label input,
textarea {
	display:block;
	border:#fff 1px solid;
	width:100%; padding:10px;
	font-family: 'Open Sans', sans-serif;
	font-size:14px; font-weight:300;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-transition:all .3s linear;
	-moz-transition:all .3s linear;
	-ms-transition:all .3s linear;
	-o-transition:all .3s linear;
	transition:all .3s linear;
}
textarea { height:200px; }
label input:hover,
textarea:hover { border-color:#61a375 }
label input:focus,
textarea:focus {
	outline:none;
	border-color:#61a375;
	-webkit-box-shadow:#61a375 0 0 5px;
	-moz-box-shadow:#61a375 0 0 5px;
	-ms-box-shadow:#61a375 0 0 5px;
	-o-box-shadow:#61a375 0 0 5px;
	box-shadow:#61a375 0 0 5px;
}
.submit {
	display:inline-block;
	border: none;
	border-radius:10px; color:#fff;
	background-color: #30446b;
	text-transform:uppercase;
	font-weight:600;
	cursor:pointer;
	margin:30px auto 60px;
	padding:10px 20px;
	-webkit-transition:all .3s linear;
	-moz-transition:all .3s linear;
	-ms-transition:all .3s linear;
	-o-transition:all .3s linear;
	transition:all .3s linear;
}
.submit:hover { background-color:#61a375; }
.message-error {
	position:absolute; color:#e50c1d;
	display:none; line-height:20px; font-size:12px;
	text-align:center; width:100%; bottom:0; left:0;
}
.errorfield input,
.errorfield textarea { border-color:#e50c1d; color:#e50c1d }

.errorfield .message-error { display:block }

.message-sent,
.message-not-sent {
	padding: 40px;
	text-align:center;
	max-width: 380px;
	border-radius: 20px;
	margin: 0 auto 40px;
}
#contact .message-sent p strong {
	display: block;
	line-height: 1.25em;
	margin-bottom: 10px;
	font-size: 1.5em; 
}
.message-sent { background-color: #87b7a2; }
.message-not-sent { background-color:#e50c1d; }

/* > Mentions légales --------------------------------------------- */
#breadcrumb { 
	padding:20px 0;
	font-size:12px; 
	text-align:center;
}
#breadcrumb ul { max-width:990px; margin:0 auto }
#breadcrumb li { display:inline; list-style:none; }
#breadcrumb li:before { content:"> "; }
#breadcrumb li:first-child:before {  content:""; }
#breadcrumb li a {
	font-weight: 700;
	text-decoration:underline; 
}
#breadcrumb li a:hover { color: #61a375 }

.content-pages {
	background:#fff url(../images/home_layer_1.jpg) center no-repeat;
	background-size: cover;
	padding-bottom: 80px;
	padding-top: 140px;
}
.content-pages h1 {
	padding: 20px;
	text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 40px;
	color: #61a375
}
.content-pages h2 {
	margin: 30px 0 10px;
	text-align: left;
	font-size: 20px; 
	color: #1a1a1a;
}
.content-pages h3 { 
	font-weight: 700;
	margin: 20px 0 10px;
	font-size: 18px; 
}
#mentions .wp50 { padding: 20px; }
#mentions .wp50.left,
#mentions .wp50.left h2 {
	text-align: right;
}

/* > FOOTER
-------------------------------------------------------------------------------------------------------------------------------- */
#footer { 
	padding: 40px 0;
	color: #727271;
}
#footer .content_row {
	justify-content: space-around;
	max-width: 1440px;
	padding: 0 20px;
}
#footer .copy { 
	padding: 0 20px;
	font-weight: 700;
	color: #61a375;
	width: 35%;
}
#footer .copy p { font-size: 1.25em }
#footer .footer-adress {
	width: 40%;
}
#footer .footer-adress p { }
#footer .footer-logo { width: 25%; }
#footer .footer-logo img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}
@media screen and (max-width: 860px) {
	#footer .content_row { 
		justify-content: center;
	}
	#footer .footer-adress {
		width: 100%;
		padding: 0 20px 30px;
		text-align: center;
		order: 1;
	}
	#footer .copy { 
		width: 100%;
		text-align: center;
		order: 2;
	}
	#footer .footer-logo { 
		width: 100%;
		order: 3;
	}
}

/* > CLASSES GEOMETRY
-------------------------------------------------------------------------------------------------------------------------------- */
/* > Break hauteur -------------------------- */
.hspace_10 { clear:both; height:10px; }
.hspace_20 { clear:both; height:20px; }
.hspace_30 { clear:both; height:30px; }
.hspace_50 { clear:both; height:50px; }

/* > Margin --------------------------------- */
.marg0    { margin:0; }
.margt0   { margin-top:0; }
.margt10  { margin-top:10px; }
.margt20  { margin-top:20px; }
.margt30  { margin-top:30px; }
.margt50  { margin-top:50px; }
.margl0   { margin-left:0; }
.margl10  { margin-left:10px; }
.margl20  { margin-left:20px; }
.margl30  { margin-left:30px; }
.margl50  { margin-left:50px; }
.margr0   { margin-right:0; }
.margr10  { margin-right:10px; }
.margr20  { margin-right:20px; }
.margr30  { margin-right:30px; }
.margr50  { margin-right:50px; }
.margb0   { margin-bottom:0; }
.margb10  { margin-bottom:10px; }
.margb20  { margin-bottom:20px; }
.margb30  { margin-bottom:30px; }
.margb50  { margin-bottom:50px; }
.margauto { margin-left:auto; margin-right:auto; }

/* > Padding --------------------------------- */
.pad0    { padding:0; }
.pad10   { padding:10px; }
.pad15   { padding:15px; }
.pad20   { padding:20px; }
.pad30   { padding:30px; }
.pad40   { padding:40px; }
.padt0   { padding-top:0; }
.padt10  { padding-top:10px; }
.padt20  { padding-top:20px; }
.padt30  { padding-top:30px; }
.padt50  { padding-top:50px; }
.padl0   { padding-left:0; }
.padl10  { padding-left:10px; }
.padl20  { padding-left:20px; }
.padl30  { padding-left:30px; }
.padl50  { padding-left:50px; }
.padr0   { padding-right:0; }
.padr10  { padding-right:10px; }
.padr20  { padding-right:20px; }
.padr30  { padding-right:30px; }
.padr50  { padding-right:50px; }
.padb0   { padding-bottom:0; }
.padb10  { padding-bottom:10px; }
.padb20  { padding-bottom:20px; }
.padb30  { padding-bottom:30px; }
.padb50  { padding-bottom:50px; }
.padLR0  { padding-left:0; padding-right:0 }
.padLR10 { padding-left:10px; padding-right:10px }
.padLR15 { padding-left:15px; padding-right:15px }
.padLR20 { padding-left:20px; padding-right:20px }
.padLR30 { padding-left:30px; padding-right:30px }
.padLR40 { padding-left:40px; padding-right:40px }
.padTB0  { padding-top:0; padding-bottom:0 }
.padTB10 { padding-top:10px; padding-bottom:10px }
.padTB15 { padding-top:15px; padding-bottom:15px }
.padTB20 { padding-top:20px; padding-bottom:20px }
.padTB30 { padding-top:30px; padding-bottom:30px }
.padTB40 { padding-top:40px; padding-bottom:40px }

/* > FONTS / TEXTS
-------------------------------------------------------------------------------------------------------------------------------- */
/* > couleurs --------------------------------------------------- */
.fc-blanc   { color:#ffffff; }
.fc-gris    { color:#828282; }
.fc-noir    { color:#000000; }
.fc-vert    { color:#61a375; }

/* > font-weight ------------------------------------------------ */
.fw-300     { font-weight:300; }
.fw-400     { font-weight:400; }
.fw-500     { font-weight:500; }
.fw-700     { font-weight:700; }
.fw-900     { font-weight:900; }
.fw-norm    { font-weight:normal; }
.fw-bold    { font-weight:bold; }
.fs-italic  { font-style:italic; }
.fs-norm    { font-style:normal; }

/* > textes ------------------------------------------------------ */
.undernone { text-decoration:none; }
.underline { text-decoration:underline; }
.uppercase { text-transform:uppercase; }
.lowercase { text-transform:none; }
.text-justify   { text-align:justify; }
.text-center    { text-align:center; }
.text-right     { text-align:right; }
.text-left      { text-align:left; }

/* > fonts -------------------------------------------------------- */
/*
*   font-family: 'Open Sans', sans-serif;
*/
.fs-11 { font-size:11px; }
.fs-12 { font-size:12px; }
.fs-14 { font-size:14px; }
.fs-16 { font-size:16px; }
.fs-18 { font-size:18px; }
.fs-20 { font-size:20px; }
.fs-22 { font-size:22px; }
.fs-24 { font-size:24px; }
.fs-30 { font-size:30px; }
.fs-36 { font-size:36px; }
.fs-40 { font-size:40px; }
.fs-52 { font-size:52px; }

.font-lato { font-family: 'Open Sans', sans-serif; }


/* > QUERIES
-------------------------------------------------------------------------------------------------------------------------------- */
@media print {
  #menu, #footer, aside {
    display:none;
  }
  body {

  }
}

/* > ANIMATIONS
-------------------------------------------------------------------------------------------------------------------------------- */
/* TRANSITIONS ------------------------------------------------------------------- */
.transition {
    -webkit-transition:all .3s linear;
       -moz-transition:all .3s linear;
         -o-transition:all .3s linear;
            transition:all .3s linear;
}
.transition_color {
    -webkit-transition:color .3s linear;
       -moz-transition:color .3s linear;
         -o-transition:color .3s linear;
            transition:color .3s linear;
}
.transition_background {
    -webkit-transition:background .3s linear;
       -moz-transition:background .3s linear;
         -o-transition:background .3s linear;
            transition:background .3s linear;
}
