/* GENERIC */


/* NORMALIZE */

/* RESET */
body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
figure,
table, th, td, caption,
hr {
    margin:  0;
    padding: 0;
}

/* BOX SIZING */
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

/* SHARED */
h1, h2, h3, h4, h5, h6,
ul, ol, dl,
blockquote, p, address,
table,
fieldset, figure,
pre {
    margin-bottom: 1.5em;
}
ul, ol, dd {
    margin-left: 1.875em;
}



/* BASE */


/* PAGE */
html {
    background-color: #eee;
    color: #303030;
    font-family: "Andale Sans W01", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1em;
    font-style: normal;
    font-weight: normal;
    line-height: 1.5;
    min-height: 100%;
    overflow-y: scroll;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
/*html, body {
    height: 100%;
}*/

/* TYPE */
@media screen and (min-width: 31.25em) {
    /* html {
        font-size: 112.5%;
    }
    .copy-base {
        font-size: 88.8888888889%;
    } */
}
@media screen and (min-width: 46.875em) {
    /* html {
        font-size: 125%;
    }
    .copy-base {
        font-size: 80%;
    } */
}
.copy-small, .modal--small {
    font-size: 87.5%;
}
@media screen and (min-width: 31.25em) {
    /* .copy-small, .modal--small {
        font-size: 77.777777778%;
    } */
}
.copy-muted {
    opacity: .6;
}

/* HEADINGS */
h1, .as-h1,
h2, .as-h2,
h3, .as-h3,
h4, .as-h4,
h5, .as-h5 {
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.5em;
}
h1, .as-h1 {
    font-size: 2.074em;
    margin-bottom: 0.125em;
}
h2, .as-h2 {
    font-size: 1.728em;
    /*margin-bottom: 0.125em;*/
}
h3, .as-h3 {
    font-size: 1.44em;
}
h4, .as-h4 {
    font-size: 1.2em;
}
h5, .as-h5 {
    font-size: 1em;
}
@media screen and (min-width: 31.25em) {
    /* h1, .as-h1 {
        font-size: 2em;
    } */
}
@media screen and (min-width: 62.5em) {
    /* h1, .as-h1 {
        font-size: 2.5em;
    }
    h2, .as-h2 {
        font-size: 2em;
    }
    h4, .as-h4 {
        font-size: 1.111111111em;
    } */
}

.heading-alt {
    font-family: "Andale Sans W01", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-style: italic;
    font-weight: 400 !important;
    margin-bottom: 24px;
    text-transform: uppercase;
}

/* PARAGRAPHS */
.intro {
    color: #808081;
    font-family: "Nimrod W01", Georgia, Times, "Times New Roman", serif;
    font-size: 1.25em;
    font-style: italic;
    line-height: 1.4;
    position: relative;
}
h2 + .intro {
    margin-top: -0.55em;
}
h3 + .intro {
    font-size: 1em;
    margin-top: -1em;
}
@media screen and (min-width: 31.25em) {
    h2 + .intro {
        margin-top: -0.572222222em;
    }
}
@media screen and (min-width: 62.5em) {
    .intro {
        font-size: 1.333333333em;
    }
    h2 + .intro {
        margin-top: -0.583333333em;
    }
}

/* BLOCKQUOTE */
blockquote {
    text-align: center;
}
blockquote:before,
blockquote:after {
    content: "";
    display: block;
    width: 150px;
    margin: 0 auto 1.875em;
    border-top: 2px solid #f07d00;
}
blockquote:after {
    margin: 1.875em auto 0;
}
blockquote p {
    font-size: 1.5em;
    margin-bottom: 0.25em;
}
@media screen and (min-width: 62.5em) {
    blockquote p {
        font-size: 1.8em;
    }
}

/* FIGURE */
figcaption {
    font-size: 14px;
}

/* LINKS */
a {
    color: #2463AB;
    text-decoration: none;
    -webkit-transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out, opacity 0.25s ease-in-out;
    transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
.link-invert,
.link-invert a {
    color: inherit;
}
.link-block {
    display: block;
    outline: none;
}
.link-block:active,
.link-block:focus {
    outline: none;
}
.link-invert [class*='title'] {
    -webkit-transition: color 0.25s ease-in-out;
    transition: color 0.25s ease-in-out;
}
.link-invert:hover [class*='title'],
.link-invert a:hover {
    color: #2463AB;
}

/* LISTS */
nav ul {
    list-style: none;
    margin-bottom: 0;
    margin-left: 0;
}
li > ul, li > ol {
    margin-bottom: 0;
}

/* IMAGES */
img {
    max-width: 100%;
    vertical-align: middle;
}
.gm-style img,
img[width],
img[height] {
    max-width: none;
}

/* HR */
hr {
    background: #e0e0e0;
    border: 0;
    height: 1px;
}



/* OBJECTS */


/* CONTAINER */
.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 90%;
}
.container:after {
    content: "";
    display: table;
    clear: both;
}

/* GRID */
.grid {
    clear: both;
    display: block;
    padding: 0;
    margin-left: -30px;
    text-align: left;
}
.grid:after {
    content: "";
    display: table;
    clear: both;
}
.grid__item {
    float: left;
    padding-left: 30px;
    width: 100%;
}
.grid--tiny {
    margin-left: 0;
}
.grid--small {
    margin-left: -18px;
}
.grid--medium {
    margin-left: -30px;
}
.grid--large {
    margin-left: -48px;
}
.grid--huge {
    margin-left: -60px;
}
.grid--tiny > .grid__item {
    padding-left: 0;
}
.grid--small > .grid__item {
    padding-left: 18px;
}
.grid--medium > .grid__item {
    padding-left: 30px;
}
.grid--large > .grid__item {
    padding-left: 48px;
}
.grid--huge > .grid__item {
    padding-left: 60px;
}
.grid--rev > .grid__item:first-child {
    float: right;
}

/* LAYOUT */
.layout-block {
    margin-bottom: 1.875em;
}
.layout-block--small {
    margin-bottom: 0.9375em;
}
@media screen and (min-width: 31.25em) {
    .layout-block {
        margin-bottom: 2em;
    }
    .layout-block--small {
        margin-bottom: 1em;
    }
}
@media screen and (min-width: 46.875em) {
    .layout-block {
        margin-bottom: 3em;
    }
    .layout-block--small {
        margin-bottom: 1.2em;
    }
}
/*.layout-block > *:last-child {
    margin-bottom: 0;
}*/
.layout-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}
@media screen and (min-width: 61.5em) {
    .grid .layout-container {
        margin-left: 0;
        margin-right: 0;
    }
}
.layout-container--small {
    max-width: 700px;
}
.layout-container--medium {
    max-width: 1000px;
}

.layout-cover {
    position: relative;
}

.layout-cover__image {
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 24px;
    margin-left: 30px;
    padding-bottom: 56.25%;
}

.layout-cover--rev .layout-cover__image {
    background-position: left bottom;
}

.layout-separator {
    border-top: 2px solid #000;
    max-width: 85%;
    padding-top: 36px;
}

