:root {
     --font-oswald: 'Oswald', sans-serif;
    --font-open-sans: 'Open Sans', sans-serif;
    --font-bold: 700;
    --font-semi-bold: 600;
    --font-regular: 400;
    --font-light: 300;
    --font-light-italic: 300i;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-off-white: #FAFAFA;
    --color-adviz: #84B760;
    --color-dark: #404041;
    --color-vert: rgba(132, 183, 96, 0.24);
    --color-light: #EAE8E8;
    --duration: 0.4s;
}

html,
body {
    overflow-x: hidden;
}

html {
    font-size: 62.25% !important;
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-oswald);
    font-weight: var(--font-regular);
    text-transform: uppercase;
}

h1 {
    font-size: 6rem;
}

h2 {
    font-size: 4rem;
    color: var(--color-adviz);
    text-align: center;
}

p {
    font-family: var(--font-open-sans);
    font-size: 2rem;
    font-weight: var(--font-light);
}

a.connexion {
    font-family: var(--font-open-sans);
    font-weight: var(--font-bold);
    font-size: 2.1rem;
    color: var(--color-dark);

}

section {
    padding: 50px 0;
}

.ctn-btn {
    text-align: center;
    padding-top: 60px;
}

.btn {
    font-family: var(--font-open-sans);
    font-size: 2.2rem;
    font-weight: var(--font-semi-bold);
    color: var(--color-white);
    padding: 14px 27px;
    border: 0px;
    border-radius: 0;
}

.btn:hover {
    color: var(--color-white);
}

.btn-dark {
    background-color: var(--color-dark);
    transition: all var(--duration) ease;
    overflow: hidden;
    display: inline-block;
    position: relative;
}

.btn-dark:hover {
    background-color: var(--color-dark);
}

.btn-dark::after {
    background-color: var(--color-adviz);
    display: block;
    position: absolute;
    content: "";
    height: 100%;
    left: -35%;
    top: 0;
    transform: skew(50deg);
    transition-duration: 0.6s;
    transform-origin: top left;
    width: 0;
    z-index: 1;
}

.btn-dark:hover:after {
    height: 100%;
    width: 135%;
}

.text-btn {
    position: relative;
    z-index: 2;
}

.btn-green {
    background-color: var(--color-adviz);
    transition: all var(--duration) ease;
}

.btn-green:hover {
    background-color: var(--color-dark);
}

.pl-0 {
    padding-left: 0;
}

.pr-0 {
    padding-right: 0;
}

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



/* ---------- MENU ----------- */

.header-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

.navbar {
    position: relative;
    z-index: 11;
}

.navbar-nav {
    margin-top: 10px;
}

.nav-item {
    margin-left: 50px;
    cursor: pointer;
}

.nav-link {
    padding: 0 0 2px 0;
}

#contact .nav-link {
    font-weight: var(--font-bold);
}

.blanc #contact .nav-link {
    color: var(--color-adviz);
}

.navbar-light .navbar-nav .nav-link {
    color: #414141;
    text-shadow: 1px 1px 20px white;
}

.dropdown a,
.dropdown a:hover  {
    border: none;
}

.dropdown-menu {
    display: block;
    border: none;
    font-size: 0.8em;
    top: 110%;
    left: -10px;
    opacity: 0;
    height: 0;
    min-width: 150px;
}

.dropdown-menu li,
.dropdown-menu li a {
    height: 0;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    top: 99%;
    opacity: 1;
    transition-duration: 0.2s;
    height: auto;
}

.dropdown:hover .dropdown-menu li,
.dropdown:hover .dropdown-menu li a {
    height: auto;
}

.dropdown-menu li a,
.dropdown-menu li a:hover {
    border: none;
    padding-bottom: 5px;
}

.dropdown-menu .nav-item {
    margin: 0;
    padding: 0 10px;
}


/*---------------------------------------------
    PAGE ACCUEIL
------------------------------------------------*/

/*---------------------------------------------
    SECTION BKG-SLIDER
------------------------------------------------*/

#accueil.bkg-slider {
    position: relative;
    background-image: url('../img/image-header.jpg');
    height: 100vh;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    display: flex;
    align-items: center;
}

#accueil.bkg-slider:after {
    position: absolute;
    height: 100%;
    content: '';
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .5);
}

#accueil.bkg-slider .container {
    position: relative;
    z-index: 10;
}

#accueil.bkg-slider h1 {
    width: 500px;
    margin: 0 auto;
    line-height: 1.5;
    padding: 20px 0;
}

