@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
    font-family: 'BabyBears';
    src: url('../fonts/BabyBears.eot');
    src: url('../fonts/BabyBears.eot') format('embedded-opentype'),
         url('../fonts/BabyBears.woff2') format('woff2'),
         url('../fonts/BabyBears.woff') format('woff'),
         url('../fonts/BabyBears.ttf') format('truetype'),
         url('../fonts/BabyBears.svg#BabyBears') format('svg');
}


:root {
    --font-montserrat: "Montserrat", sans-serif;
    --font-baby-bears: "BabyBears", sans-serif;
    --primary-color: #212227;
    --secondery-color: #ffffff;
	--hover-color: #e3bf21;
	--hover2-color: #365daa;
}
*{
	margin: 0;
	padding: 0;
}
body, html{
	font-family: var(--font-montserrat), sans-serif;
	overflow-x: hidden;
	font-size: 1rem;
	color: var(--primary-color);
	background-repeat: repeat;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	background-color: var(--secondery-color);
	font-weight: 400;
}
h1, h2, h3, h4, h5, h6{
	font-family: var(--font-baby-bears), sans-serif;
	margin: 0;
	font-weight: normal;
}
p{
	margin-bottom: 0;
}
a, i{
	text-decoration: none;
	transition: all .3s;
	cursor: pointer;
	display: inline-block;
}
.section.header {
    z-index: 3;
    position: absolute;
    width: 100%;
    left: 0;
    top: 40px;
}
.topHeader{
	background-color: #fff3f4;
}
.topHeader p{
	display: inline-block;
}
.section.topHeader p, .section.topHeader a{
	color: var(--primary-color);
	font-size: .8rem;
	margin-right: 30px;
	font-weight: 300;
}
.topHeader i,
.topHeader .rs a:hover i,
.topHeader a:hover{
	color: var(--hover-color);
}
.topHeader .col-9 a:last-child,
.topHeader .col-3 a:last-child{
	margin: 0;
}
.topHeader .rs i{
	color: #000;
}
.topHeader .rs a:last-child{
	margin-right: 0;
}
.topHeader .rs a{
	margin-right: 15px;
	font-size: 1rem;
}
.nav {
    width: 100%;
	transition: .3s;
}
.header .nav a.active{
	color: var(--hover-color);
	font-weight: 500;
}
a.languages:hover,
.header .nav a:hover{
	background-color: var(--hover-black);
}
a.languages, .header .nav a {
    color: var(--secondery-color);
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    background-color: transparent;
    transition: 0.3s;
    font-size: 1rem;
    margin-left: 20px;
	position: relative;
}
.header .nav a:hover::before,
.header .nav a.active::before {
    content: '';
    width: 20px;
    height: 3px;
    position: absolute;
    left: 0;
    right: 0;
    top: -5px;
    margin: auto;
    background-color: #e3bf21;
}
.header .nav .sub-menu a::before,
.header .nav .sub-menu a:hover::before{
	content: none;
}
a.languages{
	margin-left: 0;
}
.header .nav li:last-child a{
	margin-right: 0;
}
.nav .menu-item .menu-item{
	line-height: normal;
	text-align: left;
	padding: 5px;
}
.nav .menu-item .menu-item a{
	color: #FFF;
}
.nav .menu-item .menu-item a:hover{
	color: var(--hover-color);
}
.sub-menu, .nav-submenu {
    top: 40px;
    left: 10px;
    position: absolute;
    background-color: #000;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    border-radius: 0;
    padding: 15px;
    width: max-content;
    min-width: 250px;
    height: auto;
    float: left;
    transition: .3s;
}
.header .nav .sub-menu a{
	padding: 5px 10px;
	display: block;
}
/* Search */
.header a.btnSearch:hover { color: var(--secondery-color);}
.header a.btnSearch {
    margin: 0;
    color: var(--hover-color);
    z-index: 5;
    cursor: pointer;
    font-size: 1.5rem;
    position: relative;
	float: right;
	margin-top: 6px;
}
.search ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	opacity: 0.5;
	color: #000;
  }
.search  ::-moz-placeholder { /* Firefox 19+ */
	opacity: 0.5;
	color: #000;
  }
.search :-ms-input-placeholder { /* IE 10+ */
	opacity: 0.5;
	color: #000;
  }
