/* Variables ************************************/
:root {

    --colorMainDark: #704ee7;
    --colorMainDark900: #1f0b55;
    --colorMainDark200: #bbb2f6;

    --colorMainLight: #a72df8;
    --colorSub: #f7dd5f;

    --black100: #dbdbdb;
    --black950: #121212;

    --white50: #fbfbfb;

    --transition-fast: 100ms;
    --transition-base: .3s;

}

/* Text Font and Style ********************************/

@font-face {
    font-family: 'mainFont';
    font-display: swap;
    font-weight: 200 800;

    src:
        url("../medias/fonts/PlusJakartaSans_wght.ttf") format("truetype-variations");

} 

 
.display1
{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.3;
}

.display3
{
    font-weight: 500;
    font-size: 24px;
}

.displaySmall
{
    font-weight: 500;
    font-size: 16px;
}

/* General **************************************/

html{
    scrollbar-color: var(--colorMainLight) transparent;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    font-family: 'mainFont';
}


body {
    margin:0;
    background-color: var(--white50);
}

img{
    pointer-events: none;
}

video{
    pointer-events: none;
}

a {
    text-decoration: none;
    color: var(--white50);
}

button{
    border: none;
    background-color: transparent;
}

/* Animation ******************************************/

.animOpacity{
    opacity: 0;
    transition: 400ms linear;
}

.animOpacity.onScreen{
    opacity: 1;
}

/* Header / Menu **************************************/

#header{
    position: fixed;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100vw;
    padding: 18px 0;
    z-index: 100;
    top: 0;
    left: 0;
    background: rgba(251, 251, 251, 0);
    transition: linear var(--transition-fast);
    a{
        fill: var(--white50);
    }
}

.navLink::after {
    content: "";
    width: 100%;
    height: 2px;
    transform-origin: left center;
    background-color: var(--white50);
    display: block;
    margin: 0 auto;
    margin-top: 0.25rem;
    transform: scaleX(0);
    transition: .2s ease;
}

#header.headerIn
{
    background: rgb(251, 251, 251);
    .navLink {
        color: var(--black950);
    }
    .navLink::after {
        background-color: var(--black950);
    }
}

#headerLogo {
    transform: scale(1);
    transition: .2s ease;  
}

@media (hover: hover) and (pointer: fine) {
    #headerLogo:hover {
        transform: scale(1.1);
    }
}

#headerLogoBox
{
	padding-left: 24px;
}

#headerLogo
{
    height: 48px;
    display: block;
    filter: invert(0%);
}

#headerLogo.headerIn
{
    filter: invert(100%);
}

#menuButton.headerIn
{
    filter: invert(100%);
}

#navLinksDiv
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 24px;
}


.navLink{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 1.2px;
}

.navLink.selected::after{
    transform: scaleX(1);
}

@media (hover: hover) and (pointer: fine) {
    .navLink:hover.navLink::after {
        transform: scaleX(1);
    }
}

/* contact button */ 
.contactButton{
    display: inline-block;
    border-radius: 8px;
    user-select: none;
    line-height: 1.5;
    text-align: center;
    position: relative;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 24px;
    color: var(--black950);
    background-color: var(--colorSub);
    transition: all var(--transition-base);
}

.contactButton::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url(../medias/icons/icons-arrow-right.svg);
    position: absolute;
    top: 50%;
    margin-left: 4px;
    transition: all var(--transition-base);
    transform-origin: center left;
    transform: translateY(-50%) scale(0);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (hover: hover) and (pointer: fine) {
    .contactButton:hover {
        padding-left: 14px;
        padding-right: 34px;
    }

    .contactButton:hover::after {
        transform: translateY(-50%) scale(1);
    }
}

#menuContactButton{
    font-weight: 600;
}

.headerIn.contactButton::after {

    content: "";
    width: 16px;
    height: 16px;
    background: url(../medias/icons/icons-arrow-right-white.svg);
    position: absolute;
    top: 50%;
    margin-left: 4px;
    transition: all var(--transition-base);
    transform-origin: center left;
    transform: translateY(-50%) scale(0);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (hover: hover) and (pointer: fine) {
    .headerIn.contactButton:hover::after {
        transform: translateY(-50%) scale(1);
    }
}

#headerContactButton.headerIn, #menuContactButton
{
    color: var(--white50);
    background-color: var(--colorMainLight);
}

/* menu */

#headerButtonBox{

    padding-right: 34px;
}

