﻿.container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}
.us-box{
    background-color: #fff;
    padding-top: 70px;
}
.us-title{
    border-bottom: 1px #D4D4D4 solid;
    display: flex;
    flex-direction: column;
}
.us-title p:first-child{
    color: #114078;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 0;
}
.us-title p:last-child{
    color: #D4D4D4;
    font-size: 18px;
}
.us-header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 75px 0;
}
.header-box{
    padding: 0 36px 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 90px;
}
.header-msg{
    display: flex;
    flex-direction: column;
    margin-left: 14px;
	font-size:14px;
}
.header-msg>span{
    color: #999999;
    font-size: 14px;
}
.border-d4d4d4{
    border-right: 1px #d4d4d4 solid;
}
.padleft-30{
    padding-left: 30px;
}

.us-content{
    background-image: url('/img/formbg.png');
    background-repeat: no-repeat;
    background-size: auto;
    display: flex;
    flex-direction: column;
    padding: 120px 0;
}
.us-content>span{
    color: #fff;
    font-size: 18px;
    margin-bottom: 18px;
}
.form-contetnt{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.form-contetnt>div:first-child{
    display: flex;
    flex-direction: column;
    padding: 0 ;
}
.form-contetnt>div:last-child{
    padding-left: 36px;
    padding-right: 0;
}
.form-contetnt>div textarea{
    height: 163px;
    margin-top: 5px;
    width: 100%;
    resize: none;
    padding: 1rem 1rem;
	border:none;
}
.form-contetnt>div>input{
    line-height: 32px;
    margin: 14px 0;
    padding-left: 1rem;
	border:none;
}
::-webkit-input-placeholder {
    color: #989898;
    font-size: 14px;
}
.form-btn{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.form-btn button{
    width: 150px;
    margin-left: 10px;
    border-radius: 0;
    font-size: 14px;
}
@media(max-width:768px){
    .us-header{
        flex-direction: column;
    }
    .header-box{
        padding: 36px 0;
    }
    .border-d4d4d4{
        border-right:0;
    }
    .padleft-30{
        padding-left: 0;
    }
    .form-contetnt{
        flex-direction: column;
    }
    .form-contetnt>div:last-child{
        padding-left: 0;
        padding-right: 0;
    }
}