/*
Theme Name: Buxum child
Theme URI: https://buxum.ch
Author: Buxum Communication
Author URI: https://buxum.ch
Description: Custom theme made with love
Version: 1.0
Text Domain: buxum-child
Template: twentyseventeen
*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}

img{
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/******************** BUXUM ********************/

/********** ALL **********/

html,
body{
	font-family: "montserrat", sans-serif;
	font-size: 15px;
	color: #222;
}

h1, .h1,
h2, .h2,
.heading{
	font-family: "proxima-nova", sans-serif;
	line-height: 1.3;
	display: block;
}

h1, .h1{
	font-size: 1.866em;
	text-transform: uppercase;
	padding-bottom: 1em;
	margin: 1em 0 1.142em 0;
	position: relative;
	text-align: center;
	letter-spacing: 0.08em;
}

h1:first-child, .h1:first-child{
	margin-top: 0;
}

h1:after, .h1:after{
	content: "";
	width: 44px;
	height: 4px;
	position: absolute;
	left: 50%;
	margin-left: -22px;
	bottom: 0;
	margin-bottom: -2px;
	background: rgb(125,189,255);
	background: -webkit-linear-gradient(top, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(125,189,255,1)),to(rgba(60,98,158,1)));
	background: -o-linear-gradient(top, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	background: linear-gradient(to bottom, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7dbdff', endColorstr='#3c629e',GradientType=0 );
}

h2, .h2{
	font-size: 1.3em;
	font-weight: 700;
	margin-bottom: 0.75em;
}

p,
ul,
ol{
	font-size: .95em;
	margin-bottom: 1em;
	text-align: justify;
}

p:last-child,
ul:last-child,
ol:last-child{
	margin-bottom: 0;
}

.entry-content ul,
.entry-content ol{
	list-style-position: inside;
}

.entry-content ul{
	list-style-type: none;
}

.entry-content li{
	margin-bottom: 1em;
}

.entry-content li:last-child{
	margin-bottom: 0;
}

.entry-content ul li{
	padding-left: 1em;
	position: relative;
}

.entry-content ul li:before{
	content: "";
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 3px;
	left: 0;
	top: 1em;
	margin-top: -3px;
	background-color: #0966a6;
}

.entry-content ol{
	list-style-type: decimal;
}

a{
	color: #0966a6;
	text-decoration: none;
}

a:hover{
	text-decoration: underline;
}

strong,
b{
	font-weight: 700;
}

i,
em{
	font-style: italic;
}

small{
	font-size: 0.8em;
}

.hentry{
	line-height: 1.866;
}

.boxed{
	max-width: 1110px;
	width: 100%;
	margin: auto;
	padding-left: 15px;
	padding-right: 15px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.boxed-small{
	max-width: 690px;
}

.read-more{
	font-size: 0.733em;
	font-weight: 700;
	letter-spacing: 0.15em;
	margin-top: 1.363em;
	display: inline-block;
	text-transform: uppercase;
	cursor: pointer;
}

.read-more.toggle,
.toggle-off.toggle-open .read-more.toggle{
	position: relative;
	padding-right: 21px;
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
	-o-transition: opacity 0.2s ease, visibility 0.2s ease;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.toggle-off .read-more.toggle{
	opacity: 0;
	visibility: hidden;
}

.read-more.toggle:before,
.read-more.toggle:after{
	content: "";
	position: absolute;
	width: 9px;
	height: 2px;
	background-color: #222;
	right: 0;
	top: 50%;
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	margin-top: -1px;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.read-more.toggle:after{
	right: 6px;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.toggle-open .read-more.toggle:before{
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.toggle-open .read-more.toggle:after{
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.half{
	float: left;
	width: 48%;
	margin-right: 4%;
}

.half.last{
	margin-right: 0;
}

.btn,
button,
.quform-button-submit-default>button{
	font-family: "montserrat", sans-serif;
	display: inline-block;
	padding: 1.5em 4em;
	font-size: 12px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-top: 3em;
	border-radius: 5px;
	position: relative;
	background: rgb(125,189,255);
	background: -webkit-linear-gradient(top, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(125,189,255,1)),to(rgba(60,98,158,1)));
	background: -o-linear-gradient(top, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	background: linear-gradient(to bottom, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7dbdff', endColorstr='#3c629e',GradientType=0 );
	z-index: 1;
	-webkit-transition: color 0.2s ease;
	-o-transition: color 0.2s ease;
	transition: color 0.2s ease;
	color: #222;
	border: 0;
	-webkit-box-shadow: none;
	        box-shadow: none;
	cursor: pointer;
}

.btn:hover,
button:hover{
	color: #fff;
	text-decoration: none;
}

.btn:before,
button:before{
	content: "";
	position: absolute;
	left: 1px;
	top: 1px;
	right: 1px;
	bottom: 1px;
	border-radius: 4px;
	background-color: #fff;
	pointer-events: none;
	z-index: -1;
	opacity: 1;
	-webkit-transition: opacity 0.2s ease;
	-o-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}

.btn:hover:before,
button:hover:before{
	opacity: 0;
}

.sections-bg .btn:before,
#colophon .contact .btn:before,
#colophon .contact button:before{
	background-color: #eff2f9;
}
#colophon .wpml-ls-menu-item{
	display: none;
}
.quform-input-text,
.quform-input-email,
.quform-input-textarea{
	width: 99%;
	background: rgb(125,189,255);
	background: -webkit-linear-gradient(top, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(125,189,255,1)),to(rgba(60,98,158,1)));
	background: -o-linear-gradient(top, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	background: linear-gradient(to bottom, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7dbdff', endColorstr='#3c629e',GradientType=0 );
	border-radius: 5px;
	position: relative;
	z-index: 1;
}

.quform .quform-field-text,
.quform .quform-field-email,
.quform .quform-field-textarea{
	-webkit-box-shadow: none;
	        box-shadow: none;
	height: auto;
	font-size: 0.733em;
	height: 5em;
	background: none;
	border: none;
	padding-left: 2em;
	font-family: "montserrat", sans-serif;
	font-size: 0.733rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.quform-input-text:after,
.quform-input-email:after,
.quform-input-textarea:after{
	content: "";
	display: block;
	position: absolute;
	left: 1px;
	top: 1px;
	right: 1px;
	bottom: 1px;
	background-color: #eff2f9;
	border-radius: 4px;
	z-index: -1;
}

input[type=checkbox],
.quform .quform-field-checkbox{
	opacity: 0;
	position: absolute;
	left: 0;
}

.quform .quform-option-label{
	padding-right: 0;
	padding-left: 35px;
	position: relative;
}

.quform .quform-option-label:before,
.quform .quform-option-label:after{
	content: "";
	position: absolute;
	width: 26px;
	height: 26px;
	left: 0;
	top: 50%;
	margin-top: -13px;
	border-radius: 5px;
	background: rgb(125,189,255);
	background: -webkit-linear-gradient(top, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(125,189,255,1)),to(rgba(60,98,158,1)));
	background: -o-linear-gradient(top, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	background: linear-gradient(to bottom, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7dbdff', endColorstr='#3c629e',GradientType=0 );
}

.quform .quform-option-label:after{
	width: 24px;
	height: 24px;
	left: 1px;
	margin-top: -12px;
	-webkit-filter: none;
	        filter: none;
	background: #eff2f9;
	border-radius: 4px;
}

.quform .quform-option-label .quform-option-text{
	position: relative;
}

.quform .quform-option-label .quform-option-text:before,
.quform .quform-option-label .quform-option-text:after{
	content: "";
	width: 16px;
	height: 2px;
	background-color: #222;
	position: absolute;
	left: -30px;
	top: 50%;
	z-index: 9;
	-webkit-transform: rotate(0);
	    -ms-transform: rotate(0);
	        transform: rotate(0);
	opacity: 0;
	-webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	-o-transition: opacity 0.3s ease, transform 0.3s ease;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.quform .quform-field-checkbox:checked + .quform-option-label .quform-option-text:before{
	opacity: 1;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.quform .quform-field-checkbox:checked + .quform-option-label .quform-option-text:after{
	opacity: 1;
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.quform-element-1_31 .quform-element,
.quform-element-1_32 .quform-element{
	max-width: 240px;
	margin-top: 1rem;
}

.quform .quform-option-label,
.quform-element-html{
	line-height: 1.4;
}

label,
.quform-label > label{
	font-size: 0.733rem;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.1em;
	display: inline-block;
	vertical-align: middle;
	white-space: normal;
	padding: 0 2em;
}

.quform-label-inside{
	left: 0 !important;
	top: 0 !important;
	width: 100%;
	height: 100%;
	font-size: 0;
	white-space: nowrap;
	z-index: 9;
	pointer-events: none;
}

.quform-label-inside:after{
	content: "";
	position: relative;
	width: 0;
	height: 100%;
	display: inline-block;
	vertical-align: middle;
}

.quform-element-submit{
	text-align: center;
}

.quform-element-submit button{
	margin-top: 0;
}

.quform-button-submit-default,
.quform-loading.quform-loading-position-left{
	float: none;
	display: inline-block !important;
	vertical-align: middle;
	margin-top: 3em;
}

.quform-edit-form{
	display: none;
}

/********** /ALL **********/

/********** HEADER / FOOTER **********/

#masthead{
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 3rem;
	display: inline-block;
	width: 100%;
	font-size: 0;
	white-space: nowrap;
	padding: 2rem 0 550px 0;
	position: relative;
	z-index: 1;
}

#masthead:before{
	content: "";
	position: absolute;
	pointer-events: none;
	z-index: 0;
	left: 0;
	width: 100%;
	top: 0;
	height: 200px;
	opacity: 0.6;
	background: -webkit-linear-gradient(top, rgba(62,90,153,1) 0%,rgba(62,90,153,0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(62,90,153,1)),to(rgba(62,90,153,0)));
	background: -o-linear-gradient(top, rgba(62,90,153,1) 0%,rgba(62,90,153,0) 100%);
	background: linear-gradient(to bottom, rgba(62,90,153,1) 0%,rgba(62,90,153,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3e5a99', endColorstr='#003e5a99',GradientType=0 );
}

/* #masthead .copyright{
	position: absolute;
	left: 0;
	width: 100%;
	bottom: -2rem;
	font-size: 0.666rem;
	color: #808080;
} */
#masthead .copyright {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 1.5rem;
    font-size: 0.666rem;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0,0,0,.4);
}

.site-branding{
	display: inline-block;
	vertical-align: bottom;
	width: 245px;
	position: relative;
}

.navigation-top{
	font-size: 1rem;
	white-space: normal;
	display: inline-block;
	vertical-align: bottom;
	width: calc(100% - 245px);
	text-align: right;
	margin-bottom: -0.8em;
}

.navigation-top .menu{
	text-align: right;
}

.navigation-top .menu{
	margin-right: -0.8em;
}

.menu-item{
	display: inline-block;
	font-weight: 600;
	position: relative;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.navigation-top .menu > .menu-item {
    margin-left: 40px;
}

.menu-item a{
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 1em;
	display: inline-block;
	font-size: 0.8em;
	position: relative;
	color: #fff;
}
.sub-menu a:before{
	display: none;
}

.menu-item a:hover{
	text-decoration: none;
}

.menu-item a:before{
	content: "";
	position: absolute;
	left: 1em;
	right: 1em;
	bottom: 0;
	height: 3px;
	background-color: #fff;
	-webkit-transform: scale(0, 1);
	    -ms-transform: scale(0, 1);
	        transform: scale(0, 1);
	-webkit-transform-origin: right center;
	    -ms-transform-origin: right center;
	        transform-origin: right center;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.menu-item a:hover:before,
.menu-item.current-menu-item:not(.wpml-ls-menu-item) a:before{
	-webkit-transform: scale(1, 1);
	    -ms-transform: scale(1, 1);
	        transform: scale(1, 1);
	-webkit-transform-origin: left center;
	    -ms-transform-origin: left center;
	        transform-origin: left center;
}

.menu-item .icon{
	width: 1rem;
	height: 1rem;
	display: inline-block;
	vertical-align: text-bottom;
	fill: #fff;
}

.sub-menu{
	position: absolute;
	top: 2.7em;
	left: 0.8em;
	right: 0.8em;
	display: none;
}

.sub-menu .menu-item{
	width: 100%;
	text-align: left;
	font-size: 0.8em;
	font-weight: 400;
}

.sub-menu .menu-item a{
	width: 100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	font-size: .95em;
}

#colophon{
	background-color: #414141;
	font-size: 0;
}

#colophon .boxed{
	padding-top: 3rem;
	padding-bottom: 3rem;
}

#colophon .site-branding,
#colophon .navigation-top,
#colophon .contact{
	font-size: 1rem;
	display: inline-block;
	vertical-align: middle;
}

#colophon .site-branding{
	width: 75px;
}

#colophon .navigation-top{
	width: calc(100% - 290px);
	vertical-align: baseline;
}

#colophon .navigation-top .menu{
	text-align: center;
}

#colophon .navigation-top .menu > .menu-item,
#colophon .navigation-top .menu > .menu-item:last-child{
	margin: 0 20px;
}

#colophon .menu-item a:before{
	height: 2px;
}

#colophon .contact{
	width: 215px;
	text-align: right;
	vertical-align: baseline;
	padding: 2em 0;
	border-left: 1px solid #fff;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

#colophon .contact .btn{
	margin: 0;
	color: #fff;
}

#colophon .contact .btn:before{
	background-color: #414141;
}

#colophon .sign{
	font-size: 0.666rem;
	background-color: #222;
	display: block;
	padding: 2em;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
}

#colophon .sign a{
	color: #fff;
}

