html, body{
    height:100%;
    padding:0;
    margin:0;
}

:root {
  --dark: #23212B;
  --darkBlue: #140A4D;
  --blue: #34248C;
  --lightBlue: #A3BDFF;
  --green: #00D6A4;
  --brokenWhite: #F0F0F0;
  --white: #fff;
  --lightBlueGradient: linear-gradient(-171deg, var(--lightBlue) 0%, var(--brokenWhite) 100%);
  --darkBlueGradient: linear-gradient(14deg, var(--blue) 0%, var(--darkBlue) 100%);;
  --blocRadius: 20px;
  --fieldRadius: 10px;
  --shapesSize: 25vw;
  --shapesSizeMax: 300px;
}


/*/////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////             Main             /////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////*/

body {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: var(--dark);
    font-size: 16px;
    line-height: 28px;
    overflow-x: hidden;
    background: linear-gradient(-45deg, var(--lightBlue) 0%, #f1f5ff 100%);
    background-attachment: fixed;
    background-size: cover;
}

* {
    box-sizing: border-box;
}

h1 {
    z-index: 2;
    display: inline-block;
    position: relative;
    font-size: 1.8em;
    color: var(--white);
    background: var(--blue);
    font-weight: 700;
    line-height: 1em;
    padding: 15px 40px 15px 120px;
    border-radius: 50px;
    margin: 40px 0;
}

h1 div {
    position: absolute;
    width: 3.5em;
    height: 3.5em;
    background: var(--blue);
    border: 10px solid #fff;
    border-radius: 50%;
    top: 50%;
    left: 40px;
    transform: translateX(-50%) translateY(-50%);
}

h1 div::before {
    content: '';
    display: block;
    position: absolute;
    top: 8px;
    left: 8px;
    border-radius: 50%;
    background: var(--white);
    width: calc(100% - 16px);
    height: calc(100% - 16px);
}

h1 div::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    background: var(--green);
    width: 40%;
    height: 40%;
}

h2 {
    z-index: 2;
    display: inline-block;
    position: relative;
    font-size: 2.5em;
    color: var(--darkBlue);
    font-weight: 700;
    line-height: 1em;
    margin: 10px 0;
}

h2::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 5px;
    background: var(--green);
    border-radius: 5px;
    z-index: -1;
}

h3 {
    z-index: 2;
    position: relative;
    font-size: 1.6em;
    color: var(--blue);
    font-weight: 700;
    line-height: 1.25em;
}

ul {
    margin: 20px 0;
}

p {
    margin: 20px 0;
}

strong {
    font-weight: 700;
    color: var(--blue);
}

@media screen and (max-width: 1023px) and (orientation: landscape) {  
    body {

    }
}

svg.shape {
    display: block;
    position: absolute;
    width: var(--shapesSize);
    height: var(--shapesSize);
    max-width: var(--shapesSizeMax);
    max-height: var(--shapesSizeMax);
    pointer-events: none;
}

svg.shape_dark path {
    fill: var(--darkBlue)
} 

a.button,
button.button {
    position: relative;
    display: inline-block;
    background: var(--white);
    padding: 8px 40px;
    color: var(--dark);
    font-weight: 400;
    text-decoration: none;
    font-size: 1em;
    line-height: 1.4em;
    font-family: "Open Sans", sans-serif;
    margin: 0 10px 0 0 ;
    border-radius: 50px;
    border: 1px solid var(--white);
    box-shadow: 0 3px 0 var(--green);
    transition: all .3s cubic-bezier(0.530, 1.650, 0.605, 1.005);
    cursor: pointer;
}

a.button::before,
button.button::before {
    content: '';
    display: block;
    position: absolute;
    width: 1em;
    height: 1em;
    background: var(--green);
    top: 50%;
    left: 22px;
    border-radius: 40px;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) scale(0);
    transition: all .3s cubic-bezier(0.530, 1.650, 0.605, 1.005);
}

a.button:hover,
button.button:hover {
    padding: 8px 30px 8px 50px;
}

a.button:hover::before,
button.button:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1);
}

a.button.btn_green,
button.button.btn_green {
    color: var(--white);
    font-weight: 700;
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0 3px 0 var(--brokenWhite);
}

a.button.btn_green:hover,
button.button.btn_green:hover {
    color: var(--green);
    background: var(--white);
}

div.bloc {
    background: var(--white);
    border-radius: var(--blocRadius);
    padding: 20px 40px;
    position: relative;
}

div.bloc::before, div.bloc::after { 
    width: var(--blocRadius);
    height: var(--blocRadius);
    position: absolute;
    content: '';
    display: block;
    border-radius: 50%;
}