.layout-separator--rev {
    margin-left: auto;
}

@media screen and (min-width: 46.875em) {
    .layout-cover__image {
        bottom: 0;
        left: 0;
        margin-left: 0;
        margin-right: 15px;
        padding-bottom: 0;
        position: absolute;
        right: 50%;
        top: 0;
    }

    .layout-cover--rev .layout-cover__image {
        left: 50%;
        margin-left: 15px;
        margin-right: 0;
        right: 0;
    }    

    .layout-cover__content {
        margin-left: 50%;
    }

    .layout-cover--rev .layout-cover__content {
        margin-left: 0;
    }
}

/* VIDEO */
.video {
    padding-bottom: 66.6%;
    position: relative;
    overflow: hidden;
}
.video iframe,
.video object,
.video embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/* TILE LIST */
.tile-list {
    position: relative;
}
.tile-list--small {
    margin-bottom: -30px;
}

/* TILE */
.tile__image {
    background-color: #f5f5f5;
    background-image: -webkit-linear-gradient(bottom, #f5f5f5, #fff 50%, #f5f5f5 100%);
    background-image: linear-gradient(to top, #f5f5f5, #fff 50%, #f5f5f5 100%);
    margin-bottom: 1.5em;
}
.tile__copy > *:last-child {
    margin-bottom: 0;
}
.tile--small {
    background: #2463AB;
    margin-bottom: 30px;
    position: relative;
}
.tile--small:before {
    content: "";
    display: block;
    padding-top: 62%;
}
.tile--small .link-block {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.tile--small .tile__image {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
    opacity: 0.8;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
}
.tile--small .link-block:hover .tile__image {
    opacity: 1;
}
.tile--small .tile__overlay {
    background: #123256;
    background: -webkit-linear-gradient(bottom, #123256, rgba(0, 0, 0, 0) 62%);
    background: linear-gradient(to top, #123256, rgba(0, 0, 0, 0) 62%);
    bottom: 0;
    left: 0;
    opacity: 0.8;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
}
.tile--small .link-block:hover .tile__overlay {
    opacity: 1;
}
.tile--small .tile__copy {
    bottom: 0;
    left: 0;
    padding: 1.5em 3.25em 1.25em 1.5em;
    position: absolute;
    right: 0;
}
.tile--small .tile__title {
    color: #fff;
    margin-bottom: 0;
}
.tile--small .dropdown {
    bottom: 1em;
    position: absolute;
    right: 1em;
}
.tile--small .tile__nav .hidden {
    display: none;
}
.tile--small .tile__nav__links {
    position: absolute;
}

/* BOX */
.box {
    background-color: #e0e0e0;
    margin-bottom: 1.5em;
    padding: 1.875em;
}
.box > *:last-child {
    margin-bottom: 0;
}
.box--small {
    padding: 1.25em;
}
.box__title {
    font-size: 1.125em;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

/* LIST */
.list,
.list__item {
    border: 0 solid #e0e0e0;
}
.list {
    border-top-width: 1px;
    list-style: none;
    margin-bottom: 1.5em;
    margin-left: 0;
    padding: 0;
}
.list__item {
    border-bottom-width: 1px;
    padding-bottom: 1.5em;
    padding-top: 1.5em;
}
.list__item > * {
    margin-bottom: 0;
}
.list--small .list__item {
    padding-bottom: 0.625em;
    padding-top: 0.625em;
}
.list--large .list__item {
    padding-bottom: 2.25em;
    padding-top: 2.25em;
}

/* LIST BLOCK */
.list-block {
    list-style: none;
    margin-bottom: 1.5em;
    margin-left: 0;
    padding: 0;
}
.list-block__item {
    background-color: #fff;
    margin-bottom: 16px;
    position: relative;
}
.list-block__cover {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 56.25%;
}
@media screen and (min-width: 31.25em) {
    .list-block__cover {
        height: 100%;
        left: 0;
        padding-bottom: 0;
        position: absolute;
        top: 0;
        width: 33.33333333%;
    }
}
.list-block__body {
    padding: 24px;
}
.list-block__body > *:last-child {
    margin-bottom: 0;
}
@media screen and (min-width: 31.25em) {
    .list-block__cover + .list-block__body {
        margin-left: 33.33333333%;
        min-height: 180px;
    }
}

/* RICH TEXT */
.rich-text img[style*="left"] {
    margin-bottom: 24px !important;
    margin-right: 30px !important;
    max-width: 50%;
}
.rich-text img[style*="right"] {
    margin-bottom: 24px !important;
    margin-left: 30px !important;
    max-width: 50%;
}
.rich-text .drop-caps {
    font-family: "Nimrod W01", Georgia, Times, "Times New Roman", serif;
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
}

/* TABLE */
.table,
.rich-text table {
    width: 100%;
}
.table th,
.rich-text table th {
    border-bottom: 1px solid #e0e0e0;
    font-weight: 700;
    padding: 8px 12px;
    text-align: left;
}
.table thead th,
.rich-text thead th {
    padding-bottom: 6px;
    padding-top: 6px;
}
.table td,
.rich-text table td {
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 12px;
}
.table th:first-child,
.table td:first-child,
.rich-text table th:first-child,
.rich-text table td:first-child {
    padding-left: 0;
}
.table th:last-child,
.table td:last-child,
.rich-text table th:last-child,
.rich-text table td:last-child {
    padding-right: 0;
}
.table .separator th,
.rich-text table .separator th {
    padding-top: 24px;
}
.table .value,
.rich-text table .value {
    padding-left: 4px;
    padding-right: 4px;
    text-align: center;
    width: 24px;
}

/* MEDIA */
.media:after {
    content: "";
    clear: both;
    display: table;
}
.media__body {
    display: block;
    overflow: hidden;
}
.media__body > *:last-child {
    margin-bottom: 0;
}
.media__head {
    float: left;
    margin-right: 1.25em;
    padding-bottom: 0;
    max-width: 7.5em;
}
.media--rev .media__head {
    float: right;
    margin-left: 1.25em;
    margin-right: 0;
}
.media--tiny .media__head {
    margin-right: 0.625em;
    max-width: 5em;
}
.media--tiny.media--rev .media__head {
    margin-left: 0.625em;
}
.media--large .media__head {
    margin-right: 1.875em;
    max-width: 15em;
}
.media--large.media--rev .media__head {
    margin-left: 1.875em;
}
@media screen and (max-width: 31.25em) {
    .media--responsive .media__head {
        float: none;
        margin-bottom: 1.125em;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }
}
.media__title {
    /*margin-bottom: 0.25em;*/
}

/* VALIGN MIDDLE */
.valign-middle {
    display: table;
    height: 100%;
    width: 100%;
}
.valign-middle__item {
    display: table-cell;
    vertical-align: middle;
}

/* BUTTONS */
.btn {
    background: #e0e0e0;
    border-radius: 2px;
    border: none;
    /*box-shadow: 0 1px 2px rgba(0,0,0,0.2);*/
    color: #212121;
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    height: 48px;
    line-height: 48px;
    margin: 0;
    max-width: 100%;
    outline: none;
    overflow: hidden;
    padding: 0 30px;
    text-align: center;
    text-overflow: ellipsis;
    -webkit-transition: background 0.25s ease-in-out, color 0.25s ease-in-out;
    transition: background 0.25s ease-in-out, color 0.25s ease-in-out;
    vertical-align: middle;
    white-space: nowrap;
}
.btn:hover {
    background: #bdbdbd;
}
.btn:active {
    background: #9e9e9e;
    outline: none;
}
.btn--invert {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.btn--transparent {
    background: transparent;
    box-shadow: none;
}
.btn--invert:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
.btn--invert:active {
    background-color: rgba(255, 255, 255, 0.4);
}
.btn--primary {
    background-color: #2463AB;
    color: #fff;
}
.btn--primary:hover {
    background-color: #457ab8;
}
.btn--secondary {
    background-color: #3a73b4;
    color: #fff;
}
.btn--secondary:hover {
    background-color: #457ab8;
}
.btn--small, .modal--small .btn {
    height: 36px;
    line-height: 36px;
    padding: 0 15px;
}
.btn--icon {
    border-radius: 50%;
    font-size: 30px;
    padding: 0;
    position: relative;
    width: 48px;
}
.btn--small.btn--icon, .modal--small .btn.btn--icon {
    font-size: 20px;
    width: 36px;
}
.btn--icon [class*="icon"] {
    left: 50%;
    line-height: 48px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-24px,-24px);
    -ms-transform: translate(-24px,-24px);
    transform: translate(-24px,-24px);
    width: 48px;
}
.btn--small.btn--icon [class*="icon"], .modal--small .btn.btn--icon [class*="icon"] {
    line-height: 36px;
    -webkit-transform: translate(-18px,-18px);
    -ms-transform: translate(-18px,-18px);
    transform: translate(-18px,-18px);
    width: 36px;
}
.btn--shadow {
    box-shadow: 0 0 0 16px rgba(0, 0, 0, 0.5);
}
.btn--white,
.btn--white:hover {
    background-color: #fff;
    color: #2463AB;
}
.btn--block {
    display: block;
    width: 100%;
}
.btn-group .btn {
    margin-bottom: 4px;
}

/* DROPDOWN */
.dropdown {
    display: inline-block;
    position: relative;
}
.dropdown__menu {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),0 3px 1px -2px rgba(0, 0, 0, 0.2),0 1px 5px 0 rgba(0, 0, 0, 0.12);
    display: none;
    left: 0;
    list-style: none;
    margin: 0;
    min-width: 240px;
    padding: 6px 0;
    position: absolute;
    top: 100%;
    z-index: 999;
}
.dropdown__menu--top-right {
    bottom: 100%;
    left: auto;
    right: 0;
    top: auto;
}
.dropdown__menu--bottom-right {
    bottom: auto;
    left: auto;
    right: 0;
    top: 100%;
}
.dropdown__menu.is-visible {
    display: block;
}
.dropdown__menu > li > a {
    color: #303030;
    display: block;
    padding: 12px 16px;
}
.dropdown__menu--small > li > a {
    font-size: 14px;
    line-height: 20px;
    padding: 8px 16px;
}
.dropdown__menu > li > a:hover {
    background-color: #e0e0e0;
}

/* PAGINATION */
.pagination {
    list-style: none;
    margin-bottom: 1.5em;
    margin-left: 0;
    padding: 0;
}
.pagination li {
    float: left;
    margin-right: 4px;
}
.pagination a {
    display: inline-block;
    padding: 2px 4px;
}
.pagination a:hover {
    background-color: #eee;
}

/* ICONS */
[class^="icon-"], [class*=" icon-"] {
    display: inline-block;
}

/* FORMS */
fieldset {
    border: none;
    margin-bottom: 1.5em;
}
fieldset:last-child {
    margin-bottom: 0;
}
.legend {
    margin-bottom: 1em;
}
.form-group {
    margin-bottom: 1.25em;
}
@media screen and (min-width: 31.25em) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 8px;
        vertical-align: middle;
    }
}
label {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0.25em;
    max-width: 100%;
}
label > .label-helper {
    font-weight: 400;
    font-size: .8em;
    font-style: italic;
}
.form-control {
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #bdbdbd;
    display: block;
    font-size: 16px;
    height: 48px;
    line-height: 36px;
    padding: 6px 12px;
    width: 100%;
}
@media screen and (min-width: 31.25em) {
    .form-inline .form-control {
        display: inline-block;
        vertical-align: middle;
        width: auto;
    }
}
.form-control:focus {
    border-color: #2463AB;
    outline: 0;
}
textarea.form-control {
    height: auto;
}
.form-control-static {
    font-size: 16px;
    line-height: 36px;
    margin-bottom: 0;
    min-height: 48px;
    padding-bottom: 6px;
    padding-top: 6px;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    opacity: 0.6;
}
.checkbox, .radio {
    display: block;
    margin-bottom: 0.5em;
}
.checkbox--large {
    margin-bottom: 0;
}
.checkbox label, .radio label {
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 0;
    min-height: 24px;
    padding-left: 20px;
    position: relative;
}
.checkbox--large .checkbox__label {
    padding-left: 30px;
}
.checkbox-inline, .radio-inline {
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    margin-bottom: 0;
    padding-left: 20px;
    position: relative;
    vertical-align: middle;
}
.checkbox-inline+.checkbox-inline, .radio-inline+.radio-inline {
  margin-left: 8px;
}
.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
    left: 0;
    margin-top: 6px;
    position: absolute;
    top: 0;
}
.checkbox__title,
.radio__title {
    display: inline-block;
    margin-bottom: 0;
}
.help-block {
    display: block;
    font-size: 16px;
    margin-bottom: 0.5em;
    margin-top: 0.5em;
    color: #757575;
}
.has-success .checkbox, .has-success .checkbox-inline, .has-success .control-label, .has-success .help-block, .has-success .radio, .has-success .radio-inline, .has-success.checkbox label, .has-success.checkbox-inline label, .has-success.radio label, .has-success.radio-inline label {
    color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
}
.has-warning .checkbox, .has-warning .checkbox-inline, .has-warning .control-label, .has-warning .help-block, .has-warning .radio, .has-warning .radio-inline, .has-warning.checkbox label, .has-warning.checkbox-inline label, .has-warning.radio label, .has-warning.radio-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
}
.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
}