#accueil.bkg-slider a.arrow-down {
    position: relative;
    top: 10vh;
}


/*---------------------------------------------
    SECTION CITATION
------------------------------------------------*/

section.citation {
    background-color: #363636;
    padding: 100px 0;
    text-align: center;
}


section.citation p {
    font-family: var(--font-open-sans);
    font-weight: 300;
    font-style: italic;
    font-size: 2.8rem;
    color: var(--color-white);
    width: 1000px;
    margin: 0 auto;
}

section.citation p:before {
    position: relative;
    content: "\00AB";
    color: var(--color-adviz);
    margin-right: 10px;
}

section.citation p:after {
    position: relative;
    content: "\00BB";
    color: var(--color-adviz);
    margin-left: 10px;
}

/*---------------------------------------------
    SECTION RECETTE
------------------------------------------------*/

section.recette {
    padding: 100px 50px;
}

section.recette h2 {
    text-align: center;
    padding: 0 0 80px 0;
}

section.recette .ctn-icon-group {
    position: relative;
}

section.recette .ctn-icon-group:before {
    position: absolute;
    content: "";
    border: 1px dashed var(--color-light);
    left: -35%;
    bottom: 201px;
    width: 0%;
    transition-duration: 0.4s;
}

section.recette.off .ctn-icon-group:before {
    width: 100%;
}

section.recette.on .ctn-icon-group:before {
    width: 100%;
}

section.recette .ctn-icon-group:after {
    position: absolute;
    content: "";
    border-top: 1px dashed var(--color-light);
    border-bottom: 1px dashed var(--color-light);
    left: 75%;
    bottom: 201px;
    width: 0%;
}

section.recette.off .ctn-icon-group:after {
    width: 100%;
}

section.recette.on .ctn-icon-group:after {
    width: 100%;
    transition-duration: 0.8s;
    transition-delay: 0.3s;
}

section.recette .icon {
    text-align: center;
}

section.recette .icon img {
    position: relative;
    width: 80px;
    z-index: 15;
}

section.recette .icon:before {
    position: absolute;
    content: "";
    border: 3px solid var(--color-dark);
    background-color: var(--color-white);
    border-radius: 50%;
    top: -23px;
    left: 103px;
    width: 130px;
    height: 130px;
    z-index: 10;
}

section.recette .line {
    position: relative;
}

section.recette .line:after {
    position: absolute;
    content: "";
    border: 1px solid var(--color-light);
    left: -230px;
    bottom: 199px;
    width: 0;
}

section.recette.off .line:after {
    width: 230%;
}

section.recette.on .line:after {
    width: 230%;
    transition-duration: 0.4s;
    transition-delay: 0.1s;
}



section.recette p {
    font-family: var(--font-open-sans);
    text-align: center;
    font-size: 2rem;
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    padding: 50px 0;
    width: 220px;
    margin: 0 auto;
    line-height: 1.7;
}



/*---------------------------------------------
    SECTION APPROCHE
------------------------------------------------*/

section.approche h2 {
    padding-bottom: 50px;
}

section.approche img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

section.approche .col-li {
    padding-left: 50px;
    padding-top: 15px;
}

section.approche ul {
    padding-inline-start: 20px;
    list-style-type: none;
}

section.approche ul li:before {
    content: "•";
    font-size: 30px;
    position: absolute;
    left: 0;
}

section.approche ul li p {
    font-size: 2rem;
    font-weight: var(--font-light);
    padding-bottom: 10px;
    line-height: 1.7;
}


/*---------------------------------------------
    SECTION CLEF-SUCCES
------------------------------------------------*/

section.clef-succes {
    background-color: var(--color-vert);
}

section.clef-succes h2 {
    color: var(--color-dark);
    padding: 40px 0 90px 0;
}

section.clef-succes .col-icon {
    text-align: center;
}

section.clef-succes img {
    padding-bottom: 30px;
}

section.clef-succes p {
    font-size: 2rem;
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.8;
    width: 180px;
    margin: 0 auto;
}

section.clef-succes .target img {
    width: 110px;
}

section.clef-succes .icon-row {
    padding-bottom: 60px;
    opacity: 0;
    transition-duration: 0.5s;
}

section.clef-succes.on .icon-row {
    opacity: 1;
}

section.clef-succes.on .icon-row:last-of-type {
    transition-delay: 0.5s;
}

/*---------------------------------------------
    SECTION ON VOUS ACCOMPAGNE
------------------------------------------------*/

section.accompagne {
    position: relative;
    background-color: var(--color-off-white);
    padding-top: 70px;
}

