@charset "UTF-8";
/* CSS Document */

html {
	padding:0;
    margin:0;
    scroll-behavior: smooth;
}

body {
	padding:0;
	margin:0;
	font-size: 14px;
	line-height: normal;
	font-family: "Montserrat";
	font-weight: 400;
}

section,
header,
nav,
article,
aside,
footer,
figure
{
	padding:0;
	margin:0;
	display:block;
}

img {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline:none;
	line-height:0;
	font-size:0;
}

figure {
	font-size: 0px;
	line-height: 0px;
	display: block;
	margin: 0px;
	padding: 0px;
}

figure > img {
	display:block;
	width:100%;
	height:auto;
}

a {
	outline:none;
}

h1,h2,h3,h4,h5,h6 {
	display:block;
	padding:0;
	margin:0;
	font-weight:normal;
}


.hidden-l {
	display:none;
}


.txt-z {
	line-height:0;
	font-size:0;
}
.txt-n {
	font-size:15px;
	font-weight: 400;
	line-height: 25px;
}

.txt-n strong {
    font-weight: 600;
}

.v-top {
	vertical-align:top;
}
.v-middle {
	vertical-align:middle;
}
.v-bottom {
	vertical-align: bottom;
}

.overflow {
	overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.full-height {
	height:100%;
}
.fh {
	height: 100vh;
}

/* ========================================= COMMONS ============================== */

.wrapper-trace {
    display: block;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 0px;
    margin-bottom: 20px;
    background-color: transparent;
    border:none;
    z-index: 1;
}

.wrapper-trace .trace {
    background-color:rgba(25, 151, 198, 0.8);
	color: #FFF;
	display: block;
	padding: 10px 35px 10px 10px;
    margin: 0;
    margin-bottom: 5px;
    position: relative;
    border-radius: 4px;
    font-size: 12px;
    line-height: normal;
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.1);
}

.wrapper-trace .close {
    display: block;
    width: 15px;
    height: 15px;
    padding: 5px;
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 10px;
    background-color: rgba(255,255,255,1);
    color: rgba(0,0,0,0.3);
    font-size: 0;
    line-height: 0;
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
    border-radius: 2px;
    background-image:url('../../media/images/close-noir.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    cursor: pointer;
    box-sizing: border-box;
}


.table {
	/*border-collapse: separate; border-spacing: 5px;*/
    border-collapse: collapse; 
    border-spacing: 0;
	width:100%;
}
.table th, td {
	padding: 5px;
	vertical-align: top;
}

.box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
	box-sizing: border-box;
}

.txt-center {
	text-align: center;
}
.txt-left {
	text-align: left;
}
.txt-right {
	text-align: right;
}
.txt-justify {
	text-align: justify;
}

.left {
	float:left;
}

.right {
	float:right;
}

.clear {
	display:block;
	clear:both;
	line-height:0;
	height:0;
}

.hide {
	display:none;
}


.bloc {
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.ib {
	display: inline-block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


.margin-auto {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.radius {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

.transition {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.transition.fast {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.transition.slow {
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.relative {
	position:relative;
}

.bg-cover {
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;
}
.bg-cover.top-left {
	background-position:left top;
}
.bg-cover.top-center {
	background-position:center top;
}
.bg-cover.top-right {
	background-position:right top;
}

.bg-cover.middle-left {
	background-position:left center;
}
.bg-cover.middle-center {
	background-position:center center;
}
.bg-cover.middle-right {
	background-position:right center;
}

.bg-cover.bottom-left {
	background-position:left bottom;
}
.bg-cover.bottom-center {
	background-position:center bottom;
}
.bg-cover.bottom-right {
	background-position:right bottom;
}



.bg-contain {
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center center;
}

.link {
	display:inline-block;
	text-decoration:none;
	line-height: normal;
	font-size: 12px;
	font-weight: 400;
	padding: 10px 17px;
	letter-spacing: 1px;
	cursor: pointer;
}

.border {
	border:solid 1px;
}

/* ========================================= COLORS ============================== */

.bg-noir-10 {
	background-color:rgba(0,0,0,0.1);
}
.bg-noir-20 {
	background-color:rgba(0,0,0,0.2);
}
.bg-noir-30 {
	background-color:rgba(0,0,0,0.3);
}
.bg-noir-40 {
	background-color:rgba(0,0,0,0.4);
}
.bg-noir-50 {
	background-color:rgba(0,0,0,0.5);
}
.bg-noir-60 {
	background-color:rgba(0,0,0,0.6);
}
.bg-noir-70 {
	background-color:rgba(0,0,0,0.7);
}
.bg-noir-80 {
	background-color:rgba(0,0,0,0.8);
}
.bg-noir-90 {
	background-color:rgba(0,0,0,0.9);
}

.bg-blanc-80 {
    background-color: rgba(255,255,255,0.8);
}


.bg-noir {
	background-color:#000;
}
.bg-blanc {
	background-color:#FFF;
}
.bg-noirmat {
    background-color: rgb(25,24,23);
}
.bg-vert {
    background-color: #61ae28;
}
.bg-bleu {
    background-color: #26519c;
}
.bg-bleuclair {
    background-color: rgb(157, 195, 230);
}

.bg-grismoyen {
    background-color: #3a4146;
}

.bg-bleufonce {
    background-color: #333642;
}
.bg-grisfonce {
    background-color: #333642;
}
.bg-rouge {
    background-color: #c43a49;
}


.b-noir {
	border-color:#000;
}
.b-blanc {
	border-color:#FFF;
}
.b-noirmat {
    border-color: rgb(25,24,23);
}
.b-vert {
    border-color: #61ae28;
}
.b-bleu {
    border-color: #26519c;
}
.b-bleufonce {
    border-color: #333642;
}
.b-grisfonce {
    border-color: #333642;
}
.b-grismoyen {
    border-color: #3a4146;
}
.b-rouge {
    border-color: #c43a49;
}
.b-bleuclair {
    border-color: rgb(157, 195, 230);
}


.f-noir {
	color:#000;
}
.f-blanc {
	color:#FFF;
}
.f-noirmat {
    color: rgb(25,24,23);
}
.f-vert {
    color: #61ae28;
}
.f-bleu {
    color: #26519c;
}
.f-bleuclair {
    color: rgb(157, 195, 230);
}
.f-bleufonce {
    color: #333642;
}
.f-grisfonce {
    color: #333642;
}
.f-grismoyen {
    color: #3a4146;
}
.f-rouge {
    color: #c43a49;
}

/* =============================================== STRIP MENU ================================= */


header.strip {
	display: block;
	padding: 0;
	margin: 0;
	border-bottom: solid 1px rgba(0,0,0,0.05);
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}
header.strip #wrapper-menu {
	padding-top: 25px;
	padding-bottom: 25px;
	padding-left: 35px;
	padding-right: 35px;
	/*box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);*/
}

header.strip #wrapper-menu .menu {
	position: relative;
	top: 0;
	padding-right: 25px;
	z-index: 1;
}
header.strip #wrapper-menu .menu a {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
}

header.strip #wrapper-menu .menu a figure {
    display: inline-block;
    vertical-align: middle;
    margin-right:15px;
    transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
}
header.strip #wrapper-menu .menu a:hover figure {
    transform: rotate(90deg);
}


header.strip #wrapper-menu .menu a .line {
    display: block;
    width: 30px;
    height: 1px;
    background-color: #000;
    margin-bottom: 8px;
}
header.strip #wrapper-menu .menu a .line:last-of-type {
    margin-bottom: 0;
}

header.strip #wrapper-menu .menu a span {
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	line-height: normal;
    font-weight: 300;
    letter-spacing: 3px;
    transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
}
header.strip #wrapper-menu .menu a:hover > span {
    transform: translateX(5px);
}

/*
header.strip #wrapper-menu .menu a span {
	display: inline-block;
	vertical-align: middle;
	font-size: 18px;
	line-height: normal;
	font-weight: 600;
}
header.strip #wrapper-menu .menu a img {
	display: inline-block;
	vertical-align: middle;
	height: 30px;
	width: auto;
	margin-right: 10px;
	opacity: 1;
	transition: all 0.2s ease-in-out;
}
header.strip #wrapper-menu .menu a:hover img {
	transform: rotate(90deg);
}
*/

