
.social {
	position: relative;
	top: 0;
	z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 7px;
}
.social .ico {
	display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
	opacity: 1;
	transition: all 0.2s ease-in-out;
    color: #FFF;
    width: 30px;
    height: 30px;
    background-color:rgb(31,69,141);
    text-decoration: none;
}
.social .ico i {
    font-size: 17px;
}

.social .ico:hover {
	color: #FFF;
    background-color: rgb(183,23,39);
}

/* =============================================== STRIP MENU ================================= */


header.strip {
	display: block;
	padding: 0;
	margin: 0;
	border-bottom: solid 1px rgba(0,0,0,0.05);
	position: relative;
	width: 100%;
	z-index: 100;
}
/*
header.strip.sticky {
    position: sticky;
    top: 0px;
}
*/

header.strip #wrapper-menu {
	padding-top: 25px;
	padding-bottom: 25px;
	padding-left: 35px;
	padding-right: 35px;
	/*box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);*/
}

header.strip #wrapper-menu .logo a {
    display: block;
    height: 50px;
    width: auto;
    
}
header.strip.scroll #wrapper-menu .logo a {
    display: block;
    height: 30px;
    width: auto;
}
header.strip #wrapper-menu .logo a img {
    display: block;
    width: auto;
    height: 100%;
}

header.strip #wrapper-menu .wrapper-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-basis: auto;
}

header.strip #wrapper-menu .wrapper-autogrow {
    flex: 1;
}


header .menu {
	position: relative;
	z-index: 1;
}
header .menu a {
	display: flex;
	flex-direction: row;
    align-items: center;
    justify-content: center;
	cursor: pointer;
    column-gap: 15px;
}

header .menu a figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    height: 40px;
    row-gap: 7px;
}
/*
header .menu a:hover figure {
    transform: rotate(90deg);
}
*/

header .menu a .line {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #000;
}

header .menu a .libelle {
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	line-height: normal;
    font-weight: 400;
    letter-spacing: 1px;
    transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
    display: none;
}
header .menu .menu a:hover > .libelle {
    transform: translateX(5px);
}





header.strip #wrapper-nav {
	height:0;
	width:100%;
	overflow: hidden;
	position:absolute;
	top: 0;
	right:0;
    z-index: 2;
    transition: all 900ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
}

header.strip #wrapper-nav .wrapper-boutons {
    display: block;
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 2;
}
header.strip #wrapper-nav .wrapper-boutons a {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #FFF;
    transform: translateX(20px);
    opacity: 0;
    transition: all 450ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
}


header.strip.open #wrapper-nav .wrapper-boutons a {
    opacity: 1;
    transform: translateX(0px);
}

header.strip.open #wrapper-nav .wrapper-boutons a.home {
    transition-delay: 600ms;
}
header.strip.open #wrapper-nav .wrapper-boutons a.close {
    transition-delay: 700ms;
}

header.strip #wrapper-nav .wrapper-boutons a figure {
    width: 30px;
    height: 30px; 
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center;
    border: solid 1px #FFF;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    border-radius: 30px;
    transition: all 400ms cubic-bezier(0.65, 0, 0.35, 1);
}

header.strip #wrapper-nav .wrapper-boutons a span {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 400;
    line-height: normal;
    transform: translateY(0);
    opacity: 1;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
}
header.strip #wrapper-nav .wrapper-boutons a:hover span {
    transform: translateY(10px);
    opacity: 0;
}

header.strip #wrapper-nav .wrapper-boutons a.home figure {
    background-image: url('../media/img/ico-home.png');
}
header.strip #wrapper-nav .wrapper-boutons a.home:hover figure {
    
}

header.strip #wrapper-nav .wrapper-boutons a.close figure {
    background-image: url('../media/img/close-blanc.png');
}
header.strip #wrapper-nav .wrapper-boutons a.close:hover figure {
    transform: rotate(180deg);
}


header.strip.open #wrapper-nav {
    height: 100vh;
}


header.strip #wrapper-nav .overlay {
	position: absolute;
	width:100%;
	height: 100%;
	background-color: rgba(1,70,153,0.5);
	top: 0;
	left: 0;
}

header.strip #wrapper-nav nav{
	opacity:1;
}

/* ========================================= CLASSIC MENU ============================== */


body > section {
    margin-top: 126px;
}

body#page-1 header.inline.scroll,
header.inline {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
}

body#page-1 header.inline {
    box-shadow: none;
}


header.inline .wrapper-flex {
    position: relative;
    z-index: 3;
    
}

header.inline .middle-bar {
    display: none;
}


header.inline .wrapper-autogrow {
    flex: 1;
}

header.inline nav {
    display: block;
}

header.inline nav > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
}

header .wrapper-subnav {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
    background-color: #fff;
    overflow: hidden;
    
    box-shadow: inset 0px 0px 15px 0px rgba(0,0,0,0.1);
}

.wrapper-subnav .close {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 35px;
    top: 35px;
    text-decoration: none;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
    transition: opacity 200ms ease-in-out;
    transition-delay: 0ms;
    row-gap: 10px;
}

.wrapper-subnav .close figure {
    display: block;
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("../media/img/close-noir.png");
}

.wrapper-subnav .close span {
    font-size: 11px;
    font-weight: 600;
    line-height: normal;
    color: rgb(27,27,27);
    display: block;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 200ms ease-in-out;
}

.wrapper-subnav .close:hover span {
    opacity: 1;
}


.wrapper-subnav.open .close {
    opacity: 1;
    transition-delay: 1500ms;
}

.wrapper-subnav .vague,
.wrapper-subnav .padd {
    
    transition: all 400ms ease-in-out;
}
.wrapper-subnav .vague {
    height: 80px;

}
.wrapper-subnav .padd {
    height: 100px;
}


.wrapper-subnav .submenu {
    display: block;
    /*height: auto;*/
    height: 0;
    overflow: hidden;
    transition: all 500ms cubic-bezier(0.83, 0, 0.17, 1);
    transition-delay: 100ms;
    box-sizing: border-box;  
    position: relative;
    z-index: 2;
}

.wrapper-subnav .submenu.open {
    height: 400px;
    transition: all 600ms cubic-bezier(0.83, 0, 0.17, 1);
    transition-delay: 200ms;
}

.wrapper-subnav .submenu .flex {    
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
}
.wrapper-subnav .submenu .flex {

}
.wrapper-subnav .submenu .item {
    display: block;
    box-sizing: border-box;
    width: 280px;
    padding: 20px;
    transition: all 350ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
    opacity: 0;
    transform: translateY(20px);
    height: 0;
}
.wrapper-subnav .submenu.open .item {
    opacity: 1;
    transform: translateY(0);
    height: 325px;
}

.wrapper-subnav .submenu.inline .flex-row {
    column-gap: 50px;    
}
.wrapper-subnav .submenu.inline.open {
    height: 260px;
}

.wrapper-subnav .submenu.inline .item {
    width: auto;
    height: 200px;
}

.wrapper-subnav .submenu.inline .item a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 30px;
}

.wrapper-subnav .submenu.inline .item a .ico {
    width: 220px;
    height: 180px;
    flex-grow: 0;
    flex-shrink: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 25px;
    margin-bottom: 0;
}
.wrapper-subnav .submenu.inline .item a .libelle {
    text-align: left;
}

