@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  src: url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-regular.eot');
  src: local(''),
       url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-regular.eot?#iefix') format('embedded-opentype'),
       url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-regular.woff2') format('woff2'),
       url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-regular.woff') format('woff'),
       url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-regular.ttf') format('truetype'),
       url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-regular.svg#Manrope') format('svg');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  src: url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-600.eot');
  src: local(''),
       url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-600.eot?#iefix') format('embedded-opentype'),
       url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-600.woff2') format('woff2'),
       url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-600.woff') format('woff'),
       url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-600.ttf') format('truetype'),
       url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-600.svg#Manrope') format('svg');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  src: url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-800.eot');
  src: local(''),
       url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-800.eot?#iefix') format('embedded-opentype'),
       url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-800.woff2') format('woff2'),
       url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-800.woff') format('woff'),
       url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-800.ttf') format('truetype'),
       url('../themes/lasercheval/assets/fonts/manrope/manrope-v3-latin-800.svg#Manrope') format('svg');
}
html { font-size:10px; }
body { font-size:1.6rem; }
:focus, button:focus { outline:none; }

/* Images */
img, svg { max-width:100%; height:auto; }
img[data-sizes] { display:block; width:100%; }

/* Paragraphs */
p { margin-bottom:1em; }
p:last-child { margin-bottom:0; }

/* Link */
a: { color:inherit; }
a:hover { color:inherit; text-decoration:none; }

/* Lists */
ul, ol { margin-bottom:0; padding:0; list-style:none; }

/* Titles */
h2, h3, h4, h5, h6{ margin: 0.5em 1em; }

/**
 * Components
 **/