.social {
	position: relative;
	top: 0;
	padding-left: 25px;
	z-index: 1;
}
.social .ico {
	display: inline-block;
	width: 30px;
	height: 30px;
	background-position: center top;
	background-size: 100% auto;
	opacity: 1;
    margin-left: 10px;
}
.social .ico:hover {
	background-position: center bottom;
}
.ico-facebook {
	background-image: url(../media/images/ico-facebook.png);
}
.ico-twitter {
	background-image: url(../media/images/ico-twitter.png);
}
.ico-linkedin {
	background-image: url(../media/images/ico-linkedin.png);
}
.ico-pinterest {
	background-image: url(../media/images/ico-pinterest.png);
}
.ico-youtube {
	background-image: url(../media/images/ico-youtube.png);
}
.ico-instagram {
	background-image: url(../media/images/ico-instagram.png);
}
.ico-maps {
	background-image: url(../media/images/ico-maps.png);
}


header.strip #wrapper-nav {
	height:100vh;
	width:0;
	overflow: hidden;
	position:absolute;
	top: 0;
	right:0;
	z-index: 2;
}
header.strip #wrapper-nav .close {
	display: block;
	position: absolute;
	top: 55px;
	right: 55px;
	background-size: contain;
	background-image: url(../media/images/close-noir.png);
	background-repeat: no-repeat;
	background-position: center;
	width: 30px;
	height: 30px;
	z-index: 3;
	cursor: pointer;
}

header.strip #wrapper-nav .overlay {
	position: absolute;
	width:100%;
	height: 100%;
	background-color: rgba(1,70,153,0.5);
	top: 0;
	left: 0;
}

header.strip #wrapper-nav nav{
	opacity:1;
}

/* ========================================= STD MENU ============================== */

header {
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 30px;
    margin-bottom: 20px;
}
header .wrapper-logo {
    position: relative;
}

header .wrapper-logo a {
    display: block;
    text-decoration: none;
    position: absolute;
    left: -25px;
    top: 0;
    z-index: 4;
}

header .wrapper-logo a figure {
    width: 110px;
    height: auto;
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
    position: relative;
}


header .flags a {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;    
    margin-left: 5px;
}
header .flags a.disabled {
    opacity: 0.3;
}
header .flags a:hover {
    opacity: 1;
}

header .flags .flag_fr {
    background-image: url('../media/images/flag_lang_fr.png');
}
header .flags .flag_en {
    background-image: url('../media/images/flag_lang_en.png');
}
header .flags .flag_de {
    background-image: url('../media/images/flag_lang_de.png');
}
header .flags .flag_es {
    background-image: url('../media/images/flag_lang_es.png');
}

header .ico-recherche {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;    
    margin-left: 10px;
    background-image: url('../media/images/ico-recherche.png');
    cursor: pointer;
}

header .wrapper-recherche {
    position: relative;
}

header .wrapper-recherche #recherche {
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 2;
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    width: 250px;
    border-radius: 3px;
    border:solid 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    box-sizing: border-box;
    transition: all 400ms ease;
    opacity: 0;
    transform: translateY(20px);
    
}
header .wrapper-recherche #recherche.up {
    transform: translateY(0px);
    opacity: 1;
}



header nav {
	line-height: 0px;
    font-size:0;
}

.wrapper-global {
    display: block;
    width: 100%;
    height: calc(100vh - 35px);
    position: fixed;
    top: 95px;
    left: 0;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition:all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
    /*border-top: solid 25px #FFF;*/
    
}

.wrapper-global.up {
    display: block;
    opacity: 1;
    visibility: visible;
}


.wrapper-global .menu-produits {
    display: block;
    width: 100%;
    border-top: solid 25px #FFF;
    /*
    top: 35px;
    left: 0;
    z-index: 3;
    opacity: 0;
    visibility: hidden;

    transition:all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
    border-top: solid 25px #FFF;
    */
}


/*
.menu-produits {
    display: block;
    width: 100%;
    position: absolute;
    top: 35px;
    left: 0;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition:all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
    border-top: solid 25px #FFF;
}

.menu-produits.up {
    display: block;
    opacity: 1;
    visibility: visible;
}
*/



.menu-produits p {
    margin: 0;
    line-height: 18px;
}

.menu-produits hr {
    background-color: rgba(25,24,23,0.2);
    margin: 0;
    width: 100%;
    
}

.menu-produits .infos h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 5px;
}
.menu-produits .infos p {
    font-size: 12px;
    font-weight: 300;
}
.menu-produits .infos p strong {
    font-weight: 600;
}


.menu-produits .infos ul li p a {
    display:inline-block;
}

.menu-produits .infos ul {
    padding: 0;
    margin: 0;
    padding-top: 10px;
}

.menu-produits .infos ul li {
    display: block;
    margin:0 ;
    border-bottom: solid 1px rgba(25,24,23,0.1);
    padding: 8px 5px;
}
.menu-produits .infos ul li:last-of-type {
    border-bottom: 0;
}
.menu-produits .infos ul li::after {
    display: none;
}

.menu-produits .infos ul li a {
    text-decoration: none;
    color: rgb(25,24,23);
    font-size: 12px;
    line-height: normal;
    font-weight: 600;
    margin: 0;
    display: block;
    padding: 0;
}


.menu-produits .infos ul li ul {
    padding-left: 25px;
    padding-top: 3px;
}
.menu-produits .infos ul li ul li {
    border-bottom: 0;
    padding: 1px;
}
.menu-produits .infos ul li ul li a {
    font-weight: 300;
    padding: 2px;
} 

.menu-produits .infos ul li a:hover {
    text-decoration: underline;
}


.menu-produits .gamme > a:first-of-type {
    display: block;
    text-decoration: none;
}

.menu-produits .gamme-1 a:first-of-type:hover h3 {
    background-color: #1f4280;
}
.menu-produits .gamme-2 a:first-of-type:hover h3 {
    background-color: #1f4280;
}
.menu-produits .gamme-3 a:first-of-type:hover h3 {
    background-color: rgb(22,22,22);
}

.menu-produits .gamme h3 {
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 15px;
    display: block;
    padding: 7px 10px 7px 50px;
    box-sizing: border-box;
    background-image: url('../media/images/slash-blanc.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
}
.menu-produits .gamme h3 br {
    display: none;
}

.menu-produits .gamme h3 strong {
    font-weight: 700;
}
.menu-produits .gamme h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 8px;
    margin-top: 15px;
    letter-spacing: 1px;
}
.menu-produits .gamme h4 small {
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0;
    color: rgb(22,22,22);
}


.menu-produits .gamme h4 a {
    text-decoration: none;
    color: rgb(25, 24, 23);
    color: rgb(200,200,200);
}
.menu-produits .gamme h4 a:hover {
    color: rgb(22,22,22);
}


.menu-produits .gamme hr {
    background-color: rgba(25,24,23,0.1);
    height: 1px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 0;
    margin-right: 0;
}


.menu-produits .gamme ul {
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}

.menu-produits .gamme ul li {
    display: block;
    margin:0;
    padding: 5px 5px;
}
.menu-produits .gamme ul li::before {
    content: "•";
    display: inline-block;
    vertical-align: middle;
    font-size: 25px;
    line-height: 19px;
    font-weight: 600;
    margin-right: 10px;
}

.menu-produits .gamme-1 ul li::before {
    color: rgb(123, 209, 245);
}
.menu-produits .gamme-2 ul li::before {
    color: #26519c;
}

.menu-produits .gamme ul li a {
    text-decoration: none;
    color: rgb(25,24,23);
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
}

.menu-produits .gamme ul li.famille-16 a {
    color: #c6a448;
}
/*
.menu-produits .gamme-1 ul li a:hover {
    color: #26519c;
}
.menu-produits .gamme-2 ul li a:hover {
    color: #61ae28;
}
*/
.menu-produits .gamme ul li:last-of-type {
    border-bottom: 0;
}
.menu-produits .gamme ul li::after {
    display: none;
}






header nav > ul {
	position: relative;
	padding: 0;
	margin:0;
	display: block;
	font-size: 0;
    line-height: 0;
    margin-left: auto;
	margin-right: auto;
}

header nav > ul > li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0px;
	text-align:left;
	font-size: 0;
	line-height: 0;
}


header nav > ul > li::after {
    display: inline-block;
    vertical-align: middle;
    content: "/";
    color: rgba(0, 0, 0, 0.3);
    font-size: 13px;
    line-height: normal;
    font-weight: 200;
}

header nav > ul > li:last-of-type::after {
    display: none;
}

header nav > ul > li.disabled {
	opacity: 0.2;
	cursor: not-allowed;
}