/* ALERTS */
.alert {
    font-size: 16px;
    padding: 12px;
    margin-bottom: 1.5em;
}
.alert--success {
    background-color: #dff0d8;
    color: #3c763d;
}
.alert--info {
    background-color: #d9edf7;
    color: #31708f;
}
.alert--warning {
    background-color: #fcf8e3;
    color: #8a6d3b;
}
.alert--danger {
    background-color: #f2dede;
    color: #a94442;
}

/* BUBBLE */
.bubble {
    background: #2463AB;
    border-radius: 10px;
    color: #fff;
    display: inline-block;
    margin-top: 15px;
    padding: 1em;
    position: relative;
}
.bubble:after {
    border-color: #2463AB transparent;
    border-style: solid;
    border-width: 0 15px 15px;
    content: '';
    display: block;
    left: 50%;
    margin-left: -15px;
    position: absolute;
    top: -15px;
    width: 0;
    z-index: 1;
}



/* COMPONENTS */


/* HEADER */
.header {
    background-color: #fff;
    position: relative;
    z-index: 10;
}
.header__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    position: relative;
    width: 90%;
}
.header__container:after {
    content: "";
    display: table;
    clear: both;
}

/* LOGO */
.logo {
    display: inline-block;
    float: left;
    padding-bottom: 27px;
    padding-top: 27px;
}
.logo--large {
    padding-bottom: 12px;
    padding-top: 12px;
}
@media screen and (min-width: 75em) {
    .logo {
        float: none;
        left: 0;
        position: absolute;
        top: 0;
    }
}
.logo img {
    height: 30px;
}
.logo--large img {
    height: 60px;
}