#masthead .slider-wrapper{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	max-width: none;
	z-index: -1;
	font-size: 1rem;
}

#masthead .slider-wrapper .slider{
	height: 100% !important;
}

#masthead .slider-wrapper .slider-inner,
#masthead .slider-wrapper .slide,
#masthead .slider-wrapper figure,
#masthead .slider-wrapper img{
	height: 100%;
}

#masthead .slider-wrapper img{
	-o-object-fit: cover;
	   object-fit: cover;
	margin-bottom: 0;
}

#masthead .slider-wrapper figure{
	position: relative;
}

#masthead .slider-wrapper .copyright{
	position: absolute;
	bottom: 1em;
	left: 1em;
	color: #fff;
	text-align: left;
}

#masthead .heading{
	font-size: 2.666rem;
	text-transform: uppercase;
	color: #fff;
	position: absolute;
	left: 0;
	width: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#masthead .scroll-down{
	position: absolute;
	bottom: 0;
	width: 100%;
	font-size: 0.8rem;
	color: #fff;
	text-align: center;
	letter-spacing: 0.1em;
	margin-bottom: 2em;
	padding-bottom: 2em;
	cursor: pointer;
}

#masthead .scroll-down:before,
#masthead .scroll-down:after{
	content: "";
	position: absolute;
	width: 10px;
	height: 2px;
	background-color: #fff;
	left: 50%;
	margin-left: 0;
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	margin-top: -1px;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#masthead .scroll-down:after{
	margin-left: -6px;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}

