/*!
Theme Name: Routes Plurielles
Theme URI: http://underscores.me/
Author: IPSO
Author URI: https://www.studioipso.fr
Description: Thème Wordpress sur-mesure pour Routes Plurielles
Version: 1.0
Tested up to: 7.3
Requires PHP: 7.3
*/

/* ------------------------------------------------------------------------------ */
/* ----- FONTS ----- */
/* ------------------------------------------------------------------------------ */
/* Lato - 400 */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local(''),
        url('fonts/lato-v23-latin-regular.woff2') format('woff2'),
        url('fonts/lato-v23-latin-regular.woff') format('woff');
}

/* Lato - 700 */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local(''),
        url('fonts/lato-v23-latin-900.woff2') format('woff2'),
        url('fonts/lato-v23-latin-900.woff') format('woff');
}

/* Open Sans - 400 */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('fonts/open-sans-v34-latin-regular.woff2') format('woff2'),
       url('fonts/open-sans-v34-latin-regular.woff') format('woff');
}

/* Open Sans - 600 */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local(''),
        url('fonts/open-sans-v34-latin-600.woff2') format('woff2'),
        url('fonts/open-sans-v34-latin-600.woff') format('woff');
}

/* Open Sans - 700 */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local(''),
        url('fonts/open-sans-v34-latin-700.woff2') format('woff2'),
        url('fonts/open-sans-v34-latin-700.woff') format('woff');
}



/* ------------------------------------------------------------------------------ */
/* ----- GENERAL SETTINGS ----- */
/* ------------------------------------------------------------------------------ */
:root {
	--corset-large: 1170px;
	--corset-medium: 680px;
	--corset-small: 400px;

	--header-height: 80px;
 
	--padding-large: 50px;
	--padding-medium: 25px;
	--padding-small: 15px;

	--transition-standard: .3s linear;

	/*--color-primary: #db6b9c;*/
	--color-primary: #0a0a0a;
	--color-grey-100: #f7f7f7;
    --color-grey-200: #555555;
	--color-grey-300: #444444;
}

*:not(.fas),
*:not(.fas):before,
*:not(.fas):after {
	box-sizing: inherit;
  /*  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: 400;*/
}

html {
	box-sizing: border-box;
	line-height: 1.5;
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	background: var(--color-grey-100);
}



/* ------------------------------------------------------------------------------ */
/* ----- TITLES ----- */
/* ------------------------------------------------------------------------------ */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
	position: relative;
	margin-bottom: .7em;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	font-weight: 900;
	/*text-align: center;*/
	text-transform: uppercase;
	line-height: 1.2;
}

h1, 
.h1 {
	display: block;
    color: #fff;
    font-size: 50px
}

.home h1:not(.h2),
.home .h1 {
	font-size: 75px;
}

h2, .h2 {
    color: var(--color-primary);
    font-size: 38px;
}

h3, .h3 {
    color: var(--color-primary);
    font-size: 30px;
}

h4, .h4 {
    color: var(--color-primary);
	font-size: 22px;
}

