.wrapper {
    width: 960px;
    padding-left:10px;
    padding-right:10px;
    margin: 0 auto;
    box-sizing: border-box;
}
body {
    font-size: 10px;
    font-family:'Open Sans', sans-serif;
    color: #2a2a2a;
}
::-moz-selection {
    background-color: #433b49;
    color: #fff;
}
::selection {
    background-color: #433b49;
    color: #fff;
}
h1, h2, h3, h4, h5, h6 {
    font-family:'Roboto Condensed', sans-serif;
}
h2 {
    display: inline-block;
    font-size: 2.5em;
    border-bottom: 5px solid #e81e3f;
    padding-bottom: 5px;
}
main h2{
    margin-bottom: 15px;    
}
h3 {
    font-size: 2.5em;
    padding-bottom: 20px;
}
h5 {
    font-size: 2em;
}
h6 {
    font-size: 1.6em;
}
.info {
    position: relative;
    display: inline-block;
}
.info::after {
    content:'';
    position: absolute;
    top: 0;
    right: -15px;
    width: 15px;
    height: 15px;
    background: url('../img/info.png') no-repeat center center;
}
.hero p{
    font-size: 1.6em;
}
p {
    font-size: 1.4em;
    line-height: 1.7;
    padding: 10px 0;
}
p sub{
    display: block;
    padding-left: 15px;
}
p strong{
    font-weight: 600;
}
p em{
    font-style: italic;
}
article.padding{
    padding: 15px 0;
}
.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content:space-between;
}
.flex_center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items:center;
}
.flex_justify_center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content:center;
}
.flex_wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex_start{
   align-content:flex-start;
}
.hero {
    width: 100%;
    height: 690px;
    background: url('../img/hero.jpg') center 0 no-repeat fixed;
    background-size: cover;
    border-bottom: 10px solid rgba(16, 19, 64, 0.5);
}
.hero .content {
    margin-top: 135px;
}
.hero article {
    width: 460px;
    padding-top: 20px;
}
nav {
    height: 55px;
    font-size: 1.6em;
    color: #fff;
    background-color: rgba(16, 19, 64, 0.5);
}
nav ul {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items:center;
    height:50px;
}
nav li {
    border-radius: 2px;
    border: 1px solid transparent;
    padding: 5px 10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
nav li.current {
    color: #fff !important;
    border-color: #fff;
}
nav li:hover {
    color: #69bae7;
}
section.padding {
    padding-top: 30px;
    padding-bottom: 30px;
    box-sizing: border-box;
}
.button {
    display: block;
    width: 300px;
    height: 55px;
    line-height: 55px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    background-color: #e81e3f;
    border: 1px solid #e81e3f;
    font-size: 2em;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.button:hover {
    background-color: #fff;
    color: #e81e3f;
}
button{
    font-family: 'Open Sans',sans-serif;
    cursor: pointer;
    display: block;
    width: 170px;
    height: 35px;
    line-height: 33px;
    text-transform: capitalize;
    color: #fff;
    text-align: center;
    background-color: #e81e3f;
    border: 1px solid #e81e3f;
    font-size: 1.8em;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-top: 5px;
}
button:hover {
    background-color: #fff;
    color: #e81e3f;
}
button:focus{
    outline: none;
}