#masthead .slider-pagination{
	position: absolute;
	left: 0;
	width: 100%;
	margin: 0;
	bottom: 6rem;
}

#masthead .bullet{
	background: #dfe0e1;
	-webkit-filter: none;
	        filter: none;
	width: 12px;
	height: 12px;
	border-radius: 6px;
	-webkit-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}

#masthead .bullet.active,
#masthead .bullet:hover{
	background-color: #fff;
}

#masthead .bullet:before{
	width: 22px;
	height: 22px;
	left: -5px;
	top: -5px;
	background-color: transparent;
	border: 1px solid #dfe0e1;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border-radius: 11px;
	-webkit-transform: scale(0.4);
	    -ms-transform: scale(0.4);
	        transform: scale(0.4);
	-webkit-transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
	transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease, border-color 0.3s ease;
	transition: transform 0.3s ease, border-color 0.3s ease;
	transition: transform 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
}

#masthead .bullet.active:before,
#masthead .bullet:hover:before{
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
	border-color: #fff;
}

#colophon #contact-form{
	position: fixed;
	z-index: 999;
	left: 0;
	width: 100%;
	height: 100%;
	top: 0;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
	-webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
	transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
	-o-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
	text-align: center;
}

#colophon #contact-form .quform{
	text-align: left;
}

#colophon #contact-form.active{
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}

.admin-bar #colophon #contact-form{
	top: 32px;
	height: calc(100% - 32px);
	text-align: center;
}