.search :-moz-placeholder { /* Firefox 18- */
	opacity: 0.5;
	color: #000;
}
.header a:hover{
	color: var(--hover-color);
}
.header a.active{
	color: var(--hover-color);
	font-weight: 500;
}
.main_menu .sub-menu li a,
.header .nav .sub-menu li a,
.header .nav .sub-menu li{
	font-family: var(--font-montserrat);
	font-size: 1.3rem;
	display: block;
	margin-left: 0;
	margin: 0;
	border-color: rgba(255,255,255, 0.2);
}
.menu-item .sub-menu .sub-menu {
    left: 90%;
    top: 5px;
}
.myPopup{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,0.85);
	z-index: -1;
	display: none;
	opacity: 0;
	transition: all .3s;
}
.myPopup.active{
	opacity: 1;
	z-index: 99999;
}
.myPopup input[type = "submit"]{
	background-color: #000;
	color: #FFF;
	transition: all .3s;
}
.myPopup input[type = "submit"]:hover{
	background-color: var(--hover-color);
	color: #000;
}
.closePopup{
	font-size: 4rem !important;
	color: var(--secondery-color);
	position: absolute;
	right: 15px;
	top: 15px;
}
.closePopup:hover{
	opacity: .7;
}
.slider{
	position: relative;
}
.slider .slide::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-image: linear-gradient(rgba(0,0,0,.7), transparent);
}
.slider .rs {
    position: absolute;
    width: 50px;
    right: 30px;
    top: 35%;
    z-index: 999999;
}
.slider .rs a:hover{
	background-color: rgba(0,0,0,0.5);
    color: var(--secondery-color);
}
.slider .rs a{
	color: #fff;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-bottom: 12px;
}
.slider .rs a i{
	font-size: 18px;
	line-height: inherit;
}
.slider .caption{
	position: absolute;
	width: 50%;
	max-width: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: 0;
	text-align: left;
	background-color: transparent;
	justify-content: center !important;
	padding: 2.5rem;
}
.slider h2 img{
	display: inline-block;
	width: 3rem;
}
.slider h2{
	font-size: 5rem;
	line-height: 5rem;
	font-family: var(--font-baby-bears);
    color: #fff;
	margin-bottom: 1rem;
}
.slider p{
	font-size: 1.5rem;
	font-style: italic;
	font-weight: 500;
    color: var(--secondery-color);
	margin-bottom: 1rem;
}
.slider p a:hover{
	background-color: var(--hover-color);
}
.slider p a{
	font-size: .9rem;
	font-style: normal;
	display: inline-block;
	font-weight: 600;
    color: #365daa;
	margin-right: 10px;
	background-color: var(--secondery-color);
	padding: 5px 15px;
	border-radius: 30px;

}
/* ********************************************************************************************** */
/* ********************************************************************************************** */
/* ********************************************************************************************** */
/* ********************************************************************************************** */
/* ********************************************************************************************** */
/* ********************************************************************************************** */
.map iframe{
	width: 100%;
	max-width: 100%;
	height: 400px;
}
.contact .infos i{
	font-size: 3rem;
	color: var(--hover-color);
	margin-bottom: 20px;
}
.contact .infos h4{
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 20px;
}
.contact .infos p,
.contact .infos h5,
.contact .infos a{
	font-weight: 300;
	text-align: center;
	color: #FFF;
}
.contact .infos a:hover{
	color: var(--hover-color);
}
.contact .infos h5{
	font-weight: 500;
	color: var(--hover-color);
	margin-bottom: 5px;
}
.contact .form-control{
	height: 40px;
	border-radius: 0;
	background-color: transparent;
	border: 1px solid #a3a3a3;
}
.contact textarea.form-control{
	height: 120px;
}
.contact button:hover{
	opacity: .7;
}
.contact button{
	background-color: var(--hover-color);
	color: #000;
	font-size: 1.1rem;
	font-weight: 700;
	padding: 10px 30px;
	border: 0;
	border-radius: 0;
	transition: all .3s;
}
.logo img {
    width: 120px;
	height: auto;
    max-width: 100%;
}
.pagination li{
	display: inline-block;
	margin: 0 5px;
}
.pagination a{
	color: #000;
	padding: 3px;
}
.pagination .current,
.pagination a:hover{
	color: var(--hover-color);
}
.linkHover{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background-color: transparent;
	padding: 0;
}
.footer{
	background-color: #f2f0ec;
	margin-top: 100px;
}
.copyright{
	background-color: var(--primary-color);
}
.copyright p{
	font-size: .9rem;
	color: var(--secondery-color);
}
.copyright a:hover{
	color: var(--secondery-color);
}
.copyright a{
	font-size: .9rem;
	color: var(--hover-color);
}
.footer .logo-footer img{
	width: 150px;
	margin: auto;
	margin-top: -135px;
}
.footer h3{
    font-family: var(--font-montserrat);
	font-size: 1rem;
	text-transform: uppercase;
	font-style: italic;
}
.footer h4{
	font-family: var(--font-montserrat);
    font-weight: 600;
	font-size: 1.1rem;
    color: var(--primary-color);
    padding-bottom: 8px;
	margin-bottom: 15px;
}
.footer a:hover{
	color: var(--hover-color);
}
.footer li,
.footer a,
.footer p{
	font-family: var(--font-montserrat);
	font-size: .9rem;
    color: var(--primary-color);
    margin-bottom: .3rem;
}
.footer button:hover{
	background-color: var(--primary-color);
	color: var(--secondery-color);
}
.footer button{
	background: transparent;
    border: 1px solid #212227;
    padding: 10px 30px;
    font-family: var(--font-montserrat);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}
