* {
    margin: 0;
    padding: 0;
}


/*-----Top Banner-----*/

.banner_list {
    position: relative;
}

.banner_info {
    position: absolute;
    top: 35%;
    left: 20%;
}

.banner_info h2 {
    color: #fff;
    font-size: 4.5rem;
    font-weight: bold;
    font-style: italic;
    text-shadow: 2px 2px 5px #000;
    margin-bottom: 2rem;
}

.banner_info a {
    color: #fff;
    background-color: #0055a7;
    border-radius: 10px;
    padding: .8rem 2rem 1rem;
    font-size: 1.6rem;
    font-style: italic;
    font-weight: bold;
    line-height: 1;
    box-shadow: 2px 2px 5px #000;
    transition: .5s;
}

.banner_info a:hover {
    text-decoration: none;
    background-color: #027aeb;
}

@media(max-width:1024px) {
    .banner_info h2 {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }
    .banner_info a {
        padding: .8rem 2rem 1rem;
        font-size: 1.4rem;
    }
}

@media(max-width:768px) {
    .banner_info {
        top: 30%;
        left: 18%;
    }
    .banner_info h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    .banner_info a {
        padding: .6rem 1.5rem;
        font-size: 1.4rem;
    }
}

@media(max-width:480px) {
    .banner_info {
        top: 25%;
        left: 13%;
    }
    .banner_info h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .banner_info a {
        border-radius: 5px;
        padding: .4rem .8rem;
        font-size: 1rem;
    }
}


/*-----statistics-----*/

.index_statistics {
    background-color: #0055a7;
    color: #fff;
    margin-top: -6px;
}

.index_statistics_list {
    border-right: 2px solid #fff;
    padding: 1rem;
}

.index_statistics_list:last-child {
    border-right: none;
}

.index_statistics_list img {
    float: left;
    margin-top: 1.5rem;
    margin-right: 1rem;
    width: 65px;
    height: auto;
}

.index_statistics_list h5 {
    font-size: 2.5rem;
    margin: 0;
    line-height: 1;
}

.index_statistics_list h5 span {
    font-size: 1.5rem;
}

.index_statistics_list p {
    font-size: 1rem;
    line-height: 1.2;
    margin-top: .3rem;
    margin-bottom: .5rem;
}

@media(max-width:1440px) {
    .index_statistics_list {
        padding: 1rem .8rem;
    }
    .index_statistics_list img {
        margin-right: .8rem;
        width: 50px;
        height: auto;
    }
    .index_statistics_list h5 {
        font-size: 2rem;
    }
    .index_statistics_list p {
        font-size: .8rem;
        margin-top: .3rem;
    }
}

@media(max-width:1024px) {
    .index_statistics_list img {
        float: unset;
        margin-top: 0;
        margin-bottom: .5rem;
        margin-right: 1rem;
        width: 50px;
        height: auto;
    }
}

@media(max-width:768px) {
    .index_statistics_list img {
        /* width: 45px; */
        display: none;
    }
    .index_statistics_list p {
        font-size: .5rem;
        margin-top: .3rem;
    }
}

@media(max-width:480px) {
    .index_statistics_list {
        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }
    .index_statistics_list:last-child,
    .index_statistics_list:nth-child(3) {
        border-right: none;
    }
    .index_statistics_list img {
        /* width: 35px; */
        display: none;
    }
}


/*-----products-----*/

.index_products {
    margin-bottom: 2rem;
}

.index_products h3 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    font-weight: bold;
    padding: 2rem;
}

.index_products_item {
    position: relative;
    /*padding: 0 2px;*/
    box-sizing: border-box;
    /*color: #ca07fb;*/
}

.index_products_item:hover {
    background-color: #D00000;
}


/* .index_products_item::after {
    content: "";
    width: 100%;
    height: 0;
    background-color: rgba(255, 0, 0, 0.15);
    bottom: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    transition: .3s;
} */


/* .index_products_item:hover::after {
    height: 100%;
    opacity: 1;
} */

.index_products_item img {
    width: 100%;
    height: auto;
    transition: .5s;
}

.index_products_item:hover img {
    transform: translateY(-10px);
}

.index_products_item p {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    font-size: 1.5rem;
    font-weight: bold;
    box-sizing: border-box;
    padding: 2rem;
    margin-bottom: 0;
}

.index_products_item:hover p {
    color: #fff;
}

@media(max-width:1440px) {
    .index_products_item p {
        font-size: 1.3rem;
        padding: 1rem;
    }
}

