body {
    font-family: "Source Sans Pro", sans-serif;
}

.page-container {
    max-width: 960px;
}

.field-wrap {
    margin-bottom: 20px;
}

.field-wrap .errors {
    position: absolute;
    font-size: 0.8em;
    padding-left: 5px;
    font-weight: bold;
    /*background: #fff;*/
    color: #A94442;
    opacity: 0;
    transition: opacity .5s;
}

.field-wrap input:hover + .errors,
.field-wrap input:focus + .errors,
.field-wrap textarea:hover + .errors,
.field-wrap textarea:focus + .errors {
    opacity: 1;    
}

.field-textarea textarea {
    min-height: 200px;
    height: 200px;
    resize: vertical;
}

#field-address {
    height: 142px;
    min-height: 142px;
}

.page-header {
    overflow: hidden;
}

.logo-img {
    max-width: 100%;
    height: auto;
}

.field-buttons .btn {
    min-width: 160px;
}



@media (max-width: 991px) {
    .page-header {
        text-align: center;
    }

    .page-header .title {
        width: 100%;
        font-size: 24px;
    }
}