* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: Montserrat Regular, sans-serif;
}

::selection {
    color: white;
    background-color: rgba(83,180,70,0.33);
}

:root {
    --green: #53b446;
    --black: #373737;
}

body {
    overflow-x: hidden;
}

@font-face {
    font-family: Kalam Light;
    src: url("./fonts/Kalam-Light.ttf");
    font-display: swap;
}
@font-face {
    font-family: Kalam Regular;
    src: url("./fonts/Kalam-Regular.ttf");
    font-display: swap;
}
@font-face {
    font-family: Kalam Bold;
    src: url("./fonts/Kalam-Bold.ttf");
    font-display: swap;
}

@font-face {
    font-family: Montserrat Light;
    src: url("./fonts/Montserrat-Light.ttf");
    font-display: swap;
}
@font-face {
    font-family: Montserrat Regular;
    src: url("./fonts/Montserrat-Regular.ttf");
    font-display: swap;
}
@font-face {
    font-family: Montserrat Medium;
    src: url("./fonts/Montserrat-Medium.ttf");
    font-display: swap;
}





.go-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    cursor: pointer;
    display: none;
    filter: drop-shadow(0px 0px 8px #fff);
}
.go-to-top:hover {
    filter: drop-shadow(0px 0px 12px #fff);
    transition: 0.3s ease-out;
    bottom: 30px;
}
.go-to-top img {
    user-select: none;
    -webkit-user-drag: none;
}

@media screen and (max-width: 1200px) {
    .go-to-top {
        opacity: 0;
        pointer-events: none;
    }
}

.grecaptcha-badge {
    display: none;
    pointer-events: none;
}





header {
    background-color: white;
    box-shadow: #878787 0 -5px 30px 0;
    width: 100%;
    height: 100%;
    position: sticky;
    top: 0;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    max-height: 15vh;
    z-index: 100;
}



.logo {
    font-family: Montserrat Medium;
    font-weight: 600;
    font-size: 28px;
    text-decoration: none;
    color: var(--green);
    align-self: center;
}

nav ul {
    display: flex;
    justify-content: space-between;
    width: 40%;
}

nav ul a {
    list-style: none;
    text-decoration: none;
    color: var(--black);
    font-family: Montserrat Medium;
    font-size: 20px;
}

.menu {
    margin-left: auto;
    margin-right: 25px;
    display: flex;
    align-items: center;
}

.burger {
    display: none;
    z-index: 10;
}

.burger div {
    height: 4px;
    background-color: var(--green);
    border-radius: 5px;
    margin: 5px;
    transition: 0.4s ease;
}

.burger-color {
    background-color: white!important;
}

.burger .line1 {
    width: 30px;
}
.burger .line2 {
    width: 18px;
    margin-left: 17px;
}
.burger .line3 {
    width: 24px;
    margin-left: 11px;
}



@media screen and (min-width: 901px) {
    nav li {
        position: relative;
    }
    nav li, nav li:after, nav li:before {
        transition: 0.4s all ease;
    }
    nav li:after {
        position: absolute;
        top: 42px;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 0%;
        content: '';
        background-color: var(--green);
        height: 3px;
    }
    nav li:hover:after {
        width: 100%;
    }
}

@media screen and (max-width: 1500px) {
    nav ul {
        width: 50%;
    }
}
@media screen and (max-width: 1150px) {
    nav ul {
        width: 60%;
    }
}


@media screen and (max-width: 900px) {
    .burger {
        display: block;
        cursor: pointer;
    }
    nav ul {
        position: absolute;
        right: 0;
        top: 0vh;
        height: 100vh;
        background: linear-gradient(90deg, #4ea542, var(--green));
        color: white;
        width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        text-align: center;
        transform: translateX(110%);
        transition: transform 0.4s ease-out;
    }
    nav li {
        font-size: 125%;
        color: white;
    }
}

.nav-active {
    transform: translateX(0%);
}





h1 {
    font-size: 30px;
    font-family: Montserrat Medium;
}



#intro {
    background-color: var(--green);
    padding: 5vh 10vw 4vh 10vw;
    color: white;
    text-align: center;
}
#intro .tagline {
    font-family: Kalam Regular;
    font-size: 60px;
    margin-top: 8vh;
    margin-bottom: 8vh;
    line-height: 1em;
}

.metiers {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.metiers div {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 15px auto;
}
.metiers h4 {
    text-transform: uppercase;
    font-size: 24px;
    font-family: Montserrat Light;
    letter-spacing: 4px;
    font-weight: 600;
    padding: 10px 30px;
}

.citation {
    margin-top: 8vh;
}
.citation h5 {
    font-size: 24px;
    font-family: Kalam Light;
    font-weight: 500;
    line-height: 30px;
}
.citation span {
    font-size: 30px;
    font-family: Kalam Regular;
}
.citation span:first-child {
    margin-right: 5px;
}
.auteur-citation {
    font-size: 18px;
    font-family: Montserrat Regular;
    line-height: 40px;
    text-align: right;
    margin-right: 10vw;
}

@media screen and (max-width: 1200px) {
    #intro .tagline {
        line-height: 1.5em;
    }
    .auteur-citation {
        margin-right: 0;
    }
}