#colophon #contact-form .close{
	display: inline-block;
	text-transform: uppercase;
	font-size: 0.733em;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.1em;
	position: relative;
	padding: 30px 0 2em 0;
	margin-top: 2em;
	cursor: pointer;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#colophon #contact-form .close:before,
#colophon #contact-form .close:after{
	content: "";
	position: absolute;
	width: 22px;
	height: 3px;
	background-color: #fff;
	left: 50%;
	margin-left: -11px;
	top: 9px;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}

#colophon #contact-form .close:after{
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

#colophon #contact-form .boxed{
	padding-top: 0;
	padding-bottom: 0;
}

#colophon #contact-form .boxed-small{
	padding-bottom: 3em;
}

.scroll-top {
    position: fixed;
    z-index: 100;
    bottom: 120px;
    right: 75px;
    width: 50px;
    padding: 0;
    height: 50px;
    border-radius: 100%;
    display: none;
}
.scroll-top:before{
	border-radius: 100%;
	background: #ffffff;
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
}
.scroll-top span{
	font-size: 1.4em;
	position: absolute;
	top: calc(50% + 2px);
	left: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	        transform: translate3d(-50%, -50%, 0);
}

/********** /HEADER / FOOTER **********/

/********** BLOG **********/

.blog .hentry{
	clear: both;
	padding-top: 3em;
	margin-top: 3em;
	border-top: 1px solid #0966a6;
	display: inline-block;
	width: 100%;
}

.blog .hentry:first-child{
	padding-top: 0;
	border-top: 0;
}

.blog .hentry .post-thumbnail{
	width: 25%;
	margin-right: 5%;
	float: left;
	max-width: 225px;
}

.blog .hentry .entry-content-wrapper{
	overflow: hidden;
}

.blog .hentry .entry-meta{
	font-size: 0.8em;
	text-transform: uppercase;
	margin-bottom: 1.25em;
}

.blog .hentry .entry-content{
	position: relative;
	max-height: 5.4em;
	overflow: hidden;
}

.blog .hentry .entry-content:after{
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 0;
	height: 50px;
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)),to(rgba(255,255,255,1)));
	background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
	opacity: 1;
	-webkit-transition: opacity 0.2s ease;
	-o-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
	pointer-events: none;
}

.blog .hentry.toggle-off .entry-content:after,
.blog .hentry.toggle-open .entry-content:after{
	opacity: 0;
}

.navigation.pagination{
	text-align: center;
	margin: 3em 0;
}

.navigation.pagination .page-numbers{
	padding: 0 0.2em;
	text-decoration: none;
}

.navigation.pagination a.page-numbers:hover{
	text-decoration: underline;
}

.navigation.pagination .page-numbers.current{
	font-weight: 700;
	color: #0866a6;
}

.navigation.pagination .page-numbers.next svg,
.navigation.pagination .page-numbers.prev svg{
	display: inline-block;
	vertical-align: bottom;
	width: 1em;
	height: 1em;
}
.blog .type-post:last-child{
	margin-bottom: 60px;
}

/********** /BLOG **********/

/********** PROJECTS **********/

.single-project .entry-header,
.page-header{
	text-align: center;
}

.single-project .metas{
	font-size: 0;
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-flex-wrap: wrap;
	-ms-flex-line-pack: stretch;
	    align-content: stretch;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin: 3rem auto;
}

