/*
 *   Copyright (c) 2021 
 *   All rights reserved.
 */

 @font-face {
    font-family: "Poppins";
    src: url("/fonts/Poppins-Light.ttf") format("TrueType");
  }

  @font-face {
    font-family: "FjallaOne-Regular";
    src: url("/fonts/FjallaOne-Regular.ttf") format("TrueType");
  }

*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}

nav, ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: #1c1c1e;
}

a:hover {
    color: #f1f1f1;
}

hr {
    width: 200px;
    height: 2px;
    background-color: #f1f1f1;
    border: 0;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f1f1f1;
}

section h1 {
    font: bold 27px 'Open Sans', sans-serif;
    margin: 90px 0 20px 0;
    text-align: center;
}

section p {
    width: 800px;
    max-width: 100%;
    text-align: left;
    margin-bottom: 25px;
 
    font: 16px "Poppins", sans-serif;
    letter-spacing: 1px;
}

/* --------------- Header ----------- */

header {
    position: fixed;
    width: 100%;
    height: 75px;
    z-index: 10;
}

.bandeau {
    width: 100%;
    height:32px;
    background-color: #ad8355;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0px 50px;
}

.bandeau-txt {
    width: 100%;
    color: white;
    letter-spacing: 1px;
    font: bold 16px 'Poppins';
}

.header {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:#201E20;
    padding: 7px 150px;
    transition: all 0.3s ease-out;
    z-index: 10;
}

.header .logo a span {
    position: absolute;
    top:35px;
    font-size: 24px;
    color: #f1f1f1;
    padding-left:10px
}

.header .logo a img {
    width: 5.5em;
    height: auto;
    transition-duration: 1s;
}

.header .logo a img:hover {
    transform: rotateY(360deg);
}

.container{
    position: relative;
}

.header nav {
    display: flex;
}

.header nav ul {
    display: flex;
    align-items: center;
}

.header nav li {
    padding: 13px 14px;
    font-size: 19px;
}

.nav-links{
    flex: 2;
}

.nav-link > a{
    line-height: 2rem;
    color: #F1F1F1;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.nav-link > a > i{
    margin-left: .1rem;
}

.nav-link:hover > a{
    transform: scale(1.1);
}

.hamburger-menu-container{
    flex: 1;
    display: none;
    justify-content: flex-end;
    align-items: center;
}