.footer .form-control{
	display: block;
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid #212227;
	border-radius: 0;
	margin-bottom: 15px;
}
/* ********************************************************************************************** */
/* ********************************************************************************************** */
/* ********************************************************************************************** */
/* ********************************************************************************************** */
/* ********************************************************************************************** */
/* ********************************************************************************************** */
.nav-item, .menu-item {
    float: none;
    display: inline-block;
}
.nav-list {
    padding-right: 50px;
	text-align: right;
}
.detailsPost .hover a:hover,
.header a.don:hover{
	opacity: .7;
}
.detailsPost .hover a,
.header a.don{
	font-family: var(--font-montserrat);
	font-weight: bold;
	color: #365daa;
	background-color: var(--hover-color);
	border-radius: 30px;
	font-size: 1rem;
	padding: 5px 25px;
	margin-right: 15px;
	text-transform: uppercase;
}
.hover{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: .3s;
	padding: 30px;
	background-color: rgb(242, 240, 236,.85);
}
.catPosts .col-md-4:hover .hover,
.detailsPost:hover .hover{
	opacity: 1;
}
.hover h3{
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #365daa;
}
.section.title {
    height: 400px;
    background-position: left bottom;
    background-size: cover;
}
.section.title h1{
    font-size: 3rem;
	color: var(--secondery-color);
}
.article .sec1 .align-self-center{
	align-self: flex-start !important;
}
.breadcrumb{
	margin-bottom: 0;
}
.breadcrumb a,
.breadcrumb span{
	font-weight: 400;
	color: var(--primary-color);
	display: inline-block;
	margin: 0 5px;
}
.breadcrumb a:hover{
	color: #365daa;
}
.breadcrumb span.page{
	font-weight: 700;
	color: #365daa;
}
h1{
	font-size: 4rem;
	color: #365daa;
}
.about{
	position: relative;
}
.pageAbout::before,
.about::before{
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(http://localhost:8888/sites/qenza/sdo/wp-content/uploads/2025/01/carte.png);
	background-position: top center;
	background-size: 100%;
	background-repeat: no-repeat;
	left: 0;
	top: -100px;
	position: absolute;
	z-index: -1;
}
.pageAbout::before{
	top: -200px;
}
.section.breadcrumb{
	z-index: 3;
}
.about .sec1 .content1{
	text-align: center;
}
.about .sec1 .col-md-4:hover .content1{
	background-image: url(http://localhost:8888/sites/qenza/sdo/wp-content/uploads/2025/01/bg1-hover.png);
}
.about .sec1 .content1{
	padding: 30px;
	background-image: url(http://localhost:8888/sites/qenza/sdo/wp-content/uploads/2025/01/bg1.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
	position: relative;
	transition: .3s;
}
.about .sec1 .content1 img{
	height: 60px;
	width: auto;
	margin: auto;
}
.about .sec1 .content2 a:hover{
	color: var(--hover2-color);
}
.about .sec1 .content2 a{
	color: var(--primary-color);
	font-size: 1.2rem;
	font-weight: 700;
	line-height: normal;
}
.about .sec2{
	padding-top: 3rem;
}
.pageAbout h1,
.about .sec2 h1{
	font-size: 1rem;
	font-weight: 500;
	font-family: var(--font-montserrat);
}
.pageAbout h2,
.about .sec2 h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.pageAbout strong,
.section strong{
	font-size: 1rem;
	font-weight: 600;
}
.section p:last-child{
	margin-bottom: 0;
}
.section p{
	font-size: 1rem;
	margin-bottom: 1rem;
}
.pageAbout .col2 .content1,
.about .sec2 .col2 .content1{
	padding-left: 2rem;
}
.pageAbout a:hover,
.don a.edgtf-btn:hover,
.cta a:hover,
.articles a:hover,
.activites .col-md-4 a:hover,
.about .sec2 a:hover{
	opacity: .7;
}
.pageAbout a,
.cta a,
.don a.edgtf-btn,
.articles a,
.activites .col-md-4 a,
.about .sec2 a{
	font-size: 1rem;
	font-style: normal;
	display: inline-block;
	font-weight: 600;
    color: #FFF;
	margin-right: 10px;
	background-color: var(--hover-color);
	padding: 15px 25px;
	border-radius: 30px;
	margin-top: 1rem;
	text-transform: uppercase;
}
.articles a{
	padding: 10px 25px;
	margin-bottom: 1.5rem;
}
.articles .align-self-center{
	align-self: flex-start !important;
}
.articles::before {
    content: '';
    width: 100%;
    height: 44.7%;
    background-color: #f2f0ec;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.articles .content1{
	border: 1px solid #f2f0ec;
}
.articles h3{
	color: var(--primary-color);
	font-size: 2rem;
	margin-bottom: 1rem;
	padding: 0 1.5rem;
}
.articles p{
	padding: 0 1.5rem;
}
.articles p:first-child{
	padding: 0;
}
.section.video{
	background-color: #f2f0ec;
}
h2{
	font-size: 4rem;
	margin-bottom: 1rem;
}
.section.video p{
	font-size: 1rem;
	margin-bottom: .5rem;
}
.section.video iframe{
	width: 100%;
	height: 400px;
}
.activites .sec2 .content.content2{
	margin: 0 5%;
}
.activites .sec2 .content.content1,
.activites .sec2 .content.active,
.activites .sec2 .content:hover{
	background-color: var(--hover2-color);
}
.activites .sec2 .content.content1.disabled{
	background-color: #f2f0ec;
}
.activites .sec2 .content.content1.disabled *{
	color: var(--primary-color);
}
.activites .sec2 .content.content1.disabled.active{
	background-color: var(--hover2-color);
}
.activites .sec2 .content.content1.disabled.active *{
	color: var(--secondery-color);
}
.activites .sec2 .content.active *{
	color: var(--secondery-color);
}
.activites .sec2{
	padding-top: 3rem;
}
.activites .sec2 .content{
	display: block;
	height: 100px;
	width: 30%;
	background-color: #f2f0ec;
	margin: 0;
	float: left;
	text-align: center;
	transition: .3s;
	cursor: pointer;
}
.activites .sec2 .content.content1 *,
.activites .sec2 .content:hover *{
	color: var(--secondery-color);
}
.activites .sec5 h3,
.activites .sec4 h3,
.activites .sec3 h3{
	font-size: 2rem;
	margin-bottom: 1rem;
	color: var(--hover2-color);
}
.activites .sec3 .wow,
.activites .sec4 .wow,
.activites .sec5 .wow{
	opacity: 1 !important;
	animation: none !important;
	visibility: visible !important;
}
.activites .sec3,
.activites .sec4,
.activites .sec5{
	padding-top: 2rem;
}
.activites .sec4,
.activites .sec5{
	display: none;
}
.activites .sec3.disabled,
.activites .sec4.disabled,
.activites .sec5.disabled{
	display: none;
}
.activites .sec3.disabled.active,
.activites .sec4.disabled.active,
.activites .sec5.disabled.active{
	display: block;
}
.activites h4{
	color: var(--hover2-color);
	font-size: 2rem;
}
.activites .col-md-4{
	text-align: center;
}
.activites .align-self-center{
	align-self: flex-start !important;
}
.activites .col-md-4 a{
	font-size: 1.5rem;
	margin: auto;
}
.activites .col-md-4 p:last-child{
	margin-bottom: 0;
}
.activites .col-md-4 p{
	margin-bottom: 3rem;
}
.chiffres{
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: bottom 100% left;
}
.chiffres::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 50%;
	background-color: #f2f0ec;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.keys .col-md{
	text-align: center;
}
.keys img{
	width: 100px;
	margin: auto;
	margin-bottom: 1rem;
}
.keys h3{
	font-size: 2.5rem;
	line-height: 2.5rem;
	color: var(--hover2-color);
	margin-bottom: 0;
}
.chiffres .container{
	max-width: 1000px;
	background-color: var(--secondery-color);
	padding: 1.5rem;
}
.partenaires {
	text-align: center;
}
.partenaires img {
    width: 20%;
    margin: 4% 6% 0;
}
.cta .container {
    max-width: 100%;
}
.cta .container .col1{
    padding: 0 !important;
}
.cta{
	display: flex;
	justify-content: center;
}
.cta .col2{
    position: absolute;
	align-self: center;
	left: 0;
	right: 0;
}
.cta p{
	font-size: 2.5rem;
	line-height: 2.5rem;
	color: var(--secondery-color);
	margin-bottom: .5rem;
	font-family: var(--font-baby-bears);
}
.footer.section p {
	margin-bottom: .1rem;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 0;
    background: #f2f0ec;
    font-weight: 700;
    color: var(--hover2-color);
}
.ui-accordion .ui-accordion-header::first-letter {
	color: var(--hover-color);
}
.ui-accordion .ui-accordion-header {
    display: block;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0 0;
    padding: .5em .5em .5em .7em;
    font-size: 2rem;
	font-family: var(--font-montserrat);
	font-weight: 700;
	color: var(--primary-color);
}
.ui-accordion .ui-accordion-header.ui-state-active,.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 0;
    background: #f2f2f2;
    font-weight: 700;
    color: var(--hover2-color);
}
.ui-icon, .ui-widget-content .ui-icon{
	display: none;
}
.ui-accordion .ui-accordion-header.ui-state-active::before{
	content: '-';
	color: var(--hover2-color);
	font-size: 2rem;
}
.ui-accordion .ui-accordion-header::before{
	content: '+';
	font-family: var(--font-montserrat);
	color: var(--primary-color);
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 2rem;
	font-weight: 700;
	transition: .3s;
}
.accordion h4{
	color: var(--hover2-color);
	font-size: 1.5rem;
	margin: 1rem 0;
}
.accordion ul{
	list-style: disc;
	padding-left: 30px;
}
.accordion ol{
	list-style: decimal;
	padding-left: 30px;
}
.accordion li{
	margin-bottom: .5rem;
}
.ui-accordion .ui-accordion-content {
    padding: 2em 2.2em;
}
.contact .sec4,
.contact .sec3,
.contact .sec2{
	padding-top: 3rem;
}
.contact .sec2{
	text-align: center;
}
.contact .sec2 img{
	width: 80px;
	margin: auto;
}
.contact .sec2 h3{
	font-size: 1.5rem;
	font-family: var(--font-montserrat);
	margin-bottom: 1rem;
}
.contact .sec2 a:hover{
	color: var(--hover-color);
}
.contact a{
	color: var(--primary-color);
}
.contact .form-control{
	color: var(--primary-color);
	border: 0;
	border-bottom: 1px solid var(--primary-color);
	padding: 5px 0;
	height: 50px;
	border-radius: 0;
	margin-bottom: 2rem;
}
.contact input[type = 'checkbox']{
	width: 25px;
	height: 25px;
	display: inline-block;
	margin-right: 10px;
}
.contact form a {
    line-height: 35px;
}
.contact button{
	color: var(--secondery-color);
	border-radius: 30px;
}
.contact .sec4 h3{
	font-size: 3rem;
	color: var(--hover2-color);
	text-align: center;
}
.article p a{
	color: var(--hover2-color);
	font-weight: 500;
}
.article p a:hover{
	color: var(--hover-color);
}
.article h3,
.article h4,
.article h5,
.article h6{
	color: var(--hover2-color);
	margin-bottom: 1rem;
}
.don h3::first-letter{
	color: var(--hover-color);
}
.don h3{
	font-size: 2.5rem;
	color: var(--hover2-color);
	margin-bottom: 1rem;
}
.don h4{
	font-family: var(--font-montserrat);
	font-weight: 600;
	font-size: 1.5rem;
	color: var(--hover-color);
	margin-bottom: 1rem;
}
.don .align-self-center {
	align-self: flex-start !important;
}
.don .col-md-8,
.don .col-md-4{
	margin-bottom: 2rem !important;
}
.don td{
	padding-bottom: .5rem;
	font-weight: 500;
}
.don input[type='image']:hover,
.don a:hover{
	opacity: .7;
	transition: .3s;
}
.bitcoin a{
	color: var(--hover2-color);
	font-weight: 700;
}
.bitcoin a:hover{
	color: var(--hover-color);
}
.bitcoin h2 strong{
	font-size: 4rem;
	color: var(--hover2-color);
}
.page347 .content iframe{
	height: 350px;
	width: 100%;
}
.page369 .thumb img{
	margin-bottom: 1rem;
}
.page369 .col-md-4 h6{
	color: #3d3d3d;
}
.page369 .col-md-4 h4{
	margin-bottom: 1rem;
}
.page369 .col-md-4 a:hover{
	opacity: .7;
}
.page369 .col-md-4 a{
	font-family: var(--font-montserrat);
    font-weight: bold;
    color: #365daa;
    background-color: var(--hover-color);
    border-radius: 30px;
    font-size: 1rem;
    padding: 5px 25px;
    margin-right: 15px;
    text-transform: uppercase;
}






















.contact iframe{
	width: 100%;
	max-width: 100%;
}
/* Change the white to any color */
.newsletter input:-webkit-autofill,
.newsletter input:-webkit-autofill:hover, 
.newsletter input:-webkit-autofill:focus, 
.newsletter input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px black inset !important;
}
/*Change text in autofill textbox*/
input:-webkit-autofill{
    -webkit-text-fill-color: var(--primary-color) !important;
}
.hover{
	position: absolute;
	width: 100%;
	height: auto;
	left: 0;
	bottom: 0;
	top: 0;
	padding: 0 15px;
}
.slick-dots {
    bottom: 95px;
}
.slick-dots li button:hover {
	opacity: .7;
}
.slick-dots li button:before {
    font-family: var(--font-montserrat);
    line-height: 15px;
    width: 15px;
    height: 15px;
    content: '';
    opacity: 1;
	border: 1px solid #FFF;
    background-color: transparent;
	border-radius: 50%;
}
.slick-dots li.slick-active button:before{
	opacity: 1;
	background-color: var(--secondery-color);
}
.slick-next, .slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4rem;
    height: 4rem;
    padding: 0;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    background: 0 0;
    right: 30px;
    z-index: 99;
    left: auto;
	margin: auto;
	transition: all .3s;
	opacity: 0;
	z-index: 99;
}
.carousel3:hover .slick-next, .carousel3:hover .slick-prev{
	opacity: 1;
	cursor: pointer;
}
.slick-next:focus, .slick-next:hover, 
.slick-prev:focus, .slick-prev:hover {
	opacity: 1;
	cursor: pointer;
}
.slick-prev {
	left: 30px;
	right: auto;
}
.slick-next:before, .slick-prev:before {
    content: '\f104';
	font-family: 'FontAwesome';
    position: absolute;
    width: 4rem;
    height: 4rem;
	font-size: 4rem;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
	color: #FFF;
}
.slick-next:before{
	content: '\f105';
}
/* MODAL */
.modal{
	z-index: 99999;
}
.modal-dialog {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    height: 100vh;
    margin: 0;
	background-color: #00182c;
	background-image: url(../images/logo-form.png);
	background-size: 20%;
	background-repeat: no-repeat;
	background-position: top 100px right 50px;
}
.modal-content{
	background-color: transparent;
}
button.btn-close.float-end {
    width: 3rem;
    height: 3rem;
    background-size: 2rem;
    position: absolute;
    right: 15px;
    top: 15px;
	background: none;
	opacity: 1;
}
button.btn-close.float-end::before{
	content: '\f00d';
	font-family: 'FontAwesome';
	font-size: 3rem;
	color: #FFF;
	opacity: 1;
	z-index: 1;
	position: absolute;
	width: 3rem;
    height: 3rem;
	left: 0;
	top: 0;
	transition: all .3s;
}
button.btn-close.float-end:hover::before{
	opacity: .7;
}