/* section.accompagne:after {
    position: absolute;
    content: "";
    border: 0.5px solid var(--color-dark);
    width: 1140px;
    left: 50%;
    bottom: -19px;
    transform: translate(-50%, 0);
    z-index: 20;
} */

section.accompagne h2 {
    padding: 0 0 50px 0;
}

section.accompagne img {
    width: 100%;
}

section.accompagne .ctn-ressources {
    margin-bottom: 70px;
}

section.accompagne .ctn-ressources .text-content {
    padding-left: 51px;
    margin-top: 30px;
}

section.accompagne p {
    line-height: 1.8;
    margin: 0 0 20px 0;
}

section.accompagne #menu-outer {
	height: 84px;
	
}

section.accompagne .table {
    display: table;
    /* Allow the centering to work */
    margin: 0 auto;
}

section.accompagne ul#horizontal-list {
    min-width: 696px;
    list-style: none;
    padding-top: 20px;
}

section.accompagne ul#horizontal-list {
    padding-inline-start: 0;
}

section.accompagne ul#horizontal-list li {
    position: relative;
    display: inline-block;
    margin: 0 15px;
}

section.accompagne ul#horizontal-list li:first-of-type {
    margin: 0 15px 0 0;
}

/* section.accompagne ul#horizontal-list li:nth-of-type(1):after,
section.accompagne ul#horizontal-list li:nth-of-type(2):after,
section.accompagne ul#horizontal-list li:nth-of-type(3):after {
    position: absolute;
    content: "";
    border: 2px solid var(--color-adviz);
}  */

section.accompagne ul#horizontal-list li a {
   text-decoration: none;
    
}


section.accompagne ul#horizontal-list li a p {
    font-family: var(--font-open-sans);
    color: var(--color-adviz);
    font-size: 2rem;
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    text-decoration: none;
    transition: all .2s ease-in-out;
}

section.accompagne ul#horizontal-list li p:hover {
    /* color: black; */
    transform: scale(1.1);
}

/*---------------------------------------------
    SECTION PARTENAIRES
------------------------------------------------*/

.partenaires {
    background-color: white;
}

.partenaires h2 {
    padding-bottom: 60px;
}

.partenaires__slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slick-list {
    width: 80%;
}

.slick-track {
    display: flex;
    align-items: center;
}

.slick-arrow {
    width: 25px;
    height: 25px;
    color: rgba(132, 183, 96, 0);
    overflow: hidden;
    background-color: rgba(132, 183, 96, 0);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
}

.slick-prev {
    background-image: url("../img/fleche-gauche.png");
    background-position: left;
}

.slick-next {
    background-image: url("../img/fleche-droite.png");
    background-position: right;
}

.partenaires__ctn-logo {
    padding: 0 10px;
    box-sizing: border-box;
}

.partenaires__ctn-logo:focus {
    outline: none;
}

.partenaires__ctn-logo {
    text-align: center;
}

.partenaires__logo {
    width: 90%;
}

/*---------------------------------------------
    SECTION FORMULAIRE
------------------------------------------------*/

section.formulaire {
    background-color: var(--color-light);
    position: relative;
}

section.formulaire h2 {
    padding-bottom: 60px;
}

section.formulaire p {
    line-height: 1.7;
}

section.formulaire .ctn-form {
    width: 841px;
    margin: 0 auto;
}

section.formulaire .form-control {
    height: 35px;
    border-radius: 0;
    border: 0;
    font-family: var(--font-open-sans);
    font-size: 2rem;
    font-weight: var(--font-regular);
}

section.formulaire .form-control::placeholder {
    opacity: 0.6;
}

.select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: var(--color-dark);
    width: 100%;
    height: 35px;
}

.select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--color-white);
    padding: 4px 15px;
    font-family: var(--font-open-sans);
    font-size: 2rem;
    
}

.select-styled:after {
    content: "";
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-color: #000 transparent transparent transparent;
    position: absolute;
    top: 14px;
    right: 10px;
}

.select-styled:hover {
    background-color: darken(#c0392b, 2);
}



.select-styled.active:after {
    top: 7px;
    border-color: transparent transparent #000 transparent;
}



.select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    
}

.select-options li {
    margin: 0;
    padding: 12px 0;
    text-indent: 15px;
    background-color: var(--color-white);
    font-family: var(--font-open-sans);
    font-size: 2rem;
    font-weight: var(--font-regular);

}

.select-options li:hover {
    color: var(--color-white);
    background: var(--color-adviz);
}

.select-options li[rel="hide"] {
    display: none;
}