@media screen and (max-width: 767px) {
.home h1:not(.h2), .home .h1,
h1, .h1 {
    font-size: 35px;
}

h2, .h2 {
    font-size: 25px;
}

h3, .h3 {
    font-size: 18px;
}

h4, .h4 {
    font-size: 16px;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- PARAGRAPHS ----- */
/* ------------------------------------------------------------------------------ */
p {
    color: var(--color-grey-300);
    font-size: 16px;
    font-weight: 400;
    /*text-align: left;*/
    line-height: 1.5;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

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

b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}

big {
	font-size: 125%;
}

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

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

abbr,
acronym {
	border-bottom: 1px dotted var(--color-grey-300);
	cursor: help;
}



/* ------------------------------------------------------------------------------ */
/* ----- LISTS ----- */
/* ------------------------------------------------------------------------------ */
ul, 
ol {
	margin: 1.5em 0;
	padding-left: 1em;
	color: var(--color-grey-300);
	font-size: 16px;
	line-height: 1.5;
	list-style: disc;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul, 
li > ol {
	margin: 0;
}

li > ul {
	list-style: circle;
}



/* ------------------------------------------------------------------------------ */
/* ----- LINKS ----- */
/* ------------------------------------------------------------------------------ */
a {
	background-color: transparent;
	color: var(--color-primary);
	text-decoration: underline;
	transition: .1s linear;
}

a:hover {
	color: var(--color-primary);
	text-decoration: none;
}



/* ------------------------------------------------------------------------------ */
/* ----- BUTTONS ----- */
/* ------------------------------------------------------------------------------ */
.btn-primary,
.btn-secondary,
.wp-block-button__link {
	position: relative;
	display: inline-block;
	padding: 1em 1.5em;
    background: transparent;
	border-radius: 1.5em;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1.2;
	cursor: pointer;
	transition: var(--transition-standard);
}

.btn-primary,
.wp-block-button__link {
	color: var(--color-primary);
	border: 2px dashed var(--color-primary);
}

.btn-primary:hover,
.wp-block-button__link:hover {
	color: #fff;
	background: var(--color-primary);
}

.btn-secondary {
	color: #fff;
	border: 2px dashed #fff;
}

.btn-secondary:hover {
	color: var(--color-primary);
	background: #fff;
}



/* ------------------------------------------------------------------------------ */
/* ----- FIGURE ----- */
/* ------------------------------------------------------------------------------ */
figure {
	margin: 1.5em 0;
}

figcaption {
	font-size: 14px;
	text-align: center;
}

img {
	display: block;
}



/* ------------------------------------------------------------------------------ */
/* ----- CODE ----- */
/* ------------------------------------------------------------------------------ */
pre,
code,
kbd,
samp,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 16px;
}

pre {
	margin: 1.5em 0;
	padding: 1.5em;
	max-width: 100%;
	background: #eee;
	color: var(--color-grey-300);
	font-family: "Courier 10 Pitch", courier, monospace;
	font-size: 16px;
	line-height: 1.5;
	white-space: pre-wrap;
	overflow: auto;
} 

@media screen and (max-width: 767px) {
pre,
code,
kbd,
samp,
tt,
var {
	font-size: 14px;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- BLOCKQUOTE ----- */
/* ------------------------------------------------------------------------------ */
blockquote {
	margin: 1.5em 0;
	padding: 1em 1em 1em 2em;
	border-left: 2px dashed var(--color-primary);
	background: transparent;
	color: var(--color-grey-300);
}

blockquote * {
	font-size: 20px;
	font-weight: 300;
}

blockquote *:first-child {
	margin-top: 0;
}

blockquote *:last-child {
	margin-bottom: 0;
}

blockquote cite {
	font-size: 16px;
}

@media screen and (max-width: 767px) {
blockquote {
	padding-left: 1em;
}

blockquote * {
	font-size: 18px;
}

blockquote cite {
	font-size: 14px;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- TABLE ----- */
/* ------------------------------------------------------------------------------ */
table {
	margin: 1em 0;
	font-size: 16px;
}

table td,
.wp-block-table td,
table th,
.wp-block-table th {
	padding: .5em 1em;
	border: 2px solid var(--color-primary);
	color: var(--color-grey-300);
}

@media screen and (max-width: 767px) {
table {
	font-size: 14px;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- FORM ----- */
/* ------------------------------------------------------------------------------ */
label {
	margin-bottom: .5em;
	font-size: 16px;
	font-weight: 400;
}

input {
	padding: .8em;
	border: 2px solid var(--color-primary);
	border-radius: 1.5em;
	background: #fff;
	font-size: 16px;
}

input:focus {
	outline: none;
}

input[type='submit'] {
	border: unset;
	background: transparent;
	color: #fff;
	text-align: center;
	cursor: pointer;
	transition: var(--transition-standard);
}

input[type='submit']:hover {
	color: #fff;
	opacity: .85;
}

button[type='submit'] {
	padding: 1em 1.5em;
	border: 2px dashed var(--color-primary);
	border-radius: 1.5em;
	background: transparent;
	color: var(--color-primary);
	font-size: 14px;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
	text-align: center;
	line-height: 1.2;
	cursor: pointer;
	transition: var(--transition-standard);
}

button[type='submit']:hover {
	color: #fff;
	background: var(--color-primary);
}

textarea {
	display: block;
	padding: .8em;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	min-height: 150px;
	border: 2px solid var(--color-primary);
	border-radius: 1.5em;
	outline: none;
	background: #fff;
	font-size: 16px;
	line-height: 1.5;
}

select {
	padding: .8em;
	border: 2px solid var(--color-primary);
	border-radius: 1.5em;
	background: #fff;
	background: url('img/icon-chevron-bottom.svg') no-repeat right;
	background-origin: content-box;
	background-size: 15px 15px;
	font-size: 16px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	
}



/* ------------------------------------------------------------------------------ */
/* ----- CORSET ----- */
/* ------------------------------------------------------------------------------ */
.corset-large {
	margin: 0 auto;
	max-width: var(--corset-large);
}

.corset-medium {
	margin: 0 auto;
	max-width: var(--corset-medium);
}

.corset-small {
	margin: 0 auto;
	max-width: var(--corset-small);
}

@media screen and (max-width: 1170px) {
.corset-large,
.corset-medium,
.corset-small {
	padding-left: var(--padding-small);
	padding-right: var(--padding-small);
}
}



/* ------------------------------------------------------------------------------ */
/* ----- SITE-MAIN ----- */
/* ------------------------------------------------------------------------------ */
.site-main {
	padding-top: 0;
}

@media screen and (max-width: 1300px) {
.site-main {
	padding-top: calc(var(--header-height));
}
}



/* ------------------------------------------------------------------------------ */
/* ----- PAGE-CONTENT ----- */
/* ------------------------------------------------------------------------------ */
.page-content {
	padding: calc(var(--padding-large) * 2) 0 calc(var(--padding-large) * 2);
}

.page-content > .entry-content > *:first-child {
	margin-top: 0;
}

.page-content > .entry-content > *:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 900px) {
.page-content {
	padding: var(--padding-large) 0 var(--padding-large);
}
}

@media screen and (max-width: 767px) {
.page-content {
	padding: var(--padding-medium) 0 var(--padding-large);
}
}



/* ------------------------------------------------------------------------------ */
/* ----- HEADER ----- */
/* ------------------------------------------------------------------------------ */
.site-header {
	display: block;
	position: fixed;
	top: 0;
	width: 100%;
	height: var(--header-height);
	background: transparent;
	z-index: 50;
	transition: .3s linear;
	opacity: 1;
}

.scroll-down .site-header,
.scroll-up .site-header {
	background: #fff;
}

.header-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 250px;
	margin: 0 auto;
	padding: 0;
	height: 100%;
	max-width: calc(100% - calc(2 * var(--padding-large)));
}

.header-branding {
	position: absolute;
	left: 50%;
	transform: translate3d(-50%,0,0);
	/*align-self: flex-start;*/	
}

.scroll-down .header-branding,
.scroll-up .header-branding {
	/*align-self: initial;*/	
}

.menu-principal {
	display: flex;
	flex-direction: row;
	gap: var(--padding-medium);
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu-principal li {
	line-height: 1.2;
}

.menu-principal > li > a {
	position: relative;
	color: #fff;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	text-decoration: none;
	transition: none;
}

.menu-principal > li > a:hover,
.menu-principal > li.current-menu-item > a {
	padding-bottom: 5px;
	border-bottom: 2px dashed #fff;
}

.scroll-down .menu-principal > li > a:hover,
.scroll-up .menu-principal > li > a:hover,
.scroll-down .menu-principal > li.current-menu-item > a,
.scroll-up .menu-principal > li.current-menu-item > a {
	border-bottom: 2px dashed var(--color-primary);
}

.scroll-down .menu-principal > li > a,
.scroll-up .menu-principal > li > a {
	color: var(--color-primary);
}

/* Logo */
.site-header .custom-logo-link {
	display: block;
	padding: 1em 2em;
	background: #fff;
	border-radius: 0 0 1.5em 1.5em;
	box-shadow: 0 0 3px rgba(0,0,0,.1);
}

.scroll-down .site-header .custom-logo-link,
.scroll-up .site-header .custom-logo-link {
	padding: 0;
	background: transparent;
	box-shadow: unset;
}

.site-header .custom-logo {
	object-fit: contain;
	width: 100%;
    max-height: 70px;
}

.scroll-down .site-header .custom-logo,
.scroll-up .site-header .custom-logo {
	padding: 10px 0;
}

/* Menu mobile */
.header-mobile {
	display: none;
}

#menu-button {
	position: relative;
	display: none;
	cursor: pointer;
}

#menu-button img {
	display: block;
	height: 40px;
	width: auto;
}

.main-navigation-mobile {
	display: none;
	position: absolute;
	box-sizing: border-box;
	top: var(--header-height);
	left: 0;
	transform: unset;
	padding: 0;
	width: 100vw;
	height: calc(100vh - var(--header-height));
	height: calc((var(--vh, 1vh) * 100) - var(--header-height));
	text-align: left;
	background: #fff;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	z-index: 100;
}

.main-navigation-mobile.open {
	display: block;
}

.main-navigation-mobile .menu-mobile {
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	margin: 0;
	padding: 0;
	height: 100%;
	list-style: none;
}

.main-navigation-mobile .menu-mobile > li {
	margin: 0;
}

.main-navigation-mobile .menu-mobile > li:not(:last-child) {
	border-bottom: 1px solid var(--color-grey-100);
}

.main-navigation-mobile .menu-mobile > li > a {
	padding: var(--padding-medium) var(--padding-small);
	color: var(--color-300);
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 600;
}

.main-navigation-mobile .menu-mobile li a {
	display: block;
	text-decoration: none;
}

.main-navigation-mobile .menu-mobile li a:hover,
.main-navigation-mobile .menu-mobile li.sub-menu-expand > a,
.main-navigation-mobile .menu-mobile li.current-menu-item > a,
.main-navigation-mobile .menu-mobile .sub-menu li.current-menu-item a {
	color: var(--color-primary);
}

.main-navigation-mobile .menu-mobile > li.menu-item-has-children > a {
	position: relative;
	margin-right: 45px;
}

.main-navigation-mobile .menu-mobile > li.menu-item-has-children > a:after {
	content:"";
	display: inline-block;
	position: absolute;
	bottom: inherit;
	top: 50%;
	right: -30px;
	transform: translate3d(0,-50%,0);
	height: 15px;
	width: 15px;
	background-image: url('img/icon-chevron-bottom.svg');
	background-size: contain;
	pointer-events: none;
}

.main-navigation-mobile .menu-mobile .sub-menu {
	display: none;
	position: relative;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	max-width: 100%;
	background: var(--color-grey-100);
}

.main-navigation-mobile .sub-menu-expand .sub-menu,
.main-navigation-mobile .sub-menu-expand:hover .sub-menu {
	display: block;
}

.main-navigation-mobile .menu-mobile .sub-menu > li {
	margin: 0;
}

.main-navigation-mobile .menu-mobile .sub-menu > li:not(:last-child) {
	border-bottom: 1px solid #fff;
}

.main-navigation-mobile .menu-mobile .sub-menu li a {
	padding: var(--padding-small) var(--padding-small);
	color: var(--color-grey-300);
	font-size: 14px;
	text-transform: initial;
}

/* Header phone */
.header-phone {
	display: none;
}

@media screen and (max-width: 1300px) {
.site-header {
	background: #fff;
	box-shadow: 0 0 3px rgba(0,0,0,.1);
}

.header-wrapper {
	max-width: calc(100% - calc(2 * var(--padding-small)));
	gap: var(--padding-large);
}

.header-left-item,
.header-right-item {
	display: none;
}

#menu-button {
	display: block;
}


.header-branding {
	position: initial;
	left: unset;
	transform: unset;
	align-self: initial;
}

.site-header .custom-logo-link {
	padding: 0;
	background: transparent;
	box-shadow: unset;
}

.site-header .custom-logo {
	padding: 10px 0;
}

.header-phone {
	position: absolute;
	display: block;
	right: calc(var(--padding-small) + 40px + var(--padding-small));
	top: 50%;
	transform: translate3d(0,-50%,0);
}

.header-phone > a {
	position: relative;
	padding-left: 20px;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	text-decoration: none;
}

.header-phone > a:before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate3d(0,-50%,0);
	height: 15px;
	width: 15px;
	background-image: url('img/icon-phone.svg');
	background-size: contain;
}

}



/* ------------------------------------------------------------------------------ */
/* ----- FOOTER ----- */
/* ------------------------------------------------------------------------------ */
.footer-top {
    padding: 30px 0;
	background: var(--color-grey-200);
}

.footer-bottom {
	padding: var(--padding-small) 0;
	background: var(--color-grey-300);
}

.site-footer * {
	color: #fff;
	font-size: 14px;
}

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

.site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-title {
	margin-top: 0;
	text-align: center;
	font-weight: 700;
}

.footer-top-item-logo {
	display: flex;
	justify-content: center;
	margin-bottom: var(--padding-medium);
}

.footer-top-item-content {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: calc(var(--padding-large) * 3);
}

.footer-top-item-content-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1em;
	text-align: center;
}

.footer-top-item-content-info p {
	margin: 0;
	text-align: center;
}

.site-footer a.phone {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

.site-footer a.phone:before {
	content: '';
	display: inline-block;
	height: 15px;
	width: 15px;
	background-image: url('img/icon-phone-alter.svg');
	background-size: contain;
}

/* Reseaux */
.site-footer .reseaux {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: var(--padding-small);
}

.reseaux a > img {
	height: 25px;
	width: 25px;
	object-fit: contain;
}


/* Menu Liens utiles */
.site-footer .menu-liens-utiles {
	display: flex;
	flex-direction: column;
	gap: .5em;
	text-align: center;
}


/* Menu mentions */
.site-footer .menu-mentions {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.site-footer .menu-mentions li:not(:first-child) {
	position: relative;
	margin-left: var(--padding-small);
	padding-left: calc(var(--padding-small) * 2);
}

.site-footer .menu-mentions li:not(:first-child):before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate3d(0,-50%,0);
	height: 1px;
	width: 15px;
	background: #fff;
}

@media screen and (max-width: 767px) {
.site-footer .menu-mentions {
	flex-direction: column;
	align-items: center;
	gap: 5px;
}

.site-footer .menu-mentions li:not(:first-child) {
	margin: 0;
	padding: 0;
}

.site-footer .menu-mentions li:before {
	display: none;
}

.footer-top-item-content {
	flex-direction: column;
	align-items: center;
	gap: 30px;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- CTA-CONTACT ----- */
/* ------------------------------------------------------------------------------ */
#cta-contact {
	position: fixed;
	bottom: var(--padding-large);
	right: var(--padding-large);
	transform: rotate(-90deg) translateY(calc(100% + calc(225px + var(--padding-large))));
	transform-origin: left bottom;
	z-index: 20;
}

html[lang='en-GB'] #cta-contact {
	transform: rotate(-90deg) translateY(calc(100% + calc(190px + var(--padding-large))));
}

.cta-contact-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: var(--padding-small);
}

#cta-contact .cta-contact-page {
	display: inline-block;
	padding: var(--padding-small) var(--padding-medium);
	background: #fff;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 2em;
	box-shadow: 0 0 3px rgba(0,0,0,.1);
	transition: var(--transition-standard);
}

#cta-contact .cta-contact-page:hover {
	color: #fff;
	background: var(--color-primary);
}