.hamburger-menu{
    display: flex;
    width: 2.5rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.hamburger-menu div{
    position: relative;
    width: 1.5rem;
    height: 2px;
    border-radius: 5px;
    background-color: #f1f1f1;  
    z-index: 11;
    box-shadow: 0 2px 5px rgba(255,101,47,.2);
    transition: all .5s ease-in-out;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #f1f1f1;
    transition: .5s;
    box-shadow: 0 2px 5px rgba(255,101,47,.2);
    transition: all .5s ease-in-out;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check, #labcheck {
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    width: 3rem;
    height: 2.7rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}

@keyframes animation{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

.header nav .bigscreen-lang {
    background-color: #f1f1f1;
    border-radius: 5px 15px;
    margin-left: 40px;
    margin-top: 4px;
    padding: 3px 10px 6px 10px;
    color: #1c1c1e;
    font-family:'Average', serif;
    font-weight: 600;
    font-size: 17px;
}

.header nav .bigscreen-lang a {
    margin:0 8px;
    border-bottom: 2px solid;
    text-align: right;
    font-family:'Average', serif;
    font-weight: 600;
    color: #1c1c1e;
}

button {
    border: none;
}

/* ------------------------ CONTACT -------------------------- */

.contact-vg {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: bottom/cover url(../img/contact-bgd.jpg);
}

.txt-h1 {padding: 0 20px;}

.telmob {color: #1c1c1e;}

.telmob:hover {color:blue;}

h3 {font-weight: normal;}

.content-bg {
    max-width: 100%;
    padding: 10px 20px 30px 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#container_contact {
    width: 1200px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 20px 20px;
}

.contactForm {
    width: 600px;
    max-width: 100%;
    padding: 20px 35px;
    background:#f1f1f1;
    opacity: 0.8;
    margin-left: 0px;
    margin-right: 50px;
    color: black;
    border-radius: 20px;
}

.contactForm h2 {
    font-size: 25px;
    color: black;
    font-weight: 500;
}

.contactForm .inputBox {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
}

.contactForm .inputBox input,
.contactForm .inputBox textarea {
    width: 100%;
    padding: 2px 0;
    font-size: 16px;
    margin: 6px 0;
    border: none;
    border-bottom: 2px solid black;
    outline: none;
    resize: none;
    background-color: #f1f1f1;
    caret-color: black;
    color: black;
}

.contactForm .inputBox span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: black;
}

.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span {
    color: black;
    font-size: 14px;
    transform: translateY(-20px);
}

.contactForm .inputBox label {
    font-size: 15px;
}

#inputenvoyez {
    width: 130px;
    background: #0E2D2E;
    color: #f1f1f1;
    border: none;
    cursor: pointer;
    padding: 9px 10px;
    font-size: 18px;
    border-radius: 10px;
    margin-top: 10px;
} 

.contactInfo {
    width: 450px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin:30px 0;
}

.contactInfo .box {
    position: relative;
    display: flex;
    padding-bottom: 10px;
}

.contactInfo .box .icon {
    width: 45px;
    height: 45px;
    background:#f1f1f1;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 21px;
}

.contactInfo .box .text {
    display: flex;
    flex-direction: column;
    color: #f1f1f1 !important;
    font-weight: 400;
}

.contactInfo .box .text h3 {
    font-weight: 500;
    padding: 5px 0 0 15px;
    font-size: 18px;
}

.contactInfo .box .text p {
  width: 300px;
}

.contactInfo .box .text p a {
    font-size: 16px;
    color: #f1f1f1;
}

.contactForm .inputBox select {
    width: 100%;
    padding: 4px 0;
    font-size: 16px;
    margin: 10px 0 6px 0;
    display: flex;
    outline: none;
    resize: none;
    border: none;
    border-bottom: 2px solid black;
    background-color: #f1f1f1;
    caret-color: black;
    color: black;
    cursor: pointer;
}

.inputBoxhd ,#fooBarBaz{display: none;}

.titre-rgpd {
    width: 100%;
    display: flex;
    justify-content: left;
    font-size: 15px;
    font-weight: 600;
    padding-top: 15px;
    margin-bottom:10px;
}

.inputcheckBox {
    width:100%;
    display: flex;
    justify-content: left;
}

#rgpd {
    width: 20px;
    display: flex;
    justify-content: left;
    margin-left:0px;
    align-items: flex-start;
    margin-top:-30px;
}

.rgpd1 {
    font-size: 14px;
    padding:0 15px 0 10px;
    text-align: left;
    margin-bottom:10px;
}

.rgpd2 {
    font-size: 14px;
    text-align: left;
    padding:0 20px 0 25px;
    font-style: italic;
}

.carte {
    color:#e0a96d !important;
    transition: all 0.5s ease;
}

.carte:hover {
    transform:scale(1.03);
}

/* ------------- FOOTER ------------ */

footer {
    flex-shrink: 0;
    width:100%;
    background-color: #201E20;
    color: #e0a96d;  
    padding:50px 0;
}


.container-footer {
    width: 100%;
    display : flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
    padding: 10px 0px 20px 0px;
}

.bloc {
    width:290px;
    margin: 20px 20px;
}

.titre-liste {
    font-size: 18px;
    padding-bottom: 15px;
    font-weight: 500;
}

.horaires {
    list-style-type: none;
}

.bloc p {
    text-align: justify;  
    letter-spacing: 1.9;
}

.ban-reseaux {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;  
}

