/***** web fonts *****/

@font-face {
	font-family: 'agency bold';
	src: url('../fonts/AGENCYB.eot');
	src: url('../fonts/AGENCYB.eot') format('embedded-opentype'),
        url('../fonts/AGENCYB.woff') format('woff'), url('../fonts/AGENCYB.ttf') format('truetype');
}

@font-face {
	font-family: 'agency';
	src: url('../fonts/AGENCYR.eot');
	src: url('../fonts/AGENCYR.eot') format('embedded-opentype'),
        url('../fonts/AGENCYR.woff') format('woff'), url('../fonts/AGENCYR.ttf') format('truetype');
}

@font-face {
	font-family: 'alien';
	src: url('../fonts/AlienEncounters.eot');
	src: url('../fonts/AlienEncounters.eot') format('embedded-opentype'),
        url('../fonts/AlienEncounters.woff') format('woff'), url('../fonts/AlienEncounters.ttf') format('truetype');
}

/***** custom *****/

::selection{
  background-color: var(--main);
  color: white;
}

::-moz-selection {
  background-color: var(--main);
  color: white;
}

::-webkit-scrollbar {
	width: 14px;
    background-color: var(--light);
}

::-webkit-scrollbar-thumb {
	border-radius: 6px;
    border: 2px solid var(--light);
	background-color: var(--dark);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--main);
}

:root {
    --main: #021143;
    --second: #dd5827;
    --dark: #4b4b51;
    --light: #f4f4f4;
}

/***** initalisation *****/

body, ul, li, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

input, textarea, button {
    outline-style: none;
}

/******************** general ********************/

body {
    font-family: sans-serif;
}

main {
    min-height: calc(100vh - 50px);
}

header {
    margin-top: 50px;
}

section {
    padding: 80px 0;
}

/***** titrage *****/

h1, h2, h3 {
    font-family: "agency bold";
    color: var(--dark);
    text-align: center;
}

h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

h2,
#services h1,
#sec_aboutBio h1,
#sec_contactHead h1,
#mentLeg h1 {
    position: relative;
    
}

h2::after,
#services h1::after,
#sec_aboutBio h1::after,
#sec_contactHead h1::after,
#mentLeg h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: calc(50% - 90px);
    width: 180px;
    height: 2px;
    background-color: var(--second);
}

/***** text *****/

.txt_keywords {
    font-family: "agency bold";
    color: var(--dark);
    text-align: center;
    font-size: 18px;
}

p {
    font-size: 16px;
    font-family: "Roboto";
    color: var(--dark);
}

a {
    color: var(--main);
}

.btn {
    padding: 15px 30px;
    color: white;
    background-color: var(--main);
    font-family: "agency";
    font-size: 22px;
    transition: all 100ms linear;
    border: none;
}

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

.spinner {
    position: relative;
}

.spinner::before {
    box-sizing: border-box;
    content: "";
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 5px solid transparent;
    border-top-color: var(--second);
    animation: spinLoadMap 800ms linear infinite;
}

.spinner::after {
    box-sizing: border-box;
    content: "";
    position: absolute;
    top: calc(50% - 26px);
    left: calc(50% - 26px);
    width: 52px;
    height: 52px;
    border-radius: 100%;
    border: 8px solid transparent;
    border-top-color: var(--light);
    animation: spinLoadMap 800ms cubic-bezier(.27, .47, .54, .79) infinite 200ms;
    z-index: -1;
}

/***** nav bar *****/

.cont_navBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: white;
    padding: 0 80px 0 40px;
    box-sizing: border-box;
    z-index: 9;
    box-shadow: 1px 1px 8px var(--dark);
}

.cont_navBar>div {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cont_navBar ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 30vw;
}

.cont_navBar li a {
    font-family: "agency";
    font-size: 18px;
    padding: 5px 10px;
    border: 1px solid transparent;
    transition: all 100ms linear;
}

.cont_navBar img {
    height: 30px;
}

.cont_navBar .current {
    border-color: var(--main);
}

.cont_navBar .current:hover {
    border-color: var(--second);
}

.cont_navBar li a:hover {
    color: var(--second);
}

/***** footer *****/