header nav > ul > li > a {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    font-weight: 500;
	line-height: normal;
	text-decoration: none;
	box-sizing: border-box;
	margin:0;
    padding: 10px;
    color: rgb(25,24,23);
}
/*
header nav > ul > li > a::before {
    display: block;
    content: attr(title);
    font-weight: 600;
    height: 1px;
    color: transparent;
    overflow: hidden;
    visibility: hidden;
  }
*/

header nav > ul > li:hover {
	position: relative;
	cursor: pointer;
}

header  nav > ul > li.up > a ,
header nav > ul > li > a:hover {
    /*font-weight: 600;*/
    /*text-decoration: underline;*/
}

/*
header nav > ul > li > ul {
	visibility: hidden;
	position: absolute;
	left: 0px;
	width: 200px;
}

header nav > ul > li:hover > ul {
	visibility: visible;
}

header nav > ul > li > ul > li {
	display: block;
}

header nav > ul > li > ul > li > a {
	color: #CCC;
	border: solid 1px rgba(0,0,0,0.1);
}

header nav > ul > li > ul > li > a:hover,
header nav > ul > li > ul > li.up > a
 {
	color:purple;
}
*/

/* ====================================== footer =========================== */

footer {

}

footer p {
	display: block;
	padding: 0;
	margin: 0;
}

footer .credits {
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 1px;
    
}

footer .credits p {
    display: inline-block;
}

footer .credits a {
    text-decoration: underline;
    color: rgb(25,24,23);
}

footer .wrapper .credits p {
    color: rgba(255,255,255,0.5);
    font-weight: 200;
    line-height: normal;
}


footer .wrapper .credits a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

footer .wrapper .credits a:hover {
    color: rgba(255,255,255,1);
}

footer .small {
	font-size: 12px;
}

footer .adresse a {
	text-decoration: none;
}

footer .adresse a:hover {

}

footer h4 {
    font-size: 15px;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 10px;
}
footer h4 strong {
    font-weight: 700;   
}

footer h5 {
    font-size: 13px;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 8px;
    margin-top: 12px;
}
footer h5 span {
    margin-right: 5px;
}


footer .link {
    padding:7px 10px;
    font-size: 10px;
}

footer .link span {
    display: inline-block;
    box-sizing: border-box;
    padding: 3px;
    font-size: 8px;
    line-height: normal;
    font-weight: normal;
    background-color: #FFF;
    color: #333642;
    margin-right: 6px;
}


footer hr {
    background-color: rgba(255,255,255,0.1);
    height: 1px;
    margin-top: 20px;
    margin-bottom: 20px;
}

footer .wrapper-social hr {
    max-width: 300px;
    margin-right: 0;
    width: 100%;
    /*
    margin-top: 20px;
    margin-bottom: 20px;
    */

}
footer .wrapper-catalogues h4 {
    margin-bottom: 20px;
    margin-top: 20px;
}
footer .wrapper-catalogues hr {
    max-width: 250px;
    margin-left: 0;
    width: 100%;
    /*
    margin-top: 10px;
    margin-bottom: 10px;
    */

}
footer .wrapper-catalogues .cata img {
    display: block;
    width: 60%;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
}
/* GP */
footer .wrapper-catalogues .cata img:nth-child(1) {
    left: 40%;
    z-index: 3;
}
/* PRO */
footer .wrapper-catalogues .cata img:nth-child(2) {
    left: 20%;
    z-index: 2;
}
/* SR */
footer .wrapper-catalogues .cata img:nth-child(3) {
    left: 0;
    z-index: 1;
}

footer .wrapper-catalogues .link {
    margin-bottom: 7px;
}

footer .wrapper-logo {
    width: 220px;
}


.bg-hash {
    background-image: url("../media/images/hash.png");
    background-position: center;
    background-size: auto;
    background-repeat:repeat;
}
.bg-hash-blanc {
    background-image: url("../media/images/hash-blanc.png");
    background-position: center;
    background-size: auto;
    background-repeat:repeat;
}

/* ========================================= FORM ====================================================== */

form input[type=text],
form input[type=password],
form textarea
 {
	display: block;
	width: 100%;
	margin: 0px;
	padding: 10px;
	border: 1px solid rgba(0,0,0,0.2);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	font-family: "Open Sans";
	font-size: 13px;
	line-height: normal;
    border-radius: 4px;
}
form select
 {
	display: inline-block;
	margin: 0px;
	padding: 10px;
	border: 1px solid rgba(0,0,0,0.2);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	font-family: "Open Sans";
	font-size: 13px;
	line-height: normal;
    border-radius: 4px;
    width: 100%;
    background-color: #fff;
}

form input[type=submit] {
	display: block;
	width: 100%;
	margin: 0px;
	padding: 10px;
	border: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: white;
	
	cursor:pointer;
	-webkit-appearance: none;
	font-family: "Open Sans";
	font-size: 13px;
	line-height: normal;
    border-radius: 4px;
}
#contact .g-recaptcha {
		margin-bottom: 10px;
}
#contact form input[type=submit]:disabled {
	opacity: 0.2;
}


hr {
	display:block;
	height:0;
	border:none;
	clear: both;
	margin-top: 20px;
	margin-bottom: 40px;
}

/* ================================================= GRID ============================================== */

.page {
	display:block;
    max-width:1000px;
    width:100%;
    box-sizing: border-box;
    
}
.page.xl {
	max-width:1400px;
}
.page.xxl {
    
    max-width: 1800px;
}

.page.l {
	max-width:1200px;
}
.page.m {
	max-width:900px;
}

.page.s {
	max-width:800px;
}
.page.xs {
	max-width: 700px;
}
.page.xxs {
	max-width: 600px;
}



.col-100-l {
	width:100%;
}
.col-90-l {
	width:90%;
}
.col-80-l {
	width:80%;
}
.col-70-l {
	width:70%;
}
.col-60-l {
	width:60%;
}
.col-50-l {
	width:50%;
}
.col-40-l {
	width:40%;
}
.col-30-l {
	width:30%;
}
.col-20-l {
	width:20%;
}
.col-10-l {
	width:10%;
}

.col-33-l {
	width:33.333333%;
}
.col-66-l {
	width:66.666666%;
}

.col-25-l {
	width:25%;
}
.col-75-l {
	width:75%;
}


#vp #large {
	display:block !important;
}
#vp #medium {
	display:none !important;
}
#vp #small {
	display:none !important;
}


/* ============================================ SLIDER =================================================== */


