@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&display=swap');

:root {
	--bleu: #487cbe;
	--bleuC: rgba(72, 124, 190, .5);
	--bleuCOP: #a3bdde;
	--bleuTC: rgba(72, 124, 190, .15);
	--jaune: #e3c035;
	--jauneC: rgba(227, 192, 53, .5);
	--gris: #777;
	--montserrat: 'Montserrat', sans-serif;
	--LH: 24pt;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	width: 100%;
	margin: auto;
	margin-top: 0;
	margin-bottom: 0;
	font-family: var(--montserrat);
	font-size: 12pt;
}

/*
 * GLOBAL
 */
.content {
	width: 100%;
	position: relative;
}

main .content, footer .content {
	padding: 40px;
}

p {
	margin: 0;
	line-height: var(--LH);
	font-size: 12pt;
	font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: 600;
	margin-bottom: 40px;
}

main h1, main h2.h1, #content h2 {
	font-size: 18pt;
	line-height: 28pt;
	color: var(--bleu);
}

main h3 {
	color: var(--bleu);
	font-size: 14pt;
	line-height: 24pt;
}

main h1::after, main h2.h1::after, main .wrapper h3::after, #content h2::after {
	content: '';
	height: 6px;
	border-radius: 3px;
	background: var(--jaune);
	width: 40px;
	display: block;
	margin-top: 15px;
}

main .wrapper h3::after, #content h3::after {
	margin: auto;
	margin-top: 10px;
}

p + h2.h1, p + h3, ul + h2.h1, ul + h3, #content p + h2, #content p + h3 {
	margin-top: 40px;
}

main p strong, main ul li strong {
	font-weight: 600;
	color: var(--bleu);
}

main ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

main ul li {
	line-height: var(--LH);
}

main ul + h2, main ul + h3 {
	margin-top: 40px;
}

main ul + p {
	margin-top: 20px;
}

main ul + .infobulle {
	margin-top: 40px;
}

main p + ul {
	margin-top: 20px;
}

main p a, main ul li a, main label a {
	color: var(--bleu);
}

main p a:hover, main p a:focus, main ul li a:hover, main ul li a:focus, main label a:hover, main label a:focus {
	color: var(--jaune);
}
/*
 * TOP
 */
header {
	width: 100%;
	height: 600px;
	position: relative;
	overflow-y: hidden;
}

header .content {
	width: 100%;
	padding: 0;
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#topBar {
	width: 100%;
	height: 100px;
	position: fixed;
	background: #FFF;
	box-shadow: 0 5px 15px 0px rgba(0, 0, 0, .2);
	z-index: 700;
}

header .logo {
	width: 280px;
	height: 100px;
	background: url("images/logo_header.webp") left no-repeat;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 7px;
	border: 0;
	padding-left: 25px;
}

header .logo span:first-of-type {
	color: var(--bleu);
	font-size: 16pt;
	font-weight: 400;
}

header .logo span:last-of-type {
	color: var(--gris);
	font-size: 11pt;
	font-weight: 300;
}

/*
 * MENU
 */
#boutonMenu {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 28pt;
	color: var(--bleu);
	cursor: pointer;
}

nav {
	width: 80%;
	max-width: 450px;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	background: #EAEAEA;
	z-index: 1000;
	overflow-y: auto;
	box-shadow: -5px 0 15px 0 rgba(0, 0, 0, .2);
	display: none;
}

#close {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28pt;
	color: var(--bleu);
	cursor: pointer;
	position: absolute;
	right: 20px;
	top: 20px;
}

nav ul {
	margin-top: 80px;
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 0;
}

nav ul li {
	min-height: 50px;
	width: 100%;
}

nav ul li a {
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-left: 20px;
	text-decoration: none;
	border: 0;
	color: var(--bleu);
	transition: all .4s ease;
}

nav ul li a:hover, nav ul li a:focus {
	background: #FFF;
}

nav ul li a.actif {
	background: var(--bleuC);
	color: #FFF;
}

/*nav ul li ul {
	display: none;
}*/

nav ul li ul {
	margin-top: 0;
	background: rgba(255, 255, 255, .7);
	display: none;
}

nav ul li ul li a {
	padding-left: 60px;
	color: var(--gris);
}

nav ul li ul li a:hover, nav ul li ul li a:focus {
	color: var(--bleu);
}

/*
 * BACKGROUND
 */
.background {
	width: 100%;
	height: 100%;
	position: relative;
	top: 0;
	z-index: 00;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 40px;
	padding-right: 40px;
}

.background .CTAS {
	display: flex;
	gap: 40px;
	margin-top: 60px;
}