.wrapper-subnav .submenu.inline .item a .libelle .legende {
    white-space: nowrap ;
}


.wrapper-subnav .submenu.inline .item a .libelle .legende p {
    margin-top: 0;
}


.wrapper-subnav .submenu.open .item:nth-of-type(1) {
    transition-delay: 700ms;
}
.wrapper-subnav .submenu.open .item:nth-of-type(2) {
    transition-delay: 750ms;
}
.wrapper-subnav .submenu.open .item:nth-of-type(3) {
    transition-delay: 800ms;
}
.wrapper-subnav .submenu.open .item:nth-of-type(4) {
    transition-delay: 850ms;
}
.wrapper-subnav .submenu.open .item:nth-of-type(5) {
    transition-delay: 900ms;
}
.wrapper-subnav .submenu.open .item:nth-of-type(6) {
    transition-delay: 950ms;
}
.wrapper-subnav .submenu.open .item:nth-of-type(7) {
    transition-delay: 1000ms;
}
.wrapper-subnav .submenu.open .item:nth-of-type(8) {
    transition-delay: 1050ms;
}



.wrapper-subnav .submenu .item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    text-align: center;
    color: rgb(28,47,85);
}

.wrapper-subnav .submenu .item a:hover {
    color: rgb(64,100,169);
}
.wrapper-subnav .submenu .item a:hover .link {
    background-color: rgb(28,47,85);
    color: #FFF;
}

.wrapper-subnav .submenu .item a .link {
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    text-transform: unset;
}

.wrapper-subnav .submenu .item a .ico {
    width: 100%;
    height: 160px;
    margin-bottom: 10px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}
.wrapper-subnav .submenu .item a .legende {
    
    font-size: 17px;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Chillax";
}

.underlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 0;
    opacity: 0;
    transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
    background-color: rgba(0,49,83,0.95);
}

.underlay.open {
    opacity: 1;
    height: 100vh;
}


/* ========================================= STD MENU ============================== */

header {

}

header nav {
	line-height: 0px;
	font-size:0;
	text-align:center;
}

header nav ul {
	position: relative;
	padding: 0;
	margin:0;
	display: block;
	font-size: 0;
	line-height: 0;
}

header nav ul li {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0px;
	text-align:left;
	font-size: 0;
	line-height: 0;
}

header nav ul li.disabled {
	opacity: 0.2;
	cursor: not-allowed;
}

header nav ul li a {
	display: block;
	font-size: 14px;
	line-height: normal;
	text-decoration: none;
	box-sizing: border-box;
	margin:0;
	padding: 10px;
}

header nav ul li:hover {
	position: relative;
	/*z-index: 101;*/
	cursor: pointer;
}

header nav > ul {
	margin-left: auto;
	margin-right: auto;
}


header nav > ul > li > a {
	color: #000;
}


/* ====================================== footer =========================== */

footer {
    border-top: solid 1px rgba(0,49,83,0.1);
}

footer p {
	display: block;
	padding: 0;
	margin: 0;
}

footer .credits {

}

footer .credits p {
	display: inline-block;
}

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

footer .credits a:hover {

}

footer .small {
	font-size: 12px;
}

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

footer .adresse a:hover {

}

/* ========================================= FORM ====================================================== */

form input[type=text],
form input[type=password],
form input[type=date],
form textarea
 {
	display: block;
	width: 100%;
	margin: 0px;
	padding: 10px;
	border: 1px solid rgba(0,0,0,0.2);
	box-sizing: border-box;
	-webkit-appearance: none;
	font-family: "Poppins";
	font-size: 13px;
	line-height: normal;
}
form select
 {
	display: inline-block;
	margin: 0px;
	padding: 5px;
	border: 1px solid rgba(0,0,0,0.2);
	box-sizing: border-box;
	-webkit-appearance: none;
	font-family: "Poppins";
	font-size: 13px;
	line-height: normal;
}

form input[type=submit] {
	display: block;
	width: 100%;
	margin: 0px;
	padding: 10px;
	border: none;
	box-sizing: border-box;
	color: white;
	cursor:pointer;
	-webkit-appearance: none;
	font-family: "Poppins";
	font-size: 13px;
	line-height: normal;
    text-transform: uppercase;
}

#contact .g-recaptcha {
		margin-bottom: 10px;
}
#contact form input[type=submit]:disabled {
	opacity: 0.2;
}


hr {
	display:block;
	height:1px;
	border:none;
	clear: both;
	margin-top: 20px;
	margin-bottom: 20px;
}


/* ============================================ SLIDER =================================================== */