/* SITE NAV */
.site-nav__menu > li > a {
    color: inherit;
    display: block;
    font-weight: 700;
    opacity: 0.6;
}
.site-nav__menu > li > a:hover,
.site-nav__menu > .active > a {
    opacity: 1;
}
.site-nav__language {
    padding-top: 24px;
}
.site-nav__language .dropdown__trigger img {
    display: inline-block;
    height: 20px;
    margin-right: 4px;
    margin-top: 8px;
    vertical-align: top;
}
.site-nav__language .dropdown__menu img {
    display: inline-block;
    height: 20px;
    margin-right: 4px;
    vertical-align: top;
}
@media screen and (max-width: 62.5em) {
    .site-nav {
        background-color: #fff;
        color: #000;
        height: 100%;
        left: 0;
        opacity: 0;
        overflow: auto;
        position: fixed;
        top: 0;
        visibility: hidden;
        width: 100%;
        z-index: 9;
    }
    .site-nav.is-closing {
        -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
        transition: opacity 0.5s, visibility 0s 0.5s;
    }
    .site-nav.is-open {
        opacity: 1;
        -webkit-transition: opacity 0.5s;
        transition: opacity 0.5s;
        visibility: visible;
    }
    .site-nav__primary {
        margin: 0 auto;
        position: relative;
        text-align: center;
        top: 50%;
        -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        width: 90%;
    }
    .site-nav__menu > li {
        border-bottom: 1px solid #eee;
    }
    .site-nav__menu > li > a {
        padding-bottom: 12px;
        padding-top: 12px;
    }
    .site-nav__secondary {
        margin-right: 48px;
        position: absolute;
        right: 5%;
        top: 0;
    }
}
@media screen and (min-width: 62.5em) {
    .site-nav {
        float: right;
    }
    .site-nav__primary {
        float: left;
    }
    .site-nav__menu > li {
        display: inline-block;
    }
    .site-nav__menu > li > a {
        display: inline-block;
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 30px;
    }
    .site-nav__secondary {
        float: left;
        margin-left: 15px;
    }
}
@media screen and (min-width: 75em) {
    .site-nav {
        float: none;
    }
    .site-nav__primary {
        float: none;
        text-align: center;
    }
    .site-nav__menu > li {
        display: inline-block;
    }
    .site-nav__menu > li > a {
        display: inline-block;
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 30px;
    }
    .site-nav__secondary {
        float: none;
        position: absolute;
        right: 0;
        top: 0;
    }
}
.site-nav-trigger {
    right: 0;
    position: absolute;
    top: 24px;
    z-index: 10;
}
@media screen and (min-width: 62.5em) {
    .site-nav-trigger {
        display: none;
    }
}
.site-nav-trigger.is-clicked {
    position: fixed;
    right: 5%;
}

/* MAIN */
.main {
    background-color: #eee;
}

