/*
Theme Name: L’Atlas
Author: Studio des formes / Gaël Gouault 
Author URI: https://studiodesformes.net/
Description: …
Version: 1.0
*/

   /*/°\
  !& & (@
 ,-\-- /--,
! _!°°° !_ !
!_/!-__-!22/
  /°./\.°\
/===!  !==*/

/**
 * Table of Contents
 *
 * 1.0 - Typography
 * 2.0 - Normalize
 *   2.1 - Elements
 *   2.2 - Links
 * 3.0 - Header
 * 4.0 - Main Content
 *   4.1 - Grid content
 *   4.1 - Grid Layout
 * 5.0 - Site Content
 *   5.1 - Table
 *   5.2 - Media
 * 6.0 - Single
 * 7.0 - Page
 * 8.0 - ???
 * 9.0 - Others
 * 10.0 - Media Queries
 */


/**
 * 1.0 - Typography
 */

/*--- Cambon ---*/
@font-face { 
    font-family: 'Cambon-L';
    src: url('fonts/Cambon/Cambon-Light.otf'); 
    src: url('fonts/Cambon/Cambon-Light.otf') format('opentype'),
    	 url('fonts/Cambon/Cambon-Light.woff') format('woff'),
    	 url('fonts/Cambon/Cambon-Light.woff2') format('woff2');
    font-weight: normal; 
    font-style: normal;
}
@font-face { 
    font-family: 'Cambon-LI';
    src: url('fonts/Cambon/Cambon-LightItalic.otf'); 
    src: url('fonts/Cambon/Cambon-LightItalic.otf') format('opentype'),
    	 url('fonts/Cambon/Cambon-LightItalic.woff') format('woff'),
    	 url('fonts/Cambon/Cambon-LightItalic.woff2') format('woff2'); 
    font-weight: normal; 
    font-style: normal;
}
/*--- Polar ---*/
@font-face { 
    font-family: 'Polar-L';
    src: url('fonts/Polar/FTPolar-Light.otf'); 
    src: url('fonts/Polar/FTPolar-Light.otf') format('opentype'),
    	 url('fonts/Polar/FTPolar-Light.woff') format('woff'),
    	 url('fonts/Polar/FTPolar-Light.woff2') format('woff2'); 
    font-weight: normal; 
    font-style: normal;
}
@font-face { 
    font-family: 'Polar-LI';
    src: url('fonts/Polar/FTPolar-LightItalic.otf'); 
    src: url('fonts/Polar/FTPolar-LightItalic.otf') format('opentype'),
    	 url('fonts/Polar/FTPolar-LightItalic.woff') format('woff'),
    	 url('fonts/Polar/FTPolar-LightItalic.woff2') format('woff2'); 
    font-weight: normal; 
    font-style: normal;
}
@font-face { 
    font-family: 'Polar-R';
    src: url('fonts/Polar/FTPolar-Regular.otf'); 
    src: url('fonts/Polar/FTPolar-Regular.otf') format('opentype'),
    	 url('fonts/Polar/FTPolar-Regular.woff') format('woff'),
    	 url('fonts/Polar/FTPolar-Regular.woff2') format('woff2'); 
    font-weight: normal; 
    font-style: normal;
}
@font-face { 
    font-family: 'Polar-RI';
    src: url('fonts/Polar/FTPolar-RegularItalic.otf'); 
    src: url('fonts/Polar/FTPolar-RegularItalic.otf') format('opentype'),
    	 url('fonts/Polar/FTPolar-RegularItalic.woff') format('woff'),
    	 url('fonts/Polar/FTPolar-RegularItalic.woff2') format('woff2'); 
    font-weight: normal; 
    font-style: normal;
}

:root {
	--color: rgb(0, 195, 30);
}


/**
 * 2.0 - Normalize
 */