#headerMenuButtonDiv{
    display: none;
}

.menuButtonBox{
    position: relative;
    width: 32px;
    height: 24px;
    margin-top: 10px;
    padding: 0;
    cursor: pointer;
}

.menuButtonLine{
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background-color: var(--white50);
    transition: top .3s cubic-bezier(.65,0,.35,1), transform .3s cubic-bezier(.65,0,.35,1), opacity .3s cubic-bezier(.65,0,.35,1);
}

.menuButtonLine:nth-child(1){
    top: 0;
}

.menuButtonLine:nth-child(2){
    top: 50%;
    transform: translateY(-50%);
}

.menuButtonLine:nth-child(3){
    top: 100%;
    transform: translateY(-100%);
}

.menuButtonBox.open .menuButtonLine:nth-child(1){
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menuButtonBox.open .menuButtonLine:nth-child(2){
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
}

.menuButtonBox.open .menuButtonLine:nth-child(3){
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

#menu{
    padding: 0;
    top: 0px;
    height: 100vh;
    width: 100%;

    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.397);

    position: fixed;
    align-items: center;
    text-align: left;
    justify-content: left;

    display: none;
    z-index: 90;

    ul{
        margin-left: 48px;
        
    }

    li{
        display: block;
        padding-bottom: 24px;
        align-items: center;
        list-style: none;
        
    }
    .menuLink {
        color: var(--white50);
        text-transform: uppercase;
        font-size: 36px;
        font-weight: 500;
    }  
}

/* Action Button *******************************/

.actionButton{
    display: inline-block;
    border-radius: 8px;
    user-select: none;
    line-height: 1.5;
    text-align: center;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 24px;
    color: var(--black950);
    background-color: var(--colorSub);
    transition: all var(--transition-base);
}

.actionButton::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../medias/icons/icons-arrow-right.svg);
    position: absolute;
    top: 50%;
    margin-left: 4px;
    transition: all var(--transition-base);
    transform-origin: center left;
    transform: translateY(-50%) scale(0);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


@media (hover: hover) and (pointer: fine) {
    .actionButton:hover {
        padding-left: 14px;
        padding-right: 34px;
    }

    .actionButton:hover::after {
        transform: translateY(-50%) scale(1);
    }
}

/* Start ***************************************/

#accueil{
    display: flex;
    overflow: hidden;
}


/*Loading */

#loadingView{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -20;
}

#loading2
{
    opacity: 0.5;
    background: linear-gradient(to right,#DBA507,#722dd9);

    mask-image: linear-gradient(85deg ,transparent 40%,white,transparent 60%);
    mask-size: 200%;
    animation: loadingMask 1.6s linear infinite;

    display: flex;
    align-items: center;
    justify-content: center;
    img{
        max-height: 40dvh;
        max-width: 80vw;
        filter: grayscale(100%);
    }
}

@keyframes loadingMask {
    0% {mask-position: 0%;}
    100% {mask-position: -200%;}
}

#loading1
{
    background: #888888;
}

.loadingFullScreen
{   
    position: absolute;
    height: 100dvh;
    width: 100vw;  
}

.loadingOpacity0{
    opacity: 0;
}

/*video */

.startFullScreen{
    min-width: 100%;
    min-height: 100dvh;
    width: auto;
    height: auto;
    max-height: 100dvh;
    max-width: 100vw;

    background-size: cover;   
    object-fit: cover;
}

#videoStart{
    pointer-events: none;
    overflow: hidden;

    z-index: -10;
}

#textStart{
    color: var(--white50);
    position: absolute;
    bottom: 0px;
    left: 0px;


    padding-left: 24px;
    padding-bottom: 24px;
}

#textStartBig{
    margin: 12px 0;
}

#textStartSub{
    margin: 0;
}

#videoMask{
    position: absolute;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.35) 25%,rgba(18, 18, 18, 0.75) 85%);
    z-index: -9;
}

/* arrow Down */ 