div.bloc::before {
    top: calc(var(--blocRadius) / 2);
    left: calc(var(--blocRadius) / 2);
    background: var(--green);
}

div.bloc::after {
    bottom: calc(var(--blocRadius) / 2);
    right: calc(var(--blocRadius) / 2);
    background: var(--lightBlue);
}


@media screen and (max-width: 1023px) {  
    h1 {
        font-size: 1.4em;
        padding: 15px 40px 15px 90px;
        white-space: nowrap;
    }
    h1 div {
        left: 30px;
    }
    body {
        
        background: url('img/bg.PNG') center no-repeat, linear-gradient(-45deg, var(--lightBlue) 0%, #f1f5ff 100%);
        background-attachment: fixed, fixed;
    }
}

/*/////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////           Content            /////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////*/

#content {
    position: relative;
    width: 100vw;
}

#content > section {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 20px 0 45px 0;
}

#content .max_w {
    position: relative;
    max-width: 1280px;
    padding: 0 40px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 1023px) {  
    #content {
        overflow-x: hidden;
    }
    #content .max_w {   
        padding: 0 20px;
    }
}

/*/////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////             Nav              /////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////*/


nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 75px;
    background: var(--darkBlue);
    z-index: 10;
    transition: height .2s ease;
}

nav .max_w {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-width: 210px;
    transition: max-width .2s ease;
}

nav a.button {
    margin: 0 5px;
    border-radius: 50px;
    background: transparent;
    box-shadow: none;
    color: var(--brokenWhite);
    font-weight: 400;
    border: 1px solid transparent;
}

nav a.button::before {
    background: var(--white);
}

nav a:last-child {
    font-weight: 700;
    color: var(--dark);
    background-color: var(--brokenWhite);
}

nav a:hover {
    border-color: var(--brokenWhite);
}

nav a:last-child:hover {
    border-color: transparent;
    color: var(--white);
    background-color: var(--green);
}

nav svg {
    top: 98%;
    right: -1px;
}

nav.small {
    height: 50px;
}

nav.small a.button{
    padding: 0px 40px;
}

nav.small a.button:hover{
    padding: 0px 30px 0px 50px;
}

nav.small .logo { 
    max-width: 170px;
}

.nav_burger {
    display: none;
}

@media screen and (max-width: 1023px) {  
    nav {
        width: 100%;
        height: 60px;
        position: fixed;
    }
    
    #content nav .max_w {
        padding: 0 10px 0 20px;
    }

    .logo {
        max-width: 150px;
        transition: max-width .2s ease;
        z-index: 4;
    }
    .nav_menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 3;
        background: #140A4DF5;
        display: flex;
        justify-content: center;
        align-content: center;
        flex-direction: column;
        align-items: center;
        transform: translateX(110%);
        pointer-events: none;
        transition: all .3s ease;
    }

    nav.open .nav_menu {
        pointer-events: all;
        transform: translateX(0%);
    }   

    nav a.button {
        font-size: 1.2em;
        margin: 10px 0;
    }

    .nav_burger {
        z-index: 5;
        width: 50px;
        height: 50px;
        display: inline-block;
        border: none;
        background: transparent url('img/burger.svg')  center no-repeat;
        background-size: 80%;
        transition: all .3s ease;
    }
    nav.open .nav_burger {
        background: transparent url('img/x.svg')  center no-repeat;
        background-size: 80%;
        transform: rotate(180deg);
    }
}

/*/////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////            Header            /////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////*/

header {
    position: relative;
    height: 700px;
    padding: 1px;
    margin-top: 0px;
}

header .max_w {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

header #particles {
    position: absolute;
}

header img {
    position: absolute;
    height: 100%;
    right: 0;
}

header .h_text {
}

header h2 {
    font-size: 3.5em;
    margin-bottom: 0;
}

header #particles-js {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

@media screen and (max-width: 1023px) {  
    header #particles-js {
        display: none;
    }
    header h2 {
        font-size: 2.1em;
        margin-bottom: 0;
    }
    header {
        /* min-height: 90vh; */
        height: inherit;
    }
    header img {
        height: auto;
        max-width: 60%;
        max-height: 52%;
        right: 0;
        bottom: 0;
        transform: translateX(20%);
    }
    header a.button, button.button {
        display: block;
        width: fit-content;
        margin: 20px 0;
    }
    #content header .max_w {
        padding: 15vh 20px 25vh 20px;
    }
}

/*/////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////         Qui suis-je          /////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////*/