.posRel{
	position: relative;
}

.full-width{
	width: 100%;
	max-width: 100%;
}
.slick-dotted.slick-slider{ margin-bottom: 0;}
.messagesV p.valide{
	font-size: 13px;
	color: green;
	margin-bottom: 5px;
}
.messagesV p.error{
	font-size: 13px;
	color: #F00;
	margin-bottom: 5px;
}
.card-columns{ width: 100%;}
@media (min-width: 576px) {
    .card-columns {
        column-count: 2;
    }
}

@media (min-width: 768px) {
    .card-columns {
        column-count: 3;
    }
}

@media (min-width: 992px) {
    .card-columns {
        column-count: 4;
    }
}

@media (min-width: 1200px) {
    .card-columns {
        column-count: 4;
    }
}
.msgs{
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  text-align: center;
  display: none;
  top: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 999;
}
.msg{
  position: fixed;
  width: 80%;
  height: 80vh;
  text-align: center;
  background-color: #FFF;
  overflow-y: auto;
  /*box-shadow: 4px 6px 10px rgba(0,0,0,0.4);*/
  padding: 30px 40px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
}
.msg p{
  font-size: 21px;
  color: #f08b86 !important;
  margin: 0;
  background: #FFF;
  padding: 30px;
}
.fermer{
  background-image: url(../images/close.svg);
  background-size: cover;
  height: 25px;
  width: 25px;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 999;
  cursor: pointer;
}
.popup{
	height: 0;
	overflow: hidden;
	-webkit-transition: all .3s; /* Safari */
    transition: all .3s;
}
.popup.active{
	padding: 60px 0 0;
	display: block;
	height: auto;
}
.popup .fermer{
	position: static;
	width: 25px;
	height: 25px;
	background-image: url("../images/close.svg");
	background-size: 25px;
	background-position: center;
	float: right;
	margin: 0 0 20px;
}
.popup img{
	width: 100%;
	margin: 0 0 20px;
}
.popup h3{
	font-size: 31px;
	margin: 0 0 20px;
}
.popup p{
	margin: 0 0 10px;
}
.fermer:hover{
	opacity: 0.7;
}
.borderGray{
	border: 1px solid #c8c8c8;
}
.newsletter ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	opacity: 0.9;
	color: #FFF;
  }