.CTAS .cta {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #FFF;
	height: 50px;
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 25px;
	border: 1px solid #FFF;
	background: rgba(255, 255, 255, .2);
	backdrop-filter: blur(5px);
	box-shadow: 0 4px 10px 1px rgba(0, 0, 0, .2);
	/*text-shadow: 0 2px 6px rgba(0, 0, 0, .8);*/
	transition: all .4s ease;
}

.CTAS .cta:last-of-type {
	width: 50px;
}

.CTAS .cta:hover, .CTAS .cta:focus {
	background: #FFF;
	color: var(--bleu);
}

.background.accueil {
	background: url("images/chene.webp") bottom no-repeat;
	background-size: cover;
}

.background.magnetisme {
	background: url("images/magnetisme.webp") top no-repeat;
	background-size: cover;
}

 .background.accueil::before, .background.magnetisme::before, .background.psychosomatique::before, .background.visio::before, .background.conflits::before, .background.blog::before {
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .15);
	position: absolute;
	z-index: 0;
}

.background.accueil::before, .background.psychosomatique::before, .background.blog::before {
	background: rgba(0, 0, 0, .25);
}

.background.barreur {
	background: url("images/energie_feu.webp") top no-repeat;
	background-size: cover;
}

.background.corporelle {
	background: url("images/energie_corps_esprit.webp") top no-repeat;
	background-size: cover;
}

.background.psychotherapie {
	background: url("images/psychotherapeute.webp") top no-repeat;
	background-size: cover;
}

.background.psychosomatique {
	background: url("images/somatisation.webp") center no-repeat;
	background-size: cover;
}

.background.systemie {
	background: url("images/couple.webp") center no-repeat;
	background-size: cover;
}

.background.visio {
	background: url("images/therapie_en_ligne.webp") center no-repeat;
	background-size: cover;
}

.background.conflits {
	background: url("images/gestion_conflits.webp") center no-repeat;
	background-size: cover;
}

.background.blog {
	background: url("images/blog.webp") bottom no-repeat;
	background-size: cover;
}

.background.contact {
	background: url("images/paix.webp") top no-repeat;
	background-size: cover;
}

header svg {
	background: transparent;/*background: red;*/
	position: absolute;
	bottom: -20px;
	/*border-bottom: 2px solid #FFF;*/
	/*box-shadow: inset 0 -10px 0 0 #FFF;*/ /* Pour dissimuler le léger trait visible de la photo */
	z-index: 0;
	filter: drop-shadow(0 -15px 0 rgba(255, 255, 255, .25)); /* rgba(72, 124, 190, .25) */
}

/*
 * MAIN
 */
main {
	margin-top: -20px;
	position: relative;
	z-index: 500;
	background: #FFF;
}

.titreH1 {
	background: var(--bleu);
	border-bottom: 15px solid var(--jaune);
}

.titreH1 h1, .titreH1 p {
	color: #FFF;
	text-align: center;
}

.titreH1 p strong {
	color: #FFF;
}

.titreH1 h1::after {
	margin: auto;
	margin-top: 15px;
}

.titreH1 p {
	font-weight: 400;
	max-width: 800px;
	margin: auto;
}

.titreH1 p a:hover strong, .titreH1 p a:focus strong {
	color: var(--jaune);
}

/*
 * WRAPPER PRESTAS + ARTICLES (BLOG)
 */
.wrapper {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	align-items: flex-start;
}

.wrapper + h2 {
	margin-top: 40px;
}

.wrapper .presta, .wrapper .article {
	width: 100%;
	max-width: 340px;
	border: 1px solid var(--bleuTC);
	border-radius: 20px;
	transition: all .4s ease;
}

.wrapper .thumb {
	display: flex;
	border-radius: 20px 20px 0 0;
	width: 100%;
	height: 180px;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.wrapper .thumb img {
	width: 100%;
	height: auto;
	min-height: 180px;
	transition: all .4s ease;
}

.wrapper .presta:hover .thumb img, .wrapper .presta:focus .thumb img, .wrapper .article:hover .thumb img, .wrapper .article:focus .thumb img {
	transform: scale(1.1);
}

.wrapper .presta:hover, .wrapper .presta:focus, .wrapper .article:hover, .wrapper .article:focus {
	border-color: var(--bleu);
	/*background: var(--bleuTC);*/
}

.wrapper h3, .wrapper p {
	width: 100%;
	color: var(--bleu);
	text-align: center;
	padding-left: 15px;
	padding-right: 15px;
}

.wrapper h3 {
	margin-bottom: 20px;
	margin-top: 20px;
}

.wrapper p {
	color: currentColor;
	padding-bottom: 30px;
}

.wrapper p a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 50px;
	border-radius: 20px;
	color: var(--bleu);
	border: 1px solid var(--bleu);
	text-decoration: none;
	margin: auto;
	margin-top: 20px;
	transition: all .4s ease;
}