#startArrowDown{
    height: 16px;
    position: absolute;
    bottom: 30px;
    right: 50%;
    left: 50%;

    animation: moveUp 0.5s infinite alternate ease-out;
}

@keyframes moveUp{
    0% {transform: translateY(0px);}
    100% {transform: translateY(-8px);}
}

/* volume */ 

#volumeShow{
    position: fixed;
    color: var(--white50);
    bottom: 0px;
    right: 0px;

    transition: linear var(--transition-fast);
    z-index: 20;
}

.activated#volumeShow, .off#volumeShow
{
    opacity: 0;
    z-index: -1;
}

#volumeText{
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 220px;
    padding-right: 180px;
    margin: 0;
}

#volumeArrow{
    position: absolute;
    bottom: 20px;
    right: 110px;

    user-select: none;
}

#volumeTextSon{
    position: relative;
    color: var(--colorSub);
    z-index: -1;
}

#volume {
    position: fixed;
    z-index: 25;
    bottom: 24px;
    right: 24px;
    height: 48px;
    width: 48px;
    transition: ease-in-out var(--transition-fast);
    border-radius: 999px;

    img{
        position: absolute;
        height: 60%;
        margin: 20%;
        transition: linear var(--transition-fast);

        user-select: none;
    }

    &::after{
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 999px;
        border: 1px solid var(--colorMainDark200);
        animation: volumePulse 1s ease-out infinite;
        pointer-events: none;
    }
}

@media (hover: hover) and (pointer: fine) {
    #volume:hover{
        transform: scale(1.1);
    }
}

@keyframes volumePulse{
    0% {transform: scale(1); opacity: 1;}
    100% {transform: scale(1.83); opacity: 0;}
}

#volumeBackground{
    position: absolute;
    border-radius: 50px;
    height: 48px;
    width: 48px;
    transition: ease-in-out var(--transition-fast);
    background: var(--colorMainDark900);
}

.activated#volume
{
    #volumeSwitchMuted{
        opacity: 0;
    }
    #volumeSwitchVolumeOn{
        opacity: 1;
    }         
    #volumeBackground{
        background: var(--colorMainDark200);
    }
    &::after{
        animation: none;
    }

}

#volumeSwitchVolumeOn{
    opacity: 0;
}

#muteButton{
    display: none;
}

.volumeButton{
    position: relative;
    height: 100%;
    width: 100%;
    padding: 0;
    z-index: 25;
    cursor: pointer;
}

/* BACKGROUND ***********************************************/ 
#background
{
    display: block;
    position: absolute;
    top: 0px;
    width: 100%;


    height: 415vh;
    clip-path: ellipse(350% 100% at 50% 0%);

    background: linear-gradient(to bottom,var(--colorMainDark) 30%,var(--colorMainLight));
    z-index: -100;
}


/* TITLE ***************************************************/

.sectionTitle{
    text-align: left;
    display: flex;
    margin-top: 0;
    margin-left: 10%;
    margin-right: 10%;
    p {
        margin: 0px auto 0px auto;
    }
}


/* SERVICE *************************************************/
#services{
    display: block;
    position: sticky;
    top: 90px;
    height: 92vh;
    overflow-x: hidden;
}


#introTextDiv{
    position: relative;
    z-index: -1;
    display: flex;
    width: 100vw;
    height: 19vh;
    overflow: visible;
    align-items: center;
    justify-content: center;
}

#introText{
    color: var(--white50);
}


#servicesDiv{
    margin-left: 5vw;
}

.service{
    transition: ease-in-out 400ms;
    display: block;
    position: absolute;
    height: 60vh;
    padding-right: 2%;
    opacity: 0;
}

.serviceVideo{
    transition: linear 600ms;
    height: 100%;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 16px;
    left: 8vw;
    mask-image: linear-gradient(to right, white 40%, transparent 60%);
    mask-size: 300%;
    mask-position: 60% 0%;
    filter: brightness(65%);
}

.serviceText{
    opacity: 0;
    position: absolute;
    left: 0px;
    bottom: 0px;
    transition: linear 600ms;
    width: 60%;
    margin-bottom: 24px;
}

.serviceTitle{
    font-size: 72px;
    font-weight: 700;
    color: var(--white50);
    margin: 20px 0px;
}