.slick {
	margin-bottom:0;
	position:relative;
}
.slick .slick-list,
.slick .slick-track {
	height:100%;
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.slick .slide {
	display:block;
	position:relative;
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center center;
}
.slick .slide .legende {
	position:absolute;
	right:0px;
	top:30%;
	width:50%;
}

.slick .slide img {
	display:block;
	width:100%;
	height:auto;
}

.slick .slick-arrow {
	width:40px;
	height:40px;
	background-size:contain;
	background-repeat: no-repeat;
	opacity:0.8;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.slick .slick-arrow:hover {
	opacity:1;
}

.slick .slick-arrow::before {
	display:none;
}

.slick .slick-next {
	right:20px;
	z-index:1000;
	background-image: url(../media/images/arrow_right.png);
	background-position:center center;
}
.slick .slick-next:hover {
	right:15px;
}

.slick .slick-prev {
	left: 20px;
	z-index: 1000;
	background-image: url(../media/images/arrow_left.png);
	background-position: center center;
}

.slick .slick-prev:hover {
	left: 15px;
}

.slick .slick-dots {
	bottom:0;
}

.slick .slick-dots li {
		width: auto;
		height: auto;
		margin: 0 10px;
}
.slick .slick-dots li button {
	background-color: rgba(255,255,255,0.5);
	border-radius: 12px;
	width: 12px;
	height: 12px;
	transition: all 0.2s ease-in-out;
}
.slick .slick-dots li.slick-active button,
.slick .slick-dots li button:hover{
	background-color: #FFF;
}

.slick .slick-dots li button::before {
	display: none;
}

/* =========================== PADDING / MARGIN ============================== */

.padd-xxs {
	padding: 10px;
}
.padd-l-xxs {
	padding-left: 10px;
}
.padd-r-xxs {
	padding-right: 10px;
}
.padd-t-xxs {
	padding-top: 10px;
}
.padd-b-xxs {
	padding-bottom: 10px;
}
.padd-h-xxs {
	padding-left: 10px;
	padding-right: 10px;
}
.padd-v-xxs {
	padding-top: 10px;
	padding-bottom: 10px;
}



.padd-xs {
	padding: 20px;
}
.padd-l-xs {
	padding-left: 20px;
}
.padd-r-xs {
	padding-right: 20px;
}
.padd-t-xs {
	padding-top: 20px;
}
.padd-b-xs {
	padding-bottom: 20px;
}
.padd-h-xs {
	padding-left: 20px;
	padding-right: 20px;
}
.padd-v-xs {
	padding-top: 20px;
	padding-bottom: 20px;
}


.padd-s {
	padding: 25px;
}
.padd-l-s {
	padding-left: 25px;
}
.padd-r-s {
	padding-right: 25px;
}
.padd-t-s {
	padding-top: 25px;
}
.padd-b-s {
	padding-bottom: 25px;
}
.padd-h-s {
	padding-left: 25px;
	padding-right: 25px;
}
.padd-v-s {
	padding-top: 25px;
	padding-bottom: 25px;
}


.padd-m {
	padding: 50px;
}
.padd-l-m {
	padding-left: 50px;
}
.padd-r-m {
	padding-right: 50px;
}
.padd-t-m {
	padding-top: 50px;
}
.padd-b-m {
	padding-bottom: 50px;
}
.padd-h-m {
	padding-left: 50px;
	padding-right: 50px;
}
.padd-v-m {
	padding-top: 50px;
	padding-bottom: 50px;
}

.padd-xm {
	padding: 75px;
}
.padd-l-xm {
	padding-left: 75px;
}
.padd-r-xm {
	padding-right: 75px;
}
.padd-t-xm {
	padding-top: 75px;
}
.padd-b-xm {
	padding-bottom: 75px;
}
.padd-h-xm {
	padding-left: 75px;
	padding-right: 75px;
}
.padd-v-xm {
	padding-top: 75px;
	padding-bottom: 75px;
}

.padd-l {
	padding: 100px;
}
.padd-l-l {
	padding-left: 100px;
}
.padd-r-l {
	padding-right: 100px;
}
.padd-t-l {
	padding-top: 100px;
}
.padd-b-l {
	padding-bottom: 100px;
}
.padd-h-l {
	padding-left: 100px;
	padding-right: 100px;
}
.padd-v-l {
	padding-top: 100px;
	padding-bottom: 100px;
}


.padd-xl {
	padding: 150px;
}
.padd-l-xl {
	padding-left: 150px;
}
.padd-r-xl {
	padding-right: 150px;
}
.padd-t-xl {
	padding-top: 150px;
}
.padd-b-xl {
	padding-bottom: 150px;
}
.padd-h-xl {
	padding-left: 150px;
	padding-right: 150px;
}
.padd-v-xl {
	padding-top: 150px;
	padding-bottom: 150px;
}


/* ========================================= MAP ============================== */

.map {
	display: block;
	width: 100%;
	height: 500px;
}

/* ========================================= PARALLAX ============================== */

.parallax-container {
  position: relative;
  overflow: hidden;
  height: 500px;
}

#homepage .pano {
    position: relative;

}

#homepage .pano figcaption,
.parallax-container .legende {
    position: absolute;
    bottom: 30px;
    left: 50px;
    z-index: 2;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

#homepage .pano figcaption strong,
.parallax-container .legende strong {
    font-weight: 700;
}

.parallax-container .parallax {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.parallax-container .parallax img {
    opacity: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

/* ========================================= TOOLTIP  ========================== */

.tooltipster-sidetip.tooltipster-custom .tooltipster-box {
	background-color: transparent;
	border: none;
	border-radius: 0;
	/*box-shadow: 5px 5px 2px 0 rgba(0,0,0,0.4);*/
}

.tooltipster-sidetip.tooltipster-custom .tooltipster-content {
	color: #FFF;
	font-size: 12px;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	padding: 0;
	text-align: center;
}

/* ========================================= FLEX ============================== */

.wrapper-v-center {
	display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper-v-center.align-right {
	display: flex;
	justify-content: flex-end;
}

/* ======================================= MASONRY ============================= */

.wrapper-masonry {
	box-sizing: border-box;
}

.wrapper-item-sizer,
.wrapper-item {
	width: 33%;
}

.wrapper-item a {
	/*cursor: pointer;*/
	/*text-decoration: none;*/
	border-bottom: solid 1px rgba(255,255,255,0.1);
	padding-bottom: 30px;
	padding-top: 30px;
}
.wrapper-item a:hover {

}
.wrapper-item a figure {
	margin-bottom: 20px;
}
.wrapper-item a h2 {
	font-size: 30px;
	line-height: normal;
	margin-bottom: 20px;
	text-align: left;
}
.wrapper-item a p {
	font-size: 14px;
	line-height: normal;
	text-align: justify;
	line-height: 25px;
}
.wrapper-item a .link {
	margin-top: 15px;
	display: block;
	text-align: center;
}
.wrapper-item a .link:hover {

}
.wrapper-item a p.date {
	font-size: 13px;
}

/* ======================================= FANCYBOX ============================= */

.fancybox-thumbs {
  top: auto;
  width: auto;
  bottom: 0;
  left: 0;
  right : 0;
  height: 95px;
  padding: 10px 10px 5px 10px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.3);
}

.fancybox-show-thumbs .fancybox-inner {
  right: 0;
  bottom: 95px;
}

#progress {
	display: block;
	width: 0;
	height: 2px;
	position: absolute;
	z-index: 2;
	bottom: 0px;
	left: 0;
	background-color: rgba(255,255,255,0.5);
}


.arrow-down-loop {
    position: absolute;
    bottom: 80px;
    width: 100%;
    z-index: 2;
    left: 0;
    box-sizing: border-box;
    text-align: center;
    height: 0;
    overflow: visible;
}

.arrow-down-loop a {
    margin: 0;
    display: inline-block;
    text-decoration: none;
}

.arrow-down-loop a span {
    font-size: 10px;
    line-height: normal;
    letter-spacing: 4px;
}

.arrow-down-loop .arrow-down {
    position: relative;
    width: auto;
    height: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: loopBottom 1s infinite alternate;
    transform: translateY(5px);
}

.arrow-down-loop .arrow-down img {
    display: block;
    width: auto;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

@keyframes loopBottom {
    from {
        transform: translateY(15px);
    }
} 




#slider_homepage {
	width: 100%;
}

#slider_homepage .owl-item {
    /*height: 100vh;*/
    height:auto;
	box-sizing: border-box;
}

#slider_homepage .owl-item .slide {
	height: 100%;
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

#slider_homepage .owl-item a {
    display: block;
    position: relative;
    color: #FFF;
    text-decoration: none;
}


#slider_homepage .owl-item .overlay {
	width: 100%;
	height: 100%;
    opacity: 1;
    display: block;
    z-index: 2;
    left: 0;
    top:0;
}
#slider_homepage .owl-item .overlay .legende {
    display: block;
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 2;
}

#slider_homepage .owl-item .overlay .legende h2 {
    font-size: 26px;
    font-weight: 500;
    line-height: normal;
    color:#FFF;
    margin: 0;
    margin-bottom: 20px;
}

#slider_homepage .owl-item .overlay .legende p {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color:#FFF;
    margin: 5px 0;
}

/*
#slider_homepage .owl-item .slide .overlay .legende {
	padding: 20px;
	box-sizing: border-box;
	overflow: hidden;
	opacity: 0;
}
#slider_homepage .owl-item .slide .overlay .legende .content {
	position: relative;
	opacity: 1;
	padding:0;
	display: block;
	width: 100%;
	box-sizing: border-box;
}
#slider_homepage .owl-item .slide .overlay .legende .content h2{
	font-size: 35px;
	line-height: normal;
	font-weight: 400;
	color: #FFF;
	margin:0;
	padding: 0;
	opacity: 0;
	margin-bottom: 25px;
	display: inline-block;
	width: auto;

}
#slider_homepage .owl-item .slide .overlay .legende .content p {
	display: block;
	margin:0;
}
#slider_homepage .owl-item .slide .overlay .legende .content p a {
	text-decoration: none;
	color: #FFF;
	font-size: 14px;
	font-weight: 300;
	border:solid 1px #FFF;
	padding: 10px 15px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	display: inline-block;
	opacity: 0;
}
#slider_homepage .owl-item .slide .overlay .legende .content p a:hover {
	background-color: #FFF;
	color: #000;
}

*/
#slider_homepage .owl-nav {
	height: 0;
	position: absolute;
	top: calc(50% - 40px);
	width: 100%;
	z-index: 2;
	box-sizing: border-box;
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