/* COVER */
.cover {
    height: 480px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1600px;
    overflow: hidden;
    position: relative;
    text-align: right;
}
@media screen and (min-width: 46.875em) {
    .cover {
        height: 640px;
    }
}
.cover--small {
    height: 240px;
}
@media screen and (min-width: 46.875em) {
    .cover--small {
        height: 320px;
    }
}
@media screen and (min-width: 62.5em) {
    .cover--small {
        height: 480px;
    }
}
.cover--rev {
    text-align: left;
}
.cover__image {
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.cover__image > img {
    display: none;
}
.cover--small .cover__image {
    /*background-position: 50% 50%;*/
}
.cover__video {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
    height: auto;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: auto;
    z-index: 2;
}
@media screen and (min-width: 46.875em) {
    .cover__video {
        display: block;
    }
}
.cover__body,
.cover__container {
    height: 100%;
}
.cover__body {
    position: relative;
    z-index: 4;
}
.cover__container {
    display: table;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    position: relative;
    width: 90%;
}
.cover__container__inner {
    display: table-cell;
    vertical-align: middle;
}
.cover__content {
    display: inline-block;
    position: relative;
    max-width: 600px;
    text-align: left;
    /*width: 50%;*/
    z-index: 1;
}
.cover__copy {
    background-color: rgba(255,255,255,0.9);
    padding: 2.4em;
}
.cover__copy > *:last-child {
    margin-bottom: 0;
}
.cover__heading + .cover__text {
    margin-top: 1.5em;
}
.cover__heading > *:last-child {
    margin-bottom: 0;
}
.cover__text p {
    margin-bottom: 0;
}
.cover__overlay {
    display: none;
    z-index: 3;
}
.cover__overlay.cover__overlay--primary {
    background-color: rgba(36,99,171,1);
    bottom: 0;
    display: block;
    left: 0;
    opacity: 0.8;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
}
@media screen and (min-width: 62.5em) {
    .cover--fade {
        padding-bottom: 6em;
    }
    .cover--fade .cover__overlay {
        background-image: -webkit-linear-gradient(bottom, #EEE, transparent 50%);
        background-image: linear-gradient(to top, #EEE, transparent 50%);
        bottom: 0;
        display: block;
        left: 0;
        opacity: 1;
        position: absolute;
        right: 0;
        top: 0;
    }
    .cover--fade + .article--white > .article__container {
        margin-top: -6em;
    }
}

/* COVER SLIDER */
.cover-slider {
    position: relative;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
.cover-slider.is-hidden {
    display: none;
}
.cover-slider.flickity-enabled {
    opacity: 1;
}
.cover-slider__item {
    opacity: 0.5;
    width: 100%;
    -webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.cover-slider__item.is-selected {
    opacity: 1;
}
.cover-slider-nav-container {
    bottom: 3em;
    position: absolute;
    width: 100%;
    z-index: 2;
}
.cover-slider-nav {
    margin: 0 auto;
    max-width: 1200px;
    width: 90%;
}
.cover-slider-nav__item {
    margin-right: 15px;
    opacity: 0.5;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    width: 50%;
}
@media screen and (min-width: 31.25em) {
    .cover-slider-nav__item {
        width: 25%;
    }
}
@media screen and (min-width: 62.5em) {
    .cover-slider-nav__item {
        width: 16.666666667%;
    }
}
.cover-slider-nav__item.is-nav-selected {
    opacity: 1;
}
.cover-slider .flickity-page-dots {
    display: none;
}

/* SUB NAV */
.sub-nav {
    background: #2463AB;
    /*box-shadow: 0 3px 6px rgba(0,0,0,0.25);*/
    color: #fff;
    position: relative;
    z-index: 9;
}
@media screen and (min-width: 62.5em) {
    .sub-nav.is-sticky {
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
    }
}
.sub-nav__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    position: relative;
    width: 90%;
}
.sub-nav__container:after {
  content: "";
  display: table;
  clear: both;
}
.sub-nav__primary {
    display: inline-block;
}
.sub-nav__secondary {
    float: right;
}
.sub-nav__back {
    margin-right: 4px;
}
.sub-nav__title {
    color: inherit;
    display: inline-block;
    font-size: 1.125em;
    font-weight: 700;
    line-height: 24px;
    padding: 18px 0;
    vertical-align: middle;
}
.sub-nav__menu {
    display: inline-table;
}
.sub-nav__menu > li {
    display: table-cell;
    white-space: nowrap;
}
.sub-nav__menu > li > a {
    border-bottom: 2px solid transparent;
    color: inherit;
    display: block;
    opacity: 0.8;
    padding: 18px 15px 16px;
}
.sub-nav__menu > li > a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}
.sub-nav__menu > .active > a {
    border-color: #fff;
    opacity: 1;
}
.sub-nav .dropdown {
    margin-top: 12px;
    vertical-align: top;
}
.sub-nav .dropdown.is-hidden {
    display: none;
}
.sub-nav__actions {
    display: inline-block;
    margin-bottom: 12px;
    margin-top: 12px;
    vertical-align: top;
}

/* HEADER STRIP */
.header-strip {
    background: #2463AB;
    /*box-shadow: 0 3px 6px rgba(0,0,0,0.25);*/
    color: #fff;
    position: relative;
    z-index: 9;
}
.header-strip__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    position: relative;
    width: 90%;
}
.header-strip__container:after {
  content: "";
  display: table;
  clear: both;
}
.header-strip__primary {
    overflow: hidden;
    white-space: nowrap;
}
.header-strip__secondary {
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
}
/*.header-strip__secondary:before {
    content: "";
    position: absolute;
    left: -36px;
    top: 0;
    background: linear-gradient(to left, #2463AB, rgba(0, 0, 0, 0) 100%);
    width: 36px;
    height: 100%;
}*/
.header-strip__back {
    margin-right: 8px;
}
.header-strip__title {
    color: inherit;
    display: inline-block;
    font-size: 1.125em;
    font-weight: 700;
    line-height: 24px;
    padding: 18px 0;
    vertical-align: middle;
}
.header-strip__actions,
.header-strip__social {
    display: inline-block;
    margin-bottom: 12px;
    margin-top: 12px;
    vertical-align: middle;
}
.header-strip__actions > .btn {
    display: none;
}
@media screen and (min-width: 46.875em) {
    .header-strip__actions .dropdown {
        display: none;
    }
    .header-strip__actions > .btn {
        display: inline-block;
        margin-left: 4px;
    }
}
.header-strip__social {
    /*margin-left: 12px;*/
}

/* TABS NAV */
.tabs-nav {
    text-align: center;
}
.tabs-nav__menu {
    display: block;
    list-style: none;
    margin-bottom: 0;
    margin-left: 0;
}
@media screen and (min-width: 31.25em) {
    .tabs-nav__menu {
        display: inline-table;
    }
}
.tabs-nav__menu > li {
    display: block;
}
@media screen and (min-width: 31.15em) {
    .tabs-nav__menu > li {
        display: table-cell;
    }
}
.tabs-nav__menu > li > a {
    background-color: #e0e0e0;
    color: #757575;
    display: block;
    font-size: 14px;
    font-weight: bold;
    line-height: 24px;
    outline: none;
    padding: 12px 24px;
    -webkit-transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
    transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}
.tabs-nav__menu > li > a:hover {
    color: inherit;
}
.tabs-nav__menu > li > a:active {
    color: inherit;
    outline: none;
}
.tabs-nav__menu > .active > a {
    background-color: #2463AB;
    color: #fff;
}
.tabs-nav__menu > .active > a:hover {
    color: #fff;
}
.tabs-nav__menu > li:first-child > a {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}
@media screen and (min-width: 31.15em) {
    .tabs-nav__menu > li:first-child > a {
        border-top-left-radius: 2px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 2px;
    }
}
.tabs-nav__menu > li:last-child > a {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}
@media screen and (min-width: 31.15em) {
    .tabs-nav__menu > li:last-child > a {
        border-top-right-radius: 2px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 2px;
    }
}

/* HEADING */
.heading {
    margin-bottom: 3em;
}
.heading > *:first-child {
    margin-bottom: 0.125em;
}
.heading > *:last-child {
    margin-bottom: 0;
}

/* SECTION */
.section {
}
.section__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding-top: 3em;
    width: 90%;
}
.section__container:after {
    content: "";
    display: table;
    clear: both;
}
@media screen and (min-width: 62.5em) {
    .section__container {
        padding-bottom: 0.6em;
        padding-top: 3em;
    }
}

/* ARTICLE */
.article {
}
.article__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding-top: 3em;
    position: relative;
    width: 90%;
    z-index: 5;
}
.article--white .article__container {
    background-color: #fff;
    padding-left: 5%;
    padding-right: 5%;
    width: 100%;
}
@media screen and (min-width: 62.5em) {
    .article--white .article__container {
        padding-left: 3em;
        padding-right: 3em;
        padding-top: 3em;
        margin-top: 3em;
        margin-bottom: 3em;
        width: 90%;
    }
}
.article__container:after {
    content: "";
    display: table;
    clear: both;
}
.article__meta {
    color: #808081;
    font-family: "Nimrod W01", Georgia, Times, "Times New Roman", serif;
    font-size: 1.125em;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0.25em;
}
@media screen and (min-width: 62.5em) {
    .article__sidebar {
        float: left;
        padding-right: 3em;
        width: 28%;
    }
    .article__sidebar + .article__content {
        float: right;
        width: 72%;
    }
    .article__sidebar + .article__content .layout-container {
        margin-left: 0;
        margin-right: 0;
    }
}

/* TOC NAV */
.toc-nav__menu > li {
    border-bottom: 1px solid #e0e0e0;
}
.toc-nav__menu li a {
    color: inherit;
    display: block;
    opacity: 0.6;
}
.toc-nav__menu li a:hover,
.toc-nav__menu .active > a {
    opacity: 1;
}
.toc-nav__menu {
    margin-bottom: 3em;
}
.toc-nav__menu > li > a {
    /*font-size: 1.125em;*/
    font-weight: 700;
    line-height: 24px;
    padding: 12px 0;
}
.toc-nav__menu > li > ul {
    margin-bottom: 12px;
    margin-left: 20px;
    margin-top: -6px;
    position: relative;
}
.toc-nav__menu > li > ul > li > a {
    font-size: 0.875em;
    font-weight: 700;
    padding: 6px 0;
}
.toc-nav__secondary {
    display: none;
}
@media screen and (min-width: 62.5em) {
    .toc-nav__secondary {
        display: block;
    }
}
.toc-nav__links > li > a {
    color: inherit;
    display: inline-block;
    font-weight: 700;
    opacity: 0.6;
    padding: 0.5em 0;
}