@media(max-width:1024px) {
    .index_products_item p {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media(max-width:768px) {
    .index_products_item p {
        font-size: .8rem;
        padding: 0.5rem;
    }
}

@media(max-width:480px) {
    .index_products_item {
        padding: 0 1.5rem;
    }
    .index_products_item p {
        font-size: 1.3rem;
        padding: 1.5rem 2.5rem;
    }
}


/*-----Industries-----*/

.index_industries {
    /*background: url(../images/index/Industries_bg.jpg) no-repeat bottom center;*/
    background-size: 100% auto;
}

.index_industries h3 {
    font-size: 1.7rem;
    color: #0055a7;
    text-align: center;
    padding: 3rem 0;
    font-weight: bold;
}

.index_industries_list {
    padding: 5px;
    /*padding: 5rem 0 12rem;*/
}

.index_industries_item {
    margin-right: 100px;
}

.index_industries_item_set {
    background-color: #000000;
    /*box-shadow: 0px 0px 5px #999;*/
    width: 100%;
    margin: 1rem auto;
    padding: 1rem;
    /*box-sizing: border-box;*/
}

.index_industries_item_set img {
    width: 100%;
    height: auto;
}

.index_industries_item_set h4 {
    padding: .5rem .5rem 0;
    font-size: 1.5rem;
}

.index_industries_item_set p {
    font-size: 1rem;
    padding: 0.5rem;
    line-height: 1.2;
}

@media(max-width:1440px) {
    .index_industries {
        width: 100%;
        background-size: 110% auto;
    }
}

@media(max-width:1024px) {
    .index_industries {
        background-size: 115% auto;
    }
    .index_industries_list {
        width: 100%;
        margin: auto;
        /*padding: 4rem 0 5rem;*/
    }
    .index_industries h3 {
        font-size: 1.6rem;
        padding: 2rem 0;
        margin-bottom: 0;
    }
    .index_industries_item_set {
        padding: .7rem;
    }
}

@media(max-width:768px) {
    .index_industries_list {
        padding: 1rem 0 3.5rem;
    }
    .index_industries h3 {
        font-size: 1.3rem;
        padding: 2rem 0;
        margin-bottom: 0;
    }
    .index_industries_item_set {
        padding: .5rem;
    }
    .index_industries_item_set h4 {
        padding: .5rem .5rem 0;
        font-size: 1.1rem;
    }
    .index_industries_item_set p {
        font-size: .8rem;
    }
}

@media(max-width:480px) {
    .index_industries h3 {
        font-size: 1.2rem;
        padding: 2rem 1rem 0;
    }
    .index_industries_list {
        /*padding: 0 0 11rem;*/
        padding: 0 0 0rem;
    }
}


/*-----Contact-----*/

.index_contact {
    text-align: center;
    position: relative;
    padding: 3rem 0;
}

.index_contact::before,
.index_contact::after {
    content: "";
    position: absolute;
    width: 25%;
    height: 2px;
    background-color: #0055a7;
    top: 50%;
}

.index_contact::before {
    left: 5%;
}

.index_contact::after {
    right: 5%;
}

.index_contact p {
    display: inline-block;
    color: #0055a7;
    font-size: 2.5rem;
    font-weight: bold;
    font-style: italic;
    margin-right: 1rem;
    line-height: 2;
    vertical-align: middle;
}

.index_contact a {
    display: inline-block;
    color: #fff;
    background-color: #0055a7;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 0.6rem 1.5rem;
    line-height: 1;
    border-radius: 5px;
    transition: .5s;
}

.index_contact a:hover {
    text-decoration: none;
    background-color: #027aeb;
}

@media(max-width:1440px) {
    .index_contact::before,
    .index_contact::after {
        width: 20%;
    }
}

@media(max-width:1024px) {
    .index_contact::before,
    .index_contact::after {
        width: 15%;
    }
    .index_contact p {
        display: block;
        margin-right: 0;
        line-height: 1;
    }
    .index_contact a {
        display: block;
        margin: 0 auto;
        width: 25%;
        padding: 0.7rem 1.5rem;
    }
}

@media(max-width:480px) {
    .index_contact::before,
    .index_contact::after {
        display: none;
    }
    .index_contact p {
        display: block;
        font-size: 2rem;
        margin-right: 0;
        line-height: 1.5;
    }
    .index_contact a {
        display: block;
        width: 60%;
        font-size: 1rem;
    }
}


/*-----index_news-----*/

.index_news {
    background-color: #f1f1f1;
    padding-bottom: 5rem;
}

.index_news h3 {
    text-align: center;
    padding: 2rem 0;
    font-size: 2.2rem;
    font-weight: bold;
}

.index_news_area {
    width: 90%;
    margin: 0 auto;
}

.index_news_list {
    width: 24%;
    margin: 0 auto;
    position: relative;
}

.index_news_list img {
    width: 100%;
    height: auto;
}

.index_news_list p {
    position: absolute;
    width: 100%;
    bottom: 0;
    color: #fff;
    background-color: rgba(0, 85, 167, .7);
    margin: 0;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    font-size: 1rem;
}

.index_news_list p span {
    display: block;
    font-size: .8rem;
    margin-top: .5rem;
}

@media(max-width:1440px) {
    .index_news_list p {
        padding: 1rem;
        font-size: 1rem;
    }
}

@media(max-width:1024px) {
    .index_news {
        padding-bottom: 3rem;
    }
    .index_news h3 {
        padding: 1rem 0;
        font-size: 1.8rem;
    }
    .index_news_area {
        width: 95%;
    }
    .index_news_list p {
        padding: .5rem 1rem;
    }
    .index_news_list p span {
        font-size: .5rem;
    }
}

@media(max-width:768px) {
    .index_news {
        padding-bottom: 3rem;
    }
    .index_news h3 {
        padding: 1rem 0;
        font-size: 1.8rem;
    }
    .index_news_area {
        width: 95%;
    }
    .index_news_list p {
        padding: .5rem;
        font-size: 8px;
    }
    .index_news_list p span {
        display: block;
        font-size: 6px;
        margin-top: .2rem;
    }
}

@media(max-width:480px) {
    .index_news {
        background-color: #f1f1f1;
        padding-bottom: 3rem;
    }
    .index_news h3 {
        text-align: center;
        padding: 2rem 0;
        font-size: 2.2rem;
        font-weight: bold;
    }
    .index_news_area {
        width: 90%;
        margin: 0 auto;
    }
    .index_news_list {
        width: 48%;
        margin: 0 auto 2rem;
        position: relative;
    }
    .index_news_list img {
        width: 100%;
        height: auto;
    }
    .index_news_list p {
        position: unset;
        color: #666;
        background-color: unset;
        padding: 5px;
        font-size: .8rem;
    }
    .index_news_list p span {
        font-size: .4rem;
        margin-top: 10px;
        color: #0055a7;
    }
}