/* ---------------------------------------------------------- */
/* contact */
/* ---------------------------------------------------------- */

#zone-cont{
    display: flex;
    justify-content: center;
    margin: 70px auto 0 auto;
    padding: 0 0 100px 0;
}

#contact-cont{
    width: 760px;
}

#contact-cont input{
    border: none;
    font-size: inherit;
    color: inherit;
    outline: none;
}

#contact-cont textarea{
    resize: none;
    font-size: inherit;
    color: inherit;
    outline: none;
}

.contact-row{
    display: flex;
    width: 100%;
}

.contact-row.vertical{
    flex-direction: column;
    padding: 4px;
    margin: 0 0 30px 0;
    border: solid 1px #707070;
}

.contact-row.vertical label{
    width: 100%;
    padding: 2px 0 2px 4px;
    color: #606060;
}

.contact-row.vertical input{
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 4px;
}

.contact-row.vertical textarea{
    width: 100%;
    height: 300px;
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 4px;
}

.contact-row.vertical textarea:hover,
.contact-row.vertical textarea:focus{
    /* background-color: rgba(255, 255, 255, 0.3); */
}

.contact-submit{
    display: flex;
    justify-content: end;
}

#btn-submit{
    width : 80px;
    height: 80px;
    background-color: #ffffff;
    font-size: inherit;
    cursor: pointer;
}

/* ---------------------------------------------------------- */
/* thanks */
/* ---------------------------------------------------------- */

#thanks-cont{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 760px;
    height: 700px;
    padding: 70px 20px 20px 0;
    background-color: #CEECD7;
}

.thanks-row{
    color: #606060;
    font-size: 1.8rem;
    font-weight: 300;
    text-indent: 70px;
    padding: 0 0 30px 0;
}

.thanks-row.last{
    text-align: right;
}

.thanks-row img{
    width: auto;
    height: 180px;
}


/* ////////////////////////////////////////////////////////// */
/* Tablet */
/* ////////////////////////////////////////////////////////// */

@media only screen and (max-width:1024px) {
    
    #zone-cont{
        display: flex;
        justify-content: center;
        margin: 40px auto 0 auto;
        padding: 0 0 40px 0;
    }
    
    #contact-cont{
        width: 100%;
    }

    .contact-row.vertical{
        margin: 0 0 40px 0;
    }

}


/* ////////////////////////////////////////////////////////// */
/* Smart Phone */
/* ////////////////////////////////////////////////////////// */

@media only screen and (max-width:599px) {

    #zone-cont{
        display: flex;
        justify-content: center;
        margin: 30px auto 0 auto;
        padding: 0 0 30px 0;
    }
    
    #contact-cont{
        width: 100%;
    }

    .contact-row.vertical{
        margin: 0 0 20px 0;
    }

}