/*formBox*/
.ContactBox{
    padding: 3rem 0;
    background-image: url(../images/contact/bg.jpg);
    background-size: cover; 
    background-position: top;
}
.ContactBox:before{
    content: '';
    position: absolute;  
    width: 100%;
    height: 100%;
    background-position: 70%;
    background-repeat: no-repeat;
    background-image: url(../images/contact/bg_before.svg);
}
.ContactBox .formBox {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10% 15%;
    box-shadow:  0 0 0.5em rgba(0, 0, 0, 0.2);
    border-bottom: 0.5rem solid #8e7e78;   
}
.ContactBox .formBox .TxtBox{
    padding-bottom: 3rem;
}

.ContactBox .formBox .TxtBox p{
    font-size: 10px;
    text-align: center;
    color: #666;

}
.ContactBox .formBox  .title:after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: #b49b74;
    margin: 1rem auto 1rem;
}

.form-control {
    color: #888;
    background-color: transparent;
    border: 0px;
    border-bottom: 1px solid #8e7e78;
    border-radius: 0;
}

.form-control:focus {
    border-bottom: 2px solid #deb96c;
    box-shadow: none;

}

.btn-secondary{
    color: #333333;
    border:none;
    background-color: #deb96c;
}
.btn-secondary:hover{
    background-color: #8e7e78;
}