/* DOCK NAV */
.dock-nav {
    background-color: #123256;
    color: #fff;
    -webkit-transition: background-color 0.25s ease-in-out;
    transition: background-color 0.25s ease-in-out;
}
@media screen and (min-width: 62.5em) {
    .dock-nav-wrapper {
        height: 72px;
    }
    .dock-nav.is-sticky {
        background-color: #2463AB;
        bottom: 0;
        left: 0;
        position: fixed;
        width: 100%;
        z-index: 9;
    }
}
.dock-nav__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    -webkit-transition: max-width 0.25s ease-in-out;
    transition: max-width 0.25s ease-in-out;
    width: 90%;
}
@media screen and (min-width: 62.5em) {
    .dock-nav.is-sticky .dock-nav__container {
        max-width: 1200px;
    }
}
.dock-nav__:after {
    content: "";
    display: table;
    clear: both;
}
.dock-nav__links {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}
@media screen and (min-width: 46.875em) {
    .dock-nav__links {
        display: table;
        margin-top: 12px;
        table-layout: fixed;
        width: 100%;
    }
}
.dock-nav__links > li {
    display: block;
    padding-bottom: 12px;
}
@media screen and (min-width: 46.875em) {
    .dock-nav__links > li {
        display: table-cell;
        padding-left: 12px;
        vertical-align: middle;
    }
    .dock-nav__links > li:first-child {
        padding-left: 0;
    }
}
/*.dock-nav__links > li > a {
    color: inherit;
    display: block;
    font-weight: 700;
    opacity: 0.8;
    padding: 12px 0;
    text-align: center;
}
.dock-nav__links > li > a:hover {
    background-color: rgba(255,255,255,0.1);
    opacity: 1;
}*/

.dock-nav__links > li > a {
    display: block;
    padding: 0 12px 12px;
    text-overflow: initial;
    white-space: initial;
}
.dock-nav__links > li > a > span {
    display: inline-block;
    line-height: 1.2;
    vertical-align: middle;
}

/* LIST */
.list--icon .list__item {
    padding-left: 2.25em;
    position: relative;
}
.list--icon .list__item:before {
    background-color: rgba(0,0,0,0.1);
    border-radius: 50%;
    content: "\e626";
    display: inline-block;
    font-family: 'icomoon';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    height: 1.5em;
    left: 0;
    line-height: 1.5em;
    position: absolute;
    speak: none;
    text-align: center;
    text-transform: none;
    width: 1.5em;
}
.list--arrow .list__item:before {
    content: "\e626";
}
.list--check .list__item:before {
    content: "\e67d";
}

/* UMFRAGE // VOTE */
.numbers .grid__item {
    text-align: center;
}
.numbers .grid__item:first-child {
    text-align: right;
}
.numbers .grid__item:first-child input {
    left: auto;
    right: 0;
}
.numbers .grid__item:last-child {
    text-align: left;
}
.numbers .radio {
display: inline-block;
}
.numbers label {
padding: 0;
}
.limit {
    color: #aaa;
    font-size: 87.5%;
    transition: color 0.3s ease-in-out;
}
@media screen and (min-width: 31.25em) {
    .limit {
        font-size: 77.777777778%;
    }
}
.limit.has-error {
    color: #a94442;
}

/* PROGRESS */
/*
 * Active: #2463AB
 * Standard: rgb(201,216,234)
*/
.progress {
    margin-bottom: 2em;
    text-align: center;
}
.progress ul {
    background: #e0e0e0;
    display: table;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    table-layout: fixed;
    text-align: center;
    width: 100%;
}
.progress li {
    color: #757575;
    display: table-cell;
    font-size: 0.875em;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
    padding: 12px 12px 12px 24px;
    position: relative;
    transition: all 0.1s ease-in-out;
}
.progress a,
.progress span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.1s ease-in-out;
    white-space: nowrap;
}
.progress li:after {
    border-color: transparent transparent transparent #e0e0e0;
    border-style: solid;
    border-width: 24px 0 24px 12px;
    content: "";
    display: block;
    height: 0;
    position: absolute;
    right: -12px;
    top: 0;
    width: 0;
    transition: border-color 0.1s ease-in-out;
    z-index: 1000;
}
/*.progress li:hover,*/
.progress li.active {
    background: #2463AB;
    color: #fff;
}
/*.progress li:hover a,*/
.progress li.active a,
.progress li.active span {
    color: #fff;
}
/*.progress li:hover:after,*/
.progress li.active:after {
    border-color: transparent transparent transparent #2463AB;
}
.progress li:first-child:before {
    border-color: transparent transparent transparent #fff;
    border-style: solid;
    border-width: 24px 0 24px 12px;
    content: "";
    display: block;
    height: 0;
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    width: 0;
    transition: border-color 0.1s ease-in-out;
    z-index: 1000;
}
/*.progress li:last-child:after {*/
    /*border: none;*/
/*}*/
.progress-rm {
    margin-bottom: 4px;
}
.progress-rm__image {
    left: 0;
    position: relative;
    text-align: center;
    transition: all 1s ease-in-out;
    width: 20%;
}
.progress-rm__image img {
}

.chart-antworten {
    list-style: none;
}
.chart-antworten .chart-antwort {

}
.chart-antworten .chart-antwort:before {
    content: "";
    display: block;
    height: 10px;
    width: 10px;
    position: absolute;
    margin-left: -20px;
    margin-top: 9px;
}

.keine-angabe {
    display: none;
}
.has-error .keine-angabe {
    display: block;
}
/* MODEL TILE */
.model-tile {
    text-align: center;
}
.model-tile__image {
    margin-bottom: 1.5em;
}
.model-tile__title {
    font-weight: 700;
    margin-bottom: 0;
}

/* DETAIL TILE */
.detail-tile__image {
    margin-bottom: 1.5em;
}
.detail-tile__copy > *:last-child {
    margin-bottom: 0;
}