.wrapper p a:hover, .wrapper p a:focus {
	background: var(--bleu);
	color: #FFF;
}

.infobulle {
	border: 1px solid var(--bleu);
	border-radius: 20px;
	padding: 20px;
	position: relative;
	padding-top: 30px;
	background: var(--bleuTC);
}

p + .infobulle {
	margin-top: 40px;
}

.infobulle + h2.h1, .infobulle + p, .infobulle + ul {
	margin-top: 40px;
}

.infobulle > strong:first-child {
	width: auto;
	max-width: 80%;
	height: 40px;
	background: var(--bleu);
	color: #FFF;
	border-radius: 10px;
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
	align-items: center;
	position: absolute;
	top: -20px;
	left: 20px;
}

.illustration {
	width: 100%;
	height: 400px;
	border-radius: 20px;
	margin-top: 40px;
	margin-bottom: 40px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.illustration img {
	/*height: 100%;
	width: auto;*/
	/*min-width: 100%;*/
	min-height: 400px;
	min-width: 600px;
	width: auto;
	height: auto;
	border-radius: 20px;
}

.illustration.top {
	align-items: flex-start;
}

.arrows li::before, .classic li::before {
	content: 'arrow_circle_right';
	font-family: 'Material Icons';
	color: var(--bleu);/*color: var(--jaune);*/
	margin-right: 10px;
	font-size: 20pt;
	vertical-align: middle;
	/*transform: rotateZ(180deg);
	display: inline-block;*/
}

.classic li::before {
	content: 'chevron_right';
	color: var(--jaune);
}

/*
 * BLOG (ARTICLE)
 */
.back {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
	border: 1px solid var(--bleuC);
	color: var(--bleu);
	text-decoration: none;
	transition: all .4s ease;
}

.back:hover, .back:focus {
	background: var(--bleu);
	border-color: var(--bleu);
	color: #FFF;
}

.articleContent img {
	border-radius: 20px;
	width: 100%;
	margin: auto;
	display: block;
	max-width: 450px;
	margin-top: 0;
}

#content {
	width: 100%;
}

#content h3 {
	text-align: left;
	padding: 0;
}

#content h3::after {
	display: none;
}

#content p {
	text-align: left;
	padding: 0;
}

#content .link {
	padding-top: 20px;
	border-top: 1px solid var(--bleuC);
}

.link a {
	display: inline !important;
	border: 0 !important;
	border-radius: 0 !important;
	width: auto !important;
	transition: all 0s ease !important;
}

.link a:hover, .link:focus {
	text-decoration: underline;
	background: none !important;
	color: var(--jaune) !important;
}

/*
 * CONTACT
 */
form {
	display: flex;
	gap: 25px;
	width: 100%;
	flex-wrap: wrap;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 40px;
}

form * {
	outline: 0;
}

input:not([type="checkbox"]), textarea {
	width: 100%;
	height: 50px;
	font-family: var(--montserrat);
	font-size: 11pt;
	color: #000;
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 20px;
	border: 1px solid #CCC;
	transition: all .4s ease;
}

textarea {
	padding: 20px;
	height: 160px;
}

input:not([type="checkbox"]):hover, textarea:hover, input:not([type="checkbox"]):focus, textarea:focus {
	border-color: var(--bleu);
}

#boutonForm {
	width: 100%;
	text-align: center;
}

#boutonForm strong {
	color: var(--bleu);
}

label {
	width: 100%;
	line-height: var(--LH);
}

input[type="submit"] {
	margin: auto;
	cursor: pointer;
	width: 160px;
	background: var(--bleu);
	border: 0;
	color: #FFF;
}

input[type="submit"]:hover, input[type="submit"]:focus {
	background: var(--jaune);
}

iframe {
	width: 100%;
	border: 0;
	border-radius: 20px;
	height: 400px;
	margin-top: 40px;
}

/*
 * FOOTER
 */
footer {
	width: 100%;
	position: relative;
	background: linear-gradient(var(--bleu) 20%, var(--bleuC));
}

svg.footer {
	position: static;
	margin-top: -50px;
	margin-bottom: -15px;
	background: transparent;
	filter: drop-shadow(0 -15px 0 var(--bleuC));
}

footer p, footer a, footer h3 {
	color: #FFF;
}

footer .content {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 0;
}

footer .content .bloc {
	width: 100%;
	max-width: 350px;
}