.single-project .meta{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-flex-wrap: wrap;
	width: 48%;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.single-project .meta:nth-last-child(-n+2) .meta-title,
.single-project .meta:nth-last-child(-n+2) .meta-value{
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}

.single-project .meta-title,
.single-project .meta-value{
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #7dbeff;
	white-space: normal;
}

.single-project .meta-title{
	font-size: 1.066rem;
	font-weight: 700;
	width: 25%;
}

.single-project .meta-value{
	font-size: 1rem;
	width: 72%;
}

.single-project .meta-value a{
	color: #0966a6;
	font-style: italic;
}
.single-project .meta-value li{
	margin-bottom: 0;
	padding-left: 0;
}

.single-project .meta-value li:before{
	display: none;
}

.sections,
.single-project .partners{
	padding: 3em 0;
	text-align: center;
	clear: both;
}
.single-project .partners .type-partner .btn:before{
	background-color: #ffffff;
}
.sections.sections-bg{
	background-color: #eff2f9;
}
.sections-bg.interetsspeciaux .sub-heading, .sections-bg.interetsspeciaux .section-title{
	text-align: left !important;
}
.sections-bg.interetsspeciaux .section-title.h1:after{
	left: 22px;
}
.sections-bg.interetsspeciaux .section-title{
	float: left;
}
.sections-bg.interetsspeciaux .btn{
	margin: 0;
	float: right;
}
.sections-bg.interetsspeciaux .sub-heading{
	clear: both;
}
.section{
	display: inline-block;
	text-align: left;
}

.section-title.h1{
	text-align: left;
	margin-top: 1.142em;
}

.section:first-child .section-title.h1{
	margin-top: 0;
}

.section-title.h1:after{
	left: 0;
	margin-left: 0;
}

.slider-wrapper{
	margin: 3em auto;
}

.slider{
	overflow: hidden;
	height: auto;
	-webkit-transition: height 0.3s ease;
	-o-transition: height 0.3s ease;
	transition: height 0.3s ease;
}

.slider .slider-inner{
	white-space: nowrap;
	font-size: 0;
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.slider .slider-inner .slide{
	display: inline-block;
	vertical-align: top;
	font-size: 1rem;
	text-align: center;
}

.slider .slider-inner .slide img{
	margin-bottom: 1em;
	width: 100%;
}
body:not(.home) .slider .slider-inner .slide img{
	margin-bottom: 1em;
	width: auto;
	object-fit: cover;
	object-position: center;
}

.slider-pagination{
	text-align: center;
	margin-top: 1em;
}

.slider-pagination .bullet{
	display: inline-block;
	vertical-align: middle;
	width: 14px;
	height: 14px;
	border-radius: 7px;
	margin: 0.5em;
	cursor: pointer;
	position: relative;
	background: rgb(125,189,255);
	background: -webkit-linear-gradient(top, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(125,189,255,1)),to(rgba(60,98,158,1)));
	background: -o-linear-gradient(top, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	background: linear-gradient(to bottom, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7dbdff', endColorstr='#3c629e',GradientType=0 );
}

.slider-pagination .bullet:before{
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #fff;
	pointer-events: none;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.slider-pagination .bullet.active:before{
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
}

.single-project .partners .partner{
	background-color: #fff;
	padding: 3em 2em;
	margin-top: 3em;
}

.single-project .partners .partner .wp-post-image {
    max-height: 100px;
    width: auto;
    max-width: 200px;
    margin-bottom: 3em;
    height: auto;
}

.slide footer.copyright{
	white-space: pre-line;
}
/********** /PROJECTS **********/

/********** FONDATION & PROJECTS **********/

.post-type-archive-project .static .entry-content{
	text-align: center;
}

.post-type-archive-project .static .intro{
	display: -webkit-box;display: -ms-flexbox;display: flex;display: -webkit-flex;
	text-align: left;
	padding-top: 3em;
	padding-bottom: 3em;
}

.post-type-archive-project .static .intro .big{
	margin: auto;
	font-size: 1.333em;
	padding-right: 10%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.post-type-archive-project .section,
.post-type-archive-project .section .sub-heading,
.sub-heading{
	text-align: center;
}

.sub-heading{
	font-size: 1.1em;
	line-height: 1.4;
}

.post-type-archive-project .section-title.h1{
	text-align: center;
}

.post-type-archive-project .section-title.h1:after{
	left: 50%;
	margin-left: -22px;
}

.post-type-archive-project .section img{
	margin: 3em 0;
	width: 760px;
	max-width: 100%;
}

.projects{
	font-size: 0;
	margin: 3rem auto;
}

.projects .hentry.project{
	font-size: 1rem;
	display: inline-block;
	vertical-align: top;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 27%;
	height: 0;
	padding-bottom: 31.5%;
	margin: 0 1.5% 1.5% 0;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	-webkit-box-shadow: 0 0 0 #353535;
	        box-shadow: 0 0 0 #353535;
	-webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
	transition: opacity 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
	-o-transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
	transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
	transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
	position: relative;
	z-index: 1;
	color: #fff;
	overflow: hidden;
}

.projects .hentry.project:nth-child(3n+2){
	width: 43%;
}

.projects .hentry.project:nth-child(3n){
	margin-right: 0;
}

.projects .hentry.project:hover{
	-webkit-transform: translateY(-4%);
	    -ms-transform: translateY(-4%);
	        transform: translateY(-4%);
	-webkit-box-shadow: 0 6px 20px #353535;
	        box-shadow: 0 6px 20px #353535;
	text-decoration: none;
}

.projects .hentry.project:before,
.projects .hentry.project:after{
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 0;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	pointer-events: none;
	z-index: -1;
}

.projects .hentry.project:before{
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
	-o-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}

.projects .hentry.project:hover:before{
	opacity: 1;
}

.projects .hentry.project:after{
	height: 65%;
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)),to(rgba(0,0,0,0.8)));
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 );
}

.projects .hentry.project .hentry-inner{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0 1em 1em 1em;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-transform: translateY(100%);
	    -ms-transform: translateY(100%);
	        transform: translateY(100%);
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: -webkit-transform 0.4s ease;
	-o-transition: transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.projects .hentry.project:hover .hentry-inner{
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}

.projects .hentry.project .entry-title{
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
	padding: 0.75em 0 1em 0;
	margin-bottom: 0;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.projects .hentry.project:hover .entry-title{
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}

.projects .hentry.project .hentry-inner .sub-heading{
	text-align: left;
}

.projects .hentry.project .project-link{
	position: absolute;
	width: 54px;
	height: 54px;
	left: 15px;
	bottom: 15px;
}

.projects .hentry.project .project-link:before,
.projects .hentry.project .project-link:after{
	content: "";
	position: absolute;
	width: 10px;
	height: 2px;
	background-color: #fff;
	right: 50%;
	top: 50%;
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	margin-top: -1px;
	margin-right: -3px;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
	-webkit-transform-origin: right top;
	    -ms-transform-origin: right top;
	        transform-origin: right top;
}

.projects .hentry.project .project-link:after{
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	-webkit-transform-origin: right bottom;
	    -ms-transform-origin: right bottom;
	        transform-origin: right bottom;
}

/* .post-type-archive-project .projects.boxed .type-project:nth-child(n+7){
	display: none;
} */
/********** /FONDATION & PROJECTS **********/

/********** RESSOURCES **********/
.post-type-archive-ressource #masthead:before{
	height: 100%;
}
#masthead .citation {
    font-size: 1.3rem;
    line-height: 1.8rem;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    top: 250px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 850px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#masthead .citation blockquote {
    white-space: initial;
}

#masthead .citation .auteur{
    margin-top: 20px;
    display: block;
    font-size: .7em;
}

