/*
Theme Name: VSF
Theme URI: https://www.parebrisevsf.com/
Author: Benoist Lawniczak
Author URI: https://www.webadelic.fr
Description: Thème créé pour VSF
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: vsf

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

VSF is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

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

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

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

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

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
html {
	font-size: 12.5px;
}

@media (min-width:500px){
	html {
		font-size: 16px;
		font-size: calc(1.0875em + 0.25 * (100vw - 80em) / 40);
		font-size: -webkit-calc(108.75% + 0.25 * (100vw - 8000%) / 40);
	}
}

@media (min-width: 1025px) {
	html {
		font-size: 16px;
	}
}

body,
button,
input,
select,
textarea {
	color: #4a4a4a;
	font-family: 'Roboto Slab', serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
/*	clear: both;*/
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	background-color: #F3F4F5;
}

.site {
	height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.site-header,
.site-footer {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.site-content {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.site {
		height: auto;
		display: block;
	}
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

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

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
/*	color: royalblue;*/
}

a:visited {
	
}

a:hover,
a:focus,
a:active {
/*	color: midnightblue;*/
}

a:focus {
	outline: thin dotted;
}

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

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/

.site-header {
	position: absolute;
	z-index: 1000;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding-top: 2.5rem;
	color: #fff;
}

.site-title {
	width: 43.333%;
	max-width: 208px;
	margin: 0;
}

.site-title a {
	display: inline-block;
	width: 100%;
	padding-top: calc(37.98% + .625rem);
	background-image: url(img/logo-vsf.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
	border: 0;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
}

.site-description {
	font-size: 1.25rem;
	margin-top: .625rem;
	line-height: 1;
}

@media (min-width:500px){
	.site-description: 1.42rem;
}

.language-switcher-menu {
	position: absolute;
	top: 1rem;
	right: 2.5rem;
	font-family: "Roboto Condensed", sans-serif;
	font-size: .8125rem;
	line-height: 1;
	min-width: 5rem;
}

.language-switcher-toggle {
	width: 100%;
	margin: 0;
	padding: 0 0 .5rem;
	background-color: transparent;
	font-family: "Roboto Condensed", sans-serif;
	font-size: .8125rem;
	text-align: right;
	color: #fff;
	border: 0;
}

.language-switcher-toggle:focus {
	outline: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
}

.language-switcher-toggle:after {
	content:'∨';
	display: inline-block;
	margin-left: .5rem;
	-webkit-transform: scaleY(.5);
	-ms-transform: scaleY(.5);
	transform: scaleY(.5);
}

.language-switcher-toggle.toggled:after {
	content:'∧';
}

.language-switcher ul {
	display: none;
	list-style: none;
	padding: .5rem 1rem;
	margin: 0;
	background-color: #fff;
	text-align: center;
}

.language-switcher.toggled ul {
	display: block;
}

.language-switcher a {
	display: block;
	color: #4a4a4a;
	text-decoration: none;
	line-height: 1.5;
}


a.customer-area-link {
	position: absolute;
	top: 2.5rem;
	right: 2.5rem;
	padding-left: 2rem;
	padding-right: 2rem;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: .8125rem;
	line-height: 2.3;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	background-color: #269be3;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsl(203, 77%, 52%)), color-stop(70%, hsl(203, 77%, 52%)), to(hsl(223, 77%, 52%)));
	background-image: linear-gradient(to bottom, hsl(203, 77%, 52%) 0%, hsl(203, 77%, 52%) 70%, hsl(223, 77%, 52%) 100%);
	background-size: 100% 200%;
	background-position: top center;
	border-radius: 5px;
	-webkit-transition: background-position .3s linear;
	transition: background-position .3s linear;
}

a.customer-area-link:hover,
a.customer-area-link:focus {
	background-position: bottom center;
}

@media (min-width: 1025px) {
	
	.site-branding {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	
	.site-description {
		margin-left: 8.125rem;
	}
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.menu-toggle {
	position: absolute;
	z-index: 100;
	top: 6rem;
	right: 2.5rem;
	width: 30px;
	height: 3px;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	background-color: #fff;
	border-radius: 20%;
	border: 0 solid transparent;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.menu-toggle:focus, .menu-toggle:active {
	outline: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
}

.menu-toggle:before, .menu-toggle:after {
	content: '';
	position: absolute;
	top: -8px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #fff;
	border-radius: 20%;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
}

.menu-toggle:after {
	top: 8px;
}

.toggled .menu-toggle {
	-webkit-animation: burgerAnim .5s .4s forwards;
	animation: burgerAnim .5s .4s forwards;
}

.toggled .menu-toggle:before {
	-webkit-animation: burgerAnimBefore .5s .75s forwards;
	animation: burgerAnimBefore .5s .75s forwards;
}

.toggled .menu-toggle:after {
	-webkit-animation: burgerAnimAfter .5s .75s forwards;
	animation: burgerAnimAfter .5s .75s forwards;
}

.closed .menu-toggle {
	-webkit-animation: burgerAnim .5s both reverse;
	animation: burgerAnim .5s both reverse;
}

.closed .menu-toggle:before {
	-webkit-animation: burgerAnimBefore .25s both reverse;
	animation: burgerAnimBefore .25s both reverse;
}

.closed .menu-toggle:after {
	-webkit-animation: burgerAnimAfter .25s both reverse;
	animation: burgerAnimAfter .25s both reverse;
}

@-webkit-keyframes burgerAnim {
	50% {
		-webkit-transform: translate3d(0,-3.5rem,0);
		transform: translate3d(0,-3.5rem,0);
		background-color: #fff;
	}

	100% {
		-webkit-transform: translate3d(0,-3.5rem,0);
		transform: translate3d(0,-3.5rem,0);
		background-color: transparent;
	}
}

@keyframes burgerAnim {
	50% {
		-webkit-transform: translate3d(0,-3.5rem,0);
		transform: translate3d(0,-3.5rem,0);
		background-color: #fff;
	}

	100% {
		-webkit-transform: translate3d(0,-3.5rem,0);
		transform: translate3d(0,-3.5rem,0);
		background-color: transparent;
	}
}

@-webkit-keyframes burgerAnimBefore {
	to {
		-webkit-transform: translate3d(0,-2.5px,0) rotate(45deg);
		transform: translate3d(0,-2.5px,0) rotate(45deg);
	}
}

@keyframes burgerAnimBefore {
	to {
		-webkit-transform: translate3d(0,-2.5px,0) rotate(45deg);
		transform: translate3d(0,-2.5px,0) rotate(45deg);
	}
}

@-webkit-keyframes burgerAnimAfter {
	to {
		-webkit-transform: translate3d(0,2.5px,0) rotate(-45deg);
		transform: translate3d(0,2.5px,0) rotate(-45deg);
	}
}

@keyframes burgerAnimAfter {
	to {
		-webkit-transform: translate3d(0,2.5px,0) rotate(-45deg);
		transform: translate3d(0,2.5px,0) rotate(-45deg);
	}
}

.main-navigation.toggled .menu{
	-webkit-animation: deploy 1s -.5s both ease-in-out;
	animation: deploy 1s -.5s both ease-in-out;
}

.main-navigation.closed .menu{
	-webkit-animation: deploy .5s .35s both reverse ease-in-out;
	animation: deploy .5s .35s both reverse ease-in-out;
}

@-webkit-keyframes deploy {
	100% {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}
}

@keyframes deploy {
	100% {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}
}

@media (max-width: 1025px){
	.main-navigation .menu {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		padding: 4rem 0 0;
		background-color: #192a53;
		-webkit-transform: translate3d(0,-100%,0);
		transform: translate3d(0,-200%,0);
		will-change: transform;
	}

	.main-navigation ul ul a {
		padding-left: 2rem;
		border-bottom: 1px solid #4a4a4a
	}
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation a {
	display: block;
	padding: .75rem 1rem;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1rem;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
}

.main-navigation ul ul {
	background-color: #fff;
}

.main-navigation ul ul ul {
}

.main-navigation ul ul a {
	color: #4a4a4a;
}

.main-navigation ul ul li {
}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {

}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {

}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 1025px) {
	.menu-toggle {
		display: none;
	}
	
	.main-navigation ul.menu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-top: -2.6875rem;
		margin-left: 21.25rem;
		overflow: visible;
	}
	
	.main-navigation ul.menu > li {
		position: relative;
	}
	
	.main-navigation ul ul {
		position: absolute;
		top: 100%;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		padding: 0 .5rem;
		max-height: 0;
		overflow: hidden;
		-webkit-transition: .4s;
		transition: .4s;
	}
	
	.main-navigation ul li:hover ul,
	.main-navigation ul li:focus ul {
		padding: .5rem;
		max-height: 20rem;
		-webkit-transition: .4s;
		transition: .4s;
	}
	
	.main-navigation a {
		position: relative;
		font-size: .9375rem;
		padding: .6875rem 0;
		line-height: 1;
		white-space: nowrap;
	}
	
	.main-navigation .menu > li > a:after {
		content: '';
		position: absolute;
		left: 50%;
		right: 50%;
		bottom: 0;
		width: 0;
		height: .3125rem;
		background-color: #58D2F4;
		-webkit-transition: .2s;
		transition: .2s;
	}
	
	.main-navigation .menu > li:hover > a:after,
	.main-navigation .menu > .current_page_item > a:after,
	.main-navigation .menu > .current-menu-item > a:after,
	.main-navigation .menu > .current-page-ancestor > a:after,
	.main-navigation .menu > .current-menu-ancestor > a:after {
		width: auto;
		left: calc(50% - (1.625rem / 2));
		right: calc(50% - (1.625rem / 2));
	}
	
	.main-navigation ul ul a {
		padding: .625rem .75rem .625rem 2rem;
		background-image: url(img/fleche-droite.svg);
		background-repeat: no-repeat;
		background-size: 1.125rem 1.25rem;
		background-position: 0.375rem 0.5rem;
		-webkit-transition: background-color .3s linear;
		transition: background-color .3s linear;
	}
	
	.main-navigation ul ul .current_page_item a,
	.main-navigation ul ul a:hover {
		background-color: #EBEDEE;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 2rem 0;
	color: #fff;
	text-align: center;
	font-family: 'Libre Franklin', sans-serif;
}

.site-footer:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 2.5rem;
	height: 5px;
	background-color: #2499E3;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.site-footer h3 {
	margin-top: 0;
	font-size: 1.125rem;
}

.site-footer h4 {
	font-size: .9375rem;
	margin: 0;
}

.site-footer p {
	font-size: .9375rem;
	margin-top: 0;
}

@media (min-width: 1025px) {
	.contact-widget-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	
	.contact-widget-part {
		-ms-flex-preferred-size: calc((100% - 2.25rem) / 3);
		flex-basis: calc((100% - 2.25rem) / 3);
		margin-bottom: 1rem;
	}
	
	.contact-widget-part:nth-child(2) {
		margin-left: 1.125rem;
		margin-right: 1.125rem;
	}
}

.social-widget, .social-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.social-widget {
	margin-bottom: 2rem;
}

.social-widget h3 {
	margin: 0 1em;
}

.social-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.social-menu li {
	line-height: 1;
}

.social-menu a {
	color: #fff;
	text-decoration: none;
	font-size: 2rem;
}

.social-menu a i._mi {
	font-size: 1em;
	margin: 0 .25em;
}

.social-menu a span {
	display: none;
}

.footer-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu a {
	color: #fff;
	text-decoration: none;
	font-size: .9375rem;
}


.footer-menu li:not(:last-child) a:after{
	content: ' • ';
	margin-right: .25em;
}



/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
.hero {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-color: #1e59a6;
}

.home-slider-img {
	height: 94vh !important;
	max-height: 600px;
	background-color: #1e59a6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.hero-content {
	position: relative;
	z-index: 200;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 94vh !important;
	max-height: 600px;
	padding-top: 80px;
	color: #fff;
}

.hero-content h1 {
	font-size: 2.5rem;
	line-height: 1.075;
	margin-top: 0;
	margin-bottom: .575em;
	max-width: 32.5rem;
}

.hero-content p {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.45;
	max-width: 20.625rem;
}

.accroche-groupe {
	background-color: #017ECC;
	padding-bottom: 1px;
}

.accroche {
	position: relative;
	z-index: 200;
	background-color: rgba(255,255,255,0.25);
	margin-top: -5px;
	margin-bottom: 3.5625rem;
	text-align: center;
	color: #fff;
	border-top-width: 5px;
	border-top-style: solid;
	padding-bottom: 1.75rem;
	padding-left: 1rem;
	padding-right: 1rem;
}

.ecoute {
	border-top-color: #9CD43B;
}

.stock {
	border-top-color: #F246B7;
}

.reactivite {
	border-top-color: #5BD0DA;
}

.accroche * {
	max-width: 100%;
}

.accroche img {
	display: block;
	margin: -2rem auto 0;
	width: 3.75rem;
	height: auto;
}

.accroche h2 {
	font-weight: 300;
}

.accroche .btn {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: .8125rem;
	text-transform: uppercase;
	text-decoration: none;
	color: #2499E3;
	background-color: #fff;
	border-radius: 5px;
	padding: .375rem 2rem;
}

@media (min-width: 1025px) {
	.accroche-groupe .container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	
	.accroche {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-preferred-size: calc((100% - 2.25rem) / 3);
		flex-basis: calc((100% - 2.25rem) / 3);
		margin-bottom: 1.375rem;
	}
	
	.accroche a {
		margin-top: auto;
	}
	
	.stock {
		margin-left: 1.125rem;
		margin-right: 1.125rem;
	}
}

.featured-post {
	position: relative;
	padding-top: 1rem;
	padding-bottom: 2rem;
}

.featured-post:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 2.5rem;
	height: 5px;
	background-color: #034E7D;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.featured-post h2 {
	margin-top: 0;
	font-family: "Roboto Condensed", sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 1.25rem;
	letter-spacing: .3125rem;
	text-align: center;
	color: #017ECC;
}

article.featured {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding: 1.875rem 2.125rem;
	background-color: #fff;
	-webkit-box-shadow: 0 0 3px 0 rgba(159,154,154,0.5);
	box-shadow: 0 0 3px 0 rgba(159,154,154,0.5);
}

article.featured h3 {
	font-weight: normal;
	font-size: 1.875rem;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 1.375rem;
}

article.featured h3 a {
	text-decoration: none;
	color: #017ECC;
}

article.featured p {
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 1.875rem;
}

article.featured .btn {
	display: inline-block;
	margin-bottom: 1.125rem;
	padding-left: 2rem;
	padding-right: 2rem;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: .8125rem;
	line-height: 2.3;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	background-color: #269be3;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsl(203, 77%, 52%)), color-stop(70%, hsl(203, 77%, 52%)), to(hsl(223, 77%, 52%)));
	background-image: linear-gradient(to bottom, hsl(203, 77%, 52%) 0%, hsl(203, 77%, 52%) 70%, hsl(223, 77%, 52%) 100%);
	background-size: 100% 200%;
	background-position: top center;
	border-radius: 5px;
	-webkit-transition: background-position .3s linear;
	transition: background-position .3s linear;
}

article.featured .btn:hover,
article.featured .btn:focus {
	background-position: bottom center;
}

article.featured img {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
}

@media (min-width: 1025px) {
	article.featured {
		display: block;
		margin-right: 11.125rem;
	}
	
	article.featured img {
		float: right;
		margin-right: -9.75rem;
		margin-left: 1rem;
	}
}

.home-videos {
	position: relative;
	padding-top: 1rem;
	padding-bottom: 2rem;
	background-color: #017ECC;
}

.home-videos:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 2.5rem;
	height: 5px;
	background-color: #fff;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.home-videos h2 {
	margin-top: 0;
	font-family: "Roboto Condensed", sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 1.25rem;
	letter-spacing: .3125rem;
	text-align: center;
	color: #fff;
}

.video-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}


@media (min-width: 600px) {
	.video {
		-ms-flex-preferred-size: calc(50% - .5625rem);
		flex-basis: calc(50% - .5625rem);
	}
	
	.video:nth-child(2) {
		margin-left: 1.125rem;
	}
}

@media (min-width: 1025px) {
	.video-container {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	
	.video {
		-ms-flex-preferred-size: calc((100% - 2.25rem) / 3);
		flex-basis: calc((100% - 2.25rem) / 3);
	}
	
	.video:nth-child(2) {
		margin-left: 0;
	}
}

.video a {
	position: relative;
	display: block;
	-webkit-box-shadow: 0 0 3px 0 rgba(0,0,0,0.5);
	box-shadow: 0 0 3px 0 rgba(0,0,0,0.5);
}

.video img {
	display: block;
	max-width: 100%;
	height: auto;
}

.video a:before {
	content: '';
	position: absolute;
	bottom: 9.4%;
	left: 5%;
	width: 12.5%;
	height: 19.6%;
	background-image: url(img/video.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	-webkit-transform-origin: bottom left;
	-ms-transform-origin: bottom left;
	transform-origin: bottom left;
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
}

.video a:hover:before {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.video p {
	color: #fff;
	margin-bottom: 2.125rem;
}

/*--------------------------------------------------------------
# Page
--------------------------------------------------------------*/

.banner {
	height: 11rem;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
@media (min-width: 400px) and (max-width: 1024px) {
	.banner {
		height: 13rem;
	}
}

.entry-header {
	position: relative;
	padding-top: 1rem;
}

.breadcrumbs, .breadcrumbs a {
	text-decoration: none;
	color: #017ECC;
	line-height: 1;
	margin: 0;
}

.entry-title {
	margin: 1.5rem 0 2.25rem;
	text-align: center;
	font-size: 3.25rem;
	font-weight: normal;
	line-height: 1;
	color: #017ECC;
}

.intro {
	background-color: #fff;
	-webkit-box-shadow: 0 0 3px 0 rgba(159,154,154,0.5);
	box-shadow: 0 0 3px 0 rgba(159,154,154,0.5);
}

@media (max-width: 768px) {
	.intro .container {
		padding: 0;
	}
	
	.intro-content {
		padding: 6.25rem 2.5rem 5.5rem;
	}
	
	.intro-content :last-child {
		margin-bottom: 0;
	}
}

@media (min-width: 769px) {
	.intro .container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.intro .container > div {
		width: 50%;
		-webkit-box-flex: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}
	
	.intro-content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		padding-right: 6.4rem;
	}
}

.intro-content p {
	font-size: 1.25rem;
	font-weight: bold;
}

.intro-picture img {
	display: block;
	max-width: 100%;
	height: auto;
}

.intro-slider {
	min-width: 0;
	min-height: 0;
}

.slick-slide img {
	margin: 0 auto;
}

.intro-slider .slick-dots {
	position: absolute;
	top: calc(100% + 1rem);
	right: 50%;
	padding: 0;
	margin: 0;
	list-style: none;
	-webkit-transform: translateX(50%);
	-ms-transform: translateX(50%);
	transform: translateX(50%);
}

@media (min-width: 769px) {
	.intro-slider .slick-dots {
		right: 0;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.intro-slider .slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 .5rem;
	width: 1rem;
	height: 1rem;
	background-color: #D5D4D6;
	-webkit-box-shadow: inset 0 0 0 .1875rem #fff;
	box-shadow: inset 0 0 0 .1875rem #fff;
	border-radius: 50%;
	-webkit-transition: .3s;
	transition: .3s;
}

.intro-slider .slick-dots li.slick-active {
	background-color: #2499E3;
}

.intro-slider .slick-dots li button {
	position: absolute;
	top: 0;
	left: 0;
	width: 1rem;
	height: 1rem;
	margin: 0;
	padding: 0;
	border: 0;
	background-color: transparent;
	color: transparent;
	font: 0/0 a;
}

.main-content {
	padding-top: 3.75rem;
	padding-bottom: 1.5rem;
}

@media (min-width: 603px) {
	.main-content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.main-content .entry-content {
	-ms-flex-preferred-size: 55%;
	flex-basis: 55%;
	margin: 0;
}

.main-content .entry-content.no-sidebar {
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	margin: 0;
}

.main-content .entry-content :first-child {
	margin-top: 0;
}

@media (min-width: 603px) {
	.main-content .entry-content :last-child {
		margin-bottom: 0;
	}
}

.main-content .entry-side {
	-ms-flex-preferred-size: calc(100% / 3);
	flex-basis: calc(100% / 3);
}

.side-attachment {
	margin-bottom: 2rem;
	padding: 1rem;
	background-color: #fff;
	-webkit-box-shadow: 0 0 3px 0 rgba(159,154,154,0.5);
	box-shadow: 0 0 3px 0 rgba(159,154,154,0.5);
}

.side-attachment h3 {
	position: relative;
	margin-top: 0;
	margin-bottom: 1rem;
	padding-bottom: 1.5rem;
	font-size: 1.5rem;
	font-weight: normal;
	color: #017ECC;	
}

.side-attachment h3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2.5rem;
	height: 5px;
	background-color: #2499E3;
}

.side-attachment p {
	margin-top: 0;
	margin-bottom: .75rem;
}

.side-attachment a {
	position: relative;
	display: inline-block;
	padding-right: 3rem;
	text-decoration: none;
	color: #4a4a4a;
}

.side-attachment a:after {
	content:'';
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 1.625rem;
	height: 1.625rem;
	background-image: url(img/more.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.side-video a {
	position: relative;
	display: block;
}

.side-video img {
	display: block;
	max-width: 100%;
	height: auto;
}

.side-video a:before {
	content: '';
	position: absolute;
	bottom: 9.4%;
	left: 5%;
	width: 12.5%;
	height: 19.6%;
	background-image: url(img/video.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	-webkit-transform-origin: bottom left;
	-ms-transform-origin: bottom left;
	transform-origin: bottom left;
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
}

.side-video a:hover:before {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.side-video p {
	color: #2499E3;
}

/*--------------------------------------------------------------
# subPageList
--------------------------------------------------------------*/
.subPageList .entry-header {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding-top: 10rem;
}

.subPageList .entry-title {
	position: relative;
	margin: 1.625rem 0 2rem;
	padding-bottom: 2.25rem;
	font-weight: bold;
	color: #fff;
}

.subPageList .entry-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 2.5rem;
	height: 5px;
	background-color: #2499E3;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.chapeau {
	padding-bottom: 3.625rem;
	font-size: 1.25rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
}

@media (min-width: 1025px) {
	.chapeau {
		padding-left: 10rem;
		padding-right: 10rem;
	}
}

.list {
	margin-top: 2.75rem;
	margin-bottom: 2.75rem;
}
.subPageList .featured {
	margin-top: 2.1875rem;
	margin-bottom: 2.1875rem;
}

/*--------------------------------------------------------------
# detailProduct
--------------------------------------------------------------*/

.detailProduct .entry-header {
	margin-bottom: 4.375rem;
}

.detailProduct .entry-header:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 2.5rem;
	height: 5px;
	background-color: #034E7D;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.detailProduct .intro .container .intro-content {
	width: 100%;
	padding: 0 2.5rem 1.5rem;
	text-align: center;
}

@media (min-width: 1025px) {
	.detailProduct .intro .container .intro-content {
		padding: 0 5.5rem 0;
	}
}

.detailProduct .intro-content > img {
	width: 5.5rem;
	height: 5.5rem;
	margin: -2.75rem auto 0;
}

.detailProduct .btn {
	display: block;
	margin-bottom: 2.6875rem;
	padding: .75rem 2rem;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	color: #fff;
	background-color: #269be3;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsl(203, 77%, 52%)), color-stop(70%, hsl(203, 77%, 52%)), to(hsl(223, 77%, 52%)));
	background-image: linear-gradient(to bottom, hsl(203, 77%, 52%) 0%, hsl(203, 77%, 52%) 70%, hsl(223, 77%, 52%) 100%);
	background-size: 100% 200%;
	background-position: top center;
	border-radius: 5px;
	-webkit-transition: background-position .3s linear;
	transition: background-position .3s linear;
}

.detailProduct .btn:hover,
.detailProduct .btn:focus {
	background-position: bottom center;
}

/*--------------------------------------------------------------
# listProduct
--------------------------------------------------------------*/
.listProduct h2:before {
	content: '';
	position: absolute;
	top: -1rem;
	left: 50%;
	width: 2.5rem;
	height: 5px;
	background-color: #034E7D;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.listProduct h2 {
	position: relative;
	margin-top: 1rem;
	margin-bottom: 2.25rem;
	color: #017ECC;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: normal;
	font-size: 1.25rem;
	line-height: 1.8;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 5px;
}

.listProduct h2 a {
	color: #017ECC;
	text-decoration: none;
}

.spacer {
	padding-top: 5.5rem;
}

@media (min-width: 1025px) {
	.singleProductContainer {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	
	.singleProduct {
		width: calc(50% - .5625rem);
		-webkit-box-flex: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}
}

.singleProduct {
	margin-bottom: 3.125rem;
	padding: 2rem;
	background-color: #fff;
	-webkit-box-shadow: inset 0 5px #58D2F4, 0 0 3px 0 rgba(159,154,154,0.5);
	box-shadow: inset 0 5px #58D2F4, 0 0 3px 0 rgba(159,154,154,0.5);
}

.singleProduct img {
	display: block;
	width: 3.5rem;
	height: 3.5rem;
	margin: -3.75rem auto 0;
}

.singleProduct h3 {
	margin-top: 0;
	margin-bottom: .8125rem;
	color: #017ECC;
	font-size: 1.875rem;
	font-weight: normal;
	line-height: 1.2;
}

.singleProduct h3 a {
	color: #017ECC;
	text-decoration: none;
}

.singleProduct .btn {
	display: inline-block;
	margin-bottom: .625rem;
	padding: .375rem 2rem;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: .8125rem;
	line-height: 1.4;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	color: #fff;
	background-color: #269be3;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsl(203, 77%, 52%)), color-stop(70%, hsl(203, 77%, 52%)), to(hsl(223, 77%, 52%)));
	background-image: linear-gradient(to bottom, hsl(203, 77%, 52%) 0%, hsl(203, 77%, 52%) 70%, hsl(223, 77%, 52%) 100%);
	background-size: 100% 200%;
	background-position: top center;
	border-radius: 5px;
	-webkit-transition: background-position .3s linear;
	transition: background-position .3s linear;
}

.singleProduct .btn:hover,
.singleProduct .btn:focus {
	background-position: bottom center;
}

/*--------------------------------------------------------------
# contactPage
--------------------------------------------------------------*/

.contactPage h2 {
	margin-top: 2rem;
	margin-bottom: 1.875rem;
	font-weight: normal;
	font-size: 1.875rem;
	color: #017ecc;
}

@media (min-width: 768px) {
	
	.flex {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.flex .form, .flex .map {
		-ms-flex-preferred-size: calc(50% - .5625rem);
		flex-basis: calc(50% - .5625rem);
	}
}

.flex {
	margin-bottom: 1.25rem;
}

.contactPage .nf-form-title {
	display: none;
}

.contactPage .nf-form-layout > div,
.popmake .nf-form-layout > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.contactPage .nf-before-form-content,
.contactPage .nf-after-form-content,
.popmake .nf-before-form-content,
.popmake .nf-after-form-content {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.contactPage input:not([type=button]),
.popmake input:not([type=button]),
.contactPage textarea,
.popmake textarea{
	position: relative;
	padding: .75rem 1rem;
	background-color: #fff;
	border: 0;
	border-radius: 0;
	-webkit-box-shadow: 0 0 3px 0 rgba(159,154,154,0.5);
	box-shadow: 0 0 3px 0 rgba(159,154,154,0.5);
}

.contactPage input[type=button],
.popmake input[type=button] {
	padding: .5rem;
	min-width: 8.75rem;
	border-radius: 5px;
	font-family: 'Roboto condensed', sans-serif;
	font-size: .8125rem;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	background-color: #269be3;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsl(203, 77%, 52%)), color-stop(70%, hsl(203, 77%, 52%)), to(hsl(223, 77%, 52%)));
	background-image: linear-gradient(to bottom, hsl(203, 77%, 52%) 0%, hsl(203, 77%, 52%) 70%, hsl(223, 77%, 52%) 100%);
	background-size: 100% 200%;
	background-position: top center;
	border-radius: 5px;
	-webkit-transition: background-position .3s linear;
	transition: background-position .3s linear;
}

.contactPage input[type=button]:hover,
.contactPage input[type=button]:focus,
.popmake input[type=button]:hover,
.popmake input[type=button]:focus {
	background-position: bottom center;
}

.contactPage textarea {
	height: auto !important;
}

.contactPage ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #4a4a4a;
}

.contactPage :-ms-input-placeholder { /* IE 10+ */
  color: #4a4a4a;
}

.contactPage ::placeholder {
	color: #4a4a4a;
}

.contactPage textarea,
.popmake textarea {
	height: auto !important;
}

.popmake ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #4a4a4a;
}

.popmake :-ms-input-placeholder { /* IE 10+ */
  color: #4a4a4a;
}

.popmake ::placeholder {
	color: #4a4a4a;
}

.tel {
	margin: 1.25rem 0;
	padding: .75rem;
	background-color: #017ECC;
	color: #fff;
	font-weight: bold;
	font-size: 1.25rem;
	text-align: center;
}

.ouvertureCompte {
	padding: .5rem;
	min-width: 8.75rem;
	border-radius: 5px;
	font-family: 'Roboto condensed', sans-serif;
	font-size: .8125rem;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	background-color: #269be3;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsl(203, 77%, 52%)), color-stop(70%, hsl(203, 77%, 52%)), to(hsl(223, 77%, 52%)));
	background-image: linear-gradient(to bottom, hsl(203, 77%, 52%) 0%, hsl(203, 77%, 52%) 70%, hsl(223, 77%, 52%) 100%);
	background-size: 100% 200%;
	background-position: top center;
	border-radius: 5px;
	-webkit-transition: background-position .3s linear;
	transition: background-position .3s linear;
}

.ouvertureCompte:hover,
.ouvertureCompte:focus {
	background-position: bottom center;
}
.label-right.rgpd-checkbox  .field-wrap, .label-right.rgpd-checkbox  .nf-field-label {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}
.label-right.rgpd-checkbox .nf-field-label {
	padding-left: 15px;
}
.label-right.rgpd-checkbox .nf-field-description {
	margin-right: 0;
	padding-left: 35px;
	width: auto;
}
/*--------------------------------------------------------------
# Blog Posts Page
--------------------------------------------------------------*/
.blogPosts .entry-header {
	padding-bottom: 1rem;
}

.blogPosts .list {
	margin-top: 0;
}

.blogPosts h2:before {
	content: '';
	position: absolute;
	top: -1rem;
	left: 50%;
	width: 2.5rem;
	height: 5px;
	background-color: #034E7D;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.blogPosts h2 {
	position: relative;
	margin-top: 1rem;
	margin-bottom: 2.25rem;
	color: #017ECC;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: normal;
	font-size: 1.25rem;
	line-height: 1.8;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 5px;
}

.blogPosts h2 a {
	color: #017ECC;
	text-decoration: none;
}

.display-category {
	margin-bottom: 2rem;
	font-family: "Roboto Condensed", sans-serif;
	font-size: .875rem;
	text-align: center;
}

.display-category a {
	text-decoration: none;
	color: #017ecc;
}

p.meta {
	font-size: .875rem !important;
}

p.meta a {
	text-decoration: none;
	color: #2499e3;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

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

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

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

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.entry-content ul {
	margin: 0 0 1.5em;
	padding: 0;
	list-style: none;
}

.entry-content ul ul {
	margin-left: 1.25rem;
}

.entry-content ul li {
	padding-left: 1.25rem;
}

.entry-content ul li:before {
	content: '●';
	margin-left: -.6rem;
	margin-right: .6rem;
	color: #2499E3;
}

.entry-content table {
	table-layout: fixed;
	border-spacing: .6875rem;
	border-collapse: separate;
}
.entry-content td {
	padding: .625rem;
	background-color: #fff;
	text-align: center;
	text-transform: uppercase;
}

.entry-content a {
	text-decoration: none;
	color: #2499e3;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

.aol-archive .fusion-button, .aol-archive input[type="submit"]{
	background-color: #269be3 !important;
	color: white;
}
.aol-archive .ads_button{
	padding: .5rem;

min-width: 8.75rem;

border-radius: 5px;

font-family: 'Roboto condensed', sans-serif;

font-size: .8125rem;

color: #fff;

text-transform: uppercase;

text-align: center;

background-color: #269be3;

background-image: -webkit-gradient(linear, left top, left bottom, from(hsl(203, 77%, 52%)), color-stop(70%, hsl(203, 77%, 52%)), to(hsl(223, 77%, 52%)));

background-image: linear-gradient(to bottom, hsl(203, 77%, 52%) 0%, hsl(203, 77%, 52%) 70%, hsl(223, 77%, 52%) 100%);

background-size: 100% 200%;

background-position: top center;

border-radius: 5px;

-webkit-transition: background-position .3s linear;

transition: background-position .3s linear;
}

.aol_ad .breadcrumbs, .aol_libre .breadcrumbs{
 display:none;
}

.aol_ad .entry-content, aol_libre .entry-content{
  flex-basis: 100% !important;
}
#aol_app_submit_button{
 height: 35px;
 margin-bottom: 15px;
 background-color: #269be3;
 color: white;
}
#aol_app_submit_button:hover{
 background-color: #017ECC;
}

h3.aol-heading{
 color: #017ECC;
}

.aol-archive .aol-ad-inner-wrapper{
  margin-bottom: 20px;
}

/* rm#10980 */
@media (max-width: 815px) {
	.page-id-1681 #mobile-details{
		display: none !important;
	}
	.page-id-1681 .mapsvg-wrap{
		flex-direction: column-reverse !important;
		height: auto !important;
	}
	.page-id-1681 .mapsvg-sidebar-left{
		display: block !important;
		min-height: 400px !important;
		flex: initial !important;		
	}
	.page-id-1681 .mapsvg-map-container{
		flex: initial !important;		
	}
	.page-id-1681 .mapsvg-sidebar-right{
		display: none !important;	
	}
}