/*---------------------*/
/* 		Vue contact    */
/*---------------------*/
/*Element globale*/
.Contact{
    width: 100vw;
    height: 100vh;
    background-color: var(--color-blanc);
    display: flex;
    align-items: start;
    justify-content: center;		
    z-index: 50000;				
}
.Contact_Content{
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: start;	
    flex-direction: column;					
}			
.contact_form{
    width: 50%;
    height: auto;
    margin: 50px auto;
    padding: 20px;	
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
    gap: 25px;		
}				
.input-field{
    min-height: 40px;
    width: 100%;				
}
.input-field input{
    position: absolute;
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 16px;
    height: 40px;
    color: var(--color-main);
    width: 100%;
}
.input-field label{
    position: absolute;
    top: 0;
    left: 0;
    color: #555;
    pointer-events: none;
    transition: all 0.5s ease;
    height: 40px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;				
    display: flex;
    align-items: center;
    justify-content: center;
}
.input-field input:valid ~ label ,
.input-field input:focus ~ label{
    transform: translateY(-20px);			
}
.input-field span{
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    background: #555;
    width: 100%;
    height: 2px;
}
.input-field textarea:after{
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    background: #555;
    width: 100%;
    height: 2px;
}
.input-field textarea{
    resize: none;
    border: none;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
    margin: 30px 0px 0px 0px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;		
    padding: 10px;	
    border-radius: 2px;	
    width: 100%;
}			
.input-field span:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00b0ff;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease-in-out;
}
.contact_submit{
    width: 200px;
    margin: 20px 0px;
    padding: 10px 25px;
    border-radius: 3px;
    border: 1px solid var(--color-main);
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-main);
    background-color: var(--color-box);
    fill: var(--color-main);
    transition: 0.3s ease all;
    cursor: pointer;
}
.contact_submit:hover{
    transition: 0.3s ease all;
    background-color: var(--color-main);
    color: var(--color-box);
    fill: var(--color-box);
}
.contact_contenu{
    display: flex;
    align-items: center;
    justify-content: space-between;		
    width: 100%;
    gap: 50px;
}
.contact_texte{
    display: flex;
    align-items: center;
    justify-content: center;	
    width: 50%;			
}
.contact_texte>p{
    font-size: 120px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    width: 100%;
    text-align: center;		
    background-image: url("../../images/devis.webp");		
    background-size: cover;
    background-position: center;
    background-clip: text;				
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 20px 20px 40px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 0px) and (max-width: 1400px) {
    .contact_texte>p{
        font-size: 100px;
    }
}
@media screen and (min-width: 0px) and (max-width: 1200px) {
    .Contact_Content{
        flex-direction: column;
    }
    .contact_form{
        width: 95%;
    }
    .contact_texte{
        display: none;
    }
}