@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans');/*font-family: 'Open Sans', sans-serif;*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300');/*font-family: 'Open Sans Condensed', sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');/*font-family: 'Poppins', sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap');/*font-family: 'Yeseva One', cursive;*/

@import url('https://fonts.googleapis.com/css2?family=League+Gothic&display=swap');/*font-family: "League Gothic", sans-serif;*/


html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* HEADER */
/*#header { background:#fff; width: 100%; height: 200px; background-size:100%;}*/

/* ===============================
   HEADER
=================================*/

header {
    position: relative;
    height: 100vh;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
    background: #000;
}

@media (max-width:1600px) {
header {
    position: relative;
    height: auto;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
    background: #000;
}
}

/* ===============================
   BACKGROUND (carousel / video)
=================================*/

header #carouselExampleControls,
header video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* ===============================
   OVERLAY
=================================*/

header .overlay {
    position: absolute;
    inset: 0;
    background: #fff;
    opacity: 0.5;
    z-index: 1;
}

/* ===============================
   CONTENT LAYER
=================================*/

.header-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* Centre parfaitement le logo */
.logo-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-main {
    width: 50%;
    max-width: 300px;
}

/* Adresse en bas */
.address-bottom {
    text-align: center;
    padding-bottom: 30px;
}

.coordonnees {
    font-size: 28px;
    font-family: "League Gothic", sans-serif;
    font-style: italic;
    color: #000;
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 992px) {

    header {
        height: 20vh;
        min-height: 400px;
    }

    .logo-main {
        max-width: 280px;
        width: 70%;
    }

    .coordonnees {
        font-size: 18px;
        padding: 0 15px;
    }

    .address-bottom {
        padding-bottom: 20px;
    }
}

/* ===============================
   MOBILE FIX
=================================*/
@media (max-width: 768px) {

    header {
        height: 15vh;        /* ← plus petit */
        min-height: 275px;   /* sécurité */
    }

    .logo-wrapper {
        flex: none;
        margin-top: 10px;
    }

    .logo-main {
        max-width: 120px;
        width: 40%;
    }

    .address-bottom {
        padding-bottom: 10px;
    }

    .coordonnees {
        font-size: 15px;
    }
}
/*HEADER VIDEO*/


#header.base {background:url("../charte/back-header-1920.webp") no-repeat; background-size: 100%; height: auto; color:#000}
#header.base a {color:#000}
#header p { font-size:28px; font-family: "League Gothic", sans-serif; color:#000; font-style: italic; line-height:1.2em}
@media (max-width:1024px) {
#header.base {background:url("../charte/back-header-1024.webp") no-repeat; background-size: 100%; height: auto; color:#000}
#header p { font-size:18px; font-family: "League Gothic", sans-serif; color:#000; font-style: italic; line-height:1.2em}

#header .logo { width:40%; margin: 0 auto; text-align: center; margin-top:30px}


}




/*MENU*/
.bg-light {
background-color: #e4e4e4 !important;
}

.navbar-brand {
display: none!important
}
.navbar-brand.scrolled{
display: block!important
}


.navbar-nav { margin: 0 auto}

@media (max-width: 992px) {
.navbar-nav {margin: 20px 0px;}
.bg-light {background-color: #e4e4e4 !important;}
}

.navbar-nav.active { display: block}
.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
color: #fff;
background-color:  #0102f7;
}


.navbar-light .navbar-nav .nav-link {
    color: #0102f7;
    font-family: "League Gothic", sans-serif;
    font-size:30px
}


.navbar-light .navbar-nav .nav-link:hover {
    color: #fff;
    background-color:  #0102f7;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
}


.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/*Custom ouverture menu mobile*/
@media (max-width: 992px) {
.navbar-collapse {
        position: absolute;
        top: 54px;
        left: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
        width: 100%;
    }
.navbar-collapse.collapsing {
        height: auto;
        -webkit-transition: left 0.3s ease;
        -o-transition: left 0.3s ease;
        -moz-transition: left 0.3s ease;
        transition: left 0.3s ease;
        left: -100%;
    }
.navbar-collapse.show {
        left: 0;
        -webkit-transition: left 0.3s ease-in;
        -o-transition: left 0.3s ease-in;
        -moz-transition: left 0.3s ease-in;
        transition: left 0.3s ease-in;
		background-color:#e4e4e4;height: 900px;
		text-align: center;
    }
 }


/*MENU*/


