/*==============================================================================================================
MAIN
==============================================================================================================*/
/*====================================================================
00. GENERAL
====================================================================*/
:focus{outline:0!important}

a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:not(.fa,.fab,.fad,.fal,.far,.fas), button {
  font-family: var(--font-family-body) !important;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

ol.nolist, ul.nolist {
	list-style: none;
	margin: 0;
	padding: 0;
}

.btn {
	text-transform: uppercase;
	background: var(--primary);
  border: solid 1px var(--primary);
	font-size: 0.75rem;
	letter-spacing: 0.5px;
	font-weight: 500;
	padding: 15px 30px;
	border-radius: 2px;
	display: inline-block;
	color: var(--white);
	outline: none;
  text-decoration: none;
  width: auto;
}
.btn_alt {
	background: var(--secondary);
  border: solid 1px var(--secondary);
}
.btn_outline {
  background: transparent;
  color: var(--primary);
  border: solid 1px var(--primary);
}
.btn_alt_outline {
  background: transparent;
  color: var(--secondary);
  border: solid 1px var(--secondary);
}
.btn:hover {
	background: var(--secondary);
	color: var(--white);
  border-color: var(--secondary);
}
.btn_alt:hover {
	background: var(--primary);
	color: var(--white);
  border-color: var(--primary);
}
.btn_outline:hover {
	background: var(--primary);
	 color: var(--white);
  border-color: var(--primary);
}
.btn_alt_outline:hover {
	background: var(--secondary);
	 color: var(--white);
  border-color: var(--secondary);
}

.btn i {
	margin-right: 5px;
}

.text-left {text-align: left !important;}
.text-right {text-align: right !important;}
.text-center {text-align: center !important;}
.text-justify {text-align: justify !important;}

.bg-fixed {background-attachment: fixed !important;}


/*====================================================================
00. HEADER
====================================================================*/
#pageHeader {
  border-top: solid 3px var(--secondary);
}
.main-header {
	padding: 15px 0;
}
.header-logo, .header-logo a, .header-logo img {display: block; height: 60px;}

/*====================================================================
00. FOOTER
====================================================================*/
.footer-top {
	padding: 45px 0 40px;
	background-color: var(--third);
	margin: 0;
	color: #EEF3F5;
}

.footer-logo {width:180px;}

.footer-top .footer-widget h3 {
	font-size: 17px;
	line-height: 20px;
	color: #eee;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	padding-bottom: 12px;
  margin-top: 0;
}
.footer-top .footer-widget ul li {
	font-size: 14px;
	font-weight: 300;
	line-height: 20px;
	margin-bottom: 10px;
}

.footer-top .footer-widget ul li a {color: var(--white); text-decoration: none;}
.footer-top .footer-widget ul li a:hover {
	color: var(--secondary);
}
.footer-top .footer-widget ul li i {
	margin-right: 4px;
}

.footer-bottom {
	width: 100%;
	background-color: #04415b;
	color: var(--white);
	margin: 0;
	padding: 10px 0;
	font-size: var(--font-size14);
	font-weight: 300;
}
.footer-bottom-content {display: flex; justify-content: space-between; align-items: center;}
.copyright {margin: 0; padding: 0;}
.footer-bottom ul {
	display: flex;
	justify-content: flex-end;
	margin: 0;
	padding: 0;
}
.footer-bottom ul li {
	padding: 0 9px;
	position: relative;
}
.footer-bottom ul li a { color: var(--white); text-decoration: none;}
.footer-bottom ul li a:hover { color: var(--secondary);}
.footer-bottom ul li::after {
	content: '';
	position: absolute;
	width: 1px;
	height: 13px;
	border-right: 1px solid var(--white);
	right: 0px;
	bottom: 2px;
}
.footer-bottom ul li:first-child {
	padding-left: 0px;
}
.footer-bottom ul li:last-child {
	padding-right: 0px;
}
.footer-bottom ul li:last-child::after {
	content: none;
}

/*====================================================================
00. SCROLL TO TOP
====================================================================*/
.scroll_top {
  width: 40px;
  height: 40px;
  position: fixed;
  font-size: 0;
  z-index: 9999;
  right: 25px;
  bottom: 25px;
  background: var(--secondary);
  visibility: hidden;
  opacity: 0;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.scroll_top i {
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  color: #fff;
}

.scroll_top.visible {
  visibility: visible;
  opacity: 1;
}

.scroll_top:hover {
  background-color: var(--primary);
}

/*====================================================================
00. HOME BANNER
====================================================================*/
.bg-img-fixed-content {
	background-color: #222;
	position: relative;
	-webkit-background-size: padding-box;
	-moz-background-size: padding-box;
	-o-background-size: padding-box;
	background-size: padding-box;
	overflow: hidden;
}

.bg-img {
	content: "";
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	background: url("../../images/bg-fixed_05.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
  /*
	opacity: 0.5;
	-khtml-opacity: 0.5;
	filter: alpha(opacity=50);
  */
}

.bg-img-fixed-content, .bg-img {height: 60vh;}

.bg-img::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .3);
}