footer {
    background: linear-gradient(0deg, #010926, var(--main));
    text-align: center;
    padding-top: 40px;
    padding-bottom: 20px;
    box-shadow: 1px 1px 8px var(--dark);
}

footer div>img {
    filter: brightness(0) invert(1);
}

footer img {
    width: 250px;
    margin-bottom: 15px;
}

footer ul {
    display: flex;
    align-content: center;
    justify-content: center;
}

footer nav {
    margin-bottom: 10px;
}

footer nav li {
    margin-right: 20px;
    margin-left: 20px;
    font-family: "agency";
    font-size: 20px;
}
    
footer nav li:not(:last-child)::after {
    content: "|";
    color: white;
    padding-left: 40px;
}

#footerLn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

#footerLn2 a {
    font-family: "Roboto";
}

footer ul img {
    width: 20px;
    margin-bottom: 0;
    margin-left: 15px;
}

footer a:hover {
    color: var(--second);
    transition: all 100ms linear;
}

footer a, footer p {
    color: white;
}

footer p {
    font-size: 14px;
    margin-top: 5px;
}

footer p:last-child {
    font-size: 12px;
}


/******************** index ********************/


/***** nav bar *****/

header#index {
    margin-top: 0;
}

#index .cont_navBar {
    transition: all 200ms linear;
}

.navBarTop .cont_navBar {
    background-color: transparent;
    box-shadow: none;
}

.navBarTop .cont_navBar li a {
    color: white;
}

.navBarTop .cont_navBar .current, .navBarTop .cont_navBar li a:hover {
    border-color: white;
}

/***** header *****/

#slider_indexHead {
    height: 100vh;
    padding: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#slider_indexHead ul {
    position: relative;
    background-color: var(--dark);
}

#slider_indexHead ul, #slider_indexHead li {
    width: 100%;
    height: 100vh;
}

#slider_indexHead li {
    display: flex;
    opacity: 0;
    align-items: center;
    justify-content: center;
    transition: opacity 1500ms linear;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#slider_indexHead li.slideshow {
    opacity: 1;
}

#slider_indexHead li:nth-child(1) {
    background-image: url(../img/pic_1.jpg);
}

#slider_indexHead li:nth-child(2) {
    background-image: url(../img/pic_2.jpg);
}


#slider_indexHead li:nth-child(3) {
    background-image: url(../img/pic_3.jpg);
}


#slider_indexHead li:nth-child(4) {
    background-image: url(../img/pic_4.jpg);
}


#slider_indexHead li:nth-child(5) {
    background-image: url(../img/pic_5.jpg);
}

#slider_indexHead h1 {
    font-size: 100px;
    color: white;
    font-family: "Montserrat";
    text-align: center;
    font-weight: 700;
    font-style: normal;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}

#slider_indexHead li p+h1 {
    margin-top: -10px;
}

#slider_indexHead li p:first-child {
    font-size: 40px;
    font-weight: 700;
}

#slider_indexHead p {
    color: white;
    font-size: 30px;
    text-align: center;
    font-family: "Montserrat";
    margin-top: -10px;
    font-weight: 400;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

#btn_scroll {
    position: absolute;
    top: 70%;
    left: calc(50% - 25px);
}

#btn_scroll>button {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: none;
    background-color: var(--main);
    background-image: url(../img/icon_arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 22px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 100ms linear;
}

#btn_scroll>button:hover {
    background-color: var(--second);
}

#btn_slider {
    position: absolute;
    bottom: 20px;
    left: calc(50% - 75px);
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#btn_slider>button {
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 2px solid white;
    background-color: transparent;
    position: relative;
    cursor: pointer;
}

#btn_slider>button::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: transparent;
    transition: all 150ms linear;
}

#btn_slider>button.checked::after, #btn_slider>button:hover::after {
    background-color: white;
}

/***** bio *****/

#sec_indexBio .txt_keywords {
    margin-bottom: 15px;
}

#sec_indexBio p {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

#sec_indexBio>div:last-child {
    margin-top: 50px;
    text-align: center;
}

/***** step *****/

#sec_indexStep {
    background-color: var(--light);
}

#sec_indexStep>div {
    display: flex;
    align-content: center;
    justify-content: space-around;
}

.cont_step {
    width: 300px;
    text-align: center;
}

.cont_stepPic {
    box-sizing: border-box;
    margin: 0 auto;
    width: 250px;
    height: 250px;
    border-radius: 100%;
    border: 6px solid var(--main);
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 10px;
    transition: all 100ms linear;
}

