/*
	GLOBAL
	Feuille de style générale

	SOMMAIRE
	Typographie
	Mise en page
	Tableaux
	Utilitaires
	Responsive
	Impression
*/

/*-----------------------------------------------------------------------
  == Typographie
----------------------------------------------------------------------- */
* {
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
body {
	margin: 0;
	background: #EFEFEF;
	font-size: 1.6rem;
	line-height: 1.5;
	font-family: 'Archivo', Arial, sans-serif;
	color: #333;
	overflow-x: hidden;
}
@media (max-width: 991px) {
	body {
		transition: .3s ease all;
	}
	body.menu-open {
		-ms-transform: translateX(250px);
		-webkit-transform: translateX(250px);
		transform: translateX(250px);
	}
	body.menu-open::after {
		content: '';
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: #353535;
		opacity: 0.5;
		z-index: 999;
	}
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	text-rendering: optimizeLegibility;
	font-weight: normal;
	line-height: 1em;
}
p, ul, ol {
	margin: 0;
	padding: 0;
}
a {
	text-decoration: underline;
}
a:hover, a:focus {
	text-decoration: none;
}
figure {
	margin: 0;
}

/*-----------------------------------------------------------------------
  == Titres
----------------------------------------------------------------------- */

.title-h2 {
	margin: 0 0 40px;
	text-align: center;
	text-transform: uppercase;
	color: #111;
	font-family: 'Poppins', sans-serif;
	font-size: 2.2rem;
	font-weight: 600;
}
@media (max-width: 767px) {
	.title-h2 br {
		display: none;
	}
}
@media (min-width: 768px) {
    .title-h2 {
		padding: 0 30px;
        font-size: 2.4rem;
    }
}
.title-h2::after {
	content: '';
	display: block;
	margin: 30px auto 0;
	width: 50px;
	height: 4px;
	background-image: linear-gradient(-90deg, #5CC5ED 0%, #59BFAC 100%);
}
.title-h2 span {
	display: block;
	margin-top: 5px;
	font-family: 'Archivo', Arial, sans-serif;
	font-size: 1.8rem;
	color: #7F7F7F;
	text-transform: none;
	font-weight: 600;
}

/*-----------------------------------------------------------------------
  == Mise en page
----------------------------------------------------------------------- */

.global {
	min-height: 400px;
	padding: 50px 0;
}
.wrap {
	margin: 0 auto;
	max-width: 1380px;
	padding: 0 30px;
}

/*-----------------------------------------------------------------------
  == Boutons
----------------------------------------------------------------------- */

.btn, .gform_footer input[type=submit], .btn-wrap a {
	display: inline-block;
	vertical-align: middle;
	padding: 18px 30px;
	border-radius: 3px;
	text-transform: uppercase;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.2;
	border: 0 !important;
	text-decoration: none !important;
	font-family: 'Poppins', sans-serif;
	text-align: center;
	cursor: pointer;
}
.btn_blue {
	color: #fff !important;
	background-color: #007AA5 !important;
}
.btn_green, .gform_footer input[type=submit], .btn-wrap a {
	color: #fff !important;
	background-color: #24B0B3 !important;
}
.btn_white {
	color: #333 !important;
	background-color: #fff !important;
}
.content p.btn-wrap {
	margin: 30px 0;
	text-align: center;
}

/*-----------------------------------------------------------------------
  == Tableaux
----------------------------------------------------------------------- */

table {
	width: 100%;
	vertical-align: top;
}
th {
	font-weight: normal;
	text-align: left;
}
td {
	vertical-align: top
}

/*-----------------------------------------------------------------------
  == Formulaires
----------------------------------------------------------------------- */
div.gform_wrapper {
    max-width: 650px;
    margin: 0 auto;
}
div.gform_wrapper h3.gform_title {
	font-weight: 600;
}
div.gform_wrapper input[type=text],
div.gform_wrapper input[type=email],
div.gform_wrapper input[type=tel],
div.gform_wrapper input[type=url],
div.gform_wrapper textarea {
	width: 100% !important;
	padding: 10px 10px !important;
	border: 1px solid #24B0B3;
	font-family: 'Archivo', Arial, sans-serif !important;
	font-size: 1.4rem !important;
}
div.gform_wrapper ul li.gfield_html {
	padding: 20px !important;
	font-size: 1.4rem;
	background: #f7f7f7;
}
div.gform_wrapper ul li.gfield {
	padding-left: 0;
	padding-right: 0 !important;
}
div.gform_wrapper ul li.gfield::before {
	content: none !important;
}
div.gform_wrapper .top_label .gfield_label {
	font-weight: 600 !important;
}
div.gform_footer {
	text-align: right;
}
div.gform_footer input[type=submit] {
	margin-right: 0 !important;
}
.gform_wrapper.gf_browser_chrome .gfield_checkbox li input,
.gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox],
.gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {
	margin-top: 2px !important;
}
div.gform_confirmation_wrapper {
	background: #24B0B3;
	color: #fff;
	padding: 20px !important;
	font-style: italic;
}

/*-----------------------------------------------------------------------
  == Contenus
----------------------------------------------------------------------- */
.content p, .content ul {
	margin-bottom: 20px;
}
.content p:last-child, .content ul:last-child {
	margin-bottom: 0;
}
.content > ul li {
	position: relative;
	margin-bottom: 10px;
	padding: 0 0 0 30px;
	list-style: none;
}
.content > ul li::before {
	content: '';
	position: absolute;
	top: 9px;
	left: 12px;
	background: #007AA5;
	width: 6px;
	height: 6px;
}
.content > ul ul {
	margin: 5px 0 0 10px;
}
.content > ul ul li {
	list-style: circle;
}
.content a {
	color: #111;
}
.content img {
	height: auto;
}
.content iframe {
	display: block;
	margin: 0 auto 20px;
}
.content h2 {
	margin: 30px 0 20px;
	font-size: 28px;
}
.content h2:first-child, .content h3:first-child {
	margin-top: 0;
}
.content h3 {
	margin: 30px 0 15px;
	font-family: 'Poppins', sans-serif;
	font-size: 1.9rem;
	line-height: 1.3;
	font-weight: 600;
	color: #007AA5;
}
.content .alignleft, .content .alignright  {
	display: block;
	margin: 20px 0;
}
@media (min-width: 768px) {
	.content .alignleft {
		margin: 0 20px 20px 0;
		float: left;
	}
	.content .alignright {
		margin: 0 0 20px 20px;
		float: right;
	}
}
.content .aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.content .wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	margin-bottom: 20px;
}
.content .wp-caption .wp-caption-text, .content .gallery-caption, .entry-caption {
	font-style: italic;
	font-size: 12px;
	line-height: 1.5em;
	color: #888;
	text-align: center;
}
.gallery {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}
.gallery img {
	display: block;
	width: 100%;
	height: auto;
}
.gallery .gallery-item {
	padding: 0 10px 20px;
}
.gallery.gallery-columns-2 .gallery-item {
	width: calc(100% / 2);
}
.gallery.gallery-columns-3 .gallery-item {
	width: calc(100% / 3);
}
.gallery.gallery-columns-4 .gallery-item {
	width: calc(100% / 4);
}
.gallery.gallery-columns-5 .gallery-item {
	width: calc(100% / 5);
}
.gallery.gallery-columns-6 .gallery-item {
	width: calc(100% / 6);
}
.gallery.gallery-columns-7 .gallery-item {
	width: calc(100% / 7);
}
.gallery.gallery-columns-8 .gallery-item {
	width: calc(100% / 8);
}