.slick {
	margin-bottom:0;
	position:relative;
}
.slick .slick-list,
.slick .slick-track {
	height:100%;
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.slick .slide {
	display:block;
	position:relative;
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center center;
}
.slick .slide .legende {
	position:absolute;
	right:0px;
	top:30%;
	width:50%;
}

.slick .slide img {
	display:block;
	width:100%;
	height:auto;
}

.slick .slick-arrow {
	width:40px;
	height:40px;
	background-size:contain;
	background-repeat: no-repeat;
	opacity:0.8;
	transition: all 0.2s ease-in-out;
}

.slick .slick-arrow:hover {
	opacity:1;
}

.slick .slick-arrow::before {
	display:none;
}

.slick .slick-next {
	right:20px;
	z-index:1000;
	background-image: url(../media/images/arrow_right.png);
	background-position:center center;
}
.slick .slick-next:hover {
	right:15px;
}

.slick .slick-prev {
	left: 20px;
	z-index: 1000;
	background-image: url(../media/images/arrow_left.png);
	background-position: center center;
}

.slick .slick-prev:hover {
	left: 15px;
}

.slick .slick-dots {
	bottom:0;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    box-sizing: border-box;
    padding-top: 25px;
}

.slick .slick-dots li {
		width: auto;
		height: auto;
		margin: 0;
}
.slick .slick-dots li button {
	background-color: rgb(132,161,217, 0.5);
	border-radius: 12px;
	width: 12px;
	height: 12px;
	transition: all 0.2s ease-in-out;
}
.slick .slick-dots li.slick-active button,
.slick .slick-dots li button:hover{
	background-color: rgb(64,100,169);
}

.slick .slick-dots li button::before {
	display: none;
}

.carouselx3 {
    margin-bottom: 0;
}

/* =========================== PADDING / MARGIN ============================== */


/* ========================================= MAP ============================== */

.map {
	display: block;
	width: 100%;
	height: 500px;
}


/* ========================================= PARALLAX ============================== */

.parallax-container {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.parallax {
  position: static;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.parallax img {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* ========================================= TOOLTIP  ========================== */

.tooltipster-sidetip.tooltipster-custom .tooltipster-box {
	background-color: transparent;
	border: none;
	border-radius: 0;
	/*box-shadow: 5px 5px 2px 0 rgba(0,0,0,0.4);*/
}

.tooltipster-sidetip.tooltipster-custom .tooltipster-content {
	color: #FFF;
	font-size: 12px;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	padding: 0;
	text-align: center;
}

/* ======================================= MASONRY ============================= */



.wrapper-item-sizer,
.wrapper-item {
	width: 33%;
}

.wrapper-item a {
	/*cursor: pointer;*/
	/*text-decoration: none;*/
	border-bottom: solid 1px rgba(255,255,255,0.1);
	padding-bottom: 30px;
	padding-top: 30px;
}
.wrapper-item a:hover {

}
.wrapper-item a figure {
	margin-bottom: 20px;
}
.wrapper-item a h2 {
	font-size: 30px;
	line-height: normal;
	margin-bottom: 20px;
	text-align: left;
}
.wrapper-item a p {
	font-size: 14px;
	line-height: normal;
	text-align: justify;
	line-height: 25px;
}
.wrapper-item a .link {
	margin-top: 15px;
	display: block;
	text-align: center;
}
.wrapper-item a .link:hover {

}
.wrapper-item a p.date {
	font-size: 13px;
}


/* ======================================= FANCYBOX ============================= */

.fancybox-thumbs {
  top: auto;
  width: auto;
  bottom: 0;
  left: 0;
  right : 0;
  height: 95px;
  padding: 10px 10px 5px 10px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.3);
}

.fancybox-show-thumbs .fancybox-inner {
  right: 0;
  bottom: 95px;
}

/* =================================== SLIDER HOME =============================== */

.wrapper-slider{
    height: calc(100vw * 0.5);
    max-height: 800px;
}

#progress {
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	z-index: 2;
	bottom: 10px;
	left: 0;
	background-color: rgba(255,255,255,1);
}

.arrow-down-loop {
    position: absolute;
    bottom: 90px;
    width: 100%;
    z-index: 2;
    left: 0;
    box-sizing: border-box;
    text-align: center;
    height: 0;
    overflow: visible;
    opacity: 0;
}
.arrow-down-loop.active {
    opacity: 1;
}

.arrow-down-loop a {
    margin: 0;
    display: inline-block;
    text-decoration: none;
}

.arrow-down-loop a span {
    font-size: 10px;
    line-height: normal;
    letter-spacing: 1px;
}

.arrow-down-loop .arrow-down {
    position: relative;
    width: 26px;
    height: 45px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: solid 1px rgb(255,255,255);
    box-sizing: border-box;
    border-radius: 20px;
    margin-bottom: 7px;
}

.arrow-down-loop .arrow-down .bulle {
    display: block;
    position: relative;
    left: 0px;
    width: auto;
    width: 5px;
    height: 5px; 
    border-radius: 30px;
    margin-left: auto;
    margin-right: auto;
    animation: loopBottom 1s infinite alternate;
    transform: translateY(10px);
}


@keyframes loopBottom {
    from {
        transform: translateY(25px);
    }
} 


.preloader {
    display: none;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
    top: 50%;
    position: relative;
    width: 100%;
}
.preloader.active {
    display: flex;
}

.preloader span {
    display: block;
    width: 10px;
    height: 10px;
    background-color: rgb(31,69,141);
    border-radius: 100%;
    animation: bounce 1.5s 0.5s linear infinite;
}

.preloader span:nth-of-type(1) {
    animation-delay: 0.1s;
}
.preloader span:nth-of-type(2) {
    animation-delay: 0.2s;
}
.preloader span:nth-of-type(3) {
    animation-delay: 0.3s;
}





@keyframes bounce {
	0%, 50%, 100% {
		transform: scale(1);
	}
	25% {
		transform: scale(0.6);
	}
	75% {
		transform: scale(1.4);
	}
}





#slider_homepage {
	width: 100%;    
}

#slider_homepage .owl-item {
	height: auto;
    height: calc(100vw * 0.5);
    max-height: 800px;
    /*height: 65vh;
    min-height: 600px;
    */
}
#slider_homepage .owl-item .slide {
	height: 100%;
	position: relative;
	width: 100%;
	box-sizing: border-box;
}
#slider_homepage .owl-item .slide .main {
    display: block;
    width: 100%;
    height: 100%;
}
#slider_homepage .owl-item .slide .overlay {
	width: 100%;
	height: 100%;
    opacity: 0;
    transition: opacity 1000ms cubic-bezier(0.25, 1, 0.5, 1);
}


#slider_homepage.owl-loaded .owl-item.active .slide .overlay {
    opacity: 1;
}

#slider_homepage .owl-item .slide .legende {
	box-sizing: border-box;
	overflow: hidden;
    display: flex;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
#slider_homepage .owl-item .slide .legende .content {
	position: relative;
	padding:0;
	display: block;
	width: 100%;
	box-sizing: border-box;
}

#slider_homepage .owl-item .slide .legende .content p {
	display: block;
	margin:0;
}

/* anims slide texte */

#slider_homepage .owl-item .slide.texte .legende {
    justify-content: flex-start;
    align-items: center;
}

#slider_homepage .owl-item .slide.texte.ap-famille .legende {
    flex-direction: row-reverse;
}


#slider_homepage .owl-item .slide.texte.ap-homme .legende .content {
    width: 45%;
    z-index: 3;
}
#slider_homepage .owl-item .slide.texte.ap-femme .legende .content {
    width: 40%;
    z-index: 3;
    transform: translateX(30%);
}
#slider_homepage .owl-item .slide.texte.ap-famille .legende .content {
    width: 40%;
    z-index: 3;
}

#slider_homepage .owl-item .slide.texte.ap-famille .legende .content p {
    text-align: left;
}


#slider_homepage .owl-item .slide.texte.ap-homme .legende .content-alt {
    width: 55%;
    height: 100%;
    position: relative;
    display: flex;
}
#slider_homepage .owl-item .slide.texte.ap-femme .legende .content-alt {
    width: 60%;
    height: 100%;
    position: relative;
    display: flex;
}
#slider_homepage .owl-item .slide.texte.ap-famille .legende .content-alt {
    width: 60%;
    height: 100%;
    position: relative;
    display: flex;
}


#slider_homepage .owl-item .slide.texte.ap-homme .legende .content-alt,
#slider_homepage .owl-item .slide.texte.ap-femme .legende .content-alt,
#slider_homepage .owl-item .slide.texte.ap-famille .legende .content-alt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
}

#slider_homepage .owl-item .slide.texte .legende .content-alt figure {
    display: block;
    width: 100%;
    height: 100%;
    transition-delay: 0ms;
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    transform: translateX(50px);
}

#slider_homepage .owl-item.active .slide.texte .legende .content-alt figure {
    transition-delay: 1000ms;
    opacity: 1;
    transform: translateX(0px);
}


#slider_homepage .owl-item .slide.texte.ap-homme .legende .content-alt figure {
    background-image: url('../media/img/aupair-homme.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    height: 90%;
}
#slider_homepage .owl-item .slide.texte.ap-femme .legende .content-alt figure {
    background-image: url('../media/img/aupair-femme.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    height: 90%;
}
#slider_homepage .owl-item .slide.texte.ap-famille .legende .content-alt figure {
    background-image: url('../media/img/aupair-famille.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    height: 90%;
}


#slider_homepage .owl-item .slide.texte .legende .content p {
    display: block;
    margin: 0;
    text-align: center;
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    color: rgb(28,47,85);
}
#slider_homepage .owl-item .slide.texte .legende .content p:nth-of-type(1) {
    transition-delay: 0ms;
    transform: translateX(-30px);
    font-size: 60px;
    line-height: normal;
    font-weight: 500;
    font-family: "Chillax";
}
#slider_homepage .owl-item.active .slide.texte .legende .content p:nth-of-type(1) {
    transform: translateX(0px);
    opacity: 1;
    transition-delay: 1000ms;
}
/*
#slider_homepage .owl-item.active .slide.texte.ap-femme .legende .content p:nth-of-type(1) {
    display: none;
}
*/