#content #qui-suis-je {
    background: linear-gradient(90deg, #ffffff 50%, #f0f0f0 100%);
}

#qui-suis-je .shape{
    top: 0px;
    left: -1px;
    transform: translateY(-100%);
}

#qui-suis-je p {
    padding-left: 80px;
    margin-top: 0;
}

#qui-suis-je .line {
    position: absolute;
    bottom: -65px;
    left: 77px;
    width: 0;
    height: calc(100% - 20px);
    border-left: 5px solid var(--green);
}

#qui-suis-je::before {
    position: absolute;
    content: '';
    display: block;
    width: calc(var(--shapesSize) / 4);
    height: calc(var(--shapesSize) / 4);
    top: 0;
    right: 0;
    border: 15px solid var(--lightBlue);
    border-top: 0;
    border-right: 0;
    border-bottom-left-radius: 100%;
}

@media screen and (max-width: 1023px) {  
    #qui-suis-je p {
        padding-left: 55px;
    }
    #qui-suis-je .line {
        left: 48px;
    }
    #qui-suis-je::before {
        width: calc(var(--shapesSize) / 2);
        height: calc(var(--shapesSize) / 2);
    }
}

/*/////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////           Services           /////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////*/


#content #mes-services {
    background: var(--green);
    text-align: center;
    z-index: 2;
}

#mes-services h1 {
    background: var(--white);
    color: var(--dark);
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

#mes-services h1 div {
    border-color: var(--green);
    background: var(--white);
}

#mes-services h1 div::before {
    background: var(--green);
}

#mes-services h1 div::after {
    background: var(--blue);
}

#mes-services .line {
    position: absolute;
    top: -20px;
    left: 77px;
    width: 50%;
    height: 92px;
    border-left: 5px solid var(--white);
    border-bottom: 5px solid var(--white);
    border-bottom-left-radius: 90px;
}

#mes-services .bloc { 
    transform: translateY(50%);
    top: 45px;
    max-width: 75%;
    margin: 0 auto;
}

#mes-services h2 { 
    font-size: 2em
}

#mes-services .shape_top { 
    transform: translateY(-100%);
    top: 0px;
    right: 0;
}
#mes-services .shape_bottom { 
    transform: translateY(100%);
    bottom: 0px;
    left: 0;
}

@media screen and (max-width: 1023px) { 
    #content #mes-services {
        padding: 20px 0 0px 0;
    }
    #mes-services .line {
        left: 48px;
    }
    #mes-services .bloc {
        top: 0;
        max-width: 95%;
        transform: translateY(130px);
    }
    #mes-services h2 {
        font-size: 2em;
    }
}


/*//////////////////////   Carousel   /////////////////////////*/

#content #carousel {
    /* background: url('img/noise.png'), linear-gradient(90deg, #34248c 0%, #140a4d 100%); */
    /* background-blend-mode: multiply; */
    background: url('img/carousel.jpg'), linear-gradient(90deg, #34248c 0%, #140a4d 100%);
    background-blend-mode: overlay;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    padding: 110px 0 0px 0;
}

#c_background {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    height: calc(100% - 110px);
}

#c_background div {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100vw - 150px);
    height: calc(100vw - 150px);
    max-width: 1140px;
    max-height: 1140px;
    border: 5px solid var(--green);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
}

#c_background div::before {
    content: '';
    position: absolute ;
    display: block;
    width: 48%;
    height: 48%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--blue);
    border-radius: 50%;
    opacity: .5;
}

#c_menu {
    position: relative;
    padding: 60px 40px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}

#c_menu button {
    position: relative;
    display: block;
    background: var(--white);
    padding: 8px 25px 8px 70px;
    margin: 40px 0;
    height: 65px;

    font-size: 1em;
    line-height: 1.3em;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
    font-weight: 700;
    text-align: left;
    color: var(--darkBlue);
    cursor: pointer;
    
    box-sizing: border-box;
    border: 4px solid var(--white);
    border-radius: 50px;
    box-shadow: 0 3px 0 var(--green);
    transition: all .3s cubic-bezier(0.530, 1.150, 0.605, 1.005);
}

#c_menu button:hover:not(.active) {
    border-color: var(--green);
    color: var(--blue);
    transform: translateX(10px);
    box-shadow: 0 3px 0 var(--green);
    padding-right: 30px;
}

#c_menu button span {
    display: block;
    position: absolute;
    top: 6px;
    left: 6px;
    width: 46px;
    height: 46px;
    /* border-radius: 50%; */
}