.serviceP{
    font-size: 20px;
    font-weight: 400;
    color: var(--white50);
    margin: 14px 0px;
    line-height: 1.5;
}

.serviceButton{
    display: inline-block;
    border-radius: 8px;
    user-select: none;
    line-height: 1.5;
    text-align: center;
    position: relative;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 31px;
    color: var(--black950);
    background-color: var(--colorSub);
    transition: all var(--transition-base);
}

.serviceButton::after {
    content: "";
    width: 22px;
    height: 22px;
    background: url(../medias/icons/social-media-youtube-dark.svg);
    position: absolute;
    top: 50%;
    margin-left: 8px;
    transition: all var(--transition-base);
    transform-origin: center left;
    transform: translateY(-50%) scale(0);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


@media (hover: hover) and (pointer: fine) {
    .serviceButton:hover {
        padding-left: 16px;
        padding-right: 46px;
    }

    .serviceButton:hover::after {
        transform: translateY(-50%) scale(1);
    }
}

.servicePlaceHolderBig
{
    height: 50vh;
}
.servicePlaceHolderSmall
{
    height: 10vh;
}

.nextService{
    opacity: 0.4;
}

.currentService{
    transition-delay: 0ms;
    opacity: 1;
    .serviceText
    {
            opacity: 1;
    }
    .serviceVideo
    {
        mask-position: 0% 0%;
    }
}

/* points */

.servicePointDiv{
    position: relative;
    z-index: 2;
    left: 5.8vw;
}

.servicePoint{
    display: block;

    height: 16px;
    width: 16px;
    border-radius: 10px;
    background-color: var(--white50);
    margin-bottom: 16px;

    transition: linear 800ms;
}

.servicePoint.selected{
    background-color: var(--colorSub);
}

/* MEMBRES **************************************************/
#collectif{
    padding-top: 15vh;
}

#collectifText{
    text-align: left;
    max-width: 848px;
    margin: 40px auto 80px;
    padding: 0 24px;
    font-weight: 400;
}

#membres{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.membresBox{
    position: relative;
    margin: 32px;
    height: 250px;
    width: 200px;
    border-radius: 15px;
    overflow: hidden;
    img {
        position: relative;
        transition: ease-in-out 300ms;
        height: 100%;
        filter: grayscale(100%);
    }
}

.membresBox::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(167, 45, 248, 0.05) 50%,rgba(112, 78, 231, 0.85) 100%);    opacity: 0;
    transition: opacity 300ms ease-in-out;
    pointer-events: none;
    z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
    .membresBox:hover::after{
        opacity: 1;
    }

    .membresBox:hover img{
        transform: scale(1.1);
    }
}

.membresName{
    text-align: left;
    position: absolute;
    color: var(--white50);
    bottom: 10px;
    left: 0px;
    padding: 20px;
    margin: 0px;
    z-index: 2;
    font-size: 18px;
    font-weight: 700;
}

.membresJob{
    text-align: left;
    position: absolute;
    color: var(--white50);
    bottom: 0px;
    left: 0px;
    padding: 20px;
    padding-bottom: 15px;
    margin: 0px;
    z-index: 2;
    font-size: 10px;
}



/* CONFIANCE / CONTACT ************************************************/
#contact{
    padding-top: 15vh;
    margin-top: 100px;
}

#confiance{
    margin: 100px 8vw 80px 8vw;
    display: flex;
    overflow-x: hidden;
    height: 95px;
    mask-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 1) 10% 90%, transparent);
}

#confiance::-webkit-scrollbar{
    display: none;
}

.confianceLoop{
    display: flex;
    align-content: center;
    justify-content: center;
    will-change: transform;
}

.confianceLogo{
    flex: 0 0 80px;
    padding: 0px 20px;
    margin : 0px 20px;
    height: 100%;
}

#contactInfo{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    margin-bottom: 100px;
}

.contactInfoButton, .contactInfoButtonLight{
    display: inline-block;
    position: relative;
    margin: 20px;
    transition: all var(--transition-base);
    border-radius: 39px;
    border: solid 2px var(--colorMainLight);
    padding: 18px 44px;
    text-transform: uppercase;
    color: var(--colorMainLight);
    line-height: 1.5;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}