#slider_homepage .owl-item .slide.texte .legende .content p:nth-of-type(2) {
    font-size: 30px;
    line-height: normal;
    font-weight: 500;
    font-family: "Chillax";
    color: rgb(64,100,169);
    transition-delay: 0ms;
    transform: translateX(-30px);
    margin-bottom: 30px;
}
/*
#slider_homepage .owl-item .slide.texte.ap-femme .legende .content p:nth-of-type(2) {
    color: rgb(28,47,85);
    font-size: 35px;
}
*/

#slider_homepage .owl-item.active .slide.texte .legende .content p:nth-of-type(2) {
    transform: translateX(0px);
    opacity: 1;
    transition-delay: 1200ms;
}

#slider_homepage .owl-item .slide.texte .legende .content p:nth-of-type(3) {
    
    transition-delay: 0ms;
    transform: translateX(-30px);
}
#slider_homepage .owl-item.active .slide.texte .legende .content p:nth-of-type(3) {
    transform: translateX(0px);
    opacity: 1;
    transition-delay: 1500ms;
}

#slider_homepage .owl-item .slide.texte .legende .content p:nth-of-type(3) a {
    font-size: 15px;
    font-family: "Chillax";
    font-weight: 500;
    line-height: normal;
    color: rgb(28,47,85);
    border: solid 1px rgb(28,47,85);
    box-sizing: border-box;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 30px;
}

#slider_homepage .owl-item .slide.texte .legende .content p:nth-of-type(3) a:hover {
    background-color: rgb(28,47,85);
    color: #FFF;
}


#slider_homepage .owl-item .slide.texte .legende  p.lien {
    opacity: 0;
    transition-delay: 0ms;
    transform: translateY(50px);
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
}
#slider_homepage .owl-item.active .slide.texte .legende p.lien {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 1700ms;
}


/* anim slide logo */

#slider_homepage .owl-item .slide.logo .legende .content p {
    display: block;
    margin: 0;
    text-align: center;
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
    opacity: 0;
}
#slider_homepage .owl-item.active .slide.logo .legende .content p {
    opacity: 1;
    transition-delay: 1500ms;
}
#slider_homepage .owl-item .slide.logo .legende .content p img {
    display: block;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 700px;
    height: auto !important;
}

/* anim slide texte gauche */

#slider_homepage .owl-item .slide.txt-left .legende {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}


#slider_homepage .owl-item .slide.txt-left .legende .content {
    
    width: 50%;
    text-align: center;
    background-image: url('../media/img/logo-signe-blanc-80.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

#slider_homepage .owl-item .slide.txt-left .legende .content p:nth-of-type(1) {
    font-size: 55px;
    font-family: "Chillax";
    font-weight: 300;
    line-height: 60px;
    transition-delay: 0ms;
    transform: translateY(0px);
    margin-bottom: 10px;
    letter-spacing: 4px;
    color: rgb(223,156,139);
    opacity: 0;
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
}
#slider_homepage.owl-loaded .owl-item.active .slide.txt-left .legende .content p:nth-of-type(1) {
    opacity: 1;
    transition-delay: 1100ms;
}

#slider_homepage .owl-item .slide.txt-left .legende .content p:nth-of-type(2) {
    font-size: 14px;
    font-family: "Chillax";
    font-weight: 400;
    line-height: normal;
    transition-delay: 0ms;
    transform: translateY(0px);
    margin-bottom: 20px;
    letter-spacing: 3px;
    color: rgb(27,27,27);
    text-transform: uppercase;
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}
#slider_homepage .owl-item.active .slide.txt-left .legende .content p:nth-of-type(2) {
    opacity: 1;
    transition-delay: 1200ms;
}

#slider_homepage .owl-item .slide.txt-left .legende .content p:nth-of-type(3) {
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}

#slider_homepage .owl-item.active .slide.txt-left .legende .content p:nth-of-type(3) {
    opacity: 1;
    transition-delay: 1400ms;
}

/* --------------- */

#slider_homepage .owl-nav {
	height: 0;
	position: absolute;
	top: 44%;
	width: 100%;
	z-index: 2;
	box-sizing: border-box;
	opacity: 0;
	transition: all 0.2s ease-in-out;
}

#slider_homepage:hover .owl-nav {
	opacity: 1;
}
#slider_homepage .owl-nav button {
	font-size: 0;
	line-height: 0;
	width: 40px;
	height: 80px;
    
	background-repeat: no-repeat;
	background-size: 10px auto;
	background-position: center;
	display: block;
	padding: 10px;
    background-color: #FFF;
}
#slider_homepage .owl-nav .owl-prev {
	float: left;
	background-image: url(../media/img/arrow-left-noir.png);
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    background-position: 5px center;
}
#slider_homepage .owl-nav .owl-next {
	float: right;
	background-image: url(../media/img/arrow-right-noir.png);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    background-position: calc(100% - 5px) center;
}
#slider_homepage .owl-dots {
	position: relative;
	bottom: unset;
	right: unset;
	width: 100%;
	z-index: 4;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    box-sizing: border-box;
    padding-top: 20px;
    padding-bottom: 20px;
}
#slider_homepage .owl-dots button {
	display: block;
	border: solid 2px rgb(28,47,85);
	background-color: #FFF;
    border-radius: 100%;
	width: 15px;
	height: 15px;
	margin: 0;
    outline: none;
}
#slider_homepage .owl-dots button.active {
	
    background-color: rgb(166,174,192);
}


.promo {
	display: block;
}
.promo p {
	margin: 0;
    line-height: normal;
    display: block;
}
.promo .link {
    padding: 7px 10px;
    margin-left: 10px;
}



/* galeries isotope */


.grid .item a
 {
    display: block;
    text-decoration: none;
    margin-bottom: 15px;
}

.grid .item a figure {
    display: block;
    height: 400px;
    margin-bottom: 25px;
}

.grid .item a .overlay {
    background-color: rgba(255,255,255,0.9);
    opacity: 0;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
}

.grid .item a:hover .overlay {
    opacity: 1;    
}

.grid .item a .overlay span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: normal;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}

.grid .item a:hover .overlay span {
    opacity: 1;
    transition-delay: 400ms;
}

.grid .item a h3 {
    font-size: 20px;
    line-height: normal;
    font-weight: normal;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.grid .item a p {
    font-size: 12px;
    letter-spacing: 4px;
    line-height: normal;
    font-weight: 400;
    text-transform: uppercase;
}


.wrapper-masonry {
	box-sizing: border-box;
}

.masonry::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-image: url('../media/img/loader.gif');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;   
}
.masonry.complete::before {
    display: none;
}

.masonry .item {
    opacity: 0;
    transition: opacity 400ms cubic-bezier(0.25, 1, 0.5, 1);
}
.masonry.complete .item {
    opacity: 1;
}

.masonry .item a {
    display: block;
    width: 100%;
    height: auto;
}

.masonry .item a img {
    display: block;
    width: 100%;
    height: auto;
}