#slider_homepage:hover .owl-nav {
	opacity: 1;
}
#slider_homepage .owl-nav button {
	font-size: 0;
	line-height: 0;
	width: 40px;
	height: 80px;
	background-repeat: no-repeat;
	background-size: 20px auto;
	background-position: center;
	display: block;
	padding: 10px;
}
#slider_homepage .owl-nav .owl-prev {
	float: left;
	background-image: url(../media/images/arrow-left-blanc.png);

}
#slider_homepage .owl-nav .owl-next {
	float: right;
	background-image: url(../media/images/arrow-right-blanc.png);

}
#slider_homepage .owl-dots {
	position: absolute;
	bottom: -50px;
	right: 50px;
	width: auto;
	z-index: 4;
}
#slider_homepage .owl-dots button {
	display: inline-block;
	border: solid 1px #3e474e;
	background-color: transparent;
	width: 12px;
	height: 12px;
	margin-left: 10px;
}
#slider_homepage .owl-dots button.active {
	background-color: #3e474e;
}


.promo {
	display: block;
}
.promo p {
	margin: 0;
    line-height: normal;
    display: block;
}
.promo .link {
    padding: 7px 10px;
    margin-left: 10px;
}

#cs {
    height: 100vh;
    display: block;
    padding: 60px 80px;

}

#cs .content {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('../media/images/smartfloor-com-2019.jpg');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
}

#cs .content .logos {
    z-index: 2;
    top: -30px;
    left: -30px;
}

#cs .content .logos .logo {
    width: 180px;
    height: auto;
    margin-right: 15px;
}

#cs .message {
    display: inline-block;    
}

#cs .message p {
    font-size: 35px;
    line-height: normal;
    font-weight: 300;
    margin: 0;
    padding: 40px 30px;
}
#cs .message p strong {
    font-weight: 700;
}

.corners {
    position: relative;
}

.corners::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    border-top: solid 3px rgb(25,24,23);
    border-left: solid 3px rgb(25,24,23);
    width: 80px;
    height: 50px;
}


.corners::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
    border-bottom: solid 3px rgb(25,24,23);
    border-right: solid 3px rgb(25,24,23);
    width: 80px;
    height: 50px;
}


#cs .informations h1 {
    font-weight: 500;
    font-size: 15px;
    line-height: normal;
    margin-bottom: 15px;
}

#cs .informations p {
    font-size: 13px;
    font-weight: 300;
    margin:5px;
}

#cs .informations p br {
    display: none;
}

#cs .informations .link {
    font-weight: 500;
    padding: 8px 17px;
    font-size: 12px;
    margin-left: 10px;
}

#cs .wrapper-catalogue {
    position: absolute;
    width: 100%;
    bottom: -40px;
    left: 0;
}

#cs .wrapper-catalogue .catalogue {
    text-decoration: none;
    display: block;
}

#cs .wrapper-catalogue .catalogue .couv {
    width: 200px;
    height: auto;
    display: inline-block;
    position: relative;
    z-index: 2;
    
}
#cs .wrapper-catalogue .catalogue .bandeau {
    display: block;
    position: absolute;
    z-index: 0;
    bottom: 70px;
    
}

#cs .wrapper-catalogue .txt-left .catalogue .bandeau {
    margin-left: 185px;
    left: 0;
    padding: 25px 25px 15px 35px;
}

#cs .wrapper-catalogue .txt-right .catalogue .bandeau {
    right: 0;
    margin-right: 185px;
    padding: 25px 35px 15px 25px;
}




#cs .wrapper-catalogue .catalogue .bandeau h2 {
    display: block;
    font-size: 13px;
    line-height: normal;
    font-weight: 300;
    margin-bottom: 5px;
}

#cs .wrapper-catalogue .catalogue .bandeau h2 strong {
    font-weight: 600;
    font-size: 16px;
}

#cs .wrapper-catalogue .catalogue .bandeau .link {
    font-size: 10px;
    font-weight: 300;
    line-height: normal;
    padding: 5px 15px;
    letter-spacing: 1px;
    
}

#cs .wrapper-texte {
    margin-bottom: 200px;
}

.ico-catalogue {
    background-image: url('../media/images/ico-book.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    margin-right: 10px;
}

.link.bg-vert:hover {
    background-color: #519321;
}
.link.bg-bleu:hover {
    background-color: #1f4280;
}



.titre {
    padding: 35px;
    text-align: center;
    box-sizing: border-box;
}

.titre h1,
.titre h2{
    font-size: 20px;
    line-height: 35px;
    font-weight: 300;
}
.titre h1 strong,
.titre h2 strong {
    font-weight: 700;
    font-size: 30px;
    line-height: normal;
}

.corner-bleu {
    position: relative;
}
.corner-bleu img {
    z-index: 2;
    position: relative;
}
.corner-bleu::before {
    content: "";
    display: block;
    width: 140px;
    height: 140px;
    position: absolute;
    z-index: 1;
    left: -20px;
    top: -20px;
    background-color:#26519c;
}


.choix-produits {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.choix-produits .wrapper {
    padding: 10px;
}


.choix-produits .wrapper p {
    height: 70px;
}

.choix-produits .wrapper a {
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    display: block;
    text-decoration: none;
}

.choix-produits .wrapper a .wrapper-content {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
    transition:all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}


.choix-produits .wrapper a:hover .wrapper-content {
    width: 100%;
}

.choix-produits .wrapper a h2 {
    font-size: 22px;
    font-weight: 200;
    line-height: normal;
    text-align: center;
    position: relative;
    display: block;
    padding-top: 50px;
    padding-bottom: 50px;
}
.choix-produits .wrapper a h2 strong {
    font-size: 23px;
    font-weight: 700;
    line-height: normal;
}

.choix-produits .wrapper a h2 strong small {
    font-size: 16px;
    font-weight: 600;
}

.choix-produits .wrapper a .wrapper-content h2::before {
    content: "";
    display: block;
    position: absolute; 
    z-index: 1;
    top: 0;
    left: 25%;
    border-top: solid 2px #FFF;
    border-left: solid 2px #FFF;
    width: 60px;
    height: 40px;
}


.choix-produits .wrapper a .wrapper-content h2::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 25%;
    border-bottom: solid 2px #FFF;
    border-right: solid 2px #FFF;
    width: 60px;
    height: 30px;
}

.choix-produits .wrapper a .wrapper-content .link {
    position: absolute;
    right: calc(25% + 70px);
    bottom: -5px;
    font-size: 11px;
    padding: 0;
    font-weight: 300;
}




.choix-produits .wrapper p {
    margin: 0;
    color: #333642;
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
    display: block;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 25px;
}







.choix-produits-v .wrapper a {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: block;
    text-decoration: none;
    position: relative;
}

.choix-produits-v .wrapper a .wrapper-content {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
    transition:all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 60px;
}


.choix-produits-v .wrapper a:hover .wrapper-content {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: 0;
}

.choix-produits-v .wrapper a h2 {
    font-size: 22px;
    font-weight: 200;
    line-height: normal;
    text-align: center;
    position: relative;
    display: block;
    padding-top: 50px;
    padding-bottom: 50px;
}
.choix-produits-v .wrapper a h2 strong {
    font-size: 23px;
    font-weight: 700;
    line-height: normal;
}

.choix-produits-v .wrapper a h2 strong small {
    font-size: 16px;
    font-weight: 600;
}

.choix-produits-v .wrapper a .wrapper-content h2::before {
    content: "";
    display: block;
    position: absolute; 
    z-index: 1;
    top: 0;
    left: 25%;
    border-top: solid 2px #FFF;
    border-left: solid 2px #FFF;
    width: 60px;
    height: 40px;
}


.choix-produits-v .wrapper a .wrapper-content h2::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 25%;
    border-bottom: solid 2px #FFF;
    border-right: solid 2px #FFF;
    width: 60px;
    height: 30px;
}

.choix-produits-v .wrapper a .wrapper-content .link {
    position: absolute;
    right: calc(25% + 70px);
    bottom: -5px;
    font-size: 11px;
    padding: 0;
    font-weight: 300;
}












.services a {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;

}
.services a figure {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.services a h3 {
    display: block;
    font-weight: 300;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 20px;
}
.services a span {
    line-height: 0;
    font-size: 25px;
    font-weight: 700;
    padding:17px 10px;
}


.bann {
    display: block;
    width: 100%;
    
}
.bann .bg-hash {
    display: block;
    width: 100%;
    min-height: 80px;
}
.bann .bg-hash h1 {
    font-size: 31px;
    font-weight: 300;
    line-height: normal;
}
.bann .bg-hash h1 strong {
    font-weight: 700;
}



#gamme .titre-bandeau,
#gamme-choix .titre-bandeau,
.accessoires .titre-bandeau
 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.accessoires .titre-bandeau h1,
#gamme .titre-bandeau h1,
#gamme-choix .titre-bandeau h1 {
    font-size: 35px;
    line-height: normal;
    font-weight: 300;
}
.accessoires .titre-bandeau h1 strong,
#gamme .titre-bandeau h1 strong,
#gamme-choix .titre-bandeau h1 strong {
    font-weight: 700;
}