/* CALENDAR */
.calendar {
    background-color: #e0e0e0;
    position: relative;
}
.calendar__head {
    padding: 1em 1em 0.5em;
}
.calendar__body {
    padding: 0.5em 1em 1em;
}
.calendar__title {
    font-weight: bold;
    line-height: 30px;
    margin: 0 1.5em;
    text-align: center;
}
.calendar__prev,
.calendar__next {
    border-radius: 15px;
    display: inline-block;
    line-height: 30px;
    outline: none !important;
    vertical-align: top;
    width: 30px;
    background-color: #757575;
    color: #fff;
    font-weight: bold;
    text-align: center;
    position: absolute;
    top: 1em;
}
.calendar__prev {
    left: 1em;
}
.calendar__next {
    right: 1em;
}
.calendar__table {
    margin-bottom: 0;
    width: 100%;
}
.calendar__table th,
.calendar__table td {
    font-size: 0.875em;
    text-align: center;
}
.calendar__table th {
    opacity: 0.5;
}
.calendar__day span,
.calendar__day a {
    border-radius: 15px;
    display: inline-block;
    line-height: 30px;
    outline: none !important;
    vertical-align: top;
    width: 30px;
}
.calendar__day.active span,
.calendar__day.active a {
    background-color: #757575;
    color: #fff;
    font-weight: bold;
}
.calendar__event {
    color: #2463AB;
    font-weight: bold;
}
.calendar__day.active .calendar__event {
    background-color: #2463AB;
}
.calendar__popup {
    background: #FFF;
    padding: 36px 30px 20px;
    text-align: left;
    max-width: 650px;
    margin: 40px auto;
    position: relative;
}

/* MASONRY */
.masonry {
    margin-bottom: 1.5em;
    margin-left: -30px;
    margin-top: -9em;
}
.masonry:after {
    content: '';
    display: block;
    clear: both;
}
.masonry__sizer,
.masonry__item {
    width: 100%;
}
.masonry__item {
    float: left;
}
.masonry__inner {
    background: #fff;
    margin-bottom: 30px;
    margin-left: 30px;
    padding: 20px;
}

/* EVENTS */
.event__location {
    font-size: 0.875em;
    font-weight: 700;
    color: #757575;
}
.event__image {
    margin-bottom: 20px;
    text-align: center;
}
.event__link {
    font-size: 0.875em;
}


/* GUIDE */
.guide-results-layout__rating {
}
.guide-results-layout__stars {
    float: right;
    white-space: nowrap;
}
.guide-results-layout__stars [class^="icon-"],
.guide-results-layout__stars [class*=" icon-"] {
    color: #2463AB;
}

/* BRAND NAV */
.brand-nav {
    background-color: #123256;
    padding-bottom: 1.5em;
}
.brand-nav__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 90%;
}
.brand-nav__container:after {
    content: "";
    display: table;
    clear: both;
}
.brand-tile {
    position: relative;
    text-align: center;
}
.brand-tile:before {
    content: "";
    display: block;
    padding-top: 62%;
}
.brand-tile__image {
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    left: 0;
    opacity: 0.25;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
    z-index: 1;
}
.brand-tile:hover .brand-tile__image {
    opacity: 0.5;
}
.brand-tile__logo {
    left: 0;
    padding: 1.25em;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}


/* FOOTER */
.footer {
    background-color: #123256;
    color: #fff;
    padding-top: 3em;
}
.footer__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding: 1.5em 0 3em;
    text-align: center;
    width: 90%;
}
.footer__container:after {
    content: "";
    display: table;
    clear: both;
}
.footer__copyright {
    text-align: center;
}
@media screen and (min-width: 46.875em) {
    .footer__copyright {
        display: inline-block;
        vertical-align: top;
    }
}
.footer__social {
    list-style-type: none;
    margin: 0;
    padding-top: 1.5em;
    text-align: center;
}
@media screen and (min-width: 46.875em) {
    .footer__social {
        display: inline-block;
        margin-left: 2.25em;
        vertical-align: top;
    }
}
.footer__social__item {
    display: inline-block;
    margin-left: 0.25em;
    vertical-align: top;
}
.footer__social__item > a {
    display: inline-block;
    vertical-align: top;
}
.footer__social__item > a > [class^="icon-"],
.footer__social__item > a > [class*=" icon-"] {
    display: inline-block;
    font-size: 1.5em;
    line-height: 24px;
    position: relative;
    /*top: -0.111111111em;*/
    vertical-align: top;
}
.footer__links {
    list-style-type: none;
    margin: 0;
    text-align: center;
}
@media screen and (min-width: 46.875em) {
    .footer__links {
        display: inline-block;
        margin-left: 2.25em;
        vertical-align: top;
    }
}
.footer__links__item {
    display: inline-block;
    margin-left: 2.25em;
    vertical-align: top;
}
.footer__links__item:first-child {
    margin-left: 0;
}
.footer__links__item > a {
    color: inherit;
    display: block;
    opacity: 0.6;
    -webkit-transition: color 0.3s, opacity 0.3s;
    transition: color 0.3s, opacity 0.3s;
}
.footer__links__item > a:hover,
.footer__links__item.active > a,
.footer__links__item.dropdown--open > a {
    opacity: 1;
}

/* SHAME */



/* TRUMPS */


/* TEXT */
.text-center {
    text-align: center;
}
.text-invert {
    color: #fff;
}
.text-mute {
    opacity: 0.8;
}

/* CLEARFIX */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* OVERFLOW HIDDEN */
.overflow-hidden {
    overflow: hidden;
}

/* WIDTHS */
.unit-1 {
    width: 100%;
}
.unit-1-2 {
    width: 50%;
}
.unit-1-3 {
    width: 33.33333333%;
}
.unit-2-3 {
    width: 66.66666666%;
}
.unit-1-4 {
    width: 25%;
}
.unit-3-4 {
    width: 75%;
}
.unit-1-5 {
    width: 20%;
}
.unit-2-5 {
    width: 40%;
}
.unit-3-5 {
    width: 60%;
}
.unit-4-5 {
    width: 80%;
}
.unit-1-6 {
    width: 16.66666666%;
}
.unit-1-8 {
    width: 12.5%;
}
.unit-1-12 {
    width: 8.33333333%;
}
@media screen and (min-width: 31.25em) {
    .unit-1-bp1 {
        width: 100%;
    }
    .unit-1-2-bp1 {
        width: 50%;
    }
    .unit-1-3-bp1 {
        width: 33.33333333%;
    }
    .unit-2-3-bp1 {
        width: 66.66666666%;
    }
    .unit-1-4-bp1 {
        width: 25%;
    }
    .unit-3-4-bp1 {
        width: 75%;
    }
    .unit-1-5-bp1 {
        width: 20%;
    }
    .unit-2-5-bp1 {
        width: 40%;
    }
    .unit-3-5-bp1 {
        width: 60%;
    }
    .unit-4-5-bp1 {
        width: 80%;
    }
    .unit-1-6-bp1 {
        width: 16.66666666%;
    }
    .unit-1-8-bp1 {
        width: 12.5%;
    }
    .unit-1-12-bp1 {
        width: 8.33333333%;
    }
}
@media screen and (min-width: 46.875em) {
    .unit-1-bp2 {
        width: 100%;
    }
    .unit-1-2-bp2 {
        width: 50%;
    }
    .unit-1-3-bp2 {
        width: 33.33333333%;
    }
    .unit-2-3-bp2 {
        width: 66.66666666%;
    }
    .unit-1-4-bp2 {
        width: 25%;
    }
    .unit-3-4-bp2 {
        width: 75%;
    }
    .unit-1-5-bp2 {
        width: 20%;
    }
    .unit-2-5-bp2 {
        width: 40%;
    }
    .unit-3-5-bp2 {
        width: 60%;
    }
    .unit-4-5-bp2 {
        width: 80%;
    }
    .unit-1-6-bp2 {
         width: 16.66666666%;
     }
    .unit-1-8-bp2 {
        width: 12.5%;
    }
    .unit-1-12-bp2 {
        width: 8.33333333%;
    }
}
@media screen and (min-width: 62.5em) {
    .unit-1-bp3 {
        width: 100%;
    }
    .unit-1-2-bp3 {
        width: 50%;
    }
    .unit-1-3-bp3 {
        width: 33.33333333%;
    }
    .unit-2-3-bp3 {
        width: 66.66666666%;
    }
    .unit-1-4-bp3 {
        width: 25%;
    }
    .unit-3-4-bp3 {
        width: 75%;
    }
    .unit-1-5-bp3 {
        width: 20%;
    }
    .unit-2-5-bp3 {
        width: 40%;
    }
    .unit-3-5-bp3 {
        width: 60%;
    }
    .unit-4-5-bp3 {
        width: 80%;
    }
    .unit-1-6-bp3 {
        width: 16.66666666%;
    }
    .unit-1-8-bp3 {
        width: 12.5%;
    }
    .unit-1-12-bp3 {
        width: 8.33333333%;
    }
}