.masonry .item a figure {
    position: relative;
}

.masonry .item a figure .overlay {
    
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255,255,255,0.85);
    opacity: 0;
    transition: all 500ms cubic-bezier(0.25, 1, 0.5, 1);
}

.masonry .item a:hover figure .overlay {
    opacity: 1;
}

.masonry .item a figure .overlay span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: normal;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}
.masonry .item a:hover figure .overlay span {
    transition-delay: 400ms;
    opacity: 1;
}





/* grid de 6 coionnes  */
.grid-container {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-auto-rows: 90px;
    gap: 10px;
}

.grid-container .item {
    position: relative;
    grid-column: auto / span 2;
    grid-row: auto;
    padding: 0;
    box-sizing: border-box;
}

.grid-container .item a {
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

.grid-container .item a figure {
    display: block;
    width:100%;
    height: 100%;
    /*height: 400px;*/
    box-sizing: border-box;
}

.grid-container .item a .overlay {
    opacity: 0;
    background-color: rgba(255,255,255,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 400ms cubic-bezier(0.25, 1, 0.5, 1);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.grid-container .item a:hover .overlay {
    opacity: 1;
}

.grid-container .item a .overlay span {
    font-size: 11px;
    line-height: normal;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0ms;
    color: rgb(27,27,27);
}

.grid-container .item a:hover .overlay span {
    opacity: 1;
    transition-delay: 400ms;
}


.grid-container .item.w-1 {
    grid-column: auto / span 1;
}
.grid-container .item.w-2 {
    grid-column: auto / span 2;
}
.grid-container .item.w-3 {
    grid-column: auto / span 3;
}
.grid-container .item.w-4 {
    grid-column: auto / span 4;
}
.grid-container .item.w-5 {
    grid-column: auto / span 5;
}
.grid-container .item.w-6 {
    grid-column: auto / span 6;
}
.grid-container .item.w-7 {
    grid-column: auto / span 7;
}
.grid-container .item.w-8 {
    grid-column: auto / span 8;
}
.grid-container .item.w-9 {
    grid-column: auto / span 9;
}
.grid-container .item.w-10 {
    grid-column: auto / span 10;
}


.grid-container .item.h-1 {
    grid-row: auto / span 1;
}
.grid-container .item.h-2 {
    grid-row: auto / span 2;
}
.grid-container .item.h-3 {
    grid-row: auto / span 3;
}
.grid-container .item.h-4 {
    grid-row: auto / span 4;
}
.grid-container .item.h-5 {
    grid-row: auto / span 5;
}
.grid-container .item.h-6 {
    grid-row: auto / span 6;
}
.grid-container .item.h-7 {
    grid-row: auto / span 7;
}
.grid-container .item.h-8 {
    grid-row: auto / span 8;
}
.grid-container .item.h-9 {
    grid-row: auto / span 9;
}

figure.lazy {
    background-image: none !important;
    background-color: rgba(0,0,0,0.1);
}


figure > .placeholder {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(200,200,200);
    z-index: 0;
    transition: all 400ms ease-in-out;
    opacity: 0;
}

figure.lazy > .placeholder {
    opacity: 1;
    z-index: 2;
}

#blog article a p.date {
    margin-bottom: 10px;
}

#blog article a p.groupe {

        font-size: 10px;
        font-weight: 400;
        letter-spacing: 1px;
        line-height: normal;
        text-transform: uppercase;
        background-color: rgb(166,174,192, 0.2);
        color: #000;
        padding: 5px 12px;
        border-radius: 4px;
        display: inline-block;
        margin: 0;
        margin-bottom: 10px;    
}

#blog article a {
    display: block;
    text-decoration: none;
}

#blog article a figure {
    width: 100%;
    height: 200px;
    background-color: rgba(0, 0, 0, 0.1);
}

/*
#auth .wrapper {
	display:block;
    
}
*/
form p {
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 10px;
    margin-top: 10px;
    column-gap: 10px;
}
form p.noflex {
    display: block;
}


form p span:first-of-type {
    width: 150px;
    display: none;
}

form p input[type=text],
form p input[type=date],
form p input[type=password],
form p select,
form p textarea
{
	display:block;
	padding:10px;
	border:solid 1px rgba(0, 0, 0, 0.1);
	width:100%;
	margin:0;
	box-sizing: border-box; 
    border-radius: 3px;
    font-size: 14px;
    font-weight: normal;
    line-height: normal;
    flex: 1;
    
}
form p input[type=submit]
{
	margin-bottom:0;
    border-radius: 4px;
}

form h2 {
    margin-top: 50px;
    margin-bottom: 25px;
}

.toggle-password {
    font-size: 16px;
    color: #1b1b1b;
    position: absolute;
    z-index: 2;
    right: 20px;
    top: auto;
    cursor: pointer;
}

#auth h1 {
    margin-top: 25px;
    margin-bottom: 25px;
}

#scrollSentinelle {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 100px;
    visibility: hidden;
}
/*
.policy h1 {
    font-size: 40px;
    line-height: normal;
    margin-bottom: 30px;    
    font-weight: normal;
}
*/
.policy h2 {
    font-size: 20px;
    line-height: normal;
    margin-top: 50px;    
    font-weight: 600;
}

.wrapper-form .success {
    text-align: center;
    background-color: rgba(122, 207, 10, 0.3);
    padding: 30px;
    box-sizing: border-box;
    color: #000;
}

.wrapper-content .alert,
.wrapper-form .alert {
    text-align: center;
    background-color: rgba(207, 86, 10, 0.3);
    padding: 30px;
    box-sizing: border-box;
    color: #000;
}

.wrapper-content .alert p,
.wrapper-form .alert p,
.wrapper-form .success p {
    display: block;
    text-align: center;
}
.wrapper-form .success p:first-of-type,
.wrapper-form .alert p:first-of-type,
.wrapper-content .alert p:first-of-type {
    margin-top: 0;
}
.wrapper-form .success p:last-of-type,
.wrapper-form .alert p:last-of-type,
.wrapper-content .alert p:last-of-type {
    margin-bottom: 0;
}


.wrapper-content .alert p a {
    color: #000;
}

/*
#mentionslegales,
#rgpd {
    margin-top: 0;
}
*/

.fancybox-slide--iframe .fancybox-content { 
    max-width: 900px !important;
}


.back {
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 50px;
    top: 0px;
    background-image: url('../media/img/ico-back.png');
    background-repeat: no-repeat;
    box-sizing: border-box;
    background-position: center;
    background-size: 50%;
    cursor: pointer;
    opacity: 0.4;
    z-index: 2;
    text-decoration: none;
    color: rgb(29,29,27);
    transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
    border: solid 1px rgb(24,23,22);
    border-radius: 100%;
}

.back:hover {
    opacity: 1;
}

.back span {
    display: block;
    transform: translateX(70px);
    opacity: 0;
    position: relative;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: normal;
    transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
    top: 3px;
    white-space: nowrap;
}

.back:hover span {
    transform: translateX(50px);
    opacity: 1;
}


.bg-bleu {
    background-color: rgb(31,69,141);
}
.bg-bleusombre {
    background-color: rgb(28,47,85);
}
.bg-bleuclair {
    background-color: rgb(132,161,217);
}
.bg-bleumed {
    background-color: rgb(64,100,169);
}
.bg-bleupale {
    background-color: rgb(243,239,245);
}

