

body {
    margin: 0;
    padding: 0;
    background-color: #e9f1f4;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1.2em;
}

h1,h2,h3,h4,h5,h6 {
    margin: 0;
    padding: 0;
}

.blue_bright {
    color: #3ba6de;
}

.blue_dark {
    color: #12455b;
}

.container {
    width: 100%;
    margin: auto;
    padding: 0;
}

.header {
    text-align: center;
    background-color: #12455b;
    height: 200px;
    color: #ffffff;
}

.header .header_welcome {
    padding-top: 30px;
    font-weight: 200;
    text-transform: uppercase;
    opacity: 0.5;
}

.header .header_title {
    font-weight: 200;
    font-size: 2.2em;
}

.header .header_title span.bold{
    font-weight: 700;
}

.lead {
    padding-top: 40px;
    margin: auto;
    text-align: center;
}

.lead .title {
    font-weight: 600;
    font-size: 1.6em;
    text-transform: uppercase;
    padding-bottom: 4px;
}

.lead .subline {
    opacity: 0.5;
}

label {
    font-size: 0.8em;
    text-transform: uppercase;
}

.success {
    color: #0d862d;
    margin-top: 20px;
}

.navigation {
    margin-top: 24px;
}

.navigation ul {
    list-style-type: none;
    margin: 0;
    padding: 0;

}

.navigation li {
    list-style-type: none;
    margin: 0;
    display: inline;
    padding: 0 20px;
}

.navigation a {
    text-decoration: none;
    color: #04a9e4;
    transition: color 250ms ease-in;
}

.navigation a:hover {
    color: #1f7aaa;
    padding-bottom: 2px;
    border-bottom: 2px solid #04a9e4;
}

.navigation a.active {
    color: #ffffff;
    padding-bottom: 2px;
    border-bottom: 2px solid #ffffff;
}

.sections {
    margin-top: 40px;
}

.section {
    margin: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 150ms ease-in;
}

.section:hover {
    background-color: rgba(222, 245, 255, 0.05);
    box-shadow: 0 0 20px rgba(18, 69, 91, 0.1);
}

.section_title{
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: #12455b;
    margin-bottom: 4px;
}

.section_title span.icon {
    opacity: 0.4;
    padding-right: 4px;
}

.section_subline {
    text-align: center;
    font-size: 0.8em;
    opacity: 0.4;
}

.section_values {
    border-top: 1px solid rgba(18, 69, 91, 0.21);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
}

.title {
    font-weight: 400;
    font-size: 0.8em;
    text-transform: uppercase;
    padding-bottom: 6px;
    opacity: 0.2;
}

.value {
    font-weight: 600;
}

.byline {
    font-size: 0.8em;
    opacity: 0.4;
    font-style: italic;
}