@charset "UTF-8";
/*
$pink:#FF7E69;
$blue:#88CAC2;
$green:#C8D330;
*/
@font-face {
	font-family: "OutfitBlack";
	src: url("../fonts/Outfit-Black.woff2") format("woff2"), url("../fonts/Outfit-Black.woff") format("woff");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "OutfitExtraBold";
	src: url("../fonts/Outfit-ExtraBold.woff2") format("woff2"), url("../fonts/Outfit-ExtraBold.woff") format("woff");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "OutfitBold";
	src: url("../fonts/Outfit-Bold.woff2") format("woff2"), url("../fonts/Outfit-Bold.woff") format("woff");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "OutfitSemiBold";
	src: url("../fonts/Outfit-SemiBold.woff2") format("woff2"), url("../fonts/Outfit-SemiBold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "OutfitMedium";
	src: url("../fonts/Outfit-Medium.woff2") format("woff2"), url("../fonts/Outfit-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "OutfitRegular";
	src: url("../fonts/Outfit-Regular.woff2") format("woff2"), url("../fonts/Outfit-Regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "OutfitLight";
	src: url("../fonts/Outfit-Light.woff2") format("woff2"), url("../fonts/Outfit-Light.woff") format("woff");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "OutfitExtraLight";
	src: url("../fonts/Outfit-ExtraLight.woff2") format("woff2"), url("../fonts/Outfit-ExtraLight.woff") format("woff");
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "OutfitThin";
	src: url("../fonts/Outfit-Thin.woff2") format("woff2"), url("../fonts/Outfit-Thin.woff") format("woff");
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}
/*
	Pour les typos on a : 

	OutfitExtraBold (pareil que bold)
	OutfitBlack
	OutfitBold (700)
	OutfitSemiBold 600
	OutfitMedium 500
	OutfitRegular (normal / 400)
	OutfitLight 300
	OutfitExtraLight 200
	OutfitThin 100

	Qu'est-ce qui est vraiment utilisé dans les maquettes ? 

*/
body {
	font-family: "OutfitRegular", sans-serif;
	margin: 0px;
	padding: 0px;
	background-color: white;
	color: rgb(21, 60, 63);
}
body.visited .box-shadow {
	box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.25);
}

html {
	scroll-behavior: smooth;
}

/*
body.visited *{
	// remove all animations
	animation-name:none !important;

}
*/
a.sort {
	opacity: 0.3;
	transition: all 1s ease-in-out;
}
a.sort.active {
	opacity: 1;
}

@media screen and (min-width: 768px) {
	.contained {
		max-width: 75%;
		margin-left: auto;
		margin-right: auto;
	}
}

iframe {
	display: block;
	aspect-ratio: 16/9;
}

svg {
	display: block;
}
svg * {
	transform-box: fill-box;
}

* {
	word-break: break-word;
	box-sizing: border-box;
}

a,
a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
	color: inherit;
}

main {
	min-height: 100vh;
}

svg.separateur {
	width: 64px;
	margin-left: auto;
	margin-right: auto;
	height:auto;
}

@media screen and (min-width: 768px) {
	.mobile-br {
		display: none;
	}
}
.box-shadow.animation {
	animation-name: boxShadowAnimation;
	animation-duration: 1s;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
}
@keyframes boxShadowAnimation {
	0% {
		box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
	}
	100% {
		box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.25);
	}
}

.page-post #mainPost {
	margin-top: 150px;
}
.page-post .main-grid {
	margin-top: 100px;
	margin-bottom: 100px;
	padding-right: 0px;
	padding-left: 0px;
}
@media screen and (min-width: 1200px) {
	.page-post .main-grid {
		margin-top: 200px;
		margin-bottom: 200px;
	}
}

