.page_content{
    color: #1B222F;
}

/*about page*/
.page_image {
    display: none;
    width: 100%;
    height: auto;
}
.page_image img {
    width: 100%;
    height: auto;
}

.about_info{
    display: flex;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about_info li{
    width: 45%;
}
@media (min-width: 768px){
    .page_image{
        display: none;
        width: 30%;
    }
}

/*contact page*/
.page_contact ul{
    list-style: none;
    padding: 0;
}
.page_form{
    padding: 0;
}
.page_form .widget-title {
    position: relative;
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 15px;
    padding-left: 0.5em;
    text-transform: uppercase;
}
.page_form form .widget-title::before {
    position: absolute;
    content: '';
    width: 3px;
    height: 100%;
    background-color: #000000;
    left: 0;
}
.page_form form .form_input{
    width: 100%;
    height: auto;
    border: #fcfcfc 1px solid;
    padding: 10px;
    background-color: #cccccc;
    border-radius: 0px;
    margin: 0;
}
.page_form form .form_submit{
    width: 100%;
    height: 40px;
    font-size: 18px;
    text-transform: uppercase;
    background-color: #aa000d;
    color: #ffffff;
    border: 0;
    cursor: pointer;
}
@media (min-width: 768px){
    .page_contact{
        float: left;
        width: 50%;
        padding-right: 100px;
    }
    .page_form{
        float: left;
        width: 50%;
        padding-left: 100px;
    }
}