.accessoires hr {
    height: 1px;
    border: none;
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
    display: block;
}



#gamme aside {
    border-right: solid 1px rgba(25,24,23,0.1);
}

#gamme aside .reset {
    cursor: pointer;
}

#gamme aside h3 {
    font-size: 20px;
    font-weight: 300;
    line-height: normal;
    display: inline-block;
    vertical-align: middle;
}
#gamme aside h3 strong {
    font-weight: 700;
}

#gamme aside .ico-recherche {
    display: inline-block;
    width: 30px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}
#gamme aside .reset {
    display: block;
    text-decoration: underline;
    color:rgb(25,24,23);
    font-size: 11px;
    line-height: normal;
    font-weight: 400;
    margin-bottom: 25px;
}
#gamme aside .reset:hover {
    text-decoration: none;
}

#gamme aside h4 {
    font-size: 15px;
    font-weight: 300;
    line-height: normal;
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    box-sizing: border-box;
}
#gamme aside h4 strong {
    font-weight: 700;
}

#gamme aside .types {
    padding: 0;
    margin: 0;
    text-align: left;
    list-style-type: none;
    display: block;
    margin-bottom: 30px;
}
#gamme aside .types li {
    display: block;
    padding: 5px;
    border-bottom: solid 1px rgba(25,24,23, 0.1);
}
#gamme aside .types li:last-of-type {
    border-bottom: 0;
}

#gamme aside .types li .choix,
#gamme aside .types li label {
    color:rgb(25,24,23);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    display: inline-block;
    cursor: pointer;
}
#gamme aside .types li .choix:hover,
#gamme aside .types li label:hover,
#gamme aside .types li input[type=checkbox]:checked + label {
    font-weight: 700;
}




#gamme aside .types li .plus {
    display: block;
    width: 18px;
    height: 18px;
    background-color: rgb(25,24,23);
    color:#FFF;
    text-decoration: none;
    border-radius: 35px;
    box-sizing: border-box;
    font-weight: 600;
    line-height: 17px;
    font-size: 10px;
    text-align: center;
    float: right;
    margin-top: 3px;
    border:solid 1px rgb(25,24,23);
}
#gamme aside .types li .plus:hover {
    color:rgb(25,24,23);
    background-color: #fff;
}


#gamme aside .familles {
    padding: 0;
    margin: 0;
    text-align: left;
    list-style-type: none;
    display: block;
    margin-bottom: 30px;
}
#gamme aside .familles li {
    display: block;
    padding: 5px 0;
}
#gamme aside .familles li .wrapper {
    color:#FFF;
    font-size: 13px;
    font-weight: 300;
    line-height: normal;
    display: block;
    text-decoration: none;
    box-sizing: border-box;
    padding: 10px;
    border:solid 3px transparent;
    transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

#gamme aside .familles li .wrapper label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
#gamme aside .familles li .wrapper input[type=radio] {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    margin-right: 10px;
}


#gamme aside .familles li .wrapper label strong {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}


#gamme aside .familles li .wrapper label small {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}
/*
#gamme aside .familles li a:hover,
#gamme aside .familles li a.up {
    border:solid 3px rgba(255,255,255,0.7);
    opacity: 1;
}
*/
/*
#gamme aside .familles li:nth-of-type(1) a.down,
#gamme aside .familles li:nth-of-type(2) a.down,
#gamme aside .familles li:nth-of-type(3) a.down
{
    opacity: 0.5;
    background-color: rgba(0, 0, 0, 0.3);
}
*/
/*
#gamme aside .familles li:nth-of-type(1) a,
#gamme aside .familles li:nth-of-type(1) a.down:hover {
    opacity: 1;
    background-color: #a4cceb;
}
#gamme aside .familles li:nth-of-type(2) a,
#gamme aside .familles li:nth-of-type(2) a.down:hover {
    opacity: 1;
    background-color: #4064a9;
}
#gamme aside .familles li:nth-of-type(3) a,
#gamme aside .familles li:nth-of-type(3) a.down:hover {
    opacity: 1;
    background-color: #a9d1bd;
}
*/


#gamme aside .collections {
    padding: 0;
    margin: 0;
    text-align: left;
    list-style-type: none;
    display: block;
    margin-bottom: 30px;
}
#gamme aside .collections li {
    display: block;
    padding: 5px;
    border-bottom: solid 1px rgba(25,24,23, 0.1);
}
#gamme aside .collections li:last-of-type {
    border-bottom: 0;
}

#gamme aside .collections li label {
    color:rgb(25,24,23);
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    display: inline-block;
    cursor: pointer;
}
#gamme aside .collections li label:hover,
#gamme aside .collections li input[type=checkbox]:checked + label {
    font-weight: 700;
}




#gamme .produits {
    margin-left: -15px;
    margin-right: -15px;
}

#gamme .produits .produit {
    padding:15px;
}
#gamme .produits .produit a {
    display: block;
    text-decoration: none;
}
#gamme .produits .produit a .visuel {
    display: block;
    height: 370px;
    margin-bottom: 5px;
    position: relative;
}

#gamme .produits .produit a .visuel .overlay {
    /*background-color: rgba(38,81,156,0.85);*/

    background-color: rgba(51, 54, 66, 0.8);

    opacity: 0;
    transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
#gamme .produits .produit a:hover .visuel .overlay {
    opacity: 1;
}

#gamme .produits .produit a .visuel .overlay span {
    display: inline-block;
    text-align: right;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    color:#FFF;
    position: relative;
}
#gamme .produits .produit a .visuel .overlay span strong {
    font-weight: 700;
}

#gamme .produits .produit a .visuel .overlay span::before {
    content: "";
    display: block;
    position: absolute; 
    z-index: 1;
    top: -60px;
    left: -20px;
    border-top: solid 2px #FFF;
    border-left: solid 2px #FFF;
    width: 60px;
    height: 40px;
    opacity: 0;
    transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
#gamme .produits .produit a:hover .visuel .overlay span::before {
    top: -50px;
    left: -10px;
    opacity: 1;
}



#gamme .produits .produit a .visuel .overlay span::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    bottom: -50px;
    right: -20px;
    border-bottom: solid 2px #FFF;
    border-right: solid 2px #FFF;
    width: 60px;
    height: 30px;
    opacity: 0;
    transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);

}
#gamme .produits .produit a:hover .visuel .overlay span::after {
    bottom: -40px;
    right: -10px;
    opacity: 1;
}



#gamme .produits .produit a h4 {
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 5px;
    padding: 5px;
    box-sizing: border-box;
    display: block;
    text-align: left;
}
#gamme .produits .produit a h4 strong {
    font-weight: 700;
}
#gamme .produits .produit a h5 {
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 10px;
    background-color: #a4cceb;
    color: #FFF;
    padding: 5px;
    box-sizing: border-box;
    display: block;
    text-align: left;
}
#gamme .produits .produit a h5 strong {
    font-weight: 700;
}


.bg-famille-1 {
    background-color: #a4cceb;
}

.f-famille-1 {
    color: #a4cceb;
}

#produit .titre-produit {
    
}

#produit .titre-produit .wrapper-baseline {
    padding:8px 20px;
    transform: skewX(-18deg);
    margin-bottom: 10px;
    min-width: 700px;
}

#produit .titre-produit .wrapper-baseline p {
    margin: 0;
    display: block;
    font-size: 26px;
    letter-spacing: 1px;
    line-height: normal;
    font-weight: 200;
    transform: skewX(18deg);
}

#produit .titre-produit h1 {
    font-size: 40px;
    line-height: normal;
    font-weight: 200;
}
#produit .titre-produit h1 strong {
    font-weight: 700;
}

#produit .titre-produit .slash {
    background-image: url('../media/images/slash-blanc-big.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
}

.accessoires .ariane,
#produit .ariane {
    box-shadow: 0px 3px 4px 0px rgba(0,0,0,0.1);
}

.accessoires .ariane a,
#produit .ariane a {
    color: rgb(25,24,23);
    text-decoration: none;
    display:inline-block;
    vertical-align: middle;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
}

.accessoires .ariane a:hover,
#produit .ariane a:hover {
    text-decoration: underline;
}

.accessoires .ariane .sep,
#produit .ariane .sep {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
}