html {
	font-family: 'Cambon-L', serif;
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
video {
	display: inline-block;
	vertical-align: baseline;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img,
iframe,
object {
	border: 0;
}

hr {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

body,
button,
input,
select,
textarea {
	font-family: 'Cambon-L', serif;
	font-size: 1rem;
	line-height: 1.2;
	color: #000;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

::placeholder {
	color: #000;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #000;
}

::-ms-input-placeholder {
	color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-size: 1.7em;
	font-weight: normal;
	margin: 0;
}

b,
strong {
	font-weight: normal;
}

em,
i {
	font-style: normal;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}


/**
 * 2.1 - Elements
 */

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

hr {
	background: var(--color);
	border: 0;
	height: 1px;
	margin: 0 0 1em;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

ul li,
ol li {
	list-style-type: none;
}


/**
 * 2.2 - Links
 */

a {
	color: var(--color);
	text-decoration: none;
	transition: color .25s;
}

a:hover,
a:focus,
a:active {
	color: #000;
}

a:hover,
a:active,
button {
	outline: 0;
}

/**
 * 3.0 - Preload
 */

#preload {
	display: none;
	position: fixed;
	justify-content: center;
	align-items: center;
	top: 3.4em;
	left: 0;
	width: 100%;
	height: calc(100% - 3.4em);
	padding: 5em 1.6em;
	background: #FFF;
	z-index: 9999;
}

#preload figure {
	position: relative;
	width: 25%;
	height: 25%;
	margin: 0;
	background: url(icons/atlas_logo.svg) center center no-repeat;
	opacity: 0;
	animation: fullImg 3s;
}

@keyframes fullImg {
	5% { opacity: 1; }
	15%, 100% { width: 100%; height: 100%; opacity: 1; }
}

.admin-bar #preload {
	top: calc(3.4em + 32px);
	height: calc(100% - 3.4em - 32px);
}


/**
 * 4.0 - Header
 */

#masthead {
	position: fixed;
	width: 100%;
	height: 3.4em;
	display: flex;
	align-items: center;
	padding: 0 1.6em;
	background: #FFF;
	z-index: 9;
}

#masthead > div {
	width: 40%;
	background: #FFF;
}

#masthead > nav {
	width: 20%;
	background: #FFF;
}

.site-title > *,
.main-navigation > span,
.site-lang > li {
	font-family: 'Cambon-L', serif;
	font-size: 2.5em;
	color: var(--color);
	text-transform: uppercase;
	margin: 0;
}

.site-lang > li {
	list-style-type: none;
	text-align: right;
}

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

.main-navigation > span {
	transition: color .25s;
	cursor: pointer;
}

.main-navigation > span:hover {
	color: #000;
}

.content-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 8.5em);
	padding-top: 5em;
	background: #FFF;
	z-index: -1;
}

.content-menu > div:first-child {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.content-menu .items-expo {
	display: flex;
}

.content-menu .items-expo li {
	margin-right: 0.25em;
}

.content-menu .items-expo li:nth-child(-n+2):after {
	content: ',';
	color: var(--color);
}

.content-menu .lang-item {
	display: none;
}

#masthead .menu:not(#menu-social) li {
	font-family: 'Polar-L', serif;
	font-size: 5.2em;
	line-height: 1.4;
	text-transform: uppercase;
	opacity: 0;
	transition: opacity .5s;
}

.menu-social-container {
	width: 100%;
	height: 8.5em;
	padding: 1.6em;
	background: #FFF;
}

.menu-social-container li {
	font-family: 'Cambon-L';
	font-size: 2em;
	color: var(--color);
}


/**
 * 4.0 - Main Content
 */

.site-content {
	width: 100%;
	min-height: calc(100vh - 9em);
	padding: 3em 0 9em 0;
}

.category-en-cours .site-content,
.category-current .site-content {
	padding-top: 12em;
}

.padding { padding: 0 1.6em; }
.left { text-align: left; }
.center { text-align: center; }
.right { text-align: right; }
.months { text-transform: capitalize; }
.lower { text-transform: lowercase; }
.runningTime * { margin: 0; }
.no-ita { font-family: 'Cambon-L'!important; }
.no-srf { font-family: 'Polar-L'!important; }


/*--- Home ---*/

.entry-description {
	margin: 9em auto 12em auto;
	width: 100em;
	max-width: 100%;
}

.entry-description p {
	font-family: 'Cambon-LI';
	font-size: 2.5em;
	color: var(--color);
	margin: 0;
}

.home .entry-content {
	margin: 0 auto 15em auto;
	padding: 0 1.6em;
	width: 90em;
	max-width: 100%;
}

.home .entry-content p {
	margin-top: 0.5em;
}