/*
$pink:#FF7E69;
$blue:#88CAC2;
$green:#C8D330;
*/
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeInScale {
	0% {
		opacity: 0;
		transform: translateX(25px) translateY(75px) scale(0.5);
	}
	100% {
		opacity: 1;
		transform: translateX(25px) translateY(75px) scale(1);
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 1;
		transform: translate3d(0px, 0px, 0px);
	}
	100% {
		opacity: 0;
		transform: translate3d(0px, -25px, 0px);
	}
}
svg.clefsdedos.animation {
	overflow: visible;
}
svg.clefsdedos.animation .letter {
	opacity: 0;
	transform: scale(0);
	transform-origin: center center;
	animation-name: letterAnimation;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-delay: 0.5s;
}
@keyframes letterAnimation {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	80% {
		transform: scale(1.25);
		opacity: 0.7;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
svg.clefsdedos.animation .ellipse-contour {
	opacity: 1;
	animation-name: curveOdash;
	animation-fill-mode: forwards;
	animation-duration: 5s;
	animation-delay: 3.25s;
	stroke: #153c3f;
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
}
@keyframes curveOdash {
	to {
		stroke-dashoffset: 0;
	}
}
svg.clefsdedos.animation .circle-pink {
	opacity: 0;
	transform: scale(0);
	transform-origin: center center;
	animation-name: circleAnimation;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-delay: 2s;
}
svg.clefsdedos.animation .circle-green {
	opacity: 0;
	transform: scale(0);
	transform-origin: center center;
	animation-name: circleAnimation;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-delay: 2.4s;
}
svg.clefsdedos.animation .circle-blue {
	opacity: 0;
	transform: scale(0);
	transform-origin: center center;
	animation-name: circleAnimation;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-delay: 2.8s;
}
@keyframes circleAnimation {
	to {
		transform: scale(1);
		opacity: 1;
	}
}
svg.clefsdedos.animation .separateur {
	opacity: 0;
	animation-name: separateurAnimation;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-delay: 4s;
}
@keyframes separateurAnimation {
	to {
		opacity: 1;
	}
}

svg.logo-minimaliste {
	opacity: 0;
}

svg.logo-minimaliste.observed {
	opacity: 1;
	overflow: visible;
}
svg.logo-minimaliste.observed * {
	transform-box: fill-box;
}
svg.logo-minimaliste.observed .ellipse-contour {
	opacity: 1;
	animation-name: curveOdash;
	animation-fill-mode: forwards;
	animation-duration: 5s;
	animation-delay: 1s;
	stroke: #153c3f;
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
}
@keyframes curveOdash {
	to {
		stroke-dashoffset: 0;
	}
}
svg.logo-minimaliste.observed .circle-pink {
	opacity: 0;
	transform: scale(0);
	transform-origin: center center;
	animation-name: circleAnimation;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-delay: 0s;
}
svg.logo-minimaliste.observed .circle-green {
	opacity: 0;
	transform: scale(0);
	transform-origin: center center;
	animation-name: circleAnimation;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-delay: 0.4s;
}
svg.logo-minimaliste.observed .circle-blue {
	opacity: 0;
	transform: scale(0);
	transform-origin: center center;
	animation-name: circleAnimation;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-delay: 0.8s;
}
@keyframes circleAnimation {
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.header {
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	padding: 15px;
	background-color: white;
	position: relative;
}
.header-container .header-apropos {
	display: flex;
	align-items: center;
	justify-content: space-between;
	opacity: 0;
	animation-name: headerAproposAnimation;
	animation-duration: 1s;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
	animation-delay: 8.5s;
}
@media screen and (min-width: 768px) {
	.header-container .header-apropos {
		justify-content: end;
	}
}
@keyframes headerAproposAnimation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.header-container a.apropos-link {
	text-transform: uppercase;
}
@media screen and (min-width: 768px) {
	.header-container .header-apropos .socials {
		display: none;
	}
	.header-container a.apropos-link {
		visibility: visible;
		opacity: 0;
		transition: all 1s ease-out;
	}
	.header-container a.apropos-link.scrolled {
		opacity: 1;
	}
}

#headerIntro {
	display: none;
}
@media screen and (min-width: 768px) {
	#headerIntro {
		opacity: 0;
		max-height: 0;
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-auto-columns: minmax(0, 1fr);
		align-items: center;
		transition: max-height 1s ease-in 1s, opacity 0.5s ease-in 1.5s;
	}
	#headerIntro .petites-phrases-header {
		align-self: end;
	}
	#headerIntro.scrolled {
		opacity: 1;
		max-height: 400px;
	}
	#headerIntro .mobile-br {
		display: block;
	}
	#headerIntro .intro-nav {
		justify-self: center;
		margin-left: 0px;
		margin-right: 0px;
	}
	#headerIntro .intro-nav a {
		opacity: 1;
	}
	#headerIntro .intro-nav a.sort--disabled {
		opacity: 0.3;
	}
	#headerIntro .infos {
		padding-left: 10px;
		text-align: right;
	}
}
@media screen and (min-width: 768px) and (min-width: 768px) {
	#headerIntro .infos {
		display: flex;
		flex-direction: column;
	}
	#headerIntro .infos .socials {
		order: 1;
	}
	#headerIntro .infos p {
		order: 2;
	}
}
@media screen and (min-width: 768px) and (min-width: 800px) {
	#headerIntro .infos {
		flex-direction: row;
		align-self: end;
		align-items: center;
	}
	#headerIntro .infos .socials {
		order: 2;
	}
	#headerIntro .infos p {
		order: 1;
	}
}
@media screen and (min-width: 768px) and (min-width: 1255px) {
	#headerIntro .infos br {
		display: none;
	}
}
@media screen and (min-width: 768px) {
	#headerIntro .infos p {
		margin: 0px;
		display: none;
	}
}
@media screen and (min-width: 768px) {
	#headerIntro .infos p {
		display: block;
	}
}