/* Phone */
#cta-contact .cta-contact-phone {
	display: inline-block;
	padding: var(--padding-small);
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 3px rgba(0,0,0,.1);
	transition: var(--transition-standard);
}

#cta-contact .cta-contact-phone > img {
	transform: rotate(90deg);
	width: 20px;
	height: 20px;
	object-fit: contain;
}

#cta-contact .cta-contact-phone:hover {
	background: var(--color-primary);
}

#cta-contact .cta-contact-phone:hover > img {
	filter: brightness(0) invert(1);
}

/* Language */
#cta-contact .cta-contact-language {
	display: inline-block;
	padding: var(--padding-small);
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 3px rgba(0,0,0,.1);
	transition: var(--transition-standard);
}

#cta-contact .cta-contact-language > img {
	transform: rotate(90deg);
	width: 20px;
	height: 20px;
	object-fit: contain;
}

#cta-contact .cta-contact-language:hover {
	background: var(--color-primary);
}


@media screen and (max-width: 1300px) {
#cta-contact {
	display: none;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- OVERLAY ----- */
/* ------------------------------------------------------------------------------ */
.overlay {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: var(--color-primary);
	opacity: .9;
	z-index: 3;
}



/* ------------------------------------------------------------------------------ */
/* ----- PAGE-HEADER ----- */
/* ------------------------------------------------------------------------------ */
.page-header {
	position: relative;
	display: flex;
	align-items: center;
	padding: var(--padding-large) 0;
	padding-top: calc(var(--padding-large) + var(--header-height) + var(--padding-small));
	background-size: cover;
	background-position: center center;
	overflow: hidden;
}

.page-header-wrapper {
	position: relative;
	z-index: 5;
}

.page-header .entry-title {
	text-align: center;
}

.page-header .entry-title h1 {
	display: inline-block;
	margin: 0;
	text-align: center;
}

@media screen and (max-width: 1300px) {
.page-header {
	padding: var(--padding-medium) 0;
	min-height: inherit;
	background-attachment: inherit;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- HOME-LANDING ----- */
/* ------------------------------------------------------------------------------ */
.home-landing {
	position: relative;
	height: calc(100vh + 200px);
	width: 100%;
	overflow: hidden;

}

.home-landing-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}

.home-landing-content {
	margin-top: calc(var(--header-height) + var(--padding-small));
	margin-bottom: 200px;
	z-index: 10;
}

.home-landing-title {
	margin-top: 0;
}

.home-landing-title .text-illustration {
	position: relative;
	color: #fff;
	font-size: 75px;
	font-weight: 900;
}

.home-landing-title .text-illustration:before {
	content: '';
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translate3d(-50%,0,0);
	height: 140px;
	width: 120px;
	background-image: url('img/text-illustration.png');
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 5;
}

.home-landing-description * {
	color: #fff;
	text-align: center;
}

.home-landing .overlay {
	opacity: .8;
}

.landing-slider-swiper {
	position: absolute;
	display: block;
	height: 100%;
	width: 100%;
}

.home-landing-background {
	position: absolute;
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center center;
}

.home-landing .scroll-bottom img {
	position: absolute;
	bottom: calc(var(--padding-large) + 200px);
	left: 50%;
	transform: translate3d(-50%,0,0);
	height: 40px;
	width: 40px;
	z-index: 10;
}

.home-landing .changement-logo {
	padding: var(--padding-large);
	background: #fff;
	border-radius: 2em;
}

.home-landing .changement-logo > img {
	display: block;
	margin: 0 auto;
}

@media screen and (max-width: 1300px) {
.home-landing {
	height: calc(100vh - var(--header-height) + 200px);
}

.home-landing-content {
	margin-top: 0;
}
}

@media screen and (max-width: 767px) {
.home-landing {
	height: auto;
}

.home-landing-content {
	margin-bottom: 0;
	margin-bottom: 75px;
	padding-top: 100px;
	padding-bottom: 50px;
}

.home-landing-title .text-illustration {
	font-size: 35px;
}

.home-landing-title .text-illustration:before {
	content: '';
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translate3d(-50%,0,0);
	height: 60px;
	width: 51px;
}

.home-landing .scroll-bottom {
	display: none;
}

.home-landing .changement-logo {
	padding: var(--padding-medium);
}

.home-landing .changement-logo > img {
	max-width: 150px;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- HOME-REASSURANCE ----- */
/* ------------------------------------------------------------------------------ */
.home-reassurance {
	position: relative;
	margin-top: -90px;
	z-index: 10;
}

.home-reassurance-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 1fr;
	gap: var(--padding-large);
}

.reassurance-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--padding-small);
	padding: var(--padding-medium);
	aspect-ratio: 1;
	max-width: 180px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 3px rgba(0,0,0,.1);
}

.reassurance-item-icon {
	min-height: 40px !important;
	max-width: 40px !important;
	object-fit: contain;
}

.reassurance-item-title {
	margin: 0;
	color: var(--color-grey-200);
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
}

@media screen and (max-width: 1300px) {
.home-reassurance {
	margin-top: -75px;
}
}

@media screen and (max-width: 767px) {
.home-reassurance-wrapper {
	grid-template-columns: repeat(2, 1fr);
	gap: var(--padding-small);
	margin-left: 15px;
	margin-right: 15px;
	padding-top: var(--padding-small);
	padding-bottom: var(--padding-small);
	background: #fff;
	border-radius: 2em;
}

.reassurance-item {
	gap: var(--padding-small);
	padding: 0;
	aspect-ratio: unset;
	background: transparent;
	border-radius: unset;
	box-shadow: unset;
}

}



/* ------------------------------------------------------------------------------ */
/* ----- HOME-CONTENT ----- */
/* ------------------------------------------------------------------------------ */
.home-content {
	margin: calc(var(--padding-large) * 2) 0;
}

.home-content-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: calc(var(--padding-large) * 2);
}

