.news_details_title {
    font-family: Arial-Regular, Arial;
    font-weight: 400;
    font-size: 30px;
    color: #333333;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #E5E5E5;
}

.news_details_date {
    font-family: Arial-Regular;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    margin-top: 15px;
    justify-content: center;
}

.news_details_date::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('img/news_date2.png') no-repeat;
    background-size: 100% 100%;
    margin-right: 10px;
}

.news_details_desc {
    margin-top: 30px;
    font-family: Arial-Regular, Arial;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
}



.news_btns_box {
    justify-content: space-between;
    margin-top: 25px;
}

.news_btn_div {
    max-width: 48%;
}

.news_btn {
    font-family: Times New Roman, Times New Roman;
    font-weight: bold;
    font-size: 20px;
    color: #333333;
}

.news_btn .news_btn_a {
    border-radius: 1px 1px 1px 1px;
    border: 1px solid #333333;
    font-family: DIN Alternate, DIN Alternate;
    min-width: 137px;
    font-weight: bold;
    font-size: 20px;
    height: 50px;
    justify-content: center;
    color: #333333;
    margin-right: 15px;
}

.news_btn .news_btn_a::before {
    content: '';
    width: 17px;
    height: 22px;
    display: block;
    margin-right: 12px;
}

.news_btn_div_l .news_btn_a::before {
    background: url('img/news_right3.png') no-repeat;
    background-size: 100% 100%;
}

.news_btn_div_l .news_btn_a:hover::before {
    background: url('img/new_right2.png') no-repeat;
    background-size: 100% 100%;
}

.news_btn .news_btn_a:hover {
    border: 1px solid #FFAD2B;
    background: #FFAD2B;
    color: #FFFFFF;
}

.news_btn_div_r .news_btn_a::before {
    background: url('img/news_left3.png') no-repeat;
    background-size: 100% 100%;
}

.news_btn_div_r .news_btn_a:hover::before {
    background: url('img/news_left2.png') no-repeat;
    background-size: 100% 100%;
}

.news_btn_div_r .news_btn_a {
    margin-right: 0;
    margin-left: 12px;
}

.news_details_form {
    margin-top: 55px;
}

.news_details_form ul {
    flex-wrap: wrap;
    justify-content: space-between;
}

.news_details_form li {
    margin-top: 30px;
    background: #F6F6F6;
    height: 70px;
    display: flex;
    padding: 0 15px;
    border-radius: 6px 6px 6px 6px;
    border: 1px solid rgba(153, 153, 153, 0.5);
    width: calc((100% - 40px) / 2);
}

.news_details_form li p {
    color: #FF2727;
    display: block;
    line-height: 1;
    margin-top: 27px;
}

.news_details_form li input,
.news_details_form li textarea {
    font-family: Lato, Lato;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    border: 0;
    background: none;
    flex: 1;
    resize: none;
}

.news_details_form li.message {
    width: 100%;
    padding: 20px 15px;
    height: auto;
}

.news_details_form li.message textarea {
    height: 190px;
}

.news_details_form li.message p {
    margin-top: 3px;
}

.news_details_form div{
    text-align: center;
}

.news_details_form .hover_btn {
    text-transform: capitalize;
    background: #FFAD2B;
    font-family: Arial-Regular, Arial;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    border: 0;
    width: 209px !important;
    height: 52px !important;
    margin: 30px auto 0 !important;
}

.news_details_form .hover_btn:hover{
    opacity: .5;
}

@media only screen and (max-width: 950px) {
    .news_details_title{
        font-size: 24px;
    }

    .news_btn_div {
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
    }

    .news_btns_box{
        flex-wrap: wrap;
    }

    .news_details_form li{
        width: 100%;
    }
}