#headerLogos {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 15px;
	opacity: 0;
}
#headerLogos #Title1 {
	margin: 0px;
}
#headerLogos #Title1 svg {
	transition: opacity 1s ease-out, padding-bottom 1s ease-in, width 1s ease-in;
	width: 175px;
	padding-bottom: 15px;
}
#headerLogos #Title1 svg.scrolled {
	/*
	Le logo "clefs de dos" disparaît en mobile lors du scroll
	Pour la version desktop il reste exactement pareil
	*/
}
@media screen and (max-width: 767px) {
	#headerLogos #Title1 svg.scrolled {
		width: 0px;
		opacity: 0;
		padding-bottom: 0px;
	}
}
#headerLogos #Title2 {
	margin: 0px;
}
#headerLogos svg.unregardneuf {
	width: 135px;
	transition: width 1s ease-in;
	opacity: 0;
	/*
	Le logo "Un regard neuf sur ma spondy" s'agrandit en mobile lors du scroll
	Il y a une petite animation sur les cercles
	*/
}
#headerLogos svg.unregardneuf .circle {
	transition: all 1s ease-in;
	opacity: 0;
}
#headerLogos svg.unregardneuf .circle-1 {
	transition-delay: 0.25s;
}
#headerLogos svg.unregardneuf .circle-2 {
	transition-delay: 0.5s;
}
#headerLogos svg.unregardneuf .circle-3 {
	transition-delay: 0.75s;
}
#headerLogos svg.unregardneuf path.logo-separateur {
	opacity: 0;
}
#headerLogos svg.unregardneuf.animation {
	opacity: 0;
	animation: logo-appear;
	animation-duration: 2s;
	animation-timing-function: ease;
	animation-delay: 3.5s;
	animation-fill-mode: forwards;
}
@keyframes logo-appear {
	0% {
		opacity: 0;
		transform: translate3d(0px, -5px, 0px);
	}
	100% {
		opacity: 1;
		transform: translate3d(0px, 0px, 0px);
	}
}
#headerLogos svg.unregardneuf.scrolled {
	width: 250px;
}
#headerLogos svg.unregardneuf.scrolled .circle {
	opacity: 1;
}
@media screen and (min-width: 768px) {
	#headerLogos svg.unregardneuf.scrolled .circle {
		opacity: 0;
	}
}
@media screen and (min-width: 768px) {
	#headerLogos svg.unregardneuf.scrolled {
		width: 0px;
		opacity: 0;
	}
	#headerLogos svg.unregardneuf.scrolled .circle {
		opacity: 0;
	}
}
#headerLogos #Title2.scrolled svg path.logo-separateur {
	opacity: 1;
}

.header-mentions {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 46px;
	padding-bottom: 24px;
	background-color: white;
	box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.35);
	position: relative;
	z-index: 100;
}

.header-mentions h1.main-logo {
	min-width: 175px;
	max-width: 175px;
}

.header-mentions .nav-socials {
	display: none;
}

.header-mentions-partenaires {
	display: flex;
	align-items: center;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}

@media screen and (min-width: 768px) {
	.header-mentions .nav-socials {
		display: flex;
		position: absolute;
		right: 0px;
	}
	.header-mentions .nav-socials a {
		margin-right: 25px;
	}
	.header-mentions .nav-socials svg {
		min-width: 25px;
		max-width: 25px;
	}
}
/* header appelé par les pages */
.header-simple {
	box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.25);
	position: sticky;
	top: 0px;
	z-index: 1000;
}
.header-simple .header-simple-partenaires {
	margin-top: 30px;
	position: relative;
}
.header-simple .socials {
	display: none;
}
@media screen and (min-width: 768px) {
	.header-simple .socials {
		display: flex;
		position: absolute;
		right: 15px;
		transform: translateY(-100%);
	}
}

.visited nav.mobile-nav .sort {
	opacity: 1;
	animation-name: none;
	transition-delay: 0s !important;
	transition-property: none !important;
}

nav.mobile-nav {
	opacity: 0;
	transition: all 0.75s ease-in;
	padding-top: 20px;
	padding-bottom: 10px;
	display: flex;
	justify-content: space-between;
}
nav.mobile-nav.scrolled {
	opacity: 1;
}
@media screen and (min-width: 500px) {
	nav.mobile-nav {
		justify-content: space-around;
	}
}
@media screen and (min-width: 768px) {
	nav.mobile-nav {
		display: none;
	}
}
nav.mobile-nav .sort {
	text-transform: uppercase;
	font-size: 13px;
	display: flex;
	align-items: center;
	transition: all 1s ease;
	opacity: 0;
	animation-name: sortRevealAnimation;
	animation-duration: 1s;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
	animation-delay: 5s;
}
@media screen and (min-width: 400px) {
	nav.mobile-nav .sort {
		letter-spacing: 2px;
	}
}
@keyframes sortRevealAnimation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
nav.mobile-nav .sort--disabled {
	opacity: 0.5 !important;
}
nav.mobile-nav .sort svg {
	width: 22px;
	margin-right: 5px;
}
nav.mobile-nav .sort--histoire {
	transition-delay: 0.5s;
}
nav.mobile-nav .sort--histoire svg path {
	fill: #FF7E69;
}
nav.mobile-nav .sort--conseil {
	transition-delay: 1s;
}
nav.mobile-nav .sort--conseil svg path {
	fill: #FFE100;
}
nav.mobile-nav .sort--repere {
	transition-delay: 1.5s;
}
nav.mobile-nav .sort--repere svg path {
	fill: #CC66CC;
}