.ressource-categorie{
	margin: 0 auto 3rem auto;
}
.ressource-categorie .btn{
	width: 23%;
	padding: 28px 1em;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	text-align: center;
	box-shadow:0 0 0 1px transparent;
}
.ressource-categorie .btn{
	margin-right: 2.3%;
	margin-top: 0;
	font-size: .75em;
}
.ressource-categorie .btn.active::before{
	left: 3px;
    top: 3px;
    right: 3px;
    bottom: 3px;
}
.ressource-categorie .btn:last-child{
	margin-right: 0;
}
.content-ressource{
	padding: 50px 0;
}
.content-ressource .read-more a{
	color: #000000;
}
article.type-ressource{
	padding: 40px 0;
}
article.type-ressource .entry-content:not(.wrapper){
	padding: 10px 0;
}
article.type-ressource:not(:last-child){
	border-bottom: 1px solid rgba(60,98,158,1);
}
span.thematique{
	font-size: .75em;
	text-transform: uppercase;
	font-weight: bold;
}
img.thematique-icon{
    width: 30px;
    margin: 0 15px 20px 0;
}
article.type-ressource iframe{
	display: block;
	margin: 5px 0 25px 0;
	max-width: 100%;
}
article.type-ressource .entry-content-wrapper{
	overflow: hidden;
}
article.type-ressource .post-thumbnail{
	float: left;
    margin-right: 40px;
}
article.type-ressource .post-thumbnail img{
	width: 225px;
	max-width: 100%;
	margin-bottom: 25px;
}
article.type-ressource .entry-meta{
	text-transform: uppercase;
}
/********** /RESSOURCES **********/
/********** HOME **********/

.home #masthead{
	margin-bottom: 0;
}

.home .projects-wrapper .btn{
	margin-top: 0;
}

.home .left{
	padding: 10% 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.home .left p{
	text-align: center;
	font-size: 1.333em;
	line-height: 1.3;
}

.home .left p strong{
	font-size: 1.4em;
	text-transform: uppercase;
	font-weight: 400;
}

.home .right .h1{
	text-align: left;
}

.home .right .h1:after{
	left: 0;
	margin-left: 0;
}

.home .right p{
	line-height: 1.6;
}

/* .home .projects-wrapper .boxed-small{
	max-width: 760px;
} */

/********** /HOME **********/


/********** SELECT **********/
.filter-projects{
	position: relative;
	padding: 4em 0;
	z-index: 10;
}
.filter-thematiques{
	left: 150px;
}
.filter-enjeux{
	left: 585px;
}
.filter-projects ul.list li:before{
	display: none;
}
.nice-select .current{
	text-align: center;
	display: block;
	font-family: "montserrat", sans-serif;
    font-size: 0.8em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #222;
    border: 0;
}
.nice-select:before{
    content: "";
    position: absolute;
    left: 1px;
    top: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 4px;
    background-color: #fff;
    pointer-events: none;
    z-index: -1;
    opacity: 1;
    -webkit-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}
.nice-select {
  -webkit-tap-highlight-color: transparent;
    background: rgb(125,189,255);
    background: -webkit-linear-gradient(top, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(125,189,255,1)),to(rgba(60,98,158,1)));
    background: -o-linear-gradient(top, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
    background: linear-gradient(to bottom, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7dbdff', endColorstr='#3c629e',GradientType=0 );
    z-index: 0;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 57px;
  line-height: 55px;
  outline: none;
  padding-right: 30px;
  position: absolute;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: 375px; }
  .nice-select:hover {
    border-color: #dbdbdb; }
  .nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999; }
  .nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
            transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px; }
  .nice-select.open:after {
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg); }
  .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); }
  .nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none; }
    .nice-select.disabled:after {
      border-color: #cccccc; }
  .nice-select.wide {
    width: 100%; }
    .nice-select.wide .list {
      left: 0 !important;
      right: 0 !important; }
  .nice-select.right {
    float: right; }
    .nice-select.right .list {
      left: auto;
      right: 0; }
  .nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px; }
    .nice-select.small:after {
      height: 4px;
      width: 4px; }
    .nice-select.small .option {
      line-height: 34px;
      min-height: 34px; }
  .nice-select .list {
  	width: 100%;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
            box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: 15px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
            transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    -o-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9; }
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; }
  .nice-select .option {
  	font-size: .95em;
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s; }
    .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
      background-color: #f6f6f6; }
    .nice-select .option.selected {
      font-weight: bold; }
    .nice-select .option.disabled {
      background-color: transparent;
      color: #999;
      cursor: default; }
.no-csspointerevents .nice-select .list {
  display: none; }

.no-csspointerevents .nice-select.open .list {
  display: block; }

/********** /SELECT **********/
/********** HIDE DESKTOP **********/
@media all and (min-width: 1111px){
	.projects-wrapper .slider-pagination{
		display: none;
	}
	.nice-select.ressource-responsive{
		display: none;
	}
	.hamburger{
		display: none !important;
	}
}

/********** /HIDE DESKTOP **********/
/**************** RESPONSIVE ****************/
@media all and (max-width:1110px){
	.post-type-archive-project .static .intro{
		display: block;
	}
	.post-type-archive-project .static .intro p:last-child{
		margin-bottom: 2em;
	}
	.post-type-archive-project .half{
		width: 100%;
	}
#masthead{
	padding: 2rem 0 340px 0;
}
#masthead .citation{
	top: 200px;
}
#masthead .main-navigation{
	display: none;
}
p{
	font-size: .9em;
}