.accessoires .ariane .libelle,
#produit .ariane .libelle {
    color: rgb(25,24,23);
    text-decoration: none;
    display:inline-block;
    vertical-align: middle;
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
}

.accessoires .ariane .libelle strong,
#produit .ariane .libelle strong {
    font-weight: 700;
}


#produit .visuel {
    margin-bottom: 25px;
}
#produit .visuel figure {
    display: block;
}
#produit .visuel figure img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}
#produit .visuel figure .corner-bottom-right {
    display: block;
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 1;
    width: 100px;
    height: 100px;  
}

#produit .texte .wrapper-lame figure {
    display: block;
    width: 100%;
    height: 430px;
}

#produit .texte .caracteristiques ul {
    display: block;
    padding: 0;
    margin: 0;
}
#produit .texte .caracteristiques ul li {
    display: block;
    padding: 12px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    border-bottom: solid 1px rgba(255,255,255,0.8);
}

#produit .texte .caracteristiques ul li strong {
    font-weight: 600;
}

#produit .texte .tools .download {
    box-sizing: border-box;
    padding: 25px;
    text-align: right;
    color: #FFF;
    display: block;
    text-decoration: none;
    margin-bottom: 50px;
    border:solid 1px transparent;
}


#produit .texte .tools .download:hover {
    background-image: none;
    border:solid 1px #FFF;
}

#produit .texte .tools .download span {
    font-weight: 400;
    line-height: normal;
    font-size: 15px;
    display: inline-block;
    vertical-align: middle;
}

#produit .texte .tools .download span strong {
    font-weight: 700;
}
#produit .texte .tools .download .ico {
    display: inline-block;
    vertical-align: middle;
    width: 45px;
    margin-left: 12px;
    margin-top: 25px;
}

#produit .classements figure {
    height: 60px;
    width: auto;
}
#produit .classements figure img {
    display:block;
    width: auto;
    height: 100%;
}
#produit .classements figure figcaption {
    color: #FFF;
    font-size: 11px;
    font-weight: 700;
    display: block;
    position: absolute;
    right: 21%;
    bottom: 12%;
}


#produit .cov-txt p {
    font-size: 10px;
    line-height: normal;
    margin:0;
}
#produit .usage p {
    font-size: 12px;
    line-height: normal;
    margin:0;
}



.content .corner-top-left {
    display: block;
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: 1;
    width: 120px;
    height: 120px;  
}
.content .corner-bottom-right {
    display: block;
    position: absolute;
    bottom: -15px;
    right: -15px;
    z-index: 1;
    width: 120px;
    height: 120px;  
}

.content figure img {
    z-index: 2;
    position: relative;
}

.content h2 {
    font-size: 20px;
    font-weight: 400;
}
.content h2 strong {
    font-weight: 700;
    color:#26519c;
}

.content .wrapper-logo {
    height: 0;
    overflow: visible;
    width: 100%;
    z-index: 3;
    position: relative;
}

.citation h3 {
    font-size: 25px;
    font-weight: 300;
    line-height: normal;
    position: relative;
    display: inline-block;
}
.citation p {
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
}

.citation h3::before {
    content: "";
    display: block;
    position: absolute; 
    z-index: 1;
    top: -40px;
    left: -40px;
    border-top: solid 2px #FFF;
    border-left: solid 2px #FFF;
    width: 60px;
    height: 40px;
}


.citation h3::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    bottom: -20px;
    right: -40px;
    border-bottom: solid 2px #FFF;
    border-right: solid 2px #FFF;
    width: 60px;
    height: 30px;
}


#produits .menu-produits {
    display: block;
    position: relative;
    z-index: 1;
    visibility: visible;
    opacity: 1;
    background-image: none;
    top:0;
    border-top:0;
}


#presentation .wrapper a {
    display: block;
    text-decoration: none;
}

#presentation .wrapper a h3 {
    font-size: 20px;
    font-weight: 300;
}
#presentation .wrapper a h3 strong {
    font-weight: 700;
    font-size: 23px;
}


#presentation .wrapper a figure {
    margin-bottom: 30px;
}

#presentation .wrapper a figure span {
    left: 0;
    top: 0;
    transition:all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

#presentation .wrapper a:hover figure span {
    left: -10px;
    top: -10px;
}


.classic .content hr {
    height: 1px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.classic .content h2 {
    text-align: left;
    line-height: 28px;
}

.others h3 {
    font-size:30px;
    line-height: normal;
    display: block;
    font-weight: 300;
    margin-bottom: 20px;

}

.others .link {
    margin-left: 5px;
    margin-right: 5px;
}

.classic .icos img {
    display:inline-block;
    width: auto;
    height: 70px;
    margin-right: 7px;
}


#documentation h2 {
    font-size: 30px;
    font-weight: 300;
}

#documentation .wrapper-bib .grid,
#documentation .wrapper-bib .details {
    padding: 0;
    margin:0;
}

#documentation .wrapper-bib .grid li {
    display: inline-block;
    width: 25%;
    vertical-align: top;
    box-sizing: border-box;
    padding: 15px;
}

#documentation .wrapper-bib .grid li a {
    display: block;
    text-decoration: none;
    color: #333642;
    border:solid 1px rgba(0, 0, 0, 0.1);
}
#documentation .wrapper-bib .grid li a:hover {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}


#documentation .wrapper-bib .grid.catalogue li {
    width: 30%;
}

#documentation .wrapper-bib .grid.catalogue li a {
    display: block;
    text-decoration: none;
    border:none;
    padding: 20px;
}
#documentation .wrapper-bib .grid.catalogue li a:hover {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}



#documentation .wrapper-bib .grid li a p {
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}

#documentation .wrapper-bib .details li {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    font-size: 12px;
}

#documentation .wrapper-bib .details li a {
    display: inline-block;
    background-color: rgb(51, 54, 66);
    color: #FFF;
    text-decoration: none;
    font-size: 9px;
    padding: 5px 10px;
    box-sizing: border-box;
    font-weight: 600;
    margin-right: 5px;
    line-height: normal;
}
#documentation .wrapper-bib .details li a:hover {

}

#documentation .wrapper-bib .details li .ext {
    display: inline-block;
    margin-right: 5px;
    padding: 5px 10px;
    font-size: 9px;
    background-color: rgba(51, 54, 66, 0.1);
    color: rgb(51, 54, 66);
    line-height: normal;
}

#documentation .wrapper-bib .details li p {
    display: inline-block;
    padding: 0;
    margin: 0;
}

#guide-pose .content h3,
#choisir-lvt-spv .content h3 {
    background-color: rgba(1,70,153);
    color: #FFF;
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    display: block;
    padding: 10px;
    box-sizing: border-box;
    margin-top: 40px;
}

#guide-pose .content h3:first-child,
#choisir-lvt-spc .content h3:first-child {
    margin-top: 0;
}

#guide-pose .content ul {
    padding: 0;
    list-style-position: inside;
}

#guide-pose .content ul li {
    margin-bottom: 10px;
    list-style-type: square;
}


#guide-pose #documentation h2 {
    text-align: center;
}


#guide-pose #documentation .details.small li {
    width: 50%;
    text-align: left;
}

#guide-pose #documentation .details li .ico {
    display: none;
}

#avantages-gamme ol {
    list-style-type: none;
    counter-reset: li;
    padding: 0;
    margin: 0;
}

#avantages-gamme ol li {
    counter-increment: li;
    margin: 0;
    margin-bottom: 10px;
}

#avantages-gamme ol li::before{
    content: counter(li);    
    background-color: #8c8d8f;
    color: #FFF;
    font-size: 11px;
    font-weight: 700;
    line-height: normal;
    display: inline-block;
    border-radius: 20px;
    padding: 5px;
    width: 12px;
    height: 12px;
    text-align: center;
    margin-right: 10px;
}

#avantages-gamme ol li strong {
    color: #26519c;
}


#avantages-gamme table {
    border-collapse: separate;
    border-spacing: 1px;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}

#avantages-gamme table tr td,
#avantages-gamme table tr th {
    padding: 7px;
    background-color: rgba(0,0,0,0.1);
}

#avantages-gamme table tr td .bulle {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 5px;
    background-color: rgba(0,0,0,0.6);
    border-radius: 20px;
}

#avantages-gamme table tr td:first-child,
#avantages-gamme table tr th:first-child {
    background-color:#26519c;
    color: #FFF;
    text-align: left;
    font-weight: 700;
}

#avantages-gamme table tr:nth-of-type(1) th {
    background-color: rgba(0,0,0,0.7) !important;
    color: #FFF;
}