.home-promo {
	font-family: "Montserrat", sans-serif;
	color: #fff;
	position: relative;
	z-index: 10;
	width: auto;
	margin: 0 auto;
}

.home-promo .titlepro {
	font-size: 30px;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
	margin-bottom: 40px;
	font-weight: 700;
}
.home-promo .titlepro span {
	display: block;
}
.home-promo .titlepro .middle {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 56px;
	font-weight: 800;
	color: #EEF3F5;
  line-height: 1.6em;
}
.home-promo .titlepro .middle strong {
	color: var(--secondary);
}
.home-promo .titlepro .bottom {
	font-size: 20px;
	font-weight: 700;
}


/*====================================================================
00. BREADCRUMB
====================================================================*/
.breadcrumb-container {
	background-color: var(--third);
  padding: 20px 0;
}

/*==========================================================
0. BREADCRUMBS
==========================================================*/
#breadcrumbs, #breadcrumbs span, #breadcrumbs a{
  font-family: var(--font-family-body);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #d5d5d5;
  text-decoration: none;
}
/*
#breadcrumbs a {
  color: #fff;
  text-decoration: none;
}
*/

#breadcrumbs a:hover {
  color: var(--secondary);
}

#breadcrumbs span {
  margin: 0 10px;
}

#breadcrumbs span:first-child {
  margin-left: 0;
}

#breadcrumbs span.breadcrumb_last {
  margin: 0 10px;
  color: #fff;
}

#breadcrumbs span i {
  font-size: 15px;
}


/*==========================================================
0. PAGE
==========================================================*/
.main {padding: 50px 0;}

.title {
	overflow: hidden;
	margin-left: -1px;
	text-align: left;
}
.title h1, .title h2 {
	color: var(--third);
	font-weight: bold;
	font-size: 35px;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
	padding-right: 25px;
  margin: 0;
  color: var(--primary);
}
.title h1::after, .title h2::after {
	content: "-";
	font-size: 2px;
	background: rgba(0, 0, 0, 0.1);
	color: rgba(0, 0, 0, 0.1);
	height: 4px;
	display: block;
	width: 2000%;
	position: absolute;
	right: -2000%;
	top: 50%;
}

/*==========================================================
0. CONTACT
==========================================================*/
#map-canvas {
	width: 100%;
	height: 250px;
	height: 355px;
	height: 490px;
	bottom: 0;
	overflow: hidden;
	margin-bottom: 20px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
}

#map-canvas iframe {border: 0;}