.half{
	width: 100%;
	margin-right: 0;
}
.btn:not(.scroll-top):not(.open-contact){
	left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.scroll-top{
	right: 30px;
	bottom: 40px;
}
.sub-menu .menu-item{
	text-align: center;
}
footer .sub-menu{
	margin: 15px 0;
}
/********** FATNAV **********/
.hamburger{
	position: absolute !important;
	left: initial !important;
	right: 0 !important;
	top: 35px !important;
	padding: 0 !important;
	display: block !important;
}
.hamburger .hamburger__icon,
.hamburger .hamburger__icon:before,
.hamburger .hamburger__icon:after {
	    background-color: #ffffff;
}
.hamburger.active .hamburger__icon:before,
.hamburger.active .hamburger__icon:after {
		    background-color: #ffffff ;
}
.hamburger.active .hamburger__icon:after, .hamburger.active .hamburger__icon:before{
	background-color: #3c629e !important;
}
.fat-nav .menu-item a:before{
	background-color: #d1b06d !important;
}
.fat-nav__wrapper{
	background-color: #eff2f9;
	position: relative;
	-webkit-transform: none !important;
    -ms-transform: none !important;
	transform: none !important;
	padding: 2rem 0
}
.fat-nav__wrapper .site-title{
	padding-left: 15px;
}
.fat-nav__wrapper div[class*="menu-"]{
	top: 50%;
    position: absolute;
    -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
}
.fat-nav .sub-menu{
	position: static;
	display: block;
}
.fat-nav .sub-menu li{
	text-align: center;
	display: none;
	padding: 0 !important;
	font-size: .9em !important;
}
.fat-nav li a{
	color: #3c629e !important;
	text-transform: uppercase;
    letter-spacing: .1em;
}
.fat-nav li:first-child{
	display: none;
}
.fat-nav li{
	color: rgb(34, 34, 34) !important;
	position: relative;
	padding: 10px 0 !important;
	font-size: 1.15em !important;
}
.menu-item .icon{
	fill: #d1b06d;
}
/********** /FATNAV **********/

/********** HOME **********/

.home .right .h1, .home .right p{
	text-align: center;
}

.home .right .h1:after{
	left: 50%;
	margin-left: -22px;
}
.home .projects-wrapper{
	overflow: hidden;
}
.home .section.projects{
	max-width: initial;
	height: 300px;
	margin: 2rem auto 0 0;
	-webkit-transition: -webkit-transform .25s ease;
	transition: -webkit-transform .25s ease;
	-o-transition: transform .25s ease;
	transition: transform .25s ease;
	transition: transform .25s ease, -webkit-transform .25s ease;
}
.home .projects .hentry.project{
	width: 90vw;
	height: 300px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	margin: 0 15px 1.5% 0;
	padding-bottom: 0;
}
.home .projects-wrapper .boxed .btn{
	left: 0;
	-webkit-transform: none;
	    -ms-transform: none;
	        transform: none;
}
.home .slider-pagination{
    text-align: center;
    margin-top: 1em;
    margin-bottom: 1.5em;
}
/********** /HOME **********/


/********** LA FONDATION **********/
.post-type-archive-project .static .intro .big{
	font-size: 1.2em;
	margin-bottom: 20px;
}
.sections-bg.interetsspeciaux .section-title{
	text-align: center !important;
}
.sections-bg.interetsspeciaux .section-title.h1:after{
	left: 50%;
}
/********** /LA FONDATION **********/

/********** PROJETS **********/
.post-type-archive-project .static .intro .big{
	padding-right: 0;
}

.projects .hentry.project .entry-title{
	font-size: 1em;
}
.filter-projects{
	padding: 2em 0;
}

.post-type-archive-project .projects{
	margin: 9rem auto 3rem auto;
}
.nice-select .current{
	font-size: .7em;
}
.sections-bg.interetsspeciaux .sub-heading{
	text-align: center !important;
}
.sections-bg.interetsspeciaux .btn{
	left: 0 !important;
	margin: 20px 0 0 0;
	-webkit-transform: none;
	    -ms-transform: none;
	        transform: none;
	float: none;
}
.sections-bg.interetsspeciaux .section-title{
	float: none;
}
/********** /PROJETS **********/

/********** PROJET SINGLE **********/
.single-project .meta{
	width: 100%;
}
.single-project .meta-title{
	font-size: .9rem;
	width: 30%;
}
.single-project .meta-value {
	font-size: .9rem;
    width: 65%;
}
.single-project .meta:nth-last-child(-n+2) .meta-title, .single-project .meta:nth-last-child(-n+2) .meta-value {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #7dbeff;
    white-space: normal;
}
.single-project .section-title.h1{
	text-align: center;
}
.single-project .section-title.h1:after{
	left: 50%;
    margin-left: -22px
}
.single-project .type-partner .btn{
	left: 50vw;
	-webkit-transform: translateX(-50vw);
    -ms-transform: translateX(-50vw);
    transform: translateX(-50vw);
}
/********** /PROJET SINGLE **********/

/********** RESSOURCES **********/
.content-ressource{
	padding: 80px 0;
}
.ressource-categorie{
	text-align: center;
}
.ressource-categorie a{
	display: none;
}
.nice-select.ressource-responsive{
	display: block;
	width: 90%;
    max-width: 400px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 25px 0;
}
/********** /RESSOURCES **********/


/********** BLOG **********/
.blog .hentry .post-thumbnail {
    width: 100%;
    margin-right: 0;
    float: none;
    margin-bottom: 30px;
}
.blog .hentry .post-thumbnail img {
	width: 360px;
}

.blog main{
	padding-bottom: 50px;
}
/********** /BLOG **********/

/********** FOOTER **********/
#colophon .boxed{
	padding: 4rem 30px 3rem 30px;
}
#colophon .site-branding{
	width: 100%;
}
#colophon .site-branding p.site-title{
	text-align: center;
}
#colophon .navigation-top{
	width: 100%;
}
#colophon .menu-item{
	display: block;
}
#colophon .navigation-top .menu > .menu-item{
	margin: 40px 0;
}
#colophon .navigation-top .menu{
	margin-right: 0;
}
#colophon .contact {
    border-left: 0;
    margin-top: 110px;
    padding-top: 60px;
    border-top: 1px solid white;
}
#colophon .contact{
	text-align: center;
	width: 100%;
}