a, a:hover {color:#000; text-decoration: none}


#section1 {background: url("../../../assets/theme3/charte/back1.webp") no-repeat; background-position:bottom; background-size: 100%; background-color:#fff}
#section1 h1 {color:#333333; line-height: 1.4em}
#section1 h2 {color:#333333; line-height: 1em}
#section1 h3 {color:#333333; line-height: 1.2em}
#section1 h4 {color:#333333; line-height: 1.2em}
#section1h5 {color:#333333; line-height: 1.2em}
#section1 p {color:#000;}

#section2 {background: none}
#section2 h1 {color:#333333; line-height: 1.4em}
#section2 h2 {color:#333333; line-height: 1em}
#section2 h3 {color:#333333; line-height: 1.2em}
#section2 h4 {color:#333333; line-height: 1.2em}
#section2 h5 {color:#333333; line-height: 1.2em}
#section2 p {color:#000;}

#section3 {background: #eee}
#section3 h1 {color:#333333; line-height: 1.4em}
#section3 h2 {color:#333333; line-height: 1.4em}
#section3 h3 {color:#333333; line-height: 1.4em}
#section3 h4 {color:#333333; line-height: 1.4em}
#section3 h5 {color:#333333 !important; line-height: 1.4em}
#section3 p {color:#000;}

#section4 {background: none}
#section4 h1 {color:#333333; line-height: 1.4em}
#section4 h2, h3, h4, h5 {color:#333333; line-height: 1.4em}
#section4 p {color:#000;}

#section5 {background: url("../../../assets/theme3/charte/back2.webp") no-repeat; background-position:bottom; background-size: 100%; background-color: #0102f7}
#section5 h1 {color:#fff; line-height: 1.4em}
#section5 h2 {color:#fff; line-height: 1.1em}
#section5 h3 {color:#fff !important; line-height: 1.4em}
#section5 h4 {color:#fff !important; line-height: 1.1em}
#section5 h5 {color:#fff !important; line-height: 1.4em}
#section5 p {color:#fff;}


#section6 {background: url("../../../assets/theme3/charte/back3.webp") no-repeat; background-position:bottom; background-size: 100%; background-color: #fff}
#section6 h1 {color:#333333; line-height: 1.4em}
#section6 h2 {color:#333333; line-height: 1.4em}
#section6 h3 {color:#333333 !important; line-height: 1.4em}
#section6 h4 {color:#333333 !important; line-height: 1.4em}
#section6 h5 {color:#333333 !important; line-height: 1.4em}
#section6 p {color:#333333;}


#section-bouton { background-color: #0102f7}
#section-bouton h2 { color: #fff}


#section-parallax img {padding-top:100px;}
#section-parallax h2 { color:#000; text-align: center }

@media (max-width: 1400px) {
    #section-parallax h2 {padding-top:50px}
    #section-parallax img {padding-top:60px;}
}

@media (max-width: 992px) {
    #section-parallax h2 {padding-top:50px}
    #section-parallax img {padding-top:20px;}
}

.parallax {
    /* The image used */
    background-image: url("../../../assets/theme3/charte/img-parallax.webp");
    /* Set a specific height */
    height:600px;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media only screen and (max-device-width: 1366px) {
    .parallax {
        background-attachment: scroll;
        height:500px;
    }
}
/*boutons custom bootstrap*/
.btn-custom {
	color: #fff;
    background-color: #333;
    border-color: #333;
}
.btn-custom:hover, .btn-custom:focus, .btn-custom:active, .btn-custom.active, .open>.dropdown-toggle.btn-custom {
    color: #fff;
    background-color: #333;
    border-color: #333; /*set the color you want here*/
}
/*fin boutons custom bootstrap*/


/*boutons custom bootstrap*/
.button {
  flex: 1 1 auto;
  margin: 0px;
  padding: 20px;
  border: 2px solid #0102f7;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: 0.3s; color:#0102f7; background:none
}
.button:after {
  position: absolute;
  transition: 0.3s;
  content: "";
  width: 0;
  left: 50%;
  bottom: 0;
  height: 3px;
  background: #000;
}
.button:hover:nth-of-type(1) {
  border-radius: 30px;
}
.button:hover:nth-of-type(1):after {
  width: 0%;
}
.button:hover {
  cursor: pointer;
}
.button:hover:after {
  width: 100%;
  left: 0;
}

/*Fin Boutons*/



/*boutons custom bootstrap*/
.button2 {
    flex: 1 1 auto;
    margin: 0px;
    padding: 20px;
    border: 2px solid #fff;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: 0.3s; color:#fff; background:none
}
.button2:after {
    position: absolute;
    transition: 0.3s;
    content: "";
    width: 0;
    left: 50%;
    bottom: 0;
    height: 3px;
    background: #000;
}
.button2:hover:nth-of-type(1) {
    border-radius: 30px;
}
.button2:hover:nth-of-type(1):after {
    width: 0%;
}
.button2:hover {
    cursor: pointer;
}
.button2:hover:after {
    width: 100%;
    left: 0;
}

/*Fin Boutons*/


/*FOOTER*/


footer {
background: #e4e4e4;
padding: 20px;
min-height: 100px;
}
footer h2 {color: #000; font-size:18px}
footer p {color: #000; font-size:14px}
footer p a {color: #000; }
footer p a:hover {color:#000; text-decoration: none}
footer p a:visited {color:#000; text-decoration: none}
footer hr {border-color:#ff000f; margin: 0rem 0 !important;}
footer ul.list-unstyled li a {color: #000}
footer .rubrique { color: #000}
footer .fab {color:#000}
/*FOOTER*/



.encart { background-color: #9e9e9e;border: 1px solid #eee; padding:20px; border-radius: 10px}



/*FIN INTEGRATION*/


