html,
body{
    margin: 0;
    padding: 0;
    height: 100%;
}
body{
    /* height: 100%; */
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6{
    margin: 0;
    padding: 0;
}
p{
    margin: 0;
}
a{
    text-decoration: none;
    cursor: pointer;
}
ul, li{
    margin: 0;
    padding: 0;
}
img{
    max-width: 100%;
    width: 100%;
}
button{
    border: none;
    cursor: pointer;
}
.button{
    background-color: var(--color-secondary);
    color: white;
    padding: 10px 32px 14px;
    border-radius: 32px;
    margin: 24px 0; 
    /* font-weight: 600; */
}
.button:hover{
    text-decoration: underline;
}
.underline{
    text-decoration: underline;
}
.bold{
    font-weight: 600; 
}
/* .button.light{
    background-color: white;
    color: black;   
} */
:root{
    --color-main: #3C1A1A;
    --color-secondary: #515c93;
}
*{
    color: black;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 20px;
    line-height: 1.6em;
    font-weight: normal;
    box-sizing: border-box;
}
.header,
.footer,
.section{
    padding: 0 16px;
}
.section{
    /* margin-top: 48px; */
    margin-top: 24px;
}
.contact .section{
    padding: 0 12px 64px;
}
main{
    padding-top: 120px;
}
.home main{
    padding-top: 0;
}
.header{
    z-index: 1000;
    /* background-color: rgba(255, 255, 255); */
    background-color: #FFFFFF;
    /* position: relative; */
    position: fixed;
    top: 0;
    width: 100%;
    border-bottom: #eee 1px solid;
}
.home .header{
    background-color: white;
    color: white;
    border-bottom: 0 solid transparent;
    position: fixed;
    /* left: 50%;
    transform: translateX(-50%); */
    z-index: 1000;
    width: 100%;
}
.header .nav-menu .nav-menu-items a{
    color: white;
    /* text-transform: uppercase; */
    padding: 16px 0;
    display: inline-block;
}
.header-content,
.footer-content,
.section-content{
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
.footer-content{
    margin: 12px 0;
}
.footer-content,
.footer-content a{
    font-size: 12px;
    line-height: 1.1;
}
.footer-content a{
    text-decoration: underline;
}
.footer{
    /* position: absolute;
    bottom: 0;
    width: 100%; */
    padding-bottom: 8px;
}
.title{
    font-size: 48px;
    font-weight: bold;
    line-height: 1.1;
}
h1.title{
    margin-bottom: 32px;
}
.legend{
    font-size: 12px;
}
.header-content{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.header .nav-menu .menu-item{
    display: block;
    /*text-transform: uppercase;*/
    text-align: right;
}
.header .nav-menu .menu-item:hover a{
    text-decoration: underline;
}
.header .nav-menu .menu-item.button{
    padding: 0;
    background-color: transparent;
    margin: 0;
    border: 0;
}
.header .nav-menu .burger{
    cursor: pointer;
}
.header .nav-menu .burger .img{
    width: 54px;
}
.header .nav-menu .nav-menu-items{
    position: absolute;
    top: 0;
    right: 0;
    /* right: -280px; */
    /* background-color: black; */
    background-color: var(--color-secondary);
    padding: 48px;
    height: 100vh;
    /* translate: 286px 0 0; */
    transform: translateX(280px);
    transition: transform 0.8s;
}
.header .nav-menu .nav-menu-items.show{
    /* right: 0; */
    /* translate: 0 0 0; */
    transform: translateY(0);
    /* transition: translate 0.8s; */
    transition: transform 0.8s;
}
.header .nav-menu .nav-menu-items a{
    color: white;
    top: 8px;
}
.header .nav-menu .burger{
    padding: 12px;
}
.header .nav-menu .nav-menu-items .close-menu-items-wrapper{
    cursor: pointer;
    margin-bottom: 32px;
    display: inline-block;
    width: auto;
    position: relative;
    margin-right: 0;
    margin-left: 100%;
    right: 16px;
}
.header .nav-menu .nav-menu-items .close-menu-items{
    color:white;
    cursor: pointer;
    font-size: 24px;
}
.header .logo{
    padding: 16px 0 8px;
}
.header .logo .img{
    height: 88px;
    width: auto;
}    
.header .logo .logo-black{
    display: block;
}
.header .logo .logo-white{
    display: none;
}
header .burger-black{
    display: block;
}
.header .burger-white{
    display: none;
}
.home .header{
    background-color: transparent;
}
.home .header .logo .logo-black{
    display: none;
}
.home .header .logo .logo-white{
    display: block;
}
.home .header .burger-black{
    display: none;
}
.home .header .burger-white{
    display: block;
}

.home .section-hero{
    margin: 0;
    padding: 0;
}
.home .section-hero .bg-video {
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background: no-repeat center;
    /* margin-left: 50vw; */
    user-select: none;
    pointer-events: none;
    
    /*custom styles, for example grayscale appearance*/
    filter: grayscale(0.8);
    
    /*additional tweaks for positioning, read more in the link above*/
    height: 100%;
    width: 177.77777778vh; /* 100 * 16 / 9 */
    min-width: 100%;
    min-height: 56.25vw; /* 100 * 9 / 16 */
}
.home .section-hero .background{
    width: 100vw;
    height: 100vh;
    max-width: 100%;
}
.home .section-hero{
    margin: 0;
}
.section-hero .section-content .background .video{
	position: absolute;
	width: 100%;
	height: 100%;
    object-fit: cover;
	object-position: top center;
}
/* .section-hero .section-content .background .iframe-video{
    height: 100vh;
    width: 100%;
} */
.home .section-hero .section-content .foreground{
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 100vh;
}
.home .section-hero .section-content .foreground *{
    color: white;
    text-align: center;
}
.home .section-hero .section-content .foreground .title{
    font-family: 'Barlow Semi-Condensed Light', Arial;
    font-size: 65px;
    font-weight: 100;
    letter-spacing: 4px;
}
.home .section-hero .section-content .foreground .subtitle{
    font-family: 'Barlow Semi-Condensed Light', Arial;
}

.home .section-hero .section-content .foreground .subtitle{
    /* text-transform: uppercase; */
    font-size: 24px;
    margin-bottom: 48px;
    font-weight: 300;
}
.home .section-hero .section-content .foreground .social .social-group-facebook{
    margin-right: 12px;
}
.home .section-hero .section-content .foreground .slogan{
    font-weight: 100;
    font-size: 16px;
    margin-top: 32px;
}
.home .section-hero .section-content .overlay{
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.3;
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    max-height: 100vh;;
}
.home .section-intro{
    padding: 0;
    margin-top: 24px;
}
.home .section-intro .section-content{
    text-align: center;
    padding: 0 16px;
}
.home .section-intro .section-content p{
    /* font-size: 32px; */
    font-size: 16px;
    line-height: 1.4;
    text-transform: normal;
}
.home .section-testimonials{
    padding: 64px 0 32px;
    background-color: #18235A;
}
.home .section-testimonials .cta{
    text-align: center;
}
.home .section-testimonials .cta a{
    color: white;
    text-decoration: none;
    font-size: 16px;
}
.home .section-testimonials .cta a:hover{
    text-decoration: underline;
}
.home .testimonials{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 16px;
}
.home .section-testimonials .section-content{
    width: 1440px;
    margin: 0 auto;
    max-width: 100%;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    padding-left: 16px;
    padding-right: 16px;
}
.home .testimonial-wrapper{
    width: 400px;
    height: 256px;
    max-width: 100%;
    border: lightgray 1px solid;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: white;
    margin-bottom: 16px;
}
.home .testimonial-wrapper::before{
    content: '';
    background-image: url('../img/quote.svg');
    background-size: cover;
    width: 64px;
    height: 42px;
    position: absolute;
    top: 9px;
    left: 9px;
    background-repeat: no-repeat;
}
.home .testimonial-wrapper .comment{
    width: 100%;
    text-align: left;
    font-size: 16px;
    line-height: 1.4;
    z-index: 1;
    font-style: italic;
}
.home .testimonial-wrapper .note-wrapper{
    width: 100%;
    text-align: center;
}
.home .testimonial-wrapper .note-wrapper .stars{
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.home .testimonial-wrapper .note-wrapper .stars img{
    width: 24px;
}
.home .testimonial-wrapper .note-wrapper .author{
    font-weight: bold;
    font-size: 20px;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 12px;
}
.home .testimonial-wrapper .note-wrapper .description{
    font-style: italic;
    font-size: 16px;
    line-height: 1.1;
    text-align: left;
}
.home .section-ccollectifs{
    /* padding: 0; */
}
.section-type-1 .section-content{
    position: relative;
}
.section-type-1 .section-content .segment-content .content,
.section-type-1 .section-content .segment-title .title{
    /* padding: 16px; */
}
.section-type-1 .section-content .segment-content .content{
    margin: 16px 0 32px;
}
.section-type-1 .section-content{
    font-size: 16px;
    line-height: 2.0;
}
.section-type-1 .section-content .segment-title{
    width: 100%;
    /* position: absolute; */
}
.section-type-1 .section-content .segment-title .title{
    color: white;
    background-color: var(--color-secondary);
    width: 100%;
    /* padding: 16px; */
    padding: 0;
}
h2.title,
.section-type-1 .section-content .segment-title .title{
    padding: 16px;
    /* margin-bottom: 12px; */
}
.section-type-1.reverse .section-content .segment-title .title{
    margin-left: 32px;
}
.section-type-1 .section-content .segment-image img{
    width: 100%;
}

.section-type-2{
    position: relative;
    border-bottom: lightgray 1px solid;
}
.section-type-2 .background{
    height: 320px;
}
.section-type-2 .background img{
    height: 100%;
    width:100%;
    object-fit:cover;
}
.section-type-2 .section-content .content-wrapper .content{
    text-align: center;
    margin-top: 32px;
}
.section .segment-title .button-wrapper{
    display: none;
}
.section .segment-content .button-wrapper{
    display: inline-block;
    width: auto;
}
.about .section-type-1 .section-content .segment-title,
.programs .section-type-1 .section-content .segment-title{
        position: relative;
}
.about .section-type-1 .section-content .segment-title .title,
.programs .section-type-1 .section-content .segment-title .title{
        background-color: var(--color-secondary);
}
.page.about .certifications-wrapper{
    list-style-type: square;
    margin-left: 24px;
}
.page.about .certifications-wrapper .certification{
    /* color:white; */
    margin-bottom:12px;
}
.page.about .certifications-wrapper li.certification p.certification-title{
    font-weight:bold;
    line-height:1.2;
}
.page.about .certifications-wrapper li.certification p.certification-description{
    font-size:0.8em;
    font-style:italic;
    line-height:1.2;
    /* color:#DBDBDB; */
}
.page.about .section-intro .segment-content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap-reverse;
}    
.page.about .section-intro .content-image{
    float: right;
    margin-bottom: 24px;
}
.page.about .section-intro .content{
    width: 980px;
    max-width: 100%;
}
.section-type-1.dark .button{
    background-color: var(--color-secondary);
    color: white;  
}
.contact .content-social{
    background-color: var(--color-secondary);
}
.contact textarea,
.contact input[type=text]{
    width: 100%;
    max-width: 100%;
    padding: 2px 8px;
} 
.contact .content-social .content p{
    color: white;
}
.contact .content-social{
    padding: 16px;
}
.contact .content-social .content{
    margin-bottom: 32px;
}
.contact .content-form{
    padding: 32px 8px;
    border: 1px solid lightgray;
}
.contact .content-form .segment-title{
    margin-bottom: 32px;
    text-transform: uppercase;
}
.contact .content-form .form-field{
    width: 100%;
    max-width: 100%;
    margin-bottom: 24px;
}
.contact .content-form .form-field label{
    display: block;
    text-transform: uppercase;
    font-size: 16px;
}
.contact .content-social .social-group{
    display: inline-flex;
    align-items: center;
    margin-right: 24px;
}
.contact .content-social .label{
    color: white;
    font-size: 16px;
    text-decoration: underline;
}
.contact .content-social .icon{
    margin-right: 8px;
}
.contact .content-form .form-fields{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.icon{
    width: 32px;
}
.section-conversion .segment{
    margin-bottom: 16px;
}
.section-type-1.reverse .section-content .segment-title .title{
    margin-left: 0;
}
.section-type-1 .section-content .segment-content .content a{
    text-decoration: underline;
    display: block;
    font-weight: 400;
    margin-bottom: 24px;
}
/* connexion window page - espace abonné */
.connexion-window-page *{
    font-size: 16px;
    line-height: 1.1;
}
.connexion-window-page .content-body{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px;
}
.connexion-window-page .login-window{
    width: 360px;
    max-width: 100%;
    padding: 32px;
    background-color: white;
    margin: 0 auto;
    font-size: 13.333px;
}
.connexion-window-page .form-field{
    margin-bottom: 16px;
}
.connexion-window-page .login-window input{
    width: 100%;
    text-align: center;
    border: none;
    margin-bottom: 4px;
}
.connexion-window-page  .login-window input::placeholder{
    text-transform: none;
}
.connexion-window-page .login-window input[type='password'],
.connexion-window-page .login-window input[type='text']{
    border: none;
    padding: 12px 6px;
    border-bottom: #43567D 1px solid;
    text-transform: lowercase;
}
.connexion-window-page .login-window .other-actions{
    /* display: flex; */
    justify-content: space-between;
    text-align: center;
    margin: 32px 0;
}
.connexion-window-page .other-actions > div{
    margin-bottom: 16px;
}
.connexion-window-page .other-actions *{
    font-size: 12px;
    line-height: 1.1;
}
.connexion-window-page .login-window h1{
    font-size: 32px;
    margin-top: -11px;
    margin-bottom: 32px;
    color: #43567D;
}
.connexion-window-page .login-window h2{
    font-size: 24px;
    margin: 10px 0;
    color: #43567D;
}
.connexion-window-page .login-window .bouton{
    padding: 12px 4px;
    background-color: #43567D;
    color: white;
    cursor: pointer;
    margin: 16px 0;
    font-weight: bold;
}
.connexion-window-page .login-window .bouton:hover{
    background-color: #17294D;
}
.connexion-window-page .login-window .je-minscris a{
    font-weight: bold;
    color: #43567D;
}
.connexion-window-page .login-window a{
    color: inherit;
    text-decoration: underline;
}
.connexion-window-page .login-window a:hover{
    text-decoration: underline;
}
.msg-wrapper,
.connexion-window-page .login-window .msg-wrapper{
    min-height: 30px;
}
.msg-error,
.connexion-window-page .login-window .msg-error{
    color: red;
}
.msg-valid,
.connexion-window-page .login-window .msg-valid{
    color: green;
}

/* connexion window page - administration */
.connexion-window-page.administration *,
.connexion-window-page.administration .login-window h1,
.connexion-window-page.administration .login-window h2{
    color: black;
}
.connexion-window-page.administration .login-window .bouton {
    background-color: black;
}
.header .nav-menu .menu-item {
    color: white;
}
.header .nav-menu .nav-menu-items a.menu-item-link-inscription {
    color: white !important;
}
.section-type-1{
    padding: 0;
    margin: 24px 16px;
    border: lightgray 1px solid;
}
.section-type-1 .section-content .button-wrapper, 
.section-type-1 .segment-content{ 
    padding-left: 16px;
    padding-right: 16px;
}
.home .section-type-1 .section-content .button-wrapper{
    padding-left: 0;
} 
.section-type-2 .background{ 
    margin-left: -16px; 
    margin-right: -16px;
}
.section-type-2 .segment-cta { 
    margin-bottom: 64px;
}
.home .section-type-1 .section-content .segment-content .content {
    margin-bottom: 0;
}
.msg-wrapper .mail-sent{
    background-color: green;
    color: white;
    width: auto;
    display: inline-block;
    padding: 0 8px;
}
.content-form .msg-wrapper{
    min-height: unset;
}
textarea{
    resize: none;
}
.header .nav-menu .nav-menu-items a.menu-item-link-inscription{
    background-color: white;
    color: var(--color-secondary) !important;
    padding: 4px 24px;
    border-radius: 32px;
}
.header .nav-menu .menu-item.menu-item-inscription{
    right: -24px;
    top: 16px;
    position: relative;
}
.chevron{
    text-decoration: none;
    margin-left: 8px;
    display: inline-block;
    color: inherit;
    position: relative;
    top: 2px;
    font-size: inherit;
    cursor: pointer;
}
.chevron-gauche{
    margin-right: 8px;
    margin-left: 0;
}
.certifications-page .section-intro{
    padding-bottom: 32px;
}
.certifications-page .section-certifications{
    border: 0;
}
/* .certifications-page .section-certifications .section-content{
    padding: 96px 0;
    flex-wrap: wrap;
} */
.certifications-page .section-certifications .section-content {
    padding: 96px 0;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
  }
.certifications-page .certification-wrapper{
    width: 100%;
    max-width: 680px;
    margin-bottom: 48px;
    cursor: pointer;
}
.certifications-page .certification-wrapper .cert-title{
    color: black;
    line-height: 1.1;
    text-align: center;
}
.certifications-page #modal{
    position: fixed;
    top: 0;
    left:0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background-color: #000D;
    display: none;
}
.certifications-page #modal .content-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.certifications-page #modal .content-wrapper img{
    width: 90%;
    max-width: 880px;
}
.certifications-page #modal #btn-modal-close{
    position: absolute;
    color: white;
    top: 0;
    right: 0;
    padding: 24px 48px;
    font-size: 32px;
    cursor: pointer;
}

a.button-light{
    background-color: none;
    color: black !important;
    width: auto;
    display: inline-block !important;
    text-align: center;
    margin-top: 12px;
    border-radius: 120px;
    padding: 8px 20px;
    line-height: 1;
    text-decoration: none !important;
    border: 2px solid black;
}
a.button-light.dark{
    color: black !important;
    border-color:black;
}
a.button-light:hover{
    text-decoration: underline !important;
}

/* .section-type-2 .section-content,
.section-type-1 .section-content{
        border-radius: 16px;
}
.section-type-2 .section-content .segment-content,
.section-type-1 .section-content .segment-content{
    border-left: gray 1px solid;
    border-right: gray 1px solid;
    border-bottom: gray 1px solid;
    border-radius: 0 0 16px 16px;
}
.section-type-2 .section-content .segment-image,
.section-type-1 .section-content .segment-image{
        border-left: gray 1px solid;
    border-right: gray 1px solid;
}
.section-type-2 .section-content .segment-content .content,
.section-type-1 .section-content .segment-content .content{
        padding: 14px 24px 0; 
        margin-top: 0;
}
.section-type-2 .section-content .segment-title .title,
.section-type-1 .section-content .segment-title .title{
        border-radius: 16px 16px 0 0;
} */

@media screen and (min-width: 768px){ 
    .section-type-1 .segment-image{
        float: right;
        margin-left: 24px;
        width: 50%;
        margin-top: 16px;
    }
    .page.about .section-intro .segment-content{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap-reverse;
    }    
    .page.about .section-intro .content-image{
        float: right;
        margin-bottom: 24px;
        margin-top: -80px;
    }
    .page.about .section-intro .content{
        width: 55%;
        max-width: 100%;
    }
}

@media screen and (min-width: 1440px){

    *{
        /* color: darkblue; */
    }
    a.button-light{
        color: white !important;
        border-color:white;
    }
    .header,
    .section{
        padding: 0;
    }
    .section{
        padding: 104px 0;
    }
    .header .nav-menu .close-menu-items{
        display: none;
    }
    .header .nav-menu .nav-menu-items{
        height: unset;
    }
    .header-content,
    .footer-content,
    .section-content{
        width: 1440px;
        max-width: 100%;
    }
    .header .logo .img{
        height: 112px;
        width: auto;
    }    
    /* .header .logo{
        padding: 16px 0;
    } */
    .header .nav-menu .nav-menu-items{
        position: relative;
        right: 0;
        background-color: transparent;
        padding: 0;
    }
    .header .nav-menu .nav-menu-items a{
        color: black;
        font-size: 16px;
    }
    .home .header .nav-menu .nav-menu-items a{
        color: white;
    }
    /* .header .nav-menu .nav-menu-items a.menu-item-link-inscription{
        color: white;
    } */
    .header .nav-menu .menu-item{
        display: inline-block;
        margin-left: 48px;
        text-align: left;
    }    
    .header .nav-menu .menu-item.button{
        padding: 8px 32px;
        /* background-color: black; */
        background-color: var(--color-secondary);
        margin-left: 48px;
    }
    .header .nav-menu .burger{
        display: none;
    }
    .header .nav-menu .menu-item.menu-item-home{
        display: none;
    }
    .header .nav-menu .nav-menu-items{
        translate: unset;
        top: -8px;
    }
    .section-hero{
        padding: 0;
        position: relative;
    }
    .section-hero .section-content{
        width: 100%;
    }
    .section-type-1{
        padding: 0;
    }
    .section-type-1.dark{
        background-color: var(--color-secondary);
    }
    .section-type-1.dark .button{
        background-color: white;
        color: var(--color-secondary);   
    }
    

    .section-type-1 .section-content{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    .section-type-1 .section-content .segment-content,
    .section-type-1 .section-content .segment-title{
        /* margin: 96px 0; */
        margin: 48px 0;
    }
    .section-type-1 .section-content .segment-content{
        width: 370px;
    }
    .section-type-1 .section-content .segment-title{
        width: 290px;
    }
    .section-type-1 .section-content .segment-image{
        width: 720px;
        order: 2;
    }
    .section-type-1 .section-content .segment-title{
        position: relative;
        order: 0;
    }
    .section-type-1 .section-content .segment-content{
        position: relative;
        order: 1;
    }
    .section-type-1.reverse .section-content .segment-image{
        order: 0;
    }
    .section-type-1.reverse .section-content .segment-title{
        order: 1;
    }
    .section-type-1.reverse .section-content .segment-content{
        order: 2;
    }
    .section-type-1 .section-content .segment-title .title{
        color: white;
        background-color: transparent;
    }
    .section-type-1 .section-content .segment-content .content,
    .section-type-1 .section-content .segment-title .title{
        color: black;
    }
    .section-type-1 .section-content .segment-content .content{
        /* border-left: 1px solid black; */
        /* padding: 0 64px; */
        /* padding: 0 8px; */
    }
    .section-type-1 .section-content .segment-title .title{
        border-right: 1px solid black;
    }
    .section-type-1.dark .section-content .segment-content .content,
    .section-type-1.dark .section-content .segment-content .content p,
    .section-type-1.dark .section-content .segment-content .content a,
    .section-type-1.dark .section-content .segment-title .title{
        color: white;
    }
    .section-type-1 .section-content .segment-content .content p,
    .section-type-1 .section-content .segment-content .content a{
        font-size: 18px;
        line-height: 2.0;
    }
    .section-type-1 .section-content .segment-content .content .button-wrapper{
        margin-top: 32px;
    }
    /* .section-type-1.dark .section-content .segment-content .content{
        border-left: 1px solid white;
    }     */
    .section-type-1.dark .section-content .segment-title .title{
        border-right: 1px solid white;
    }
    .section-type-1 .section-content .segment-image img{
        min-height: 100%;
        width: auto;
        object-fit: cover;
    }
    .home .header{
        background-color: #00000030;
    }
    .home .section-intro{
        padding: 0;
        margin-top: 48px;
        margin-bottom: 48px;
    }
    .home .section-intro .section-content{
        text-align: center;
        padding: 0 16px;
    }
    .home .section-intro .section-content p{
        font-size: 32px;
    }
    .home .section-ccollectifs{
        color: white;
        padding: 0;
    }
    .home .section-about .segment-image{
        width: 360px;
    }
    .home .section-about{
        background-color: black;
    }
    .home .section-about .segment-title,
    .home .section-about .segment-content{
        margin-top: 0;
        align-self: center;
    }

    .section-type-2{
        padding: 0;
    }
    .section-type-2 .background{
        height: 658px;
    }
    .section-type-2 .section-content{
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 100;
    }
    .section-type-2 .section-content .content-wrapper{
        width: 1440px;
        margin: 0 auto;
        height: 100%;
        position: relative;
    }
    .section-type-2 .section-content .content-wrapper .content{
        width: 720px;
        margin-right: 0;
        margin-left: auto;
        height: 100%;
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .section-type-2 .section-content .content-wrapper .content .segment-title,
    .section-type-2 .section-content .content-wrapper .content .segment-content,
    .section-type-2 .section-content .content-wrapper .content .segment-cta{
        width: 470px;
    }
    .section .segment-title .button-wrapper{
        display: block;
    }
    /* .section .segment-content .button-wrapper{
        display: none;
    } */
    .about .section-type-1 .section-content .segment-title,
    .about .section-type-1 .section-content .segment-content{
        margin-top:60px;
        margin-bottom:60px;
        align-self:center;
    }
    .about .section-type-1 .section-content .segment-title{
        width: 480px;
    }
    .about .section-type-1 .section-content .segment-content{
        width: auto;
    }    
    .about .section-type-1.section-mission .section-content .segment-content{
        width: 360px;
    }
    .about .section-type-1.section-mission .section-content .segment-content .content{
        padding: 0;
    }
    .about .section-type-1 .section-content .segment-image{
        width: 400px;
    }
    .about .section-type-1.section-sportetmoi .section-content .segment-image{
        width: 1280px;
        max-width: 100%;
        margin-right: 64px;    
    }
    .about .section-type-1 .section-content .segment-title{
        position: relative;
    }
    .about .section-type-1 .section-content .segment-title .title,
    .programs .section-type-1 .section-content .segment-title .title{
        background-color: unset;
        margin-bottom: 0;
    }
    .page.about .certifications-wrapper .certification{
        color:white;
    }
    .page.about .section-intro .segment-content{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap-reverse;
    }    
    .page.about .section-intro .content-image{
        float: right;
    }
    .page.about .section-intro .content{
        width: 980px;
        max-width: 100%;
    }
    .programs .section-type-1{
        padding-bottom: 120px;
    }
    .programs .section-type-1 .section-content .segment-image{
        margin-top: 120px;
        align-self: flex-start;
        width: 440px;
    }
    .programs .section-description{
        margin-top: -96px;
    }
    .programs .section-description .segment-content{
        width:960px; 
        color: white;
        margin: 0;display: block;
    }
    .programs .section-description .segment-content .description-title{
        color: black;
        margin:0;
        /* text-decoration:underline; */
    }
    .programs .section-description .segment-content .description-content,
    .programs .section-description .segment-content .description-content span{
            color: black;
        margin:0;
        font-size: 16px;
        line-height: 2.0;
    }
    .programs .section-type-1.dark .section-description .segment-content .description-title,
    .programs .section-type-1.dark .section-description .segment-content .description-content{
        color: white;
    }
    .contact .section-content-form{
        display: flex;
    }
    .contact .content-social{
        width: 480px;
    }
    .contact .content-form{
        width: 960px;
    }
    .contact .content-form .nom,
    .contact .content-form .prenom{
            width: 360px;
    }
    .contact .content-form{
        padding: 40px 88px;
    }
    .home .section-hero .section-content .foreground .title{
        font-size: 96px;
        font-weight: 100;
        letter-spacing: 4px;
    }
    .home .section-hero .section-content .foreground .subtitle{
        /* text-transform: uppercase; */
        font-size: 32px;
    }
    .home .section-hero .section-content .foreground .slogan{
        font-weight: 100;
        font-size: 16px;
        margin-top: 32px;
    }
    .section {
        margin-top: 0;
    }
    .home .section-type-1.section-about .section-content{
        justify-content: center;
    }
    .contact .section{
        padding: 64px 0 0;
    }
    .section-conversion .segment{
        margin-bottom: 48px;
    }
    .section-type-2 .section-content .content-wrapper .content{
        margin-top: 0;
    }
    .header .nav-menu .nav-menu-items{
        transition: unset;
        transform: unset;
    }
    .programs .section-type-1 .section-content .segment-content{
        width: 580px;
    }
    .programs .section-type-1 .section-content .segment-content .content{
        padding: 0;
    }
    .programs .section-type-1 .section-content.section-description .segment-content{
        width: 960px;
    }
    .home .header .logo .logo-black {
        display: none;
    }
    .header .nav-menu .nav-menu-items a {
        text-transform: none;
        padding: 0;
    }
    .section-type-1{
        padding: 0;
        margin: 0;
        border: transparent 0 solid;
    }
    .section-type-1 .section-content .button-wrapper, 
    .section-type-1 .segment-content{ 
        padding-left: 16px;
        padding-right: 16px;
    }
    .home .section-type-1 .section-content .button-wrapper{
        padding-left: 0;
    } 
    .section-type-2 .background{ 
        margin-left: -16px; 
        margin-right: -16px;
    }
    .section-type-2 .segment-cta { 
        margin-bottom: 64px;
    }
    .home .section-type-1 .section-content .segment-content .content {
        margin-bottom: 0;
    }
    .header .nav-menu .menu-item.menu-item-inscription {
        right: unset;
        top: unset;
    }
    .header .nav-menu .nav-menu-items a.menu-item-link-inscription {
        background-color: unset;
        color: white !important;
        padding: unset;
        position: relative;
        display: block;
        top: -2px;
    }
    .certifications-page .certification-wrapper .cert-title{
        color: white;
        line-height: 1.1;
        text-align: left;
    }
    .certifications-page .section-certifications .section-content{
        padding: 96px 0;
        flex-wrap: wrap;
        justify-content: space-between;
    } 
}