#avantages-gamme table tr:nth-of-type(1) th:last-of-type,
#avantages-gamme table tr:nth-of-type(1) th:first-of-type {
    background-color: #26519c !important;
}

#avantages-gamme table tr td:last-of-type {
    background-color: rgba(38, 81, 156, 0.2);
}


#avantages-gamme table tr td:last-of-type .bulle {
    background-color: #26519c;
}

/*
.classic .content figure img {
    z-index: 1;
}
*/
.classic .content figure figcaption {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: #FFF;
    box-sizing: border-box;
    padding: 10px;
}

#choisir-couleur .photos figure {
    margin-bottom: 25px;
}
#choisir-couleur .photos figure img {
    z-index: 1;
    position: relative;
}

#choisir-lvt-spv table {
    border-collapse: separate;
    border-spacing: 2px;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 100px;
}

#choisir-lvt-spv table tr th,
#choisir-lvt-spv table tr td {
    padding: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

#choisir-lvt-spv table tr td:nth-of-type(1),
#choisir-lvt-spv table tr th {
    background-color: #555;
    color: #FFF;
}

#choisir-lvt-spv table tr td:nth-of-type(1) {
    text-align: left;
}


#choisir-lvt-spv table tr th,
#choisir-lvt-spv table tr:nth-of-type(2) td {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

#choisir-lvt-spv table.gp tr td:nth-of-type(2) {
    background-color: #a4cceb;
    color: #FFF;
}
#choisir-lvt-spv table.gp tr td:nth-of-type(3) {
    background-color: #4064a9;
    color: #FFF;
}
#choisir-lvt-spv table.gp tr td:nth-of-type(4) {
    background-color: #a9d1bd;
    color: #FFF;
}

#choisir-lvt-spv table.pro tr td:nth-of-type(2) {
    background-color: #f9dc45;
    color: #FFF;
}
#choisir-lvt-spv table.pro tr td:nth-of-type(3) {
    background-color: #e19449;
    color: #FFF;
}
#choisir-lvt-spv table.pro tr td:nth-of-type(4) {
    background-color: #a8acad;
    color: #FFF;
}
#choisir-lvt-spv table.pro tr td:nth-of-type(5) {
    background-color: #3e474e;
    color: #FFF;
}



#contact .coordonnees h2 {
    font-size: 18px;
    font-weight: 700;
}
#contact .coordonnees h3 {
    font-size: 15px;
    font-weight: 300;
}
#contact .coordonnees h4 {
    font-size: 14px;
    font-weight: 300;
}
#contact .coordonnees h4 strong {
    font-size: 18px;
    font-weight: 700;
}

#contact .coordonnees p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}
#contact .coordonnees p .link {
    padding: 8px 15px;
    margin-top: 5px;
}

#contact .coordonnees hr {
    margin-top: 15px;
    margin-bottom: 15px;
}


#application .grid .item:last-of-type {
    width: 100%;
    height: 750px;
}


#application .grid .item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
#application .grid .item a figure {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

#application .grid .item a figure img {
    display: none;
}

#application .grid .item a .overlay {
    z-index: 2;
    width: 0;
    opacity: 0;
    transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
    
    transition-delay: 400ms;
}
#application .grid .item a:hover .overlay {
    width: 100%;
    opacity: 1;
    transition-delay: 0ms;
}

#application .grid .item a .overlay span {
    font-size: 12px;
    font-weight: 300;
    line-height: 30px;    
    opacity: 0;
    transition: all 600ms linear;
    transition-delay: 0;
    text-align: center;
}
#application .grid .item a .overlay span small {
    font-size: 12px;
    font-weight: 300;
    text-align: center;
}


#application .grid .item a .overlay span strong {
    font-weight: 600;
    font-size: 20px;
}

#application .grid .item a:hover .overlay span {
    opacity: 1;
    transition-delay: 400ms;
}


#application .grid .item a .overlay .legende {
    display: block;
    padding: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    text-align: left;
    box-sizing: border-box;
    opacity: 0;
    transition: all 600ms linear;
    transition-delay: 0;
}
#application .grid .item a .overlay .legende p {
    margin: 0;
    font-size: 11px;
    font-weight: 500;
    line-height: normal;
    margin-top: 5px;
}

#application .grid .item a .overlay .legende p strong {
    font-weight: 700;
}


#application .grid .item a:hover .overlay .legende {
    opacity: 1;
    transition-delay: 600ms;
}


#application .grid .col-33-l {
    height: 350px;
}
#application .grid .col-50-l {
    height: 470px;
}
#application .grid .col-100-l {
    height: 750px;
}

.arrow-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    display: block;
    width: 32px;
    height: 32px;
    z-index:  9999;
    background-image: url('../media/images/up.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0;
    transition: opacity 400ms ease-in-out;
}
.arrow-top.up {
    opacity: 0.8;
}

.col-content-2 {
    column-count: 2;
    column-gap: 50px;
    column-width: 50%;
    box-sizing: border-box;
    vertical-align: top;
    column-fill: balance;
}

.col-content-2 h2 {
    column-span: all;
    vertical-align: top;
    margin-bottom: 25px;
}

.col-content-2 p {
    display: inline-block;
}


#marquee {
    display: flex;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
    text-decoration: none;
    color: #FFF;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

#marquee .marquee {
    animation: marquee 30s linear infinite;
    min-width: 100vw;

}


#marquee .marquee a {
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    display: block;
    color: #FFF;
    text-decoration: none;
}

/*
#marquee p {
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    animation: marquee 30s linear infinite;
    display: block;
    width: 1400px;
}

*/

#marquee .hiddenbloc {
    display: none;
}

@-moz-keyframes marquee {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}
@-webkit-keyframes marquee {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}
@keyframes marquee {
0% { 
-moz-transform: translateX(100%);
-webkit-transform: translateX(100%);
transform: translateX(100%) }
100% { 
-moz-transform: translateX(-100%);
-webkit-transform: translateX(-100%);
transform: translateX(-100%); }
}

#documentation .video {
    display: block;
    width: 100%;
    
}

#vr .flex-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0px;
    flex-wrap: wrap;
    box-sizing: border-box;
}

#vr .flex-grid .item {
    box-sizing: border-box;
    display: block;
    padding: 30px 20px;
}

#vr .flex-grid .item a {
    box-sizing: border-box;
    display: block;
    color: rgb(22,22,22);
    text-decoration: none;
}
#vr .flex-grid .item figure {
    box-sizing: border-box;
    display: block;
    height: 300px;
    margin-bottom: 15px;
}

#vr .flex-grid .item a .legende {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

#vr .flex-grid .item a .legende .libelle {
    display: block;
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
    text-transform: uppercase;
    flex-grow: 1;
    flex-shrink: 1;
}

#vr .flex-grid .item a .legende .link {
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
    width: auto;
}

#vr .flex-grid .item a:hover .legende .link {
    background-color: rgb(22,22,22);
    color: #FFF;
}




.wrapper-form form .success {
    background-color:rgb(152, 215, 35);
    padding: 30px;
    box-sizing: border-box;
    border-radius: 4px;
    text-align: center;
}

.wrapper-form form .success p {
    padding: 0;
    text-align: center;
    display: block;
    flex: none;
    color: #FFF;
}

.wrapper-form form .success p .link {
    padding: 10px 20px;
    border: none;
}

.wrapper-form form p {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin: 10px 0;
    column-gap: 10px;
}

.wrapper-form form p input[type=text] {
    outline: none;
}



.grecaptcha-badge {
    display: none;
}


.wrapper-trace {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    box-sizing: border-box;
    z-index: 9999;
    width: calc(100% - 40px);
    height: 0;
    overflow: visible;
}
.wrapper-trace .trace {
    background-color: dodgerblue ;
    color: #FFF;
    animation-name: fadeinfadeout;
    animation-fill-mode:both;
    animation-duration:7s;  
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    font-size: 14px;
    box-sizing: border-box;
    padding: 7px 15px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.wrapper-trace .trace.alert {
    background-color: orangered;
    color: #FFF;
}
.wrapper-trace .trace.success {
    background-color: yellowgreen;
    color: #FFF;
}

@keyframes fadeinfadeout {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    10% {
        opacity: 1;
        visibility: visible;
        height: auto;
        margin-bottom: 10px;
        padding: 7px 15px;
    }
    90% {
        opacity: 1;
        visibility: visible;
        height: auto;
        margin-bottom: 10px;
        padding: 7px 15px;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        height: 0;
        margin-bottom: 0;
        padding: 0;
    }
}