#c_menu button:nth-child(1),
#c_menu button:nth-child(5) {
    margin-left: 3.5%;
}

#c_menu button:nth-child(2),
#c_menu button:nth-child(4) {
    margin-left: 1%;
}

#c_menu button.active {
    color: var(--white);
    background-color: var(--green);
    border-color: transparent;
    box-shadow: 0 0px 0 var(--green);
    cursor: default;
}

#c_menu button.active span {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(159deg) brightness(106%) contrast(104%);
}

#c_blocs {
    position: absolute;
    width: 100%;
    height: calc(100% - 110px);
    top: 110px;
    right: 0;
    overflow: hidden;
}

#c_blocs .c_bloc {
    position: absolute;
    background: linear-gradient(90deg, #ffffff 50%, #f0f0f0 100%);
    top: 50%;
    right: 0;
    width: 100%;
    max-width: calc(50vw + 150px);
    border-top-left-radius: var(--blocRadius);
    border-bottom-left-radius: var(--blocRadius);
    transform: translateX(50px) translateY(-50%);
    padding: 10px 30px;
    opacity: 0;
    pointer-events: none;
    line-height: 1.5em;
    transition: all .3s ease;
    border-bottom: 5px solid var(--green);
}

#c_blocs .c_bloc.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(-50%);

}

#c_blocs .c_bloc > * {
    max-width: 800px;
}

#c_blocs h3 {
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 15px 0;
}

#c_blocs h3 span {
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
    margin-right: 20px;
    /* background: #ddd; */
    /* border-radius: 50%; */
}

#c_blocs .ico {
    min-width: 60px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
}

.ico_1 { background-image: url('img/ico_1.svg');}
.ico_2 { background-image: url('img/ico_2.svg');}
.ico_3 { background-image: url('img/ico_3.svg');}
.ico_4 { background-image: url('img/ico_4.svg');}
.ico_5 { background-image: url('img/ico_5.svg');}


@media screen and (max-width: 1023px) { 
    #content #carousel {
        padding-left: 5%;
    }
    #c_menu {
        display: none;
    }
    #c_blocs {
        position: relative;
        display: flex;
        width: inherit;
        overflow: visible;
        gap: 30px;
        padding: 0 0 60px 0;
        transition: transform 0.3s ease;
        will-change: transform;
        align-items: flex-start;
        top: inherit;
        right: inherit;
    }

    #c_blocs .c_bloc {
        position: relative;
        opacity: 1;
        transform: none;
        width: calc(100vw - 70px);
        min-width: calc(100vw - 70px);
        border-radius: var(--blocRadius);
        pointer-events: all;
        
        flex: 0 0 80%;
        box-sizing: border-box;
    }

    #c_blocs .c_bloc.active {
        transform: none;
    }

    #c_blocs h3 {
        font-size: 1.5em;
    }
    #c_background div {
        width: calc(200vw - 150px);
        height: calc(200vw - 150px);
    }
}

#carousel #c_pages {
    display: block;
    width: calc(100% - 30px);
    height: 60px;
    padding: 80px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

#c_pages button {
    position: relative;
    display: block;
    background-color: var(--white);
    background-repeat: no-repeat;
    padding: 0;
    width: 50px;
    height: 50px;
    margin: 0px 10px;
    box-sizing: border-box;
    border: 4px solid transparent;
    border-radius: 60px;
    box-shadow: 0 3px 0 var(--green);
    transition: all .3s cubic-bezier(0.530, 1.150, 0.605, 1.005);
}

#c_pages button.active {
    color: var(--white);
    background-color: var(--green);
    border-color: transparent;
    box-shadow: 0 0px 0 var(--green);
    cursor: default;
}


#c_pages button.active span {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(159deg) brightness(106%) contrast(104%);
}

@media screen and (min-width: 1024px) {
    #carousel #c_pages {
        display: none;
    }
}

/*/////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////           Confiance          /////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////*/


#content #relation-confiance {
    padding: 30px 0 60px 0;
    text-align: center;
    background: var(--white);
}

#relation-confiance .shape_top {
    transform: translateY(-100%);
    top: 1px;
    right: 0;
}

#relation-confiance .shape_bottom {
    transform: translateY(100%);
    bottom: 0px;
    right: 0;
}

#content #relation-confiance > div {
    max-width: 1600px;
}

#relation-confiance h2 {
    margin: 40px 0;
}

#relation-confiance .line {
    position: relative;
    width: 100%;
    padding: 0;
    padding-left: 20px;
    text-align: left;
    border-left: 5px solid var(--green);
    /* max-width: 800px;   */
    width: fit-content;
    margin: 50px auto;
}