#mainIntro {
	padding-left: 15px;
	padding-right: 15px;
	max-height: 400px;
	transition: opacity 1s ease-out;
}
#mainIntro .petites-phrases {
	margin-top: 50px;
}
#mainIntro .intro-nav {
	margin-bottom: 50px;
	transition: opacity 1s ease-out;
}
#mainIntro .infos {
	display: none;
}
#mainIntro.scrolled {
	opacity: 0;
}
#mainIntro.scrolled a {
	cursor: default;
	pointer-events: none;
}

.nav-speciale {
	padding: 15px;
}
@media screen and (min-width: 768px) {
	.nav-speciale {
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		align-items: center;
		padding: 25px;
	}
}
.nav-speciale a {
	display: block;
	text-decoration: none;
	color: inherit;
	text-transform: uppercase;
	opacity: 0.35;
	transition: all 0.5s ease;
	text-align: center;
	margin-bottom: 10px;
}
.nav-speciale a.active {
	font-family: "OutfitSemiBold";
}
@media screen and (min-width: 768px) {
	.nav-speciale a {
		margin-bottom: 0px;
	}
}
.nav-speciale a:hover,
.nav-speciale a.active {
	opacity: 1;
}

.content-special {
	font-family: "OutfitLight";
	color: rgb(21, 60, 63);
}
.content-special b,
.content-special b strong {
	font-family: "OutfitMedium";
	font-weight: normal;
}
.content-special .special-section {
	display: none;
	padding: 15px;
}
.content-special .special-section.active {
	display: block;
}
.content-special .special-section__title {
	font-size: 1.4rem;
	font-weight: bold;
	color: #B9C5C5;
	text-transform: uppercase;
	text-align: center;
	margin-top: 50px;
	margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
	.content-special .special-section__title {
		letter-spacing: 5px;
	}
}
.content-special .special-section__title svg.separateur {
	margin-top: 20px;
}
.content-special .special__titre {
	font-weight: bold;
}

.socials {
	display: flex;
}
.socials a.facebook {
	margin-right: 15px;
}
.socials svg {
	width: 25px;
}

.intro {
	font-size: 13px;
}
@media screen and (min-width: 768px) {
	.intro {
		font-size: 1rem;
	}
}
@media screen and (min-width: 1920px) {
	.intro {
		font-size: 1.4rem;
	}
}
.intro .petites-phrases {
	margin-left: auto;
	margin-right: auto;
	max-width: 75%;
	text-align: center;
}
.intro .animtext {
	position: relative;
	font-size: 1.2rem;
	text-align: center;
	display: inline-block;
	font-family: "OutfitLight";
	opacity: 0;
}
.intro .animtext .letter {
	opacity: 0;
}
.intro .animtext-big {
	font-family: "OutfitSemiBold";
	font-size: 1.4rem;
	margin-top: 15px;
	margin-bottom: 30px;
	opacity: 0;
}
.intro .animtext-big .letter {
	opacity: 0;
}
@media screen and (min-width: 768px) {
	.intro {
		width: 100%;
		grid-template-columns: 1fr 1fr 1fr;
	}
}
.intro .punchline {
	color: rgb(75, 75, 75);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	font-family: "OutfitLight";
	font-size: 30px;
	text-align: center;
	margin: 0px;
	line-height: 100%;
}
.intro .punchline-2 {
	font-family: "OutfitRegular";
	margin-top: 15px;
	margin-bottom: 15px;
}
.intro .intro-nav {
	display: flex;
	justify-content: space-evenly;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}
.intro .intro-nav a {
	display: block;
	transition: all 0.75s ease;
	opacity: 0;
	max-width: 75px;
}
.intro .intro-nav a.visible {
	opacity: 1;
}
.intro .intro-nav a:not(:last-child) {
	margin-right: 30px;
}
.intro .intro-nav a.sort--disabled {
	opacity: 0.3;
}
.intro .infos {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}
.intro .infos .socials {
	display: flex;
	margin-left: 10px;
}
.intro .infos .socials svg {
	width: 25px;
}