.newsletter ::-moz-placeholder { /* Firefox 19+ */
	opacity: 0.9;
	color: #FFF;
  }
.newsletter :-ms-input-placeholder { /* IE 10+ */
	opacity: 0.9;
	color: #FFF;
  }
 .newsletter :-moz-placeholder { /* Firefox 18- */
	opacity: 0.9;
	color: #FFF;
  }
.contact ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	opacity: 1;
	color: var(--primary-color);
  }
.contact ::-moz-placeholder { /* Firefox 19+ */
	opacity: 1;
	color: var(--primary-color);
  }
.contact :-ms-input-placeholder { /* IE 10+ */
	opacity: 1;
	color: var(--primary-color);
  }
 .contact :-moz-placeholder { /* Firefox 18- */
	opacity: 1;
	color: var(--primary-color);
  }

.search ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	opacity: 0.5;
	color: #000;
  }
.search  ::-moz-placeholder { /* Firefox 19+ */
	opacity: 0.5;
	color: #000;
  }
.search :-ms-input-placeholder { /* IE 10+ */
	opacity: 0.5;
	color: #000;
  }
.search :-moz-placeholder { /* Firefox 18- */
	opacity: 0.5;
	color: #000;
}
img{
	max-width: 100%;
	height: auto;
}
input.error, textarea.error{
	border-color: #F00 !important;
	color: #F00 !important;
}
.preload{
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #000000;
	left: 0;
	top: 0;
	z-index: 99999999;
	position: fixed;
}
.preload div{
	width: 100px;
	height: 100px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	text-align: center;
}
.preload .logo{
	max-width: 100px;
	margin: -30px 0 30px
}
.preload .load{ max-width: 50px; }
.thumbnail{
	padding: 0;
	border: 0;
	border-radius: 0;
}

