/*--------------------------------------------------- Initialization Parameters  START---------------------------------------------------*/
* {
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    border: none;
}

@font-face {
  font-family: 'Play_Regular';
  src: url('Fonts/Play-Regular.eot'); /* IE9 Compat Modes */
  src: url('Fonts/Play-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 
       url('Fonts/Play-Regular.woff2') format('woff2'), /* Super Modern Browsers 
       url('Fonts/Play-Regular.woff') format('woff'), /* Pretty Modern Browsers */
       url('Fonts/Play-Regular.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('Fonts/Play-Regular.svg#svgFontName') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Play_Bold';
  src: url('Fonts/Play-Bold.eot'); /* IE9 Compat Modes */
  src: url('Fonts/Play-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
      /* url('Fonts/Play-Bold.woff2') format('woff2'), /* Super Modern Browsers */
       url('Fonts/Play-Bold.woff') format('woff'), /* Pretty Modern Browsers */
       url('Fonts/Play-Bold.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('Fonts/Play-Bold.svg#svgFontName') format('svg'); /* Legacy iOS */
}


html {
/*    font-size: 62.5%;*/
    font-size: 100%;
}

body {
    overflow: hidden;
    background: linear-gradient(0deg, rgba(40, 60, 80, 1) 0%, rgba(40, 60, 80, 1) 500%);
    font-family: "Play_Regular";
}

canvas {
    z-index: -10;
    height: 100%;
    position: fixed;
}

@media screen and (max-width: 1720px) {
    html {
        font-size: 90%;
    }
}

@media screen and (max-width: 1520px) {
    html {
        font-size: 80%;
    }
}

@media screen and (max-width: 1366px) {
    html {
        font-size: 70%;
    }
}

.error {
    margin-top: -1.5rem;
    color: red;
    font-size: 0.9em;
    margin-bottom: 1rem;
}
.succes {
    margin-top: 1rem;
}
/*--------------------------------------------------- Initialization Parameters  END --------------------------------------------------*/
/*--------------------------------------------------- Navigation Bar START--------------------------------------------------------*/
#navbar {
    z-index: 10;
    position: fixed;
    height: 4.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: rgba(22, 22, 22, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.navigation_button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2% 0 2%;
    cursor: pointer;
    font-family: "Play_Bold";
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    background-image: linear-gradient(#007DB8, #007DB8);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0% 100%;
    transition: background 0.8s ease;
}

.navigation_button::before {
    content: attr(data);
    position: absolute;
    color: transparent;
    background-clip: text;
    background-image: linear-gradient(rgba(255, 255, 255, 1.0), rgba(255, 255, 255, 1.0));
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: center;
    transition: background 1s ease;
}

.navigation_button:hover:before {
    background-size: 100% 100%;
}

.navigation_button:hover {
    background-size: 100% 100%;
}

.active_navigation::before {
    background-size: 0% 100%;
}

.active_navigation {
    background-color: #007DB8;
    color: white;
}

#contact_infos {
    position: absolute;
    top: 33%;
    left: 1rem;
    display: flex;
    gap: 1.2rem;
}


#contact_infos li {
    list-style: none;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

#contact_infos li::before {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    width: 1.6rem;
    height: 1.6rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#contact_infos li:nth-child(1)::before {
    background-image: url("Images/PhoneLogo.svg");
    opacity: 0.8;
}

#contact_infos li:nth-child(2)::before {
    background-image: url("Images/MailLogo.svg");
    opacity: 0.8;
}

/*--------------------------------------------------- Navigation Bar END --------------------------------------------------------*/
/*--------------------------------------------------- Landing Section START --------------------------------------------------------*/
#landing_section {
    box-sizing: border-box;
    height: 100vh;
    display: grid;
    grid-template-rows: min-content min-content min-content 1fr 1fr;
    padding-top: 6rem;
    grid-row-gap: 2.5rem;
    justify-content: center;
}

#landing_section_logo {
    margin: auto;
    max-width: 14rem;
}

.title {
    text-align: center;
    font-size: 2.4rem;
    color: #01C1FF;
}

#landing_section > h2 {
    text-align: center;
    color: white;
    font-size: 1.6rem;
}

#landing_section > p {
    color: white;
    font-size: 1.1rem;
    line-height: 3rem;
    text-align: center;
    align-self: center;
}

#landing_buttons {
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-self: center;
}

#landing_buttons > button {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1rem;
    white-space: nowrap;
    padding: 1rem;
    min-width: 20rem;
}

#landing_buttons > button:hover {
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.3);
}
/*--------------------------------------------------- Landing Section END --------------------------------------------------------*/
/*--------------------------------------------------- Services Section START --------------------------------------------------------*/
#services_section {
    box-sizing: border-box;
    height: 100vh;
    display: grid;
    grid-template-areas:
        "vignette vignette"
        "infos illustration";
    grid-template-rows: 1fr 2fr;
    grid-template-columns: 1fr 1fr;
    padding: 6rem 4rem 2rem 4rem;

}
#vignettes {
    grid-area: vignette;
    display: flex;
    gap: 2rem;
}

.vignette {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 1rem;
    grid-row-gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    background-image: linear-gradient(rgba(0, 125, 184, 0.5), rgba(0, 125, 184, 0.5));
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0 0;
    transition: all 0.5s ease;
}

.vignette > img {
    pointer-events: none;
}