.ban-reseaux a {
    padding: 0 10px;
}

.social-footer {
    width: 35px;
    transition: all 0.4s ease-in;
}

.social-footer:hover {
    transform: scale(1.2);
}

.copy {
    text-align: center;
    padding-bottom: 7px;
    font-size: 15px;
    color: #e0a96d;
}

.copy a{
    color: #ddc3a5;
    transition: all 0.4s ease-in;
}

.copy a:hover{
    color: #F1F1F1;
    transform: scale(1);
}

.maj {
    text-align: center;
    padding-bottom:7px;
    font-size: 15px;
}

.maj a {
    color: #e0a96d;
}

.maj a:hover {
    color:aqua
}

.txt-foot {
    padding-right: 70px;
}

/* ----------------------------- MEDIA QUERIES ------------------------- */

@media (max-width: 1200px){

    .header {
        padding: 7px 30px;
    } 

    .contact-vg {
        background-color: #1c1c1e !important;
        background: no-repeat bottom/100% url(../img/contact-bgd.jpg);
    }
}

@media all and (max-width:950px) {

    .bandeau {
        height:20px;
    }

    .logo span {
        display: none;
    }  

    header {opacity:1;}

    .header .logo a img {
        width: 4em;
    }

    .header {
        display: flex;
        justify-content: space-between;
        background-color: #1c1c1e;
        padding: 7px 18px;
    }

    .header .bigscreen, header .bigscreen-lang {
        display: none;
    }

    header .nav-link {
        font-size: 16px;
        display: flex;
    } 

    .hamburger-menu-container{
        display: flex;
        color: white !important;
    }

    #check{
        display: block;
    }

    .nav-btn{
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow-y: hidden;
        overflow-x: hidden;
        transform: translateX(100%);
        background-color: #1c1c1e;
    }
    
    .nav-links ul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-width: 100%;
        margin-top: 110px;
    }

    .nav-links ul > nav{
        flex-direction: column;
    }

    #check:checked ~ .nav-btn{
        transform: translateX(0);
    }

    #check:checked ~ .nav-btn .nav-link,
    #check:checked ~ .nav-btn {
        animation: animation .5s ease forwards var(--i);
    }

    .nav-link{
        width: 420%;
        opacity: 0;
        background-color: #1c1c1e;
        display: flex;
        justify-content: center;
    }

    .nav-link > a{
        width: 100%;
        line-height: 1;
        padding: 0.5rem 1rem;
        font-size: 1.2rem;
        color: #ffffff;
    }

    .nav-link:hover > a{
        width: 100%;
        transform: scale(1);
    }
    
    .container-footer {
        padding: 50px 15px 60px 15px;
        font-size: 14px;
    }    

    .titre-liste {
        font-size: 16px;
    }

    .container-footer {
        padding: 10px 10px 10px 10px;
    }

    .footer-reseaux .fab {
        font-size:30px;
        padding-bottom: 7px;
    }

    .copy, .maj {
        font-size: 14px;
        padding: 0 38px 7px 38px;  
    }
}

@media all and (max-width:480px) { 

    .header {padding: 7px 15px;}

    .content-bg {
        max-width: 100%;
        padding: 10px 20px 30px 20px;
    }
    
    #container_contact {
        margin: 20px 5px;
    }
    
    .contactForm {
        padding: 20px 15px;
        margin-right: 0px;
    }

    .contactForm h2 {
        font-size: 22px;
    }

    .contactInfo {
        width: 300px;
        margin: 20px 0 0 0;
    }

    .contactInfo .box {
        text-align: left;
    }

    .rgpd1 {
        font-size: 14px;
    }

    .contactInfo .box .text h3 {
        padding: 5px 0 0 15px;
        font-size: 16px;
        text-align: left;
    }

    .contactInfo .box .text p {
        width: 250px;
        font-size:15px;
      }

      section h1 {
        margin: 120px 0 20px 0;
    }
}
