input {
    outline: none;
    border: none;
}

textarea {
    outline: none;
    border: none;
    height: 400px;
}

/*---------------------------------------------*/
button {
    outline: none;
    border: none;
}

button:hover {
    cursor: pointer;
}

ul {
    list-style: none;
}

/****** PROclamation *******/
.zone_proclamation {
    color: white;
    border: solid;
    position: relative;
}

.zone_proclamation .bloc_button {
    transition: opacity 1s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zone_proclamation .bloc_button button {
    font-family: 'Rosmatika';
    font-size: 2em;
    color: white;
    background: none;
}

.zone_proclamation .proclamation {
    transition: opacity 1s;
    width: 100%;
    text-align: center;
}

.zone_proclamation .hidden {
    opacity: 0;
    visibility: hidden;
}

.zone_proclamation .visible {
    opacity: 1;
    visibility: visible;
}

/****** Contact ************/
.form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 45px;
}

.form_bloc {
    width: 100%;
}

.champs {
    width: 100%;
}

.wrap-input {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #e28223;
    border-left: 2px solid #e28223;
    padding-bottom: 13px;
    margin-bottom: 30px;
    margin-top: 30px;
    box-shadow: 6px 6px 0px #e28223;
}

.rs1-wrap-input {
    width: calc((100% - 30px) / 2);
}

.input {
    display: block;
    width: 100%;
    font-family: 'Rosmatika';
    position: relative;
    background: none;
    font-size: 1.3em;
    color: white;
    line-height: 1.2;
    padding: 0 5px;
    z-index: 10;
    transition: 1s all;
}

.focus-input {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    color: #e28223;
}

.focus-input::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 100%;
    z-index: 0;
    transition: all 0.4s;
    background: #e28223;
}

/*---------------------------------------------*/
input.input {
    height: 1.3em;
}

textarea.input {
    min-height: 110px;
    padding-top: 9px;
    padding-bottom: 13px;
    height: 14em;
}

.input:focus + .focus-input::before {
    width: 100%;
}

.input:focus {
    transition: 1s all;
    color: black;
}

.container-contact-form-btn {
    width: 20%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.7em;
}

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: black;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 1em;
    transform: translateY(-50%);
    right: 2px;
    pointer-events: none;
    font-family: 'Rosmatika';
    color: orange;
    font-size: 1.1em;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
    transition: opacity 0.7s;
}

.alert-validate::after {
    content: "";
    display: inline-block;
    width: 2em;
    height: 2em;
    background: url("../images/icones/alerte.png") no-repeat;
    background-size: 100%;
    position: absolute;
    color: orange;
    font-size: 16px;
    top: 1em;
    transform: translateY(-50%);
    right: 8px;
    transition: opacity 0.5s;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}

.alert-validate:hover:after {
    /* visibility: hidden  */
    opacity: 0;
}

/* Bouton *******************/
.container-contact-form-btn {
    width: 20%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.7em;
}

.container-contact-form-btn button {
    color: white;
    padding: 0.2em calc(0.2em * 5);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    font-size: 1.5em;
    cursor: pointer;
    letter-spacing: 0.07em;
    background: none;
}

.container-contact-form-btn button .text {
    font-size: 2em;
    font-family: 'Rosmatika';
    transform: translate3d(0, 0.2em, 0);
    display: block;
    transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1) 0.4s;
}

.container-contact-form-btn button:after {
    position: absolute;
    content: '';
    bottom: -2px;
    left: calc(0.2em * 5);
    right: calc(0.2em * 5);
    height: 2px;
    background: white;
    transition: transform 0.8s cubic-bezier(1, 0, 0.37, 1) 0.2s, right 0.2s cubic-bezier(0.04, 0.48, 0, 1) 0.6s, left 0.4s cubic-bezier(0.04, 0.48, 0, 1) 0.6s;
    transform-origin: left;
}

.container-contact-form-btn .line {
    position: absolute;
    background: orange;
}

.container-contact-form-btn .line.-right, .container-contact-form-btn .line.-left {
    width: 2px;
    bottom: -2px;
    top: -2px;
    transform: scale3d(1, 0, 1);
}

.container-contact-form-btn .line.-top, .container-contact-form-btn .line.-bottom {
    height: 2px;
    left: -2px;
    right: -2px;
    transform: scale3d(0, 1, 1);
}

.container-contact-form-btn .line.-right {
    right: -2px;
    transition: transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.23s;
    transform-origin: top;
}

.container-contact-form-btn .line.-top {
    top: -2px;
    transition: transform 0.08s linear 0.43s;
    transform-origin: left;
}

.container-contact-form-btn .line.-left {
    left: -2px;
    transition: transform 0.08s linear 0.51s;
    transform-origin: bottom;
}

.container-contact-form-btn .line.-bottom {
    bottom: -2px;
    transition: transform 0.3s cubic-bezier(1, 0, 0.65, 1.01);
    transform-origin: right;
}

.container-contact-form-btn button:hover .text, .container-contact-form-btn button:active .text {
    transform: translate3d(0, 0, 0);
    transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1) 0.4s;
}

.container-contact-form-btn button:hover:after, .container-contact-form-btn button:active:after {
    transform: scale3d(0, 1, 1);
    right: -2px;
    left: -2px;
    transform-origin: right;
    transition: transform 0.2s cubic-bezier(1, 0, 0.65, 1.01) 0.17s, right 0.2s cubic-bezier(1, 0, 0.65, 1.01), left 0s 0.3s;
}

.container-contact-form-btn button:hover .line, .container-contact-form-btn button:active .line {
    transform: scale3d(1, 1, 1);
}

.container-contact-form-btn button:hover .line.-right, .container-contact-form-btn button:active .line.-right {
    transition: transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.2s;
    transform-origin: bottom;
}

.container-contact-form-btn button:hover .line.-top, .container-contact-form-btn button:active .line.-top {
    transition: transform 0.08s linear 0.4s;
    transform-origin: right;
}

.container-contact-form-btn button:hover .line.-left, .container-contact-form-btn button:active .line.-left {
    transition: transform 0.08s linear 0.48s;
    transform-origin: top;
}

.container-contact-form-btn button:hover .line.-bottom, .container-contact-form-btn button:active .line.-bottom {
    transition: transform 0.5s cubic-bezier(0, 0.53, 0.29, 1) 0.56s;
    transform-origin: left;
}

/*# sourceMappingURL=stylePro.css.map */