:root{
    --c1:#155cbc;
    --c2:#4890f1;
    --c3:#76b0ff;
}
*{
    margin:0;
    padding:0;
}
html,body{
    width:100%;
    height:100%;
}
a{
    text-decoration:none;
}
div{
    box-sizing:border-box;
}
img{
    display:block;
}
ul{
    list-style:none;
}
.wrap-min{
    min-width:1200px;
}
.wrap-inside{
    margin:0 auto;
    width:1200px;
}
.header{
    background:var(--c1);
}
.header > div{
    padding:0 50px;
    display:flex;
    justify-content:space-between;
}
.header .left{
    width:450px;
    height:100px;
    background:url(../images/logo.png) no-repeat;
    background-size:100%;
    background-position-y:center;
}
.header nav{
    display:flex;
    width:600px;
}
.header nav a{
    position:relative;
    padding:0 20px;
    display:block;
    height:100px;
    line-height:100px;
    color:#fff;
}
.header nav a:after{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:5px;
    content:'';
    background:#feba00;
    opacity:0;
    transition:.3s;
}
.header nav a:hover:after,
.header nav a.on:after{
    opacity:1;
}
.footer{
    padding:40px 0;
    color:#fff;
    text-align:center;
    background:var(--c1);
}
.footer p{
    margin-bottom:10px;
}
.footer p:last-of-type{
    margin:0;
}
.footer p span{
    margin:0 10px;
}
.carousel .item img{
    width:100%;
}

.wrap-title{
    position:relative;
    padding:15px 0;
    margin:0 auto 10px;
    left:0;
    right:0;
    width:260px;
    border:1px solid #fff;
}
.wrap-title p{
    color:#fff;
    text-align:center;;
}
.wrap-title p.t{
    font-weight:bold;
    font-size:1.5em;
}
.wrap-title p.e{
    font-size:14px;
    color:#999;
    text-transform:Uppercase;
}