.home-content-wrapper > div {
	flex: 1;
}

.home-content-picture {
	border-radius: 0 15rem 15rem 0;
	overflow: hidden;
}

.home-content-picture > img {
	height: 100%;
	width: 100%;
	min-height: 450px;
	max-height: 450px;
	object-fit: cover;
}

.home-content-content {
	padding-right: calc(var(--padding-large) * 2);
	text-align: center;
}

.home-content-content * {
	text-align: center;
}

.home-content-content *:first-child {
	margin-top: 0;
}

.home-content-content *:last-child {
	margin-bottom: 0;
}

.home-content-button {
	margin-top: 2em;
}

@media screen and (max-width: 900px) {
.home-content {
	margin-top: 75px;
	margin-bottom: 25px;
}

.home-content-wrapper {
	flex-direction: column;
	align-items: flex-start;
	gap: var(--padding-large);
}

.home-content-picture {
	margin-right: var(--padding-small);
}

.home-content-picture > img {
	min-height: 250px;
	max-height: 350px;
}

.home-content-content {
	align-self: center;
	padding: 0;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- SERVICES-SLIDER ----- */
/* ------------------------------------------------------------------------------ */
.home .services-slider {
	padding-top: var(--padding-large);
	padding-bottom: var(--padding-large);
}

.services-slider-top h2 {
	margin-top: 0;
}

.services-slider-content {
	position: relative;
} 

.item-service {
	position: relative;
	min-height: 450px;
	max-height: 450px;
	border-radius: 2em;
	box-shadow: 0 0 3px rgba(0,0,0,.1);
	overflow: hidden;
} 

.item-service-wrapper {
	height: 100%;
	width: 100%;
	display: block;
}

.item-service-content {
	box-sizing: initial !important;
	position: absolute;
	bottom: 0;
	padding: var(--padding-medium);
	width: calc(100% - (var(--padding-medium) * 2));
	text-align: center;
	z-index: 10;
}

.item-service-title {
	margin: 0;
	color: #fff;
}

.item-service-description {
	margin-bottom: 0;
	color: #fff;
	text-align: center;
}

.item-service .overlay {
	background: linear-gradient(rgba(10, 10, 10, 0.3),rgba(10, 10, 10, 1) 80%);
	opacity: 1;
	transition: var(--transition-standard);
}

.item-service:hover .overlay {
	opacity: .8;
}

.item-service-background {
	position: absolute;
	height: 100% !important;
	width: 100%;
	object-fit: cover;
}

/* Slider navigation */
.slider-navigation .slider-button {
	position: absolute;
	display: inline-block;
	top: 50%;
	transform: translate3d(0,-50%,0);
	height: 60px;
	width: 60px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 3px rgba(0,0,0,.1);
	cursor: pointer;
	z-index: 30;
}

.slider-button-prev {
	left: -30px;
}

.slider-button-next {
	right: -30px;
}

.slider-navigation .slider-button > img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%,-50%,0);
	transform: translate3d(-50%,-50%,0);
	width: 30px;
	height: auto;
	object-fit: contain;
}