input[type=submit] {
    font-family: var(--font-open-sans);
    font-size: 2.2rem;
    font-weight: var(--font-semi-bold);
    color: var(--color-white);
    padding: 14px 27px;
    border: 0px;
    border-radius: 0;
    background-color: var(--color-adviz);
    transition: all var(--duration) ease;
}

input[type=submit]:hover {
    background-color: var(--color-dark);
}
    
section.formulaire .btn-submit {
    padding: 70px 0 20px 0;
}


/* select 2 librairie */

.select2-container--default .select2-selection--multiple, .select2-container--focus {
    border: none !important;
    border-radius: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #f1f1f1;
    border: none;
    border-radius: 0;
    font-size: 0.8em;
    line-height: 180%;
}

.select2-dropdown {
    border: none;
}

.select2-container--default .select2-results__option:first-of-type {
    display: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--color-adviz);
}

/*---------------------------------------------
    FOOTER
------------------------------------------------*/

footer {
    background-color: var(--color-dark);
}

footer img {
    width: 10%;
    padding-bottom: 20px;
}

section.footer {
    padding-bottom: 20px;
}

section.footer .copy,
section.footer .copy a
 {
    font-family: var(--font-open-sans);
    font-weight: var(--font-regular);
    font-size: 1.4rem;
    color: var(--color-white);
    transition: color var(--duration);
}

section.footer .copy a:hover
 {
    color: var(--color-adviz);
}


/*---------------------------------------------
    PAGE PRODUIT
------------------------------------------------*/
/*---------------------------------------------
    NAV
------------------------------------------------*/
.accueil a.public-nav-link,
.produits a.public-nav-link {
    margin: 0 20px;
}

/*---------------------------------------------
    SECTION IMAGE
------------------------------------------------*/

#produits.bkg-slider {
    position: relative;
    background-image: url('../img/header-positionnement.jpg');
    height: 100vh;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    background-position: right;
    display: flex;
    align-items: center;
}

#produits.bkg-slider:after {
    position: absolute;
    height: 100%;
    content: '';
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .5);
}

#produits.bkg-slider .container {
    position: relative;
    z-index: 10;
}

#produits.bkg-slider h1 {
    font-size: 6.0rem;
    width: 500px;
    margin: 0 auto;
    line-height: 1.5;
    padding: 20px 0;
}

#produits.bkg-slider p {
    font-size: 6.0rem;
    
}

#produits.bkg-slider a.arrow-down {
    position: relative;
    top: 30vh;
}

/*---------------------------------------------
    SECTION DEMARCHE
------------------------------------------------*/

#demarche {
    position: relative;
    z-index: 1;
    background-color: var(--color-off-white);
}

#demarche .ctn-content p {
    width: 930px;
    margin: 0 auto;
    text-align: justify;
    padding-bottom: 80px;
}

#demarche .icons img {
    width: 80%;
}

#demarche .left-icons {
    position: relative;
}

#demarche .left-icons:after {
    position: absolute;
}

#demarche .right-icons img {
    width: 60%;
}

#demarche .icons .icon-text {
    position: relative;
}

#demarche .icons .icon-text p {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    font-weight: var(--font-bold);
    text-transform: uppercase;
}

/*---------------------------------------------
    SECTION TIMELINE
------------------------------------------------*/

section.timeline {
    position: relative;
    z-index: 0;
    padding-top: 0;
}

.timeline__ctn {
    position: relative;
    padding-top: 90px;
    padding-bottom: 60px;
}

.timeline__ligne {
    top: 20px; 
}

.timeline__liste {
    list-style: none;
    position: relative;
}

.timeline__liste li::before {
    content: "•";
    position: absolute;
    left: 10px;
    font-size: 30px;
}

.timeline__item:first-of-type::before {
    content: "";
    display: block;
    width: 100%;
    height: 150px;
    border-right: 2px dotted #EAE8E8;
    position: absolute;
    right: -2px;
    top: -120px;
}

.timeline__item:last-of-type::after {
    content: "";
    display: block;
    width: 100%;
    height: 140px;
    border-right: 2px dotted #EAE8E8;
    position: absolute;
    right: -2px;
    bottom: -140px;
}

ul li a {
    font-weight: 500;
    color: #84B760;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(132, 183, 96, 0);
    transition-duration: 0.3s;
}

ul li a:hover {
    text-decoration: none;
    color: #84B760;
    border-color: rgba(132, 183, 96, 1);
    transition-duration: 0.3s;
    padding-bottom: 1px;
}