/*.home .carousel {
	height: 55em;
}

.home .carousel-cell figure {
	height: 100%;
}

.home .carousel-cell figcaption {
	display: none;
}*/


/*--- Post ---*/

.post,
.event {
	margin: 3em 0;
}

.post header,
.event header {
	display: flex;
	align-items: flex-end;
	width: 100%;
	padding: 0 1.6em;
}

.post header > div,
.event header > div {
	width: 33.333%;
}

.post header > div > *,
.event header > div > * {
	font-family: 'Polar-L';
	font-size: 2.5em;
	margin: 0;
}

.post header > div.left > h2,
.event header > div.left > h2 {
	font-family: 'Cambon-LI';
}

.post header > div.left > p,
.event header > div.left > p {
	font-family: 'Cambon-L';
}

/*--- Page ---*/

.entry-image.full {
	width: 100%;
	max-width: 144em;
	margin-left: auto;
	margin-right: auto;
}

.entry-image img {
	width: 100%;
	height: auto;
}

.entry-image figcaption {
	font-family: 'Polar-R';
	font-size: 1.1em;
	color: var(--color);
}

.entry-image figcaption i,
.entry-image figcaption em {
	font-family: 'Polar-RI';
}

.entry-address {
	margin: 9em 0;
}

.entry-address p {
	font-family: 'Cambon-LI';
	font-size: 2.5em;
	color: var(--color);
	margin: 0;
}

.entry-map {
	width: 75em;
	max-width: 100%;
	margin: 6em auto;
}

.entry-map img {
	width: 100%;
	height: auto;
}

/*--- Atlas ---*/

.atlas .entry-image {
	margin: 9em auto;
}

.atlas .entry-description {
	margin-bottom: 3em;
}

.entry-information {
	flex-wrap: wrap;
	flex-direction: column;
	padding: 0 1.6em;
	margin: 7em 0;
}

.entry-information ul {
	color: var(--color);
	margin-bottom: 5em;
}

.entry-information ul h4 {
	font-family: 'Cambon-L';
	font-size: 2em;
}

.entry-information ul li {
	font-family: 'Polar-L';
	font-size: 2rem;
}

.entry-information ul li a {
	font-family: 'Cambon-L';
	font-size: 2rem;
	border-bottom: 1px solid var(--color);
}

.entry-tax-gallery {
	margin: 3em 0;
}

.entry-tax-gallery ul {
	display: flex;
}

.entry-tax-gallery ul.thead {
	padding: 1em 0 0.5em 0;
}

.entry-tax-gallery ul.thead li {
	font-family: 'Cambon-L';
}

.entry-tax-gallery ul.tbody {
	padding: 0.5em 0 0.75em 0;
	border-top: 1px solid var(--color);
	transition: border .25s;
}

.entry-tax-gallery ul li {
	font-family: 'Polar-L';
	font-size: 2.5em;
	color: var(--color);
	width: 33.333%;
	transition: color .25s;
}

.entry-tax-gallery ul.tbody:hover,
.entry-tax-gallery ul.tbody:hover li,
.entry-tax-gallery ul.tbody:hover li a {
	border-top-color: #000;
	color: #000;
}

.entry-tax-gallery ul .left a {
	font-family: 'Cambon-LI';
}

.entry-tax-gallery .post-gallery {
	display: none;
}

#more-post-gallery {
	font-family: 'Cambon-L';
	font-size: 2em;
	display: none;
	margin-top: 1em;
}


/*--- Contact ---*/

.contact header {
	display: flex;
	width: 100%;
	padding: 0 1.6em;
	margin: 9em 0 3em 0;
}

.contact header > div {
	width: 33.333%;
}

.contact header > div > * {
	font-family: 'Polar-L';
	font-size: 2.5em;
	color: var(--color);
	margin: 0;
}

.contact header > div.center p {
	font-family: 'Cambon-LI';
}

.contact .entry-content {
	width: 90em;
	max-width: 100%;
	margin: 0 auto;
}

.contact .entry-content p {
	font-family: 'Polar-L';
	font-size: 2.5em;
	color: var(--color);
}

.contact .entry-content div {
	margin: 3em 0;
}

.contact .entry-content div p {
	margin: 0;
}

.contact p.privacy-policy {
	font-family: 'Polar-R';
	font-size: 1.1em;
	margin: 12em 0 0 0;
}

