#page-header{
    padding: 80px 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #AD8D7C;
}
#page-header .container{
    display: flex;
    flex-flow: column nowrap;
    justify-content: start;
    align-items: center;
    row-gap: 16px;
}
h1{
    color: white;
    text-align: center;
}
#breadcrumbs{
    color: white;
}

#page-content{
    background: white;
    padding: 90px 0 180px;
}
#page-content .container{
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-template-rows: auto;
    column-gap: 6%;
    align-items: start;
}
.contact-form h2{
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.contact-form .ff-default .ff-el-form-control{
    padding: 10px 20px;
    border: 1px solid #E2E2E2;
    border-radius: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.43;
    outline: none;
    color: #241F1F;
}
.contact-form .ff-default .ff-el-form-control:focus{
    background: #E2E2E2;
    border-color: #E2E2E2;
}
.contact-form .ff-default .ff-el-form-control::placeholder{
    opacity: 1;
    color: #241F1F80;
}
.contact-form .ff-el-form-check p{
    font-weight: 400;
    font-size: 12px;
    line-height: 1.41;
    color: #241F1F80;
}
.contact-form .fluentform .ff-el-tc label.ff_tc_label>span{
    padding-top: 0;
    width: 30px;
}
.contact-form .fluentform input[type="checkbox"]{
    width: 18px;
    height: 18px;
    accent-color: #241F1F;
}
.contact-form .fluentform .ff-el-form-check{
    margin-bottom: 0;
}
.contact-form .ff-el-group.ff-el-input--content{
    margin-bottom: 34px;
}
.contact-form .fluentform .ff-el-group.ff_submit_btn_wrapper{
    margin-bottom: 0;
}
.contact-form .dafore-button{
    background: #241F1F;
    color: white;
    width: min(270px, 100%);
}
.contact-form .ff-message-success{
    color: #241F1F;
    border-color: #241F1F;
    font-size: 14px;
}
.contact-info{
    padding: 8%;
    box-shadow: 0 0 15px 0 #00000026;
}
.contact-info h2{
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.contact-info p{
    font-weight: 400;
    font-size: 14px;
    line-height: 1.43;
    color: #241F1F80;
    margin-bottom: 20px;
}
.contact-info li{
    font-weight: 400;
    font-size: 14px;
    line-height: 1.71;
    padding-bottom: 16px;
    color: #241F1F80;
    border-bottom: 1px solid #00000026;
}
.contact-info li:not(:last-child){
    margin-bottom: 20px;
}
.contact-info li a{
    color: inherit;
}
.contact-info li strong{
    display: block;
    margin-bottom: 14px;
    color: #241F1F;
}

@media(max-width:1024px){
    #page-content .container{
        column-gap: 20px;
    }
    #page-content{
        padding: 60px 0 120px;
    }
}
@media(max-width:767px){
    #page-header{
        padding: 50px 0;
    }
    #page-header .container{
        row-gap: 8px;
    }
    h1{
        font-size: 24px;
    }
    #page-content{
        padding: 40px 0 80px;
    }
    #page-content .container{
        row-gap: 40px;
        grid-template-columns: minmax(0,1fr);
    }
    .contact-form h2{
        font-size: 22px;
        margin-bottom: 16px;
    }
    .contact-info h2{
        font-size: 18px;
    }
}