#laurence {
    background-color: white;
}
.laurence-content {
    padding: 5vh 10vw 0 10vw;
}
#laurence h1 {
    color: var(--green);
}
.mt-laurence {
    background-color: var(--green);
    height: 50px;
    width: 100%;
}
.laurence-flex {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.laurence-content img {
    max-width: 20%;
    margin-top: 20px;
    height: auto;
    border: 8px solid white;
    border-radius: 200px;
    box-shadow: #9b9b9b 0 0 15px 0;
    user-select: none;
    -webkit-user-drag: none;
}

.texte {
    max-width: 75%;
}
.texte p:first-child {
    font-size: 18px;
    font-family: Montserrat Medium;
    margin-bottom: 15px;
}
.laurence-content p {
    line-height: 25px;
    margin-top: 10px;
}

.outils {
    display: flex;
    justify-content: space-between;
}
.outils-texte {
    max-width: 55%;
}
.outils h3 {
    margin-top: 8vh;
}
.outils ul {
    margin-top: 15px;
    line-height: 30px;
    padding-left: 50px;
}
.outils-photo {
    width: 40%;
    height: 300px;
    border-radius: 15px;
    margin-top: 50px;
    background-image: url("../img/cote-basque.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left bottom;
}

@media screen and (max-width: 1200px){
    .laurence-content img {
        max-width: 20%;
    }
    .laurence-content .texte {
        max-width: 70%;
    }
    .outils-texte {
        max-width: 50%;
    }
    .outils-photo {
        width: 45%;
        height: 400px;
    }
}
@media screen and (max-width: 900px){
    .laurence-content img {
        max-width: 30%;
    }
    .laurence-content .texte {
        max-width: 60%;
    }
    .outils {
        display: block;
    }
    .outils-texte {
        max-width: 100%;
    }
    .outils-photo {
        margin: auto;
        margin-top: 50px;
        width: 70%;
        height: 250px;
    }
}
@media screen and (max-width: 600px){
    .laurence-flex {
        display: block;
        text-align: center;
    }
    .laurence-content img {
        max-width: 50%;
        margin-top: 8vh;
    }
    .laurence-content p {
        text-align: justify;
    }
    .laurence-content .texte {
        max-width: 100%;
        text-align: left;
    }
    .outils {
        display: block;
    }
    .outils-texte {
        max-width: 100%;
    }
    .outils-photo {
        margin-top: 40px;
        width: 100%;
        height: 200px;
    }
}





#consultations {
    background-color: #f2f2f2;
}
.consultations-content {
    padding: 5vh 10vw 0 10vw;
}
.consultations-content ul {
    padding-left: 50px;
    line-height: 30px;
}
.consultations-content p {
    padding-bottom: 10px;
    padding-top: 15px;
    line-height: 22px;
}
.strong {
    font-family: Montserrat Medium;
}
#consultations h1 {
    color: var(--green);
    margin-bottom: -10px;
}
#consultations h3 {
    margin-top: 25px;
    margin-bottom: 10px;
}
.mt-consultations {
    background-color: white;
    height: 50px;
    width: 100%;
}
.bloc {
    margin-top: 4vh;
    margin-bottom: 3vh;
    border: solid 3px var(--green);
    border-radius: 15px;
    padding: 25px 30px;
    background-color: white;
}
.bloc p {
    padding: 0;
}
.bloc p:not(.strong) {
    padding: 0;
    padding-top: 15px;
}
.bloc ul {
    padding-left: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.bloc h3 {
    margin-top: 0px!important;
    margin-bottom: 5px;
}

strong {
    color: var(--green);
    font-family: Montserrat Medium;
    font-size: 17px;
}

@media screen and (max-width: 900px){
    .consultations-content {
        padding: 5vh 8vw 0 8vw;
    }
    .consultations-content p {
        text-align: justify;
    }
}




.affil-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4vh;
    margin-bottom: 3vh;
    border-left: solid 3px var(--green);
}
.affil-link-2 {
    margin-top: 10px;
}
.affil-link a {
    text-decoration: none;
    font-weight: 700;
    color: var(--black);
}
.affil-link a:hover {
    text-decoration: underline;
}
.affil-link p {
    padding: 8px 0 4px 20px;
}
.affil-link-2 p {
    text-align: right;
}
.btn-affil {
    max-width: 25%;
}
.btn-affil a {
    width: 100%;
    color: white;
    background-color: var(--green);
    border-radius: 50px;
    border: solid 3px transparent;
    padding: 15px 25px;
    text-align: center;
    white-space: nowrap;
    font-family: Montserrat Medium;
    font-size: 18px;
}
.btn-affil a:hover {
    transition: 0.2s;
    color: var(--green);
    background-color: white;
    border: solid 3px var(--green);
}