.cont_step:first-child .cont_stepPic{
    background-image: url(../img/pic_idea.jpg);
}

.cont_step:nth-child(2) .cont_stepPic{
    background-image: url(../img/pic_talk.jpg);
}

.cont_step:nth-child(3) .cont_stepPic{
    background-image: url(../img/pic_work.jpg);
}

.cont_step:nth-child(4) .cont_stepPic{
    background-image: url(../img/pic_win.jpg);
}




@keyframes stepViewerBorder {
    0% {
        border-color: var(--main);
    }
    20% {
        border-color: var(--second);
    }
    80% {
        border-color: var(--second);
    }
    100% {
        border-color: var(--main)
    }
}

@keyframes stepViewerP {
    0% {
        color: var(--main);
    }
    20% {
        color: var(--second);
    }
    80% {
        color: var(--second);
    }
    100% {
        color: var(--main)
    }
}

.stepsInView:nth-child(1) .cont_stepPic {
    animation: stepViewerBorder 1 1500ms linear;
}

.stepsInView:nth-child(2) .cont_stepPic {
    animation: stepViewerBorder 1 1500ms linear 1500ms;
}

.stepsInView:nth-child(3) .cont_stepPic {
    animation: stepViewerBorder 1 1500ms linear 3s;
}

.stepsInView:nth-child(4) .cont_stepPic {
    animation: stepViewerBorder 1 1500ms linear 4500ms;
}

.stepsInView:nth-child(1) .cont_stepPic p {
    animation: stepViewerP 1 1500ms linear;
}

.stepsInView:nth-child(2) .cont_stepPic p {
    animation: stepViewerP 1 1500ms linear 1500ms;
}

.stepsInView:nth-child(3) .cont_stepPic p {
    animation: stepViewerP 1 1500ms linear 3s;
}

.stepsInView:nth-child(4) .cont_stepPic p {
    animation: stepViewerP 1 1500ms linear 4500ms;
}

.cont_stepPic p {
    font-family: "agency";
    font-size: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--main);
    transition: all 100ms linear;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.cont_step h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

/***** ref *****/

#sec_indexRef>div:first-child {
    margin-bottom: 20px;
}

#sec_indexRef>div:last-child {
    text-align: center;
}

#sec_indexRef p {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

#slider_indexRef {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
    width: 100%;
}

#cont_refSlides {
    width: calc(100% - 300px);
    margin: 0 auto;
    position: relative;
    height: 200px;
}   

#cont_refSlides>li {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 300ms ease-out;
    visibility: hidden;
}

#cont_refSlides>li:nth-child(2) {
    opacity: 1;
    transform: translateX(0px);
    transition: opacity 200ms ease-in 300ms;
    z-index: 2;
    visibility: visible;
}

#slider_indexRef img {
    width: 200px;
    filter: grayscale(1);
    transition: all 200ms linear;
}

#slider_indexRef>ul:hover img {
    filter: grayscale(0);
}

#cont_indexInfo {
    margin-left: 40px;
}

#cont_indexInfo p, #cont_indexInfo h3 {
    text-align: left;
}

#cont_indexInfo h3 {
    font-size: 28px;
}

#cont_indexInfo h3+p {
    font-size: 28px;
    font-family: "agency";
}

#cont_indexInfo h3+p::before {
    content: "chez ";
}

#cont_indexInfo h3+p+p {
    font-family: "agency";
    font-size: 16px;
}

#cont_indexTestimony {
    width: 40%;
    color: var(--dark);
    margin-left: 60px;
}

#cont_indexTestimony blockquote {
    position: relative;
    font-size: 16px;
    font-family: "Roboto";
    margin-bottom: 5px;
}

#cont_indexTestimony blockquote::before {
    content: "";
    position: absolute;
    top: 0;
    left: -45px;
    width: 30px;
    height: 30px;
    background-image: url(../img/icon_quote.png);
    background-size: contain;
    background-repeat: no-repeat;
}

#cont_indexTestimony blockquote+p {
    text-align: right;
    margin-right: 20px;
    font-family: "agency";
    font-size: 16px;
}