footer .logo {
	width: 40px;
	height: 90px;
	background: url("images/logo_footer.webp") center no-repeat;
}

footer .bloc:first-of-type {
	text-align: center;
	max-width: 100%;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, .4);
}

footer .bloc:first-of-type a {
	display: block;
	width: 40px;
	height: 90px;
	border: 0;
	margin: auto;
	margin-bottom: 10px;
	text-decoration: none;
}

footer .bloc:first-of-type p span {
	display: block;
	line-height: var(--LH);
}

footer .bloc:first-of-type p span:first-of-type {
	font-size: 16pt;
	font-weight: 400;
}

footer .bloc:first-of-type p span:last-of-type {
	font-size: 11pt;
	font-weight: 300;
}

footer h3 {
	color: var(--jaune);
}

footer a {
	text-decoration: none;
}

footer a:hover, footer a:focus {
	color: var(--jaune);
	text-decoration: underline;
}

footer .content > p:last-child {
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, .4);
	padding-top: 40px;
	text-align: center;
	font-size: 11pt;
}

footer .content > p:last-child a:hover, footer .content > p:last-child a:focus {
	color: #FFF;
}

@media screen and (max-width: 413px) {
	.CTAS {
		height: auto !important;
		max-height: auto;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 0;
	}
}

/*
 * VERSION PC
 */
@media screen and (min-width: 1200px) {
	.content {
		width: 1200px;
		margin: auto;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	
	header .content {
		width: 1200px;
	}
	
	header {
		height: 800px;
	}
	
	header svg {
		bottom: 50px;
	}
	
	main .content, footer .content {
		padding-left: 0;
		padding-right: 0;
	}
	
	main {
		margin-top: -90px;
	}
	
	#boutonMenu, #close {
		display: none;
	}
	
	nav {
		display: block;
		max-width: none;
		height: auto;
		position: relative;
		right: auto;
		box-shadow: none;
		background: #FFF;
		overflow-y: inherit;
	}
	
	nav ul {
		flex-direction: row;
		margin-top: 0;
		height: 100%;
		align-items: center;
		margin-bottom: 0;
		gap: 15px;
		justify-content: flex-end;
	}
	
	nav ul li {
		position: relative;
		height: 100px;
		display: flex;
		align-items: center;
	}
	
	nav ul li, nav ul li a {
		width: auto;
	}
	
	nav ul li a {
		padding-left: 20px;
		padding-right: 20px;
		color: var(--gris);
		border-radius: 18px;
	}
	
	nav ul li a:hover, nav ul li a:focus {
		background: #F3F3F3;
	}
	
	nav ul li a.actif {
		background: var(--bleuTC);
		color: var(--bleu);
	}
	
	nav ul li ul {
		width: 300px;
		position: absolute;
		left: 0;
		top: 100px;
		z-index: 1000;
		background: rgba(230, 230, 230, .8);
		backdrop-filter: blur(3px);
		height: auto;
		border-radius: 0 0 18px 18px;
		display: none;
		flex-wrap: wrap;
		gap: 0;
	}
	
	nav ul li ul li {
		height: 50px;
		width: 100%;
	}
	
	nav ul li:hover ul, nav ul li:focus ul {
		display: block;
	}
	
	nav ul li ul li a {
		padding-left: 20px;
		width: 100%;
		border-radius: 0;
	}
	
	nav ul li ul li:last-of-type a {
		border-radius: 0 0 18px 18px;
	}
	
	nav ul li ul li a:hover, nav ul li ul li a:focus {
		background: var(--bleuTC);
	}
	
	.background .CTAS {
		margin-top: 0;
	}
	
	/*.illustration img {
		width: 100%;
		height: auto;
	}*/
	
	.wrapper .thumb {
		height: 200px;
	}

	.wrapper .thumb img {
		min-height: 220px;
	}
	
	/*
	 * BLOG (ARTICLE)
	 */
	.articleContent {
		justify-content: flex-start;
		align-items: flex-start !important;
	}
	.articleContent img {
		position: sticky;
		top: 140px;
	}
	
	#content {
		width: calc(100% - 490px);
	}
	
	/*
	 * CONTACT
	 */
	form {
		width: 625px;
	}
	
	input:not([type="checkbox"]) {
		max-width: 300px;
	}
	
	/*
	 * FOOTER
	 */
	footer .content {
		justify-content: center;
		padding-top: 10px;
	}
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
	#topBar .logo {
		background: url("images/logo_header_2x.webp") left no-repeat;
		background-size: 40px 90px;
	}
	
	footer .logo {
		background: url("images/logo_footer_2x.webp") center no-repeat;
		background-size: 40px 90px;
	}
}