.contact p.credits {
	font-family: 'Polar-R';
	font-size: 1.1em;
	margin: 0 0 -3em 0;
}

/*--- Single ---*/

.privacy-policy .page,
.credits.page {
	width: 90em;
	max-width: 100%;
	padding: 0 1.6em;
	margin: 6em auto;
}

.privacy-policy header h1,
.credits header h1 {
	font-family: 'Polar-L';
	font-size: 2.5em;
	color: var(--color);
	text-align: center;
	margin: 3em 0;
}

.credits header.logo {
	display: flex;
	justify-content: center;
	padding: 2em 0;
}

.credits header.logo svg {
	width: 12em;
	height: auto;
}


/*--- Single ---*/

.single .entry-event {
	width: 50%;
	margin: 0.3em auto 5em auto;
}

.single .entry-event * {
	font-family: 'Polar-L'!important;
	text-indent: 0!important;
}

.entry-content {
	color: var(--color);
}

.excerpt {
	font-size: 2em;
}

.no-indent p {
	text-indent: 0!important;
}

/*--- Page ---*/


/**
 * 4.1 - Grid content
 */

.content-grid {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0 1.35em;
	margin: 3em 0;
}

.grid {
	width: 33.333%;
	padding: 0 0.25em;
}

.grid header {
	display: block;
}

.grid header h2 {
	font-family: 'Cambon-LI';
	font-size: 2.5em;
	height: 2.25em;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.grid header p {
	font-family: 'Cambon-L';
	font-size: 2.5em;
	margin: 0;
}

.grid .entry-image {
	width: 100%;
	margin: 0.5em 0;
}

.grid .entry-image figure {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	margin: 0;
	overflow: hidden;
}

.grid .entry-image figure img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s;
}

.grid:hover .entry-image figure img {
	transform: scale(1.2);
}

.grid .entry-content p {
	font-family: 'Polar-L';
	font-size: 2.5em;
	margin: 0;
}

.grid .entry-content p:nth-child(n+3),
.grid .entry-content .runningTime p {
	font-family: 'Polar-R';
	font-size: 1.7em;
	line-height: 1.4;
}

.grid .entry-content p:nth-child(2) {
	margin-bottom: 0.15em;
}


/**
 * 5.1 - Post
 */

.single .post,
.single .event {
	padding-top: 9em;
}

.single .entry-content {
	display: flex;
	flex-wrap: wrap;
	padding: 5em 1.6em;
}

.single .entry-content .column {
	width: 50%;
}

.credits .entry-content {
	text-align: center;
}

.single .entry-content h3,
.privacy-policy .entry-content h2,
.privacy-policy .entry-content h3,
.credits .entry-content h2,
.credits .entry-content h3 {
	font-family: 'Polar-R';
	font-size: 2em;
	margin: 1em 0 0.5em 0;
}

.single .entry-content h4 {
	font-family: 'Cambon-L';
	font-size: 2em;
}

.single .entry-content h3:first-of-type,
.single .entry-content h4:first-of-type {
	margin-top: 0;
}

.single .entry-content p + h3,
.single .entry-content ul + h3,
.privacy-policy .entry-content p + h3,
.privacy-policy .entry-content ul + h3,
.credits .entry-content p + h3,
.credits .entry-content ul + h3 {
	margin-top: 1em!important;
}

.single .entry-content h3 em {
	font-family: 'Polar-RI';
}

.single .entry-content p,
.privacy-policy .entry-content p,
.credits .entry-content p {
	font-family: 'Cambon-L';
	font-size: 2em;
	margin: 0;
}

.single .entry-content p em,
.privacy-policy .entry-content p em,
.credits .entry-content p em {
	font-family: 'Cambon-LI';
}

.single .entry-content p + p,
.privacy-policy .entry-content p + p,
.credits .entry-content p + p {
	text-indent: 3em;
}

.single .entry-content ul,
.privacy-policy .entry-content ul,
.credits .entry-content ul {
	position: relative;
	margin: 1em 1em 1em 6em;
}

.single .entry-content ul li,
.privacy-policy .entry-content ul li,
.credits .entry-content ul li {
	font-family: 'Cambon-L';
	font-size: 2em;
}

