    @charset "utf-8";
    /* CSS Document */
    
    html,body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }
    .main{
        width: 100%;
        height: 100%;
        background-color: #2D2F34;
    }
    .header{
        height: 13%;
        line-height: 13%;
    }
    nav{
        height: 100%;
        display: flex;
        justify-content: space-between;
        padding-left: 5%;
        padding-right: 3%;
    }
    .topleft , .topright{
        height: 100%;
        line-height: 100%;
        display: flex;
    }
    .topleft div , .topright div{
        display: inline-block;
        align-self: center;
        height: 35%;
    }
    .topleft div{
        height: 80%;
    }
    .topleft div img{
        height: 100%;
    }
    .topright div img{
        height: 100%;
        margin-right: 20px;
    }

    .content{
        height: 77%;
        background: url("img/pic_bg.png") no-repeat 100% 100%;
        display: flex;
        justify-content: space-between;
    }
    .conleft{
        align-self: center;
        margin-left: 5%;
    }
    .conleft p{
        font-size: 35px;
        color: #fff;
        margin: 2% 0;
    }
    .conleft p:first-child{
        font-size: 70px;
        margin: 0;
    }
    .conleft div{
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .conleft div img{
        margin-top: 3%;
        display: inline-block;
        width: 75%;
    }
    .conright{
        margin-right: 8%;
        height: 75%;
        align-self: center;
    }
    .conright img{
       height: 100%; 
    }
    .footer{
        height: 10%;
        text-align: center;
        color: #fff;
    }
    .footer > div{
        height: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
    }
    .footer > div > div{
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .footer > div > div:nth-child(2){
        height: calc(100% - 20px);
    }
    .footer a{
        color: aquamarine;
        text-decoration: none;
    }
    .inline{
        display: flex;
        line-height: 20px;
        justify-content:space-between !important;
        padding:0 3%;
    }
    .inline .line{
        height: 0px;
        display: inline-block;
        width: 45%;
        border: .5px solid #666666;
    }
    @media screen and (max-width: 1200px) {
        .conleft p{
            font-size: 25px !important;
        }
        .conleft p:first-child{
            font-size: 50px !important;
        }
        .footer > div > div:nth-child(2){
            height: auto !important;
        }
    }

    a {
        text-decoration: none;
    }
    
    a:hover {
        text-decoration: underline;
    }
    
    ul,
    li {
        list-style: none;
    }
    .privacy {
        padding: 5rem;
        color: #fff;
        background-color: #2D2F34;
    }
    
    .privacy h1 {
        text-align: center;
        font-size: 3rem;
        line-height: 6rem;
        margin-bottom: 2rem;
    }
    
    .privacy p {
        font-size: 1.6rem;
        line-height: 3.2rem;
        margin-top: 1rem;
    }
    
    .privacy li {
        margin-top: 2rem;
    }
    
    .privacy h3 {
        font-size: 2.4rem;
        line-height: 3rem;
        margin: 3rem 0 1rem;
    }
    
    .privacy h4 {
        font-size: 2rem;
        line-height: 2.6rem;
        margin: 2rem 0 1rem;
    }
    .privacy a{
        color: aqua;
    }
