body{
    background-color: #111;
    overflow: hidden;
}

/*******************HEADER**********************/
header{
    width: 100vw;
    height: 10vh;
    background: none;
    display: flex;
    align-items: center;
}

header button{
    background: none;
    padding-right: 5px;
    padding-left: 5px;
    padding-top: 2px;
    color: white;
    font-size: 1.3vw;
    margin-left: auto;
    border: none;
    border-top: 1vh solid white;
    margin-right: 1vw;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

header button:hover{
    color: #8113E8;
    border-top: 1vh solid #8113E8;
}

/*******************TITRE**********************/

.titres{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 17vh;
    transform: translateX(-50%);
    z-index: 3;
}

.titres h2{
    text-transform: uppercase;
    font-size: 2vw;
    font-weight: 200;
    color: white;
}

.titres h1{
    text-transform: uppercase;
    font-size: 7vw;
    font-weight: 400;
    color: white;
    text-align: center;
    line-height: 12vh;
}

.titres h1 span{
    color: #8113E8;
}

/*******************DESCRIPTION**********************/
.contenu{
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 50%;
    top: 67vh;
    transform: translateX(-50%);
    z-index: 3;
    width: 30vw;
}

.contenu p{
    color: white;
    font-size: 3vw;
    font-weight: 400;
}

.contenu .champs_texte{
    margin-top: 4vh;
    border: 1.5px solid white;
    background: none;
    color: rgb(222, 222, 222);
    border-radius: 5px;
    padding:3px 0px;
    font-size: 1.2vw;
    font-weight: 100;
    text-align: left;
    padding-left: 12px;
    cursor: pointer;
}

.contenu .go{
    font-size: 1.5vw;
    font-weight: 400;
    background: #8113E8;
    color: white;
    border: none;
    width: 6vw;
    padding: 4px 0;
    border-radius: 30px;
    margin-left: auto;
    cursor: pointer;
    margin-top: -1.5vh;
    transition: all .3s ease-in-out;
}








/*******************CLASSE DISPLAY FLEX ET DISPLAY NONE**********************/
.appear{
    display: flex !important;
}

.disappear{
    display: none !important;
}






/*******************POP UP CONTACT**********************/
.pop_up_contact{
    background-color: #8113E8;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70vw;
    height: 70vh;
    border-radius: 15px;
    gap: 7vh;
    display: none;
    z-index: 3;
}

.pop_up_contact button{
    color: white;
    font-size: 2vw;
    font-weight: 200;
    position: absolute;
    top: 3vh;
    right: 2vw;
    border: none;
    background: none;
    cursor: pointer;
}

.pop_up_contact h1{
    text-transform: uppercase;
    color: white;
    text-align: center;
    font-weight: 700;
}

.pop_up_contact p{
    color: white;
    text-align: center;
    font-size: 2vw;
    font-weight: 500;
    line-height: 9vh;
}





/*******************POP UP FORM**********************/
.pop_up_form{
    background-color: #8113E8;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70vw;
    height: 80vh;
    border-radius: 15px;
    display: none;
    z-index: 3;
}

.pop_up_form .close{
    color: white;
    font-size: 2vw;
    font-weight: 200;
    position: absolute;
    top: 3vh;
    right: 2vw;
    border: none;
    background: none;
    cursor: pointer;
}

form{
    display: flex;
    width: 90%;
    flex-direction: column;
    justify-content: center;
    margin-top: 5vh;
    gap: 8vh;
    height:77%;
    overflow-x:hidden;
}

form > div{
    display: flex;
    gap: 3vw;
}

form > div div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.row3 div{
    width: 100%;
    gap: 3vh;
}

form > div div label{
    color: white;
    font-weight: 400;
    font-size: 1.3vw;
    text-shadow: 0 0 5px rgba(0, 0, 0, .4);

}

form textarea::placeholder{
    color: rgb(184, 184, 184);
    text-shadow: none;
    font-size: 1.2vw;
}

form > div div input, form > div div textarea{
    border: none;
    border-bottom: 1px solid white;
    margin-top: 3vh;
    transition: all .3s ease-in-out;
    box-sizing: border-box;
    padding-left: 5px;
    padding-bottom: 5px;
    background: none;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, .4);
    height:70%;
    font-size: 1.2vw;
}