.single .entry-content ul li:before,
.privacy-policy .entry-content ul li:before,
.credits .entry-content ul li:before {
	position: absolute;
	content: '–';
	margin-left: -1.5em;
}

.single .entry-content > div > ol,
.single .entry-content > div > div > ol:last-child {
	margin-bottom: 5em;
}

.single .entry-content ol li {
	font-family: 'Cambon-L';
	font-size: 2em;
	list-style-type: none;
}

.single .entry-content a,
.privacy-policy .entry-content a,
.credits .entry-content a {
	border-bottom: 1px solid var(--color);
	transition: all .25s;
}

.single .entry-content .lower a {
	border-bottom: none;
}

.single .entry-content a:hover,
.privacy-policy .entry-content a:hover,
.credits .entry-content a:hover,
.atlas .entry-information a:hover {
	border-bottom-color: inherit;
}


/**
 * 4.0 - Expo Upcoming
 */

.post-futur {
	display: flex;
	flex-wrap: wrap;
	margin: 9em 0;
}

.post-futur header {
	color: var(--color);
}

.post-futur > div {
	width: 50%;
}

.post-futur .entry-image {
	padding: 1em 0.8em 1em 1.6em;
}

.post-futur .entry-image img {
	width: 100%;
}

.post-futur .entry-content {
	flex-direction: column;
	padding: 1em 1.6em 1em 0.8em;
}

.post-futur .entry-content .column {
	width: 100%;
}

.post-futur .entry-content .column-right {
	padding-top: 3em;
	text-align: left;
}

.post-futur .entry-content > div > ol,
.post-futur .entry-content > div > div > ol:last-child {
	margin-bottom: 3em;
}


/**
 * 5.2 - Carousel
 */

.carousel {
	width: 100%;
	height: 62em;
	margin: 1em 0;
}

.carousel-cell {
	/*width: 66.666%;*/
	width: auto;
	height: 100%;
	margin: 0 0.25em;
}

.carousel-cell figure {
	position: relative;
	height: calc(100% - 7em);
	margin: 0;
}

.carousel-cell:first-child img,
.carousel-cell:first-child figcaption {
	padding-left: 1.6rem;
}

.carousel-cell:last-child img,
.carousel-cell:last-child figcaption {
	padding-right: 1.6rem;
}

/*.carousel-cell img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: contain;
}*/

.carousel-cell img {
	position: relative;
	width: auto;
	height: 100%;
}

.carousel-cell figcaption {
	font-family: 'Polar-R';
	font-size: 1.7em;
	margin: 0.25em 0;
	width: 95%;
	/*opacity: 0;
	transition: opacity .25s;*/
	display: none;
}

.carousel-cell:hover figcaption {
	display: block;
}

.carousel-cell figcaption i,
.carousel-cell figcaption em {
	font-family: 'Polar-RI';
}

.carousel .flickity-fullscreen-button-exit {
	font-family: 'Cambon-L', serif;
	font-size: 2.5em;
	color: var(--color);
	text-transform: uppercase;
	top: 0;
	left: 0;
	right: 0;
	width: 5em;
	height: auto;
	margin: 0 auto;
	background: none;
	transition: color .25s;
}

.carousel .flickity-fullscreen-button-exit:hover {
	color: #000;
}

.carousel.is-fullscreen .carousel-cell img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/*.carousel.is-fullscreen .carousel-cell figure {
	background: transparent;
}*/


/**
 * 6.0 - No found
 */

.post-edit {
	width: 100%;
	margin: 3em 0;
}

.post-edit-link {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	padding: 0.5em 1em;
	border: none!important;
	border-radius: 2em;
	background: #1d2327;
	transition: none;
}

.post-edit-link:hover {
	color: #72aee6;
	background: #2c3338;
}

.page .post-edit-link {
	margin: 0 1.6rem;
}

.not-found,
.attachment .site-main {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: calc(100vh - 21em);
}

.not-found .entry-header h2 {
	font-size: 2em;
	color: var(--color);
}

.error-404 .entry-header,
.attachment .entry-header,
.attachment .entry-content,
.attachment .post-edit {
	text-align: center;
	color: var(--color);
}

.error-404 .entry-header h1,
.attachment .entry-header h1 {
	font-family: 'Polar-R';
	font-size: 2.5em;
	margin: 1em 0;
}