#sec_indexRef button {
    height: 40px;
    width: 40px;
    border: none;
    background-color: transparent;
    filter: invert(0.7);
    background-image: url(../img/icon_arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: calc(50% - 20px);
    cursor: pointer;
    transition: all 150ms ease-out;
}

#sec_indexRef .btnLeft:hover {
    transform: rotate(90deg) scale(1.3);
}

#sec_indexRef .btnRight:hover {
    transform: rotate(-90deg) scale(1.3);
}

#sec_indexRef .btnLeft {
    transform: rotate(90deg);
    left: 40px;
}

#sec_indexRef .btnRight {
    transform: rotate(-90deg);
    right: 40px;
}

/******************** about ********************/

/***** bio *****/

#sec_aboutBio {
    box-sizing: border-box;
    min-height: calc(100vh - 50px);
    display: flex;
    align-items: center;
    justify-content: center;
}

#sec_aboutBio>div>div:first-child {
    width: 250px;
    height: 250px;
    border-radius: 100%;
    overflow: hidden;
    border: 12px solid var(--main);
    margin: 0 auto 20px auto;
    animation: aboutBioColorer 2500ms alternate infinite;
}

@keyframes aboutBioColorer {
    from {
        border-color: var(--main);
    }
    to {
        border-color: var(--second);    
    }
}

#bioImg img {
    width: 100%;
    height: 100%;
}

#sec_aboutBio h1 {
    font-size: 54px;
    margin-bottom: 30px;
}

#sec_aboutBio p {
    max-width: 1000px;
    text-align: center;
    margin-bottom: 40px;
}

#sec_aboutBio>div>div:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

#sec_aboutBio>div>div:last-child img {
    height: 60px;
    margin: 0 20px;
    border-radius: 100%;
    transition: all 200ms ease-out;
}

#sec_aboutBio>div>div:last-child img:hover {
    transform: scale(0.85);
}


/***** skills *****/

#sec_skills {
    background-color: var(--light);
}

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

#cont_skills>div {
    width: 250px;
    text-align: center;
    margin: 20px;
}

#cont_skills>div>div {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 20px;
}

#sec_skills img {
    width: 90px;
    max-height: 100%;
}

#cont_skills h3 {
    font-size: 30px;
    margin-bottom: 5px;
}

#cont_skills .txt_keywords {
    margin-bottom: 10px;
}

/***** experience *****/

#sec_exp h2 {
    margin-bottom: 10px;
}

#cont_exp {
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#cont_exp>div {
    width: 250px;
    margin: 50px 25px 0 25px;
    cursor: pointer;
}

#cont_exp>div>div:first-child {
    width: 250px;
    height: 250px;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
    transition: all 200ms ease-out;
    background-image: url(../img/pic_5.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

#cont_exp>div>div:first-child::after,
#cont_exp>div>div:first-child::before {
    box-sizing: border-box;
    content: "";
    position: absolute;
    background-color: var(--second);
    border: 2px solid var(--second);
    z-index: 2;
    visibility: hidden;
    top: 50%;
    left: 80px;
    width: 90px;
    height: 0px;
    transform: rotate(45deg);
}

#cont_exp>div:not(.openExp):hover>div:first-child::before {
    transform: rotate(0deg);
}

#cont_exp>div:not(.openExp):hover>div:first-child::after {
    transform: rotate(90deg);
}

#cont_exp>div:hover>div:first-child::after,
#cont_exp>div:hover>div:first-child::before,
#cont_exp>.openExp>div:first-child::after,
#cont_exp>.openExp>div:first-child::before {
    visibility: visible;
    transition: all 150ms ease-out 100ms;
}
/*
#cont_exp>div:hover>div:first-child img,
#cont_exp>.openExp>div:first-child img {
    filter: brightness(0.55);
}

#cont_exp>div>div:first-child img {
    height: 250px;
    transition: all 150ms linear;
}*/

#cont_exp>div:hover>div:nth-child(2) h3,
#cont_exp>div:hover>div:nth-child(2) p,
#cont_exp>.openExp>div:nth-child(2) h3,
#cont_exp>.openExp>div:nth-child(2) p{
    color: var(--second);
}

#cont_exp h3, #cont_exp p {
    text-align: center;
    transition: all 150ms linear;
}

#cont_exp h3 {
    font-size: 26px;
}

#cont_exp p {
    font-family: "agency";
    font-size: 22px;
}

