/* RESET RULES & INITIAL SET UP
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
    --white: #fff;
    --black: #222;
    --brown: #9f4631;
    --gray: #9a9a9a;
    --lightgray: #fff;
}
 


[type="submit"] {
    cursor: pointer;
    padding: 10px;
}
 
textarea {
    resize: none;
}
 
li{
    list-style: none;
}
  
h1 {
    font-size: 60px;
    line-height: 78px;
    margin-bottom: 50px;
}
 
 
/* FORM ELEMENTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.form-with-animated-labels .form-wrapper {
    position: relative;
}
 
.form-with-animated-labels .form-wrapper + .form-wrapper {
    margin-top: 0px;
}
 
.form-with-animated-labels [type="text"],
.form-with-animated-labels [type="email"],
.form-with-animated-labels [type="tel"],
.form-with-animated-labels textarea {
    width: 100%;
    padding: 0px 10px 0px 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    color: var(--black);
    font-size: 12px;
    margin-bottom: 20px;
   
}
 
.form-with-animated-labels textarea {
    height: 150px;
    padding-top:20px;
}
 
 .form-with-animated-labels input.focused, textarea.focused {
    border: 3px solid #e8e8e8; 

}
 .form-with-animated-labels input.error, textarea.error {
    border-bottom: 3px solid #900; 

}


.form-with-animated-labels [type="text"]:focus, 
.form-with-animated-labels [type="email"]:focus,
.form-with-animated-labels [type="tel"]:focus,
.form-with-animated-labels textarea:focus {
    border: 3px solid #e8e8e8; 
}
 
.form-with-animated-labels label {
    position: absolute;
    top: 40%;
    left: 10px;
    font-size: 12px;
    transform: translateY(-50%);
    color: var(--gray);
    transition: all 0.25s ease-in-out;
}
 
.form-with-animated-labels .form-textarea-wrapper label {
    top: 20px;
    transform: none;
}
 
.form-with-animated-labels label.focused {
    top: -13px;
    transform: none;
    background: var(--white);
    font-size: 12px;
    font-weight: bold;
    padding:0px 10px 0px 10px;
    border-radius:5px 5px 0px 0px;
    border-top:3px solid #e8E8E8;
    border-bottom:0px;
    color: var(--black);
}
.form-with-animated-labels label.focused:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 18px;
    border-radius:10px 10px 0px 0px;
    border-left:3px solid #e8E8E8;
    
}
.form-with-animated-labels label.focused:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 18px;
    border-radius:10px 10px 0px 0px;
    border-right:3px solid #e8E8E8;
}
 

.form-with-animated-labels [type="submit"] {
    min-width: 160px;
    padding: 20px 4px;
    border-radius: 10px;
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    color: var(--white);
   
}
 
 
.form-with-animated-labels .wpcf7-form-control-wrap {
    position: static;
}
 
.form-with-animated-labels .wpcf7-not-valid-tip {
   display:none;
   position: absolute;
    top: 20px;
    right: 10px;
    font-size: 12px;
}
.wpcf7-form label.error{
    position:absolute; !important;  
    top: 30px !important;
    left: 320px !important;
    color:#900 !important; font-size:11px;padding-left:5px;}
 
 
/* OUTPUT MESSAGES CF7
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.wpcf7 form .wpcf7-response-output {
    font-size: 18px;
    padding: 10px;
    margin-top: 0;
}
 


.wpcf7 form .wpcf7-response-output {
  
    border-radius: 5px !important;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;    
    border: 2px solid; /* Blue */
    padding: 30px 0 30px 0;
    margin-left: 20px !important;
    font-size: 12px;
    
}
 
.wpcf7 form.init .wpcf7-response-output {
    border-color: #D8000C !important;
}
 
.wpcf7 form.sent .wpcf7-response-output {
     background: #dff0d8 !important;
     border: 1px solid #3c763d !important;
     color: #3c763d;
}
 
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232 !important; /* Red */
}
 
.wpcf7 form.spam .wpcf7-response-output {
    border-color: #D8000C !important; /* Orange */
}
 
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    background: #E8E8E8!important;
    border: 1px solid #EFEFEF !important;
    color: #000;
    padding: 30px 0 30px 0;
    
    
}
.wpcf7 form.invalid .wpcf7-response-output::before,
.wpcf7 form.unaccepted .wpcf7-response-output::before
{
    font-family: "fontawesome";
    font-weight: 900;
    content: "\f057";
    padding-right: 10px;
    padding-left: 20px;
    width: 30px;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    color: #C10000;
}
.wpcf7 form.sent .wpcf7-response-output::before {
    font-family: "fontawesome";
    font-weight: 900;
    content: "\f058";
    padding-right: 10px;
    padding-left: 20px;
    width: 30px;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    
}
.row {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-bottom: 8px;

}
.block {
  width: 100%;
  margin-left: 10px;
}