.bg-rouge {
    background-color: rgb(225,8,22);
}
.bg-rougesombre {
    background-color: rgb(183,23,39);
}

.bg-grisclair {
    background-color: rgb(228,229,231);
}
.bg-grispale {
    background-color: rgb(245,244,244);
}




.f-bleu {
    color: rgb(31,69,141);
}
.f-bleusombre {
    color: rgb(28,47,85);
}
.f-bleuclair {
    color: rgb(132,161,217);
}
.f-bleumed {
    color: rgb(64,100,169);
}
.f-bleupale {
    color: rgb(243,239,245);
}

.f-rouge {
    color: rgb(225,8,22);
}
.f-rougesombre {
    color: rgb(183,23,39);
}

.f-grisclair {
    color: rgb(228,229,231);
}
.f-grispale {
    color: rgb(245,244,244);
}




.b-bleu {
    border-color: rgb(31,69,141);
}
.b-bleusombre {
    border-color: rgb(28,47,85);
}
.b-bleuclair {
    border-color: rgb(132,161,217);
}
.b-bleumed {
    border-color: rgb(64,100,169);
}
.b-bleupale {
    border-color: rgb(243,239,245);
}

.b-rouge {
    border-color: rgb(225,8,22);
}
.b-rougesombre {
    border-color: rgb(183,23,39);
}

.b-grisclair {
    border-color: rgb(228,229,231);
}
.b-grispale {
    border-color: rgb(245,244,244);
}


body {
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    font-family: "Poppins";
}

h1,h2,h3,h4,h5 {
    font-family: "Chillax";
    line-height: normal;
    font-weight: 400;
}

.link {
    line-height: normal;
    font-weight: 500;
    font-family: "Chillax";
}

.link.roundedbottom {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.link.small {
    font-size: 12px;
    padding: 6px 20px;
    text-transform: uppercase;
}

.link.rounded {
    border-radius: 30px;
    font-size: 14px;
    line-height: 16px;
    padding-left: 25px;
    padding-right: 25px;
}

.link.rounded.large {
    font-size: 16px;
    line-height: 18px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 12px;
    padding-bottom: 12px;

}


.bg-bleusombre .link.bg-bleumed:hover {
    background-color: #fff;
    color: rgb(64, 100, 169);
}

.link.bg-bleumed:hover {
    background-color: rgb(28,47,85);
}



header .wrapper-flex {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    padding-bottom: 20px;
    transition: all 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

header.scroll .wrapper-flex {
    padding-bottom: 10px;
}

header .wrapper-flex .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    column-gap: 7px;
}

header .wrapper-flex .top .link {
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 15px auto;
    padding-left: 35px;
}

header .wrapper-flex .top .link.account {
    background-image: url('../media/img/ico-login.png');
}
header .wrapper-flex .top .link.blog {
    background-image: url('../media/img/ico-blog-blanc.png');
    background-size: 20px auto;
    padding-left: 40px;
}

header .wrapper-flex .top .link:hover {
    background-color: rgb(183,23,39);
}




header .wrapper-flex .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 20px;
    box-sizing: border-box;
    padding-top: 20px;
}

header .wrapper-flex .logo a {
    display: block;
    width: auto;
    height: auto;
    text-decoration: none;
}

header .wrapper-flex .logo a img {
    display: block;
    width: auto;
    height: 60px;
    transition: all 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

header.scroll .wrapper-flex .logo a img {
    height: 30px;
}



header .wrapper-flex .logo .baseline {
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    padding: 0;
    margin: 0;
    border-left: solid 1px rgb(28,47,85);
    box-sizing: border-box;
    padding-left: 20px;
    font-family: "Chillax";
    padding-top: 20px;
    padding-bottom: 20px;
}

header.scroll .wrapper-flex .logo .baseline {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 16px;
}




header .wrapper-flex .logo .baseline span {
    letter-spacing: 1px;
}

header .wrapper-flex .logo .macaron {
    display: block;
}
header .wrapper-flex .logo .macaron img {
    width: auto;
    height: 60px;
}

header .wrapper-flex .logo .baseline-medium {
    display: none;
}


header .wrapper-flex .wrapper-autogrow {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    row-gap: 20px;
    transition: all 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

header.scroll .wrapper-flex .wrapper-autogrow {
    row-gap: 10px;
}

header.inline nav.mobile {
    display: none;
}
header.inline .menu {
    display: none;
}


header nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
header nav ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


header nav ul li a {
    font-size: 15px;
    font-family: "Chillax";
    line-height: normal;
    font-weight: 600;
    color: rgb(28,47,85);
    text-transform: uppercase;
    padding: 15px 20px;
}

header nav ul li.hassubmenu a::after {
    content: "▼";
    display: inline-block;
    vertical-align: baseline;
    font-size: 12px;
    line-height: normal;
    font-family: "Open Sans";
    font-weight: normal;
    margin-left: 5px;
}


header nav ul li a:hover {
    color: rgb(64,100,169);
}

header.scroll nav ul li a {
    padding-top: 7px;
    padding-bottom: 7px;
}

header nav ul li:first-of-type::before {
    display: none;
}

header nav ul li::before {
    content: "";
    display: block;
    width: 1px;
    height: 50px;
    background-color: rgb(28,47,85, 0.1);
    transition: all 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

header.scroll nav ul li::before {
    height: 35px;
}


#intro {
    background-image: url('../media/img/bg-bulles-01.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto;
}

#intro .flex-row {
    flex-wrap: wrap;
}

.titre h1 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
}
.titre.main h1 {
    font-size: 48px;
    line-height: 55px;
    font-weight: 500;
}

.titre h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
}
.titre.main h2 {
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
}

.titre h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
}

#intro .content p {
    font-family: "Chillax";
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}

#intro  .wrapper-equipe {
    padding-top: 120px;
}

#intro .bulles-1 {
    display: block;
    position: absolute;
    top: 10%;
    left: 10%;
    z-index: 1;
    width: 100px;
    height: auto;
}
#intro .bulles-2 {
    display: block;
    position: absolute;
    top: -5%;
    right: 20%;
    z-index: 1;
    width: 180px;
    height: auto;
}

.engagements .flex-row {
    flex-wrap: wrap;
}
.engagements .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 25px;
}
.engagements .item h3 {
    font-size: 20px;
    font-weight: 500;
}
.engagements .item figure {
    display: block;
    width: 170px;
    height: 170px;
    border-radius: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60% auto;
}


#homepage .aupair .links {
    justify-content: flex-start;
}


.titre.has-signe {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content: flex-start;
    column-gap: 30px;
}

.titre.txt-center.has-signe {
    flex-direction: column;

}