.vignette > h2 {
    color: #01C1FF;
    font-size: 1.6rem;
    pointer-events: none;
}

.vignette > p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6rem;
    pointer-events: none;
}

.vignette:hover {
    cursor: pointer;
    background-size: 100% 100%;
    border: 1px solid #01C1FF;
}

.active_vignette {
    background-color: rgba(38, 121, 217, 0.69);
    background-size: 100% 100%;
    border: 1px solid #01C1FF;
}

.service_liste {
    grid-area: infos;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.service_liste > li {
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
    list-style: none;
    color: white;
    font-size: 1.1rem;
}

.service_liste > li::before {
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: white;
    margin-right: 1rem;
}

.active_liste {
    display: flex;
    animation: fadeIn 1s ease;
}

.service_illustration {
    display: none;
    grid-area: illustration;
    margin: auto;
    max-width: 32rem;
    animation: fadeIn 1s ease;
}

.active_illustration {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/*--------------------------------------------------- Services Section END --------------------------------------------------------*/
/*--------------------------------------------------- Workflow Section START --------------------------------------------------------*/
#workflow_section {
    box-sizing: border-box;
    height: 100vh;
    display: grid;
    grid-template-rows: min-content min-content min-content 1fr;
    grid-template-columns: 1fr;
    padding: 6rem 4rem 2rem 4rem;
}

.workflow_element {
    border-bottom: 1px solid white;
    padding-bottom: 1rem;
    padding-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-column-gap: 2rem;
    justify-content: space-around;
    align-items: center;
    justify-self: center;
    width: 80%;
}

.workflow_icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.workflow_icon > h2 {
    text-align: center;
    color: white;
    font-size: 1.5rem;
}

.workflow_element > ul > li {
    color: white;
    font-size: 1.1rem;
    list-style: inside;
    line-height: 1.6rem;
}

.location {
    position: relative;
    align-self: end;
    height: 90%;
    display: flex;
    justify-content: center;
}

.location > h2 {
    z-index: 1;
    position: absolute;
    pointer-events: none;
    top: 0.5rem;
    left: 45%;
    color: black;
    font-size: 1.5rem;
}

#map {
    z-index: 0;
    height: 100%;
    width: 60%;
}

/*--------------------------------------------------- Workflow Section END --------------------------------------------------------*/
/*--------------------------------------------------- Prices Section START --------------------------------------------------------*/
#prices_section {
    height: 100vh;
    display: grid;
    grid-template-rows: repeat(4, min-content);
    justify-content: center;
    grid-row-gap: 10%;
    padding: 6rem 4rem 2rem 4rem;
}

.prices_element {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.prices_element > h2 {
    color: white;
    font-size: 1.5rem;
    text-align: center;
}


.prices_element > ul {
    list-style: inside;
    width: 980px;
}

.prices_element > ul > li {
    color: white;
    font-size: 1.1rem;
    line-height: 2rem;
}

#prices_buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

#prices_buttons > button {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    white-space: nowrap;
    padding: 1rem;
    min-width: 20rem;
}

#prices_buttons > button:hover {
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.3);
}

/*--------------------------------------------------- Prices Section END --------------------------------------------------------*/
/*--------------------------------------------------- Contact Section START --------------------------------------------------------*/
#contact_section {
    box-sizing: border-box;
    height: 100vh;
    display: grid;
    grid-template-areas:
        "schedule splitbar contact"
        "mentions splitbar contact"
        "cgv splitbar contact";
    grid-template-columns: 1fr 1px 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    padding: 6rem 4rem 2rem 4rem;
    grid-column-gap: 4rem;  
    grid-row-gap: 4rem;   
}

#schedule {
    grid-area: schedule;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: whitesmoke;
    align-items: center;
    align-self: center;
}

#working_time {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

#schedule > h2 {
    text-align: center;
    font-size: 1.5rem;
}

#working_time > ul > li {
    list-style: none;
    font-size: 1.1rem;
    line-height: 2rem;
}


#cgv {
    grid-area: cgv;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items:  center;
}

#cgv > h2 {
    font-size: 1.5rem;
    color: white;
    text-align: center;
}

#cgv > p {
    text-align: center;
    font-size: 1rem;
    color: white;
    line-height: 1.6rem;
}

#cgv_button {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    white-space: nowrap;
    padding: 1rem;
}

#cgv_button:hover {
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.3);
}

#legal_mentions {
    grid-area: mentions;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#legal_mentions > h2 {
    font-size: 1.5rem;
    color: white;
    text-align: center;
}

#legal_mentions > p {
    font-size: 1rem;
    color: white;
    text-align: center;
    line-height: 1.6rem;
}

.split_bar {
    grid-area: splitbar;
    width: 100%;
    background-color: white;
}


#contact > h2 {
    grid-area: subtitle;
    font-size: 1.5rem;
    color: white;
    text-align: center;
}

label {
    font-size: 1rem;
}


#contact_form {
    width: 100%;
}

#contact {
    grid-area: contact;
    display: flex;
    flex-direction: column;
    color: whitesmoke;
    gap: 2rem;
}

input[type=text],
select,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-sizing: border-box;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    resize: vertical;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    font-size: 1rem;
}

input[type=submit] {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    white-space: nowrap;
    padding: 1rem;
    cursor: pointer;
    min-width: 15rem;
}

input[type=submit]:hover {
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.3);
}

/*--------------------------------------------------- Contact Section END --------------------------------------------------------*/

