@charset "UTF-8";

@import url(../css/reset.css);


/* side menu bar */
#wrap{
    max-width: 1920px;
    overflow-y: hidden;
}

#header{
    height:100vh;
    position:relative;
}
.open_btn{
    position:absolute;
    top:60px; right:3%;
    width:45px; height:34px;
    transition:all 0.3s;
}
.open_btn span{
    width:100%; height:4px;
    border-radius:8px;
    background-color:#034EA2;
    transition:all 0.2s;
    position:absolute;
    left:0;
    z-index:30;
}
.open_btn span:nth-child(1){top:0;}
.open_btn span:nth-child(2), .open_btn span:nth-child(3){top:13px;}
.open_btn span:nth-child(4){top:26px;}
.open_btn.active span:nth-child(1), .open_btn.active span:nth-child(4){opacity:0;}
.open_btn.active span:nth-child(2){transform:rotate(45deg); background-color: #fff; z-index: 100;}
.open_btn.active span:nth-child(3){transform:rotate(-45deg); background-color: #fff; z-index: 100;}

.over{
    position:fixed;
    background-color:#034EA2;
    top:0; right:0;
    width:480px; height:860px;
    text-align:center;
    transition:all 0.5s;
    opacity:0;

}
.menu{
    position:absolute;
    top:50%; left:50%;
    transform:translate(-50%, -50%);
}
.menu li{
    margin:25px 0;
}
.menu li a{
    color:#fff;
    font-size:23px;
    font-weight:bold;
}
.menu li:hover a{
    opacity: 0.6;
}
.over.block{
    opacity:1;
}

.over.ready{
    z-index: 50;
}
/* side menu bar */




#Main{
    background-image: url(../img/company_bg.png);
    background-repeat: no-repeat;
    position: relative;
    height: 860px;
    background-size: cover;
}
#Main .title{
    width: 250px;
    height: 50px;
    background-color: #034EA2;
    border-radius: 0 100px 100px 0;
    padding: 20px 0 20px 100px;
    margin-top: 50px;
    position: absolute;
}
#Main .title h1{
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}
#Main .title h3{
    color: #e3e3e3;
    font-weight:300;
}
#Main .BOX{
    display: flex;
}
#Main .BOX .box{
    width: 50%;
}
#Main .BOX .box .text{
    position: absolute;
    top: 20%;
    width: 250px;
    text-align: right;
}
#Main .BOX .box .text_2{
    position: absolute;
    top: 55%;
    width: 250px;
    text-align: right;
}
#Main .BOX .box .text_3{
    position: absolute;
    top: 20%;
    left: 50%;
    width: 250px;
    text-align: right;
}
#Main .BOX .box .text h2{
    font-size: 25px;
    border-bottom: 4px solid #034EA2;
    padding: 10px 0;
    color: #034EA2;
    font-weight: 500;
}
#Main .BOX .box .text_2 h2{
    font-size: 25px;
    border-bottom: 4px solid #034EA2;
    padding: 10px 0;
    color: #034EA2;
    font-weight: 500;
}
#Main .BOX .box .text_3 h2{
    font-size: 25px;
    border-bottom: 4px solid #034EA2;
    padding: 10px 0;
    color: #034EA2;
    font-weight: 500;
}
#Main .BOX .box .cont{
    top: 30%;
    left: 8%;
    position: absolute;
}
#Main .BOX .box .cont h3{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
}
#Main .BOX .box .cont h1{
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
#Main .BOX .box .cont h5{
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 20px;
}
#Main .BOX .box .cont p{
    margin-bottom: 10px;
}
#Main .BOX .box .cont p span{
    font-size: 20px;
    font-weight: bold;
    /* color: #034EA2; */
}
#Main .BOX .box .cont_1{
    top: 65%;
    left: 8%;
    position: absolute;
}
#Main .BOX .box .cont_1 h3{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
}
#Main .BOX .box .cont_2{
    top: 30%;
    right: 10%;
    position: absolute;
}


/* footer section */
#footer{
    height: 70px;
    border-top: 1px solid #eee;
}
#footer .footer_section{
    display: flex;
    justify-content: center;
}
#footer .footer_section .left{
    width: 50%;
    border-right: 1px solid #eee;
    display: flex;
    justify-content: center;
    padding: 15px;
}
#footer .footer_section .left a .logo img{
    width: 160px;
    margin-right: 30px;
}
#footer .footer_section .left .tit h6{
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}
#footer .footer_section .right{
    width: 50%;
    display: flex;
}
#footer .footer_section .right .button{
    width: 50%;
}
#footer .footer_section .right .button:nth-child(1){
    border-right: 1px solid #eee;
}
#footer .footer_section .right .button a{
    display: flex;
    justify-content: center;
    padding: 20px 50px;
}
#footer .footer_section .right .button a .arrow img{
    width: 20px;
    margin-right: 30px;
}
#footer .footer_section .right .button:nth-child(2) a .tit{
    margin-right: 30px;
    text-align: right;
}
#footer .footer_section .right .button a h3{
    margin-bottom: 5px;
}
#footer .footer_section .right .button a h5{
    font-size: 14px;
    color: #999;
}
#footer .footer_section .right .button:hover{
    background-color: #f3f3f3;
    transition: ease 0.8s;
}


@media all and (max-width:500px){
    #wrap{
        overflow-y: unset;
    }
    #header{
        height: unset;
    }
    .open_btn{
        right:8%;
    }
    .over{
        width: 100%;
        height: 700px;
    }
    #Main{
        background-image: unset;
        position: relative;
        height: 1200px;
    }
    #Main .title{
        width: 180px;
        padding: 20px 0 20px 50px;
    }
    #Main .BOX{
        display: block;
    }
    #Main .BOX .box .text{
        top: 15%;
    }
    #Main .BOX .box .text h2{
        width: 180px;
    }
    #Main .BOX .box .cont{
        width: 85%;
        top: 22%;
    }
    #Main .BOX .box .cont h1{
        width: 350px;
        font-size: 24px;
    }

    #Main .BOX .box .text_2{
        width: 180px;
        top: 43%;
    }
    #Main .BOX .box .cont_1{
        top: 50%;
        left: unset;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    #Main .BOX .box .cont_1 img{
        width: 95%;
    }
    #Main .BOX .box .text_3{
        left: unset;
        width: 180px;
        top: 63%;
    }
    #Main .BOX .box .cont_2{
        top: 68%;
        width: 80%;
    }
    #Main .BOX .box .cont_2 img{
        width: 100%;
    }


    #footer{
        height: unset;
        width: 100%;
    }
    #footer .footer_section{
        flex-direction:column-reverse;
    }
    #footer .footer_section .left{
        width: unset;
        display: unset;
        padding: 15px 20px;
    }
    /*#footer .footer_section .left .tit h6{
        width: 420px;
    }*/
    #footer .footer_section .right{
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    #footer .footer_section .right .button a{
        padding: 20px 10px;
    }
    #footer .footer_section .right .button a .arrow img{
        margin-right: unset;
    }
    #footer .footer_section .right .button:nth-child(1) a .tit{
        margin-left: 30px;
    }


}