#cont_exp p:last-child {
    font-size: 18px;
}

/***** exp info *****/

#cont_exp>div {
    position: relative;
}

#cont_exp .infoExp {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#cont_exp .infoExp p {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0;
    font-size: 17px;
    color: white;
    overflow: hidden;
}

#cont_exp>.openExp .infoExp p {
    transition: height 300ms linear 550ms;
    z-index: 3;
    height: 100%;
}

#cont_exp>.openExp>div:first-child::before,
#cont_exp>.openExp>div:first-child::after {
    transition: transform 200ms linear, width 250ms linear 300ms, left 250ms linear 300ms, height 300ms linear 550ms, top 300ms linear 550ms, top 300ms linear 550ms !important;
    transform: rotate(0deg);
    width: calc(100% + 4px);
    left: -2px;
    right: -2px;
    background-color: rgba(221, 88, 39, 0.3);
    top: -2px;
    height: calc(100% + 4px);
    bottom: -2px;
}

/***** interest *****/

#sec_interest {
    background-image: url(../img/pic_5.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}

#sec_interest h2 {
    color: white;
}

#sec_interest div.list {
    margin-top: 50px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 150px;
    font-size: 40px;
    font-family: "agency";
}

/***** links *****/

#sec_links {
    
}

#cont_links {
    padding: 0 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#cont_links>div {
    padding: 0 20px;
}

#sec_links h3 {
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 20px;
}

#sec_links p,
#sec_links a {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 5px;
}

#sec_links a {
    text-decoration: underline;
}

#sec_links a:hover {
    color: var(--second);
}


/******************** services ********************/

#services>section:first-child {
    padding: 60px 0;
    background: url(../img/pic_1.jpg) no-repeat fixed;
    background-position: center center;
    background-size: cover;
}

#services h1 {
    font-size: 54px;
    color: white;
}

/***** domaines *****/

#sec_services {
    display: flex;
    margin: 40px 0;
    padding: 0;
}

#sec_services>div {
    box-sizing: border-box;
    width: 50%;
}

#cont_dom {
    position: relative;
}

#cont_dom::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 60%;
    top: 20%;
    right: -1px;
    background-color: var(--light);
    z-index: -1;
}

#services #cont_dom {
    display: flex;
    flex-wrap: wrap;
}

#cont_dom>div {
    text-align: center;
    box-sizing: border-box;
    padding: 60px;
    width: 50%;
    transition: all 150ms linear;
    overflow: hidden;
}

#cont_dom>div:hover {
    background-color: var(--main);
    color: white;
    box-shadow: inset 0 0 0 70px var(--main);
}

#cont_dom>div>div:first-child {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

#cont_dom img {
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 10px;
}

#cont_dom>div:hover img {
    filter: brightness(0) invert(1);
    opacity: 0.2;   
}

#cont_dom>div>div:nth-child(2) {
    position: relative;
}

#cont_dom h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

#cont_dom>div p {
    font-size: 15px;
}

#cont_dom>div .txt_out {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    opacity: 0;
}

#cont_dom>div:hover h2,
#cont_dom>div:hover p {
    color: white;
}

#cont_dom>div:hover h2 {
    margin-top: -120px;
    transition: all 300ms ease-out;
}

#cont_dom>div:hover .txt_out {
    opacity: 1;
}

#cont_dom h2::after {
    content: none;
}

#cont_dom>div:first-child, 
#cont_dom>div:last-child {
    position: relative;
}

#cont_dom>div:first-child::before,
#cont_dom>div:last-child::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 60%;
    top: 20%;
    background-color: var(--light);
    z-index: -1;
}

#cont_dom>div:first-child::before {
    right: 0;
}

#cont_dom>div:last-child::before {
    left: 0;
}

#cont_dom>div:first-child::after,
#cont_dom>div:last-child::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    left: 20%;
    background-color: var(--light);
    z-index: -1;
}

#cont_dom>div:first-child::after {
    bottom: 0;
}

#cont_dom>div:last-child::after {
    top: 0;
}

/***** modalités *****/

#cont_mod {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cont_mod>div {
    box-sizing: border-box;
    padding: 50px;
    border: 2px solid var(--main);
    max-width: 450px;
}

#cont_mod h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

