/********* FONTS ET GÉNÉRAL *********/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');


/* Couleurs Principales */
.primary{
    color:#000050;
}
.secondary{
    color: #e4c636;
}
.tertiary{
    color: #ff6e6e;
}
.bg_primary{
    background-color:#000050;
    color:#FFF;
}
.bg_secondary{
    background-color: #e4c636;
}
.bg_tertiary{
    background-color: #ff6e6e;
}
.bg_grey{
    background-color: #b2b2b2;
}

.bg_primary h2{
    color:#FFF;
}


/* Générales */
*{
    box-sizing: border-box;
}


body{
	font-family: 'Montserrat', sans-serif;
	position:relative;
	height:auto;
    background: #FFF;
    color:#505050;
}
body.menu{
    height: 100vh;
    overflow: hidden;
}

.row {
    display: flex;
}
.row.vcenter {
    align-items: center;
}
.row.wrap {
    flex-wrap: wrap 
}
.row .right {
	order:2;
}

img, video {
    max-width: 100%;
    width: auto;
    height: auto;
}

a{
    text-decoration: none;
	color:#505050;
}

li{
    line-height: 2.5rem;
}

h1,h2,h3,h4{
    font-weight: 700;
    color: #000;
}
h1{
	font-size:6rem;
	line-height:7rem;
}

h2{
    font-size: 3rem;
}
h3{
    font-size: 2rem;
}

.titre{
    display: flex;
    align-items: center;
}
.titre.text-center{
    justify-content: center;
}
.titre img{
    height: 100px;
    margin-right: 20px;
}
.btn{
    border-style: none;
    border-width: 0;
    cursor:pointer;
	font-weight: bold;
	margin: 10px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    padding: 20px 30px;
}
.btn.column{
    flex-direction: column;
}
.btn span{
    display: block;
    font-weight: normal;
}
.btn i{
    font-size: 3rem;;
    margin-right: 10px;
}
section.texte{
    padding:120px 0;
}
.bg-img{
	padding: 150px 0;
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.overflow_y{
    overflow-y: auto;
}

form select{
}
form textarea,
form input{
	font-family: 'Montserrat', sans-serif;
}
.liste_radio label{
    background: #505050;
}
.liste_radio label:hover,
.liste_radio input:checked + label{
    background: #000050;
    color:#FFF;
}


section.head{
    padding: 250px 0 50px;
}

.popup .content{
    color:#000;
}

.box_form{
    padding: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

/******** BOITE DE DIALOG **********/
.dialog{
    display:none;
}
.ui-dialog{
    z-index: 600;
    background: rgb(255, 255, 255);
    padding: 20px;
    text-align: center;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.ui-dialog .btn {
    margin: 10px;
    padding: 10px 20px;
}
.ui-dialog-titlebar{
    display: none;
}
.bg_grey {
    background-color: #efefef!important;
}
.btn.bg_grey {
    background-color: #efefef;
    color: #2f3f55;
}
.popup_overlay,
.overlay{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(47, 63, 85, 0.7);
    z-index: 500;
}
.overlay{
    z-index: 600;
}
.close .ui-dialog{
    margin-top: -20px;
    opacity: 0;
}


/* HEADER */

header{
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    z-index: 50;
	-o-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
header.minus{
    background: #FFF;
}
header .logo{
	height:100px;
	width:100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    padding: 5px;
    overflow: hidden;
	-o-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
header .logo img{
    object-fit: cover;
}
header.minus .logo{
	height:70px;
	width:70px;
}



header a#burger {
    position: relative;
	width:40px;
	height:40px;
    padding: 10px;
    background: #000;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    z-index: 20;
}
header a#burger strong{
	width:100%;
	height:100%;
    display: block;
    position: relative;
}
header a#burger span{
    position: absolute;
    height: 2px;
    width: 100%;
    display: block;
    background-color: #fff;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
header a#burger span:nth-child(1){
    top: 0;
    -moz-transition: top 0.3s ease 0.3s, -moz-transform 0.3s ease-out 0.1s;
    -o-transition: top 0.3s ease 0.3s, -o-transform 0.3s ease-out 0.1s;
    -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-out;
    -webkit-transition-delay: 0.3s, 0.1s;
    transition-delay: 0.3s, 0.1s;
    transition: top 0.3s ease 0.3s, transform 0.3s ease-out 0.1s;
}
header a#burger span:nth-child(2){
    top: 9px;
    -moz-transition: ease 0.3s 0.3s;
    -o-transition: ease 0.3s 0.3s;
    -webkit-transition: ease 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    transition: ease 0.3s 0.3s;
}
header a#burger span:nth-child(3){
    top: 18px;
    -moz-transition: top 0.3s ease 0.3s, -moz-transform 0.3s ease-out 0.1s;
    -o-transition: top 0.3s ease 0.3s, -o-transform 0.3s ease-out 0.1s;
    -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-out;
    -webkit-transition-delay: 0.3s, 0.1s;
    transition-delay: 0.3s, 0.1s;
    transition: top 0.3s ease 0.3s, transform 0.3s ease-out 0.1s;
}
header a#burger.active span:nth-child(1){
    top: 9px;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -moz-transition: top 0.3s ease 0.1s, -moz-transform 0.3s ease-out 0.5s;
    -o-transition: top 0.3s ease 0.1s, -o-transform 0.3s ease-out 0.5s;
    -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-out;
    -webkit-transition-delay: 0.1s, 0.5s;
    transition-delay: 0.1s, 0.5s;
    transition: top 0.3s ease 0.1s, transform 0.3s ease-out 0.5s;
}
header a#burger.active span:nth-child(2){
    opacity: 0;
}
header a#burger.active span:nth-child(3){
    top: 9px;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -moz-transition: top 0.3s ease 0.1s, -moz-transform 0.3s ease-out 0.5s;
    -o-transition: top 0.3s ease 0.1s, -o-transform 0.3s ease-out 0.5s;
    -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-out;
    -webkit-transition-delay: 0.1s, 0.5s;
    transition-delay: 0.1s, 0.5s;
    transition: top 0.3s ease 0.1s, transform 0.3s ease-out 0.5s;
}
  

