*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
body{
    background-color: #fee105;
    padding-top: 80px;
}
.box{
    width: 100%;
    /* max-width: 1280px; */
    margin: 0 auto;
}
.nav{
    width: 100%;
    height: 80px;
    background-color: #fff;
    border-bottom: 1px solid #000000;
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 0 0 9px 3px rgba(0,0,0,.1);
    z-index: 9;
}
nav{
    width: 1080px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo h1{
    height: 70px;
    line-height: 70px;
    font-size: 45px;
    color: #0d2f5f;
    font-family: "Bebas Neue", sans-serif !important;
    
}
.logo h1:hover{
    color: #999999;
}
nav ul{
    display: flex;
}
nav ul li{
    margin-left: 30px;
}
nav ul li a{
    padding: 8px;
    color: #000;
    font-size: 20px;
}
nav ul li a:hover{
    color: #ffa85c;
}
footer{
    padding-top: 50px;
    padding-bottom: 30px;
    background-color: #fff;
}
.serve{
    display: flex;
    justify-content: center;
    align-items: center;
}
.social{
    height: 90px;
}
.links{
    display: flex;
}
.links>div{
    margin-left: 50px;
}
.links h2{
    font-size: 22px;
    color: #0d2f5b;
}
.links a{
    display: block;
    padding-left: 16px;
    font-size: 16px;
    line-height: 1.9;
    color: #999999;
}
.links a:hover{
    color: #ffa85c;
}
footer p{
    text-align: center;
    font-size: 14px;
    margin-top: 25px;
}
@media (max-width: 760px) {
    body{
        padding-top: 0;
    }
    .nav{
        position: relative;
        height: auto;
    }
    nav{
        width: 100%;
        height: auto;
        display: block;
    }
    .logo h1{
        text-align: center;
    }
    nav ul{
        display: block;
    }
    nav li{
        margin: 0;
    }
    nav a{
        display: block;
        line-height: 45px;
        text-align: center;
        border-bottom: 1px solid lightgray;
    }
    .serve{
        display: block;
    }
    .social{
        display: block;
        width: 80%;
        height: auto;
        margin: 0 auto;
    }
    .links{
        display: block;
        margin-top: 20px;
    }
    .links>div{
        margin: 0;
        margin-bottom: 35px;
    }
    .links h2{
        font-size: 18px;
        text-align: center;
    }
    .links a{
        text-align: center;
        font-size: 14px;
    }
    footer p{
        width: 94%;
        margin: 0 auto;
        font-size: 12px;
    }
}