/*
@media screen and (max-width: 1500px) {
    .affil-link p {
        max-width: 63%;
    }
    .btn-affil {
        max-width: 30%;
    }
}
*/
.p-ateliers {
    font-size: 18px;
    line-height: 30px;
    text-align: center!important;
    max-width: 75%;
    margin: auto;
    line-height: 28px!important;
}

@media screen and (max-width: 1200px) {
    .affil-link {
        display: block;
        margin-bottom: 50px;
    }
    .affil-link p {
        max-width: 100%;
    }
    .btn-affil  {
        max-width: 100%;
        margin-top: 50px;
        text-align: center;
    }
    .affil-link-2 {
        display: flex;
        flex-direction: column-reverse;
        margin-top: -30px;
        margin-bottom: 20px;
    }
    .affil-link-2 p {
        text-align: justify;
    }
    .p-ateliers {
        max-width: 90%;
    }
}






/*
#temoignages {
    background-color: white;
}
.temoignages-content {
    padding: 5vh 10vw 0 10vw;
}
.mt-temoignages {
    background-color: #f2f2f2;
    height: 50px;
    width: 100%;
}
#temoignages h1 {
    color: var(--green);
}

.temoins {
    display: flex;
    justify-content: space-between;
}
.temoin {
    max-width: 32%;
    border-radius: 15px;
    border: none;
    background-color: white;
    box-shadow: #cdcdcd 0 0 15px 0;
    padding: 20px 25px;
}

.head-avis {
    display: flex;
    justify-content: space-between;
}
.head-avis h3 {
    padding-bottom: 10px;
}
.head-avis h5 {
    color: grey;
    padding-top: 3px;
    font-size: 14px;
}

@media screen and (max-width: 1200px){
    .temoins {
        flex-wrap: wrap;
    }
    .temoin {
        max-width: 100%;
        margin: 0 0 25px 0;
    }
}
*/



#contact {
    background-color: var(--green);
}
#contact h1 {
    color: white;
}
.mt-contact {
    background-color: #f2f2f2;
    height: 50px;
    width: 100%;
}
.contact-content {
    padding: 5vh 10vw 5vh 10vw;
}
.contact-flex{
    display: flex;
    justify-content: space-between;
    color: white;
}
.contact-text {
    max-width: 40%;
    text-align: justify;
}
.contact-text a {
    text-decoration: none;
    color: #006912;
    font-family: Montserrat Medium;
    font-size: 20px;
    padding-left: 5px;
}
.tarifs {
    margin-top: 20px;
}
.tarifs p {
    margin-top: 10px;
}

.precos {
    margin-top: 20px
}
.precos:before {
    content: " ";
    border-left: solid 3px white;
    height: 30px;
    padding-left: 5px;
}



form {
    max-width: 50%;
    margin-top: -2vh;
}

.form-inputs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

input {
    height: 40px;
    width: 49%;
    margin-bottom: 15px;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 16px;
}

input:focus {
    outline: none;
}
textarea:focus {
    outline: none;
}

textarea {
    width: 100%;
    min-height: 20vh;
    padding: 10px 12px;
    resize: vertical;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    color: var(--black);
    outline: var(--green);
}

input[type=submit] {
    color: white;
    background-color: var(--green);
    width: 50%;
    max-width: 250px;
    height: 50px;
    margin-top: 15px;
    border: solid 3px white;
    border-radius: 5px;
    cursor: pointer;
    font-family: Montserrat Semibold;
    font-size: 20px;
}
input[type=submit]:hover {
    border: none;
    color: var(--green);
    background-color: white;
    transition: all 0.5s;
}

@media screen and (max-width: 1200px) {
    .contact-content {
        display: block;
    }
    .contact-text {
        max-width: 100%;
    }
    .contact-text a {
        text-align: center;
        display: block;
        margin-top: 10px;
        font-size: 150%;
    }
    .contact-flex {
        display: block;
    }
    form {
        max-width: 100%;
        margin-top: 8vh;
    }
    textarea {
        min-width: 100%;
        min-height: 200px;
    }
    input {
        width: 48%;
    }
    .form-inputs {
        justify-content: space-between;
    }
}

@media screen and (max-width: 768px) {
    input {
        width: 100%;
    }
}





footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3vh 10vw;
    background-color: #f2f2f2;
    width: 100%;
}
footer #studioVS {
    flex: 1;
    text-align: left;
}
footer #studioVS img {
    max-width: 60%;
    user-select: none;
    -webkit-user-drag: none;
    transition: 0.2s ease;
}
footer #studioVS img:hover {
    transform: scale(1.05);
}
footer #legal {
    flex: 1;
    text-align: center;
}
footer #copyright {
     flex: 1;
    text-align: right;
 }
footer a {
    color: var(--black);
    text-decoration: none;
}



@media screen and (max-width: 1200px) {
    footer #studioVS {
        flex: 1;
        text-align: left;
    }
    footer #studioVS img {
        max-width: 60%;
        filter: brightness(0.6);
    }
    footer #legal {
        flex: 1;
        text-align: center;
    }
    footer #copyright {
        flex: 2;
        text-align: right;
    }
}