.main-grid {
	background-color: white;
	display: grid;
	grid-auto-flow: dense;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	grid-row-gap: 15px;
	justify-content: center;
}
.main-grid .item {
	opacity: 0;
	transition-property: all;
	transition-duration: 0.75s;
	transition-timing-function: ease-in;
	position: relative;
}
.main-grid .item .pastille-title {
	text-align: center;
	position: absolute;
	z-index: 1;
	max-width: 80%;
	font-size: 30px;
	/*
	animation-name: pastilleTitle;
	animation-duration: 1s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
	animation-delay:1s;
	opacity:0;
	*/
	opacity: 0;
	transition: all 1s ease-in;
	font-family: "OutfitRegular";
}
@media screen and (min-width: 768px) {
	.main-grid .item .pastille-title {
		font-size: 20px;
	}
}
@media screen and (min-width: 1200px) {
	.main-grid .item .pastille-title {
		margin-top: 20px;
	}
}
.main-grid .item .pastille-title--revealed {
	opacity: 1;
}
.main-grid .item .pastille-title b {
	font-family: "OutfitSemiBold";
	font-weight: normal;
}
@keyframes pastilleTitle {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.main-grid .item:hover {
	opacity: 1;
}
.main-grid .item--revealed {
	opacity: 1;
}
.main-grid .item--removed {
	display: none;
}
.main-grid .item--active {
	transition-delay: 0s !important;
	opacity: 1;
}
.main-grid .item--active .vignette svg .vertical {
	opacity: 0;
}
.main-grid .item--disabled {
	transition-delay: 0s !important;
	opacity: 1;
}
@media screen and (min-width: 768px) {
	.main-grid .item--disabled {
		opacity: 0.3;
	}
}
.main-grid .next-line {
	grid-column: 1/span 1;
	transition: all 2s ease-in;
}
.main-grid .next-line.active {
	display: block;
}
@media screen and (min-width: 768px) {
	.main-grid {
		grid-gap: 15px;
		padding-right: 15px;
		padding-left: 15px;
		grid-template-columns: repeat(3, minmax(100px, 360px));
	}
	.main-grid .next-line {
		grid-column: 1/span 3;
	}
}
@media screen and (min-width: 1200px) {
	.main-grid {
		grid-template-columns: repeat(5, minmax(100px, 360px));
	}
	.main-grid .next-line {
		grid-column: 1/span 5;
	}
}
.main-grid .vignette {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	aspect-ratio: 1/1;
	transform-origin: center center;
	margin-left: 15px;
	margin-right: 15px;
	padding: 15px;
	transition-property: all;
	transition-duration: 1s;
	transition-timing-function: ease;
	transition-delay: 0s;
}
@media screen and (min-width: 768px) {
	.main-grid .vignette {
		margin: 0px;
	}
}
.main-grid .vignette:hover {
	opacity: 1 !important;
}
.main-grid .vignette svg {
	transition: all 0.5s ease-out;
}
@media screen and (min-width: 768px) {
	.main-grid .vignette svg:hover {
		transform: scale(1.1);
	}
}
.main-grid .vignette svg * {
	transform-box: view-box;
}
.main-grid .vignette svg .picto {
	opacity: 0;
	transform: scale(0.5);
	transform-origin: center center;
}
.main-grid .vignette svg .picto.animation {
	animation-name: picto;
	animation-duration: 1s;
	animation-timing-function: ease;
	animation-delay: 0s;
	animation-fill-mode: forwards;
}
@keyframes picto {
	0% {
		opacity: 0;
		transform: scale(0.5);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
.main-grid .vignette svg .color {
	opacity: 0;
	animation-name: pictoColorTouch;
	animation-duration: 1s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
@keyframes pictoColorTouch {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.main-grid .vignette svg .circle {
	border: 1px dashed green;
	opacity: 0;
	transform: scale(1);
	transform-origin: center center;
}
.main-grid .vignette svg .circle.animation {
	animation-name: svgCircle;
	animation-duration: 1s;
	animation-timing-function: ease;
	animation-delay: 0s;
	animation-fill-mode: forwards;
}
@keyframes svgCircle {
	0% {
		opacity: 0;
		transform: scale(0);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
.main-grid .vignette svg .letters path,
.main-grid .vignette svg .letter rect {
	opacity: 0;
}
.main-grid .vignette svg .letters path.animation,
.main-grid .vignette svg .letter rect.animation {
	animation-name: svgLetter;
	animation-duration: 1s;
	animation-timing-function: ease;
	animation-delay: 1s;
	animation-fill-mode: forwards;
}
@keyframes svgLetter {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.main-grid .vignette svg .sign {
	opacity: 0;
}
.main-grid .vignette svg .sign.animation {
	animation-name: svgSign;
	animation-duration: 1s;
	animation-timing-function: ease;
	animation-delay: 2s;
	animation-fill-mode: forwards;
}
@keyframes svgSign {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@media screen and (min-width: 768px) {
	.main-grid .vignette svg .sign {
		display: none;
	}
}
.main-grid .vignette--disabled {
	opacity: 0.3 !important;
}
.main-grid .vignette--hidden {
	transform: scale(0);
	opacity: 0;
	display: flex;
}
.main-grid .vignette--removed {
	display: none;
}
.main-grid .vignette--histoire {
	background-color: #FF7E69;
}
.main-grid .vignette--conseil {
	background-color: #FFE100;
}
.main-grid .vignette--repere {
	background-color: #CC66CC;
}
.main-grid .vignette.vignette--active svg .sign .vertical {
	visibility: hidden;
}
.main-grid .post-hidden {
	display: none;
	/*
	&.active{
		display:block;
	}
	*/
}

@media screen and (min-width: 768px) {
	.post {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 15px;
	}
}
@media screen and (min-width: 1024px) {
	.post {
		align-items: center;
	}
}
@media screen and (min-width: 1200px) {
	.post {
		display: grid;
		grid-template-columns: 2fr 1fr;
	}
}
.post iframe {
	transition: all 2s ease-in;
	display: block;
	aspect-ratio: 16/9;
	width: 100%;
	position: relative;
	z-index: 999;
	opacity: 0;
	animation-name: iframeFadeIn;
	animation-duration: 3s;
	animation-delay: 1.5s;
	animation-fill-mode: forwards;
}
@keyframes iframeFadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.post .side {
	padding: 15px;
	position: relative;
	opacity: 0;
	animation-name: sideAnimation;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-timing-function: ease-in-out;
	transform: translate3d(-15px, 0px, 0px);
}
@media screen and (min-width: 1024px) {
	.post .side .side-content {
		width: 75%;
		margin-left: auto;
		margin-right: auto;
	}
}
@keyframes sideAnimation {
	0% {
		opacity: 0;
		transform: translate3d(-15px, 0px, 0px);
	}
	100% {
		opacity: 1;
		transform: translate3d(0px, 0px, 0px);
	}
}
@media screen and (min-width: 768px) {
	.post .side {
		padding: 0px;
	}
}
.post .side .guillemets {
	margin-top: 20px;
}
.post .side .guillemets svg {
	width: 20px;
	height: auto;
}
.post .side .guillemets--histoire svg path {
	fill: #FF7E69;
}
.post .side .guillemets--conseil svg path {
	fill: #FFE100;
}
.post .side .guillemets--repere svg path {
	fill: #CC66CC;
}
.post .side .title {
	font-family: "OutfitThin";
}
.post .side .title b {
	font-family: "OutfitRegular";
	font-weight: normal;
}
.post .side .title-1 {
	font-size: 1.5rem;
	font-weight: normal;
}
@media screen and (min-width: 1024px) {
	.post .side .title-1 {
		font-size: 1.8rem;
	}
}
.post .side .title-2 {
	font-weight: normal;
	font-size: 1.2rem;
	letter-spacing: 1px;
	font-family: "OutfitLight";
}
@media screen and (min-width: 1024px) {
	.post .side .title-2 {
		font-size: 1.4rem;
	}
}
.post .side .title-2--histoire {
	color: #FF7E69;
}
.post .side .title-2--conseil {
	color: #E8C200;
}
.post .side .title-2--repere {
	color: #CC66CC;
}
.post .side .text {
	line-height: 160%;
}
.post .side .text--histoire {
	color: #FF7E69;
}
.post .side .text--conseil {
	color: #E8C200;
}
.post .side .text--repere {
	color: #CC66CC;
}
.post .side .btn-partage {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	margin-top: 20px;
	margin-bottom: 20px;
}
.post .side .btn-partage:hover {
	cursor: pointer;
}
.post .side .btn-partage svg {
	width: 33px;
}
.post .side .btn-partage svg path {
	stroke: rgb(21, 60, 63) !important;
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(25px, 0, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
.layout {
	min-height: 150vh;
	margin-bottom: 150px;
}
.layout .layout__grid {
	display: grid;
}
.layout .layout__grid > iframe {
	position: relative;
	z-index: 1;
	width: 100%;
	opacity: 0;
	animation-name: fadeInRight;
	animation-duration: 1s;
	animation-delay: 1s;
	animation-fill-mode: forwards;
}
.layout .layout__circle {
	max-width: 500px;
	position: relative;
	aspect-ratio: 1/1;
	z-index: 0;
	background-image: radial-gradient(circle at 30% 30%, rgb(255, 125, 105) 0%, rgb(255, 125, 105) 70%, rgba(255, 125, 105, 0) 70.3%);
	background-position: -35px -55px;
	background-repeat: no-repeat;
	opacity: 0;
	animation-name: fadeIn;
	animation-duration: 1.5s;
	animation-delay: 3s;
	animation-fill-mode: forwards;
}
.layout .content {
	width: 100%;
	height: 100%;
	position: relative;
	margin: 0;
	color: white;
	font-family: "OutfitLight";
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 20px;
	font-size: 16px;
	opacity: 0;
	animation-name: fadeInContentText;
	animation-duration: 1s;
	animation-delay: 3.5s;
	animation-fill-mode: forwards;
}
@keyframes fadeInContentText {
	0% {
		opacity: 0;
		transform: translate3d(25px, 0px, 0px);
	}
	100% {
		opacity: 1;
		transform: translate3d(0px, 0px, 0px);
	}
}
.layout .group {
	position: relative;
	min-height: 250px;
}
.layout .layout__title {
	text-transform: uppercase;
	padding: 0px;
	margin: 0px;
	font-family: "OutfitBold";
	font-weight: normal;
	font-size: 16px;
}
.layout .btn-partage-desktop {
	display: none;
	cursor: pointer;
}
.layout .btn-partage-mobile {
	cursor: pointer;
	position: relative;
	width: 135px;
	z-index: 1;
	display: block;
	position: absolute;
	bottom: 0px;
	right: 0px;
	transform: translate3d(-35px, -35px, 0px);
}
@media screen and (min-width: 430px) {
	.layout .btn-partage-mobile {
		transform: translate3d(-50px, -50px, 0px);
	}
}
@media screen and (min-width: 768px) {
	.layout .layout__grid {
		grid-template-columns: auto 1fr;
	}
	.layout .layout__grid > iframe {
		width: 60vw;
	}
	.layout .layout__circle {
		transform: translate3d(-50px, 150px, 0px);
		background-position: 0px 0px;
		background-image: radial-gradient(ellipse at center, rgb(255, 125, 105) 0%, rgb(255, 125, 105) 70%, rgba(255, 125, 105, 0) 70.3%);
		width: 350px;
	}
	.layout .content {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		letter-spacing: 1.25px;
		padding-top: 0px;
		padding-left: 65px;
	}
	.layout .btn-partage-mobile {
		display: none;
	}
	.layout .btn-partage-desktop {
		display: block;
		margin-top: 20px;
		display: flex;
		align-items: center;
	}
	.layout .btn-partage-desktop svg {
		width: 40px;
	}
}
@media screen and (min-width: 1200px) {
	.layout .layout__circle {
		max-width: none;
		width: 450px;
	}
}
@media screen and (min-width: 1500px) {
	.layout .layout__circle {
		transform: translate3d(-75px, 300px, 0px);
	}
}
@media screen and (min-width: 1600px) {
	.layout .layout__grid {
		margin-bottom: 150px;
	}
	.layout .layout__circle {
		width: 650px;
	}
	.layout .layout__title {
		font-size: 30px;
	}
	.layout .layout__grid .content {
		display: block;
		padding-top: 125px;
		padding-left: 125px;
		font-size: 30px;
	}
}
@media screen and (min-width: 1920px) {
	.layout .layout__circle {
		max-width: none;
		transform: translate3d(-178px, 154px, 0px);
		width: 833px;
	}
	.layout .layout__title {
		font-size: 30px;
	}
	.layout .content {
		line-height: 120%;
		padding-top: 150px;
		padding-left: 225px;
		padding-right: 50px;
	}
	.layout .layout__grid > iframe {
		width: 1200px;
	}
}

.heading {
	position: relative;
	z-index: 6;
	background: white;
	display: flex;
	justify-content: center;
	width: 100%;
}
@media screen and (min-width: 768px) {
	.heading {
		justify-content: space-between;
	}
}
.heading .block {
	display: flex;
	flex-direction: column;
	position: relative;
}
.heading .block .guillemets {
	width: 25px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 35px;
	margin-bottom: 10px;
	width: 30px;
	opacity: 0;
	animation-name: fadeIn;
	animation-duration: 1s;
	animation-delay: 1.5s;
	animation-fill-mode: forwards;
}
.heading .block .title {
	text-align: center;
	font-family: "OutfitThin";
	margin: 0px;
	letter-spacing: 1px;
	line-height: 110%;
	padding-bottom: 40px;
	font-size: 30px;
	position: relative;
	opacity: 0;
	animation-name: fadeIn;
	animation-duration: 1s;
	animation-delay: 2s;
	animation-fill-mode: forwards;
}
@media screen and (min-width: 1200px) {
	.heading .block .title {
		font-size: 40px;
	}
}
.heading .block .title b {
	font-family: "OutfitRegular";
	font-weight: normal;
}
.heading .block::after {
	content: "";
	background: url("../svg/deco/cercle-ouvert.svg");
	width: 155px;
	height: 155px;
	display: block;
	position: absolute;
	bottom: 0px;
	transform: translate3d(75%, 15%, 0px);
	opacity: 0;
	animation-name: fadeIn;
	animation-duration: 1s;
	animation-delay: 2.5s;
	animation-fill-mode: forwards;
}
@media screen and (min-width: 768px) {
	.heading .block::after {
		right: 0px;
		transform: translate3d(40%, 35%, 0px);
	}
}
.heading .category {
	display: none;
}
@media screen and (min-width: 768px) {
	.heading .category {
		display: block;
		position: relative;
	}
}
.heading .category svg {
	width: 135px;
	position: absolute;
	z-index: 1;
	transform: translateX(25px) translateY(75px) scale(0.5);
	opacity: 0;
	animation-name: fadeInScale;
	animation-duration: 1s;
	animation-delay: 1s;
	animation-fill-mode: forwards;
}
@media screen and (min-width: 1200px) {
	.heading .category svg {
		width: 237px;
	}
}
@media screen and (min-width: 1980px) {
	.heading .category svg {
		transform: translateX(160px) translateY(17px);
	}
}
.heading .ghost {
	display: none;
}
@media screen and (min-width: 768px) {
	.heading .ghost {
		display: block;
	}
}

.partenaires {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
@media screen and (min-width: 768px) {
	.partenaires {
		justify-content: normal;
		width: auto;
	}
}
.partenaires > p {
	font-size: 11px;
	margin: 0px;
	text-align: right;
	text-transform: uppercase;
	margin-right: 20px;
	word-break: normal;
}
.partenaires img {
	height: 30px;
	width: auto;
}
.partenaires svg {
	margin-left: 20px;
	height: 30px;
}
@media screen and (min-width: 400px) {
	.partenaires img,
	.partenaires svg {
		height: 43px;
	}
}

#Partage {
	position: fixed;
	z-index: 99998;
	display: none;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	align-items: flex-end;
	justify-content: center;
}
#Partage.visible {
	display: flex;
}
#Partage #partageOverlay {
	background-color: rgba(0, 0, 0, 0.5);
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	position: fixed;
	opacity: 0;
	animation-name: overlayFadeIn;
	animation-duration: 0.75s;
	animation-fill-mode: forwards;
}
@keyframes overlayFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@media screen and (min-width: 768px) {
	#Partage {
		align-items: center;
	}
}
#Partage .partage-box {
	z-index: 99999;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
	min-width: 320px;
	background-color: white;
	padding: 15px;
	opacity: 0;
	transform: translate3d(0px, 10px, 0px);
	animation-name: boxFadeIn;
	animation-duration: 0.75s;
	animation-fill-mode: forwards;
}
@keyframes boxFadeIn {
	from {
		opacity: 0;
		transform: translate3d(0px, 10px, 0px);
	}
	to {
		opacity: 1;
		transform: translate3d(0px, 0px, 0px);
	}
}
@media screen and (min-width: 768px) {
	#Partage .partage-box {
		border-radius: 15px;
	}
}
#Partage .partage-box__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}
#Partage .partage-box__header .partage-close {
	cursor: pointer;
}
#Partage .partage-box__header .partage-close svg {
	width: 15px;
	fill: gray;
}
#Partage .partage-box__title {
	font-size: 1.4rem;
}
#Partage .partage-box__links {
	display: flex;
	align-items: center;
}
#Partage .partage-box__links a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
}
#Partage .partage-box__links .icon-container {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#Partage .partage-box__links .icon-container svg {
	width: 40px;
}
#Partage .partage-box__links .icon-container svg.icon-rs-fb {
	fill: #3b5998;
}
#Partage .partage-box__links .icon-container svg.icon-rs-mail {
	fill: gray;
}
#Partage .partage-box__copy {
	margin-top: 15px;
	margin-bottom: 15px;
}
#Partage .partage-box__copy .copy__field {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	border: 1px solid silver;
	padding: 10px;
	border-radius: 10px;
}
#Partage .partage-box__copy .copy__field .copy__url {
	padding-right: 5px;
}
#Partage .partage-box__copy .copy__field .copy__btn {
	min-width: 75px;
	background-color: silver;
	padding: 15px;
	border-radius: 25px;
	font-family: "OutfitSemiBold";
	word-break: keep-all;
	white-space: nowrap;
	cursor: pointer;
}
#Partage .partage-box__copy .copy__field .copy__btn--histoire {
	background-color: #FF7E69;
}
#Partage .partage-box__copy .copy__field .copy__btn--conseil {
	background-color: #FFE100;
}
#Partage .partage-box__copy .copy__field .copy__btn--repere {
	background-color: #CC66CC;
}

footer.footer {
	background-color: #ECEFF0;
}

.footer-content {
	padding-top: 25px;
	margin-top: 50px;
	display: flex;
	align-items: center;
	flex-direction: column;
	min-width: 320px;
}
.footer-content a,
.footer-content a:link,
.footer-content a:visited,
.footer-content a:hover,
.footer-content a:active {
	text-transform: uppercase;
	font-size: 14px;
	font-family: "OutfitRegular";
}
.footer-content .petit-logo {
	min-height: 120px;
	margin-top: 50px;
	margin-bottom: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
	.footer-content .petit-logo {
		margin-bottom: 10px;
		min-height: 60px;
	}
}
.footer-content .petit-logo span {
	display: block;
	margin-bottom: 15px;
}
.footer-content .petit-logo svg {
	width: 45px;
}
.footer-content .petit-logo a.mentions {
	display: block;
	margin-top: 40px;
}
@media screen and (min-width: 768px) {
	.footer-content .petit-logo a.mentions {
		display: none;
	}
}
.footer-content .footer-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: end;
	width: 100%;
	padding: 15px;
}
.footer-content .footer-row a.mentions {
	display: none;
	letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
	.footer-content .footer-row a.mentions {
		display: block;
	}
}