.contactInfoButton:focus, .contactInfoButtonLight:focus
{
    color: var(--white50);
    background: var(--colorMainLight);
}

@media (hover: hover) and (pointer: fine) {
    .contactInfoButton:hover, .contactInfoButtonLight:hover
    {
        color: var(--white50);
        background: var(--colorMainLight);
    }
}

.contactInfoButton::after, .contactInfoButtonLight::after{
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    margin-left: 4px;
    transition: all var(--transition-base);
    transform-origin: center left;
    transform: translateY(-50%) scale(0);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 18px;
}

.contactInfoButton::after{
    background-image: url(../medias/icons/icons-arrow-right-up.svg);
}

.contactInfoButtonLight::after{
    background-image: url(../medias/icons/icons-arrow-right-up-white.svg);
}

@media (hover: hover) and (pointer: fine) {
    .contactInfoButton:hover::after, .contactInfoButtonLight:hover::after {
        transform: translateY(-50%) scale(1);
    }

    .contactInfoButton:hover, .contactInfoButtonLight:hover {
        padding-left: 24px;
        padding-right: 64px;
    }
}

#mailButton
{
    color: black;
    border-color: transparent;
    background-color: var(--colorSub);
}

#mailButton:focus{
    background-color: transparent;
    color: var(--colorMainLight);
    border-color: var(--colorMainLight);
}

@media (hover: hover) and (pointer: fine) {
    #mailButton:hover{
        background-color: transparent;
        color: var(--colorMainLight);
        border-color: var(--colorMainLight);
    }
}

/* FOOTER ***********************************************************/

#footer{
    background-color: var(--black950);
    color: var(--black100);
    
    padding: 40px;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;

    a{
        display: inline-block;
        color: var(--black100);
    }
}

#footerDiv{
    display: flex;
    flex-direction: row;
    column-gap: 48px;
    flex-wrap: nowrap;
}

.footerTitle{
    text-transform: uppercase;
    font-size: 14px;
    color: var(--white50) !important;
    letter-spacing: 0.5px;
    margin: 0 0 15px;
}

.footerBox{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: baseline;
    row-gap: 15px;
    width: 200px;
}

.footerBox p {
    margin: 0;
    color: var(--black100);
}

.footerLogo{
    height: 32px;
    padding-bottom: 9px;
}

.socialsLogo{
    width: 24px;
}

.footerSocialsLogoBox{
    margin-right: 15px;
}

#footerSocialsLogo{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

#footerLast{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
    border-top: solid var(--white50) 1px;
}

#footerLast p {
    margin: 24px 0 0;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: var(--black100);
}