.titre.has-signe::before {
    display: block;
    content: "";
    background-image: url('../media/img/logo-signe.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 80px;
    height: 80px;
}

.titre .picto {
    display: block;
    width: 90px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.wrapper-article {
    flex-wrap: wrap;
}

#blog .wrapper-article {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.wrapper-article .item {
    flex-grow: 0;
    flex-shrink: 0;
}
.wrapper-article .item a {
    text-decoration: none;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.15);
    transition: all 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.wrapper-article .item a:hover {
    box-shadow: none;
}


.wrapper-article .item a figure {
    display: block;
    height: 250px;
}

.wrapper-article .item a h1 {
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
    height: 90px;
    text-transform:lowercase;
}

.wrapper-article .item .content p {
    font-size: 13px;
    line-height: normal;
}

.bg-bulles-2 {
    background-image: url('../media/img/bg-bulles-02.png');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center bottom;
}
.bg-bulles-3 {
    background-image: url('../media/img/bg-bulles-03.png');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center bottom;
}

footer .wrapper-cols {
    column-gap: 70px;
    justify-content: center !important;
}

footer .wrapper-cols .logo {
    display: block;
}

footer .wrapper-cols .logo figure {
    display: block;
    width: 250px;
    height: auto;
}

footer .wrapper-cols .logo p {
    font-size: 12px;
    line-height: normal;
}

footer .wrapper-cols .nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

footer .wrapper-cols .nav ul li {
    border-bottom: solid 1px rgb(132,161,217, 0.5);
}

footer .wrapper-cols .nav ul li:last-of-type {
    border-bottom: 0;
}

footer .wrapper-cols .nav ul li a { 
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    color: rgb(28,47,85);
}

footer .wrapper-cols .nav ul li a:hover {
    color: rgb(132,161,217);
}

footer .wrapper-cols .nav ul li a i {
    display: none;
}


footer .wrapper-cols .item h4 {
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
}


.content h3 {
    font-family: "Poppins";
    font-size: 24px;
    line-height: normal;
    font-weight: 700;
    letter-spacing: 0px;
}

.content h4 {
    font-family: "Poppins";
    font-size: 20px;
    line-height: normal;
    font-weight: 400;
    letter-spacing: 0px;
}

#chartequalite .suivi {
    align-items: center;
}

#chartequalite .engagements .content h3 {
    margin-bottom: 7px;
}

#chartequalite .engagements ul {
    padding: 0;
    margin-left: 0;
    margin-top: 20px;
    list-style-type: none;
}

#chartequalite .engagements ul li {
    margin-top: 10px;
    margin-bottom: 10px;
}

#chartequalite .engagements ul li::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 14px;
    background-image: url('../media/img/puce-bleu.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 6px;
}

#chartequalite .bg-bulles-3 {
    padding-bottom: 300px;
}

.bg-ciel {
    /*background: rgb(223,223,239);*/
    background: linear-gradient(0deg, rgba(223,223,239,0.6) 0%, rgba(238,238,247,0.6) 19%, rgba(252,252,254,1) 42%, rgba(255,255,255,1) 100%);
}


#agences .map {
    height: 650px;
    width: 100%;
}

#listing {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 60px;
}




#agences .wrapper-panel {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 2;
    width: 510px;
    box-sizing: border-box;
    padding-top: 35px;
    padding-bottom: 35px;
}

#agences .wrapper-panel .panel {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 15px 0px 10px 0px rgba(0,0,0,0.1);
    box-sizing: border-box;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;

}

#agences .wrapper-panel .panel .wrapper-agences {
    box-sizing: border-box;
    direction:ltr; 
    overflow-y: auto;
    direction:rtl; 
    display: block;
    position: relative;
    overflow-y: auto;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

#listing article,
#agences .wrapper-panel .panel article {
    box-sizing: border-box;
    border-bottom: solid 1px rgba(31,69,141, 0.1);
    padding: 15px;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 25px;
    direction: ltr;
    padding-right: 0;
}

#listing article {
    width: calc(50% - 30px);
    box-sizing: border-box;
    flex-grow: 0;
    flex-shrink: 0;
    padding-top: 35px;
    padding-bottom: 35px;
    padding-left: 0;
    padding-right: 0;
    column-gap: 30px;
}

#listing article:nth-last-child(1),
#listing article:nth-last-child(2) {
    border-bottom: none;
}



#listing article .logo,
#agences .wrapper-panel .panel article .logo {
    width: 120px;
    height: 120px;
}

#listing article .logo {
    width: 160px;
    height: 160px;
}



#listing article h1,
#agences .wrapper-panel .panel article h1 {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}

#listing article p.adresse,
#agences .wrapper-panel .panel article p.adresse {
    color: #92959f;
    font-family: "Chillax";
    font-size: 14px;
    line-height: normal;
    font-weight: 500;
    margin: 0;
}

#listing article p.links,
#agences .wrapper-panel .panel article p.links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 7px;
}

#listing article p.links .link,
#agences .wrapper-panel .panel article p.links .link {
    letter-spacing: 0;
    font-size: 13px;
    line-height: normal;   
    font-weight: 500;
    text-transform: unset;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 4px;
    flex-wrap: nowrap;
}

#agences .wrapper-panel .panel article p.links .link i {
    
}

#listing article p.links .link.marker,
#agences .wrapper-panel .panel article p.links .link.marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    padding: 0;
}
#listing article p.links .link.marker:hover,
#agences .wrapper-panel .panel article p.links .link:hover {
    background-color: rgb(183,23,39);
}


#listing article p.links .link.marker i,
#agences .wrapper-panel .panel article p.links .link.marker i {
    margin-right: 0;
}



#agences .wrapper-panel .mask {
    z-index: 3;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 35%, rgba(255,255,255,0) 100%);
    border-bottom-right-radius: 40px;
}


.filters .filter,
.filters .sep {
    display: inline-block;
    color: rgb(27,27,26);
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 400;
    line-height: normal;
    box-sizing: border-box;
    padding: 5px 10px 5px 15px;
    text-decoration: none;
}

.filters .filter {
    cursor: pointer;
    background-color: #e4e7ed;
    border-radius: 3px;
}
.filters .filter:hover {
    background-color: rgb(64,100,169);
    color: #FFF;
}
.filters .filter.up {
    background-color: rgb(64,100,169);
    color: #FFF;
}


#agences .filters .navigation i {
    margin-right: 5px;
}
#agences .filters .navigation span {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0;
}

#agences .filters .navigation:hover {
    background-color: rgb(28,47,85);
}


#agences .filters .sep {
    display: inline-block;
    width: 1px;
    height: 20px;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 0;
    line-height: 0;
    padding: 0;
    vertical-align: middle;
}

#agences .wrapper-filters {
    display: block;
    position: sticky;
    top: 90px;
    z-index: 2;
    left: 0;
    background-color: rgba(255,255,255,0.9);
}


.infowindow {
    font-size: 13px;
    line-height: normal;
    font-weight: 400;
    font-family: "Poppins";
}

.infowindow p.societe {
    font-size: 16px;
    font-family: "Chillax";

}

.infowindow p strong {
    font-weight: 600;
}

.infowindow p a {
    color: rgb(64,100,169);
}



#faq .content h3 {
    font-size: 28px;
}

#faq .content dl {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: 25px 0;
    margin: 0;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    
}

#faq .content dl:last-of-type {
    border-bottom: none;
}

#faq .content dl dt {
    font-size: 17px;
    line-height: 26px;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 15px;
    box-sizing: border-box;
}
#faq .content dl dt::before {
    content: "+";
    display: flex;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    background-color: rgb(183,23,39);
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
    line-height: normal;
    align-items: center;
    justify-content: center;
    flex-grow: 0;
    flex-shrink: 0;
}

