
/*HMTL BODY*/
html, body { 
    background: #fff;
    margin: 0; padding: 0; 
    width:100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;	
    overflow-x: hidden;
    }

header {
    padding: 15px 0;
    background:#e9eff3;
    box-shadow: 04px 6px rgba(0,0,0,.2); 
    width: 100%; 
    }
  
.container {
    padding: 0 50px;
    max-width: 960px;
    margin: 0 auto;
    }

.logo-box {
    float: left;
    margin-right: 0;
    }
    .logo-box a {
    outline: none;
    display: block;
    }
    .logo-box img {display: block;
    padding: 0;
    }
  
  nav {
    overflow: hidden;
    }
  
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
     }

  nav li {
    display: inline-block;
    margin-left: 10px;
    height: 70px;
    line-height: 70px;
    transition: .5s linear;
  }

  nav a {
    text-decoration: none;
    display: block;
    position: relative;
    color: #0038e1;
    text-transform: lowercase;
    font-size: 15px;
  }

  nav a:after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 15px;
    background: #868686;
    transition: width .5s linear;  
  }
  
  nav a:hover:after {width: 100%;}
  
@media screen and (max-width:660px) {
    header {text-align: center;}
    .logo-box {
    float: none;
    display: inline-block;
    }

    ul {float: none;}
    nav li:first-of-type {margin-left: 10px;}
    }
  
@media screen and (max-width:550px) {
    nav {overflow: visible;}
    nav li {
    display: block;
    padding-left: 20px;
    height: 40px;
    line-height: 40px;
    }

    nav li:hover {background: rgba(0,0,0,.1);}
    nav a:after {content: none;}
    }

/*BANNER*/
.container_bnr .bnr h2, .container_bnr .bnr p {
    position: absolute;
    color: #0038e1;
}