/*-----------------------------------------------------------------------
  == Utilitaires
----------------------------------------------------------------------- */

/* Clearfix (cf. http://nicolasgallagher.com/micro-clearfix-hack) */
.cf {
	zoom: 1;
}
.cf:before, .cf:after {
	content: "";
	display: block;
}
.cf:after {
	clear: both;
}

/* Alignements */
.align-left {
	text-align: left;
}
.align-center {
	text-align: center;
}
.align-right {
	text-align: right;
}

/* Masque le contenu visuellement */
.is-hidden {
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	border: 0;
}
@media(min-width: 992px){
	.hide-desktop {
		display: none;
	}
}


/*-----------------------------------------------------------------------
  == Responsive
----------------------------------------------------------------------- */

/* Valeurs maximales */
img, table, td, blockquote, code, pre, textarea, input, iframe, object, embed, video {
	max-width: 100%;
}
/* Corrections Viewport */
@-webkit-viewport {
	width: device-width;
	zoom: 1.0;
}
@-moz-viewport {
	width: device-width;
	zoom: 1.0;
}
@-ms-viewport {
	width: device-width;
	zoom: 1.0;
}
@-o-viewport {
	width: device-width;
	zoom: 1.0;
}
@viewport {
	width: device-width;
	zoom: 1.0;
}


/*-----------------------------------------------------------------------
  == Impression
----------------------------------------------------------------------- */
@media print {
	p, blockquote {
		orphans: 2;
		widows: 2;
	}
	blockquote, ul, ol {
		page-break-inside: avoid;
	}
	h1, h2, h3, caption {
		page-break-after: avoid;
	}
}


/*-----------------------------------------------------------------------
  == Pagination
----------------------------------------------------------------------- */
.wp-pagenavi {
	margin: 30px 0;
	text-align: center;
	font-size: 1.5rem;
}
.wp-pagenavi a.page, .wp-pagenavi span.current, .wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
	  display: inline-block;
	  vertical-align: middle;
	  text-decoration: none;
	  text-align: center;
	  margin-right: 8px;
	  width: 30px;
	  height: 30px;
	  line-height: 30px;
	  background: #fff;
	  border-radius: 50px; }
	@media (max-width: 767px) {
	  .wp-pagenavi a.page, .wp-pagenavi span.current {
		display: none; }
	  .wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 2.4rem; } }
	.wp-pagenavi a {
	  text-decoration: none;
	  color: #7D7D7D;
	  -webkit-transition: .1s ease-in-out all;
	  -o-transition: .1s ease-in-out all;
	  transition: .1s ease-in-out all; }
	.wp-pagenavi a:last-child, .wp-pagenavi span:last-child {
	  margin-right: 0; }
	.wp-pagenavi a:hover, .wp-pagenavi a:focus {
	  background: #24B0B3;
	  color: #fff; }
	.wp-pagenavi span.current {
	  background: #24B0B3;
	  color: #fff; }
	.wp-pagenavi .pages {
	  display: inline-block;
	  vertical-align: middle;
	  margin-right: 15px;
	  border: 0;
	  background: transparent;
	  font-size: 1.4rem; }

/*-----------------------------------------------------------------------
  == Scroll vers le haut de page
----------------------------------------------------------------------- */
#scrollUp {
    bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
    background: rgba(0,0,0,.3) url(../img/arrow-link-white.svg) no-repeat center center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
	border-radius: 50px;
	transform: rotate(-90deg);
    transition: background 200ms linear;
}
@media(max-width: 768px) {
	#scrollUp {
		width: 40px;
		height: 40px;
		background-size: 12px 12px;
	}
}