/* CLEAR */
@media screen and (min-width: 31.25em) {
    .clear-1-2-bp1 > .unit-1-2-bp1:nth-child(2n+1),
    .clear-1-3-bp1 > .unit-1-3-bp1:nth-child(3n+1),
    .clear-1-4-bp1 > .unit-1-4-bp1:nth-child(4n+1) {
        clear: left;
    }
}
@media screen and (min-width: 46.875em) {
    [class*="clear"][class*="bp2"] > [class*="unit"] {
        clear: none;
    }
    .clear-1-2-bp2 > .unit-1-2-bp2:nth-child(2n+1),
    .clear-1-3-bp2 > .unit-1-3-bp2:nth-child(3n+1),
    .clear-1-4-bp2 > .unit-1-4-bp2:nth-child(4n+1) {
        clear: left;
    }
}
@media screen and (min-width: 62.5em) {
    [class*="clear"][class*="bp3"] > [class*="unit"] {
        clear: none;
    }
    .clear-1-2-bp3 > .unit-1-2-bp3:nth-child(2n+1),
    .clear-1-3-bp3 > .unit-1-3-bp3:nth-child(3n+1),
    .clear-1-4-bp3 > .unit-1-4-bp3:nth-child(4n+1) {
        clear: left;
    }
}

.text-left {
    text-align: left;
}
.text-center {

}
.text-right {
    text-align: right;
}
.pull-left {
    float: left;
}
.pull-right {
    float: right;
}

/* MODAL */
.modal {
    background: white;
    padding: 20px 30px;
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
    position: relative;
}
.modal--zoom-in .zoom-anim-dialog {
    opacity: 0;

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

/* animate in */
.modal--zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;

    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* animate out */
.modal--zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);

    opacity: 0;
}

/* Dark overlay, start state */
.modal--zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}
/* animate in */
.modal--zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}
/* animate out */
.modal--zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}
.modal .modal__title {

}
.modal .modal__content {
    margin-bottom: 1.5em;
}
.modal .modal__buttons {
    text-align: left;
}
.modal .modal__buttons--center {
    text-align: center;
}
.modal .modal__buttons--right {
    text-align: right;
}

/** MODAL LAYER */
.modal.modal--layer {
    left: 0;
    margin: 0;
    max-width: none;
    position: absolute;
    top: 0;
    transform: translateY(-100%) translateZ(0);
    transition: transform .3s ease-in-out;
}
body {
    transition: margin .3s ease-in-out;
}
body.modal-layer-open {

}
body.modal-layer-open .modal--layer {
    transform: translateY(0) translateZ(0);
}



/* REDESIGN */

/* TABS */

.c-tab-nav__list {
  background-color: #eee;
  display: table;
  list-style: none;
  margin-bottom: 0;
  margin-left: 0;
  table-layout: fixed;
  width: 100%;
}

.c-tab-nav__item {
    display: block;
}

.c-tab-nav__link {
  display: block;
  font-size: 13px;
  font-weight: 700;
  height: 2.25rem;
  letter-spacing: 0.04em;
  line-height: 2.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out;
}

.c-tab-nav__link, .c-tab-nav__link:hover, .c-tab-nav__link:active, .c-tab-nav__link:focus {
  color: #424242;
}

.c-tab-nav__link:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

.is-active .c-tab-nav__link {
    background-color: #fff;
    box-shadow: inset 0 2px 0 #2463AB;
}

.c-tab-nav__number,
.c-tab-nav__title {
  display: inline-block;
  line-height: 1.2;
  vertical-align: middle;
}

@media screen and (min-width: 46.875em) {
    .c-tab-nav__item {
        border-right: 1px solid #e0e0e0;
        display: table-cell;
        vertical-align: top;
    }
    .c-tab-nav__link {
        height: 3rem;
        line-height: 3rem;
    }
}

.c-tab-panel {
  display: none;
}

.c-tab-panel.is-active {
  display: block;
}


/* INFOGRAPHIC */

.c-infographic {
  position: relative;
}

.c-infographic__link {
  background-color: rgba(0, 0, 0, 0.2);
  border: 4px solid;
  border-radius: 50%;
  color: #fff;
  font-size: 1.75em;
  font-weight: 700;
  height: 48px;
  left: 0;
  line-height: 40px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 48px;
}

/* scroll hint */
.c-scroll-hint {
    animation: fadeDown 2000ms ease-in-out 0ms infinite;
    background-color: #2463AB;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    font-family: 'icomoon';
    font-size: 24px;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    height: 48px;
    line-height: 48px;
    speak: none;
    text-transform: none;
    vertical-align: top;
    width: 48px;
    -webkit-font-smoothing: antialiased;
}
.c-scroll-hint:before {
    content: "\e628";
}

@-webkit-keyframes fadeDown {
    0%   { -webkit-transform:translate(0,-20px); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -webkit-transform:translate(0,20px); opacity: 0; }
}
@keyframes fadeDown {
    0%   { transform:translate(0,-20px); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { transform:translate(0,20px); opacity: 0; }
}

/* Accordion */
.c-accordion__toggle {
    background-color: rgba(0,0,0,.06);
    border-top: 1px solid rgba(0,0,0,.12);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 18px;
    padding: 18px 12px;
    text-transform: uppercase;
    transition: background-color 0.25s ease-out, border-color 0.25s ease-out;
}

.c-accordion__toggle.is-active {
    background-color: #fff;
    border-color: #2463AB;
    border-width: 2px;
    padding-top: 17px;
}

.c-accordion__toggle [class*="icon-"] {
    transition: transform 0.25s ease-out;
}

.c-accordion__toggle.is-active [class*="icon-"] {
    transform: rotate(180deg);
}

.c-accordion__panel > * {
    padding-top: 36px;
}