.section{ 
	display: block;
	clear: both;
	position: relative;
	height: auto;
	z-index: 1;
}
.bgblack{ background-color: #000; }
.bgred{ background-color: #ca222b; }
.bgGray{ background-color: #ededed; }
.bgWhite{ background-color: #FFF; }
.cb{
	clear: both;
	width: 100%;
	float: left;
	height: 1px;
}
a:hover, a:focus{
	text-decoration: none;
	-webkit-transition: all .3s; /* Safari */
    transition: all .3s;
    cursor: pointer;    
}
/*margin*/
.paddingRightLeft{
	padding: 0 15px;
}
.paddingMin{
	padding-left: 5px;
}
.noPadding{ padding: 0; }
.mb-20{margin-bottom: 20px;}
.mb-40{margin-bottom: 40px;}
.mb-60{margin-bottom: 60px;}
.mb-80{margin-bottom: 80px;}
.mb-100{margin-bottom: 100px;}
.mt-20{margin-top: 20px; }
.mt-40{margin-top: 40px; }
.mt-60{margin-top: 60px; }
.mt-80{margin-top: 80px; }
.mt-100{margin-top: 100px; }
/*Padding*/
.no-padding{ padding: 0  }
.pt-10{padding-top: 10px;}
.pt-15{padding-top: 15px;}
.pt-20{padding-top: 20px;}
.pt-30{padding-top: 30px;}
.pt-40{padding-top: 40px;}
.pt-60{padding-top: 60px;}
.pt-80{padding-top: 80px;}
.pt-100{padding-top: 100px;}

.pb-10{padding-bottom: 10px;}
.pb-15{padding-bottom: 15px;}
.pb-20{padding-bottom: 20px;}
.pb-30{padding-bottom: 30px;}
.pb-40{padding-bottom: 40px;}
.pb-60{padding-bottom: 60px;}
.pb-80{padding-bottom: 80px;}
.pb-100{padding-bottom: 100px;}
ul, ol{
	list-style: none;
	padding: 0;
	margin: 0;
}
img{ max-width: 100%; }

@media screen and (max-width: 768px) {
	
}

@media screen and (max-width: 650px) {
	.section.header {
		position: relative;
		z-index: 99999;
		left: 0;
		top: 0px;
		background-color: var(--primary-color);
		width: 100%;
		transition: all .3s;
	}
	.header .logo img {
		width: 90px;
		margin-left: 15px;
	}
	.header .nav{
		padding: 0;
	}
	.nav-mobile {
		top: -50px;
		right: -5px;
	}
	.fixed.header {
		position: fixed;
	}
	.fixed.header .logo img {
		width: 70px;
	}
	.fixed .row.py-4 {
		padding: 10px 0 !important;
	}
	.fixed .nav-mobile {
		top: -45px;
	}
	.nav-mobile {
		background-image: url(../images/nav-blanc.png);
	}
	.header .nav li {
		display: block;
		text-align: left;
		margin-bottom: 10px;
		border: 0;
	}
	.nav{
		background-color: var(--primary-color);
	}
	.nav ul {
		display: none;
		padding: 30px 0 30px;
		background-color: var(--primary-color);
		max-width: 100%;
		overflow-y: auto;
		max-height: 100vh;
	}
	.row.mainMenu {
		position: absolute;
		width: 103%;
		background-color: var(--primary-color);
		padding: 10px 10px 0  !important;
		left: 0;
	}
	.slider.section .slide {
		height: 91vh;
		background-position: right top;
		background-size: cover;
	}
	.slider.section .slide img {
		display: none;
	}
	.slide .caption::before{
		content: none;
	}
	.slider .slide h1 {
		font-size: 3rem;
		line-height: 3.5rem;
	}
	.slider h2 {
		font-size: 3rem;
		line-height: 3rem;
	}
	.page .slider p {
		font-weight: 300;
		letter-spacing: 0.3px;
		width: 95%;
		margin: auto;
		color: #FFF;
		padding-top: 20px;
	}
	.slider .caption{
		margin-top: -70px;
		width: 100%;
		padding: 1.5rem;
	}
	.slider p a{
		margin-bottom: 1rem;
	}
	.nav-list {
		padding-right: 0;
	}
	.chiffres .container {
		max-width: 85%;
	}
	.chiffres {
		background-size: 200%;
		background-repeat: no-repeat;
		background-position: bottom 56% left;
	}
	.partenaires img {
		width: 35%;
	}
	.cta .col2 {
		position: static;
		margin-bottom: 1rem;
	}
	.cta p {
		font-size: 2.5rem;
		line-height: 2.5rem;
		color: var(--hover2-color);
		margin-bottom: .5rem;
		font-family: var(--font-baby-bears);
	}
	.cta.section{
		padding: 0 !important;
	}
	.activites .sec2 .content.content2 {
		margin: 0 0 .5rem;
	}
	.activites .sec2 .content {
		width: 100%;
		height: auto;
		margin: 0 0 .5rem;
		padding: 1.2rem;
	}
	.footer .col-md.bloc1{
		width: 100%;
	}
}