#relation-confiance .loc {  
    display: inline-block;
    margin: 0 auto;
    padding: 1em 4em 2em 4em;
    background: linear-gradient(90deg, #34248c 0%, #140a4d 100%);;
    border-radius: var(--blocRadius);
    color: #fff;
}

#relation-confiance .loc strong {
    color: #fff;
}

#relation-confiance .loc img {  
    width: 58px;
    padding: .5em;
}

#relation-confiance .loc img:hover {  
    opacity: .8;
    transform: scale(1.1);
}

@media screen and (max-width: 1023px) { 
    #relation-confiance h2 {
        font-size: 2em;
    }
    .img_left { 
        padding: 20px 0;
    }
    #relation-confiance img {
        position: relative;
        width: 100%;
        max-width: 480px;
        height: 250px;
    }
}

/*/////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////           Confiance          /////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////*/


#content #contact {
    background: transparent;
    padding: 100px 0 80px 0;
}

#contact .bloc {
    max-width: 800px;
    padding-top: 60px;
    margin: 0 auto;
    border-left: 5px solid var(--green);
}

#contact h1 {
    position: absolute;
    top: 0;
    margin: 0;
    left: -42px;
    transform: translateY(-50%);
}

#contact div.half {
    width: calc(50% - 5px);
    float: left;  
}

#contact div.half:nth-child(odd) {
    margin-right: 10px;
}

#form_contact input, #form_contact select, #form_contact textarea {
    width: 100%;  
    padding: 8px 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid var(--lightBlue);
    border-radius: calc(var(--blocRadius) /2);
    box-sizing: border-box;
    background: transparent;
    
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: var(--dark);
    font-size: 1em;
    line-height: 1.5em;  
}

#form_contact input::placeholder, #form_contact select::placeholder, #form_contact textarea::placeholder {
    opacity: .5;
}

#form_contact label {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    color: var(--blue);
    font-size: 1em;
    line-height: 1.5em;  
}

#form_contact button {
    display: block;
    margin: 15px auto ;
}

#form_contact .website {
    opacity: 0;
    position: absolute;
    top: 0;
    left: -9999px;
    height: 0;
    z-index: -1;
}

#form_alert.success {  
    display: block;
    background: var(--green);
    color: #fff;
    padding: .5em 1em;
    border-radius: var(--fieldRadius);
    margin: .5em 0;
}

#form_alert.error { 
    display: block;
    background: var(--dark);
    color: #fff;
    padding: .5em 1em;
    border-radius: var(--fieldRadius);
    margin: .5em 0;

}

@media screen and (max-width: 1023px) { 
    #contact .bloc {
        max-width: 90%;
    }
    #contact h1 {
        left: 0px;
    }
    #contact div.half:nth-child(odd) {
        margin-right: 0px;
    }
    #contact div.half {
        width: 100%;
        float: none;
    }
}

/* Chrome, Safari, Edge, Opera */
#captcha_answer::-webkit-outer-spin-button,
#captcha_answer::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
#captcha_answer[type=number] {
  -moz-appearance: textfield;
}


/*/////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////             Footer           /////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////*/


footer {
    display: flex;
    position: relative;
    width: 100vw;
    height: 250px;
    background: var(--darkBlue);
    color: var(--brokenWhite);
    text-align: center;
    padding: 40px 0 20px 0;
    align-content: center;
    flex-direction: column;
    justify-content: center;
}

footer .shape {
    top: 1px;
    left: -1px;
    transform: translateY(-100%);
}

footer > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .f_socials a {
    margin: 0 10px;
    transition: all .2s ease;
}

footer .f_socials a:hover {
    opacity: .6;
}

footer .f_ordre {
    display: flex;
    text-align: left;
}

footer .f_ordre span {
    padding-right: 20px;
    font-weight: 700;
    line-height: 1.4em;
}

footer .f_links {
    text-align: right;
}

footer .f_links a {
    display: block;
    text-decoration: none;
    color: #fff;
    margin: 15px 0;
}

footer .f_links a:hover {
    text-decoration: underline;
}

footer .credit {
    font-size: .7em;
    opacity: .5;
}
footer .credit a{
    color: var(--brokenWhite);
}

@media screen and (max-width: 1023px) {
    footer {  
        height: auto;
    }

    footer .max_w > div {  
        padding: 20px 0 0 0;
    }

    footer > div {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
    }
    footer .f_links {
        text-align: left;
    }
    
    footer .f_ordre img {
        width: 100px;
    }
}