header nav {
    position: fixed;
    width: 100%;
	height:0;
    top: 0;
    left:0;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
header.active nav {
    height: 100vh;
}

header nav ul.menu{
	position:relative;
    padding-top: 70px;
    padding-bottom: 100px;
    overflow-y: auto;
    height: 100%;
	display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0;
    z-index: 10;
}
header.active nav ul.menu,
header.active .compte{
    opacity: 1;
}
header nav li{
    padding: 0 20px;
    position: relative;
}
/*
header nav li:after{
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 50px;
    height: 2px;
    background: #FFF;
}
*/
header nav li a{
    padding: 15px;
    font-size: 2.2rem;
    font-weight: 500;
    display: block;
    text-align: center;
}

header .langues {
    position: absolute;
    top: 20px;
    left: 20px;
	width:40px;
	height:40px;
    padding: 5px 0 0 0;
    margin-right: 40px;
    z-index: 20;
}
header .langues a.choix_langues{
	width:40px;
	height:40px;
}
header .langues #choix_langues{
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFF;
    padding: 10px;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
header .langues #choix_langues li{
    padding: 0 0 10px 0;
}
header .langues #choix_langues li:last-child{
    padding: 0;
}
header .langues #choix_langues a{
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.6rem;
}
header .langues #choix_langues img{
    max-width: 30px;
    margin-right: 5px;
}

/* HEADER END */


/* SECTION HEADER */
section.header{
    background-color: #efefef;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 300px;
}




/******** SEARCH ***********/
.search{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search .content{
    width: 50px;
    height: 50px;
    overflow: hidden;
    background: #000;
    color: #FFF;
	-o-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
}
.search.active .content{
    width: 100%;
}
.search a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 10px;
    color: #FFF;
    font-size: 2.5rem;
}
.search a span.search_icon{display: block;}
.search a span.close_icon{display: none;}
.search.active a span.search_icon{display: none;}
.search.active a span.close_icon{display: block;}
.search input{
    display: none;
    background: transparent;
    border: none;
    padding: 0;
    height: 100%;
    color: #FFF;
}
.search.active input{
    display: block;
}
.search input:focus {
    outline: none;
}


/* FOOTER */
footer{
    padding-top: 100px;
}


/******** CATEGORIES ***********/
.box_categorie{
    padding: 20px;
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.box_categorie strong{
    display: block;
    width: 100%;
    font-size: 2.2rem;
    /* margin-bottom: 10px; */
	-o-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.box_categorie hr{
    width: 50px;
    height: 3px;
    background: #FFF;
    border: none;
    margin-top: 10px;
}
.box_categorie span{
    margin-top: 10px;
}
.box_categorie i{
    margin-top: 20px;
}


.back{
    margin-bottom: 20px;
}
.back a{
    width: 40px;
    height: 40px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    border:1px solid #505050;
    display: flex;
    align-items: center;
    justify-content: center;
}