@media screen and (max-width: 1300px) {
.slider-navigation {
	display: none;
}
}

@media screen and (max-width: 767px) {
.item-service {
	position: relative;
	min-height: 250px;
	max-height: 250px;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- FLUX-INSTAGRAM ----- */
/* ------------------------------------------------------------------------------ */
.flux-instagram {
	padding-top: 75px;
	background: #fff;
}

.flux-instagram-top h2 {
	margin-top: 0;
	text-align: center;
}

.flux-instagram-top .text-illustration {
	position: relative;
	color: var(--color-primary);
	font-size: 40px;
	font-weight: 600;
}

.flux-instagram-top .text-illustration:before {
	content: '';
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate3d(-50%,0,0);
	height: 70px;
	width: 60px;
	background-image: url('img/text-illustration-alter.png');
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 5;
}

.flux-instagram-content {
	text-align: center;
}

@media screen and (max-width: 767px) {
.flux-instagram {
	padding-top: var(--padding-large);
}

.flux-instagram-top .text-illustration {
	font-size: 25px;
}

.flux-instagram-top .text-illustration:before {
	content: '';
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translate3d(-50%,0,0);
	height: 47px;
	width: 40px;
}

}



/* ------------------------------------------------------------------------------ */
/* ----- WPFORMS ----- */
/* ------------------------------------------------------------------------------ */
.wpforms-container .wpforms-required-label {
	color: var(--color-primary);
}

.wpforms-container .wpforms-field-label {
	color: var(--color-grey-200);
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
}

.wpforms-container .wpforms-field input.wpforms-error,
.wpforms-container .wpforms-field input.user-invalid,
.wpforms-container .wpforms-field textarea.wpforms-error,
.wpforms-container .wpforms-field textarea.user-invalid,
.wpforms-container .wpforms-field select.wpforms-error,
.wpforms-container .wpforms-field select.user-invalid,
.wpforms-container .wpforms-field.wpforms-has-error .choices__inner {
	border: 2px solid #990000; 
}



/* ------------------------------------------------------------------------------ */
/* ----- ADMIN FRONT ----- */
/* ------------------------------------------------------------------------------ */
#wpadminbar .ab-icon:before,
#wpadminbar .ab-icon:after {
	font-family: 'dashicons';
}