/* Responsive ************************************************************/ 
@media(width < 1000px),(height < 450px)
{

    @media (hover: hover) and (pointer: fine) {
        #headerLogo:hover {
            transform: scale(1);
        }
    }

    /*cancel opacity animation */
    .animOpacity{
        opacity: 1;
    }

    body{
        height: 50dvh;
    }

    /* display */ 
    .display1
    {
        font-size: 30px;
    }

    .display3
    {
        font-size: 18px;
    }

    .displaySmall
    {
        font-size: 12px;
        line-height: 1.5;
        letter-spacing: 0.4px;
    }

    /* start */ 
    #volumeShow{
        display: none;
    }

    #startArrowDown
    {
        display: none;
    }

    /*header */
    #headerLogo{
        height: 40px;

    }

    #navLinksDiv{
        display: none;
    }

    #headerContactButton{
        display: none;
    }

    #headerMenuButtonDiv{
        display: block;
    }

    /* contact button */ 
    .contactButton{
        font-size: 20px;
        font-weight: 700;
        padding: 10px 31px;
        color: var(--black950);
        background-color: var(--colorSub);
    }

    .contactButton::after {
        width: 22px;
        height: 22px;
        background: url(../medias/icons/icons-arrow-right-white.svg);
        margin-left: 8px;
    }

    @media (hover: hover) and (pointer: fine) {
        .contactButton:hover {
            padding-left: 16px;
            padding-right: 46px;
        }
    }

    /*services */
    #services{
        top: 0px; 
        height: 100vh;
        overflow: hidden;
    }

    #servicesDiv{
        margin: 0;
    }

    .service{
        opacity: 1;
        height: 100%;
    }

    #introTextDiv{
        display: none;
    }

    .servicePointDiv{
        left: 24px;
        top: 50dvh;
    }

    .serviceTitle{
        font-size: 40px;
        font-weight: 600;
        max-width: 90vw;
    }

    .serviceP{
        font-size: 16px;
        max-width: 347px;
        padding-right: 24px;
    }

    .serviceVideo{
        mask-image: none;
        left: calc(-50% + 50vw);
        min-width: 100vw;
        min-height: 100vh;
        max-height: 100%;
        object-fit: cover;
        width: auto;
        height: auto;
    }
    
    .nextService{
        opacity: 1;
    }

    .serviceText{
        bottom: 1dvh;
        left: 24px;
        width: 90%;
        max-width: 90vw;
    }

    .servicePlaceHolderBig
    {
        height: 70vh;
    }

    /* contact */ 

    .contactInfoButton, .contactInfoButtonLight{
        padding: 18px 36px;
        font-size: 14px;
    }

    .contactInfoButton::after, .contactInfoButtonLight::after{
        width: 12px;
        height: 12px;
        margin-left: 12px;
    }

    @media (hover: hover) and (pointer: fine) {
        .contactInfoButton:hover, .contactInfoButtonLight:hover {
            padding-left: 24px;
            padding-right: 48px;
        }
    }

    /* footer */

    #footer {
        padding: 24px;
    }

    #footerDiv{
        flex-direction: column;
    }

    .footerBox {
        margin-bottom: 40px;
    }

    #footerLast{
        flex-direction: column-reverse;
    }

    #footerLast p:nth-of-type(1) {
        margin: 16px 0 0;
    }


}

@media(width < 450px)
{

    #menu{
        ul{
            margin-left: 24px; 
        }

        li{
            padding-bottom: 24px;
        }
        .menuLink {
            font-size: 24px;
        }  
    }

        /* contact button */ 
    .contactButton{
        font-size: 12px;
        padding: 10px 24px;
    }

    .contactButton::after {
        width: 16px;
        height: 16px;
        background: url(../medias/icons/icons-arrow-right-white.svg);
        margin-left: 4px;
    }

    @media (hover: hover) and (pointer: fine) {
        .contactButton:hover {
            padding-left: 14px;
            padding-right: 34px;
        }
    }

        /* action button */
    .actionButton{
        font-size: 12px;
        padding: 10px 24px;
    }

    .actionButton::after {
        width: 16px;
        height: 16px;
        margin-left: 4px;
    }

    @media (hover: hover) and (pointer: fine) {
        .actionButton:hover {
            padding-left: 14px;
            padding-right: 34px;
        }
    }

        /* service button */
    .serviceButton{
        font-size: 12px;
        padding: 10px 24px;
    }

    .serviceButton::after {
        width: 16px;
        height: 16px;
        margin-left: 4px;
    }

    @media (hover: hover) and (pointer: fine) {
        .serviceButton:hover {
            padding-left: 14px;
            padding-right: 34px;
        }
    }

    #textStartBig{
        font-size: 24px;

    }

        .display1
    {
        font-size: 24px;
    }

    #confiance{
        height: 80px;
    }

}

/* smalllllll */ 
@media(width < 350px)
{

   #logoCollectif{
        display: none;
    }

    #logoCameleon{
        display: none;
    }

    .serviceTitle{
        font-size: 28px;
    }

    .serviceP{
        font-size: 12px;
    }

    .contactInfoButton, .contactInfoButtonLight{
        padding: 14px 30px;
        font-size: 10px;
    }

    .contactInfoButton::after, .contactInfoButtonLight::after{
        width: 10px;
        height: 10px;
        margin-left: 10px;
    }

    @media (hover: hover) and (pointer: fine) {
        .contactInfoButton:hover, .contactInfoButtonLight:hover {
            padding-left: 20px;
            padding-right: 40px;
        }
    }
}

/* service Point */ 
@media(height < 750px)
{
    .servicePointDiv{
        top: 35dvh;
    }
}

/* service Point */ 
@media(height < 550px)
{
    .servicePointDiv{
        display: none;
    }
}