form > div div input:focus, form > div div textarea:focus{
    outline: none;
    border-bottom: 3px solid white;
}

form .send{
    font-size: 1.1vw;
    text-align: center;
    font-weight: 200;
    background: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    position: absolute;
    bottom: -3vh;
    right: 2vw;
    padding: 2vh 2vw;
    border: 1px solid #111;
}

form .send:hover{
    color: white;
    background: #8113E8;
}





/*******************LOGO QUI SE DEPLACE EN FOND**********************/
@keyframes randomMovement {
    0% {
        top: 10%;
        left: 20%;
    }
    20% {
        top: 50%;
        left: 75%;
    }
    40% {
        top: 80%;
        left: 30%;
    }
    60% {
        top: 25%;
        left: 10%;
    }
    80% {
        top: 70%;
        left: 90%;
    }
    100% {
        top: 15%;
        left: 60%;
    }
}

.shadow {
    position: absolute;
    z-index: 2;
    width: 20vw; /* Elément invisible */
    height: calc(20vw / 1.545); /* Elément invisible */
    background: url("../gallerie/general/logoMM_transparent.png");
    background-position: center;
    background-size: contain;
    /*animation: randomMovement 42s ease-in-out infinite alternate;*/
}







/*******************STYLE CAPTCHA**********************/
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
    width: 100%;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0, .7);
    gap: 10vh;
}

#captchaValidate{
    cursor: pointer;
    color: #111;
    font-size: 1.3vw;
    font-weight: 100;
    border: none;
    background-color: white;
    padding: 1vh 2vw;
    border-radius: 30px;
    transition: all .3s ease-in-out;
}

#captchaValidate:hover{
    color: white;
    background-color: #8113E8;
}

.captcha_close {
    color: white;
    cursor: pointer;
    font-size: 5vw;
    font-weight: 200;
    position: absolute;
    top: 2vh;
    right: 3vw;
    transition: all .3s ease-in-out;
}
.captcha_close:hover{
    color: #8113E8;
}


/*********************VERSION MOBILE**********************/


@media (orientation: portrait) {
header button {
    font-size: 3.5vw !important;
    border-top: .3vh solid white !important;
    margin-right: 7vw !important;
}

.titres h2 {
    font-size: 5vw !important;
}

.titres h1 {
    font-size: 14vw !important;
    line-height: 5vh !important;
}

.contenu {
    top: 57vh !important;
    width: 58vw !important;
}

.contenu p {
    font-size: 5.5vw !important;
}

.contenu .champs_texte {
    margin-top: 2vh !important;
    font-size: 3.2vw !important;
}

.contenu .go {
    font-size: 3.2vw !important;
    width: 10vw !important;
    margin-top: -1.2vh !important;
}

@keyframes randomMovement2 {
    0% {
        top: 10%;
        left: 20%;
    }
    20% {
        top: 50%;
        left: 75%;
    }
    40% {
        top: 90%;
        left: 30%;
    }
    60% {
        top: 41%;
        left: 10%;
    }
    80% {
        top: 70%;
        left: 70%;
    }
    100% {
        top: 5%;
        left: 60%;
    }
}

.shadow {
    width: 35vw; /* Elément invisible */
    height: calc(35vw / 1.545); /* Elément invisible */
    /*animation: randomMovement2 42s ease-in-out infinite alternate !important;*/
}

.pop_up_contact {
    width: 33vh !important;
    height: 33vh !important;
    gap: 1vh !important;
}

.pop_up_contact button {
    font-size: 4vw !important;
    top: 1vh !important;
    right: 3vw !important;
}

.pop_up_contact p {
    font-size: 3vw !important;
    font-weight: 500 !important;
    line-height: 5vh !important;
}

.pop_up_form {
    width: 33vh !important;
    height: 40vh !important;
}

.pop_up_form form{
    gap: 3vh !important;
}

.pop_up_form .close{
    font-size: 4vw !important;
    top: 1vh !important;
    right: 3vw !important;
}

.pop_up_form .send{
    font-size: 2.5vw !important;
    color: black !important;
}

form > div div label {
    font-size: 3vw !important;
}

form > div div textarea, form > div div input {
    font-size: 2.5vw !important;
}

form > div div textarea{
    height: 5vh;
    margin-top: 0;
}

form textarea::placeholder{
    font-size: 2vw !important;
}
}