#faq .content dl dd {
    font-size: 15px;
    line-height: 26px;
    font-weight: 300;
    margin: 0;
    box-sizing: border-box;
    margin-left: 40px;
    display: none;
    padding-top: 15px;
}

#asso .flex-row,
#faq .flex-row {
    flex-wrap: wrap;
}

.flex.flex-row.flex-v-center {
    align-items: center;
}

#asso .logos {
    column-gap: 25px;
    justify-content: flex-end;
}

#asso .logos figure {
    display: block;
    height: 115px;
    width: auto;
    position: relative;
}

#asso .logos figure img {
    width: auto;
    height: 100%;
}

.content a:not(.link) {
    color: rgb(64, 100, 169);
}

.content a:not(.link):hover {
    text-decoration: none;
}

#asso .flex-row.chiffres {
    flex-wrap: nowrap;
    align-items: flex-start;
    column-gap: 30px;
    justify-content: center;
}

.chiffres .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
    flex-grow: 0;
    flex-shrink: 0;
    background-color: #fff;
    width: 220px;
    height: 220px;
    border-radius: 100%;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
}

.chiffres .item .number {
    font-size: 32px;
    line-height: normal;
    display: block;
    width: 100%;
    font-family: "Chillax";
    font-weight: 600;

}
.chiffres .item .legende {
    font-size: 13px;
    line-height: normal;
    display: block;
    width: 100%;
}

#mediation .roles .role a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    column-gap: 15px;
    cursor: pointer;
}

#mediation .roles .role a .ico {
    display: block;
    width: 50px;
    height: auto;
    flex-grow: 0;
    flex-shrink: 0;
}

#mediation .roles .role a h3 {
    display: block;
    font-size: 30px;
    line-height: normal;
    font-weight: 500;
    font-family: "Chillax";
    flex-grow: 1;
    flex-shrink: 1;
}

#mediation .roles .role a .action {
    display: block;
    width: 150px;
    height: auto;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 12px;
    line-height: normal;
    text-align: right;
}

#mediation .roles .role a .plus {
    /*content: "+";*/
    display: flex;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    background-color: rgb(183,23,39);
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
    line-height: normal;
    align-items: center;
    justify-content: center;
    flex-grow: 0;
    flex-shrink: 0;
}

#mediation .roles .role a:hover .plus {
    background-color: rgb(31,69,141);
}

#mediation .roles .role hr {
    background-color: rgba(28,47,85, 0.1);
}

#mediation .roles .role .content {
    display: none;
    padding-top: 15px;
    margin-top: 25px;
}

#mediation .roles .role .content ol li {
    margin-bottom: 10px;
}



#article .ariane {
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    letter-spacing: 1px;
}

#article .ariane a {
    color: rgb(64, 100, 169);
}
#article .ariane a:hover {
    text-decoration: none;
}

#article .titre.main h3 {
    text-align: justify;
}
#article .titre.main h1 {
    font-size: 40px;
    line-height: normal;
}

#article .titre.main .picto {
    width: 60px;
    height: auto;
}

#article .titre.main .infos {
    color:rgba(28, 47, 85, 0.4);
}


#article .wrapper-content .content h2,
#article .wrapper-content .content h2 b,
#article .wrapper-content .content h2 strong {
    font-weight: 600;
    font-size: 24px;
    line-height: normal;
    margin-top: 40px;
    color: rgb(64,100,169);
}


#article .wrapper-content .content h3,
#article .wrapper-content .content h3 b,
#article .wrapper-content .content h3 strong {
    font-weight: 600 !important;
    font-size: 21px !important;
    line-height: normal !important;
    margin-top: 30px !important;
    margin-bottom: 15px !important;
}

#article .wrapper-content .content h4,
#article .wrapper-content .content h4 b,
#article .wrapper-content .content h4 strong {
    font-weight: 600 !important;
    font-size: 19px !important;
    line-height: normal !important;
    margin-top: 25px !important;
    margin-bottom: 15px !important;
}

#article .wrapper-content .content h5,
#article .wrapper-content .content h5 b,
#article .wrapper-content .content h5 strong {
    font-weight: 600 !important;
    font-size: 17px !important;
    line-height: normal !important;
    margin-top: 25px !important;
    margin-bottom: 15px !important;
}


#article .wrapper-content .content p,
#article .wrapper-content .content p span,
#article .wrapper-content .content ul li
 {
    font-size: 15px !important;
    line-height: 26px !important;
    font-weight: 400 !important;
    font-family: "Poppins" !important;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    background-color: transparent !important;
}

#article .wrapper-content .content a:not(.link) {
    color: rgb(64, 100, 169) !important;
}
#article .wrapper-content .content a:not(.link) span {
    color: unset !important;
}



#article .wrapper-content .content ul li {
    line-height: normal !important;
    margin: 0 !important;
}







#article .shares {
    line-height: normal;
    column-gap: 10px;
}

.border-left {
    border-left: solid 1px rgba(31,69,141, 0.1);
}


#partenaires .partenaires {
    justify-content: center;
    align-items: flex-start;
    column-gap: 50px;
}

#partenaires .partenaires hr {
    background-color: rgba(31,69,141, 0.1);
}

#partenaires .partenaires .partenaire .logo {
    width: auto;
    height: 100px;
    position: relative;
}

#partenaires .partenaires .partenaire .logo img {
    display: block;
    width: auto;
    height: 100%;
}

#partenaires .partenaires .partenaire {
    row-gap: 25px;
    align-items: center;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.15);
    border-radius: 30px;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 30px;
}


#partenaires .partenaires .partenaire .content {
    line-height: normal;
}
#partenaires .partenaires .partenaire .content .link {
    font-size: 13px;
    line-height: normal;
    font-family: "Poppins";
    font-weight: 400;
    letter-spacing: 0;
    padding: 6px 15px;
}

#partenaires .partenaires .partenaire .content p {
    margin-top: 5px;
    margin-bottom: 5px;
}

.hiddenbloc {
    display: none;
}

p.links {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 10px;
    justify-content: center;
}

.aircanada .offres .border-left {
    border-left: solid 1px rgba(28,47,85, 0.1);
}

.aircanada .offres .offre ul {
    margin-left: 0;
    padding-left: 15px;
}

.aircanada .offres .offre ul li {
    margin-top: 7px;
    margin-bottom: 7px;
    line-height: normal;
    font-size: 14px;
}

.conseils .content ul {
    padding-left: 0;
    margin-left: 15px;
}

.conseils .content ul li {
    margin-top: 7px;
    margin-bottom: 7px;
    line-height: normal;
}

.conseils .content h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    margin-top: 30px;
}


#contact h3 {
    font-size: 25px;
    font-weight: 500;
    line-height: normal;
    margin-top: 30px;
}

.border-left {
    border-left: solid 1px rgb(28,47,85, 0.1);
}

#contact hr {
    background-color: rgb(28,47,85, 0.1);
    margin-top: 20px;
    margin-bottom: 20px;
}

#contact p small {
    line-height: normal;
    opacity: 0.5;   
}

#contact p form input[type=submit]:hover {
    background-color: rgb(31,69,141);
}

#contact p label {
    font-size: 13px;
    line-height: normal;
}

.content p strong {
    font-weight: 600;
}

#blog #articles {
    transition: all 400ms ease-in-out;
}