.error-404 .entry-header p,
.attachment .entry-content p {
	font-family: 'Cambon-L';
	font-size: 2em;
	margin: 0;
}


/**
 * 7.0 - Footer
 */

.site-footer {
	width: 100%;
	height: 9em;
	display: flex;
	align-items: center;
}

.site-footer > div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 33.333%;
}

.site-footer .menu li {
	font-family: 'Cambon-L';
	font-size: 2em;
	text-align: center;
}

.site-footer > div .logo.felicite {
	position: relative;
	width: 11em;
	height: 7em;
}

.site-footer > div .logo {
	position: relative;
	width: 7em;
	height: 7em;
}

.site-footer .logo svg {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#Logo_Felicite .black,
#Logo_Emerige .red,
#Logo_Emerige .black { 
	fill: var(--color)!important;
	transition: all .25s;
}

/*#Logo_Morland .stroke-black { 
	stroke: var(--color)!important;
	transition: all .25s;
}*/

.logo a:hover #Logo_Felicite .black,
.logo a:hover #Logo_Emerige .black {
	fill: #000000!important;
}

.logo a:hover #Logo_Emerige .red {
	fill: #E72B78!important;
}

/*.logo a:hover #Logo_Morland .stroke-black {
	stroke: #000000!important;
}*/

.site-footer .entry-logo {
	justify-content: flex-start;
}

/*.site-footer .entry-logo .logo {
	width: 8em;
	height: 8em;
}*/

.site-footer .entry-partnairs {
	justify-content: flex-end;
}

.site-footer .entry-partnairs div {
	margin-left: 3em;
}


/**
 * 8.0 - Newsletter
 */

.kbnzone {
	display: none;
	position: fixed;
	color: var(--color);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999999;
}

.kbnzone .row {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 64em;
	max-width: calc(100% - 4em);
	height: auto;
	border-radius: 3px;
	background: #FFF;
	transform: translate(-50%, -50%);
}

.kbnzone .btnExit {
	position: absolute;
	top: -1em;
	right: -1em;
	width: 2.5em;
	height: 2.5em;
	border: 1px solid var(--color);
	border-radius: 50%;
	background: #FFF;
	cursor: pointer;
}

.kbnzone .btnExit:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: url(icons/exit.svg) center center no-repeat;
	background-size: 75%; 
}

.kbnzone .header {
	width: 100%;
	height: auto;
	padding: 4em 2em;
	border-radius: 3px 3px 0 0;
	background: var(--color);
}

.kbnzone .header h3 {
	font-family: 'Polar-R';
	font-size: 2.5em;
	text-align: center;
	color: #FFF;
}

.kbnzone .content,
.kbnzone .tpboolean {
	padding: 1em 2em;
}

.kbnzone .content p {
	font-family: 'Cambon-L';
	font-size: 1.6em;
}

.kbnzone form {
	display: flex;
	flex-direction: column;
}

.kbnzone .ncField {
	width: 100%;
	padding: 0 2em;
}

.kbnzone .ncField input {
	font-family: 'Polar-L';
	font-size: 1.6em;
	border: 1px solid var(--color);
	border-radius: 3px;
	outline: 0;
	width: 100%;
	padding: 0.25em 0.5em 0.4em 0.5em;
	margin: 0.2em 0;
}

.kbnzone .tpboolean input[type=checkbox] {
	display: inline-block;
	width: 1.25em;
	height: 1.25em;
	border: 1px solid var(--color);
	border-radius: 3px;
	margin: 0 0.5em -0.2em 0;
	cursor: pointer;
}

.kbnzone .tpboolean input[type=checkbox]:checked {
	background: var(--color);
}

.kbnzone .tpboolean label {
	font-size: 1.6em;
	cursor: pointer;
}

.kbnzone .ncSendZone {
	padding: 2em;
	margin: 0;
}

.kbnzone .ncSendZone a {
	display: block;
	font-family: 'Polar-R';
	font-size: 2em;
	color: #FFF;
	width: 100%;
	height: auto;
	border-radius: 3px;
	padding: 0.25em 0 0.4em 0;
	background: var(--color);
}

.kbnzone .ncFinality a {
	display: block;
	font-family: 'Polar-R';
	font-size: 1.1em;
	text-align: center;
	margin: 2rem;
}


/**
 * 10.0 - Media Queries
 */