/* Alert */
.alert { position: relative; padding: .75rem 1.25rem; margin-bottom: 1rem; border: 1px solid transparent; border-radius: .25rem; }
.alert .close { display:none; }
.alert-success { color: #155724; background-color: #d4edda; border-color: #c3e6cb; }
.alert-primary { color: #004085; background-color: #cce5ff; border-color: #b8daff; }
.alert-secondary { color: #383d41; background-color: #e2e3e5; border-color: #d6d8db; }
.alert-danger { color: #721c24; background-color: #f8d7da; border-color: #f5c6cb; }
.alert-warning { color: #856404; background-color: #fff3cd; border-color: #ffeeba; }
.alert-info { color: #0c5460; background-color: #d1ecf1; border-color: #bee5eb; }

/**
 * Layout
 **/
section,
header,
footer{ position: relative; overflow: hidden; }

#page { position:relative; width:100%; overflow:hidden; }

/**
 * Forms
 */

/* All elements */
.field { margin-bottom: 5rem; position:relative; }
.field label { display: inline-block; margin:0; }
.field.required label:after{ content: " *";}

[data-validate-for] { display:none; font-size:10px; line-height:10px; position:absolute; right:0; bottom:-1.2em; }
[data-validate-for].visible { display:block; }

/* Textfields & textareas */
.field.textfield input,
.field.textarea textarea { display: block; width: 100%; padding: 30px 10px 10px 10px; border: 1px solid #ccc; }

/* Checkbox & Radio */
legend{ font-size: inherit; margin-bottom: 1.5rem; }

.radio-inline{ display: flex; flex-direction: row; justify-content: flex-start; flex-wrap: wrap; }
.radio-item{ display: flex; flex-direction: row; align-items: center; margin-bottom: 1rem; margin-right: 1.5em; }

.field.checkbox label,
.field.radio label { display:flex; flex-direction:row; align-items:center; justify-content:flex-start; position:relative; cursor: pointer; }

.field.checkbox input,
.field.radio input,
.field.checkbox span:before,
.field.radio span:before { width:20px; height:20px; margin-right:10px; }

.field.checkbox span:before,
.field.radio span:before { content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); border:1px solid #ccc; background:#fff; }

.field.checkbox span:after,
.field.radio span:after { content:''; position:absolute; left:3px; top:50%; transform:translateY(-50%); width: 14px; height:14px; background:#ccc; opacity:0; transition:all 0.5s ease 0s; }

.field.checkbox input:checked+span:after,
.field.radio input:checked+span:after { opacity: 1; }

.field.checkbox span:before,
.field.checkbox span:after { border-radius: 0; }

.field.radio span:before,
.field.radio span:after { border-radius: 50%; }

.field.radio.inline,
.field.checkbox.inline { display:flex; flex-direction:row; align-items:center; justify-content:flex-start; }
.field.radio.inline label,
.field.checkbox.inline label { margin-right:15px; margin-bottom:0; }

/* Select */
.field.select select { display:block; width:100%; padding:10px; border:1px solid #ccc; }

/* Captcha */
.field.captcha { display:flex; flex-direction:row; justify-content:center; }

/**
 * Navigation
 **/
 
/* Frontend editor */
.ct-widget.ct-ignition { position:fixed; left:auto; top:auto; right:20px; bottom:20px; z-index:10000; transition:all 0.5s ease 0s; }
.ct-widget.ct-ignition .ct-ignition__button { position:static; margin-top:10px;}

.ce-element { outline:2px dashed rgba(243, 156, 18, 0.5); }
.ce-element--focused, .ce-element:focus { outline:2px dashed rgba(243, 156, 18, 1); }

/**
 * Legal
 **/
.legal { margin:60px 0; }
.legal h1 { font-size:4rem; margin:0 0 1em 0; }
.legal h2 { font-size:3rem; margin:1em 0; }
.legal h3 { font-size:2.5rem; margin:1em 0; }
.legal h4 { font-size:2rem; margin:1em 0; }
.legal h5 { font-size:1.5rem; margin:1em 0; }
.legal table { width:100%; margin:2em 0; }
.legal table th,
.legal table td { padding:1em; border:1px solid rgba(0,0,0,0.25); }
body{ font-family: 'Manrope'; font-weight: 400; font-size: 1.9rem; }

.popup-fancybox h5 { font-size:30px; }
.popup-fancybox p.btn { justify-content:flex-start; }

img.machine { max-width:50%; margin:auto; }

/**
 * Tags 
 */
	h2, h3, h4, h5, h6{ font-weight: 600; margin: 1em 0 0.5em; line-height: 1.2em; color: #002599; }
	
	h2{ margin-top: 2rem; font-size: 6rem; font-weight: 800; }
	h3{ font-size: 3rem; }
	h4{ font-size: 2.4rem; }
	
	p{}
	
	a{ color: #002599; transition: all 0.2s ease; }
	a:hover{ color: inherit; }

/**
 * Common classes
 */
	.casper{ display: none; }
	.casper-screen-inline{ display: none; }
	.casper-screen-block{ display: none; }
	.flex{ display: flex; flex-direction: row; justify-content: space-between; flex-flow: wrap; }
	.flex-item{ padding-left: 15px; padding-right: 15px; }
	
	.ico{ display: inline-block; }
	.ico svg{ display: block; max-height: 100%; fill: inherit; }
	
	.mb-0{ margin-bottom: 0 !important; }

/**
 * Forms
 */
 	[data-validate-for]{ font-size: 1.2rem; color: #1E19CC; }
 	.field-comment{ font-size: 1.2rem; color: #1E19CC; text-align: right; }
	p.btn { text-align: center; display: flex; flex-wrap: wrap; justify-content: center; margin: 3em 0; }
	button, 
	input[type="submit"],
	p.btn > a{ display: inline-block; font-size: 16px; text-transform: uppercase; color: #fff; padding: 1rem 2rem; background-color: #1E19CC; letter-spacing: 0.2em; margin-right: 15px; border: 0; }
	button:hover, 
	input[type="submit"]:hover,
	p.btn > a:hover{ cursor: pointer; background-color: #002599; }
	
	.fileupload{ margin-bottom: 3rem; }
	button.upload-button{ border: 2px dashed #002599; color: #002599; text-transform: none; background: #fff url(../themes/lasercheval/assets/img/cloud.svg) no-repeat 3rem; background-size: 40px; padding: 3rem 3rem 3rem 9rem; letter-spacing: inherit; font-size: 1.9rem; text-align: left; width: 100%; }
	
	.field.textfield input, 
	.field.textarea textarea,
	.field.select select{ border: 0; border-bottom: 2px solid #D9D9D9; }
	.field.textfield label, 
	.field.textarea label{ position: absolute; left: 0.5rem; top: 2.5rem; transform: translateY(-50%); transition: all 0.3s ease 0s; }
	.field.textfield.active label, 
	.field.textarea.active label,
	.field.textfield.filled label, 
	.field.textarea.filled label{ font-size: 0.8em; top: 0rem;}
	
 
/**
 * Layout 
 */
#page{ padding-top: 7rem; }

#header{ background-color: #212124; color: #fff; height: 8rem; border-bottom: 1px solid #333; overflow: visible; font-size: 15px; position: fixed; top: 0; width: 100%; z-index: 9; transition: all 0.2s ease-in; }
#header .header-wrapper{ display: flex; justify-content: space-between; }
#header .header-wrapper,
#header > div > div,
#header > div > div > ul{ height: 100%; }
#header .logo{ z-index: 10; }
	.logo{ max-height: 100%; max-width: 50vw; position: relative; display: flex; flex-direction: row; align-items: center; }
	.logo a.home{ max-height: 100%; padding: 10px 15px; height: 100%; }
	.logo a svg{ width: 22rem; height: 100%; fill: #fff; }
	.logo a.language-switcher{ position: relative; color: #FFF; font-size: 0.8em; font-weight: 400; height: 100%; display: flex; flex-direction: row; align-items: center; height: 100%; width: 80px; text-align: center; padding: 0 1rem; letter-spacing: 0.2em; opacity: 0.4; }
	.logo a.language-switcher:before{ content: ''; display: inline-block; width: 2rem; height: 2rem; background: url(../themes/lasercheval/assets/img/globe.svg) no-repeat 50% 50%; background-size: 100%; margin-right: 7px; }
	.logo a.language-switcher:hover{ opacity: 1; }
	.logo a.language-switcher abbr{ text-decoration: none; }
	/*.language-switcher:before{ content: ''; position: absolute; left: 0; width: 100%; height: 100%; opacity: 0.2; background: url(../img/globe.svg) no-repeat 50% 50%; background-size: 70%; }
	.language-switcher:hover{ background-color: #333; }
	.language-switcher abbr{ text-decoration: none; display: inline-block; height: 3rem; width: 3rem; margin-top: 2rem; border-radius: 2rem; line-height: 3rem; }*/

	#header .contactfixed{position: fixed; right: 0; z-index: 15; top:60%;background-color: #212124; }
	#header .contactfixed .message img {width: 40px; height: 40px; margin: 20px;}

	#menu{ width: 49.2%; }
	#menu a,
	#menu span{ color: #fff; transition: all 0.2s ease-in; }
	
	#menu .level-0-wrapper{ display: flex; height: 100%; }
	#menu .level-0{ display: inline-block; width: 33.33%; max-width: 25vw; height: 100%; }
	#menu .level-0 > a,
	#menu .level-0 > span{ cursor: pointer; display: block; text-transform: uppercase; text-align: center; line-height: 8rem; letter-spacing: 0.1em; font-weight: 600; }
	
	#menu .level-0 > .menu-group-imi{ color: #999; font-size: 0.8em; padding: 1rem 0; height: 100%; line-height: 100%; }
	#menu .level-0 > .menu-group-imi:hover{ color: #FFF; }
	#menu .level-0 > .menu-group-imi img{ width: auto; height: 100%; }
	
	#menu .level-0 > .menu-burger-box{ border-left: 1px solid #333; display: flex; text-transform: uppercase; line-height: 8rem; letter-spacing: 0.1em; font-weight: 600; align-items: center; justify-content: center; padding: 0 10px; }
		.menu-burger-inner{ display: flex; flex-direction: column; margin: 0 10px; width: 40px; align-items: flex-end; }
		.menu-burger-inner:before,
		.menu-burger-inner:after{ content: ""; display: block; background-color: #fff; width: 100%; height: 2px; right: 0; transition: width 0.2s ease-in; }
		.menu-burger-inner:before{ margin-bottom: 7px; }
		.menu-burger-inner:after{ width: 40%; }
		.menu-burger-box:hover .menu-burger-inner:before{ width: 40%; }
	
	#menu .level-0 > .menu-contact{ background-color: #1e19cc; color: #fff; }
	#menu .level-0 > .menu-contact:hover{ background-color: #333; }
		.menu-burger-box:hover .menu-burger-inner:after{ width: 100%; }
	
	#header #main-menu-wrapper{ background-color: #1e19cc; transform: translateY(-100%); overflow: hidden; position: fixed; width: 100%; left: 0; top: 0; z-index: 1; max-height: 100vh; }
	#header #main-menu-wrapper.init{ transition: all 0.5s ease-in; }
	#header #main-menu-wrapper:before{ content: ''; display: block; position: relative; border-bottom: 1px solid #3430d2; width: 100%; height: 8rem; background-color: #212124; opacity: 0; z-index: 2; transition: all 0.2s ease-in; }	
	#header #main-menu-wrapper:after{ content: '';position: absolute; z-index: 0; top: 40%;right: -10%;width: 50%;height: 100%;z-index: 0;background: url(../themes/lasercheval/assets/img/shape.svg) no-repeat 60% 0;background-size: 90%; opacity: 8%; }
	#header #main-menu-wrapper.open{ transform: translateY(0%); }
	#header #main-menu-wrapper.open:before{ opacity: 1; }
	#header #main-menu-wrapper .flex{ padding: 7rem 0; }
	#header #main-menu-wrapper .container{ position: relative; z-index: 1; padding-top: 1rem; }
	
		#menu-toggler-off{ position: absolute; top: 0; right: 0; font-size: 4rem; width: 7rem; height: 7rem; white-space: nowrap; overflow: hidden; cursor: pointer; z-index: 3; }
		#menu-toggler-off:before{ content: '×'; display: block; width: 6rem; height: 6rem; margin: 1rem; line-height: 6rem; text-align: center; transition: all 0.2s ease; }
		#menu-toggler-off:hover:before{ transform: rotate(-90deg); }
	
	#menu .level-1 > a,
	#menu .level-1 > span{ font-weight: 700; display: block; line-height: 32px; border-bottom: 1px solid #3430d2; position: relative; padding-right: 20px; min-width: 200px; }
	#menu .level-1 > span:before,
	#menu .level-1 > span:after{ content: ''; width: 10px; height: 2px; position: absolute; right: 0; top: 50%; background-color: #fff; transition: all 0.2s ease; }
	#menu .level-1 > span:after{ transform: rotate(90deg); }
	#menu .level-1 > ul li{ height: 0; transition: height 0.2s ease; overflow: hidden;}
	#menu .level-1.open > span:after{ transform: rotate(0deg); }
	#menu .level-1.open > ul li{ height: 32px }
	
	#menu .level-2{}
	#menu .level-2 > a{ display: block; line-height: 30px; padding: 0 2.5rem; position: relative; }
	#menu .level-2 > a:after{ content: ">"; position: absolute; right: 1px; }
	/*#menu .level-2.externe > a:after{ content: ">"; position: absolute; right: 1px; width: 15px; height: 100%; background: url(../img/globe.svg) no-repeat 100% 45%; background-size: 15px; padding-right: 32px; }*/
	
	#menu .level-1 > a:hover, #menu .level-1 > span,
	#menu .level-2 > a:hover, #menu .level-2 > span{ padding-right: 2.5rem; }
	#menu .level-1 > a:hover, #menu .level-1 > span:hover,
	#menu .level-2 > a:hover, #menu .level-2 > span:hover{ text-indent: 0.5rem; padding-right: 2rem; }
	
	#menu .footer li{ min-width: 200px; }
	#menu .footer a{ opacity: 0.4; text-transform: uppercase; display: block; line-height: 3rem; font-size: 0.8em; letter-spacing: 0.05em; }
	#menu .footer a:hover{ opacity: 1; }
	
	#menu .footer li.socials{ min-width: 160px; width: 160px; }
		.socials{ margin-bottom: 1em; display: flex; justify-content: space-between; }
		.socials a{ display: block; }
		.socials .ico{ display: block; width: 35px; height: 35px; border-radius: 30px; border: 1px solid #fff; text-align: center; fill: #fff; padding: 9px; }
		
	#menu .level-0 .menu-group-geode {text-align: end; }
	#menu .menu-group-geode img{max-width: 200px; }
	
 	.menu-group-geode {width: 220px; text-align: center; color: #fff; font-size: 14px; background-color: #333; border-radius: 3px; padding: 6px 10px;}
	.menu-group-geode .col {transition: all .3s ease;}
	.menu-group-geode:hover .col {opacity: .7;}
	
	#menu .resp_geode {display: none; opacity: 1;}
	#menu .resp_geode a {opacity: 1;}
#main{ position: relative; z-index: 1; padding-bottom: 14rem; }


#banner{ background: #1e19cc url(../themes/lasercheval/assets/img/banner.jpg) no-repeat 100% 76%; background-size: 80%; padding: 6rem 0 10rem; position: relative; overflow: visible; margin-bottom: 7rem; }
#banner:before{ content:''; position: absolute; top: 0; right: 0; width: 80%; height: 100%; z-index: 0; background: linear-gradient(90deg, rgba(30,25,204,1) 0%, rgba(30,25,204,0.76) 30%, rgba(30,25,204,0) 50%); }
#banner:after{ content:''; position: absolute; top: 0; left: 0; width: 50%; height: 100%; z-index: 0; background: url(../themes/lasercheval/assets/img/shape.svg) no-repeat 60% 0; background-size: 90%; opacity: 8%; }
#banner .container{ position: relative; z-index: 1; }
/*#banner .imi-group{ text-transform: uppercase; letter-spacing: 0.2em; color: #fff; font-size: 1.2rem; margin-top: 3em; }*/
#banner .laser{ position: absolute; bottom: -2rem; left: 50%; width: 2rem; height: 10rem; margin-left: -7px; }
#banner .laser svg{ height: 100%; margin: auto; }
	h1, 
	.h1{ color: #fff; margin: 0; font-size: 6rem; line-height: 1em; display: flex; flex-direction: column; }
	h1 small{ font-size: 40%; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; line-height: 1em; }

	.exergue{ color: #002599; font-size: 1.3em; }
	.bg-bleu{ background-color: #1E19CC; color: #fff; padding-top: 7rem; padding-bottom: 7rem; }
	ul.dates{ margin: 8rem 0; }
	ul.dates li{ position: relative; margin: 0 0 1em 0; display: block; padding-left: 100px; }
	ul.dates li:before{ content: none; }
	ul.dates strong{ color: #002599; font-size: 1.5em; float: left; height: 100%; width: 100px; top: -3px; position: absolute; left: 0; }
	
	ul.medias{ margin: 8rem 0; }
	ul.medias li{ position: relative; padding: 1.5em 50px 1.5em 0; line-height: 35px; border-top: 1px solid #002599; }
	ul.medias a.ico-download{ position: absolute; right: 0; top: 1.5em; width: 35px; height: 35px; text-indent: 35px; white-space: nowrap; overflow: hidden; background: url(../themes/lasercheval/assets/img/download.svg) no-repeat 0 0; background-size: 100%; border-radius: 35px; opacity: 0.5; }
	ul.medias a.ico-download:hover{ opacity: 1; }
	
	.blue-sidebar{ position: relative; padding-top: 6rem; margin-bottom: 6rem; }
	.blue-sidebar:before{ content:''; position: absolute; height: 100%; background-color: #1E19CC; z-index: 0; top: 0; 
		background: -webkit-linear-gradient(-90deg, rgba(30,25,204,100) 0%, rgba(30,25,204,100) 200px, rgba(30,25,204,0) 200px, rgba(30,25,204,0) 100%);
		background: -moz-linear-gradient(-90deg, rgba(30,25,204,100) 0%, rgba(30,25,204,100) 200px, rgba(30,25,204,0) 200px, rgba(30,25,204,0) 100%);
		background: -o-linear-gradient(-90deg, rgba(30,25,204,100) 0%, rgba(30,25,204,100) 200px, rgba(30,25,204,0) 200px, rgba(30,25,204,0) 100%);
		background: linear-gradient(-90deg, rgba(30,25,204,100) 0%, rgba(30,25,204,100) 200px, rgba(30,25,204,0) 200px, rgba(30,25,204,0) 100%); }
	.blue-sidebar-left:before{ left: 0; }
	.blue-sidebar-right:before{ right: 0; }
	.blue-sidebar-max:before{ max-height: 150vh; }
	
	.extra-container{ width: calc(100% + 15px + (100vw - 1140px)/2); max-width: 560px; }
	.extra-container.to-left{ float: right; }
	.extra-container.to-right{ padding-right: 5vw; }
		
	.content-editor{}
	.content-editor img{ width: 100%; margin-bottom: 1em; }
	.content-editor li{ position: relative; padding-left: 25px; margin-bottom: 0.5em; }
	.content-editor li:before{ content: '>'; position: absolute; left: 0; font-weight: bold; }
	
#actualites{ background-color: #212124; position: relative; z-index: 2; }
#actualites .container{ overflow: hidden; }
#actualites .actucol { margin-bottom:30px; }
#actualites h2{ color: #fff; text-align: center; font-size: 6rem; font-weight: 400; margin: 1em 0; }
	.actu.teaser{ background-color: #fff; display: flex; flex-direction: column; height: 100%; }
	.actu.teaser h3{ display: block; order: 2; padding: 30px; margin: 0; height: 5em; font-size: 2.5rem; font-weight: bold; line-height: 1.5em; }
	.actu.teaser h3 a{ display: block; }
	.actu.teaser .img{ order: 1; display: block; opacity: 0.8; transition: all 0.2s ease; }
	.actu.teaser .img:hover{ opacity: 1; }
	.actu.teaser .desc{ order: 3; padding: 30px; }
	.actu.teaser .link{ order: 4; padding: 0 30px 30px; text-transform: uppercase; }
	.actu.teaser .link a{ display: block; font-size: 0.8em; }
	.actu.teaser .link a:before{ content: '>'; display: inline-block; font-weight: bold; margin-right: 0.7em; letter-spacing: 0.1em;  }
#actualites p.btn{ margin:3rem 0; }
#actualites p.btn a{ background-color: #333; }
#actualites p.btn a:hover{ background-color: #1E19CC; }

/*
#actualites .links{ display: flex; margin-top: 5rem; }
#actualites .links > div{ height: 20rem;  }
#actualites .links a{ display: block; height: 100%; padding: 4rem; text-transform: uppercase; color: #fff; letter-spacing: 0.1em; }
#actualites .links a:before{ content: '>'; display: inline-block; font-weight: bold; margin-right: 1em; }
#actualites .link-actu a{ width: calc(100% + 30px); }
#actualites .link-fb a{ background-color: #1E19CC; }
#actualites .link-actu a:hover{ background-color: #333; }
#actualites .link-fb a:hover{ background-color: #333; }
*/
/*
#actualites:before 			   { content: ''; position: absolute; top: -90px;    left: 50%; height: 90px; width: 0; border-right: 1px solid #212124; }
#actualites > .container:before{ content: ''; position: absolute; top: 0px;      left: 50%; height: 45px; width: 0; border-right: 1px solid #fff; }
#actualites:after 			   { content: ''; position: absolute; bottom: -45px; left: 50%; height: 45px; width: 0; border-right: 1px solid #212124; }
#actualites > .container:after { content: ''; position: absolute; bottom: 0;     left: 50%; height: 90px; width: 0; border-right: 1px solid #fff; }*/

#footer{ background-color: #212124; color: #FFF; font-size: 16px; position: relative; z-index: 1; }
#footer:after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; background: url(../themes/lasercheval/assets/img/shape.svg) no-repeat -10% -100%; background-size: 50% 100%; opacity: 3%; }
#footer > section { position: relative; z-index: 1; }
	#footer-contact{}
	#footer-contact a{ display: block; background-color: #1e19cc; line-height: 9rem; font-size: 4rem; color: #fff; font-weight: 700; transition: all 0.2s ease; }
	#footer-contact a:hover{ background-color: #333; text-indent: 2em; }
	#footer-contact a .container{ display: block; }
	#footer-contact a .container:after{ content: ">"; font-weight: normal; font-size: 2rem; display: inline-block; margin-left: 1.5em; text-indent: 0; top: -3px; position: relative; }
	
	#footer-data{}
	#footer-data a{ color: #fff; }
	#footer-data .flex{ padding: 35px 0; justify-content: space-between; align-items: flex-start; }
	#footer-data .flex > div{ margin: 15px 0; }
	#footer-data .flex > .flex-item.logo { margin: 15px 0; flex-direction: column; justify-content:flex-start; }
	#footer-data .flex > .flex-item.logo .logo-laser svg { }
	#footer-data .flex > .flex-item.logo .logo-imi {max-width:150px; margin-top:30px;  }
	
	
	#footer-data .logo{ max-width: 210px; }
	
	#footer-data-localisation a{ display: flex; text-transform: uppercase; letter-spacing: 0.2em; padding: 15px 2rem; border: 1px solid #333; border-radius: 30px; font-weight: 600; max-width: 200px; justify-content: center; }
	#footer-data-localisation a:hover{ border-color: #fff; }
	#footer-data-localisation .ico{ stroke: #fff; fill: #212124; display: block; width: 24px; margin-right: 0.5em; }
	
	.footer-data-tel{ padding-left: 0; padding-right: 0; }
	.footer-data-tel li{ display: flex; line-height: 4rem; height: 40px; align-items: center; padding-left: 0; }
	.footer-data-tel li:before{ content: none; }
	.footer-data-tel .ico{ color: #FFF; fill: #FFF; opacity: 0.3; display: block; width: 24px; min-width: 24px; margin-right: 1em; }
	.footer-data-tel .ico-tel + span{ color: #FFF; opacity: 0.4; font-weight: 600; margin-right: 1em; width: 150px; line-height: 1em; }
	
	#footer-data .socials { width: 200px; }
	#footer-data .socials a{ opacity: 0.4; }
	#footer-data .socials a:hover{ opacity: 1; }
	
	#footer-legals{ border-top: 2px solid #333; padding: 3rem 0 1.5rem; background-color: #212124; }
	#footer-legals .container{ background-color: #212124; text-transform: uppercase; letter-spacing: 0.2em; font-size: 12px; }
	#footer-legals a{ color: #666; }
	#footer-legals a:hover{ color: #FFF; }
	#footer-legals li a:after{ content: '|'; color: #666; display: inline-block; margin: 0 1.5em; }
	#footer-legals li:last-child a:after{ content: none; }
	#footer-legals .mini a{ text-transform: none; letter-spacing: normal; }
	
	#footer .all {width: 20%;}
	#footer .cpl {padding-left: 15px; white-space: nowrap;}
	#footer .cpl {width: 50%;}

/**
 * Components
 */
.swiper-container{ margin-top: 4rem; margin-bottom: 4rem;}
.swiper-button-next, .swiper-button-prev{ top: 0; margin-top: 0; height: 100%; width: 5%; }
.swiper-button-next:after, .swiper-button-prev:after{ color: #fff; font-size: 2rem; }


/**
 * specific pages
 */
#accueil-edito{ margin-bottom: 6rem; }
#accueil-edito h2{ margin-bottom: 1em; }
#accueil-edito .btn{ justify-content: flex-start; }
#accueil-machines{ padding-top: 12rem; z-index: 1; }
#accueil-machines .row{ align-items: center; }
#accueil-machines .row .row{ align-items: normal; }
#accueil-machines ul{ padding: 6rem 0; text-transform: uppercase; letter-spacing: 0.1em; }
#accueil-applications ul{ padding: 1rem 0; text-transform: uppercase; letter-spacing: 0.1em; }
#accueil-machines ul li a{ white-space: nowrap; }
#accueil-machines .bg-gris{ position: absolute; top: -12rem; background-color: #EFEFEF; padding-top: 60vh; }
#accueil-machines .machine-flow{ padding-top: 16rem; }
#accueil-machines .machine-flow img{ position: relative; left: 6rem; }
#accueil-applications{ overflow: visible }
#accueil-applications .row{ align-items: flex-start; }
#accueil-applications .bg-bleu{ height: 300%; position: absolute; z-index: 0; max-width: 960px; right: 0; top: -50%; }
/*#accueil-applications .col-md-4{ padding-top: 6rem; }*/
#accueil-applications .col-md-8 .content-editor{ position: relative; z-index: 1; color: #fff; }
#accueil-applications .col-md-8 .content-editor h2{ color: #fff; }


#applications-marquage-laser .applications{ margin-top: 2em; margin-bottom: 2em; }
#applications-marquage-laser .applications h3{ margin-top: 0.5em; }

#contact #banner{ color: #fff; max-height: 40rem; margin-bottom: 10rem; }
#contact h1,
#contact h2{ font-size: 4rem; }
#contact h2{ margin-bottom: 1em;}
#contact #banner .col-md-5{ padding-top: 2rem; }
#contact #banner .bg-bleu{ padding: 7rem; margin-top: 6rem;}
#contact #banner .bg-bleu a{ color: #fff; white-space: nowrap; }
#contact #banner .exergue{ color: #fff; font-weight: 700; margin-bottom: 0.5em; margin-top: 0.7em; }
#contact #banner .footer-data-tel .ico-tel + span{ width: 180px; }

#actualites-article p.h1{ color: #fff; margin: 0; font-size: 6rem; line-height: 1em; display: flex; flex-direction: column; font-weight: 700; }
#actualites-article .full .h1{ color: #fff; margin: 0; font-size: 6rem; line-height: 1em; display: flex; flex-direction: column; font-weight: 700; }
#actualites-article .full h1.h2{ display: block; font-weight: 800; margin: 1em 0 0.5em; line-height: 1.2em; color: #002599; font-size: 6rem; }
#actualites-article .full h2{ font-size: 3.7rem; margin-top: 1em; }
#actualites-article .full h3{ font-style: italic; }
#actualites-article .full .extra-container{ margin-top: 6rem; }

#actualites-article .gallerie img {width: 100%; height: 100%; object-fit:cover;}
#actualites-article .gallerie .uneimg {padding-bottom: 2vh;}


#machines-femtoseconde .applications{ margin-top: 10vmin; margin-bottom: 10vmin; }
.machine-margin-h{ margin-top: 10vmin; margin-bottom: 10vmin; text-align: right; }

body.admin:after{ content:"xl"; position: fixed; bottom: 0; right: 0; padding: 5px 10px; line-height: 30px; background-color:#EEE; z-index: 1000; }
/**
 * Wide
 **
@media (min-width: 1600px) {
}
    

/**
 * Extra large
 **/
@media (min-width: 1200px) {
body.admin:after{ content:"xl"; background-color: red; }

	.extra-container{ width: calc(100% + 15px + (100vw - 1140px)/2); }
	.blue-sidebar:before{ width: calc( (100vw - 1140px)/2 ); }
}

/**
 * Large devices
 **/
@media (max-width: 1399px) {
	#menu {width: 65%;}
}

@media (max-width: 1199px) {
body.admin:after{ content:"lg"; background-color: orange; }
html { font-size: 8px; }

	.extra-container{ width: calc(100% + 15px + (100vw - 960px)/2); }
	.blue-sidebar:before{ width: calc( (100vw - 960px)/2 ); }
	#contact #banner .bg-bleu { padding: 5rem; }
	
	.menu-group-geode {display: none;}
	#menu .resp_geode {display: flex; justify-centent: start; padding-bottom: 3vh;}
}
/*
@media (min-width: 992px) {

	#header.not-top{ background-color: #fff; border-color: #E7E7E8; box-shadow: rgba(0, 0, 0, 0.15) 0px 0 5px; }
	#header.not-top .logo svg{ fill: #000; }
	#header.not-top .logo path[data-name='etoile']{ fill: #1E19CC; }
	#header.not-top .logo a.language-switcher{ color: #666; opacity: 0.7; }
	#header.not-top .logo a.language-switcher:before{ background-color: #666; -webkit-mask-image: url(../img/globe.svg); mask-image: url(../img/globe.svg); background-image: none; }
	#header.not-top #menu{}
	#header.not-top #menu .level-0 > .menu-group-imi:hover{ color: #666; }
	#header.not-top #menu .level-0 > .menu-burger-box { border-color: #E7E7E8; color: #666; }
	#header.not-top #menu-toggler-off:before{ color: #666; }
	#header.not-top .menu-burger-inner:before, 
	#header.not-top .menu-burger-inner:after{ background-color: #999; }
	#header.not-top #main-menu-wrapper:before{ background-color: #FFF; }
	
}*/

/**
 * Medium devices
 **/
@media (max-width: 991px) {
body.admin:after{ content:"md"; background-color: green; }
/*html { font-size: 7px; }
p { font-size: 16px; }*/

	#header #main-menu-wrapper .footer{ margin-top: 20px; }
	#banner:before{ width: 100%; }
	#banner:after{ background-position: -250% 0; }
	
	.extra-container{ width: calc(100% + 15px + (100vw - 720px)/2); }
	.blue-sidebar:before{ width: calc( (100vw - 720px)/2 ); }
	
	#accueil-machines .machine-flow{ padding-top: 0; margin-top: -6rem; }
    
    #contact #banner{ margin-bottom: 16rem; }
    #footer:after{ content: none; }
    
    #footer-data .flex > .flex-item.logo{ flex-direction: row; height: auto; max-width: 100%; width: 100%; align-items: center; justify-content:space-between; }
    #footer .logo-clp {width: 30%; }
    #footer-data .flex > .flex-item.logo .logo-imi { margin:10px 0 0 0; }
}

/**
 * Small devices
 **/
@media (max-width: 767px) {
body.admin:after{ content:"sm"; background-color: blue; }
/*html { font-size: 6px; }*/
	img{ display: block; margin-left: auto; margin-right: auto;}

	.extra-container{ width: 100%; float: none !important; }
	.blue-sidebar:before{ width: calc( (100vw - 540px)/2 ); }
	
	.casper-mobile{ display: none !important; }
	.casper-screen-inline{ display: inline; }
	.casper-screen-block{ display: block; }
	
	.logo{ padding: 0 2px; margin-left: 5px; }
	#menu{ width: auto;}
	#menu .level-0{ width: auto; max-width: inherit; }
	#menu .level-1 > a, 
	#menu .level-1 > span{ line-height: 50px; }
	
	#header #main-menu-wrapper{ overflow-y: scroll; }
	#header #main-menu-wrapper:after{ width: 100%; right: -40%;}
	#header #main-menu-wrapper .flex > ul.footer{ margin-top: 20px; }
	#header .contactfixed .message img {width: 20px; height: 20px; margin:10px;}
	
	#banner{ background-position: 100% 100%; background-size: cover; }
	
	#footer-legals li a:after{ content: none; }
	
	#accueil-edito .order-1{ order: 2; }
	#accueil-edito .order-2{ order: 1; }
	#accueil-machines .bg-gris{ display: none; }
	#accueil-machines .machine-flow{ padding-top: 0; margin-bottom: 6rem; }
	#accueil-machines .machine-flow:before { content: ""; background-color: #EFEFEF; position: absolute; height: 40%; width: 150%; left: 0; bottom: -2rem; z-index: 0; }
	#accueil-applications .bg-bleu{ width: calc(100% + 15px + (100vw - 540px)/2); height: 400%; }
	#accueil-applications,
	#accueil-applications a{ color: #FFF; }
	
	.actu.teaser{ padding-top: 2rem; }
	#actualites .links a{ padding: 4rem 2rem; }
	
	#actualites:before 			   { height: 40px; top: -40px; }
	#actualites > .container:before{ height: 15px; }
	#actualites:after 			   { height: 15px; bottom: -15px; }
	#actualites > .container:after { height: 40px; }
	
	#contact #banner { margin-bottom: 25rem; }
	
    #footer-data .flex{ align-items: center; flex-direction: column; }
	#footer-data .flex > div { margin: 15px auto; } 
    #footer-data .flex > .flex-item.logo{ width: 100%; }
	#footer-legals .container{ font-size: 10px; text-align: center; } 
	#footer .cpl {text-align: center;}
	#footer .all,
	#footer .cpl{width: auto;}
	#footer .all {display: flex; flex-direction: column; justify-content: center; align-items: center;}

}

/**
 * Extra small devices
 **/
@media (max-width: 575px) {
body.admin:after{ content:"--"; background-color: yellow; }
	
	#header #main-menu-wrapper:after{ content: none; }
	#main{ padding-bottom: 6rem; }

    .flex{ flex-direction: column; }
    .flex-item{ width: 100%; }
    #footer-data .flex > .flex-item.logo{ width: 100%; flex-direction: column; align-items: center; }
    
	#accueil-applications .bg-bleu{ width: 100%; }
	.swiper-container { margin-left: 15px; margin-right: 15px; }
	
	#actualites .links > div { padding-right: 0; padding-left: 0; }
	
	#contact #banner .bg-bleu { padding: 3rem 2rem; }
	
	#footer .logo-clp {width: 50%; }
	
	.resp_geode {order: -1;}

}