.cinfo address {
	padding-top: 2px;
  margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
.cinfo address p {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 7px;
}

.cinfo address a {
text-decoration: none;
color: var(--text-color);
}

.cinfo address a:hover {
color: var(--secondary);
}

.cinfo address i {
	width: 25px;
	min-width: 25px;
	text-align: center;
	color: #fff;
	margin: 4px 8px 8px 0;
	background-color: var(--third);
	padding: 5px 0;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
}


.form-group {
	margin-bottom: 1rem;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.inner-addon {
	position: relative;
}

.inner-addon i {
	position: absolute;
	top: 12px;
	padding: 0 12px;
	pointer-events: none;
	color: #858585;
  left:0;
  z-index: 1;
}

.left-addon input, .left-addon textarea {
	padding-left: 35px;
}

.form-control, .selectcorp, textarea {
  font-family: var(--font-family-body), "FontAwesome";
	width: 100%;
	height: auto;
	min-height: 40px;
	padding: 8px 10px;
	border: solid 1px rgba(0, 0, 0, 0.11);
	background-color: #f9f9f9;
	color: #777;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: none;
	-khtml-box-shadow: none;
	-ms-box-shadow: none;
	box-shadow: none;
  font-size:16px;
}

.form-control::placeholder, .selectcorp::placeholder, textarea::placeholder {
	color: #999;
	opacity: 1;
	-khtml-opacity: 1;
	filter: alpha(opacity=100);
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}

.form-control:focus, .selectcorp:focus, textarea:focus {
	border-color: #bdc3c7;
	-webkit-box-shadow: none;
	-khtml-box-shadow: none;
	-ms-box-shadow: none;
	box-shadow: none;
}

.contact-obligatoire {margin-bottom:25px;}
.recaptcha {margin-bottom:25px;}

.wpcf7-list-item {display: inline-block;margin: 0;}

form .btn {margin-bottom: 25px;}

form .fake{display:none}

.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}
.wpcf7-not-valid-tip {
	color: #dc3232;
	font-size: 1em;
	font-weight: normal;
	display: block;
}

/*==========================================================
0. Social share
==========================================================*/
.sharebtn {}
.sharebtn ul {}
.sharebtn ul li {margin-right: 10px;}
.sharebtn ul li a {}
.sharebtn ul li a i {
	display: inline-block;
	color: var(--white);
	background-color: var(--third);
	width: 40px;
	height: 40px;
	line-height: 40px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	text-align: center;
	font-size: 20px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.sharebtn ul li a:hover i {background-color: var(--secondary);}

/*==========================================================
0. Social share
==========================================================*/
.sitemap ul li {line-height: 1.6em;}
.sitemap ul li a {color: var(--primary);}
.sitemap ul li a:hover, .sitemap > ul li a:focus {color: var(--secondary);}

/*==========================================================
0. WORDPRESS
==========================================================*/
ul li::marker {color: var(--secondary);}

.wp-block-image figcaption {
	margin-top: .5em;
	margin-bottom: 1em;
	font-size: 0.9em;
}


.wp-block-image .alignleft,
.wp-block-gallery.alignleft {
	float: left;
	margin: .5em 1em .5em 0;
}

.wp-block-image .alignright,
.wp-block-gallery.alignright {
	float: right;
	margin: .5em 0 .5em 1em;
}

@media only screen and (max-width: 767px) {
.wp-block-image .alignleft,
.wp-block-image .alignright,
.wp-block-gallery.alignleft,
.wp-block-gallery.alignright {
float: none;
margin: 0 auto;
}
}

.wp-block-quote {
	overflow-wrap: break-word;
	background: var(--secondary);
	padding: 25px;
	color: #fff;
	margin: 0;
}

.wp-block-quote p {
font-size: 18px;
margin: 15px 0;
}

.has-texte-color {color: var(--text-color);}
.has-blanc-color {color: var(--white);}
.has-noir-color {color: var(--black);}
.has-bleu-color {color: var(--secondary);}
.has-marron-color {color: var(--primary);}


/*==========================================================
0. GUTENBERG BLOCKS
==========================================================*/
/*-----Cards-----*/
.wpcreations_card {
	display: flex;
	flex-direction: column;
  height: 100%;
}

.wpcreations_card h2 {
	  font-size: 16px;
		text-transform: uppercase;
    background-color: var(--secondary);
    color: var(--white);
    text-align: center;
    margin:0;
    padding: 15px 15px;
		/*
	  display: inline-block;
	  padding-left: 50px;
	  margin-top: 15px;
	  background-size: 15%;
	  background-position: left;
	  background-repeat: no-repeat;
		*/
}
.wpcreations_card_content {
	border: 2px solid #C6C6C6;
  border-top: none;
  margin:0;
	padding: 15px;
  height: 100%;
}
.wpcreations_card_content ul {margin:0; padding:0;}
.wpcreations_card_content ul li {margin:0; padding:0;}
.wpcreations_card_content ul li {
	background: url(../../images/icons/grey-left-arrow.svg) left no-repeat;
	padding: 15px 0 15px 30px;
	list-style: none;
	background-size: 12px;
	background-position: 7px;
}



/*==============================================================================================================
RESPONSIVE
==============================================================================================================*/
/*==========================================================
0. BOOTSTRAP 5 Grid
==========================================================*/
/*
Extra small <576px = xs
Small ≥576px = sm
Medium ≥768px = md
Large ≥992px = lg
X-Large ≥1200px = xl
XX-Large ≥1400px = xxl
*/
@media (min-width: 1400px) {}

@media (min-width: 1200px) {}

@media (min-width: 992px) {}

@media (min-width: 766px) {}

@media (min-width: 576px) {}



@media (max-width: 1600px) {}

@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

/*Menu break*/
@media (max-width: 992px) {
  .container {max-width:960px;}
  .flex-25 {
	  flex-basis: 50%;
  }
  .child {
    width: calc((100%/2) - 30px);
  }
  .footer-widget {margin-bottom:25px;}
  .footer-bottom-content {flex-direction: column;}
  .copyright {margin-bottom: 10px;}


}
@media (max-width: 991px) {}

@media (max-width: 768px) {
  .container {max-width:720px;}
}

@media (max-width: 767px) {}

@media (max-width: 650px) {}

@media (max-width: 575px) {
  .container {max-width:540px;}
  .footer-bottom-links {text-align: center;}
  .footer-bottom ul {flex-direction: column;}
  .footer-bottom ul li {margin-bottom: 5px; padding: 0;}
  .footer-bottom ul li::after {content: none;}
}

@media (max-width: 400px) {}

@media (max-width: 360px) {}