@-ms-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}


/**
 * 10.1 - >= 710px
 */

@media screen and (min-width: 1600px) {
	html {
		font-size: 81.3%;
	}
}

@media screen and (max-width: 1200px) {
	html { 
		font-size: 56.3%;
	}
}

@media screen and (max-width: 960px) {
	html { 
		font-size: 50%;
	}
}

@media screen and (max-width: 782px) {
	html { 
		font-size: 43.8%;
	}
	#preload {
		top: 6em;
		height: calc(100% - 6em);
	}
	.admin-bar #preload {
		top: calc(6em + 46px);
		height: calc(100% - 6em - 46px);
	}
	#masthead {
		height: 6em;
		flex-direction: column;
	}
	#masthead > div,
	#masthead > nav {
		width: 100%;
	}
	#masthead .menu:not(#menu-social) li {
		line-height: 1.2;
	}
	.content-menu .items-expo {
		flex-direction: column;
	}
	.content-menu .items-expo li:after {
		content: none!important;
	}
	.content-menu .items-expo li {
		margin: 0;
	}
	.content-menu .lang-item {
		display: block;
	}
	.content-menu .lang-item a {
		font-family: 'Cambon-L';
		font-size: 2.5rem;
	}
	.site-title > *,
	.main-navigation > span,
	.site-lang ul > li {
		text-align: center;
		margin: 0;
	}
	.site-lang {
		display: none;
	}
	.site-content {
		padding-bottom: 3em;
	}
	.post header,
	.event header {
		flex-direction: column;
	}
	.post header > div,
	.event header > div {
		width: 100%;
		text-align: center!important;
	}
	.post header > div.right,
	.event header > div.right {
		display: none;
	}
	.single .post,
	.single .event {
		padding-bottom: 0;
	}
	.single .entry-content {
		flex-direction: column;
	}
	.single .entry-content .column {
		width: 100%;
	}
	.single .entry-content .column-right {
		margin-top: 6em;
	}
	.post-futur .entry-content .column-right {
		margin-top: 0;
	}
	.post-futur > div {
		width: 100%;
	}
	/*.home .carousel {
		height: 45em;
	}*/
	.carousel {
		height: 52em;
	}
	/*.home .carousel,
	.carousel {
		height: 72vw;
	}
	.carousel-cell {
		width: 100%;
		margin: 0;
	}
	.carousel.is-fullscreen .carousel-cell figcaption {
		display: block;
	}
	.carousel-cell figcaption,
	.flickity-enabled .flickity-fullscreen-button-view {
		opacity: 1!important;
	}
	.carousel-cell img {
		padding: 0!important;
	}
	.carousel-cell figcaption {
		width: 100%;
		padding: 0 1.6rem;
	}*/
	.flickity-prev-next-button {
		display: none;
	}
	/*.flickity-fullscreen-button {
		right: 1.2em!important;
	}*/
	.grid {
		width: 50%;
	}
	.entry-tax-gallery ul.thead li:nth-child(n+2) {
		display: none;
	}
	.entry-tax-gallery ul {
		flex-direction: column;
	}
	.entry-tax-gallery ul li {
		width: 100%;
		text-align: left;
	}
	.contact header .left,
	.contact header .right {
		display: none;
	}
	.contact header .center {
		width: 100%;
	}
	.contact p.credits {
		margin: 0;
	}
	/*--- Futur ---*/
	.post-futur .post {
		display: block;
	}
	.post-futur .post> div {
		width: 100%;
	}
	.post-futur .entry-image,
	.post-futur .entry-content {
		padding: 1em 1.6em;
	}

}

@media screen and (max-width: 600px) {
	a:hover,
	a:focus,
	a:active {
		color: var(--color);
	}
	#masthead {
		position: absolute;
	}
	#menu-header {
		margin-top: 3em;
	}
	.content-menu {
		height: calc(100% - 7em);
	}
	.menu-social-container {
		height: 7em;
	}
	/*.home .carousel {
		height: 35em;
	}*/
	.carousel {
		height: 42em;
	}
	/*.carousel-cell,*/
	.grid {
		width: 100%;
	}
	.site-footer {
		height: 7em;
	}
	.site-footer .entry-logo .logo {
		width: 6em;
		height: 6em;
	}
}