#cont_serv>div {
    height: 40px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#cont_serv img {
    max-width: 25px;
    max-height: 30px;
    margin-right: 10px;
}

#cont_serv~div:last-child {
    text-align: center;
    margin-top: 30px;
}

#cont_serv~div:last-child a {
    box-sizing: border-box;
    font-size: 35px;
    display: block;
    width: 100%;
}

#cont_infoServ p {
    font-size: 14px;
    text-align: justify;
    border: 1px solid var(--dark);
    padding: 5px 10px;
}




/******************** contact ********************/

#sec_contactHead {
    padding: 50px 0;
}

#sec_contactHead h1 {
    font-size: 54px;
    margin-bottom: 30px;
}

#sec_contactHead p {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/***** map *****/

#sec_map {
    padding: 0;
}

@keyframes spinLoadMap {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#map {
    height: 200px;
    background-color: var(--light);
    z-index: 2;
}

/***** form *****/

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

#sec_form>div {
    margin: 0 40px;
}

#cont_contactInfo {
    box-sizing: border-box;
    max-width: 600px;
    padding: 50px;
    border: 2px solid var(--main);
}

#cont_contactInfo h2 {
    font-size: 28px;
    text-align: left;
}

#cont_contactInfo h2::after {
    content: none;
}

#cont_contactInfo>div>div {
    display: flex;
}

#cont_contactInfo>div>div:not(:last-child) {
    margin-bottom: 15px;
}

#cont_contactInfo>div>div:first-child {
    margin-bottom: 30px;
}

#cont_contactInfo div:first-child>img {
    height: auto;
    width: 80%;
    margin: auto;
}    

#cont_contactInfo img {
    height: 20px;
    margin-right: 10px;
}

#cont_contactInfo p {
    font-size: 18px;
}

#copyMail {
    width: 100%;
    font-family: "Roboto";
    font-size: 15px;
    margin-top: 10px;
    color: var(--dark);
}

#copyMail :checked+label {
    color: var(--second);
}

#sec_form #copyMail input {
    width: 20px;
}

#sec_form form {
    max-width: 500px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}

#sec_form form>input {
    margin-bottom: 20px;
}

#sec_form form input:not([type=submit]),
#sec_form form textarea {
    box-sizing: border-box;
    padding: 10px;
    border: none;
    background-color: var(--light);
    color: var(--dark);
    font-size: 16px;
    font-family: "Roboto";
}

#sec_form form input:first-child,
#sec_form form input[type=email] {
    width: calc(50% - 10px);
}

#sec_form form input:nth-child(3) {
    width: 100%;
}

#sec_form form textarea {
    width: 100%;
    min-height: 150px;
}

#sec_form form p {
    width: 100%;
    text-align: justify;
    font-size: 12px;
    margin-top: 5px;
}

#sec_form .btn {
    margin: 0 auto;
    margin-top: 20px;
    cursor: pointer;
}

#sec_form form input:not([type=submit]),
#sec_form form textarea {
    border-bottom: 2px solid transparent;
    transition: all 100ms linear;
}

#sec_form form input:not([type=submit]):focus,
#sec_form form textarea:focus {
    border-bottom-color: var(--second);
}



/******************** mentions légales ********************/

#mentLeg>section:first-child {
    box-sizing: border-box;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/pic_1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    padding: 0;
}

#mentLeg>section:last-child {
    box-sizing: border-box;
    width: 1000px;
    padding: 100px 80px;
    box-shadow: 1px 1px 8px var(--dark);
    margin: 40px auto 80px auto;
}

#mentLeg h1 {
    font-size: 54px;
    color: white;
}

#mentLeg section:last-child>div:not(:last-child) {
    margin-bottom: 50px;
}

#mentLeg p {
    text-align: justify
}

#mentLeg h2 {
    text-align: left;
    margin-bottom: 30px;
}

#mentLeg h2::after {
    left: 0;
}

/***** Notif *****/

.notif {
    position: fixed;
    bottom: 20px;
    left: calc(50% - 150px);
    width: 300px;
    background-color: var(--second);
    padding: 20px;
    text-align: center;
    color: white;
    font-family: "Roboto";
    font-size: 16px;
    z-index: 3;
    transition: all 200ms ease-out;
    opacity: 1;
    cursor: pointer;
}

.notif.off {
    transform: translateY(100%);
    opacity: 0;
}