#colophon .sign{
	font-size: 0.62rem;
	line-height: 1.6em;
}
#colophon .menu-item a:before{
	display: none;
}
#menu-main-1 a{
	line-height: 1.5em;
	font-size: 1em;
}
/* .filter-enjeux{
	right: 15px;
}
.filter-thematiques{
	left: 15px;
} */
	.filter-thematiques, .filter-enjeux{
		width: calc(100% - 30px);
		left: 15px;
	}
	.filter-enjeux{
		top: 110px;
	}
}
/********** /FOOTER **********/


@media all and (max-width:815px){

	article.type-ressource .entry-content-wrapper{
		overflow: initial;
	}
	article.type-ressource .post-thumbnail{
		float: none;
	    margin-right: initial;
	}
}
@media all and (max-width:678px){
	.heading .boxed{
		font-size: 1.5rem;
		white-space: initial;
	}
	.post-type-archive-project .projects .hentry.project{
		width: 100% !important;
		height: 200px;
	}

}

/**************** RESPONSIVE ****************/


/******************** BUXUM ********************/



.single #masthead {
	padding: 2rem 0 250px 0 !important;
}

.single .entry-title {	font-size: 1.866em;
	font-family: "proxima-nova", sans-serif;
	line-height: 1.3;
	display: block;
	text-transform: uppercase;
	padding-bottom: 1em;
	margin: 1em 0 1.142em 0;
	position: relative;
	text-align: center;
	letter-spacing: 0.08em;}
.single .read-more{display:none;}

.single .entry-title:after, h1:after{
	content: "";
	width: 44px;
	height: 4px;
	position: absolute;
	left: 50%;
	margin-left: -22px;
	bottom: 0;
	margin-bottom: -2px;
	background: rgb(125,189,255);
	background: -webkit-linear-gradient(top, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(125,189,255,1)),to(rgba(60,98,158,1)));
	background: -o-linear-gradient(top, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	background: linear-gradient(to bottom, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7dbdff', endColorstr='#3c629e',GradientType=0 );
}

.single .post-thumbnail {display: none;}
.partner > .post-thumbnail {display: block !important;}
.post .entry-title {text-align: center !important;}

/**** CSS Container intérêts ****/
#ibtn {
	margin-bottom:20px;
}

#intcontainer {
	width: 100% !important;
	height: auto;
}

.pdfinterets {
	margin-top:10px !important;
	margin-bottom:10px !important;
	max-height: 100%;
	min-width:100% !important;
	display:none;
}

/*Pdf part*/

#intctnfr {
  width:100%;
  background-color:#fff;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  flex-direction:column;
  padding-top:30px;
  padding-left:30px;
  padding-right:30px;
  padding-bottom:10px;
}

#intctnen {
  width:100%;
  background-color:#fff;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  flex-direction:column;
  padding-top:30px;
  padding-left:30px;
  padding-right:30px;
  padding-bottom:10px;
}

#intcontainer > * {
	color:#2f5597 !important;
}

@media only screen and (max-width: 805px) {
   .logofondation {
   display:none;
  }
	#intcontainer {
		padding:5px;
		height:auto;
		max-height:auto;
	}
    #intsubcontainer {
    max-height:350px;
  }
}

#intsubcontainer {
  width:100%;
  min-height:100px;
  display:flex;
  flex-wrap:wrap;
  flex-direction:row;
}

.pdftitle {
  text-align:left;
  margin:0;
  width:100%;
  padding-bottom:10px;
  border-bottom:2px solid #2f5597;
}

.subcontainer1 {
  align-items:flex-start;
  flex-wrap:wrap;
  flex-direction:row;
}

.subblue {
  background-color:#dfebf8;
}

.subcontainer10 {
  display:flex;
  justify-content:center;
}

.partnerlogo {
  width:20%;
  height:100% !important;
  display:flex;
  justify-content:center;
  align-items:center;
}

.partnerlogo > img {
  margin:0 !important;
  width:auto;
  max-width:80%;
  max-height:85px;
  padding-left:10px;
}

.partnertxt {
  width:70%;
  height:100%;
  display:flex;
  flex-wrap:wrap;
  flex-direction:column;
  padding:10px;
}

.itxt, .ilink {
  text-align:left;
  width:100%;
}

.ilink {
  height:30%;
}

.itxt {
  height:100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.subcontainer10 {
  align-items:flex-end;
}

.subcontainer10 > * {
  width:100%;
}

#pdfbot {
  padding-top:10px;
  display:flex;
  justify-content:center;
  border-top:2px solid #2f5597;
}

#pdftop{
  width:70%;
}

.ibtn {
	margin-top:0 !important;
}

#ibtn {
	font-family: "montserrat", sans-serif !important;
    display: inline-block !important;
    padding: 1.5em 4em !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    margin-top: 0 !important;
    border-radius: 5px !important;
    position: relative !important;
    background: rgb(125,189,255) !important;
    background: -webkit-linear-gradient(top, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%) !important;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(125,189,255,1)),to(rgba(60,98,158,1))) !important;
    background: -o-linear-gradient(top, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%) !important;
    background: linear-gradient(to bottom, rgba(125,189,255,1) 0%,rgba(60,98,158,1) 100%) !important;
    z-index: 1 !important;
    -webkit-transition: color 0.2s ease !important;
    -o-transition: color 0.2s ease !important;
    transition: color 0.2s ease !important;
    color: #222 !important;
    border: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
}