@import url(../../../../../../use.typekit.net/hnd8tku.css);
.ss-main {
    position: relative;
    display: inline-block;
    user-select: none;
    color: #666;
    width: 100%
}

.ss-main .ss-single-selected {
    display: flex;
    cursor: pointer;
    width: 100%;
    height: 30px;
    padding: 6px;
    border: 1px solid #dcdee2;
    border-radius: 4px;
    background-color: #fff;
    outline: 0;
    box-sizing: border-box;
    transition: background-color .2s
}

.ss-main .ss-single-selected.ss-disabled {
    background-color: #dcdee2;
    cursor: not-allowed
}

.ss-main .ss-single-selected.ss-open-above {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.ss-main .ss-single-selected.ss-open-below {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.ss-main .ss-single-selected .placeholder {
    flex: 1 1 100%;
    text-align: left;
    width: calc(100% - 30px);
    line-height: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ss-main .ss-single-selected .placeholder,
.ss-main .ss-single-selected .placeholder * {
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ss-main .ss-single-selected .placeholder * {
    width: auto
}

.ss-main .ss-single-selected .placeholder .ss-disabled {
    color: #dedede
}

.ss-main .ss-single-selected .ss-deselect {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 1 auto;
    margin: 0 6px;
    font-weight: 700
}

.ss-main .ss-single-selected .ss-deselect.ss-hide {
    display: none
}

.ss-main .ss-single-selected .ss-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 1 auto;
    margin: 0 6px
}

.ss-main .ss-single-selected .ss-arrow span {
    border: solid #666;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transition: transform .2s, margin .2s
}

.ss-main .ss-single-selected .ss-arrow span.arrow-up {
    transform: rotate(-135deg);
    margin: 3px 0 0
}

.ss-main .ss-single-selected .ss-arrow span.arrow-down {
    transform: rotate(45deg);
    margin: -3px 0 0
}

.ss-main .ss-multi-selected {
    display: flex;
    flex-direction: row;
    cursor: pointer;
    min-height: 30px;
    width: 100%;
    padding: 0 0 0 3px;
    border: 1px solid #dcdee2;
    border-radius: 4px;
    background-color: #fff;
    outline: 0;
    box-sizing: border-box;
    transition: background-color .2s
}

.ss-main .ss-multi-selected.ss-disabled {
    background-color: #dcdee2;
    cursor: not-allowed
}

.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled {
    color: #666
}

.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete {
    cursor: not-allowed
}

.ss-main .ss-multi-selected.ss-open-above {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.ss-main .ss-multi-selected.ss-open-below {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.ss-main .ss-multi-selected .ss-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex: 1 1 100%;
    width: calc(100% - 30px)
}

.ss-main .ss-multi-selected .ss-values .ss-disabled {
    display: flex;
    padding: 4px 5px;
    margin: 2px 0;
    line-height: 1em;
    align-items: center;
    width: 100%;
    color: #dedede;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes scaleOut {
    0% {
        transform: scale(1);
        opacity: 1
    }
    to {
        transform: scale(0);
        opacity: 0
    }
}

.ss-main .ss-multi-selected .ss-values .ss-value {
    display: flex;
    user-select: none;
    align-items: center;
    font-size: 12px;
    padding: 3px 5px;
    margin: 3px 5px 3px 0;
    color: #fff;
    background-color: #5897fb;
    border-radius: 4px;
    animation-name: scaleIn;
    animation-duration: .2s;
    animation-timing-function: ease-out;
    animation-fill-mode: both
}

.ss-main .ss-multi-selected .ss-values .ss-value.ss-out {
    animation-name: scaleOut;
    animation-duration: .2s;
    animation-timing-function: ease-out
}

.ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete {
    margin: 0 0 0 5px;
    cursor: pointer
}

.ss-main .ss-multi-selected .ss-add {
    display: flex;
    flex: 0 1 3px;
    margin: 9px 12px 0 5px
}

.ss-main .ss-multi-selected .ss-add .ss-plus {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #666;
    position: relative;
    height: 10px;
    width: 2px;
    transition: transform .2s
}

.ss-main .ss-multi-selected .ss-add .ss-plus:after {
    background: #666;
    content: "";
    position: absolute;
    height: 2px;
    width: 10px;
    left: -4px;
    top: 4px
}

.ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross {
    transform: rotate(45deg)
}

.ss-content {
    position: absolute;
    width: 100%;
    margin: -1px 0 0;
    box-sizing: border-box;
    border: 1px solid #dcdee2;
    z-index: 1010;
    background-color: #fff;
    transform-origin: center top;
    transition: transform .2s, opacity .2s;
    opacity: 0;
    transform: scaleY(0)
}

.ss-content.ss-open {
    display: block;
    opacity: 1;
    transform: scaleY(1)
}

.ss-content .ss-search {
    display: flex;
    flex-direction: row;
    padding: 8px 8px 6px
}

.ss-content .ss-search.ss-hide,
.ss-content .ss-search.ss-hide input {
    height: 0;
    opacity: 0;
    padding: 0;
    margin: 0
}

.ss-content .ss-search input {
    display: inline-flex;
    font-size: inherit;
    line-height: inherit;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    height: 30px;
    padding: 6px 8px;
    margin: 0;
    border: 1px solid #dcdee2;
    border-radius: 4px;
    background-color: #fff;
    outline: 0;
    text-align: left;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-appearance: textfield
}

.ss-content .ss-search input::placeholder {
    color: #8a8a8a;
    vertical-align: middle
}

.ss-content .ss-search input:focus {
    box-shadow: 0 0 5px #5897fb
}

.ss-content .ss-search .ss-addable {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 22px;
    font-weight: 700;
    flex: 0 0 30px;
    height: 30px;
    margin: 0 0 0 8px;
    border: 1px solid #dcdee2;
    border-radius: 4px;
    box-sizing: border-box
}

.ss-content .ss-addable {
    padding-top: 0
}

.ss-content .ss-list {
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: left
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label {
    padding: 6px 10px;
    font-weight: 700
}

.ss-content .ss-list .ss-optgroup .ss-option {
    padding: 6px 6px 6px 25px
}

.ss-content .ss-list .ss-optgroup-label-selectable {
    cursor: pointer
}

.ss-content .ss-list .ss-optgroup-label-selectable:hover {
    color: #fff;
    background-color: #5897fb
}

.ss-content .ss-list .ss-option {
    padding: 6px 10px;
    cursor: pointer;
    user-select: none
}

.ss-content .ss-list .ss-option * {
    display: inline-block
}

.ss-content .ss-list .ss-option.ss-highlighted,
.ss-content .ss-list .ss-option:hover {
    color: #fff;
    background-color: #5897fb
}

.ss-content .ss-list .ss-option.ss-disabled {
    cursor: not-allowed;
    color: #dedede;
    background-color: #fff
}

.ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected {
    color: #666;
    background-color: rgba(88, 151, 251, .1)
}

.ss-content .ss-list .ss-option.ss-hide {
    display: none
}

.ss-content .ss-list .ss-option .ss-search-highlight {
    background-color: #fffb8c
}

@font-face {
    font-family: icons;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/icons/icomoon.woff) format("woff")
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

blockquote,
body,
code,
dd,
dl,
fieldset,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
legend,
ol,
p,
pre,
ul {
    margin: 0;
    padding: 0
}

*,
:after,
:before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

main {
    display: block
}

h1,
h2,
h3,
h4,
h5,
h6 {font-family: "Alata", sans-serif;
        font-weight: 400;
        font-style: normal;
      }
      



strong {
    font-weight: 700
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

img {
    border-style: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

input,
select,
textarea {
    margin: 0
}

input {
    overflow: visible
}

select {
    text-transform: none
}

[type=checkbox],
[type=radio] {
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0
}

:focus {
    outline: .2rem auto #003ca6;
    outline: .2rem auto -webkit-focus-ring-color
}

html {
    font-size: 62.5%
}

body,
html {
    height: 100%
}

body {
    color: #53565a;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    font: 400 1.6rem/1.75 trade-gothic-next, sans-serif;
    letter-spacing: .025rem
}

body.is-shareable {
    height: auto;
    padding-bottom: 3rem
}

@media screen and (min-width:62em) {
    body.is-shareable {
        padding: 0
    }
}

main {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
}

img {
    display: block
}

a {
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;

    letter-spacing: .025rem;
    line-height: 1.75
}

a,
a:focus,
a:hover {
    color: #53565a;
    text-decoration:auto;
}

iframe {
    width: 100%
}

pre {
    display: inline-block;
font-family: "Alata", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.176;
    white-space: break-spaces
}

.o-container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.6rem;
    padding-left: 1.6rem;
    max-width: 100%
}

@media screen and (min-width:62em) {
    .o-container {
        padding-right: 3.2rem;
        padding-left: 3.2rem
    }
}

@media screen and (min-width:80em) {
    .o-container {
        max-width: 120rem
    }
}

.o-container--small {
    padding-right: 0;
    padding-left: 0
}

@media screen and (min-width:48em) {
    .o-container--small {
        padding-right: 5rem
    }
}

@media screen and (min-width:62em) {
    .o-container--small {
        padding-right: 10rem
    }
}

@media screen and (min-width:80em) {
    .o-container--small {
        padding-right: 15rem
    }
}

@media screen and (min-width:100em) {
    .o-container--small {
        padding-right: 25rem
    }
}

@media screen and (min-width:48em) {
    .o-container--small {
        padding-left: 5rem
    }
}

@media screen and (min-width:62em) {
    .o-container--small {
        padding-left: 10rem
    }
}

@media screen and (min-width:80em) {
    .o-container--small {
        padding-left: 15rem
    }
}

@media screen and (min-width:100em) {
    .o-container--small {
        padding-left: 25rem
    }
}

.o-container--fullMobile,
.o-container--mainMenu {
    padding-right: 0;
    padding-left: 0
}

@media screen and (min-width:62em) {
    .o-container--mainMenu {
        padding-right: 0;
        padding-left: 0;
    }
}

.o-container--mainMenu {
    max-width: 100%
}

@media screen and (min-width:62em) {
    .o-container--mainMenu {
        max-width: 99.7rem
    }
}

.o-container--nav {
    max-width: 100%
}

@media screen and (min-width:80em) {
    .o-container--nav {
        max-width: 145rem
    }
}

.o-container--fullMobile {
    max-width: 100%
}

@media screen and (min-width:80em) {
    .o-container--fullMobile {
        max-width: 120rem
    }
}

.o-grid {
    margin-left: -1rem;
    list-style: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

@media screen and (min-width:48em) {
    .o-grid {
        margin-left: -2rem
    }
}

@media screen and (min-width:62em) {
    .o-grid {
        margin-left: -4rem
    }
}

@media screen and (min-width:80em) {
    .o-grid {
        margin-left: -6rem
    }
}

.o-grid>.o-grid__col {
    padding-left: 1rem;
    width: 100%
}

@media screen and (min-width:48em) {
    .o-grid>.o-grid__col {
        padding-left: 2rem
    }
}

@media screen and (min-width:62em) {
    .o-grid>.o-grid__col {
        padding-left: 4rem
    }
}

@media screen and (min-width:80em) {
    .o-grid>.o-grid__col {
        padding-left: 0rem
    }
}

.o-grid--flush {
    margin-left: 0
}

.o-grid--flush>.o-grid__col {
    padding-left: 0
}

.o-grid--fullMobile {
    margin-left: 0
}

@media screen and (min-width:48em) {
    .o-grid--fullMobile {
        margin-left: -2rem
    }
}

@media screen and (min-width:62em) {
    .o-grid--fullMobile {
        margin-left: -3.2rem
    }
}

.o-grid--fullMobile>.o-grid__col {
    padding-left: 0
}

@media screen and (min-width:48em) {
    .o-grid--fullMobile>.o-grid__col {
        padding-left: 2rem
    }
}

@media screen and (min-width:62em) {
    .o-grid--fullMobile>.o-grid__col {
        padding-left: 3.2rem
    }
}

.o-grid--other {
    margin-left: 0
}

@media screen and (min-width:48em) {
    .o-grid--other {
        margin-left: -1rem
    }
}

.o-grid--other>.o-grid__col {
    padding-left: 0
}

@media screen and (min-width:48em) {
    .o-grid--other>.o-grid__col {
        padding-left: 1rem
    }
}

.o-grid--locations {
    margin-left: -1rem
}

@media screen and (min-width:48em) {
    .o-grid--locations {
        margin-left: -2rem
    }
}

@media screen and (min-width:62em) {
    .o-grid--locations {
        margin-left: -3.3rem
    }
}

.o-grid--locations>.o-grid__col {
    padding-left: 1rem
}

@media screen and (min-width:48em) {
    .o-grid--locations>.o-grid__col {
        padding-left: 2rem
    }
}

@media screen and (min-width:62em) {
    .o-grid--locations>.o-grid__col {
        padding-left: 3.3rem
    }
}

.o-grid--category {
    margin-left: -1rem
}

@media screen and (min-width:48em) {
    .o-grid--category {
        margin-left: -2rem
    }
}

@media screen and (min-width:62em) {
    .o-grid--category {
        margin-left: -3.2rem
    }
}

.o-grid--category>.o-grid__col {
    padding-left: 1rem
}

@media screen and (min-width:48em) {
    .o-grid--category>.o-grid__col {
        padding-left: 2rem
    }
}

@media screen and (min-width:62em) {
    .o-grid--category>.o-grid__col {
        padding-left: 3.2rem
    }
}

.o-grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap
}

.o-grid>.o-grid__col {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    min-width: 0
}

.o-grid--center {
    -ms-flex-pack: center;
    justify-content: center
}

.o-grid--right {
    -ms-flex-pack: end;
    justify-content: flex-end
}

.o-grid--top {
    -ms-flex-align: start;
    align-items: flex-start
}

.o-grid--middle {
    -ms-flex-align: center;
    align-items: center
}

.o-grid--bottom {
    -ms-flex-align: end;
    align-items: flex-end
}

.o-grid--around {
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.o-grid--between {
    -ms-flex-pack: justify;
    justify-content: space-between
}

.o-grid--rev {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.o-grid--equal-height>.o-grid__col {
    display: -ms-flexbox;
    display: flex
}

.o-grid--rev-mobile {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

@media screen and (min-width:62em) {
    .o-grid--rev-mobile {
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.c-accordion {
    background-color: #fff;
    margin: 2rem 0 6rem
}

@media screen and (min-width:62em) {
    .c-accordion {
        margin: 2rem 0 8rem
    }
}

.c-accordion__container {
    margin: 0 auto;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-accordion__container {
        max-width: 79rem
    }
}

.c-accordion__heading {
    color: #003ca6;
    margin-bottom: 4rem;
    text-align: center
}

@media screen and (min-width:62em) {
    .c-accordion__heading {
        margin-bottom: 2rem
    }
}

.c-accordion [aria-hidden=true] {
    display: none
}

.c-accordion__controls {
    list-style: none
}

.c-accordion__controls>li {
    margin-bottom: 2rem
}

.c-accordion__anchor {
    display: block;
    height: 10rem;
    margin-top: -10rem;
    visibility: hidden
}

@media screen and (min-width:62em) {
    .c-accordion__anchor {
        height: 15rem;
        margin-top: -15rem
    }
}

.c-accordion__button {
    -webkit-appearance: none;
    background-color: #003ca6;
    border: none;
    color: #fff;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 1.6rem 0;
    position: relative;
    text-align: left;
    width: 100%
}

.c-accordion__button,
.c-accordion__button:focus,
.c-accordion__button:hover {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-accordion__button:focus,
.c-accordion__button:hover {
    background-color: #f2aa00
}

.c-accordion__button:focus .c-accordion__button-text,
.c-accordion__button:hover .c-accordion__button-text {
    color: #003ca6 !important
}

.c-accordion__button[aria-expanded=true] {
    background-color: #f2aa00;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-accordion__button[aria-expanded=true] .c-accordion__button-text {
    color: #003ca6 !important
}

.c-accordion__button-icon {
    -ms-flex-align: center;
    align-items: center;
    background-color: #f2aa00;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 6rem
}

.c-accordion__button-icon>i {
    font-size: 1.8rem
}

.c-accordion__button-text {
    color: #fff !important;
    font-weight: 700;
    margin-left: 7.6rem;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-accordion__content {
    background-color: #f1f3f3;
    padding: 2rem
}

.c-form input[type=submit] {
    background: -webkit-linear-gradient(160deg, #003ca6 50%, #f2aa00 0);
    background: -o-linear-gradient(160deg, #003ca6 50%, #f2aa00 50%);
    background: linear-gradient(-70deg, #003ca6 50%, #f2aa00 0);
    background-color: #003ca6;
    background-position: 100% 0;
    background-repeat: no-repeat;
    background-size: 250% 100%;
    border: none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: -ms-inline-flexbox;
    display: inline-flex;
   font-family: "Alata", sans-serif;
    font-size: 2rem;
    -ms-flex-pack: center;
    justify-content: center;
    letter-spacing: .25rem;
    line-height: 1;
    line-height: 1.8;
    padding: 1.2rem 3.2rem;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all .25s linear;
    -o-transition: .25s linear all;
    transition: all .25s linear
}

.c-form input:focus[type=submit],
.c-form input:hover[type=submit] {
    background-position: 0 100%;
    -webkit-box-shadow: 0 0 1.6rem 0 rgba(70, 80, 122, .4);
    box-shadow: 0 0 1.6rem 0 rgba(70, 80, 122, .4);
    color: #003ca6;
    -webkit-transition: all .25s linear;
    -o-transition: .25s linear all;
    transition: all .25s linear
}

.c-form input[type=submit]:focus:after,
.c-form input[type=submit]:focus:before,
.c-form input[type=submit]:hover:after,
.c-form input[type=submit]:hover:before {
    color: #003ca6
}

.c-btn,
.c-nav__item--cta .c-nav__item-btn {
    background: -webkit-linear-gradient(160deg, #003ca6 50%, #f2aa00 0);
    background: -o-linear-gradient(160deg, #003ca6 50%, #f2aa00 50%);
    background: linear-gradient(-70deg, #003ca6 50%, #f2aa00 0);
    background-color: #003ca6;
    background-position: 100% 0;
    background-repeat: no-repeat;
    background-size: 250% 100%;
    border: none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: -ms-inline-flexbox;
    display: inline-flex;
   font-family: "Alata", sans-serif;
    font-size: 2rem;
    -ms-flex-pack: center;
    justify-content: center;
    letter-spacing: .25rem;
    line-height: 1;
    line-height: 1.8;
    padding: 1.2rem 3.2rem;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all .25s linear;
    -o-transition: .25s linear all;
    transition: all .25s linear
}

.c-btn:focus,
.c-btn:hover,
.c-nav__item--cta .c-nav__item-btn:focus,
.c-nav__item--cta .c-nav__item-btn:hover {
    background-position: 0 100%;
    -webkit-box-shadow: 0 0 1.6rem 0 rgba(70, 80, 122, .4);
    box-shadow: 0 0 1.6rem 0 rgba(70, 80, 122, .4);
    color: #003ca6;
    -webkit-transition: all .25s linear;
    -o-transition: .25s linear all;
    transition: all .25s linear
}

.c-btn:focus:after,
.c-btn:focus:before,
.c-btn:hover:after,
.c-btn:hover:before,
.c-nav__item--cta .c-nav__item-btn:focus:after,
.c-nav__item--cta .c-nav__item-btn:focus:before,
.c-nav__item--cta .c-nav__item-btn:hover:after,
.c-nav__item--cta .c-nav__item-btn:hover:before {
    color: #003ca6
}

.c-btn--icon {
    -ms-flex-align: center;
    align-items: center;
   font-family: "Alata", sans-serif;
    font-size: 2rem;
    -ms-flex-pack: center;
    justify-content: center;
    letter-spacing: .25rem;
    line-height: 1.8;
    padding: 1.2rem 3.2rem;
    text-transform: uppercase
}

.c-btn--icon-left {
    position: relative
}

.c-btn--icon-left:before {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 3rem;
    height: 3rem;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 1.6rem;
    margin-top: .4rem;
    width: 3rem
}

.c-btn--icon-left--plus:before {
    font-size: 2rem;
    height: 2rem;
    margin-top: .5rem;
    width: 2rem
}

.c-btn--icon-right:after,
.c-nav__item--cta .c-nav__item-btn:after {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 3rem;
    height: 3rem;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 1.6rem;
    margin-top: .4rem;
    width: 3rem
}

.c-btn--icon-right--plus:after {
    font-size: 2rem;
    height: 2rem;
    margin-top: .5rem;
    width: 2rem
}

.c-btn--special,
.c-nav__item--cta .c-nav__item-btn {
    background: -webkit-linear-gradient(160deg, #254c9a 50%, #f2aa00 0);
    background: -o-linear-gradient(160deg, #254c9a 50%, #f2aa00 50%);
    background: linear-gradient(-70deg, #254c9a 50%, #f2aa00 0);
    background-color: #254c9a;
    background-position: 100% 0;
    background-size: 250% 100%;
    padding: .4rem 5.8rem .4rem 1.6rem;
    position: relative
}

.c-btn--special.is-scrolled,
.c-nav__item--cta .is-scrolled.c-nav__item-btn {
    background: -webkit-linear-gradient(160deg, #003ca6 50%, #f2aa00 0);
    background: -o-linear-gradient(160deg, #003ca6 50%, #f2aa00 50%);
    background: linear-gradient(-70deg, #003ca6 50%, #f2aa00 0);
    background-color: #003ca6;
    background-position: 100% 0;
    background-size: 250% 100%
}

.c-btn--special:focus,
.c-btn--special:hover,
.c-nav__item--cta .c-nav__item-btn:focus,
.c-nav__item--cta .c-nav__item-btn:hover {
    background-position: 0 100%;
    color: #254c9a
}

.c-btn--special:focus:after,
.c-btn--special:hover:after,
.c-nav__item--cta .c-nav__item-btn:focus:after,
.c-nav__item--cta .c-nav__item-btn:hover:after {
    background-color: #254c9a;
    color: #fff !important
}

.c-btn--special:focus.is-scrolled,
.c-btn--special:hover.is-scrolled,
.c-nav__item--cta .c-nav__item-btn:focus.is-scrolled,
.c-nav__item--cta .c-nav__item-btn:hover.is-scrolled {
    color: #254c9a
}

.c-btn--special:focus.is-scrolled:after,
.c-btn--special:hover.is-scrolled:after,
.c-nav__item--cta .c-nav__item-btn:focus.is-scrolled:after,
.c-nav__item--cta .c-nav__item-btn:hover.is-scrolled:after {
    background-color: #003ca6
}

.c-btn--special:after,
.c-nav__item--cta .c-nav__item-btn:after {
    background-color: #f2aa00;
    bottom: 0;
    color: #254c9a;
    font-size: 2.5rem;
    height: 4.4rem;
    margin-top: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 4.4rem
}

.c-btn--small {
    font-family: "Alata", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.75;
    padding: 1.2rem 3rem;
    text-transform: none
}

.c-btn--secondary {
    background: none;
    background-color: #fff;
    border: .2rem solid #aaabad;
    color: #000
}

.c-btn--secondary:focus,
.c-btn--secondary:hover {
    background-color: #003ca6;
    border: .2rem solid #003ca6;
    color: #fff;
    -webkit-transition: all .25s linear;
    -o-transition: .25s linear all;
    transition: all .25s linear
}

.c-btn--disabled,
.c-btn button[disabled],
.c-nav__item--cta .c-nav__item-btn button[disabled] {
    background: #d8d8d8;
    border: .1rem solid #d8d8d8;
    color: #53565a;
    cursor: default;
    pointer-events: none
}

.c-btn--disabled:focus,
.c-btn--disabled:hover,
.c-btn button[disabled]:focus,
.c-btn button[disabled]:hover,
.c-nav__item--cta .c-nav__item-btn button[disabled]:focus,
.c-nav__item--cta .c-nav__item-btn button[disabled]:hover {
    background: #d8d8d8;
    border: .1rem solid #d8d8d8;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #53565a
}

.c-btn--white {
    background: #fff;
    border: .1rem solid #fff;
    color: #003ca6
}

.c-btn--white:hover {
    background: #003ca6;
    border-color: #003ca6;
    color: #fff
}

.c-btn--full {
    width: 100%
}

@media screen and (min-width:62em) {
    .c-btn--full {
        width: auto
    }
}

.c-btn--no-line,
.c-btn--no-line:hover {
    text-decoration: none
}

.c-btn--capitalize {
    text-transform: capitalize
}

.c-btn--cookies {
    padding: 0 2rem
}

.c-copy {
    font-weight: 400
}

.c-copy+.c-copy {
    margin-top: 2rem
}

.c-copy--sub {
    font-size: 2rem;
    line-height: 2.8rem
}

.c-copy--caps {
    text-transform: uppercase
}

.c-copy--date {
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 2.8rem
}

.c-cta {
    padding: 2rem;
    text-align: center
}

.c-cta__text {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .2rem
}

.c-footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 5.6rem 0;
    text-align: center
}

.c-footer__logo {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 3.2rem
}

.c-footer__logo-img {
    max-width: 350px;
    width: 100%
}

.c-footer__logo-img>img {
    margin: 0 auto;
    width: 100%
}

.c-footer__menu {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none
}

@media screen and (min-width:62em) {
    .c-footer__menu {
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.c-footer__menu .menu-item {
    margin-bottom: 2rem
}

@media screen and (min-width:62em) {
    .c-footer__menu .menu-item {
        margin-bottom: 2.8rem
    }
    .c-footer__menu .menu-item:not(:last-of-type) {
        margin-right: 2.6rem
    }
}

.c-footer__menu .menu-item a {
    color: #003ca6;
    text-decoration: none;
    text-transform: uppercase
}

.c-footer__menu .menu-item a:hover {
    text-decoration: underline
}

.c-footer__menu .sub-menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    list-style: none
}

.c-footer__nav {
    border-bottom: .1rem solid #d9d9d6;
    margin-bottom: 3.2rem;
    margin-left: -1.6rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:62em) {
    .c-footer__nav {
        margin: 0 auto 3.2rem;
        max-width: 79rem;
        width: auto
    }
}

.c-footer__connect {
    border-bottom: .1rem solid #d9d9d6;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 3.2rem;
    margin-left: -1.6rem;
    padding-bottom: 3.2rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:62em) {
    .c-footer__connect {
        margin: 0 auto 3.2rem;
        max-width: 38rem;
        width: auto
    }
}

.c-footer__connect-text {
    color: #003ca6;
    font-weight: 900;
    margin-bottom: .8rem
}

.c-footer__connect-tel {
    color: #003ca6;
    font-weight: 400;
    text-decoration: none
}

.c-footer__connect-tel:hover {
    color: #003ca6
}

.c-footer__connect-mail {
    color: #003ca6;
    font-weight: 900;
    margin-bottom: 1.6rem
}

.c-footer__connect-mail:hover {
    color: #003ca6
}

.c-footer__social {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none
}

.c-footer__social-item:not(:last-of-type) {
    margin-right: 2.6rem
}

.c-footer__social-item>a {
    text-decoration: none
}

.c-footer__social-item>a:focus .c-icon,
.c-footer__social-item>a:focus .c-nav__search-submit,
.c-footer__social-item>a:focus .c-search__bar-submit,
.c-footer__social-item>a:hover .c-icon,
.c-footer__social-item>a:hover .c-nav__search-submit,
.c-footer__social-item>a:hover .c-search__bar-submit {
    color: #f2aa00
}

.c-footer__social-item .c-icon,
.c-footer__social-item .c-nav__search-submit,
.c-footer__social-item .c-search__bar-submit {
    color: #003ca6;
    font-size: 2.2rem
}

.c-footer__copyright {
    color: #003ca6;
    font-weight: 400 !important
}

@media screen and (min-width:62em) {
    .c-footer__copyright {
        font-weight: 900 !important
    }
}

.c-footer__legal {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none
}

.c-footer__legal>.menu-item:not(:last-of-type) {
    margin-right: 2.6rem
}

.c-footer__legal>.menu-item>a {
    color: #003ca6
}

.c-footer__legal>.menu-item>a:focus,
.c-footer__legal>.menu-item>a:hover {
    text-decoration: none
}

.c-header {
    background-color: #003ca6;
    height: 6.4rem;
    position: fixed;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 100%;
    z-index: 10
}

.c-header,
.c-header .c-logo--white {
    display: block
}

.c-header .c-logo--blue {
    display: none
}

.c-header.is-open {
    background-color: #fff;
    height: 100%;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-header.is-open .c-logo--white {
    display: none
}

.c-header.is-open .c-logo--blue {
    display: block
}

.c-header.is-scrolled {
    background: #fff;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-header.is-scrolled .c-logo--white {
    display: none
}

.c-header.is-scrolled .c-logo--blue {
    display: block
}

.c-header.is-homepage {
    background-color: transparent
}

.c-header.is-homepage,
.c-header.is-homepage.is-scrolled {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-header.is-homepage.is-scrolled {
    background: #0149c5;
}

.c-header.is-homepage.is-scrolled .c-logo--white {
    display: none
}

.c-header.is-homepage.is-scrolled .c-logo--blue {
    display: block
}

.c-header.is-homepage.is-open {
    background-color: #fff
}

.c-header.is-homepage+main {
    padding: 0
}

@media screen and (min-width:62em) {
    .c-header {
        background-color: #003ca6;
        height: 11.6rem
    }
    .c-header:before {
        background-color: #254c9a;
        content: "";
        display: block;
        height: 4rem;
        left: 0;
        position: absolute;
        right: 0
    }
}

.c-header>.o-container {
    height: 100%
}

.c-header+main {
    overflow: hidden;
    padding-top: 6.4rem
}

@media screen and (min-width:62em) {
    .c-header+main {
        padding-top: 11.6rem
    }
}

.c-fproducts__heading,
.c-innerHero__heading,
.c-locations__heading,
.c-post__intro-title,
.c-timeline__heading {
   font-family: "Alata", sans-serif;
    font-size:30px;
    font-weight: 700;


    text-transform: uppercase
}

.c-accordion__heading,
.c-contact__info-heading,
.c-faq__heading,
.c-fcta__heading,
.c-fnews__heading-title,
.c-form__title,
.c-fproducts__title,
.c-lcards__heading,
.c-proTemplate__heading-title,
.c-resources__heading,
.c-results__noresults-keyword,
.c-rproducts__heading-title,
.c-split-hero__heading,
.c-story__heading,
.c-timeline__title,
.c-values__title {
   font-family: "Alata", sans-serif;
    font-size:24px;
 
   
}

.c-featuredItem__content-title,
.c-fnews__item-link,
.c-lcards__card-title,
.c-proCard__title,
.c-results__content-title,
.c-results__noresults-text,
.c-rproducts__item-link,
.c-story__title {
   font-family: "Alata", sans-serif;
    font-size: 2.8rem;
    letter-spacing: .125rem;
    line-height: 1.28
}

.c-404__text {
    font-family: "Alata", sans-serif;
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.4
}

.c-fnews__item-cat,
.c-lcards__services-title,
.c-post__intro-cat,
.c-proCard__subtitle,
.c-product__benefit-content>h2,
.c-product__colors-title,
.c-product__numbers-key,
.c-product__numbers-numbers,
.c-product__uses-title,
.c-proTemplate__fblock-title,
.c-results__resume,
.c-search__bar-search,
.c-share__text,
.c-timeline__year {
   font-family: "Alata", sans-serif;
    font-size: 2rem;
    letter-spacing: .225rem;
    line-height: 1.6;
    text-transform: uppercase
}

.c-centered__heading,
.c-fcta__heading,
.c-heading,
.c-nav__item-btn-text,
.c-nav__submenu-heading-search,
.c-nav__submenu-heading-title,
.c-nav__submenu-list--featured-left .c-nav__submenu-item>a,
.c-nav__submenu-list--featured-right .c-nav__submenu-item>a,
.c-nav__submenu-list-title,
.c-possibilities__cover-title,
.c-possibilities__for,
.c-possibilities__heading,
.c-split-content__heading,
.c-substrate__heading,
.c-wysiwyg--caseStudy h2,
.c-wysiwyg h1,
.c-wysiwyg h2,
.c-wysiwyg h3,
.c-wysiwyg h4,
.c-wysiwyg h5 {
    color: #000
}

.c-heading--l1,
.c-possibilities__cover-title,
.c-possibilities__heading,
.c-wysiwyg h1 {
   font-family: "Alata", sans-serif;
    font-size: 24px;
    font-weight: 600;
    /* letter-spacing: .25rem; */
    /* line-height: 1.25; */
    /* text-transform: uppercase;*/
}
a.c-centered__cta.c-btn {
    font-size: 15px;
}
.c-builder__video-title,
.c-centered__heading,
.c-heading--l2,
.c-possibilities__for,
.c-split-content__heading,
.c-substrate__heading,
.c-wysiwyg h2 {
   font-family: "Alata", sans-serif;
    font-size: 24px;

    line-height: 1.375;

}

.c-heading--l3,
.c-wysiwyg--caseStudy h2,
.c-wysiwyg h3 {
   font-family: "Alata", sans-serif;
    font-size: 2.8rem;
    letter-spacing: .125rem;
    line-height: 1.28
}

.c-heading--l4,
.c-nav__submenu-heading-search,
.c-nav__submenu-heading-title,
.c-wysiwyg h4 {
    font-family: "Alata", sans-serif;
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.4
}

.c-footer__menu .menu-item a,
.c-heading--l5,
.c-nav__item-btn-text,
.c-nav__submenu-list--featured-left .c-nav__submenu-item>a,
.c-nav__submenu-list--featured-right .c-nav__submenu-item>a,
.c-nav__submenu-list-title,
.c-wysiwyg h5 {
font-family: "Alata", sans-serif;
        font-weight: 400;
        font-style: normal;
      
      
}

.c-heading--l6 {
    font-family: "Alata", sans-serif;
        font-weight: 400;
        font-style: normal;
      
      
}

.c-blog__controls-next:before,
.c-blog__controls-prev:before,
.c-btn--icon-left:before,
.c-btn--icon-right:after,
.c-caseStudy__controls-next:before,
.c-caseStudy__controls-prev:before,
.c-fnews__controls-next:before,
.c-fnews__controls-prev:before,
.c-fproducts__btn:before,
.c-fproducts__controls-next:before,
.c-fproducts__controls-prev:before,
.c-gallery__controls-next:before,
.c-gallery__controls-prev:before,
.c-link--cta:before,
.c-nav__item--cta .c-nav__item-btn:after,
.c-nav__submenu-item>a:before,
.c-recommended__controls-next:before,
.c-recommended__controls-prev:before,
.c-rproducts__controls-next:before,
.c-rproducts__controls-prev:before,
.c-timeline__btn:before,
.c-timeline__controls-next:before,
.c-timeline__controls-prev:before {
    background-color: transparent;
    color: #fff;
    display: -ms-inline-flexbox;
    display: inline-flex;

        font-family: "Alata", sans-serif;
        font-weight: 400;
        font-style: normal;
    
      
    font-size: 3rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: none;
    -webkit-transition: all .2s linear;
    -o-transition: all linear .2s;
    transition: all .2s linear
}

.c-blog__controls-next:before,
.c-blog__controls-prev:before,
.c-caseStudy__controls-next:before,
.c-caseStudy__controls-prev:before,
.c-fnews__controls-next:before,
.c-fnews__controls-prev:before,
.c-fproducts__btn:focus:before,
.c-fproducts__btn:hover:before,
.c-fproducts__controls-next:before,
.c-fproducts__controls-prev:before,
.c-gallery__controls-next:before,
.c-gallery__controls-prev:before,
.c-link--cta:focus:before,
.c-link--cta:hover:before,
.c-nav__submenu-item>a:focus:before,
.c-nav__submenu-item>a:hover:before,
.c-recommended__controls-next:before,
.c-recommended__controls-prev:before,
.c-rproducts__controls-next:before,
.c-rproducts__controls-prev:before,
.c-timeline__btn:focus:before,
.c-timeline__btn:hover:before,
.c-timeline__controls-next:before,
.c-timeline__controls-prev:before {
    content: ""
}

.c-fproducts__btn:before,
.c-link--cta:before,
.c-nav__submenu-item>a:before,
.c-timeline__btn:before {

}

.c-btn--icon-left:before,
.c-btn--icon-right:after,
.c-nav__item--cta .c-nav__item-btn:after {
    content: ""
}

.c-proTemplate__toggle.is-open .c-proTemplate__toggle-icon:before {
    content: ""
}

.c-product__download:before {
    content: ""
}

.c-btn--icon-left--plus:before,
.c-btn--icon-right--plus:after,
.c-proTemplate__toggle-icon:before {
    content: ""
}

.c-blog__controls-next:focus:before,
.c-blog__controls-next:hover:before,
.c-blog__controls-prev:focus:before,
.c-blog__controls-prev:hover:before,
.c-btn--icon-left:focus:before,
.c-btn--icon-left:hover:before,
.c-btn--icon-right:focus:after,
.c-btn--icon-right:hover:after,
.c-caseStudy__controls-next:focus:before,
.c-caseStudy__controls-next:hover:before,
.c-caseStudy__controls-prev:focus:before,
.c-caseStudy__controls-prev:hover:before,
.c-fnews__controls-next:focus:before,
.c-fnews__controls-next:hover:before,
.c-fnews__controls-prev:focus:before,
.c-fnews__controls-prev:hover:before,
.c-fproducts__btn:focus:before,
.c-fproducts__btn:hover:before,
.c-fproducts__controls-next:focus:before,
.c-fproducts__controls-next:hover:before,
.c-fproducts__controls-prev:focus:before,
.c-fproducts__controls-prev:hover:before,
.c-gallery__controls-next:focus:before,
.c-gallery__controls-next:hover:before,
.c-gallery__controls-prev:focus:before,
.c-gallery__controls-prev:hover:before,
.c-link--cta:focus:before,
.c-link--cta:hover:before,
.c-nav__item--cta .c-nav__item-btn:focus:after,
.c-nav__item--cta .c-nav__item-btn:hover:after,
.c-nav__submenu-item>a:focus:before,
.c-nav__submenu-item>a:hover:before,
.c-recommended__controls-next:focus:before,
.c-recommended__controls-next:hover:before,
.c-recommended__controls-prev:focus:before,
.c-recommended__controls-prev:hover:before,
.c-rproducts__controls-next:focus:before,
.c-rproducts__controls-next:hover:before,
.c-rproducts__controls-prev:focus:before,
.c-rproducts__controls-prev:hover:before,
.c-timeline__btn:focus:before,
.c-timeline__btn:hover:before,
.c-timeline__controls-next:focus:before,
.c-timeline__controls-next:hover:before,
.c-timeline__controls-prev:focus:before,
.c-timeline__controls-prev:hover:before {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-icon,
.c-nav__search-submit,
.c-search__bar-submit {
    background-color: transparent;
    color: #fff;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: "Alata", sans-serif;
    font-weight: 400;

    font-size: 3rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: none;
    -webkit-transition: all .2s linear;
    -o-transition: all linear .2s;
    transition: all .2s linear
}

.c-icon--icon-Aesthetic-left:before,
.c-icon--icon-Aesthetic-right:after,
.c-icon--icon-Aesthetic:before {
    content: ""
}

.c-icon--icon-Breatheable-left:before,
.c-icon--icon-Breatheable-right:after,
.c-icon--icon-Breatheable:before {
    content: ""
}

.c-icon--icon-Comfort-left:before,
.c-icon--icon-Comfort-right:after,
.c-icon--icon-Comfort:before {
    content: ""
}

.c-icon--icon-Construction-left:before,
.c-icon--icon-Construction-right:after,
.c-icon--icon-Construction:before {
    content: ""
}

.c-icon--icon-Customizable-left:before,
.c-icon--icon-Customizable-right:after,
.c-icon--icon-Customizable:before {
    content: ""
}

.c-icon--icon-Durable-left:before,
.c-icon--icon-Durable-right:after,
.c-icon--icon-Durable:before {
    content: ""
}

.c-icon--icon-Efficiency-left:before,
.c-icon--icon-Efficiency-right:after,
.c-icon--icon-Efficiency:before {
    content: ""
}

.c-icon--icon-Fully-Bonded-left:before,
.c-icon--icon-Fully-Bonded-right:after,
.c-icon--icon-Fully-Bonded:before {
    content: ""
}

.c-icon--icon-High-Visibility-left:before,
.c-icon--icon-High-Visibility-right:after,
.c-icon--icon-High-Visibility:before {
    content: ""
}

.c-icon--icon-Invisible-left:before,
.c-icon--icon-Invisible-right:after,
.c-icon--icon-Invisible:before {
    content: ""
}

.c-icon--icon-Labor-left:before,
.c-icon--icon-Labor-right:after,
.c-icon--icon-Labor:before {
    content: ""
}

.c-icon--icon-Lightweight-left:before,
.c-icon--icon-Lightweight-right:after,
.c-icon--icon-Lightweight:before {
    content: ""
}

.c-icon--icon-Low-Profile-left:before,
.c-icon--icon-Low-Profile-right:after,
.c-icon--icon-Low-Profile:before {
    content: ""
}

.c-icon--icon-Next-to-skin-Comfort-left:before,
.c-icon--icon-Next-to-skin-Comfort-right:after,
.c-icon--icon-Next-to-skin-Comfort:before {
    content: ""
}

.c-icon--icon-Performance-left:before,
.c-icon--icon-Performance-right:after,
.c-icon--icon-Performance:before {
    content: ""
}

.c-icon--icon-Security-left:before,
.c-icon--icon-Security-right:after,
.c-icon--icon-Security:before {
    content: ""
}

.c-icon--icon-Smooth-Fit-left:before,
.c-icon--icon-Smooth-Fit-right:after,
.c-icon--icon-Smooth-Fit:before {
    content: ""
}

.c-icon--icon-Stretchable-left:before,
.c-icon--icon-Stretchable-right:after,
.c-icon--icon-Stretchable:before {
    content: ""
}

.c-icon--icon-Versatile-left:before,
.c-icon--icon-Versatile-right:after,
.c-icon--icon-Versatile:before {
    content: ""
}

.c-icon--icon-Waterproof-left:before,
.c-icon--icon-Waterproof-right:after,
.c-icon--icon-Waterproof:before {
    content: ""
}

.c-icon--icon-arrow-right-left:before,
.c-icon--icon-arrow-right-right:after,
.c-icon--icon-arrow-right:before {
    content: ""
}

.c-icon--icon-caret-double-left-left:before,
.c-icon--icon-caret-double-left-right:after,
.c-icon--icon-caret-double-left:before {
    content: ""
}

.c-icon--icon-caret-double-right-left:before,
.c-icon--icon-caret-double-right-right:after,
.c-icon--icon-caret-double-right:before {
    content: ""
}

.c-icon--icon-caret-down-left:before,
.c-icon--icon-caret-down-right:after,
.c-icon--icon-caret-down:before,
.c-nav__item-btn .c-icon:before,
.c-nav__item-btn .c-nav__search-submit:before,
.c-nav__item-btn .c-search__bar-submit:before {
    content: ""
}

.c-icon--icon-caret-left-left:before,
.c-icon--icon-caret-left-right:after,
.c-icon--icon-caret-left:before {
    content: ""
}

.c-icon--icon-caret-right-left:before,
.c-icon--icon-caret-right-right:after,
.c-icon--icon-caret-right:before,
.c-nav__item-btn[aria-expanded=true]:after {
    content: ""
}

.c-icon--icon-caret-up-left:before,
.c-icon--icon-caret-up-right:after,
.c-icon--icon-caret-up:before,
.c-nav__item-btn[aria-expanded=true] .c-icon:before,
.c-nav__item-btn[aria-expanded=true] .c-nav__search-submit:before,
.c-nav__item-btn[aria-expanded=true] .c-search__bar-submit:before {
    content: ""
}

.c-icon--icon-cart-left:before,
.c-icon--icon-cart-right:after,
.c-icon--icon-cart:before {
    content: ""
}

.c-icon--icon-check-left:before,
.c-icon--icon-check-right:after,
.c-icon--icon-check:before {
    content: ""
}

.c-icon--icon-close-left:before,
.c-icon--icon-close-right:after,
.c-icon--icon-close:before {
    content: ""
}

.c-icon--icon-cta-custom-left:before,
.c-icon--icon-cta-custom-right:after,
.c-icon--icon-cta-custom:before {
    content: ""
}

.c-icon--icon-document-left:before,
.c-icon--icon-document-right:after,
.c-icon--icon-document:before {
    content: ""
}

.c-icon--icon-download-left:before,
.c-icon--icon-download-right:after,
.c-icon--icon-download:before {
    content: ""
}

.c-icon--icon-drop-down-left:before,
.c-icon--icon-drop-down-right:after,
.c-icon--icon-drop-down:before {
    content: ""
}

.c-icon--icon-error-left:before,
.c-icon--icon-error-right:after,
.c-icon--icon-error:before {
    content: ""
}

.c-icon--icon-facebook-left:before,
.c-icon--icon-facebook-right:after,
.c-icon--icon-facebook:before {
    content: ""
}

.c-icon--icon-hamburger-close-left:before,
.c-icon--icon-hamburger-close-right:after,
.c-icon--icon-hamburger-close:before {
    content: ""
}

.c-icon--icon-hamburger-left:before,
.c-icon--icon-hamburger-right:after,
.c-icon--icon-hamburger:before {
    content: ""
}

.c-icon--icon-heart-left:before,
.c-icon--icon-heart-right:after,
.c-icon--icon-heart:before {
    content: ""
}

.c-icon--icon-image-left:before,
.c-icon--icon-image-right:after,
.c-icon--icon-image:before {
    content: "^"
}

.c-icon--icon-instagram-left:before,
.c-icon--icon-instagram-right:after,
.c-icon--icon-instagram:before {
    content: ""
}

.c-icon--icon-link-left:before,
.c-icon--icon-link-right:after,
.c-icon--icon-link:before {
    content: ""
}

.c-icon--icon-linkedin-left:before,
.c-icon--icon-linkedin-right:after,
.c-icon--icon-linkedin:before {
    content: ""
}

.c-icon--icon-loading-left:before,
.c-icon--icon-loading-right:after,
.c-icon--icon-loading:before {
    content: ""
}

.c-icon--icon-lock-left:before,
.c-icon--icon-lock-right:after,
.c-icon--icon-lock:before {
    content: ""
}

.c-accordion__button[aria-expanded=true] .c-icon:before,
.c-accordion__button[aria-expanded=true] .c-nav__search-submit:before,
.c-accordion__button[aria-expanded=true] .c-search__bar-submit:before,
.c-icon--icon-minus-left:before,
.c-icon--icon-minus-right:after,
.c-icon--icon-minus:before {
    content: ""
}

.c-icon--icon-pause-left:before,
.c-icon--icon-pause-right:after,
.c-icon--icon-pause:before {
    content: ""
}

.c-icon--icon-pdf-left:before,
.c-icon--icon-pdf-right:after,
.c-icon--icon-pdf:before {
    content: ""
}

.c-icon--icon-pinterest-left:before,
.c-icon--icon-pinterest-right:after,
.c-icon--icon-pinterest:before {
    content: ""
}

.c-icon--icon-pipe-left:before,
.c-icon--icon-pipe-right:after,
.c-icon--icon-pipe:before {
    content: ""
}

.c-icon--icon-play-left:before,
.c-icon--icon-play-right:after,
.c-icon--icon-play:before {
    content: ""
}

.c-accordion__button[aria-expanded=false] .c-icon:before,
.c-accordion__button[aria-expanded=false] .c-nav__search-submit:before,
.c-accordion__button[aria-expanded=false] .c-search__bar-submit:before,
.c-icon--icon-plus-left:before,
.c-icon--icon-plus-right:after,
.c-icon--icon-plus:before {
    content: ""
}

.c-icon--icon-quote-left:before,
.c-icon--icon-quote-right:after,
.c-icon--icon-quote:before {
    content: ""
}

.c-icon--icon-search-left:before,
.c-icon--icon-search-right:after,
.c-icon--icon-search:before,
.c-nav__search-submit:before,
.c-search__bar-submit:before {
    content: ""
}

.c-icon--icon-star-left:before,
.c-icon--icon-star-right:after,
.c-icon--icon-star:before {
    content: ""
}

.c-icon--icon-twitter-left:before,
.c-icon--icon-twitter-right:after,
.c-icon--icon-twitter:before {
    content: ""
}

.c-icon--icon-user-left:before,
.c-icon--icon-user-right:after,
.c-icon--icon-user:before {
    content: ""
}

.c-icon--icon-xls-left:before,
.c-icon--icon-xls-right:after,
.c-icon--icon-xls:before {
    content: ""
}

.c-icon--icon-vimeo-left:before,
.c-icon--icon-vimeo-right:after,
.c-icon--icon-vimeo:before {
    content: ""
}

.c-icon--icon-youtube-left:before,
.c-icon--icon-youtube-right:after,
.c-icon--icon-youtube:before {
    content: ""
}

.c-icon:focus,
.c-icon:hover,
.c-nav__search-submit:focus,
.c-nav__search-submit:hover,
.c-search__bar-submit:focus,
.c-search__bar-submit:hover {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-icon--circle {
    background-color: #f2aa00;
    border-radius: 100%;
    color: #fff;
    padding: .2rem
}

.c-icon--square {
    background-color: #003ca6;
    border-radius: 0;
    color: #fff;
    padding: .2rem
}

.c-fproducts__btn,
.c-timeline__btn {
    color: #003ca6;
    cursor: pointer;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: "Alata", sans-serif;

    font-weight: 700;
    letter-spacing: .025rem;
    line-height: 1.75;
    text-transform: capitalize;
    -webkit-transition: all .25s linear;
    -o-transition: .25s linear all;
    transition: all .25s linear;
    position: relative;
    text-decoration: none
}

.c-fproducts__btn,
.c-fproducts__btn:before,
.c-timeline__btn,
.c-timeline__btn:before {
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.6rem;
    -ms-flex-pack: center;
    justify-content: center
}

.c-fproducts__btn:before,
.c-timeline__btn:before {
    color: #f2aa00;
    margin-right: .4rem
}

.c-fproducts__btn:focus,
.c-fproducts__btn:hover,
.c-timeline__btn:focus,
.c-timeline__btn:hover {
    color: #254c9a;
    text-decoration: none
}

.c-fproducts__btn:focus:before,
.c-fproducts__btn:hover:before,
.c-timeline__btn:focus:before,
.c-timeline__btn:hover:before {
    margin-right: .6rem
}

.c-link,
.c-nav__submenu-heading-explore,
.c-nav__submenu-item>a {
    -ms-flex-align: center;
    align-items: center;
    color: #003ca6;
    cursor: pointer;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: "Alata", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    -ms-flex-pack: center;
    justify-content: center;
    letter-spacing: .025rem;
    line-height: 1.75;
    text-transform: capitalize;
    -webkit-transition: all .25s linear;
    -o-transition: .25s linear all;
    transition: all .25s linear
}

.c-link:focus,
.c-link:hover,
.c-nav__submenu-heading-explore:focus,
.c-nav__submenu-heading-explore:hover,
.c-nav__submenu-item>a:focus,
.c-nav__submenu-item>a:hover {
    color: #254c9a;
    text-decoration: none
}

.c-link--cta,
.c-nav__submenu-item>a {
    position: relative;
    text-decoration: none
}

.c-link--cta:before,
.c-nav__submenu-item>a:before {
    -ms-flex-align: center;
    align-items: center;
 
    font-size: 1.6rem;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: .4rem
}

.c-link--cta:focus,
.c-link--cta:hover,
.c-nav__submenu-item>a:focus,
.c-nav__submenu-item>a:hover {
    color: #254c9a;
    text-decoration: none
}

.c-link--cta:focus:before,
.c-link--cta:hover:before,
.c-nav__submenu-item>a:focus:before,
.c-nav__submenu-item>a:hover:before {
    margin-right: .6rem
}

.c-logo {
    max-width: 12rem;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-logo {
        max-width:600px;
    }
}



.c-nav {
    position: relative
}

.c-nav,
.c-nav.is-open {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-nav.is-open {
    height: 100%
}

@media screen and (min-width:62em) {
    .c-nav {
        -ms-flex-align: center;
        align-items: center;
        display: -ms-flexbox;
        display: flex;
        height: 100%;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-top: 4rem
    }
}

.c-nav__mobile {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 6.4rem;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-nav__mobile {
        height: 11.6rem;
        max-width: 270px;
        width: 100%
    }
}

.c-nav__hamburger {
    display: block
}

@media screen and (min-width:62em) {
    .c-nav__hamburger {
        display: none
    }
}

.c-nav__hamburger-btn {
    -ms-flex-align: center;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-color: #f2aa00;
    border: none;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    height: 4.4rem;
    -ms-flex-pack: center;
    justify-content: center;
    width: 4.4rem
}

.c-nav__hamburger-btn,
.c-nav__hamburger-btn.is-open {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-nav__hamburger-btn.is-open {
    background-color: #003ca6
}

.c-nav__hamburger-btn.is-open>span {
    background-color: transparent
}

.c-nav__hamburger-btn.is-open>span:after {
    background-color: #fff;
    top: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.c-nav__hamburger-btn.is-open>span:before {
    background-color: #fff;
    bottom: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.c-nav.is-scrolled .c-nav__hamburger-btn {
    background-color: #003ca6
}

@media screen and (min-width:62em) {
    .c-nav__hamburger-btn {
        display: none
    }
}

.c-nav__hamburger-span {
    -ms-flex-align: center;
    align-items: center;
    background-color: #003ca6;
    display: -ms-flexbox;
    display: flex;
    height: .3rem;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 2.5rem
}

.c-nav__hamburger-span:after,
.c-nav__hamburger-span:before {
    background-color: #003ca6;
    content: "";
    display: block;
    height: .3rem;
    position: absolute;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    width: 2.5rem
}

.c-nav__hamburger-span:after {
    top: .8rem
}

.c-nav__hamburger-span:before {
    bottom: .8rem
}

.c-nav.is-scrolled .c-nav__hamburger-span,
.c-nav.is-scrolled .c-nav__hamburger-span:after,
.c-nav.is-scrolled .c-nav__hamburger-span:before {
    background-color: #fff
}

.c-nav.is-open .c-nav__hamburger-span {
    background-color: transparent
}

.c-nav__wrapper {
    background-color: transparent;
    height: 0
}

.c-nav__wrapper,
.c-nav__wrapper.is-open {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-nav__wrapper.is-open {
    background: #f1f3f3;
    border-top: .1rem solid #d9d9d6;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    margin-left: -1.6rem;
    overflow: auto;
    padding: 0 1.6rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:62em) {
    .c-nav__wrapper {
        -ms-flex-align: center;
        align-items: center;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        height: 100%;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        width: 100%
    }
}

.c-nav__primary {
    display: none;
    -ms-flex-order: 2;
    order: 2;
    padding-bottom: 3.2rem
}

.c-nav.is-open .c-nav__primary {
    display: -ms-flexbox;
    display: flex
}

@media screen and (min-width:62em) {
    .c-nav__primary {
        display: -ms-flexbox;
        display: flex;
        height: 100%;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-order: 3;
        order: 3;
        overflow: auto;
        padding: 0;
        width: 100%
    }
}

.c-nav__menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    list-style: none;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-nav__menu {
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: start;
        justify-content: start;
        margin-left: 2rem
    }
}

@media screen and (min-width:80em) {
    .c-nav__menu {
        -ms-flex-pack: center;
        justify-content: center;
        margin-left: 0
    }
}

.c-nav__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: .8rem;
    position: relative;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

@media screen and (min-width:62em) {
    .c-nav__item {
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 3rem 0 0;
        position: inherit
    }
    .c-nav__item:last-of-type {
        margin: 0
    }
}

.c-nav__item--cta {
    margin-top: 1rem
}

@media screen and (min-width:62em) {
    .c-nav__item--cta {
        height: auto;
        margin: 0;
        position: absolute;
        right: 0;
        top: 47%
    }
}

.c-nav__item-btn {
    -ms-flex-align: center;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 0;
    width: 100%
}

.c-nav__item-btn,
.c-nav__item-btn:focus,
.c-nav__item-btn:hover {
    text-decoration: none;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

@media screen and (min-width:62em) {
    .c-nav__item-btn:focus,
    .c-nav__item-btn:hover {
        background-color: #fff;
        color: #003ca6
    }
    .c-nav__item-btn:focus>span,
    .c-nav__item-btn:hover>span {
        color: #003ca6
    }
    .c-nav.is-scrolled .c-nav__item-btn:focus,
    .c-nav.is-scrolled .c-nav__item-btn:hover {
        background-color: #003ca6;
        color: #fff
    }
    .c-nav.is-scrolled .c-nav__item-btn:focus>span,
    .c-nav.is-scrolled .c-nav__item-btn:hover>span {
        color: #fff
    }
}

.c-nav__item-btn:focus:after,
.c-nav__item-btn:hover:after {
    margin-right: 1rem
}

@media screen and (min-width:62em) {
    .c-nav__item-btn {
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        height: 100%;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0;
     
    }
    .c-nav__item-btn:after {
        display: none
    }
    .c-nav__item.current-page .c-nav__item-btn {
        background-color: #fff
    }
    .c-nav__item.current-page .c-nav__item-btn:focus,
    .c-nav__item.current-page .c-nav__item-btn:hover {
        background-color: #f2aa00
    }
    .c-nav.is-scrolled .c-nav__item.current-page .c-nav__item-btn {
        background-color: #254c9a
    }
}

.c-nav__item--cta .c-nav__item-btn {
    padding: 1rem 0
}

.c-nav__item--cta .c-nav__item-btn:after {
    -ms-flex-align: center;
    align-items: center;
    background-color: #f2aa00;
    color: #003ca6;
    display: -ms-flexbox;
    display: flex;
    font-size: 2.5rem;
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}

.c-nav.is-scrolled .c-nav__item--cta .c-nav__item-btn:focus,
.c-nav.is-scrolled .c-nav__item--cta .c-nav__item-btn:hover {
    background-position: 0 50%;
    color: #254c9a
}

.c-nav.is-scrolled .c-nav__item--cta .c-nav__item-btn:focus:after,
.c-nav.is-scrolled .c-nav__item--cta .c-nav__item-btn:hover:after {
    background-color: #003ca6
}

.c-nav.is-scrolled .c-nav__item--cta .c-nav__item-btn:focus .c-icon,
.c-nav.is-scrolled .c-nav__item--cta .c-nav__item-btn:focus .c-nav__search-submit,
.c-nav.is-scrolled .c-nav__item--cta .c-nav__item-btn:focus .c-search__bar-submit,
.c-nav.is-scrolled .c-nav__item--cta .c-nav__item-btn:hover .c-icon,
.c-nav.is-scrolled .c-nav__item--cta .c-nav__item-btn:hover .c-nav__search-submit,
.c-nav.is-scrolled .c-nav__item--cta .c-nav__item-btn:hover .c-search__bar-submit {
    color: #254c9a !important
}

.c-nav__item--cta .c-nav__item-btn:focus:after,
.c-nav__item--cta .c-nav__item-btn:hover:after {
    background-color: #254c9a;
    margin: 0
}

@media screen and (min-width:62em) {
    .c-nav__item--cta .c-nav__item-btn {
        padding: .5rem 6rem .5rem 2rem
    }
    .c-nav.is-scrolled .c-nav__item--cta .c-nav__item-btn {
        background: none;
        background: -webkit-linear-gradient(160deg, #003ca6 50%, #f2aa00 0);
        background: -o-linear-gradient(160deg, #003ca6 50%, #f2aa00 0);
        background: linear-gradient(-70deg, #003ca6 50%, #f2aa00 0);
        background-color: #003ca6;
        background-position: 100% 50%;
        background-size: 250% 100%;
        padding: .5rem 6rem .5rem 2rem
    }
}

.c-nav__item--cta .c-nav__item-btn-text {
    color: #fff
}

.c-nav__item-btn[aria-expanded=true] {
    -ms-flex-pack: start;
    justify-content: flex-start
}

.c-nav__item-btn[aria-expanded=true]:after {
    display: none
}

@media screen and (min-width:62em) {
    .c-nav__item-btn[aria-expanded=true] {
        background-color: #fff
    }
    .c-nav.is-scrolled .c-nav__item-btn[aria-expanded=true] {
        background-color: #003ca6
    }
    .c-nav.is-scrolled .c-nav__item-btn[aria-expanded=true] .c-icon,
    .c-nav.is-scrolled .c-nav__item-btn[aria-expanded=true] .c-nav__search-submit,
    .c-nav.is-scrolled .c-nav__item-btn[aria-expanded=true] .c-search__bar-submit {
        background-color: transparent
    }
    .c-nav__item-btn[aria-expanded=true]>span {
        color: #003ca6
    }
    .c-nav.is-scrolled .c-nav__item-btn[aria-expanded=true]>span {
        color: #fff
    }
    .c-nav.is-scrolled .c-nav__item-btn[aria-expanded=true] .c-icon,
    .c-nav.is-scrolled .c-nav__item-btn[aria-expanded=true] .c-nav__search-submit,
    .c-nav.is-scrolled .c-nav__item-btn[aria-expanded=true] .c-search__bar-submit {
        color: #254c9a
    }
    .c-nav__item-btn[aria-expanded=true]:after,
    .c-nav__item-btn[aria-expanded=true]:before {
        display: none
    }
}

.c-nav__item-btn[aria-expanded=true]+.js-submenu {
    display: block;

    width: 30%
}

.c-nav__item-btn[aria-expanded=true] .c-icon,
.c-nav__item-btn[aria-expanded=true] .c-nav__search-submit,
.c-nav__item-btn[aria-expanded=true] .c-search__bar-submit {
    background-color: transparent
}

.c-nav__item-btn-text {
    color: #003ca6;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

@media screen and (min-width:62em) {
    .c-nav__item-btn-text {
        color: #fff; font-size: 16px; padding: 0px 10px; text-transform: uppercase;
    }
    .c-nav.is-scrolled .c-nav__item-btn-text {
        color: #fff;
    }
    .c-nav.is-scrolled .c-nav__item-btn-text .c-icon,
    .c-nav.is-scrolled .c-nav__item-btn-text .c-nav__search-submit,
    .c-nav.is-scrolled .c-nav__item-btn-text .c-search__bar-submit {
        color: #254c9a
    }
    .c-nav__item.current-page .c-nav__item-btn-text {
        color: #003ca6
    }
    .c-nav.is-scrolled .c-nav__item.current-page .c-nav__item-btn-text {
        color: #fff
    }
    .c-nav.is-scrolled .c-nav__item.current-page .c-nav__item-btn-text .c-icon,
    .c-nav.is-scrolled .c-nav__item.current-page .c-nav__item-btn-text .c-nav__search-submit,
    .c-nav.is-scrolled .c-nav__item.current-page .c-nav__item-btn-text .c-search__bar-submit {
        color: #254c9a
    }
    .c-nav.is-scrolled .c-nav__item--cta .c-nav__item-btn-text,
    .c-nav__item--cta .c-nav__item-btn-text {
        color: #fff
    }
    .c-nav.is-scrolled .c-nav__item--cta .c-nav__item-btn-text .c-icon,
    .c-nav.is-scrolled .c-nav__item--cta .c-nav__item-btn-text .c-nav__search-submit,
    .c-nav.is-scrolled .c-nav__item--cta .c-nav__item-btn-text .c-search__bar-submit {
        color: #254c9a
    }
}

.c-nav__item-btn .c-icon,
.c-nav__item-btn .c-nav__search-submit,
.c-nav__item-btn .c-search__bar-submit {
    font-size: 1.4rem
}

.c-nav__item-btn--arrow {
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem 2rem;
    position: absolute;
    left: 50%;
    top: 1rem;
    width: 2rem
}

.c-nav__item-btn--arrow,
.c-nav__item-btn--arrow[aria-expanded=true] {
    -ms-flex-pack: center;
    justify-content: center
}

.c-nav__item-btn--arrow .c-icon,
.c-nav__item-btn--arrow .c-nav__search-submit,
.c-nav__item-btn--arrow .c-search__bar-submit {
    color: #254c9a
}

@media screen and (min-width:62em) {
    .c-nav__item-btn--arrow {
        background-color: transparent;
        height: 100%;
        padding: 0 1rem;
        position: inherit;
        width: 3rem
    }
    .c-nav__item-btn--arrow .c-icon,
    .c-nav__item-btn--arrow .c-nav__search-submit,
    .c-nav__item-btn--arrow .c-search__bar-submit {
        color: #fff
    }
    .c-nav.is-scrolled .c-nav__item-btn--arrow .c-icon,
    .c-nav.is-scrolled .c-nav__item-btn--arrow .c-nav__search-submit,
    .c-nav.is-scrolled .c-nav__item-btn--arrow .c-search__bar-submit {
        color: #254c9a
    }
    .c-nav.is-scrolled .c-nav__item-btn--arrow[aria-expanded=true] .c-icon,
    .c-nav.is-scrolled .c-nav__item-btn--arrow[aria-expanded=true] .c-nav__search-submit,
    .c-nav.is-scrolled .c-nav__item-btn--arrow[aria-expanded=true] .c-search__bar-submit {
        color: #fff
    }
}

.c-nav__submenu {
    background: #fff;
    display: none;
    margin-top: 2rem;
    position: relative;
    width: 40%
}

.c-nav__submenu:after,
.c-nav__submenu:before {
    background-color: #d9d9d6;
    content: "";
    display: block;

    position: absolute;
    right: 0;
 
}

@media screen and (min-width:62em) {
    .c-nav__submenu {
        background-color: #fff;
        border-top: none;
        -webkit-box-shadow: 0 0 1.6rem 0 rgba(70, 80, 122, .4);
        box-shadow: 0 0 1.6rem 0 rgba(70, 80, 122, .4);
  
      
        margin: 0 auto;
        overflow: auto;
        padding: 20px 0;
        position: absolute;
   
        top: 11.6rem; width: 35%;
    }
    .c-nav__submenu:after,
    .c-nav__submenu:before {
        display: none
    }
}

.c-nav__submenu-heading {
    margin-bottom: 2.4rem
}

@media screen and (min-width:62em) {
    .c-nav__submenu-heading {
        -ms-flex-align: center;
        align-items: center;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 2.4rem
    }
}

.c-nav__submenu-heading-search,
.c-nav__submenu-heading-title {
    display: none;
    text-transform: none
}

@media screen and (min-width:62em) {
    .c-nav__submenu-heading-search,
    .c-nav__submenu-heading-title {
        display: block
    }
}

.c-nav__submenu-heading-search {
    display: block
}

.c-nav__submenu-heading-explore {
    padding: 0;
    text-decoration: none;
    text-transform: none
}

.c-nav__submenu-heading-explore:after {
    width: 2rem
}

.c-nav__submenu-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 3.2rem 0
}

@media screen and (min-width:62em) {
    .c-nav__submenu-list {
        height: auto;
        margin-bottom: 1.6rem;
        padding: 0 5rem
    }
}

.c-nav__submenu-list--featured-left {
    position: relative
}

.c-nav__submenu-list--featured-left:before {
    background-color: #d9d9d6;
    content: "";
    display: block;
    height: .1rem;
    left: -1.6rem;
    position: absolute;
    right: 0;
    top: 0;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:62em) {
    .c-nav__submenu-list--featured-left {
        border-right: .1rem solid #d9d9d6;
        height: 100%;
        padding-left: 0
    }
    .c-nav__submenu-list--featured-left:before {
        display: none
    }
}

@media screen and (min-width:62em) {
    .c-nav__submenu-list--featured-right {
        border-left: .1rem solid #d9d9d6;
        height: 100%;
        padding-right: 0
    }
}

.c-nav__submenu-list-title {
    text-decoration: none;
    margin-bottom: .6rem
}

@media screen and (min-width:62em) {
    .c-nav__submenu-list-title {
        margin-bottom: .4rem
    }
}

.c-nav__submenu-list-title:hover {
    text-decoration: none
}

.c-nav__submenu-list-menu {
    list-style: none
}

@media screen and (min-width:62em) {
    .c-nav__submenu-list-menu {
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 0
    }
}

.c-nav__submenu-item {
    margin-bottom: .4rem
}

.c-nav__submenu-item:last-of-type {
    margin-bottom: 0
}

@media screen and (min-width:62em) {
    .c-nav__submenu-item {
        margin-bottom: .8rem
    }
}

.c-nav__submenu-item>a {
    color: #003ca6;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-decoration: none;
    text-transform: capitalize;
    width: 100%
}

.c-nav__submenu-item>a:before {
    display: none
}

.c-nav__submenu-item>a:focus,
.c-nav__submenu-item>a:hover {
    text-decoration: underline
}

@media screen and (min-width:62em) {
    .c-nav__submenu-item>a {
        -ms-flex-align: baseline;
        align-items: baseline;
        color: #003ca6;
        position: relative
    }
    .c-nav__submenu-item>a:before {
        left: 0;
        position: absolute;
        top: .8rem
    }
    .c-nav__submenu-item>a:focus,
    .c-nav__submenu-item>a:hover {
        color: #254c9a;
        padding-left: 2.5rem;
        text-decoration: none
    }
    .c-nav__submenu-item>a:focus:before,
    .c-nav__submenu-item>a:hover:before {
        display: -ms-flexbox;
        display: flex
    }
}

.c-nav__submenu-list--featured-left .c-nav__submenu-item>a,
.c-nav__submenu-list--featured-right .c-nav__submenu-item>a {
    color: #003ca6;
    margin-bottom: 1rem
}

@media screen and (min-width:62em) {
    .c-nav__submenu-list--featured-left .c-nav__submenu-item>a,
    .c-nav__submenu-list--featured-right .c-nav__submenu-item>a {
        padding-left: 2rem;
        -webkit-text-decoration-color: transparent;
        text-decoration-color: transparent
    }
    .c-nav__submenu-list--featured-left .c-nav__submenu-item>a:before,
    .c-nav__submenu-list--featured-right .c-nav__submenu-item>a:before {
        display: -ms-flexbox;
        display: flex;
        top: 1rem
    }
    .c-nav__submenu-list--featured-left .c-nav__submenu-item>a:focus,
    .c-nav__submenu-list--featured-left .c-nav__submenu-item>a:hover,
    .c-nav__submenu-list--featured-right .c-nav__submenu-item>a:focus,
    .c-nav__submenu-list--featured-right .c-nav__submenu-item>a:hover {
        padding-left: 2.5rem;
        text-decoration: underline;
        -webkit-text-decoration-color: #f2aa00;
        text-decoration-color: #f2aa00
    }
}

.c-nav__submenu-item-link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    text-decoration: none;
    text-transform: capitalize
}

.c-nav__submenu-item-link,
.c-nav__submenu-item-link:hover {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-nav__submenu-item-link:hover {
    text-decoration: underline
}

.c-nav__searchbar {
    background: #f1f3f3;
    display: none;
    -ms-flex-order: 1;
    order: 1; width: 35%
}

.c-nav.is-open .c-nav__searchbar {
    display: block
}

@media screen and (min-width:62em) {
    .c-nav__searchbar {
        background: transparent;
        display: -ms-flexbox;
        display: flex;
        height: 3rem;
        left: 0;
        position: absolute;
        top: .5rem;
        width: 35%
    }
}

.c-nav__search {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    height: 4.4rem;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 2rem 0;
    padding: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

@media screen and (min-width:62em) {
    .c-nav__search {
        height: 100%;
        margin: 0;
        width: auto
    }
}

.c-nav__search.is-open {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 100%
}

.c-nav__search-label {
    display: block;
    height: 100%;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-nav__search-label {
        -ms-flex-align: center;
        align-items: center;
        border: .1rem solid #fff;
        border-left: none;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.c-nav__search-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: .2rem solid #003ca6;
    border-radius: 0;
    color: #53565a;
    height: 100%;
    padding: 0 1.2rem;
    width: 100%
}

.c-nav__search-input::-webkit-input-placeholder {
    color: #53565a
}

.c-nav__search-input::-moz-placeholder {
    color: #53565a
}

.c-nav__search-input::-ms-input-placeholder {
    color: #53565a
}

.c-nav__search-input::placeholder {
    color: #53565a
}

.c-nav__search-input:focus {
    border: none;
    border-radius: 0;
    height: 100%
}

@media screen and (min-width:62em) {
    .c-nav__search-input {
        background-color: transparent;
        border: none;
        color: #fff
    }
    .c-nav__search-input::-webkit-input-placeholder {
        color: #fff
    }
    .c-nav__search-input::-moz-placeholder {
        color: #fff
    }
    .c-nav__search-input::-ms-input-placeholder {
        color: #fff
    }
    .c-nav__search-input::placeholder {
        color: #fff
    }
}

.c-nav__search-submit {
    -ms-flex-align: center;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #003ca6;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 2.2rem;
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 4.4rem
}

@media screen and (min-width:62em) {
    .c-nav__search-submit {
        font-size: 1.2rem;
        width: 3rem
    }
}

.c-nav__topnav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-order: 3;
    order: 3
}

@media screen and (min-width:62em) {
    .c-nav__topnav {
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-direction: row;
        flex-direction: row;
        height: 3rem;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -ms-flex-order: 2;
        order: 2;
        position: absolute;
        right: 0;
        top: .5rem;
        width: 70%
    }
}

.c-nav__topmenu {
    display: none;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style: none
}

.c-nav.is-open .c-nav__topmenu {
    display: -ms-flexbox;
    display: flex
}

@media screen and (min-width:62em) {
    .c-nav__topmenu {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
}

.c-nav__topmenu-item {
    margin-bottom: 1rem
}

@media screen and (min-width:62em) {
    .c-nav__topmenu-item {
        margin: 0 1.6rem 0 0
    }
}

.c-nav__topmenu-item>a {
    color: #003ca6;
    display: inline-block;
    padding: 1rem 0;
    text-decoration: none;
    width: 100%
}

.c-nav__topmenu-item>a:focus,
.c-nav__topmenu-item>a:hover {
    text-decoration: underline
}

@media screen and (min-width:62em) {
    .c-nav__topmenu-item>a {
        color: #fff;
        padding: 0 .3rem
    }
}

.c-nav__language {
    border: .1rem solid #003ca6;
    height: 4.4rem;
    max-width: 13.2rem;
    position: absolute;
    right: 5.6rem;
    top: 1rem;
    width: 100%
}

.c-nav__language:after {
    -ms-flex-align: center;
    align-items: center;
    background-color: #f2aa00;
    bottom: 0;
    color: #003ca6;
    content: "\e90d";
    display: -ms-inline-flexbox;
    display: inline-flex;
   font-family: "Alata", sans-serif;
    font-size: 1.2rem;
    -ms-flex-pack: center;
    justify-content: center;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 4.4rem
}

.c-nav.is-open .c-nav__language:after,
.c-nav.is-scrolled .c-nav__language:after {
    background-color: #003ca6;
    color: #fff
}

@media screen and (min-width:62em) {
    .c-nav__language:after {
        background-color: #003ca6;
        color: #fff;
        height: 100%;
        width: 3rem
    }
}

@media screen and (min-width:62em) {
    .c-nav__language {
        border: none;
        height: 100%;
        position: relative;
        right: 0;
        top: 0
    }
}

.c-nav__language-select {
    background-color: transparent;
    border: .1rem solid #fff;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: block;
    font-family: "Alata", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-weight: 700;
    height: 100%;
    letter-spacing: .025rem;
    line-height: 2;
    padding: .6rem 1rem;
    text-transform: capitalize;
    width: 100%
}

.c-nav.is-open .c-nav__language-select,
.c-nav.is-scrolled .c-nav__language-select {
    color: #000
}

@media screen and (min-width:62em) {
    .c-nav.is-open .c-nav__language-select,
    .c-nav.is-scrolled .c-nav__language-select {
        color: #fff
    }
}

@media screen and (min-width:62em) {
    .c-nav__language-select {
        padding: 0 .5rem
    }
}

.c-skiplink {
    background-color: #000;
    color: #fff !important;
    display: block;
    font-weight: 700;
    height: auto;
    padding: .5rem 1rem;
    position: absolute;
    text-align: center;
    text-decoration: none;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-skiplink {
        display: inline-block;
        height: .1rem;
        left: -1000rem;
        position: absolute;
        top: auto;
        width: .1rem
    }
}

@media screen and (min-width:62em) {
    .c-skiplink:not(:focus):not(:active) {
        top: -6rem
    }
}

.c-skiplink.is-focused,
.c-skiplink:active,
.c-skiplink:focus {
    background-color: #000;
    border: .2rem inset #fff;
    color: #fff;
    display: block;
    height: auto;
    margin: .2rem;
    position: relative;
    text-decoration: underline;
    width: auto;
    z-index: 9999
}

.c-skiplink.is-focused+header,
.c-skiplink:active+header,
.c-skiplink:focus+header {
    position: relative
}

.c-skiplink.is-focused+header+main,
.c-skiplink.is-focused+main,
.c-skiplink:active+header+main,
.c-skiplink:active+main,
.c-skiplink:focus+header+main,
.c-skiplink:focus+main {
    position: relative;
    top: -6.4rem
}

@media screen and (min-width:62em) {
    .c-skiplink.is-focused,
    .c-skiplink:active,
    .c-skiplink:focus {
        left: .3rem;
        position: absolute;
        top: .3rem;
        -webkit-transition: top .15s ease-in;
        -o-transition: top .15s ease-in;
        transition: top .15s ease-in
    }
    .c-skiplink.is-focused+header,
    .c-skiplink:active+header,
    .c-skiplink:focus+header {
        position: fixed
    }
    .c-skiplink.is-focused+header+main,
    .c-skiplink:active+header+main,
    .c-skiplink:focus+header+main {
        top: auto
    }
}

.c-fnews__item-date,
.c-form label .wpcf7-not-valid-tip,
.c-nav__search-input,
.c-nav__search-input::-webkit-input-placeholder,
.c-possibilities__trigger-pause,
.c-possibilities__trigger-play,
.c-post__intro-meta,
.c-product__color,
.c-product__use,
.c-search__bar-input {
    font-family: "Alata", sans-serif;
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.176
}

.c-fnews__item-date,
.c-form label .wpcf7-not-valid-tip,
.c-nav__search-input,
.c-nav__search-input::-moz-placeholder,
.c-possibilities__trigger-pause,
.c-possibilities__trigger-play,
.c-post__intro-meta,
.c-product__color,
.c-product__use,
.c-search__bar-input {
    font-family: "Alata", sans-serif;
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.176
}

.c-fnews__item-date,
.c-form label .wpcf7-not-valid-tip,
.c-nav__search-input,
.c-nav__search-input::-ms-input-placeholder,
.c-possibilities__trigger-pause,
.c-possibilities__trigger-play,
.c-post__intro-meta,
.c-product__color,
.c-product__use,
.c-search__bar-input {
    font-family: "Alata", sans-serif;
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.176
}

.c-fnews__item-date,
.c-form label .wpcf7-not-valid-tip,
.c-nav__search-input,
.c-nav__search-input::placeholder,
.c-possibilities__trigger-pause,
.c-possibilities__trigger-play,
.c-post__intro-meta,
.c-product__color,
.c-product__use,
.c-search__bar-input {
    font-family: "Alata", sans-serif;
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.176
}

.c-fnews__item-date,
.c-form label .wpcf7-not-valid-tip,
.c-gallery__caption,
.c-nav__search-input,
.c-nav__search-input::-webkit-input-placeholder,
.c-possibilities__trigger-pause,
.c-possibilities__trigger-play,
.c-post__intro-meta,
.c-product__color,
.c-product__use,
.c-search__bar-input {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .025rem;
    line-height: 2
}

.c-fnews__item-date,
.c-form label .wpcf7-not-valid-tip,
.c-gallery__caption,
.c-nav__search-input,
.c-nav__search-input::-moz-placeholder,
.c-possibilities__trigger-pause,
.c-possibilities__trigger-play,
.c-post__intro-meta,
.c-product__color,
.c-product__use,
.c-search__bar-input {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .025rem;
    line-height: 2
}

.c-fnews__item-date,
.c-form label .wpcf7-not-valid-tip,
.c-gallery__caption,
.c-nav__search-input,
.c-nav__search-input::-ms-input-placeholder,
.c-possibilities__trigger-pause,
.c-possibilities__trigger-play,
.c-post__intro-meta,
.c-product__color,
.c-product__use,
.c-search__bar-input {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .025rem;
    line-height: 2
}

.c-fnews__item-date,
.c-form label .wpcf7-not-valid-tip,
.c-gallery__caption,
.c-nav__search-input,
.c-nav__search-input::placeholder,
.c-possibilities__trigger-pause,
.c-possibilities__trigger-play,
.c-post__intro-meta,
.c-product__color,
.c-product__use,
.c-search__bar-input {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .025rem;
    line-height: 2
}

.c-accordion__button-text,
.c-gallery--builder .c-gallery__caption,
.c-lcards__card-address,
.c-lcards__card-phone a,
.c-proTemplate__clear {
    color: #53565a;
    font-size: 1.6rem;
    letter-spacing: .025rem;
    line-height: 1.75
}

.c-footer__copyright,
.c-footer__legal>.menu-item>a,
.c-nav__submenu-item-link,
.c-nav__topmenu-item>a,
.c-product__download-text,
.c-type {
    font-family: "Alata", sans-serif;
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.176
}

.c-footer__copyright,
.c-footer__legal>.menu-item>a,
.c-nav__topmenu-item>a,
.c-type--small {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .025rem;
    line-height: 2
}

.c-type--body {
    color: #53565a;
    font-size: 1.6rem;
    letter-spacing: .025rem;
    line-height: 1.75
}

.c-wysiwyg {
    color: #53565a;
    word-break: break-word
}

.c-wysiwyg p {
    font-size: 15px;
    letter-spacing: 0px;
    margin-bottom: 1.6rem;font-family: "Alata", sans-serif;
}

.c-wysiwyg h1 {
    color: #003ca6
}

.c-wysiwyg h2 {
    color: #000;
    letter-spacing: .1rem
}

.c-wysiwyg h2,
.c-wysiwyg h3 {
    font-weight: 400;
    margin-bottom: 1rem
}

.c-wysiwyg h3 {
    color: #003ca6
}

.c-wysiwyg h4 {
    color: #003ca6;
    font-weight: 600;
    margin-bottom: 1rem
}

.c-wysiwyg h5 {
    font-weight: 400;
    margin-bottom: 1rem
}

.c-wysiwyg h6 {
    font-weight: 300;
    margin: 2rem 0
}

.c-wysiwyg ul {
    list-style: none;
    padding-left: .5rem
}

.o-grid.o-grid--flush.mart-top {
    margin: 0px 0 0 0;
}

.c-wysiwyg ul li {
   
    position: relative; list-style: disc; font-size:15px; text-align: left; font-weight: 400;font-family: "Alata", sans-serif;
}

.c-wysiwyg ul li:before {

    border-radius: 50%;
    content: "";
    display: block;
    height: .6rem;
    left: 0;
    position: absolute;
    top: 1.3rem;
    width: .6rem
}

.c-wysiwyg figure {
    margin-bottom: 4rem;
    width: 100%
}

.c-wysiwyg iframe,
.c-wysiwyg video {
    min-height: 25rem;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-wysiwyg iframe,
    .c-wysiwyg video {
        min-height: 35rem
    }
}

.c-wysiwyg--split {
    color: #53565a;
    margin: 0
}

.c-wysiwyg--product {
    margin-bottom: 1.6rem
}

.c-wysiwyg--locations {
    margin-bottom: 1.6rem;
    max-width: 58rem
}

.c-wysiwyg--quote {
    margin-bottom: 2.4rem
}

.c-wysiwyg--centered p,
.c-wysiwyg--quote p {
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.4
}

.c-wysiwyg--centered p {
    text-align: center
}

.c-wysiwyg--story ul {
    color: #000
}

.c-wysiwyg--cookies,
.c-wysiwyg--cookies a,
.c-wysiwyg--cookies p,
.c-wysiwyg--cookies span {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.8rem;
    margin-bottom: 0
}

.c-wysiwyg--caseStudy h2 {
    color: #003ca6
}

.c-wysiwyg--caseStudy p {
    color: #53565a
}

.c-404 {
    background-color: #254c9a;
    -webkit-filter: contrast(150%);
    filter: contrast(150%);
    padding: 12rem 0;
    position: relative
}

@media screen and (min-width:62em) {
    .c-404 {
        padding: 15rem 0
    }
}

.c-404:after {
    background-color: rgba(0, 23, 119, .5);
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

.c-404__wrapper {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 38rem;
    position: relative
}

.c-404__image {
    display: block;
    height: 20rem;
    margin-bottom: 4rem;
    width: 34rem
}

@media screen and (min-width:62em) {
    .c-404__image {
        height: 22rem;
        width: 38rem
    }
}

.c-404__text {
    color: #fff;
    margin-bottom: 2.4rem;
    text-align: center
}

.c-404__cta {
    background-color: #f2aa00;
    background-image: none;
    color: #003ca6;
    text-decoration: none
}

.c-404__cta:focus,
.c-404__cta:hover {
    color: #fff;
    text-decoration: none
}

.c-blog {
    -webkit-transition: all .2s linear;
    -o-transition: all linear .2s;
    transition: all .2s linear
}

@media screen and (min-width:48em) {
    .c-blog {
        margin-bottom: 4rem
    }
}

.c-blog--category {
    background-color: #f1f3f3;
    margin: 0;
    padding: 6rem 0
}

@media screen and (min-width:62em) {
    .c-blog--category {
        padding: 10rem 0 7rem
    }
}

.c-blog__slider {
    margin-bottom: 6rem
}

.c-blog__slide {
    margin-top: 3.2rem
}

@media screen and (min-width:48em) {
    .c-blog__slide {
        margin-top: 0
    }
}

.c-blog--category .c-blog__slide {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    margin: 0 0 3.2rem
}

.c-blog__slide_img-wrapper {
    overflow: hidden;
    padding-bottom: 100%;
    position: relative;
    width: 100%
}

.c-blog--category .c-blog__slide_img-wrapper {
    height: 33.2rem;
    padding: 0
}

@media screen and (min-width:48em) {
    .c-blog--category .c-blog__slide_img-wrapper {
        height: 26.7rem
    }
}

.c-blog__slide_img-wrapper:hover>span {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.c-blog__slide_img {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    width: 100%
}

.c-blog__slide_link {
    margin: 2rem 0 1.2rem;
    text-decoration: none
}

.c-blog__slide_link:focus,
.c-blog__slide_link:hover {
    color: #003ca6;
    text-decoration: none
}

.c-blog__slide_date {
    font-size: 1.4rem
}

.c-blog__slide-title {
    margin-bottom: 1.2rem;
    text-decoration: none
}

.c-blog__slide-title:focus,
.c-blog__slide-title:hover {
    text-decoration: none;
    -webkit-transition: all .2s linear;
    -o-transition: all linear .2s;
    transition: all .2s linear
}

.c-blog__slide-title:focus>h2,
.c-blog__slide-title:hover>h2 {
    color: #003ca6
}

.c-blog__controls {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 1.6rem;
    margin-top: 1.6rem;
    width: 100%;
    z-index: 5
}

@media screen and (min-width:48em) {
    .c-blog__controls {
        display: none
    }
    .c-blog__controls.is-hidden {
        display: none;
        pointer-events: none
    }
}

.c-blog__controls-next,
.c-blog__controls-prev {
    background-color: #003ca6;
    border-radius: 0;
    cursor: pointer;
    height: 4.4rem;
    position: relative;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 4.4rem
}

.c-blog__controls-next:before,
.c-blog__controls-prev:before {
    color: #fff;
    font-size: 2rem
}

.c-blog__controls-next:hover,
.c-blog__controls-prev:hover {
    background-color: #254c9a;
    border-radius: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-blog__controls-next:hover:before,
.c-blog__controls-prev:hover:before {
    color: #003ca6
}

.c-blog__controls-next.swiper-button-disabled,
.c-blog__controls-prev.swiper-button-disabled {
    opacity: .6;
    pointer-events: none
}

.c-blog__controls-prev {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.c-blog__controls-prev:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media screen and (min-width:62em) {
    .c-blog__controls-prev {
        margin-right: 1rem
    }
}

.c-blog__controls-next {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 3.2rem;
    position: relative
}

@media screen and (min-width:62em) {
    .c-blog__controls-next {
        margin: 0
    }
}

.c-blog__controls-pagination {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.c-blog__controls-pagination .swiper-pagination-bullet {
    background-color: #003ca6;
    border: 0 solid #003ca6;
    border-radius: 0;
    margin-left: 1.6rem;
    opacity: 1;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-blog__controls-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
    border: .3rem solid #003ca6;
    height: 1.1rem;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 1.1rem
}

.c-breadcrumb {
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    list-style: none;
    padding: .7rem 0;
    max-width: 90%
}

@media screen and (min-width:62em) {
    .c-breadcrumb {
        max-width: unset
    }
}

.c-breadcrumb--dark {
    background-color: #003ca6
}

@media screen and (min-width:62em) {
    .c-breadcrumb--dark {
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.c-breadcrumb__item {
    margin-right: 1rem;
    padding-right: 2rem;
    position: relative
}

.c-breadcrumb__item:after {
    background-color: #aaabad;
    content: "";
    display: block;
    height: 1.3rem;
    position: absolute;
    right: .5rem;
    top: calc(50% - .5rem);
    width: .2rem;
    z-index: 2
}

.c-breadcrumb__item:first-of-type {
    margin-left: 0;
    padding-left: 0
}

.c-breadcrumb__item:last-of-type {
    border: none;
    overflow: hidden;
    padding-right: 0
}

.c-breadcrumb__item:last-of-type:after {
    display: none
}

.c-breadcrumb__item:last-of-type>a {
    color: #53565a;
    pointer-events: none;
    text-decoration: none
}

.c-breadcrumb__item:last-of-type>a:after {
    display: none
}

@media screen and (min-width:62em) {
    .c-breadcrumb__item:last-of-type {
        max-width: 22rem
    }
}

.c-breadcrumb__item>a {
    color: #003ca6;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    white-space: nowrap;
    width: 100%
}

.c-breadcrumb--dark .c-breadcrumb__item>a {
    background-color: #003ca6;
    color: #fff
}

.c-breadcrumb__item>a:after {
    background-color: #f2aa00;
    bottom: 0;
    content: "";
    display: block;
    height: .2rem;
    left: 0;
    position: absolute;
    right: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 100%
}

.c-breadcrumb__item>a:focus:after,
.c-breadcrumb__item>a:hover:after {
    background-color: #003ca6;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-breadcrumb--dark .c-breadcrumb__item>a:focus:after,
.c-breadcrumb--dark .c-breadcrumb__item>a:hover:after {
    background-color: #fff
}

.c-builder {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 4rem 0;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-builder {
        margin: 8rem 0
    }
}

.c-builder__text {
    max-width: 79rem;
    width: 100%
}

.c-builder__image {
    margin: 0 -1.6rem;
    max-width: 99rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:62em) {
    .c-builder__image {
        margin: 0;
        width: 100%
    }
}

.c-builder__image img {
    margin: 0 auto 2rem
}

.c-builder__image figcaption {
    padding: 0 3.2rem
}

@media screen and (min-width:62em) {
    .c-builder__image figcaption {
        padding: 0
    }
}

.c-builder__quote {
    background-color: #f1f3f3;
    margin: 0 -1.6rem;
    max-width: 79rem;
    padding: 4rem 3.2rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:62em) {
    .c-builder__quote {
        margin: 0;
        padding: 4rem 10rem;
        width: auto
    }
}

.c-builder__quote .c-icon,
.c-builder__quote .c-nav__search-submit,
.c-builder__quote .c-search__bar-submit {
    -ms-flex-align: center;
    align-items: center;
    background-color: #f2aa00;
    color: #003ca6;
    font-size: 3.3rem;
    height: 6rem;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 2rem;
    width: 6rem
}

.c-builder__quote-author {
    background-color: #003ca6;
    color: #fff;
    display: inline-block;
   font-family: "Alata", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .225rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 0 1.2rem;
    text-transform: uppercase
}

.c-builder__gallery {
    margin: 0 -1.6rem;
    max-width: 99rem;
    width: 100%
}

.c-builder__video {
    width: calc(100% - 3.2rem)
}

@media screen and (min-width:62em) {
    .c-builder__video {
        max-width: 99rem;
        width: calc(100% + 3.2rem);
        width: 100%
    }
}

.c-builder__video-title {
    color: #003ca6;
    display: block;
    margin-bottom: 3.2rem;
    padding: 0 1.6rem
}

@media screen and (min-width:62em) {
    .c-builder__video-title {
        padding: 0
    }
}

.c-builder__video figure {
    min-height: 22rem;
    width: 100%
}

.c-builder__video iframe,
.c-builder__video video {
    background-color: #000;
    height: 100%;
    min-height: 22rem;
    width: 100%
}

@media screen and (min-width:30em) {
    .c-builder__video iframe,
    .c-builder__video video {
        min-height: 30rem
    }
}

@media screen and (min-width:48em) {
    .c-builder__video iframe,
    .c-builder__video video {
        min-height: 35rem
    }
}

@media screen and (min-width:62em) {
    .c-builder__video iframe,
    .c-builder__video video {
        height: 56rem
    }
}

.c-builder__video figcaption {
    padding: 0 1.6rem
}

@media screen and (min-width:62em) {
    .c-builder__video figcaption {
        padding: 0
    }
}

.c-builder .c-product__benefits {
    margin: 0;
    padding: 0
}

.c-builder .c-product__downloads {
    margin: 0
}

.c-builder .c-accordion {
    margin: 0;
    width: 100%
}

.c-caseStudy {
    margin: 6rem 0;
    max-width: 100rem;
    position: relative;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-caseStudy {
        margin: 8rem auto
    }
}

.c-caseStudy .swiper-container {
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-caseStudy .swiper-container {
        overflow: visible
    }
}

.c-caseStudy .swiper-wrapper {
    margin-bottom: 2rem
}

.c-caseStudy .swiper-slide {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative
}

.c-caseStudy__image {
    height: 100%;
    min-height: 43rem;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-caseStudy__image {
        height: 56rem
    }
}

.c-caseStudy__content {
    background-color: #fff;
    bottom: 2.8rem;
    margin: 0 1.6rem;
    max-height: 35rem;
    max-width: 55rem;
    overflow: auto;
    padding: 2.8rem 2.4rem;
    position: absolute;
    width: calc(100% - 3.2rem)
}

@media screen and (min-width:62em) {
    .c-caseStudy__content {
        left: 4.2rem;
        margin: 0
    }
}

.c-caseStudy__controls {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 1.6rem;
    width: auto;
    z-index: 3
}

@media screen and (min-width:62em) {
    .c-caseStudy__controls {
        bottom: 3.2rem;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin: 0;
        right: 3.2rem;
        width: auto
    }
}

.c-caseStudy__controls-next,
.c-caseStudy__controls-prev {
    background-color: #003ca6;
    border-radius: 0;
    cursor: pointer;
    height: 4.4rem;
    position: relative;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 4.4rem
}

.c-caseStudy__controls-next:before,
.c-caseStudy__controls-prev:before {
    color: #fff;
    font-size: 2rem
}

.c-caseStudy__controls-next:focus,
.c-caseStudy__controls-next:hover,
.c-caseStudy__controls-prev:focus,
.c-caseStudy__controls-prev:hover {
    background-color: #254c9a;
    border-radius: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-caseStudy__controls-next:focus:before,
.c-caseStudy__controls-next:hover:before,
.c-caseStudy__controls-prev:focus:before,
.c-caseStudy__controls-prev:hover:before {
    color: #fff
}

.c-caseStudy__controls-prev {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-order: 0;
    order: 0;
    position: relative
}

.c-caseStudy__controls-prev:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media screen and (min-width:62em) {
    .c-caseStudy__controls-prev {
        margin-right: 1rem
    }
}

.c-caseStudy__controls-next {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-order: 2;
    order: 2;
    position: relative
}

@media screen and (min-width:62em) {
    .c-caseStudy__controls-next {
        margin-left: 1rem
    }
}

.c-caseStudy__controls .swiper-pagination {
    bottom: 0;
    color: #003ca6;
    font-weight: 900;
    left: 0;
    position: relative;
    width: auto
}

@media screen and (min-width:62em) {
    .c-caseStudy__controls .swiper-pagination {
        width: 5rem
    }
}

.c-centered {
    margin: 0 auto;
    padding: 6rem 0
}

.c-centered,
.c-centered__heading {
    display: block;
    text-align: center;
    width: 100%
}

.c-centered__heading {
    color: #fff;
    margin-bottom: 3.2rem
}

@media screen and (min-width:62em) {
    .c-centered__heading {
        margin: 0 auto 3.2rem;
        max-width: 45rem;
        padding-right: 1rem
    }
}

.c-centered__heading>span {
    background-color: #003ca6;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    -webkit-box-shadow: .5rem 0 0 #003ca6, -.5rem 0 0 #003ca6;
    box-shadow: .5rem 0 0 #003ca6, -.5rem 0 0 #003ca6;
    padding: .5rem
}

@media screen and (min-width:62em) {
    .c-centered__heading>span {
        -webkit-box-shadow: 1rem 0 0 #003ca6, -1rem 0 0 #003ca6;
        box-shadow: 1rem 0 0 #003ca6, -1rem 0 0 #003ca6;
        padding: .5rem 0
    }
}

.c-centered__content {
    margin: 0 auto 3.2rem;
    max-width: 79rem
}

.c-centered__cta,
.c-centered__cta:focus,
.c-centered__cta:hover {
    text-decoration: none
}

.c-centered+.c-builder {
    margin-top: 0
}

.c-cookies {
    bottom: 0;
    border-top: .1rem solid #fff;
    left: 0;
    opacity: 1;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 10;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.c-cookies.is-closed {
    opacity: 0;
    z-index: -1
}

.c-cookies__close {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 2.2rem
}

.c-contact {
    display: block;
    margin-top: 4rem
}

@media screen and (min-width:62em) {
    .c-contact {
        margin-bottom: 8rem;
        margin-top: 0
    }
}

.c-contact__info {
    -ms-flex-align: center;
    align-items: center;
    background-color: #254c9a;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    -webkit-filter: contrast(150%);
    filter: contrast(150%);
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 6rem 0;
    position: relative;
    z-index: 0
}

@media screen and (min-width:62em) {
    .c-contact__info {
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 5rem;
        padding: 8rem;
        -webkit-transform: translateX(-8rem);
        -ms-transform: translateX(-8rem);
        transform: translateX(-8rem);
        width: calc(100% + 8rem)
    }
}

.c-contact__info:after {
    background-color: rgba(0, 60, 166, .5);
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

.c-contact__info-heading {
    margin-bottom: 3.2rem
}

.c-contact__info-link {
    color: #fff;
    font-weight: 400;
    text-decoration: none
}

.c-contact__info-link:focus,
.c-contact__info-link:hover {
    color: #f2aa00;
    text-decoration: none
}

.c-contact__info-link.mail {
    text-decoration: underline
}

.c-contact__social {
    margin-top: 2.4rem
}

.c-contact__social-link {
    color: #fff;
    margin-right: 1.5rem;
    text-decoration: none
}

.c-contact__social-link .c-icon,
.c-contact__social-link .c-nav__search-submit,
.c-contact__social-link .c-search__bar-submit {
    font-size: 2.2rem
}

.c-contact__social-link:focus,
.c-contact__social-link:hover {
    text-decoration: none
}

.c-contact__social-link:focus .c-icon,
.c-contact__social-link:focus .c-nav__search-submit,
.c-contact__social-link:focus .c-search__bar-submit,
.c-contact__social-link:hover .c-icon,
.c-contact__social-link:hover .c-nav__search-submit,
.c-contact__social-link:hover .c-search__bar-submit {
    color: #f2aa00
}

.c-contact__social-link:last-of-type {
    margin: 0
}

.c-faq {
    background-color: #fff
}

.c-faq__heading {
    color: #003ca6;
    margin-bottom: 2rem
}

.c-faq [aria-hidden=true] {
    display: none
}

.c-faq__controls {
    list-style: none
}

.c-faq__controls>li {
    margin-bottom: 2rem
}

.c-faq__button {
    background-color: #003ca6;
    border: none;
    color: #fff;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 1.6rem 0;
    position: relative;
    text-align: left;
    width: 100%
}

.c-faq__button,
.c-faq__button:focus,
.c-faq__button:hover {
    text-decoration: none;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-faq__button:focus,
.c-faq__button:hover {
    background-color: #f2aa00
}

.c-faq__button:focus .c-faq__button-text,
.c-faq__button:hover .c-faq__button-text {
    color: #003ca6
}

.c-faq__button[aria-expanded=true] .c-icon:before,
.c-faq__button[aria-expanded=true] .c-nav__search-submit:before,
.c-faq__button[aria-expanded=true] .c-search__bar-submit:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-faq__button-icon {
    -ms-flex-align: center;
    align-items: center;
    background-color: #f2aa00 !important;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 6rem
}

.c-faq__button-icon:before {
    color: #003ca6;
    font-size: 1.8rem
}

.c-faq__button-icon:before,
.c-faq__button-text {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-faq__button-text {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .025rem;
    line-height: 1.75;
    margin-left: 7.6rem
}

.c-faq__content {
    padding-top: 2rem
}

.c-featured-post {
    margin: 0 -1.6rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:48em) {
    .c-featured-post {
        margin: 0;
        width: auto
    }
}

.c-featured-post__left {
    height: 100%;
    min-height: 56rem;
    position: relative
}

.c-featured-post__left_img {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.c-featured-post__right {
    background-color: #fff;
    padding: 3.2rem 1.6rem
}

@media screen and (min-width:48em) {
    .c-featured-post__right {
        padding: 0 3.2rem
    }
}

.c-featured-post__tags {
    color: #000;
   font-family: "Alata", sans-serif;
    font-size: 2rem;
    letter-spacing: .225rem;
    line-height: 3.2rem;
    text-transform: uppercase
}

.c-fcta {
    display: block;
    margin-bottom: 6rem;
    padding: 6rem 0;
    position: relative;
    z-index: 0
}

.c-fcta:after {
    background-color: rgba(37, 76, 154, .75);
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

.c-fcta--transparent {
    background-color: #003ca6
}

.c-fcta--transparent:after {
    display: none
}

@media screen and (min-width:62em) {
    .c-fcta {
        margin-bottom: 4rem;
        padding: 8rem 0
    }
}

.c-fcta__content {
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    -webkit-box-shadow: 0 0 1.6rem 0 rgba(70, 80, 122, .4);
    box-shadow: 0 0 1.6rem 0 rgba(70, 80, 122, .4);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 3.5rem 2rem;
    text-align: center
}

@media screen and (min-width:62em) {
    .c-fcta__content {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 auto;
        max-width: 120rem;
        padding: 3.9rem 3rem;
        text-align: left
    }
    .c-fcta--transparent .c-fcta__content {
        padding: 6rem 9rem
    }
}

.c-fcta__heading {
    color: #fff;
    display: inline;
    text-align: center
}

@media screen and (min-width:62em) {
    .c-fcta__heading {
       
        padding-right: 1rem;
        text-align: left
    }
    .c-fcta--transparent .c-fcta__heading {
        max-width: 16rem
    }
}

.c-fcta__heading>span {
    background-color: #003ca6;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    -webkit-box-shadow: .5rem 0 0 #003ca6, -.5rem 0 0 #003ca6;
    box-shadow: .5rem 0 0 #003ca6, -.5rem 0 0 #003ca6;
    padding: .5rem
}

@media screen and (min-width:62em) {
    .c-fcta__heading>span {
        -webkit-box-shadow: 1rem 0 0 #003ca6, -1rem 0 0 #003ca6;
        box-shadow: 1rem 0 0 #003ca6, -1rem 0 0 #003ca6;
        padding: .5rem 0
    }
}

.c-fcta__text {
    color: #53565a;
    margin: 2.4rem auto;
    max-width: 38rem
}

@media screen and (min-width:62em) {
    .c-fcta__text {
        margin: 0
    }
    .c-fcta--transparent .c-fcta__text {
        max-width: 48rem
    }
}

.c-fcta__link {
    text-align: left
}

.c-fcta__link,
.c-fcta__link:focus,
.c-fcta__link:hover,
.c-featuredItem {
    text-decoration: none
}

.c-featuredItem {
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 -1.6rem;
    min-height: 19.2rem;
    width: calc(100% + 3.2rem)
}

.c-featuredItem:focus,
.c-featuredItem:hover {
    text-decoration: none
}

.c-featuredItem:focus .c-featuredItem__content-title,
.c-featuredItem:hover .c-featuredItem__content-title {
    text-decoration: underline
}

@media screen and (min-width:62em) {
    .c-featuredItem {
        -ms-flex-direction: row;
        flex-direction: row;
        margin: 0;
        width: 100%
    }
}

.c-featuredItem__image {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    -webkit-filter: contrast(.5);
    filter: contrast(.5);
    -ms-flex: 0 0 17.3rem;
    flex: 0 0 17.3rem;
    min-height: 24rem
}

@media screen and (min-width:62em) {
    .c-featuredItem__image {
        min-height: 0
    }
}

.c-featuredItem__content {
    padding: 2.4rem 1.6rem
}

@media screen and (min-width:62em) {
    .c-featuredItem__content {
        background: #fff;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 2.4rem 3.2rem;
        width: 100%
    }
}

.c-featuredItem__content-type {
    color: #003ca6;
    margin-bottom: .5rem;
    text-transform: uppercase
}

.c-featuredItem__content-title {
    margin-bottom: 1rem
}

.c-fnews {
    background-color: #003ca6;
    color: #fff;
    display: block;
    padding: 6rem 0
}

@media screen and (min-width:62em) {
    .c-fnews {
        padding: 8rem 0
    }
}

.c-fnews__heading {
    -ms-flex-align: end;
    align-items: flex-end;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 3.2rem
}

@media screen and (min-width:62em) {
    .c-fnews__heading {
        -ms-flex-align: center;
        align-items: center
    }
}

.c-fnews__heading-title {
    color: #fff
}

.c-fnews__heading .c-link,
.c-fnews__heading .c-nav__submenu-heading-explore,
.c-fnews__heading .c-nav__submenu-item>a {
    color: #fff;
    -ms-flex: 0 0 11.5rem;
    flex: 0 0 11.5rem
}

.c-fnews__gallery {
    margin: 0 -1.6rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:62em) {
    .c-fnews__gallery {
        margin: 0;
        padding: 0;
        width: auto
    }
}

.c-fnews__controls {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 1.6rem;
    width: 100%;
    z-index: 5
}

@media screen and (min-width:62em) {
    .c-fnews__controls {
        margin: 0;
        width: auto
    }
    .c-fnews__controls.is-hidden {
        display: none;
        pointer-events: none
    }
}

.c-fnews__controls-next,
.c-fnews__controls-prev {
    background-color: #fff;
    border-radius: 0;
    cursor: pointer;
    height: 4.4rem;
    position: relative;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 4.4rem
}

.c-fnews__controls-next:before,
.c-fnews__controls-prev:before {
    color: #003ca6;
    font-size: 2rem
}

.c-fnews__controls-next:hover,
.c-fnews__controls-prev:hover {
    background-color: #254c9a;
    border-radius: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-fnews__controls-next:hover:before,
.c-fnews__controls-prev:hover:before {
    color: #fff
}

.c-fnews__controls-prev {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.c-fnews__controls-prev:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media screen and (min-width:62em) {
    .c-fnews__controls-prev {
        margin-right: 1rem
    }
}

.c-fnews__controls-next {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 3.2rem;
    position: relative
}

@media screen and (min-width:62em) {
    .c-fnews__controls-next {
        margin: 0
    }
}

.c-fnews__controls-pagination {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.c-fnews__controls-pagination .swiper-pagination-bullet {
    background-color: #fff;
    border: 0 solid #fff;
    border-radius: 0;
    margin-left: 1.6rem;
    opacity: 1;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-fnews__controls-pagination .swiper-pagination-bullet-active {
    background-color: #003ca6;
    border: .3rem solid #fff;
    height: 1.1rem;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 1.1rem
}

.c-fnews__image {
    height: 100%;
    margin-bottom: 2rem;
    min-height: 27rem;
    width: 100%
}

.c-fnews__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 2.4rem
}

.c-fnews__item-cat {
    margin-bottom: 1.6rem
}

.c-fnews__item-link {
    color: #fff;
    margin-bottom: 1.2rem;
    text-decoration: none
}

.c-fnews__item-link:focus,
.c-fnews__item-link:hover {
    color: #f2aa00;
    text-decoration: none
}

.c-form {
    background-color: #fff;
    display: block;
    padding: 6rem 1.6rem
}

@media screen and (min-width:62em) {
    .c-form {
        padding: 8rem 10rem;
        position: relative;
        -webkit-transform: translateX(-10rem);
        -ms-transform: translateX(-10rem);
        transform: translateX(-10rem);
        width: calc(100% + 10rem);
        z-index: 2
    }
}

.c-form__title {
    color: #003ca6;
    margin-bottom: 1.6rem
}

.c-form label {
    color: #000;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
   font-family: "Alata", sans-serif;
    font-size: 2.4rem;
    letter-spacing: .15rem;
    line-height: 1.5;
    margin-bottom: 3.2rem
}

@media screen and (min-width:62em) {
    .c-form label {
        margin-bottom: 2.8rem
    }
}

.c-form label input,
.c-form label select,
.c-form label textarea {
    background-color: #f1f3f3;
    border: none;
    border-radius: 0;
    color: #53565a;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
   font-family: "Alata", sans-serif;
    font-size: 2.4rem;
    font-weight: 400;
    height: 6rem;
    letter-spacing: .15rem;
    line-height: 1.5;
    margin-top: 1.2rem;
    padding: 1.2rem 2.4rem;
    width: 100%
}

.c-form label input.wpcf7-not-valid,
.c-form label select.wpcf7-not-valid,
.c-form label textarea.wpcf7-not-valid {
    border: .2rem solid #d0242b
}

.c-form label textarea {
    min-height: 15rem
}

.c-form label select {
    border: .2rem solid #53565a
}

.c-form label .wpcf7-not-valid-tip {
    margin-top: .7rem
}

.c-form .js-select .ss-single-selected {
    background-color: #f1f3f3;
    border: .2rem solid #53565a;
    border-radius: 0;
    color: #53565a;
    display: -ms-flexbox;
    display: flex;
   font-family: "Alata", sans-serif;
    font-size: 2.4rem;
    font-weight: 400;
    height: 6rem;
    letter-spacing: .15rem;
    line-height: 1.5;
    margin-top: 1.2rem;
    padding: 1.2rem 2.4rem;
    position: relative;
    width: 100%
}
.c-split-content__image-src.u-bgimg-cover-ctr {
    border: 1px solid #ccc;
    /* padding: 33px; */
    margin: 8px;
}
.c-form .js-select .ss-single-selected.ss-open-below .ss-arrow {
    background-color: #254c9a;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-form .js-select .ss-single-selected .ss-arrow {
    -ms-flex-align: center;
    align-items: center;
    background-color: #003ca6;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 6rem;
    z-index: 1
}

.c-form .js-select .ss-single-selected .ss-arrow .arrow-down,
.c-form .js-select .ss-single-selected .ss-arrow .arrow-up {
    border: .6rem solid transparent;
    border-top-color: #fff;
    border-bottom: none;
    margin: 0;
    padding: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.c-form .js-select .ss-single-selected .ss-arrow .arrow-up {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.c-form .wpcf7-submit {
    margin-top: 2.8rem
}

.c-fproducts {
    background-color: #f1f3f3;
    display: block;
    padding: 6rem 0;
    position: relative;
    z-index: 2
}

@media screen and (min-width:62em) {
    .c-fproducts {
        padding: 10rem 0
    }
}

.c-fproducts__heading {
    color: #003ca6;
    margin-bottom: 3.2rem
}

@media screen and (min-width:62em) {
    .c-fproducts__heading {
        margin-bottom: 6rem
    }
}

.c-fproducts__gallery {
    margin: 0 -1.6rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:48em) {
    .c-fproducts__gallery {
        margin: auto;
        width: auto
    }
}

@media screen and (min-width:62em) {
    .c-fproducts__gallery {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin: 0;
        padding: 0;
        position: relative;
        width: auto
    }
}

.c-fproducts__buttons {
    display: none
}

@media screen and (min-width:62em) {
    .c-fproducts__buttons {
        background-color: #003ca6;
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
        -webkit-filter: contrast(150%);
        filter: contrast(150%);
        margin: 0 0 0 -8rem !important;
        max-width: 67rem;
        min-height: 49rem;
        padding: 7rem !important;
        position: relative;
        width: 100%
    }
    .c-fproducts__buttons:after {
        background-color: rgba(0, 0, 0, .6);
        bottom: 0;
        content: "";
        display: block;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1
    }
}

.c-fproducts__buttons .swiper-wrapper {
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center
}

.c-fproducts__buttons .swiper-wrapper .swiper-slide {
    height: auto;
    margin-bottom: .5rem;
    padding: .25rem 0;
    width: auto !important
}

@media screen and (min-width:62em) {
    .c-fproducts__buttons .swiper-wrapper .swiper-slide:last-of-type {
        margin-bottom: 0
    }
}

.c-fproducts__btn {
    background-color: transparent;
    border: none;
    border-bottom: .2rem solid transparent;
    color: #fff;
    margin-left: 4rem
}

.c-fproducts__btn,
.c-fproducts__btn:before {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-fproducts__btn:before {
    left: -2.5rem;
    position: absolute
}

.c-fproducts__btn:focus,
.c-fproducts__btn:hover {
    border-bottom: .2rem solid #f2aa00;
    color: #fff;
    margin-left: 4.5rem;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-fproducts__btn:focus:before,
.c-fproducts__btn:hover:before {
    font-size: 2rem;
    left: -3rem;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-fproducts__container {
    margin: 0 !important
}

.c-fproducts__container .swiper-slide {
    height: auto
}

@media screen and (min-width:48em) {
    .c-fproducts__container .swiper-slide {
        width: calc(100% - 4rem)
    }
}

@media screen and (min-width:62em) {
    .c-fproducts__container .swiper-slide {
        width: auto
    }
}

@media screen and (min-width:48em) {
    .c-fproducts__container {
        padding: 2rem !important
    }
}

@media screen and (min-width:62em) {
    .c-fproducts__container {
        left: auto;
        max-width: 77rem;
        overflow: auto;
        position: absolute !important;
        right: 0;
        right: -12rem;
        top: -10rem;
        width: 100%;
        z-index: 2 !important
    }
}

@media screen and (min-width:80em) {
    .c-fproducts__container {
        top: -12rem
    }
}

.c-fproducts__slide {
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    margin-bottom: 2rem;
    padding: 4rem 1.6rem;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-fproducts__slide {
        margin: 2rem;
        max-height: 53rem;
        overflow: auto;
        padding: 5rem 9rem;
        width: calc(100% - 4rem)
    }
    .c-fproducts__slide .c-product__cta {
        margin-bottom: 0
    }
}

.c-fproducts__title {
    -ms-flex-align: end;
    align-items: flex-end;
    color: #003ca6;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.6rem;
    overflow: hidden
}

.c-fproducts__title-text {
    display: inline-block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto
}

.c-fproducts__title-pattern {
    background-image: url(../img/dashes.png);
    background-position: 0;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 2.4rem;
    margin-bottom: .75rem;
    margin-left: 1rem;
    max-width: 35rem;
    width: 100%
}

.c-fproducts__uses {
    margin-bottom: 1rem
}

.c-fproducts__controls {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 1.6rem;
    margin-top: 2rem;
    position: relative;
    width: 100%;
    z-index: 5
}

@media screen and (min-width:62em) {
    .c-fproducts__controls {
        display: none;
        margin: 0;
        width: auto
    }
}

.c-fproducts__controls-next,
.c-fproducts__controls-prev {
    background-color: #003ca6;
    border-radius: 0;
    cursor: pointer;
    height: 4.4rem;
    position: relative;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 4.4rem
}

.c-fproducts__controls-next:before,
.c-fproducts__controls-prev:before {
    color: #fff;
    font-size: 2rem
}

.c-fproducts__controls-next:hover,
.c-fproducts__controls-prev:hover {
    background-color: #254c9a;
    border-radius: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-fproducts__controls-next:hover:before,
.c-fproducts__controls-prev:hover:before {
    color: #fff
}

.c-fproducts__controls-prev {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.c-fproducts__controls-prev:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media screen and (min-width:62em) {
    .c-fproducts__controls-prev {
        margin-right: 1rem
    }
}

.c-fproducts__controls-next {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 3.2rem;
    position: relative
}

@media screen and (min-width:62em) {
    .c-fproducts__controls-next {
        margin: 0
    }
}

.c-fproducts__controls-pagination {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.c-fproducts__controls-pagination .swiper-pagination-bullet {
    background-color: transparent;
    border: .2rem solid #003ca6;
    border-radius: 0;
    height: 1rem;
    margin-left: 1.6rem;
    opacity: 1;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 1rem
}

.c-fproducts__controls-pagination .swiper-pagination-bullet-active {
    background-color: #003ca6;
    border: none;
    height: .8rem;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: .8rem
}

.c-gallery {
    position: relative
}

.c-gallery .swiper-container {
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%
}

.c-gallery .swiper-slide {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative
}

.c-gallery--builder {
    max-width: 100rem;
    width: 100%
}

.c-gallery--builder .swiper-wrapper {
    margin-bottom: 2rem
}

@media screen and (min-width:62em) {
    .c-gallery--builder .swiper-container {
        overflow: visible
    }
}

.c-gallery--builder .swiper-slide .c-gallery__caption {
    opacity: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-gallery--builder .swiper-slide-active .c-gallery__caption {
    opacity: 1;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-gallery__image {
    height: 100%;
    min-height: 37.5rem;
    width: 100%
}

.c-gallery--builder .c-gallery__image {
    margin-bottom: 3rem;
    max-width: 100rem;
    min-height: 22rem
}

@media screen and (min-width:30em) {
    .c-gallery--builder .c-gallery__image {
        min-height: 30rem
    }
}

@media screen and (min-width:62em) {
    .c-gallery--builder .c-gallery__image {
        margin-bottom: 2rem;
        min-height: 56rem
    }
}

.c-gallery__caption {
    background-color: #fff;
    bottom: 8rem;
    color: #003ca6;
    margin: 0 1.6rem;
    overflow: auto;
    padding: .8rem 1.2rem;
    position: absolute;
    width: calc(100% - 3.2rem)
}

@media screen and (min-width:62em) {
    .c-gallery__caption {
        bottom: 3.2rem;
        margin: 0 0 0 3.2rem;
        width: 65%
    }
}

@media screen and (min-width:80em) {
    .c-gallery__caption {
        margin-left: 5.3rem
    }
}

.c-gallery--builder .c-gallery__caption {
    bottom: 0;
    font-weight: 400;
    height: auto;
    margin: 0;
    padding: 0;
    position: relative;
    width: auto
}

@media screen and (min-width:62em) {
    .c-gallery--builder .c-gallery__caption {
        height: 3.5rem;
        max-width: 75rem;
        overflow: auto
    }
}

.c-gallery__controls {
    -ms-flex-align: center;
    align-items: center;
    bottom: 1.6rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 1.6rem;
    position: absolute;
    width: 100%;
    z-index: 5
}

@media screen and (min-width:62em) {
    .c-gallery__controls {
        bottom: 3.2rem;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin: 0;
        right: 3.2rem;
        width: auto
    }
}

.c-gallery--builder .c-gallery__controls {
    background-color: #fff;
    bottom: 0;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    width: calc(100% - 3.2rem)
}

@media screen and (min-width:62em) {
    .c-gallery--builder .c-gallery__controls {
        margin: 0;
        max-width: 20rem;
        position: absolute;
        right: 0;
        width: 100%
    }
}

.c-gallery--builder .c-gallery__controls .swiper-pagination {
    bottom: 0;
    position: relative;
    width: auto
}

.c-gallery__controls-next,
.c-gallery__controls-prev {
    background-color: #003ca6;
    border-radius: 0;
    cursor: pointer;
    height: 4.4rem;
    position: relative;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 4.4rem
}

.c-gallery__controls-next:before,
.c-gallery__controls-prev:before {
    color: #fff;
    font-size: 2rem
}

.c-gallery__controls-next:focus,
.c-gallery__controls-next:hover,
.c-gallery__controls-prev:focus,
.c-gallery__controls-prev:hover {
    background-color: #254c9a;
    border-radius: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-gallery__controls-next:focus:before,
.c-gallery__controls-next:hover:before,
.c-gallery__controls-prev:focus:before,
.c-gallery__controls-prev:hover:before {
    color: #fff
}

.c-gallery__controls-prev {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-order: 0;
    order: 0;
    position: relative
}

.c-gallery__controls-prev:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media screen and (min-width:62em) {
    .c-gallery__controls-prev {
        margin-right: 1rem
    }
}

.c-gallery__controls-prev--hide {
    display: none
}

.c-gallery__controls-next {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 3.2rem;
    -ms-flex-order: 2;
    order: 2;
    position: relative
}

@media screen and (min-width:62em) {
    .c-gallery__controls-next {
        margin: 0
    }
}

.c-gallery--builder .c-gallery__controls-next {
    margin: 0
}

.c-gallery__controls-next--hide {
    display: none
}

.c-innerHero {
    background-color: #254c9a;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    -webkit-filter: contrast(150%);
    filter: contrast(150%);
    padding: 3.2rem 1.6rem;
    position: relative;
    z-index: 0
}

.c-innerHero:after {
    background-color: rgba(0, 60, 166, .5);
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

.c-innerHero--dark {
    padding-bottom: 5.5rem
}

@media screen and (min-width:62em) {
    .c-innerHero--dark {
        padding: 150px 0px 0 0;
    }
}

.c-innerHero--featured {
    padding-bottom: 6rem
}

@media screen and (min-width:62em) {
    .c-innerHero--featured {
        padding:180px 0px 20px 0
    }
}

.c-innerHero--resources {
    display: block
}

.c-innerHero--filter {
    padding-bottom: 6rem
}

@media screen and (min-width:62em) {
    .c-innerHero--filter {
        padding-bottom: 9rem
    }
}

.c-innerHero--white {
    background-color: #fff;
    color: #003ca6;
    padding-bottom: 1rem
}

.c-innerHero--white:after {
    display: none
}

.c-innerHero .c-breadcrumb {
    margin-bottom: 3.2rem;
    padding: 0 2rem
}

.c-innerHero__content {
    position: relative;
    width: 100%;
    z-index: 1
}

@media screen and (min-width:62em) {
    .c-innerHero__content {
        
    }
}

.c-innerHero--resources .c-innerHero__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center
}

.c-innerHero--white .c-innerHero__content {
    max-width: 100%
}

.c-innerHero__heading {
    -ms-flex-align: end;
    align-items: flex-end;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.6rem;
    overflow: hidden
}

.c-innerHero--dark .c-innerHero__heading,
.c-innerHero--featured .c-innerHero__heading,
.c-innerHero--filter .c-innerHero__heading,
.c-innerHero--resources .c-innerHero__heading {
    color: #fff
}

.c-innerHero__heading-text {
    display: block;
    position: relative;
    width: auto
}

.c-innerHero__heading-text:after {
    background-image: url(../img/dashes.png);
    background-position: 0;
    background-repeat: repeat-x;
    background-size: cover;
    bottom: 1rem;
    content: "";
    display: block;
    left: 100%;
    margin-left: 1rem;
    position: absolute;
    right: 0;
    top: 1rem;
    width: 100%
}

.c-innerHero__description {
    margin-bottom: 3.2rem
}

.c-innerHero--dark .c-innerHero__description.c-wysiwyg,
.c-innerHero--featured .c-innerHero__description.c-wysiwyg,
.c-innerHero--filter .c-innerHero__description.c-wysiwyg,
.c-innerHero--resources .c-innerHero__description.c-wysiwyg {
    color: #fff
}

.c-innerHero__faq {
    background-color: #fff;
    margin: 0 -1.6rem;
    padding: 4rem 1.6rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:62em) {
    .c-innerHero__faq {
        margin: 0;
        padding: 4rem;
        width: auto
    }
}

.c-innerHero__filter {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%
}

.c-innerHero__filter-label {
    color: #fff;
   font-family: "Alata", sans-serif;
    font-size: 2.4rem;
    letter-spacing: .15rem;
    line-height: 1.5;
    margin-bottom: 1.2rem
}

.c-innerHero__select {
    height: 6rem;
    position: relative;
    width: 100%
}

.c-innerHero__select:after {
    -ms-flex-align: center;
    align-items: center;
    background-color: #f2aa00;
    bottom: 0;
    color: #003ca6;
    content: "\e90d";
    display: -ms-inline-flexbox;
    display: inline-flex;
   font-family: "Alata", sans-serif;
    font-size: 1.4rem;
    -ms-flex-pack: center;
    justify-content: center;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 6rem
}

.c-innerHero__select-custom {
    background-color: #fff;
    border: none;
    border-radius: 0;
    color: #000;
    cursor: pointer;
    display: block;
   font-family: "Alata", sans-serif;
    font-size: 2.4rem;
    height: 100%;
    letter-spacing: .025rem;
    line-height: 2;
    padding: 1.2rem 2.4rem;
    text-transform: capitalize;
    width: 100%
}

.c-lcards {
    background-color: #f1f3f3;
    display: block;
    padding: 6rem 0
}

.c-lcards__heading {
    color: #003ca6;
    margin-bottom: 3.2rem;
    padding: 0 1.6rem
}

@media screen and (min-width:48em) {
    .c-lcards__heading {
        padding: 0
    }
}

.c-lcards__card {
    background-color: #fff;
    margin: 0 -1.6rem 3.2rem;
    padding: 3.2rem 1.6rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:48em) {
    .c-lcards__card {
        margin: 0 0 3.2rem;
        width: auto
    }
}

@media screen and (min-width:62em) {
    .c-lcards__card {
        padding: 3.2rem
    }
}

.c-lcards__card-title {
    color: #003ca6;
    margin-bottom: 1.6rem
}

.c-lcards__card-address {
    font-style: normal;
    margin-bottom: 2rem
}

.c-lcards__card-phone {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 2rem
}

.c-lcards__card-phone a {
    font-weight: 400;
    text-decoration: none
}

.c-lcards__card-phone a:hover {
    text-decoration: underline
}

.c-lcards__card-link {
    margin-bottom: 2rem
}

.c-lcards__services-title {
    margin-bottom: 1.6rem
}

.c-lcards__services-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    padding-left: .5rem
}

.c-lcards__services-list>li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative
}

.c-lcards__services-list>li:before {
    background-color: #f2aa00;
    border-radius: 50%;
    content: "";
    display: block;
    height: .6rem;
    left: 0;
    position: absolute;
    top: 1.3rem;
    width: .6rem
}

.c-locations {
    display: block;
    margin: 6rem 0
}

@media screen and (min-width:62em) {
    .c-locations {
        margin: 8rem 0
    }
}

.c-locations__heading {
    -ms-flex-align: end;
    align-items: flex-end;
    color: #003ca6;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2.8rem
}

.c-locations__heading-text {
    display: inline-block;
    width: auto
}

@media screen and (min-width:62em) {
    .c-locations__heading-text {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto
    }
}

.c-locations__heading-pattern {
    background-image: url(../img/dashes.png);
    background-position: 0;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    height: 3.5rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
    max-width: 16rem;
    width: 100%
}

@media screen and (min-width:48em) {
    .c-locations__heading-pattern {
        max-width: 28rem
    }
}

.c-locations__link {
    margin-bottom: 2.4rem
}

.c-locations__image {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 30rem;
    margin: 0 -1.6rem;
    max-width: 99.5rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:48em) {
    .c-locations__image {
        background-size: cover
    }
}

@media screen and (min-width:62em) {
    .c-locations__image {
        height: 54rem;
        margin: 0 auto;
        width: 100%
    }
}

.c-pagination {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin: 1rem 0
}

.c-pagination,
.c-pagination__item {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center
}

.c-pagination__item {
    margin-right: .5rem
}

.c-pagination__item:last-of-type {
    margin: 0
}

.c-pagination__item--is-active {
    background-color: #f1f3f3
}

.c-pagination__item--previous {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.c-pagination__link {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    height: 2.8rem;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2.8rem
}

.c-pagination__link,
.c-pagination__link:focus,
.c-pagination__link:hover {
    color: #003ca6;
    text-decoration: none;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-pagination__link:focus,
.c-pagination__link:hover {
    background-color: #f2aa00
}

.c-pagination__link .c-icon,
.c-pagination__link .c-nav__search-submit,
.c-pagination__link .c-search__bar-submit {
    color: #003ca6;
    font-size: 2.2rem
}

.c-pagination .page-numbers {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none
}

.c-pagination .page-numbers,
.c-pagination .page-numbers>li {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center
}

.c-pagination .page-numbers>li {
    margin-right: .5rem
}

.c-pagination .page-numbers>li:last-of-type {
    margin: 0
}

.c-pagination .page-numbers>li .current,
.c-pagination .page-numbers>li>a.page-numbers {
    -ms-flex-align: center;
    align-items: center;
    color: #003ca6;
    display: -ms-flexbox;
    display: flex;
    height: 2.8rem;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 2.8rem
}

.c-pagination .page-numbers>li .current.prev,
.c-pagination .page-numbers>li>a.page-numbers.prev {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.c-pagination .page-numbers>li .current:focus,
.c-pagination .page-numbers>li .current:hover,
.c-pagination .page-numbers>li>a.page-numbers:focus,
.c-pagination .page-numbers>li>a.page-numbers:hover {
    background-color: #f2aa00;
    color: #003ca6;
    text-decoration: none;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-pagination .page-numbers>li .current .c-icon,
.c-pagination .page-numbers>li .current .c-nav__search-submit,
.c-pagination .page-numbers>li .current .c-search__bar-submit,
.c-pagination .page-numbers>li>a.page-numbers .c-icon,
.c-pagination .page-numbers>li>a.page-numbers .c-nav__search-submit,
.c-pagination .page-numbers>li>a.page-numbers .c-search__bar-submit {
    color: #003ca6;
    font-size: 2.2rem
}

.c-pagination .page-numbers>li .current {
    background-color: #d8d8d8;
    font-weight: 900
}

.c-pagination .page-numbers>li .current:focus,
.c-pagination .page-numbers>li .current:hover {
    background-color: #d8d8d8
}

.c-possibilities {
    background-color: #254c9a;
    color: #fff;
    display: block;
    min-height: 70rem;
    overflow: hidden;
    padding: 10.4rem 0 5rem;
    position: relative
}

@media screen and (min-width:62em) {
    .c-possibilities {
        height: 84.4rem;
        padding-top: 16.6rem;
        width: 100%
    }
}
h2.c-fcta__heading {
    font-size: 21px;
}
a.c-fcta__link.c-btn.c-btn--icon-righ {
    font-size: 18px;
}
.c-possibilities__heading {
    background-color: #003ca6;
    color: #fff;
    display: block;
    margin: 0 auto 4rem;
    max-width:30%;
    padding: .5rem 1rem;
    position: relative;
    text-align: center;
    z-index: 1; text-transform: uppercase; font-weight: 400;
}

@media screen and (min-width:62em) {
    .c-possibilities__heading {
        margin: 0 auto 4rem;
        position: relative
    }
}

.c-possibilities__images {
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    height: calc(100% + 12rem);
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0
}

@media screen and (min-width:62em) {
    .c-possibilities__images {
        height: auto
    }
}

.c-possibilities__cover {
    background-color: #003ca6;
    height: 50%;
    overflow: hidden;
    position: absolute;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-possibilities__cover {
        height: 100%;
        width: 50%
    }
}

.c-possibilities__cover--left {
    top: 0;
    -webkit-transform: skewY(10deg) translateY(-25%) scale(1.5);
    -ms-transform: skewY(10deg) translateY(-25%) scale(1.5);
    transform: skewY(10deg) translateY(-25%) scale(1.5)
}

@media screen and (min-width:62em) {
    .c-possibilities__cover--left {
        margin-left: 25%;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        -webkit-transform: skewX(-20deg) scale(1.5) translateX(-50%);
        -ms-transform: skewX(-20deg) scale(1.5) translateX(-50%);
        transform: skewX(-20deg) scale(1.5) translateX(-50%)
    }
}

.c-possibilities__cover--right {
    top: 50%;
    -webkit-transform: skewY(10deg) translateY(25%) scale(1.5);
    -ms-transform: skewY(10deg) translateY(25%) scale(1.5);
    transform: skewY(10deg) translateY(25%) scale(1.5)
}

@media screen and (min-width:62em) {
    .c-possibilities__cover--right {
        margin-right: 25%;
        position: absolute;
        right: 0;
        top: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        -webkit-transform: skewX(-20deg) scale(1.5) translateX(50%);
        -ms-transform: skewX(-20deg) scale(1.5) translateX(50%);
        transform: skewX(-20deg) scale(1.5) translateX(50%)
    }
}

.c-possibilities__cover-title {
    color: #fff;
    z-index: 2
}

.c-possibilities__cover-img {
    background-color: #254c9a;
    bottom: 0;
    -webkit-filter: contrast(150%);
    filter: contrast(150%);
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all .7s linear;
    -o-transition: all linear .7s;
    transition: all .7s linear;
    width: 100%;
    z-index: -1
}

.c-possibilities__cover-img.is-active {
    opacity: 1;
    z-index: 0
}

.c-possibilities__cover-img:after {
    background-color: rgba(0, 23, 119, .5);
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 0
}

.c-possibilities__cover--left .c-possibilities__cover-img {
    -webkit-transform: skewY(-10deg) translateY(15%) scale(1.5);
    -ms-transform: skewY(-10deg) translateY(15%) scale(1.5);
    transform: skewY(-10deg) translateY(15%) scale(1.5)
}

.c-possibilities__cover--left .c-possibilities__cover-img.is-active {
    -webkit-transform: skewY(-10deg) translateY(25%) scale(1.5);
    -ms-transform: skewY(-10deg) translateY(25%) scale(1.5);
    transform: skewY(-10deg) translateY(25%) scale(1.5)
}

@media screen and (min-width:62em) {
    .c-possibilities__cover--left .c-possibilities__cover-img {
        -webkit-transform: skewX(20deg) translateX(25%) translateY(5%);
        -ms-transform: skewX(20deg) translateX(25%) translateY(5%);
        transform: skewX(20deg) translateX(25%) translateY(5%)
    }
    .c-possibilities__cover--left .c-possibilities__cover-img.is-active {
        -webkit-transform: skewX(20deg) translateX(25%) translateY(-5%);
        -ms-transform: skewX(20deg) translateX(25%) translateY(-5%);
        transform: skewX(20deg) translateX(25%) translateY(-5%);
        -webkit-transition: all .7s linear;
        -o-transition: all linear .7s;
        transition: all .7s linear
    }
}

.c-possibilities__cover--right .c-possibilities__cover-img {
    -webkit-transform: skewY(-10deg) translateY(-15%) scale(1.5);
    -ms-transform: skewY(-10deg) translateY(-15%) scale(1.5);
    transform: skewY(-10deg) translateY(-15%) scale(1.5)
}

.c-possibilities__cover--right .c-possibilities__cover-img.is-active {
    -webkit-transform: skewY(-10deg) translateY(-25%) scale(1.5);
    -ms-transform: skewY(-10deg) translateY(-25%) scale(1.5);
    transform: skewY(-10deg) translateY(-25%) scale(1.5)
}

@media screen and (min-width:62em) {
    .c-possibilities__cover--right .c-possibilities__cover-img {
        -webkit-transform: skewX(20deg) translateX(-25%) translateY(-5%);
        -ms-transform: skewX(20deg) translateX(-25%) translateY(-5%);
        transform: skewX(20deg) translateX(-25%) translateY(-5%)
    }
    .c-possibilities__cover--right .c-possibilities__cover-img.is-active {
        -webkit-transform: skewX(20deg) translateX(-25%) translateY(5%);
        -ms-transform: skewX(20deg) translateX(-25%) translateY(5%);
        transform: skewX(20deg) translateX(-25%) translateY(5%);
        -webkit-transition: all .7s linear;
        -o-transition: all linear .7s;
        transition: all .7s linear
    }
}

.c-possibilities__titles {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 11rem;
    position: relative;
    z-index: 2
}

@media screen and (min-width:30em) {
    .c-possibilities__titles {
        padding-bottom: 0
    }
}

@media screen and (min-width:62em) {
    .c-possibilities__titles {
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
}

.c-possibilities__for {
    color: #fff;
    margin: 1.4rem 0;
    text-transform: uppercase;
    z-index: 1
}

@media screen and (min-width:62em) {
    .c-possibilities__for {
        -ms-flex: 0 0 10rem;
        flex: 0 0 10rem;
        margin: 0
    }
}

.c-possibilities__list {
    width: 100%
}

@media screen and (min-width:62em) {
    .c-possibilities__list {
        max-width: 55rem
    }
}

.c-possibilities__list-wrapper {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 16rem;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-possibilities__list-wrapper {
        height: 44rem
    }
}

.c-possibilities__list-wrapper.js-animation-left {
    padding-top: 6rem
}

@media screen and (min-width:62em) {
    .c-possibilities__list-wrapper.js-animation-left {
        padding: 2rem 0 0
    }
}

.c-possibilities__list-wrapper.js-animation-left.even {
    padding: 0 0 2rem
}

@media screen and (min-width:62em) {
    .c-possibilities__list-wrapper.js-animation-left.even {
        padding: 0 0 7rem
    }
}

.c-possibilities__list-wrapper.js-animation-right {
    padding-bottom: 6rem
}

@media screen and (min-width:62em) {
    .c-possibilities__list-wrapper.js-animation-right {
        padding: 0 0 2rem
    }
}

.c-possibilities__list-wrapper.js-animation-right.even {
    padding: 2rem 0 0
}

@media screen and (min-width:62em) {
    .c-possibilities__list-wrapper.js-animation-right.even {
        padding-top: 7rem
    }
}

.c-possibilities__item {
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    display: -ms-flexbox;
    display: flex;
   font-family: "Alata", sans-serif;
    font-size: 3rem;
    font-weight: 600;

    letter-spacing: .25rem;
    line-height: 1.25;

    overflow: hidden;
    padding: 1rem 2rem;
    text-align: center;

    -webkit-transition: opacity .25s linear;
    -o-transition: opacity linear .25s;
    transition: opacity .25s linear
}

.c-possibilities__item.is-active {
    background-color: #fff;
    color: #003ca6
}

.c-possibilities__item.has-opacity {
    opacity: .2;
    -webkit-transition: opacity .25s linear;
    -o-transition: opacity linear .25s;
    transition: opacity .25s linear
}

@media screen and (min-width:62em) {
    .c-possibilities__item {
        display: block;
        font-size:30px;
        margin: .5rem 0; line-height: 50px;
        min-height:70px;
    }
}

.c-possibilities__trigger {
    -ms-flex-align: center;
    align-items: center;
    background-color: #254c9a;
    border: none;
    border-radius: 0;
    bottom: 2rem;
    color: #fff;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    font-weight: 900;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: .8rem 1.8rem;
    position: absolute;
    right: 1.6rem;
    width: 10rem;
    z-index: 5
}

.c-possibilities__trigger,
.c-possibilities__trigger:focus,
.c-possibilities__trigger:hover {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-possibilities__trigger:focus,
.c-possibilities__trigger:hover {
    background-color: #003ca6
}

@media screen and (min-width:62em) {
    .c-possibilities__trigger {
        float: right;
        margin: 6rem 0 0;
        position: relative
    }
}

.c-possibilities__trigger.is-paused {
    background-color: #fff;
    color: #254c9a;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-possibilities__trigger.is-paused .c-icon,
.c-possibilities__trigger.is-paused .c-nav__search-submit,
.c-possibilities__trigger.is-paused .c-search__bar-submit {
    color: #254c9a;
    font-size: 1.8rem
}

.c-possibilities__trigger.is-paused .c-icon--icon-play,
.c-possibilities__trigger.is-paused .c-possibilities__trigger-play {
    display: block
}

.c-possibilities__trigger.is-paused .c-icon--icon-pause,
.c-possibilities__trigger.is-paused .c-possibilities__trigger-pause {
    display: none
}

.c-possibilities__trigger .c-icon,
.c-possibilities__trigger .c-nav__search-submit,
.c-possibilities__trigger .c-search__bar-submit {
    font-size: 1.6rem;
    margin-right: 1rem
}

.c-possibilities__trigger-pause {
    display: block
}

.c-possibilities__trigger-play,
.c-possibilities__trigger .c-icon--icon-play {
    display: none
}

.c-post .c-breadcrumb {
    margin: 2.4rem 0 3.2rem;
    padding: 0
}

@media screen and (min-width:62em) {
    .c-post .c-breadcrumb {
        margin-top: 4rem
    }
}

.c-post__intro {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 4rem;
    margin-top: 3.2rem;
    text-align: center
}

.c-post__intro-cat {
    margin-bottom: 2rem;
    text-decoration: none
}

.c-post__intro-title {
    color: #003ca6;
    margin-bottom: 2rem
}

.c-post__intro-meta {
    -ms-flex-align: center;
    align-items: center;
    color: #53565a;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-weight: 900;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}

.c-post__intro-meta>span {
    padding: 0 .5rem
}

.c-post__image {
    display: block;
    height: 21rem;
    margin: 0 -1.6rem 4rem;
    max-width: 99rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:62em) {
    .c-post__image {
        height: 56rem;
        margin: 0 auto 4rem;
        width: 90%
    }
}

@media screen and (min-width:80em) {
    .c-post__image {
        width: 100%
    }
}

.c-proCard {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 3.2rem;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-proCard {
        display: block;
        margin-bottom: 3.2rem;
        width: calc(50% - 1.6rem)
    }
    @supports (background:-webkit-canvas(squares)) {
        .c-proCard {
            display: inline-block;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none
        }
    }
}

.c-proCard__image {
    border-color: #003ca6;
    height: 24rem;
    width: 100%
}

.c-proCard__content {
    background-color: #fff;
    padding: 3.2rem 1.6rem
}

@media screen and (min-width:62em) {
    .c-proCard__content {
        padding: 3.2rem
    }
}

.c-proCard__title {
    color: #003ca6;
    margin-bottom: 1.6rem;
    text-decoration: none
}

.c-proCard__subtitle {
    color: #000;
    margin-bottom: 1.6rem
}

.c-proCard__blurb {
    margin-bottom: 1.6rem
}

.c-proCard--substrate,
.c-proCard.swiper-slide {
    width: 100%
}

@media screen and (min-width:62em) {
    .c-proCard--substrate,
    .c-proCard.swiper-slide {
        width: calc(33.33333% - 2.12rem);
        height: auto
    }
}

.c-product {
    display: block;
    position: relative;
    width: 100%
}

.c-product .c-breadcrumb {
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 2.4rem 0;
    padding: 0;
    z-index: 2
}

@media screen and (min-width:62em) {
    .c-product .c-breadcrumb {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        margin-bottom: 0;
        padding: .8rem 2rem;
        position: absolute;
        top: 3.2rem;
        -webkit-transform: translateX(-2rem);
        -ms-transform: translateX(-2rem);
        transform: translateX(-2rem)
    }
    .c-product .c-breadcrumb__item:last-of-type {
        max-width: 170px
    }
}

@media screen and (min-width:62em) {
    .c-product .is-mobile {
        display: none
    }
}

.c-product__heading {
    -ms-flex-align: end;
    align-items: flex-end;
    color: #003ca6;
   font-family: "Alata", sans-serif;
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: .15rem;
    line-height: 1.375;
    margin-bottom: 3.2rem;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
    width: 100%
}

.c-product__heading--mobile {
    display: -ms-flexbox;
    display: flex
}

@media screen and (min-width:62em) {
    .c-product__heading--mobile {
        display: none
    }
}

.c-product__heading--desktop {
    display: none;
    font-size: 4.8rem;
    margin-bottom: 1.6rem;
    margin-top: 3.2rem
}

@media screen and (min-width:62em) {
    .c-product__heading--desktop {
        -ms-flex-align: center;
        align-items: center;
        display: -ms-flexbox;
        display: flex;
        font-size: 3.2rem;
        letter-spacing: .15rem;
        line-height: 1.375
    }
}

.c-product__heading--downloads {
    text-align: center
}

@media screen and (min-width:62em) {
    .c-product__heading--downloads {
        text-align: left
    }
}

.c-product__heading-text {
    width: 100%
}

@media screen and (min-width:62em) {
    .c-product__heading-text {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto
    }
}

.c-product__heading-pattern {
    background-image: url(../img/dashes.png);
    background-position: 0;
    background-repeat: repeat-x;
    background-size: contain;
    display: block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 2.4rem;
    margin-bottom: .75rem;
    margin-left: 1rem;
    max-width: 37rem;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-product__heading-pattern {
        background-repeat: repeat-x;
        background-size: cover;
        background-size: contain;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        height: 2.5rem;
        margin-bottom: 0;
        margin-top: .5rem
    }
}

.c-product__gallery {
    margin: 0 -1.6rem 3.2rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:62em) {
    .c-product__gallery {
        height: 100%;
        margin: 0;
        width: 100%
    }
}

.c-product__gallery .c-gallery {
    background-color: #254c9a;
    height: 100%;
    width: 100%
}

.c-product__numbers {
    -ms-flex-align: center;
    align-items: center;
    color: #53565a;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 1.6rem
}

@media screen and (min-width:62em) {
    .c-product__numbers {
        margin-bottom: 1rem
    }
}

.c-product__numbers-key {
    color: #000;
    font-weight: 900
}

.c-product__numbers-numbers {
    font-family: "Alata", sans-serif;
    font-weight: 300;
    margin-left: .5rem
}

.c-product__colors-title {
    color: #000;
    font-weight: 900;
    margin-bottom: 1.2rem
}

.c-product__colors-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none
}

.c-product__colors-list>li {
    margin-bottom: 1rem;
    margin-right: 1.6rem
}

.c-product__color {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.c-product__color span {
    display: block;
    height: 1.6rem;
    margin-right: .8rem;
    width: 1.6rem;
    border: .1rem solid grey
}

.c-product__color>sup {
    margin-right: .4rem
}

.c-product__uses {
    margin-bottom: 2.2rem
}

.c-product__uses-title {
    color: #000;
    font-weight: 900;
    margin-bottom: 1.2rem
}

.c-product__uses-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none
}

.c-product__uses-list>li {
    margin-bottom: 1.2rem;
    margin-right: 1.2rem
}

.c-product__use {
    background-color: #f1f3f3;
    color: #53565a;
    padding: .2rem 1.6rem;
    text-transform: capitalize;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-product__cta,
.c-product__cta:focus,
.c-product__cta:hover,
.c-product__use {
    text-decoration: none
}

@media screen and (min-width:62em) {
    .c-product__cta {
        margin-bottom: 3rem
    }
}

.c-product__benefits {
    padding: 6rem 0
}

@media screen and (min-width:62em) {
    .c-product__benefits {
        padding: 8rem 0
    }
}

.c-product__benefits .o-grid__col:last-of-type>div {
    margin-bottom: 0
}

.c-product__benefit {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 3.2rem
}

@media screen and (min-width:62em) {
    .c-product__benefit {
        margin-bottom: 4rem
    }
}

.c-product__benefit-icon {
    background-color: #000;
    border-radius: 100%;
    -ms-flex: 0 0 10rem;
    flex: 0 0 10rem;
    height: 10rem;
    margin-right: 1.6rem
}

.c-product__benefit-icon .c-icon,
.c-product__benefit-icon .c-nav__search-submit,
.c-product__benefit-icon .c-search__bar-submit {
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    font-size: 6rem;
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

.c-product__benefit-content>h2 {
    color: #003ca6;
    text-transform: uppercase
}

.c-product__data {
    padding-bottom: 8rem
}

.c-product__downloads {
    margin: 6rem 0
}

@media screen and (min-width:62em) {
    .c-product__downloads {
        margin: 8rem 0
    }
}

.c-product__downloads-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%
}

.c-product__downloads-img {
    display: none;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-product__downloads-img {
        display: block
    }
}

.c-product__documents {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style: none
}

.c-product__documents>li {
    margin-bottom: 2rem;
    width: 100%
}

.c-product__documents>li:last-child {
    margin-bottom: 0
}

.c-product__download {
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 1.5rem 2.1rem;
    position: relative;
    text-transform: none;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-product__download {
        padding: 1.5rem 3.2rem
    }
}

.c-product__download:before {
    font-size: 1.8rem;
    margin-top: 0
}

.c-product__download-text {
    font-weight: 900;
    margin-right: 7rem;
    text-align: left
}

.c-product__download-icon {
    -ms-flex-align: center;
    align-items: center;
    background-color: #f2aa00;
    bottom: 0;
    color: #003ca6;
    font-size: 1.8rem;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 6rem
}

.c-proGrid {
    background-color: #f1f3f3;
    display: block;
    padding: 6rem 0
}

@media screen and (min-width:62em) {
    .c-proGrid {
        padding: 9rem 0
    }
}

.c-proGrid__wrapper,
.c-proGrid__wrapper .c-proCard {
    width: 100%
}

@media screen and (min-width:62em) {
    .c-proGrid__wrapper .c-proCard {
        width: calc(33.33333% - 2.2rem)
    }
}

.c-proTemplate {
    background-color: #f1f3f3;
    margin: 0 -1.6rem;
    padding: 6rem 0;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:62em) {
    .c-proTemplate {
        margin: 0;
        padding: 9rem 0;
        width: 100%
    }
}

.c-proTemplate__filter {
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 2.4rem;
    padding: 0 2rem
}

@media screen and (min-width:62em) {
    .c-proTemplate__filter {
        padding: 3.2rem 2rem 3.2rem 3.2rem
    }
}

.c-proTemplate__heading {
    -ms-flex-align: baseline;
    align-items: baseline;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 10.8rem;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 -2rem;
    position: relative;
    width: calc(100% + 4rem)
}

@media screen and (min-width:62em) {
    .c-proTemplate__heading {
        -ms-flex-align: end;
        align-items: flex-end;
        height: auto;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 0 2.4rem;
        width: 100%
    }
}

.c-proTemplate__heading-title {
    color: #003ca6;
    margin-left: 1.6rem;
    text-align: left
}

@media screen and (min-width:62em) {
    .c-proTemplate__heading-title {
        margin: 0
    }
}

.c-proTemplate__toggle {
    -ms-flex-align: center;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #f2aa00;
    border: none;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    width: 6rem
}

@media screen and (min-width:62em) {
    .c-proTemplate__toggle {
        display: none;
        pointer-events: none
    }
}

.c-proTemplate__toggle-icon {
    color: #003ca6;
    font-size: 2rem;
    font-weight: 600
}

.c-proTemplate__clear {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    color: #003ca6;
    cursor: pointer;
    font-weight: 600;
    height: 100%;
    padding: 0 2rem;
    position: absolute;
    right: 0;
    text-decoration: underline;
    text-transform: capitalize
}

.c-proTemplate__clear,
.c-proTemplate__clear:focus,
.c-proTemplate__clear:hover {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-proTemplate__clear:focus,
.c-proTemplate__clear:hover {
    color: #f2aa00
}

@media screen and (min-width:62em) {
    .c-proTemplate__clear {
        padding: 0;
        position: relative
    }
}

.c-proTemplate__filters {
    height: 0;
    overflow: hidden;
    visibility: hidden
}

.c-proTemplate__filters,
.c-proTemplate__filters.is-open {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-proTemplate__filters.is-open {
    height: auto;
    margin-top: 2.4rem;
    visibility: visible
}

@media screen and (min-width:62em) {
    .c-proTemplate__filters {
        height: auto;
        -webkit-transition: all .25s linear;
        -o-transition: all linear .25s;
        transition: all .25s linear;
        visibility: visible
    }
}

.c-proTemplate__fblock {
    margin-bottom: 2.4rem
}

.c-proTemplate__fblock fieldset {
    border: none;
    margin: 0;
    padding: 0
}

.c-proTemplate__fblock-title {
    color: #000;
    margin-bottom: 2rem
}

.c-proTemplate__checkbox {
    -ms-flex-align: start;
    align-items: flex-start;
    background-color: transparent;
    color: #000;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    font-weight: 900;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 1.6rem;
    padding-left: 3.2rem;
    position: relative
}

.c-proTemplate__checkbox:last-of-type {
    margin: 0
}

.c-proTemplate__checkbox:focus input[type=checkbox]~.checkmark,
.c-proTemplate__checkbox:hover input[type=checkbox]~.checkmark {
    background-color: #d9d9d6;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-proTemplate__checkbox input[type=checkbox] {
    cursor: pointer;
    height: 0;
    opacity: 0;
    position: absolute;
    width: 0
}

.c-proTemplate__checkbox input[type=checkbox]:checked~.checkmark {
    background-color: #003ca6;
    border-color: #003ca6
}

.c-proTemplate__checkbox input[type=checkbox]:checked~.checkmark:after {
    display: block
}

.c-proTemplate__checkbox input[type=checkbox]:focus~.checkmark {
    outline: .8rem auto #f2aa00
}

.c-proTemplate__checkbox .checkmark {
    background-color: #f1f3f3;
    border: .2rem solid #53565a;
    border-radius: 0;
    height: 2.4rem;
    left: 0;
    margin-right: .8rem;
    margin-top: .2rem;
    position: absolute;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 2.4rem
}

.c-proTemplate__checkbox .checkmark:after {
    border: solid #fff;
    border-width: 0 .2rem .2rem 0;
    content: "";
    display: none;
    height: 10px;
    left: .8rem;
    position: absolute;
    top: .4rem;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: .5rem
}

.c-proTemplate__grid {
    padding: 1rem 0;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-proTemplate__grid {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 3.2rem;
        -moz-column-gap: 3.2rem;
        column-gap: 3.2rem
    }
}

.c-recommended {
    background-color: #f1f3f3;
    display: block;
    padding: 6rem 0
}

@media screen and (min-width:62em) {
    .c-recommended {
        padding: 10rem 0
    }
}

@media screen and (min-width:62em) {
    .c-recommended .swiper-container {
        overflow: visible
    }
}

@media screen and (min-width:62em) {
    .c-recommended__wrapper {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 3.2rem;
        -moz-column-gap: 3.2rem;
        column-gap: 3.2rem;
        display: block !important;
        height: 100% !important
    }
    .c-recommended__wrapper .c-proCard {
        display: block;
        margin: 0 0 3.2rem;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        width: 98%
    }
    @supports (background:-webkit-canvas(squares)) {
        .c-recommended__wrapper .c-proCard {
            display: inline-block;
            margin: 1.6rem 0;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none
        }
    }
}

.c-recommended__controls {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 1.6rem;
    margin-top: 2rem;
    position: relative;
    width: 100%;
    z-index: 5
}

@media screen and (min-width:62em) {
    .c-recommended__controls {
        display: none;
        margin: 0;
        width: auto
    }
}

.c-recommended__controls-next,
.c-recommended__controls-prev {
    background-color: #003ca6;
    border-radius: 0;
    cursor: pointer;
    height: 4.4rem;
    position: relative;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 4.4rem
}

.c-recommended__controls-next:before,
.c-recommended__controls-prev:before {
    color: #fff;
    font-size: 2rem
}

.c-recommended__controls-next:hover,
.c-recommended__controls-prev:hover {
    background-color: #254c9a;
    border-radius: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-recommended__controls-next:hover:before,
.c-recommended__controls-prev:hover:before {
    color: #fff
}

.c-recommended__controls-prev {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.c-recommended__controls-prev:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media screen and (min-width:62em) {
    .c-recommended__controls-prev {
        margin-right: 1rem
    }
}

.c-recommended__controls-next {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 3.2rem;
    position: relative
}

@media screen and (min-width:62em) {
    .c-recommended__controls-next {
        margin: 0
    }
}

.c-recommended__controls-pagination {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center
}

.c-recommended__controls-pagination.swiper-pagination {
    position: relative
}

.c-recommended__controls-pagination .swiper-pagination-bullet {
    background-color: transparent;
    border: .2rem solid #003ca6;
    border-radius: 0;
    height: 1rem;
    margin-left: 1.6rem;
    opacity: 1;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 1rem
}

.c-recommended__controls-pagination .swiper-pagination-bullet-active {
    background-color: #003ca6;
    border: none;
    height: .8rem;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: .8rem
}

.c-resources {
    display: block;
    padding: 6rem 0
}

@media screen and (min-width:62em) {
    .c-resources {
        padding: 8rem 0
    }
}

.c-resources__heading {
    color: #003ca6;
    margin-bottom: 3.2rem
}

@media screen and (min-width:62em) {
    .c-resources__heading {
        margin-bottom: 4rem
    }
}

.c-resources__table {
    background-color: #fff;
    margin: 0 -1.6rem 3.2rem;
    overflow: auto
}

@media screen and (min-width:62em) {
    .c-resources__table {
        margin: 0 0 3.2rem
    }
}

.c-resources__table table {
    border-collapse: separate;
    border-spacing: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: table;
    height: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
    table-layout: fixed;
    text-align: left;
    width: 175%
}

@media screen and (min-width:62em) {
    .c-resources__table table {
        margin: 0;
        width: 100%
    }
}

.c-resources__table table thead tr {
    background-color: #003ca6;
    color: #fff
}

.c-resources__table table tbody tr:nth-child(2n) {
    background-color: #f1f3f3
}

.c-resources__table table tbody tr td:last-of-type {
    text-align: right
}

.c-resources__table table td,
.c-resources__table table th {
    padding: 1rem 2rem
}

.c-resources__download {
    -ms-flex-align: center;
    align-items: center;
    color: #003ca6;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-decoration: none
}

.c-resources__download,
.c-resources__download-icon,
.c-resources__download-text {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-resources__download-icon,
.c-resources__download-text {
    color: inherit
}

.c-resources__download-icon {
    font-size: 2.2rem;
    margin-right: .5rem
}

.c-resources__download:focus,
.c-resources__download:hover {
    color: #f2aa00;
    text-decoration: none
}

.c-results {
    border-color: #fff;
    padding: 7rem 0
}

.c-results__resume {
    margin-bottom: 4rem
}

.c-results__feed {
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 99.5rem
}

.c-results__feed,
.c-results__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.c-results__item {
    margin-bottom: 3.2rem
}

@media screen and (min-width:62em) {
    .c-results__item {
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.c-results__item-image {
    height: 22.4rem;
    margin-bottom: 2rem;
    width: 100%
}

@media screen and (min-width:48em) {
    .c-results__item-image {
        height: 25rem
    }
}

@media screen and (min-width:62em) {
    .c-results__item-image {
        -ms-flex: 0 0 38rem;
        flex: 0 0 38rem;
        height: 29rem;
        margin-right: 3.2rem
    }
}

.c-results__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.c-results__content-title {
    color: #003ca6;
    margin-bottom: 2rem;
    text-decoration: none
}

.c-results__content-title mark {
    background-color: #003ca6;
    color: #fff;
    display: inline-block;
    padding: 0 .5rem
}

.c-results__content-title mark mark {
    padding: 0
}

.c-results__content-blurb b,
.c-results__content-blurb strong {
    color: #000
}

.c-results__content-blurb mark {
    background-color: #003ca6;
    color: #fff;
    display: inline-block;
    padding: 0 .25rem
}

.c-results__noresults {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 48rem;
    text-align: center
}

.c-results__noresults-keyword {
    color: #003ca6;
    margin-bottom: 2rem
}

.c-rproducts {
    background-color: #003ca6;
    color: #fff;
    display: block;
    padding: 6rem 0
}

@media screen and (min-width:62em) {
    .c-rproducts {
        padding: 8rem 0
    }
}

.c-rproducts__heading {
    -ms-flex-align: end;
    align-items: flex-end;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 3.2rem
}

@media screen and (min-width:62em) {
    .c-rproducts__heading {
        -ms-flex-align: center;
        align-items: center
    }
}

.c-rproducts__heading-title {
    color: #fff
}

.c-rproducts__heading .c-link,
.c-rproducts__heading .c-nav__submenu-heading-explore,
.c-rproducts__heading .c-nav__submenu-item>a {
    color: #fff;
    -ms-flex: 0 0 11.5rem;
    flex: 0 0 11.5rem
}

.c-rproducts__gallery {
    margin: 0 -1.6rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:62em) {
    .c-rproducts__gallery {
        margin: 0;
        padding: 0;
        width: auto
    }
}

.c-rproducts__controls {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 1.6rem;
    width: 100%;
    z-index: 5
}

@media screen and (min-width:62em) {
    .c-rproducts__controls {
        margin: 0;
        width: auto
    }
    .c-rproducts__controls.is-hidden {
        display: none;
        pointer-events: none
    }
}

.c-rproducts__controls-next,
.c-rproducts__controls-prev {
    background-color: #fff;
    border-radius: 0;
    cursor: pointer;
    height: 4.4rem;
    position: relative;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 4.4rem
}

.c-rproducts__controls-next:before,
.c-rproducts__controls-prev:before {
    color: #003ca6;
    font-size: 2rem
}

.c-rproducts__controls-next:hover,
.c-rproducts__controls-prev:hover {
    background-color: #254c9a;
    border-radius: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-rproducts__controls-next:hover:before,
.c-rproducts__controls-prev:hover:before {
    color: #fff
}

.c-rproducts__controls-prev {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.c-rproducts__controls-prev:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media screen and (min-width:62em) {
    .c-rproducts__controls-prev {
        margin-right: 1rem
    }
}

.c-rproducts__controls-next {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 3.2rem;
    position: relative
}

@media screen and (min-width:62em) {
    .c-rproducts__controls-next {
        margin: 0
    }
}

.c-rproducts__controls-pagination {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.c-rproducts__controls-pagination .swiper-pagination-bullet {
    background-color: #fff;
    border: 0 solid #fff;
    border-radius: 0;
    margin-left: 1.6rem;
    opacity: 1;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-rproducts__controls-pagination .swiper-pagination-bullet-active {
    background-color: #003ca6;
    border: .3rem solid #fff;
    height: 1.1rem;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 1.1rem
}

.c-rproducts__image {
    height: 100%;
    margin-bottom: 2rem;
    min-height: 27rem;
    width: 100%
}

.c-rproducts__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 2.4rem
}

.c-rproducts__item-link {
    color: #fff;
    margin-bottom: 1.2rem;
    text-decoration: none
}

.c-rproducts__item-link:focus,
.c-rproducts__item-link:hover {
    color: #f2aa00;
    text-decoration: none
}

.c-search--resources {
    display: block
}

.c-search__heading {
    color: #003ca6;
   font-family: "Alata", sans-serif;
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: .15rem;
    line-height: 1.375;
    margin-bottom: 1.6rem;
    text-align: center;
    text-transform: uppercase;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-search__heading {
        font-size: 4.8rem;
        letter-spacing: .25rem;
        line-height: 1.25
    }
}

.c-search__form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto 6rem
}

@media screen and (min-width:62em) {
    .c-search__form {
        max-width: 79rem
    }
}

.c-search--resources .c-search__form {
    margin-bottom: 4rem
}

@media screen and (min-width:62em) {
    .c-search--resources .c-search__form {
        -ms-flex-direction: row;
        flex-direction: row;
        margin-bottom: 6rem
    }
}

.c-search__form-label {
    color: #000;
   font-family: "Alata", sans-serif;
    font-size: 2.4rem;
    letter-spacing: .15rem;
    line-height: 1.5;
    margin-bottom: 1.2rem
}

.c-search--resources .c-search__form-label {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 6rem;
    margin-bottom: 2rem
}

@media screen and (min-width:62em) {
    .c-search--resources .c-search__form-label {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        margin: 0 3.2rem 0 0;
        max-width: 48rem;
        width: 100%
    }
}

.c-search__bar {
    border-color: #f1f3f3;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 6rem;
    position: relative
}

.c-search--resources .c-search__bar {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-search--resources .c-search__bar {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
}

.c-search__bar-submit {
    -ms-flex-align: center;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #003ca6;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 2.8rem;
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 6rem
}

.c-search__bar-submit:focus,
.c-search__bar-submit:hover {
    background-color: #254c9a
}

.c-search__bar-search {
    -ms-flex-align: center;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #003ca6;
    border: none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    height: 6rem;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%
}

.c-search__bar-search:focus,
.c-search__bar-search:hover {
    background-color: #254c9a
}

.c-search__bar-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #f1f3f3;
    border: none;
    border-radius: 0;
    color: #53565a;
    color: #000;
   font-family: "Alata", sans-serif;
    font-size: 2.4rem;
    height: 100%;
    letter-spacing: .15rem;
    line-height: 1.5;
    padding: 1rem 1.2rem;
    width: 100%
}

.c-search__bar-input::-webkit-input-placeholder {
    color: #53565a;
    display: flex;
    flex-direction: column;
   font-family: "Alata", sans-serif;
    font-size: 2.4rem;
    letter-spacing: .15rem;
    line-height: 1.5;
    padding: 0
}

.c-search__bar-input::-moz-placeholder {
    color: #53565a;
    display: flex;
    flex-direction: column;
   font-family: "Alata", sans-serif;
    font-size: 2.4rem;
    letter-spacing: .15rem;
    line-height: 1.5;
    padding: 0
}

.c-search__bar-input::-ms-input-placeholder {
    color: #53565a;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
   font-family: "Alata", sans-serif;
    font-size: 2.4rem;
    letter-spacing: .15rem;
    line-height: 1.5;
    padding: 0
}

.c-search__bar-input::placeholder {
    color: #53565a;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
   font-family: "Alata", sans-serif;
    font-size: 2.4rem;
    letter-spacing: .15rem;
    line-height: 1.5;
    padding: 0
}

.c-search__bar-reset {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #f1f3f3;
    border: none;
    display: none;
    height: 100%;
    padding: 0 1.5rem
}

.c-search__bar-reset.is-active,
.c-share {
    display: block
}

.c-share {
    bottom: 0;
    left: 0;
    padding-top: 2rem;
    position: fixed;
    right: 0;
    z-index: 3
}

@media screen and (min-width:62em) {
    .c-share {
        bottom: auto;
        display: -ms-flexbox;
        display: flex;
        left: 1rem;
        margin: 0;
        padding: 0;
        position: absolute;
        width: auto
    }
}

@media screen and (min-width:80em) {
    .c-share {
        left: 0
    }
}

.c-share__wrapper {
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.4rem 3.2rem
}

@media screen and (min-width:62em) {
    .c-share__wrapper {
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0
    }
}

.c-share__text {
    color: #000;
    margin-right: 3.2rem
}

@media screen and (min-width:62em) {
    .c-share__text {
        margin: 0 0 1.4rem
    }
}

.c-share__links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

@media screen and (min-width:62em) {
    .c-share__links {
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0
    }
}

.c-share__links .c-icon,
.c-share__links .c-nav__search-submit,
.c-share__links .c-search__bar-submit {
    color: #003ca6;
    font-size: 2.8rem;
    margin-right: 3.2rem;
    text-decoration: none
}

.c-share__links .c-icon:last-of-type,
.c-share__links .c-nav__search-submit:last-of-type,
.c-share__links .c-search__bar-submit:last-of-type {
    margin: 0
}

.c-share__links .c-icon:focus,
.c-share__links .c-icon:hover,
.c-share__links .c-nav__search-submit:focus,
.c-share__links .c-nav__search-submit:hover,
.c-share__links .c-search__bar-submit:focus,
.c-share__links .c-search__bar-submit:hover {
    color: #f2aa00;
    text-decoration: none
}

@media screen and (min-width:62em) {
    .c-share__links .c-icon,
    .c-share__links .c-nav__search-submit,
    .c-share__links .c-search__bar-submit {
        margin: 0 0 2.4rem
    }
}

.c-split-content {
    display: block;
    margin-bottom: 6rem
}

@media screen and (min-width:62em) {
    .c-split-content {
        margin-bottom: 0;padding: 50px 0px;
        position: relative
    }
}

@media screen and (min-width:62em) {
    .c-split-content--angled {
        -ms-flex-align: center;
        align-items: center;
        display: -ms-flexbox;
        display: flex;
        height: 65rem;
        -ms-flex-pack: center;
        justify-content: center;
        overflow: hidden;
        width: 100%
    }
}

.c-split-content--angled>.o-container {
    margin: 0;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-split-content--angled .c-wysiwyg--split {
        margin-bottom: .5rem;
        max-height: 23rem;
        overflow: auto
    }
}

.c-split-content__image {
    height: 100%;
    margin-bottom: 3rem;
    margin-left: -1.6rem;
    overflow: hidden;
    position: relative;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:62em) {
    .c-split-content__image {
        margin: 0;
        width: 100%
    }
}

@media screen and (min-width:62em) {
    .c-split-content.is-left .c-split-content__image,
    .c-split-content.is-right .c-split-content__image {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0rem 0
    }
}

.c-split-content--angled .c-split-content__image {
    height: 100%
}

.c-split-content--angled .c-split-content__image:before {
    background-color: #fff;
    bottom: 0;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-split-content--angled .c-split-content__image {
        bottom: 0;
        left: 0;
        margin: 0;
        max-height: 100%;
        max-width: 100%;
        position: absolute;
        right: auto;
        top: 0;
        width: calc(50% + 6.5rem)
    }
}

.c-split-content--angled.is-left .c-split-content__image:before,
.c-split-content--angled.is-right .c-split-content__image:before {
    -webkit-transform: skewY(7deg) translateY(80%);
    -ms-transform: skewY(7deg) translateY(80%);
    transform: skewY(7deg) translateY(80%)
}

@media screen and (min-width:48em) {
    .c-split-content--angled.is-left .c-split-content__image:before,
    .c-split-content--angled.is-right .c-split-content__image:before {
        -webkit-transform: skewY(7deg) translateY(75%);
        -ms-transform: skewY(7deg) translateY(75%);
        transform: skewY(7deg) translateY(75%)
    }
}

@media screen and (min-width:62em) {
    .c-split-content--angled.is-left .c-split-content__image:before,
    .c-split-content--angled.is-right .c-split-content__image:before {
        -webkit-transform: skewX(-15deg) translateX(80%);
        -ms-transform: skewX(-15deg) translateX(80%);
        transform: skewX(-15deg) translateX(80%)
    }
}

@media screen and (min-width:80em) {
    .c-split-content--angled.is-left .c-split-content__image:before,
    .c-split-content--angled.is-right .c-split-content__image:before {
        -webkit-transform: skewX(-15deg) translateX(85%);
        -ms-transform: skewX(-15deg) translateX(85%);
        transform: skewX(-15deg) translateX(85%)
    }
}

@media screen and (min-width:62em) {
    .c-split-content--angled.is-left .c-split-content__image,
    .c-split-content--angled.is-right .c-split-content__image {
        padding: 0
    }
}

@media screen and (min-width:62em) {
    .c-split-content--angled.is-right .c-split-content__image:before {
        -webkit-transform: skewX(-15deg) translateX(-80%);
        -ms-transform: skewX(-15deg) translateX(-80%);
        transform: skewX(-15deg) translateX(-80%)
    }
}

@media screen and (min-width:80em) {
    .c-split-content--angled.is-right .c-split-content__image:before {
        -webkit-transform: skewX(-15deg) translateX(-85%);
        -ms-transform: skewX(-15deg) translateX(-85%);
        transform: skewX(-15deg) translateX(-85%)
    }
}

@media screen and (min-width:62em) {
    .c-split-content--angled.is-right .c-split-content__image {
        left: calc(50% - 6.5rem)
    }
}


@media screen and (min-width:62em) {
    .c-split-content__image-src {
        min-height: 600px;
    }
}

@media screen and (min-width:62em) {
    .c-split-content--angled .c-split-content__image-src {
        height: 99.8%
    }
}
h2.c-split-content__heading.c-split-content__heading--highligh {
letter-spacing: 0px;
}
.o-grid.o-grid--flush.mart-top.supr{margin:50px 0 0 0px;}
.c-split-content__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-split-content__content {
        padding: 0px 0 0 0;
    }
}

@media screen and (min-width:62em) {
    .c-split-content--angled .c-split-content__content {
        padding: 0
    }
}

.c-split-content__heading {
    color: #003ca6;
    display: block;
    margin-bottom: 3rem
}

@media screen and (min-width:62em) {
    .c-split-content__heading {
        margin-bottom: 3.4rem
    }
}

.c-split-content__heading--highlight {
    color: #fff;
    display: inline-block;
    margin-left: .5rem;
    text-align: left
}

@media screen and (min-width:62em) {
    .c-split-content__heading--highlight {
        margin-left: 1rem
    }
}

.c-split-content__heading--highlight>span {
    background-color: #003ca6;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    -webkit-box-shadow: .5rem 0 0 #003ca6, -.5rem 0 0 #003ca6;
    box-shadow: .5rem 0 0 #003ca6, -.5rem 0 0 #003ca6;
    padding: .5rem
}

@media screen and (min-width:62em) {
    .c-split-content__heading--highlight>span {
        -webkit-box-shadow: 1rem 0 0 #003ca6, -1rem 0 0 #003ca6;
        box-shadow: 1rem 0 0 #003ca6, -1rem 0 0 #003ca6;
        padding: .5rem 0
    }
}

.c-split-content__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 1.8rem;
    margin-left: 1.6rem
}

@media screen and (min-width:62em) {
    .c-split-content__list {
        margin-bottom: 1rem
    }
}

.c-split-content__list>li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    margin-bottom: 1rem
}

.c-split-content__list>li:before {
    color: #f2aa00;
    content: "\2022";
    display: inline-block;
    padding-right: 2rem;
    width: 1rem
}

.c-split-content__link {
    display: block;
    width: auto
}

.c-split-hero {
    background: #fff;
    display: block;
    margin: 0 -1.6rem;
    position: relative;
    width: calc(100% + 3.2rem)
}

.c-split-hero .c-breadcrumb {
    -ms-flex-align: center;
    align-items: center;
    height: 4.6rem;
    left: 1.6rem;
    margin-bottom: 2rem;
    padding: 0 0 0 1.6rem;
    position: absolute;
    top: 2.4rem;
    z-index: 2
}

@media screen and (min-width:62em) {
    .c-split-hero .c-breadcrumb {
        height: auto;
        left: auto;
        margin-bottom: 0;
        padding: .8rem 2rem;
        top: 3.2rem
    }
}

.c-split-hero__image {
    height: 37.5rem;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-split-hero__image {
        height: 66.7rem;
        max-width: 66.7rem
    }
}

.c-split-hero__wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 4rem 1.6rem 6rem
}

@media screen and (min-width:62em) {
    .c-split-hero__wrapper {
        padding: 0
    }
}

.c-split-hero__heading {
    -ms-flex-align: end;
    align-items: flex-end;
    color: #003ca6;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.6rem;
    overflow: hidden
}

.c-split-hero__heading-text {
    display: inline-block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%
}

.c-split-hero__heading-pattern {
    background-image: url(../img/dashes.png);
    background-position: 0;
    background-size: contain;
    display: block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 2.4rem;
    margin-bottom: .75rem;
    margin-left: 1rem;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-split-hero__intro {
        margin-bottom: 3.2rem
    }
}

.c-split-hero__cta {
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin: 0
}

.c-split-hero__cta,
.c-split-hero__cta:focus,
.c-split-hero__cta:hover {
    text-decoration: none
}

.c-story {
    display: block;
    padding-bottom: 4rem
}

@media screen and (min-width:62em) {
    .c-story {
        padding-bottom: 8rem
    }
}

.c-story__heading {
    color: #003ca6;
    margin-bottom: 3.2rem;
    text-align: center
}

@media screen and (min-width:62em) {
    .c-story__heading {
        margin-bottom: 6rem
    }
}

.c-story__item {
    margin-bottom: 3.2rem
}

@media screen and (min-width:62em) {
    .c-story__item {
        margin-bottom: 0
    }
}

.c-story__image {
    background-color: #003ca6;
    border-radius: 100%;
    height: 24rem;
    margin: 0 auto 3.1rem;
    width: 24rem
}

.c-story__title {
    color: #003ca6;
    margin-bottom: 1.6rem
}

.c-story__content {
    margin-bottom: 2.4rem
}

@media screen and (min-width:62em) {
    .c-story__content {
        margin-bottom: 0
    }
}

.c-substrate {
    background-color: #f2aa00;
    display: block;
    padding: 6rem 0
}

@media screen and (min-width:62em) {
    .c-substrate {
        padding: 8rem 0
    }
}

.c-substrate__content {
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    -webkit-box-shadow: 0 0 1.6rem 0 rgba(70, 80, 122, .4);
    box-shadow: 0 0 1.6rem 0 rgba(70, 80, 122, .4);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 3.5rem 2rem;
    text-align: center
}

@media screen and (min-width:62em) {
    .c-substrate__content {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 auto;
        max-width: 120rem;
        padding: 3.2rem 10rem;
        text-align: left
    }
}

.c-substrate__heading {
    color: #fff;
    display: inline;
    margin-bottom: 2.4rem;
    margin-left: .5rem;
    text-align: left
}

@media screen and (min-width:62em) {
    .c-substrate__heading {
        max-width: 39rem;
        padding-right: 1rem;
        text-align: left
    }
}

.c-substrate__heading>span {
    background-color: #003ca6;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    -webkit-box-shadow: .5rem 0 0 #003ca6, -.5rem 0 0 #003ca6;
    box-shadow: .5rem 0 0 #003ca6, -.5rem 0 0 #003ca6;
    padding: .5rem
}

@media screen and (min-width:62em) {
    .c-substrate__heading>span {
        -webkit-box-shadow: 1rem 0 0 #003ca6, -1rem 0 0 #003ca6;
        box-shadow: 1rem 0 0 #003ca6, -1rem 0 0 #003ca6;
        padding: .5rem 0
    }
}

.c-substrate__cats {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    max-width: 58.5rem
}

.c-substrate__item>a {
    background-color: #f1f3f3;
    color: #53565a;
    margin-bottom: 1.2rem;
    margin-right: 1.2rem;
    padding: .2rem 1.6rem;
    text-decoration: none
}

.c-substrate__item>a,
.c-substrate__item>a:focus,
.c-substrate__item>a:hover {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-substrate__item>a:focus,
.c-substrate__item>a:hover {
    background-color: #d9d9d6;
    color: #000
}

.c-tag {
    background-color: #f1f3f3;
    color: #53565a;
    display: inline-block;
    font-family: "Alata", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .025rem;
    line-height: 2;
    padding: .2rem 1.6rem;
    text-align: center
}

.c-tag,
.c-tag:focus,
.c-tag:hover {
    text-decoration: none;
    -webkit-transition: all .25s linear;
    -o-transition: .25s linear all;
    transition: all .25s linear
}

.c-tag:focus,
.c-tag:hover {
    background-color: #d9d9d6;
    color: #000
}

.c-timeline {
    background-color: #f1f3f3;
    display: block;
    padding: 6rem 0;
    position: relative;
    z-index: 2
}

@media screen and (min-width:62em) {
    .c-timeline {
        padding: 10rem 0
    }
}

.c-timeline__heading {
    color: #003ca6;
    margin-bottom: 1.6rem;
    text-align: center
}

@media screen and (min-width:62em) {
    .c-timeline__heading {
        margin-bottom: 1.6rem;
        text-align: left
    }
}

.c-timeline__intro {
    margin-bottom: 3.2rem;
    text-align: center
}

@media screen and (min-width:62em) {
    .c-timeline__intro {
        margin-bottom: 9rem;
        max-width: 49rem;
        text-align: left
    }
}

.c-timeline__image {
    background-color: #003ca6;
    height: 25rem;
    margin: 0 -1.6rem 2.4rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:62em) {
    .c-timeline__image {
        height: 35rem;
        height: 42rem;
        margin: 0;
        max-width: 48rem;
        width: 40%
    }
}

.c-timeline__slide {
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 2rem;
    padding: 0 1.6rem;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-timeline__slide {
        -ms-flex-direction: row;
        flex-direction: row;
        margin: 0;
        overflow: auto;
        padding: 0;
        width: 100%
    }
    .c-timeline__slide .c-product__cta {
        margin-bottom: 0
    }
}

.c-timeline__details {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
    max-width: 60rem;
    padding-bottom: 2rem;
    width: 100%
}

@media screen and (min-width:62em) {
    .c-timeline__details {
        -ms-flex-pack: center;
        justify-content: center;
        padding-bottom: 0;
        padding-left: 3.2rem;
        padding-right: 8rem;
        width: 60%
    }
}

.c-timeline__gallery {
    margin: 0 -1.6rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:48em) {
    .c-timeline__gallery {
        margin: auto;
        width: auto
    }
}

@media screen and (min-width:62em) {
    .c-timeline__gallery {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin: 0 -3.2rem;
        padding: 0;
        position: relative;
        width: auto
    }
}

.c-timeline__buttons {
    display: none
}

@media screen and (min-width:62em) {
    .c-timeline__buttons {
        background-color: #003ca6;
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
        -webkit-filter: contrast(150%);
        filter: contrast(150%);
        margin: 0 !important;
        max-width: 36rem;
        min-height: 44rem;
        padding: 8rem !important;
        position: relative;
        width: 40%
    }
}

@media screen and (min-width:80em) {
    .c-timeline__buttons {
        margin-left: -9rem !important
    }
}

.c-timeline__buttons:after {
    background-color: rgba(0, 60, 166, .5);
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

.c-timeline__buttons .swiper-wrapper {
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center
}

.c-timeline__buttons .swiper-wrapper .swiper-slide {
    height: auto;
    margin-bottom: .5rem;
    padding: .25rem 0;
    width: auto !important
}

@media screen and (min-width:62em) {
    .c-timeline__buttons .swiper-wrapper .swiper-slide:last-of-type {
        margin-bottom: 0
    }
}

.c-timeline__btn {
    background-color: transparent;
    border: none;
    border-bottom: .2rem solid transparent;
    color: #fff;
    margin-left: 4rem
}

.c-timeline__btn,
.c-timeline__btn:before {
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-timeline__btn:before {
    left: -2.5rem;
    position: absolute
}

.c-timeline__btn:focus,
.c-timeline__btn:hover {
    border-bottom: .2rem solid #f2aa00;
    color: #fff;
    margin-left: 4.5rem;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-timeline__btn:focus:before,
.c-timeline__btn:hover:before {
    font-size: 2rem;
    left: -3rem;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-timeline__container {
    margin: 0 !important
}

@media screen and (min-width:48em) {
    .c-timeline__container {
        padding: 1.5rem !important
    }
}

@media screen and (min-width:62em) {
    .c-timeline__container {
        margin-left: -7rem !important;
        margin-top: -7rem !important;
        max-width: 108rem;
        width: 100%;
        z-index: 2 !important
    }
}

@media screen and (min-width:80em) {
    .c-timeline__container {
        margin-right: -9rem !important
    }
}

.c-timeline__title {
    -ms-flex-align: end;
    align-items: flex-end;
    color: #003ca6;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.6rem;
    overflow: hidden
}

.c-timeline__title-text {
    display: inline-block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto
}

.c-timeline__title-pattern {
    background-image: url(../img/dashes.png);
    background-position: 0;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 2.4rem;
    margin-bottom: .75rem;
    margin-left: 1rem;
    max-width: 35rem;
    width: 100%
}

.c-timeline__controls {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 1.6rem;
    position: relative;
    width: 100%;
    z-index: 5
}

@media screen and (min-width:62em) {
    .c-timeline__controls {
        display: none;
        margin: 0;
        width: auto
    }
}

.c-timeline__controls-next,
.c-timeline__controls-prev {
    background-color: #003ca6;
    border-radius: 0;
    cursor: pointer;
    height: 4.4rem;
    position: relative;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 4.4rem
}

.c-timeline__controls-next:before,
.c-timeline__controls-prev:before {
    color: #fff;
    font-size: 2rem
}

.c-timeline__controls-next:hover,
.c-timeline__controls-prev:hover {
    background-color: #254c9a;
    border-radius: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear
}

.c-timeline__controls-next:hover:before,
.c-timeline__controls-prev:hover:before {
    color: #fff
}

.c-timeline__controls-prev {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.c-timeline__controls-prev:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media screen and (min-width:62em) {
    .c-timeline__controls-prev {
        margin-right: 1rem
    }
}

.c-timeline__controls-next {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 3.2rem;
    position: relative
}

@media screen and (min-width:62em) {
    .c-timeline__controls-next {
        margin: 0
    }
}

.c-timeline__controls-pagination {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.c-timeline__controls-pagination .swiper-pagination-bullet {
    background-color: transparent;
    border: .2rem solid #003ca6;
    border-radius: 0;
    height: 1rem;
    margin-left: 1.6rem;
    opacity: 1;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: 1rem
}

.c-timeline__controls-pagination .swiper-pagination-bullet-active {
    background-color: #003ca6;
    border: none;
    height: .8rem;
    -webkit-transition: all .25s linear;
    -o-transition: all linear .25s;
    transition: all .25s linear;
    width: .8rem
}

.c-timeline__year {
    color: #000;
    font-weight: 900;
    margin-bottom: 1.6rem
}

.c-values {
    display: block;
    padding: 6rem 0
}

@media screen and (min-width:62em) {
    .c-values {
        padding: 8rem 0
    }
}

.c-values__video {
    background-color: #000;
    margin: 0 -1.6rem 2.4rem;
    min-height: 22rem;
    width: calc(100% + 3.2rem)
}

@media screen and (min-width:30em) {
    .c-values__video {
        min-height: 43rem;
    }
}

@media screen and (min-width:62em) {
    .c-values__video {
        height: auto;
        margin: 0;
        width: auto
    }
}

.c-values__title {
    background-color: #003ca6;
    color: #fff;
    display: inline-block;
    margin-bottom: 3.2rem;
    padding: 0 1.2rem
}

.c-values__intro {
    margin-bottom: 2.4rem
}

.c-values__intro p {
    margin-bottom: 0;font-family: "Alata", sans-serif;
}

.c-values__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.c-values__group {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    list-style: none;
    padding-left: .5rem
}

a.missin {
    text-align: left !important;
    font-size: 13px;
    font-weight: 500;
    margin: 11px 0 0 0;font-family: "Alata", sans-serif;
}
.c-values__group li {
    color: #000;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;font-family: "Alata", sans-serif;
}

.c-values__group li:before {
    background-color: #f2aa00;
    border-radius: 50%;
    content: "";
    display: block;
    height: .6rem;
    left: 0;
    position: absolute;
    top: 1.3rem;
    width: .6rem
}

.u-ai-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important
}

.u-ai-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important
}

.u-ai-center {
    -ms-flex-align: center !important;
    align-items: center !important
}

.u-ai-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important
}

.u-ai-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important
}

@media screen and (min-width:30em) {
    .u-ai-start\@xs {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }
    .u-ai-end\@xs {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }
    .u-ai-center\@xs {
        -ms-flex-align: center !important;
        align-items: center !important
    }
    .u-ai-stretch\@xs {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }
    .u-ai-baseline\@xs {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }
}

@media screen and (min-width:48em) {
    .u-ai-start\@sm {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }
    .u-ai-end\@sm {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }
    .u-ai-center\@sm {
        -ms-flex-align: center !important;
        align-items: center !important
    }
    .u-ai-stretch\@sm {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }
    .u-ai-baseline\@sm {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }
}

@media screen and (min-width:62em) {
    .u-ai-start\@md {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }
    .u-ai-end\@md {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }
    .u-ai-center\@md {
        -ms-flex-align: center !important;
        align-items: center !important
    }
    .u-ai-stretch\@md {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }
    .u-ai-baseline\@md {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }
}

@media screen and (min-width:80em) {
    .u-ai-start\@lg {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }
    .u-ai-end\@lg {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }
    .u-ai-center\@lg {
        -ms-flex-align: center !important;
        align-items: center !important
    }
    .u-ai-stretch\@lg {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }
    .u-ai-baseline\@lg {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }
}

@media screen and (min-width:90em) {
    .u-ai-start\@xl {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }
    .u-ai-end\@xl {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }
    .u-ai-center\@xl {
        -ms-flex-align: center !important;
        align-items: center !important
    }
    .u-ai-stretch\@xl {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }
    .u-ai-baseline\@xl {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }
}

@media screen and (min-width:100em) {
    .u-ai-start\@xxl {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }
    .u-ai-end\@xxl {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }
    .u-ai-center\@xxl {
        -ms-flex-align: center !important;
        align-items: center !important
    }
    .u-ai-stretch\@xxl {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }
    .u-ai-baseline\@xxl {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }
}

.u-bgimg-contain-ctr {
    background-size: contain
}

.u-bgimg-contain-ctr,
.u-bgimg-cover-ctr {
    background-position: 50%;
    background-repeat: no-repeat
}

.u-bgimg-cover-ctr {
    background-size: cover
}

.u-border-gray {
    border: .2rem solid #53565a
}

.u-border-secondary {
    border: .2rem solid #aaabad
}

.u-border-focus {
    border: .2rem solid #003ca6
}

.u-clear:after {
    clear: both;
    content: "";
    display: block
}

.u-color-grey {
    color: #d8d8d8
}

.u-bg-grey {
    background-color: #d8d8d8
}

.u-color-white {
    color: #fff
}

.u-bg-white {
    background-color: #fff
}

.u-color-black {
    color: #000
}

.u-bg-black {
    background-color: #000
}

.u-color-blue {
    color: #003ca6
}

.u-bg-blue {
    background-color: #003ca6
}

.u-color-darkblue {
    color: #254c9a
}

.u-bg-darkblue {
    background-color: #254c9a
}

.u-color-orange {
    color: #f2aa00
}

.u-bg-orange {
    background-color: #f2aa00
}

.u-color-graylight {
    color: #f1f3f3
}

.u-bg-graylight {
    background-color: #f1f3f3
}

.u-color-grayregular {
    color: #d9d9d6
}

.u-bg-grayregular {
    background-color: #d9d9d6
}

.u-color-graymedium {
    color: #aaabad
}

.u-bg-graymedium {
    background-color: #aaabad
}

.u-color-graybold {
    color: #53565a
}

.u-bg-graybold {
    background-color: #53565a
}

.u-color-green {
    color: #2e7e2d
}

.u-bg-green {
    background-color: #2e7e2d
}

.u-color-red {
    color: #d0242b
}

.u-bg-red {
    background-color: #d0242b
}

.u-flex {
    display: -ms-flexbox !important;
    display: flex !important
}

.u-block {
    display: block !important
}

.u-hidden {
    display: none !important
}

.u-inline {
    display: inline !important
}

.u-inline-block {
    display: inline-block !important
}

.u-visually-hidden {
    clip: rect(1px 1px 1px 1px) !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    height: 1px !important;
    overflow: hidden !important;
    position: absolute !important;
    width: 1px !important
}

@media screen and (min-width:30em) {
    .u-flex\@xs {
        display: -ms-flexbox !important;
        display: flex !important
    }
    .u-block\@xs {
        display: block !important
    }
    .u-hidden\@xs {
        display: none !important
    }
    .u-inline\@xs {
        display: inline !important
    }
    .u-inline-block\@xs {
        display: inline-block !important
    }
    .u-visually-hidden\@xs {
        clip: rect(1px 1px 1px 1px) !important;
        clip: rect(1px, 1px, 1px, 1px) !important;
        height: 1px !important;
        overflow: hidden !important;
        position: absolute !important;
        width: 1px !important
    }
}

@media screen and (min-width:48em) {
    .u-flex\@sm {
        display: -ms-flexbox !important;
        display: flex !important
    }
    .u-block\@sm {
        display: block !important
    }
    .u-hidden\@sm {
        display: none !important
    }
    .u-inline\@sm {
        display: inline !important
    }
    .u-inline-block\@sm {
        display: inline-block !important
    }
    .u-visually-hidden\@sm {
        clip: rect(1px 1px 1px 1px) !important;
        clip: rect(1px, 1px, 1px, 1px) !important;
        height: 1px !important;
        overflow: hidden !important;
        position: absolute !important;
        width: 1px !important
    }
}

@media screen and (min-width:62em) {
    .u-flex\@md {
        display: -ms-flexbox !important;
        display: flex !important
    }
    .u-block\@md {
        display: block !important
    }
    .u-hidden\@md {
        display: none !important
    }
    .u-inline\@md {
        display: inline !important
    }
    .u-inline-block\@md {
        display: inline-block !important
    }
    .u-visually-hidden\@md {
        clip: rect(1px 1px 1px 1px) !important;
        clip: rect(1px, 1px, 1px, 1px) !important;
        height: 1px !important;
        overflow: hidden !important;
        position: absolute !important;
        width: 1px !important
    }
}

@media screen and (min-width:80em) {
    .u-flex\@lg {
        display: -ms-flexbox !important;
        display: flex !important
    }
    .u-block\@lg {
        display: block !important
    }
    .u-hidden\@lg {
        display: none !important
    }
    .u-inline\@lg {
        display: inline !important
    }
    .u-inline-block\@lg {
        display: inline-block !important
    }
    .u-visually-hidden\@lg {
        clip: rect(1px 1px 1px 1px) !important;
        clip: rect(1px, 1px, 1px, 1px) !important;
        height: 1px !important;
        overflow: hidden !important;
        position: absolute !important;
        width: 1px !important
    }
}

@media screen and (min-width:90em) {
    .u-flex\@xl {
        display: -ms-flexbox !important;
        display: flex !important
    }
    .u-block\@xl {
        display: block !important
    }
    .u-hidden\@xl {
        display: none !important
    }
    .u-inline\@xl {
        display: inline !important
    }
    .u-inline-block\@xl {
        display: inline-block !important
    }
    .u-visually-hidden\@xl {
        clip: rect(1px 1px 1px 1px) !important;
        clip: rect(1px, 1px, 1px, 1px) !important;
        height: 1px !important;
        overflow: hidden !important;
        position: absolute !important;
        width: 1px !important
    }
}

@media screen and (min-width:100em) {
    .u-flex\@xxl {
        display: -ms-flexbox !important;
        display: flex !important
    }
    .u-block\@xxl {
        display: block !important
    }
    .u-hidden\@xxl {
        display: none !important
    }
    .u-inline\@xxl {
        display: inline !important
    }
    .u-inline-block\@xxl {
        display: inline-block !important
    }
    .u-visually-hidden\@xxl {
        clip: rect(1px 1px 1px 1px) !important;
        clip: rect(1px, 1px, 1px, 1px) !important;
        height: 1px !important;
        overflow: hidden !important;
        position: absolute !important;
        width: 1px !important
    }
}

.u-fw-light {
    font-weight: 300
}

.u-fw-regular {
    font-weight: 400
}

.u-fw-bold {
    font-weight: 700
}

.u-fs-normal {
    font-style: normal
}

.u-fs-italic {
    font-style: italic
}

.u-jcstart {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important
}

.u-jcend {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important
}

.u-jccenter {
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.u-jcbetween {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important
}

.u-jcaround {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important
}

@media screen and (min-width:30em) {
    .u-jcstart\@xs {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }
    .u-jcend\@xs {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }
    .u-jccenter\@xs {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }
    .u-jcbetween\@xs {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }
    .u-jcaround\@xs {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }
}

@media screen and (min-width:48em) {
    .u-jcstart\@sm {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }
    .u-jcend\@sm {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }
    .u-jccenter\@sm {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }
    .u-jcbetween\@sm {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }
    .u-jcaround\@sm {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }
}

@media screen and (min-width:62em) {
    .u-jcstart\@md {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }
    .u-jcend\@md {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }
    .u-jccenter\@md {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }
    .u-jcbetween\@md {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }
    .u-jcaround\@md {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }
}

@media screen and (min-width:80em) {
    .u-jcstart\@lg {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }
    .u-jcend\@lg {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }
    .u-jccenter\@lg {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }
    .u-jcbetween\@lg {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }
    .u-jcaround\@lg {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }
}

@media screen and (min-width:90em) {
    .u-jcstart\@xl {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }
    .u-jcend\@xl {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }
    .u-jccenter\@xl {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }
    .u-jcbetween\@xl {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }
    .u-jcaround\@xl {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }
}

@media screen and (min-width:100em) {
    .u-jcstart\@xxl {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }
    .u-jcend\@xxl {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }
    .u-jccenter\@xxl {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }
    .u-jcbetween\@xxl {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }
    .u-jcaround\@xxl {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }
}

.u-m {
    margin: t !important
}

.u-mt {
    margin-top: b !important
}

.u-mr {
    margin-right: v !important
}

.u-m {
    margin: 2rem !important
}

.u-mt {
    margin-top: 2rem !important
}

.u-mr {
    margin-right: 2rem !important
}

.u-mb {
    margin-bottom: 2rem !important
}

.u-ml {
    margin-left: 2rem !important
}

.u-mv {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important
}

.u-mh {
    margin-right: 2rem !important;
    margin-left: 2rem !important
}

.u-m0 {
    margin: 0 !important
}

.u-mt0 {
    margin-top: 0 !important
}

.u-mr0 {
    margin-right: 0 !important
}

.u-mb0 {
    margin-bottom: 0 !important
}

.u-ml0 {
    margin-left: 0 !important
}

.u-mv0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.u-mh0 {
    margin-right: 0 !important;
    margin-left: 0 !important
}

.u-m4 {
    margin: .4rem !important
}

.u-mt4 {
    margin-top: .4rem !important
}

.u-mr4 {
    margin-right: .4rem !important
}

.u-mb4 {
    margin-bottom: .4rem !important
}

.u-ml4 {
    margin-left: .4rem !important
}

.u-mv4 {
    margin-top: .4rem !important;
    margin-bottom: .4rem !important
}

.u-mh4 {
    margin-right: .4rem !important;
    margin-left: .4rem !important
}

.u-m8 {
    margin: .8rem !important
}

.u-mt8 {
    margin-top: .8rem !important
}

.u-mr8 {
    margin-right: .8rem !important
}

.u-mb8 {
    margin-bottom: .8rem !important
}

.u-ml8 {
    margin-left: .8rem !important
}

.u-mv8 {
    margin-top: .8rem !important;
    margin-bottom: .8rem !important
}

.u-mh8 {
    margin-right: .8rem !important;
    margin-left: .8rem !important
}

.u-m16 {
    margin: 1.6rem !important
}

.u-mt16 {
    margin-top: 1.6rem !important
}

.u-mr16 {
    margin-right: 1.6rem !important
}

.u-mb16 {
    margin-bottom: 1.6rem !important
}

.u-ml16 {
    margin-left: 1.6rem !important
}

.u-mv16 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important
}

.u-mh16 {
    margin-right: 1.6rem !important;
    margin-left: 1.6rem !important
}

.u-m20 {
    margin: 2rem !important
}

.u-mt20 {
    margin-top: 2rem !important
}

.u-mr20 {
    margin-right: 2rem !important
}

.u-mb20 {
    margin-bottom: 2rem !important
}

.u-ml20 {
    margin-left: 2rem !important
}

.u-mv20 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important
}

.u-mh20 {
    margin-right: 2rem !important;
    margin-left: 2rem !important
}

.u-m24 {
    margin: 2.4rem !important
}

.u-mt24 {
    margin-top: 2.4rem !important
}

.u-mr24 {
    margin-right: 2.4rem !important
}

.u-mb24 {
    margin-bottom: 2.4rem !important
}

.u-ml24 {
    margin-left: 2.4rem !important
}

.u-mv24 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important
}

.u-mh24 {
    margin-right: 2.4rem !important;
    margin-left: 2.4rem !important
}

.u-m32 {
    margin: 3.3rem !important
}

.u-mt32 {
    margin-top: 3.3rem !important
}

.u-mr32 {
    margin-right: 3.3rem !important
}

.u-mb32 {
    margin-bottom: 3.3rem !important
}

.u-ml32 {
    margin-left: 3.3rem !important
}

.u-mv32 {
    margin-top: 3.3rem !important;
    margin-bottom: 3.3rem !important
}

.u-mh32 {
    margin-right: 3.3rem !important;
    margin-left: 3.3rem !important
}

.u-m40 {
    margin: 4rem !important
}

.u-mt40 {
    margin-top: 4rem !important
}

.u-mr40 {
    margin-right: 4rem !important
}

.u-mb40 {
    margin-bottom: 4rem !important
}

.u-ml40 {
    margin-left: 4rem !important
}

.u-mv40 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important
}

.u-mh40 {
    margin-right: 4rem !important;
    margin-left: 4rem !important
}

.u-m70 {
    margin: 7rem !important
}

.u-mt70 {
    margin-top: 7rem !important
}

.u-mr70 {
    margin-right: 7rem !important
}

.u-mb70 {
    margin-bottom: 7rem !important
}

.u-ml70 {
    margin-left: 7rem !important
}

.u-mv70 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important
}

.u-mh70 {
    margin-right: 7rem !important;
    margin-left: 7rem !important
}

.u-mstd {
    margin: 2rem !important
}

.u-mtstd {
    margin-top: 2rem !important
}

.u-mrstd {
    margin-right: 2rem !important
}

.u-mbstd {
    margin-bottom: 2rem !important
}

.u-mlstd {
    margin-left: 2rem !important
}

.u-mvstd {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important
}

.u-mhstd {
    margin-right: 2rem !important;
    margin-left: 2rem !important
}

.u-mcontainer {
    margin: 0 !important
}

.u-mtcontainer {
    margin-top: 0 !important
}

.u-mrcontainer {
    margin-right: 0 !important
}

.u-mbcontainer {
    margin-bottom: 0 !important
}

.u-mlcontainer {
    margin-left: 0 !important
}

.u-mvcontainer {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.u-mhcontainer {
    margin-right: 0 !important;
    margin-left: 0 !important
}

.u-msection {
    margin: 7.2rem !important
}

.u-mtsection {
    margin-top: 7.2rem !important
}

.u-mrsection {
    margin-right: 7.2rem !important
}

.u-mbsection {
    margin-bottom: 7.2rem !important
}

.u-mlsection {
    margin-left: 7.2rem !important
}

.u-mvsection {
    margin-top: 7.2rem !important;
    margin-bottom: 7.2rem !important
}

.u-mhsection {
    margin-right: 7.2rem !important;
    margin-left: 7.2rem !important
}

.u-mhero {
    margin: 4.5rem !important
}

.u-mthero {
    margin-top: 4.5rem !important
}

.u-mrhero {
    margin-right: 4.5rem !important
}

.u-mbhero {
    margin-bottom: 4.5rem !important
}

.u-mlhero {
    margin-left: 4.5rem !important
}

.u-mvhero {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important
}

.u-mhhero {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important
}

@media screen and (min-width:30em) {
    .u-m\@xs {
        margin: 2rem !important
    }
    .u-mt\@xs {
        margin-top: 2rem !important
    }
    .u-mr\@xs {
        margin-right: 2rem !important
    }
    .u-mb\@xs {
        margin-bottom: 2rem !important
    }
    .u-ml\@xs {
        margin-left: 2rem !important
    }
    .u-mv\@xs {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .u-mh\@xs {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
}

@media screen and (min-width:48em) {
    .u-m\@sm {
        margin: 2rem !important
    }
    .u-mt\@sm {
        margin-top: 2rem !important
    }
    .u-mr\@sm {
        margin-right: 2rem !important
    }
    .u-mb\@sm {
        margin-bottom: 2rem !important
    }
    .u-ml\@sm {
        margin-left: 2rem !important
    }
    .u-mv\@sm {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .u-mh\@sm {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
}

@media screen and (min-width:62em) {
    .u-m\@md {
        margin: 2rem !important
    }
    .u-mt\@md {
        margin-top: 2rem !important
    }
    .u-mr\@md {
        margin-right: 2rem !important
    }
    .u-mb\@md {
        margin-bottom: 2rem !important
    }
    .u-ml\@md {
        margin-left: 2rem !important
    }
    .u-mv\@md {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .u-mh\@md {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
}

@media screen and (min-width:80em) {
    .u-m\@lg {
        margin: 2rem !important
    }
    .u-mt\@lg {
        margin-top: 2rem !important
    }
    .u-mr\@lg {
        margin-right: 2rem !important
    }
    .u-mb\@lg {
        margin-bottom: 2rem !important
    }
    .u-ml\@lg {
        margin-left: 2rem !important
    }
    .u-mv\@lg {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .u-mh\@lg {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
}

@media screen and (min-width:90em) {
    .u-m\@xl {
        margin: 2rem !important
    }
    .u-mt\@xl {
        margin-top: 2rem !important
    }
    .u-mr\@xl {
        margin-right: 2rem !important
    }
    .u-mb\@xl {
        margin-bottom: 2rem !important
    }
    .u-ml\@xl {
        margin-left: 2rem !important
    }
    .u-mv\@xl {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .u-mh\@xl {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
}

@media screen and (min-width:100em) {
    .u-m\@xxl {
        margin: 2rem !important
    }
    .u-mt\@xxl {
        margin-top: 2rem !important
    }
    .u-mr\@xxl {
        margin-right: 2rem !important
    }
    .u-mb\@xxl {
        margin-bottom: 2rem !important
    }
    .u-ml\@xxl {
        margin-left: 2rem !important
    }
    .u-mv\@xxl {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .u-mh\@xxl {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
}

@media screen and (min-width:30em) {
    .u-m0\@xs {
        margin: 0 !important
    }
    .u-mt0\@xs {
        margin-top: 0 !important
    }
    .u-mr0\@xs {
        margin-right: 0 !important
    }
    .u-mb0\@xs {
        margin-bottom: 0 !important
    }
    .u-ml0\@xs {
        margin-left: 0 !important
    }
    .u-mv0\@xs {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
    .u-mh0\@xs {
        margin-right: 0 !important;
        margin-left: 0 !important
    }
}

@media screen and (min-width:48em) {
    .u-m0\@sm {
        margin: 0 !important
    }
    .u-mt0\@sm {
        margin-top: 0 !important
    }
    .u-mr0\@sm {
        margin-right: 0 !important
    }
    .u-mb0\@sm {
        margin-bottom: 0 !important
    }
    .u-ml0\@sm {
        margin-left: 0 !important
    }
    .u-mv0\@sm {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
    .u-mh0\@sm {
        margin-right: 0 !important;
        margin-left: 0 !important
    }
}

@media screen and (min-width:62em) {
    .u-m0\@md {
        margin: 0 !important
    }
    .u-mt0\@md {
        margin-top: 0 !important
    }
    .u-mr0\@md {
        margin-right: 0 !important
    }
    .u-mb0\@md {
        margin-bottom: 0 !important
    }
    .u-ml0\@md {
        margin-left: 0 !important
    }
    .u-mv0\@md {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
    .u-mh0\@md {
        margin-right: 0 !important;
        margin-left: 0 !important
    }
}

@media screen and (min-width:80em) {
    .u-m0\@lg {
        margin: 0 !important
    }
    .u-mt0\@lg {
        margin-top: 0 !important
    }
    .u-mr0\@lg {
        margin-right: 0 !important
    }
    .u-mb0\@lg {
        margin-bottom: 0 !important
    }
    .u-ml0\@lg {
        margin-left: 0 !important
    }
    .u-mv0\@lg {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
    .u-mh0\@lg {
        margin-right: 0 !important;
        margin-left: 0 !important
    }
}

@media screen and (min-width:90em) {
    .u-m0\@xl {
        margin: 0 !important
    }
    .u-mt0\@xl {
        margin-top: 0 !important
    }
    .u-mr0\@xl {
        margin-right: 0 !important
    }
    .u-mb0\@xl {
        margin-bottom: 0 !important
    }
    .u-ml0\@xl {
        margin-left: 0 !important
    }
    .u-mv0\@xl {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
    .u-mh0\@xl {
        margin-right: 0 !important;
        margin-left: 0 !important
    }
}

@media screen and (min-width:100em) {
    .u-m0\@xxl {
        margin: 0 !important
    }
    .u-mt0\@xxl {
        margin-top: 0 !important
    }
    .u-mr0\@xxl {
        margin-right: 0 !important
    }
    .u-mb0\@xxl {
        margin-bottom: 0 !important
    }
    .u-ml0\@xxl {
        margin-left: 0 !important
    }
    .u-mv0\@xxl {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
    .u-mh0\@xxl {
        margin-right: 0 !important;
        margin-left: 0 !important
    }
}

@media screen and (min-width:30em) {
    .u-m4\@xs {
        margin: .4rem !important
    }
    .u-mt4\@xs {
        margin-top: .4rem !important
    }
    .u-mr4\@xs {
        margin-right: .4rem !important
    }
    .u-mb4\@xs {
        margin-bottom: .4rem !important
    }
    .u-ml4\@xs {
        margin-left: .4rem !important
    }
    .u-mv4\@xs {
        margin-top: .4rem !important;
        margin-bottom: .4rem !important
    }
    .u-mh4\@xs {
        margin-right: .4rem !important;
        margin-left: .4rem !important
    }
}

@media screen and (min-width:48em) {
    .u-m4\@sm {
        margin: .4rem !important
    }
    .u-mt4\@sm {
        margin-top: .4rem !important
    }
    .u-mr4\@sm {
        margin-right: .4rem !important
    }
    .u-mb4\@sm {
        margin-bottom: .4rem !important
    }
    .u-ml4\@sm {
        margin-left: .4rem !important
    }
    .u-mv4\@sm {
        margin-top: .4rem !important;
        margin-bottom: .4rem !important
    }
    .u-mh4\@sm {
        margin-right: .4rem !important;
        margin-left: .4rem !important
    }
}

@media screen and (min-width:62em) {
    .u-m4\@md {
        margin: .4rem !important
    }
    .u-mt4\@md {
        margin-top: .4rem !important
    }
    .u-mr4\@md {
        margin-right: .4rem !important
    }
    .u-mb4\@md {
        margin-bottom: .4rem !important
    }
    .u-ml4\@md {
        margin-left: .4rem !important
    }
    .u-mv4\@md {
        margin-top: .4rem !important;
        margin-bottom: .4rem !important
    }
    .u-mh4\@md {
        margin-right: .4rem !important;
        margin-left: .4rem !important
    }
}

@media screen and (min-width:80em) {
    .u-m4\@lg {
        margin: .4rem !important
    }
    .u-mt4\@lg {
        margin-top: .4rem !important
    }
    .u-mr4\@lg {
        margin-right: .4rem !important
    }
    .u-mb4\@lg {
        margin-bottom: .4rem !important
    }
    .u-ml4\@lg {
        margin-left: .4rem !important
    }
    .u-mv4\@lg {
        margin-top: .4rem !important;
        margin-bottom: .4rem !important
    }
    .u-mh4\@lg {
        margin-right: .4rem !important;
        margin-left: .4rem !important
    }
}

@media screen and (min-width:90em) {
    .u-m4\@xl {
        margin: .4rem !important
    }
    .u-mt4\@xl {
        margin-top: .4rem !important
    }
    .u-mr4\@xl {
        margin-right: .4rem !important
    }
    .u-mb4\@xl {
        margin-bottom: .4rem !important
    }
    .u-ml4\@xl {
        margin-left: .4rem !important
    }
    .u-mv4\@xl {
        margin-top: .4rem !important;
        margin-bottom: .4rem !important
    }
    .u-mh4\@xl {
        margin-right: .4rem !important;
        margin-left: .4rem !important
    }
}

@media screen and (min-width:100em) {
    .u-m4\@xxl {
        margin: .4rem !important
    }
    .u-mt4\@xxl {
        margin-top: .4rem !important
    }
    .u-mr4\@xxl {
        margin-right: .4rem !important
    }
    .u-mb4\@xxl {
        margin-bottom: .4rem !important
    }
    .u-ml4\@xxl {
        margin-left: .4rem !important
    }
    .u-mv4\@xxl {
        margin-top: .4rem !important;
        margin-bottom: .4rem !important
    }
    .u-mh4\@xxl {
        margin-right: .4rem !important;
        margin-left: .4rem !important
    }
}

@media screen and (min-width:30em) {
    .u-m8\@xs {
        margin: .8rem !important
    }
    .u-mt8\@xs {
        margin-top: .8rem !important
    }
    .u-mr8\@xs {
        margin-right: .8rem !important
    }
    .u-mb8\@xs {
        margin-bottom: .8rem !important
    }
    .u-ml8\@xs {
        margin-left: .8rem !important
    }
    .u-mv8\@xs {
        margin-top: .8rem !important;
        margin-bottom: .8rem !important
    }
    .u-mh8\@xs {
        margin-right: .8rem !important;
        margin-left: .8rem !important
    }
}

@media screen and (min-width:48em) {
    .u-m8\@sm {
        margin: .8rem !important
    }
    .u-mt8\@sm {
        margin-top: .8rem !important
    }
    .u-mr8\@sm {
        margin-right: .8rem !important
    }
    .u-mb8\@sm {
        margin-bottom: .8rem !important
    }
    .u-ml8\@sm {
        margin-left: .8rem !important
    }
    .u-mv8\@sm {
        margin-top: .8rem !important;
        margin-bottom: .8rem !important
    }
    .u-mh8\@sm {
        margin-right: .8rem !important;
        margin-left: .8rem !important
    }
}

@media screen and (min-width:62em) {
    .u-m8\@md {
        margin: .8rem !important
    }
    .u-mt8\@md {
        margin-top: .8rem !important
    }
    .u-mr8\@md {
        margin-right: .8rem !important
    }
    .u-mb8\@md {
        margin-bottom: .8rem !important
    }
    .u-ml8\@md {
        margin-left: .8rem !important
    }
    .u-mv8\@md {
        margin-top: .8rem !important;
        margin-bottom: .8rem !important
    }
    .u-mh8\@md {
        margin-right: .8rem !important;
        margin-left: .8rem !important
    }
}

@media screen and (min-width:80em) {
    .u-m8\@lg {
        margin: .8rem !important
    }
    .u-mt8\@lg {
        margin-top: .8rem !important
    }
    .u-mr8\@lg {
        margin-right: .8rem !important
    }
    .u-mb8\@lg {
        margin-bottom: .8rem !important
    }
    .u-ml8\@lg {
        margin-left: .8rem !important
    }
    .u-mv8\@lg {
        margin-top: .8rem !important;
        margin-bottom: .8rem !important
    }
    .u-mh8\@lg {
        margin-right: .8rem !important;
        margin-left: .8rem !important
    }
}

@media screen and (min-width:90em) {
    .u-m8\@xl {
        margin: .8rem !important
    }
    .u-mt8\@xl {
        margin-top: .8rem !important
    }
    .u-mr8\@xl {
        margin-right: .8rem !important
    }
    .u-mb8\@xl {
        margin-bottom: .8rem !important
    }
    .u-ml8\@xl {
        margin-left: .8rem !important
    }
    .u-mv8\@xl {
        margin-top: .8rem !important;
        margin-bottom: .8rem !important
    }
    .u-mh8\@xl {
        margin-right: .8rem !important;
        margin-left: .8rem !important
    }
}

@media screen and (min-width:100em) {
    .u-m8\@xxl {
        margin: .8rem !important
    }
    .u-mt8\@xxl {
        margin-top: .8rem !important
    }
    .u-mr8\@xxl {
        margin-right: .8rem !important
    }
    .u-mb8\@xxl {
        margin-bottom: .8rem !important
    }
    .u-ml8\@xxl {
        margin-left: .8rem !important
    }
    .u-mv8\@xxl {
        margin-top: .8rem !important;
        margin-bottom: .8rem !important
    }
    .u-mh8\@xxl {
        margin-right: .8rem !important;
        margin-left: .8rem !important
    }
}

@media screen and (min-width:30em) {
    .u-m16\@xs {
        margin: 1.6rem !important
    }
    .u-mt16\@xs {
        margin-top: 1.6rem !important
    }
    .u-mr16\@xs {
        margin-right: 1.6rem !important
    }
    .u-mb16\@xs {
        margin-bottom: 1.6rem !important
    }
    .u-ml16\@xs {
        margin-left: 1.6rem !important
    }
    .u-mv16\@xs {
        margin-top: 1.6rem !important;
        margin-bottom: 1.6rem !important
    }
    .u-mh16\@xs {
        margin-right: 1.6rem !important;
        margin-left: 1.6rem !important
    }
}

@media screen and (min-width:48em) {
    .u-m16\@sm {
        margin: 1.6rem !important
    }
    .u-mt16\@sm {
        margin-top: 1.6rem !important
    }
    .u-mr16\@sm {
        margin-right: 1.6rem !important
    }
    .u-mb16\@sm {
        margin-bottom: 1.6rem !important
    }
    .u-ml16\@sm {
        margin-left: 1.6rem !important
    }
    .u-mv16\@sm {
        margin-top: 1.6rem !important;
        margin-bottom: 1.6rem !important
    }
    .u-mh16\@sm {
        margin-right: 1.6rem !important;
        margin-left: 1.6rem !important
    }
}

@media screen and (min-width:62em) {
    .u-m16\@md {
        margin: 1.6rem !important
    }
    .u-mt16\@md {
        margin-top: 1.6rem !important
    }
    .u-mr16\@md {
        margin-right: 1.6rem !important
    }
    .u-mb16\@md {
        margin-bottom: 1.6rem !important
    }
    .u-ml16\@md {
        margin-left: 1.6rem !important
    }
    .u-mv16\@md {
        margin-top: 1.6rem !important;
        margin-bottom: 1.6rem !important
    }
    .u-mh16\@md {
        margin-right: 1.6rem !important;
        margin-left: 1.6rem !important
    }
}

@media screen and (min-width:80em) {
    .u-m16\@lg {
        margin: 1.6rem !important
    }
    .u-mt16\@lg {
        margin-top: 1.6rem !important
    }
    .u-mr16\@lg {
        margin-right: 1.6rem !important
    }
    .u-mb16\@lg {
        margin-bottom: 1.6rem !important
    }
    .u-ml16\@lg {
        margin-left: 1.6rem !important
    }
    .u-mv16\@lg {
        margin-top: 1.6rem !important;
        margin-bottom: 1.6rem !important
    }
    .u-mh16\@lg {
        margin-right: 1.6rem !important;
        margin-left: 1.6rem !important
    }
}

@media screen and (min-width:90em) {
    .u-m16\@xl {
        margin: 1.6rem !important
    }
    .u-mt16\@xl {
        margin-top: 1.6rem !important
    }
    .u-mr16\@xl {
        margin-right: 1.6rem !important
    }
    .u-mb16\@xl {
        margin-bottom: 1.6rem !important
    }
    .u-ml16\@xl {
        margin-left: 1.6rem !important
    }
    .u-mv16\@xl {
        margin-top: 1.6rem !important;
        margin-bottom: 1.6rem !important
    }
    .u-mh16\@xl {
        margin-right: 1.6rem !important;
        margin-left: 1.6rem !important
    }
}

@media screen and (min-width:100em) {
    .u-m16\@xxl {
        margin: 1.6rem !important
    }
    .u-mt16\@xxl {
        margin-top: 1.6rem !important
    }
    .u-mr16\@xxl {
        margin-right: 1.6rem !important
    }
    .u-mb16\@xxl {
        margin-bottom: 1.6rem !important
    }
    .u-ml16\@xxl {
        margin-left: 1.6rem !important
    }
    .u-mv16\@xxl {
        margin-top: 1.6rem !important;
        margin-bottom: 1.6rem !important
    }
    .u-mh16\@xxl {
        margin-right: 1.6rem !important;
        margin-left: 1.6rem !important
    }
}

@media screen and (min-width:30em) {
    .u-m20\@xs {
        margin: 2rem !important
    }
    .u-mt20\@xs {
        margin-top: 2rem !important
    }
    .u-mr20\@xs {
        margin-right: 2rem !important
    }
    .u-mb20\@xs {
        margin-bottom: 2rem !important
    }
    .u-ml20\@xs {
        margin-left: 2rem !important
    }
    .u-mv20\@xs {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .u-mh20\@xs {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
}

@media screen and (min-width:48em) {
    .u-m20\@sm {
        margin: 2rem !important
    }
    .u-mt20\@sm {
        margin-top: 2rem !important
    }
    .u-mr20\@sm {
        margin-right: 2rem !important
    }
    .u-mb20\@sm {
        margin-bottom: 2rem !important
    }
    .u-ml20\@sm {
        margin-left: 2rem !important
    }
    .u-mv20\@sm {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .u-mh20\@sm {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
}

@media screen and (min-width:62em) {
    .u-m20\@md {
        margin: 2rem !important
    }
    .u-mt20\@md {
        margin-top: 2rem !important
    }
    .u-mr20\@md {
        margin-right: 2rem !important
    }
    .u-mb20\@md {
        margin-bottom: 2rem !important
    }
    .u-ml20\@md {
        margin-left: 2rem !important
    }
    .u-mv20\@md {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .u-mh20\@md {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
}

@media screen and (min-width:80em) {
    .u-m20\@lg {
        margin: 2rem !important
    }
    .u-mt20\@lg {
        margin-top: 2rem !important
    }
    .u-mr20\@lg {
        margin-right: 2rem !important
    }
    .u-mb20\@lg {
        margin-bottom: 2rem !important
    }
    .u-ml20\@lg {
        margin-left: 2rem !important
    }
    .u-mv20\@lg {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .u-mh20\@lg {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
}

@media screen and (min-width:90em) {
    .u-m20\@xl {
        margin: 2rem !important
    }
    .u-mt20\@xl {
        margin-top: 2rem !important
    }
    .u-mr20\@xl {
        margin-right: 2rem !important
    }
    .u-mb20\@xl {
        margin-bottom: 2rem !important
    }
    .u-ml20\@xl {
        margin-left: 2rem !important
    }
    .u-mv20\@xl {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .u-mh20\@xl {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
}

@media screen and (min-width:100em) {
    .u-m20\@xxl {
        margin: 2rem !important
    }
    .u-mt20\@xxl {
        margin-top: 2rem !important
    }
    .u-mr20\@xxl {
        margin-right: 2rem !important
    }
    .u-mb20\@xxl {
        margin-bottom: 2rem !important
    }
    .u-ml20\@xxl {
        margin-left: 2rem !important
    }
    .u-mv20\@xxl {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .u-mh20\@xxl {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
}

@media screen and (min-width:30em) {
    .u-m24\@xs {
        margin: 2.4rem !important
    }
    .u-mt24\@xs {
        margin-top: 2.4rem !important
    }
    .u-mr24\@xs {
        margin-right: 2.4rem !important
    }
    .u-mb24\@xs {
        margin-bottom: 2.4rem !important
    }
    .u-ml24\@xs {
        margin-left: 2.4rem !important
    }
    .u-mv24\@xs {
        margin-top: 2.4rem !important;
        margin-bottom: 2.4rem !important
    }
    .u-mh24\@xs {
        margin-right: 2.4rem !important;
        margin-left: 2.4rem !important
    }
}

@media screen and (min-width:48em) {
    .u-m24\@sm {
        margin: 2.4rem !important
    }
    .u-mt24\@sm {
        margin-top: 2.4rem !important
    }
    .u-mr24\@sm {
        margin-right: 2.4rem !important
    }
    .u-mb24\@sm {
        margin-bottom: 2.4rem !important
    }
    .u-ml24\@sm {
        margin-left: 2.4rem !important
    }
    .u-mv24\@sm {
        margin-top: 2.4rem !important;
        margin-bottom: 2.4rem !important
    }
    .u-mh24\@sm {
        margin-right: 2.4rem !important;
        margin-left: 2.4rem !important
    }
}

@media screen and (min-width:62em) {
    .u-m24\@md {
        margin: 2.4rem !important
    }
    .u-mt24\@md {
        margin-top: 2.4rem !important
    }
    .u-mr24\@md {
        margin-right: 2.4rem !important
    }
    .u-mb24\@md {
        margin-bottom: 2.4rem !important
    }
    .u-ml24\@md {
        margin-left: 2.4rem !important
    }
    .u-mv24\@md {
        margin-top: 2.4rem !important;
        margin-bottom: 2.4rem !important
    }
    .u-mh24\@md {
        margin-right: 2.4rem !important;
        margin-left: 2.4rem !important
    }
}

@media screen and (min-width:80em) {
    .u-m24\@lg {
        margin: 2.4rem !important
    }
    .u-mt24\@lg {
        margin-top: 2.4rem !important
    }
    .u-mr24\@lg {
        margin-right: 2.4rem !important
    }
    .u-mb24\@lg {
        margin-bottom: 2.4rem !important
    }
    .u-ml24\@lg {
        margin-left: 2.4rem !important
    }
    .u-mv24\@lg {
        margin-top: 2.4rem !important;
        margin-bottom: 2.4rem !important
    }
    .u-mh24\@lg {
        margin-right: 2.4rem !important;
        margin-left: 2.4rem !important
    }
}

@media screen and (min-width:90em) {
    .u-m24\@xl {
        margin: 2.4rem !important
    }
    .u-mt24\@xl {
        margin-top: 2.4rem !important
    }
    .u-mr24\@xl {
        margin-right: 2.4rem !important
    }
    .u-mb24\@xl {
        margin-bottom: 2.4rem !important
    }
    .u-ml24\@xl {
        margin-left: 2.4rem !important
    }
    .u-mv24\@xl {
        margin-top: 2.4rem !important;
        margin-bottom: 2.4rem !important
    }
    .u-mh24\@xl {
        margin-right: 2.4rem !important;
        margin-left: 2.4rem !important
    }
}

@media screen and (min-width:100em) {
    .u-m24\@xxl {
        margin: 2.4rem !important
    }
    .u-mt24\@xxl {
        margin-top: 2.4rem !important
    }
    .u-mr24\@xxl {
        margin-right: 2.4rem !important
    }
    .u-mb24\@xxl {
        margin-bottom: 2.4rem !important
    }
    .u-ml24\@xxl {
        margin-left: 2.4rem !important
    }
    .u-mv24\@xxl {
        margin-top: 2.4rem !important;
        margin-bottom: 2.4rem !important
    }
    .u-mh24\@xxl {
        margin-right: 2.4rem !important;
        margin-left: 2.4rem !important
    }
}

@media screen and (min-width:30em) {
    .u-m32\@xs {
        margin: 3.3rem !important
    }
    .u-mt32\@xs {
        margin-top: 3.3rem !important
    }
    .u-mr32\@xs {
        margin-right: 3.3rem !important
    }
    .u-mb32\@xs {
        margin-bottom: 3.3rem !important
    }
    .u-ml32\@xs {
        margin-left: 3.3rem !important
    }
    .u-mv32\@xs {
        margin-top: 3.3rem !important;
        margin-bottom: 3.3rem !important
    }
    .u-mh32\@xs {
        margin-right: 3.3rem !important;
        margin-left: 3.3rem !important
    }
}

@media screen and (min-width:48em) {
    .u-m32\@sm {
        margin: 3.3rem !important
    }
    .u-mt32\@sm {
        margin-top: 3.3rem !important
    }
    .u-mr32\@sm {
        margin-right: 3.3rem !important
    }
    .u-mb32\@sm {
        margin-bottom: 3.3rem !important
    }
    .u-ml32\@sm {
        margin-left: 3.3rem !important
    }
    .u-mv32\@sm {
        margin-top: 3.3rem !important;
        margin-bottom: 3.3rem !important
    }
    .u-mh32\@sm {
        margin-right: 3.3rem !important;
        margin-left: 3.3rem !important
    }
}

@media screen and (min-width:62em) {
    .u-m32\@md {
        margin: 3.3rem !important
    }
    .u-mt32\@md {
        margin-top: 3.3rem !important
    }
    .u-mr32\@md {
        margin-right: 3.3rem !important
    }
    .u-mb32\@md {
        margin-bottom: 3.3rem !important
    }
    .u-ml32\@md {
        margin-left: 3.3rem !important
    }
    .u-mv32\@md {
        margin-top: 3.3rem !important;
        margin-bottom: 3.3rem !important
    }
    .u-mh32\@md {
        margin-right: 3.3rem !important;
        margin-left: 3.3rem !important
    }
}

@media screen and (min-width:80em) {
    .u-m32\@lg {
        margin: 3.3rem !important
    }
    .u-mt32\@lg {
        margin-top: 3.3rem !important
    }
    .u-mr32\@lg {
        margin-right: 3.3rem !important
    }
    .u-mb32\@lg {
        margin-bottom: 3.3rem !important
    }
    .u-ml32\@lg {
        margin-left: 3.3rem !important
    }
    .u-mv32\@lg {
        margin-top: 3.3rem !important;
        margin-bottom: 3.3rem !important
    }
    .u-mh32\@lg {
        margin-right: 3.3rem !important;
        margin-left: 3.3rem !important
    }
}

@media screen and (min-width:90em) {
    .u-m32\@xl {
        margin: 3.3rem !important
    }
    .u-mt32\@xl {
        margin-top: 3.3rem !important
    }
    .u-mr32\@xl {
        margin-right: 3.3rem !important
    }
    .u-mb32\@xl {
        margin-bottom: 3.3rem !important
    }
    .u-ml32\@xl {
        margin-left: 3.3rem !important
    }
    .u-mv32\@xl {
        margin-top: 3.3rem !important;
        margin-bottom: 3.3rem !important
    }
    .u-mh32\@xl {
        margin-right: 3.3rem !important;
        margin-left: 3.3rem !important
    }
}

@media screen and (min-width:100em) {
    .u-m32\@xxl {
        margin: 3.3rem !important
    }
    .u-mt32\@xxl {
        margin-top: 3.3rem !important
    }
    .u-mr32\@xxl {
        margin-right: 3.3rem !important
    }
    .u-mb32\@xxl {
        margin-bottom: 3.3rem !important
    }
    .u-ml32\@xxl {
        margin-left: 3.3rem !important
    }
    .u-mv32\@xxl {
        margin-top: 3.3rem !important;
        margin-bottom: 3.3rem !important
    }
    .u-mh32\@xxl {
        margin-right: 3.3rem !important;
        margin-left: 3.3rem !important
    }
}

@media screen and (min-width:30em) {
    .u-m40\@xs {
        margin: 4rem !important
    }
    .u-mt40\@xs {
        margin-top: 4rem !important
    }
    .u-mr40\@xs {
        margin-right: 4rem !important
    }
    .u-mb40\@xs {
        margin-bottom: 4rem !important
    }
    .u-ml40\@xs {
        margin-left: 4rem !important
    }
    .u-mv40\@xs {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important
    }
    .u-mh40\@xs {
        margin-right: 4rem !important;
        margin-left: 4rem !important
    }
}

@media screen and (min-width:48em) {
    .u-m40\@sm {
        margin: 4rem !important
    }
    .u-mt40\@sm {
        margin-top: 4rem !important
    }
    .u-mr40\@sm {
        margin-right: 4rem !important
    }
    .u-mb40\@sm {
        margin-bottom: 4rem !important
    }
    .u-ml40\@sm {
        margin-left: 4rem !important
    }
    .u-mv40\@sm {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important
    }
    .u-mh40\@sm {
        margin-right: 4rem !important;
        margin-left: 4rem !important
    }
}

@media screen and (min-width:62em) {
    .u-m40\@md {
        margin: 4rem !important
    }
    .u-mt40\@md {
        margin-top: 4rem !important
    }
    .u-mr40\@md {
        margin-right: 4rem !important
    }
    .u-mb40\@md {
        margin-bottom: 4rem !important
    }
    .u-ml40\@md {
        margin-left: 4rem !important
    }
    .u-mv40\@md {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important
    }
    .u-mh40\@md {
        margin-right: 4rem !important;
        margin-left: 4rem !important
    }
}

@media screen and (min-width:80em) {
    .u-m40\@lg {
        margin: 4rem !important
    }
    .u-mt40\@lg {
        margin-top: 4rem !important
    }
    .u-mr40\@lg {
        margin-right: 4rem !important
    }
    .u-mb40\@lg {
        margin-bottom: 4rem !important
    }
    .u-ml40\@lg {
        margin-left: 4rem !important
    }
    .u-mv40\@lg {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important
    }
    .u-mh40\@lg {
        margin-right: 4rem !important;
        margin-left: 4rem !important
    }
}

@media screen and (min-width:90em) {
    .u-m40\@xl {
        margin: 4rem !important
    }
    .u-mt40\@xl {
        margin-top: 4rem !important
    }
    .u-mr40\@xl {
        margin-right: 4rem !important
    }
    .u-mb40\@xl {
        margin-bottom: 4rem !important
    }
    .u-ml40\@xl {
        margin-left: 4rem !important
    }
    .u-mv40\@xl {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important
    }
    .u-mh40\@xl {
        margin-right: 4rem !important;
        margin-left: 4rem !important
    }
}

@media screen and (min-width:100em) {
    .u-m40\@xxl {
        margin: 4rem !important
    }
    .u-mt40\@xxl {
        margin-top: 4rem !important
    }
    .u-mr40\@xxl {
        margin-right: 4rem !important
    }
    .u-mb40\@xxl {
        margin-bottom: 4rem !important
    }
    .u-ml40\@xxl {
        margin-left: 4rem !important
    }
    .u-mv40\@xxl {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important
    }
    .u-mh40\@xxl {
        margin-right: 4rem !important;
        margin-left: 4rem !important
    }
}

@media screen and (min-width:30em) {
    .u-m70\@xs {
        margin: 7rem !important
    }
    .u-mt70\@xs {
        margin-top: 7rem !important
    }
    .u-mr70\@xs {
        margin-right: 7rem !important
    }
    .u-mb70\@xs {
        margin-bottom: 7rem !important
    }
    .u-ml70\@xs {
        margin-left: 7rem !important
    }
    .u-mv70\@xs {
        margin-top: 7rem !important;
        margin-bottom: 7rem !important
    }
    .u-mh70\@xs {
        margin-right: 7rem !important;
        margin-left: 7rem !important
    }
}

@media screen and (min-width:48em) {
    .u-m70\@sm {
        margin: 7rem !important
    }
    .u-mt70\@sm {
        margin-top: 7rem !important
    }
    .u-mr70\@sm {
        margin-right: 7rem !important
    }
    .u-mb70\@sm {
        margin-bottom: 7rem !important
    }
    .u-ml70\@sm {
        margin-left: 7rem !important
    }
    .u-mv70\@sm {
        margin-top: 7rem !important;
        margin-bottom: 7rem !important
    }
    .u-mh70\@sm {
        margin-right: 7rem !important;
        margin-left: 7rem !important
    }
}

@media screen and (min-width:62em) {
    .u-m70\@md {
        margin: 7rem !important
    }
    .u-mt70\@md {
        margin-top: 7rem !important
    }
    .u-mr70\@md {
        margin-right: 7rem !important
    }
    .u-mb70\@md {
        margin-bottom: 7rem !important
    }
    .u-ml70\@md {
        margin-left: 7rem !important
    }
    .u-mv70\@md {
        margin-top: 7rem !important;
        margin-bottom: 7rem !important
    }
    .u-mh70\@md {
        margin-right: 7rem !important;
        margin-left: 7rem !important
    }
}

@media screen and (min-width:80em) {
    .u-m70\@lg {
        margin: 7rem !important
    }
    .u-mt70\@lg {
        margin-top: 7rem !important
    }
    .u-mr70\@lg {
        margin-right: 7rem !important
    }
    .u-mb70\@lg {
        margin-bottom: 7rem !important
    }
    .u-ml70\@lg {
        margin-left: 7rem !important
    }
    .u-mv70\@lg {
        margin-top: 7rem !important;
        margin-bottom: 7rem !important
    }
    .u-mh70\@lg {
        margin-right: 7rem !important;
        margin-left: 7rem !important
    }
}

@media screen and (min-width:90em) {
    .u-m70\@xl {
        margin: 7rem !important
    }
    .u-mt70\@xl {
        margin-top: 7rem !important
    }
    .u-mr70\@xl {
        margin-right: 7rem !important
    }
    .u-mb70\@xl {
        margin-bottom: 7rem !important
    }
    .u-ml70\@xl {
        margin-left: 7rem !important
    }
    .u-mv70\@xl {
        margin-top: 7rem !important;
        margin-bottom: 7rem !important
    }
    .u-mh70\@xl {
        margin-right: 7rem !important;
        margin-left: 7rem !important
    }
}

@media screen and (min-width:100em) {
    .u-m70\@xxl {
        margin: 7rem !important
    }
    .u-mt70\@xxl {
        margin-top: 7rem !important
    }
    .u-mr70\@xxl {
        margin-right: 7rem !important
    }
    .u-mb70\@xxl {
        margin-bottom: 7rem !important
    }
    .u-ml70\@xxl {
        margin-left: 7rem !important
    }
    .u-mv70\@xxl {
        margin-top: 7rem !important;
        margin-bottom: 7rem !important
    }
    .u-mh70\@xxl {
        margin-right: 7rem !important;
        margin-left: 7rem !important
    }
}

@media screen and (min-width:30em) {
    .u-mstd {
        margin: 4rem !important
    }
    .u-mtstd {
        margin-top: 4rem !important
    }
    .u-mrstd {
        margin-right: 4rem !important
    }
    .u-mbstd {
        margin-bottom: 4rem !important
    }
    .u-mlstd {
        margin-left: 4rem !important
    }
    .u-mvstd {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important
    }
    .u-mhstd {
        margin-right: 4rem !important;
        margin-left: 4rem !important
    }
}

@media screen and (min-width:62em) {
    .u-mstd {
        margin: 6rem !important
    }
    .u-mtstd {
        margin-top: 6rem !important
    }
    .u-mrstd {
        margin-right: 6rem !important
    }
    .u-mbstd {
        margin-bottom: 6rem !important
    }
    .u-mlstd {
        margin-left: 6rem !important
    }
    .u-mvstd {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important
    }
    .u-mhstd {
        margin-right: 6rem !important;
        margin-left: 6rem !important
    }
}

@media screen and (min-width:80em) {
    .u-mstd {
        margin: 8rem !important
    }
    .u-mtstd {
        margin-top: 8rem !important
    }
    .u-mrstd {
        margin-right: 8rem !important
    }
    .u-mbstd {
        margin-bottom: 8rem !important
    }
    .u-mlstd {
        margin-left: 8rem !important
    }
    .u-mvstd {
        margin-top: 8rem !important;
        margin-bottom: 8rem !important
    }
    .u-mhstd {
        margin-right: 8rem !important;
        margin-left: 8rem !important
    }
}

@media screen and (min-width:30em) {
    .u-mstd\@xs {
        margin: 4rem !important
    }
    .u-mtstd\@xs {
        margin-top: 4rem !important
    }
    .u-mrstd\@xs {
        margin-right: 4rem !important
    }
    .u-mbstd\@xs {
        margin-bottom: 4rem !important
    }
    .u-mlstd\@xs {
        margin-left: 4rem !important
    }
    .u-mvstd\@xs {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important
    }
    .u-mhstd\@xs {
        margin-right: 4rem !important;
        margin-left: 4rem !important
    }
}

@media screen and (min-width:62em) {
    .u-mstd\@xs {
        margin: 6rem !important
    }
    .u-mtstd\@xs {
        margin-top: 6rem !important
    }
    .u-mrstd\@xs {
        margin-right: 6rem !important
    }
    .u-mbstd\@xs {
        margin-bottom: 6rem !important
    }
    .u-mlstd\@xs {
        margin-left: 6rem !important
    }
    .u-mvstd\@xs {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important
    }
    .u-mhstd\@xs {
        margin-right: 6rem !important;
        margin-left: 6rem !important
    }
}

@media screen and (min-width:80em) {
    .u-mstd\@xs {
        margin: 8rem !important
    }
    .u-mtstd\@xs {
        margin-top: 8rem !important
    }
    .u-mrstd\@xs {
        margin-right: 8rem !important
    }
    .u-mbstd\@xs {
        margin-bottom: 8rem !important
    }
    .u-mlstd\@xs {
        margin-left: 8rem !important
    }
    .u-mvstd\@xs {
        margin-top: 8rem !important;
        margin-bottom: 8rem !important
    }
    .u-mhstd\@xs {
        margin-right: 8rem !important;
        margin-left: 8rem !important
    }
}

@media screen and (min-width:62em) {
    .u-mstd\@md {
        margin: 6rem !important
    }
    .u-mtstd\@md {
        margin-top: 6rem !important
    }
    .u-mrstd\@md {
        margin-right: 6rem !important
    }
    .u-mbstd\@md {
        margin-bottom: 6rem !important
    }
    .u-mlstd\@md {
        margin-left: 6rem !important
    }
    .u-mvstd\@md {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important
    }
    .u-mhstd\@md {
        margin-right: 6rem !important;
        margin-left: 6rem !important
    }
}

@media screen and (min-width:80em) {
    .u-mstd\@md {
        margin: 8rem !important
    }
    .u-mtstd\@md {
        margin-top: 8rem !important
    }
    .u-mrstd\@md {
        margin-right: 8rem !important
    }
    .u-mbstd\@md {
        margin-bottom: 8rem !important
    }
    .u-mlstd\@md {
        margin-left: 8rem !important
    }
    .u-mvstd\@md {
        margin-top: 8rem !important;
        margin-bottom: 8rem !important
    }
    .u-mhstd\@md {
        margin-right: 8rem !important;
        margin-left: 8rem !important
    }
}

@media screen and (min-width:80em) {
    .u-mstd\@lg {
        margin: 8rem !important
    }
    .u-mtstd\@lg {
        margin-top: 8rem !important
    }
    .u-mrstd\@lg {
        margin-right: 8rem !important
    }
    .u-mbstd\@lg {
        margin-bottom: 8rem !important
    }
    .u-mlstd\@lg {
        margin-left: 8rem !important
    }
    .u-mvstd\@lg {
        margin-top: 8rem !important;
        margin-bottom: 8rem !important
    }
    .u-mhstd\@lg {
        margin-right: 8rem !important;
        margin-left: 8rem !important
    }
}

@media screen and (min-width:48em) {
    .u-mcontainer {
        margin: 2.5rem !important
    }
    .u-mtcontainer {
        margin-top: 2.5rem !important
    }
    .u-mrcontainer {
        margin-right: 2.5rem !important
    }
    .u-mbcontainer {
        margin-bottom: 2.5rem !important
    }
    .u-mlcontainer {
        margin-left: 2.5rem !important
    }
    .u-mvcontainer {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important
    }
    .u-mhcontainer {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important
    }
}

@media screen and (min-width:62em) {
    .u-mcontainer {
        margin: 5rem !important
    }
    .u-mtcontainer {
        margin-top: 5rem !important
    }
    .u-mrcontainer {
        margin-right: 5rem !important
    }
    .u-mbcontainer {
        margin-bottom: 5rem !important
    }
    .u-mlcontainer {
        margin-left: 5rem !important
    }
    .u-mvcontainer {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important
    }
    .u-mhcontainer {
        margin-right: 5rem !important;
        margin-left: 5rem !important
    }
}

@media screen and (min-width:90em) {
    .u-mcontainer {
        margin: 10rem !important
    }
    .u-mtcontainer {
        margin-top: 10rem !important
    }
    .u-mrcontainer {
        margin-right: 10rem !important
    }
    .u-mbcontainer {
        margin-bottom: 10rem !important
    }
    .u-mlcontainer {
        margin-left: 10rem !important
    }
    .u-mvcontainer {
        margin-top: 10rem !important;
        margin-bottom: 10rem !important
    }
    .u-mhcontainer {
        margin-right: 10rem !important;
        margin-left: 10rem !important
    }
}

@media screen and (min-width:100em) {
    .u-mcontainer {
        margin: 15rem !important
    }
    .u-mtcontainer {
        margin-top: 15rem !important
    }
    .u-mrcontainer {
        margin-right: 15rem !important
    }
    .u-mbcontainer {
        margin-bottom: 15rem !important
    }
    .u-mlcontainer {
        margin-left: 15rem !important
    }
    .u-mvcontainer {
        margin-top: 15rem !important;
        margin-bottom: 15rem !important
    }
    .u-mhcontainer {
        margin-right: 15rem !important;
        margin-left: 15rem !important
    }
}

@media screen and (min-width:48em) {
    .u-mcontainer\@sm {
        margin: 2.5rem !important
    }
    .u-mtcontainer\@sm {
        margin-top: 2.5rem !important
    }
    .u-mrcontainer\@sm {
        margin-right: 2.5rem !important
    }
    .u-mbcontainer\@sm {
        margin-bottom: 2.5rem !important
    }
    .u-mlcontainer\@sm {
        margin-left: 2.5rem !important
    }
    .u-mvcontainer\@sm {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important
    }
    .u-mhcontainer\@sm {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important
    }
}

@media screen and (min-width:62em) {
    .u-mcontainer\@sm {
        margin: 5rem !important
    }
    .u-mtcontainer\@sm {
        margin-top: 5rem !important
    }
    .u-mrcontainer\@sm {
        margin-right: 5rem !important
    }
    .u-mbcontainer\@sm {
        margin-bottom: 5rem !important
    }
    .u-mlcontainer\@sm {
        margin-left: 5rem !important
    }
    .u-mvcontainer\@sm {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important
    }
    .u-mhcontainer\@sm {
        margin-right: 5rem !important;
        margin-left: 5rem !important
    }
}

@media screen and (min-width:90em) {
    .u-mcontainer\@sm {
        margin: 10rem !important
    }
    .u-mtcontainer\@sm {
        margin-top: 10rem !important
    }
    .u-mrcontainer\@sm {
        margin-right: 10rem !important
    }
    .u-mbcontainer\@sm {
        margin-bottom: 10rem !important
    }
    .u-mlcontainer\@sm {
        margin-left: 10rem !important
    }
    .u-mvcontainer\@sm {
        margin-top: 10rem !important;
        margin-bottom: 10rem !important
    }
    .u-mhcontainer\@sm {
        margin-right: 10rem !important;
        margin-left: 10rem !important
    }
}

@media screen and (min-width:100em) {
    .u-mcontainer\@sm {
        margin: 15rem !important
    }
    .u-mtcontainer\@sm {
        margin-top: 15rem !important
    }
    .u-mrcontainer\@sm {
        margin-right: 15rem !important
    }
    .u-mbcontainer\@sm {
        margin-bottom: 15rem !important
    }
    .u-mlcontainer\@sm {
        margin-left: 15rem !important
    }
    .u-mvcontainer\@sm {
        margin-top: 15rem !important;
        margin-bottom: 15rem !important
    }
    .u-mhcontainer\@sm {
        margin-right: 15rem !important;
        margin-left: 15rem !important
    }
}

@media screen and (min-width:62em) {
    .u-mcontainer\@md {
        margin: 5rem !important
    }
    .u-mtcontainer\@md {
        margin-top: 5rem !important
    }
    .u-mrcontainer\@md {
        margin-right: 5rem !important
    }
    .u-mbcontainer\@md {
        margin-bottom: 5rem !important
    }
    .u-mlcontainer\@md {
        margin-left: 5rem !important
    }
    .u-mvcontainer\@md {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important
    }
    .u-mhcontainer\@md {
        margin-right: 5rem !important;
        margin-left: 5rem !important
    }
}

@media screen and (min-width:90em) {
    .u-mcontainer\@md {
        margin: 10rem !important
    }
    .u-mtcontainer\@md {
        margin-top: 10rem !important
    }
    .u-mrcontainer\@md {
        margin-right: 10rem !important
    }
    .u-mbcontainer\@md {
        margin-bottom: 10rem !important
    }
    .u-mlcontainer\@md {
        margin-left: 10rem !important
    }
    .u-mvcontainer\@md {
        margin-top: 10rem !important;
        margin-bottom: 10rem !important
    }
    .u-mhcontainer\@md {
        margin-right: 10rem !important;
        margin-left: 10rem !important
    }
}

@media screen and (min-width:100em) {
    .u-mcontainer\@md {
        margin: 15rem !important
    }
    .u-mtcontainer\@md {
        margin-top: 15rem !important
    }
    .u-mrcontainer\@md {
        margin-right: 15rem !important
    }
    .u-mbcontainer\@md {
        margin-bottom: 15rem !important
    }
    .u-mlcontainer\@md {
        margin-left: 15rem !important
    }
    .u-mvcontainer\@md {
        margin-top: 15rem !important;
        margin-bottom: 15rem !important
    }
    .u-mhcontainer\@md {
        margin-right: 15rem !important;
        margin-left: 15rem !important
    }
}

@media screen and (min-width:90em) {
    .u-mcontainer\@xl {
        margin: 10rem !important
    }
    .u-mtcontainer\@xl {
        margin-top: 10rem !important
    }
    .u-mrcontainer\@xl {
        margin-right: 10rem !important
    }
    .u-mbcontainer\@xl {
        margin-bottom: 10rem !important
    }
    .u-mlcontainer\@xl {
        margin-left: 10rem !important
    }
    .u-mvcontainer\@xl {
        margin-top: 10rem !important;
        margin-bottom: 10rem !important
    }
    .u-mhcontainer\@xl {
        margin-right: 10rem !important;
        margin-left: 10rem !important
    }
}

@media screen and (min-width:100em) {
    .u-mcontainer\@xl {
        margin: 15rem !important
    }
    .u-mtcontainer\@xl {
        margin-top: 15rem !important
    }
    .u-mrcontainer\@xl {
        margin-right: 15rem !important
    }
    .u-mbcontainer\@xl {
        margin-bottom: 15rem !important
    }
    .u-mlcontainer\@xl {
        margin-left: 15rem !important
    }
    .u-mvcontainer\@xl {
        margin-top: 15rem !important;
        margin-bottom: 15rem !important
    }
    .u-mhcontainer\@xl {
        margin-right: 15rem !important;
        margin-left: 15rem !important
    }
}

@media screen and (min-width:100em) {
    .u-mcontainer\@xxl {
        margin: 15rem !important
    }
    .u-mtcontainer\@xxl {
        margin-top: 15rem !important
    }
    .u-mrcontainer\@xxl {
        margin-right: 15rem !important
    }
    .u-mbcontainer\@xxl {
        margin-bottom: 15rem !important
    }
    .u-mlcontainer\@xxl {
        margin-left: 15rem !important
    }
    .u-mvcontainer\@xxl {
        margin-top: 15rem !important;
        margin-bottom: 15rem !important
    }
    .u-mhcontainer\@xxl {
        margin-right: 15rem !important;
        margin-left: 15rem !important
    }
}

@media screen and (min-width:62em) {
    .u-msection {
        margin: 11.2rem !important
    }
    .u-mtsection {
        margin-top: 11.2rem !important
    }
    .u-mrsection {
        margin-right: 11.2rem !important
    }
    .u-mbsection {
        margin-bottom: 11.2rem !important
    }
    .u-mlsection {
        margin-left: 11.2rem !important
    }
    .u-mvsection {
        margin-top: 11.2rem !important;
        margin-bottom: 11.2rem !important
    }
    .u-mhsection {
        margin-right: 11.2rem !important;
        margin-left: 11.2rem !important
    }
}

@media screen and (min-width:62em) {
    .u-msection\@md {
        margin: 11.2rem !important
    }
    .u-mtsection\@md {
        margin-top: 11.2rem !important
    }
    .u-mrsection\@md {
        margin-right: 11.2rem !important
    }
    .u-mbsection\@md {
        margin-bottom: 11.2rem !important
    }
    .u-mlsection\@md {
        margin-left: 11.2rem !important
    }
    .u-mvsection\@md {
        margin-top: 11.2rem !important;
        margin-bottom: 11.2rem !important
    }
    .u-mhsection\@md {
        margin-right: 11.2rem !important;
        margin-left: 11.2rem !important
    }
}

@media screen and (min-width:62em) {
    .u-mhero {
        margin: 10rem !important
    }
    .u-mthero {
        margin-top: 10rem !important
    }
    .u-mrhero {
        margin-right: 10rem !important
    }
    .u-mbhero {
        margin-bottom: 10rem !important
    }
    .u-mlhero {
        margin-left: 10rem !important
    }
    .u-mvhero {
        margin-top: 10rem !important;
        margin-bottom: 10rem !important
    }
    .u-mhhero {
        margin-right: 10rem !important;
        margin-left: 10rem !important
    }
}

@media screen and (min-width:62em) {
    .u-mhero\@md {
        margin: 10rem !important
    }
    .u-mthero\@md {
        margin-top: 10rem !important
    }
    .u-mrhero\@md {
        margin-right: 10rem !important
    }
    .u-mbhero\@md {
        margin-bottom: 10rem !important
    }
    .u-mlhero\@md {
        margin-left: 10rem !important
    }
    .u-mvhero\@md {
        margin-top: 10rem !important;
        margin-bottom: 10rem !important
    }
    .u-mhhero\@md {
        margin-right: 10rem !important;
        margin-left: 10rem !important
    }
}

.u-noscroll {
    height: 100%;
    overflow: hidden
}

@media screen and (min-width:62em) {
    .u-noscroll {
        overflow: visible
    }
}

.u-overlay {
    background-color: #000;
    bottom: 0;
    left: 0;
    opacity: .8;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0
}

.u-p {
    padding: t !important
}

.u-pt {
    padding-top: b !important
}

.u-pr {
    padding-right: v !important
}

.u-p {
    padding: 2rem !important
}

.u-pt {
    padding-top: 2rem !important
}

.u-pr {
    padding-right: 2rem !important
}

.u-pb {
    padding-bottom: 2rem !important
}

.u-pl {
    padding-left: 2rem !important
}

.u-pv {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important
}

.u-ph {
    padding-right: 2rem !important;
    padding-left: 2rem !important
}

.u-p0 {
    padding: 0 !important
}

.u-pt0 {
    padding-top: 0 !important
}

.u-pr0 {
    padding-right: 0 !important
}

.u-pb0 {
    padding-bottom: 0 !important
}

.u-pl0 {
    padding-left: 0 !important
}

.u-pv0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.u-ph0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.u-p8 {
    padding: .8rem !important
}

.u-pt8 {
    padding-top: .8rem !important
}

.u-pr8 {
    padding-right: .8rem !important
}

.u-pb8 {
    padding-bottom: .8rem !important
}

.u-pl8 {
    padding-left: .8rem !important
}

.u-pv8 {
    padding-top: .8rem !important;
    padding-bottom: .8rem !important
}

.u-ph8 {
    padding-right: .8rem !important;
    padding-left: .8rem !important
}

.u-p16 {
    padding: 1.6rem !important
}

.u-pt16 {
    padding-top: 1.6rem !important
}

.u-pr16 {
    padding-right: 1.6rem !important
}

.u-pb16 {
    padding-bottom: 1.6rem !important
}

.u-pl16 {
    padding-left: 1.6rem !important
}

.u-pv16 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important
}

.u-ph16 {
    padding-right: 1.6rem !important;
    padding-left: 1.6rem !important
}

.u-p20 {
    padding: 2rem !important
}

.u-pt20 {
    padding-top: 2rem !important
}

.u-pr20 {
    padding-right: 2rem !important
}

.u-pb20 {
    padding-bottom: 2rem !important
}

.u-pl20 {
    padding-left: 2rem !important
}

.u-pv20 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important
}

.u-ph20 {
    padding-right: 2rem !important;
    padding-left: 2rem !important
}

.u-p32 {
    padding: 3.3rem !important
}

.u-pt32 {
    padding-top: 3.3rem !important
}

.u-pr32 {
    padding-right: 3.3rem !important
}

.u-pb32 {
    padding-bottom: 3.3rem !important
}

.u-pl32 {
    padding-left: 3.3rem !important
}

.u-pv32 {
    padding-top: 3.3rem !important;
    padding-bottom: 3.3rem !important
}

.u-ph32 {
    padding-right: 3.3rem !important;
    padding-left: 3.3rem !important
}

.u-p40 {
    padding: 4rem !important
}

.u-pt40 {
    padding-top: 4rem !important
}

.u-pr40 {
    padding-right: 4rem !important
}

.u-pb40 {
    padding-bottom: 4rem !important
}

.u-pl40 {
    padding-left: 4rem !important
}

.u-pv40 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important
}

.u-ph40 {
    padding-right: 4rem !important;
    padding-left: 4rem !important
}

.u-p70 {
    padding: 7rem !important
}

.u-pt70 {
    padding-top: 7rem !important
}

.u-pr70 {
    padding-right: 7rem !important
}

.u-pb70 {
    padding-bottom: 7rem !important
}

.u-pl70 {
    padding-left: 7rem !important
}

.u-pv70 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important
}

.u-ph70 {
    padding-right: 7rem !important;
    padding-left: 7rem !important
}

.u-pstd {
    padding: 2rem !important
}

.u-ptstd {
    padding-top: 2rem !important
}

.u-prstd {
    padding-right: 2rem !important
}

.u-pbstd {
    padding-bottom: 2rem !important
}

.u-plstd {
    padding-left: 2rem !important
}

.u-pvstd {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important
}

.u-phstd {
    padding-right: 2rem !important;
    padding-left: 2rem !important
}

.u-psection {
    padding: 7.2rem !important
}

.u-ptsection {
    padding-top: 7.2rem !important
}

.u-prsection {
    padding-right: 7.2rem !important
}

.u-pbsection {
    padding-bottom: 7.2rem !important
}

.u-plsection {
    padding-left: 7.2rem !important
}

.u-pvsection {
    padding-top: 7.2rem !important;
    padding-bottom: 7.2rem !important
}

.u-phsection {
    padding-right: 7.2rem !important;
    padding-left: 7.2rem !important
}

.u-phero {
    padding: 4.5rem !important
}

.u-pthero {
    padding-top: 4.5rem !important
}

.u-prhero {
    padding-right: 4.5rem !important
}

.u-pbhero {
    padding-bottom: 4.5rem !important
}

.u-plhero {
    padding-left: 4.5rem !important
}

.u-pvhero {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important
}

.u-phhero {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important
}

@media screen and (min-width:30em) {
    .u-p\@xs {
        padding: 2rem !important
    }
    .u-pt\@xs {
        padding-top: 2rem !important
    }
    .u-pr\@xs {
        padding-right: 2rem !important
    }
    .u-pb\@xs {
        padding-bottom: 2rem !important
    }
    .u-pl\@xs {
        padding-left: 2rem !important
    }
    .u-pv\@xs {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .u-ph\@xs {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
}

@media screen and (min-width:48em) {
    .u-p\@sm {
        padding: 2rem !important
    }
    .u-pt\@sm {
        padding-top: 2rem !important
    }
    .u-pr\@sm {
        padding-right: 2rem !important
    }
    .u-pb\@sm {
        padding-bottom: 2rem !important
    }
    .u-pl\@sm {
        padding-left: 2rem !important
    }
    .u-pv\@sm {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .u-ph\@sm {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
}

@media screen and (min-width:62em) {
    .u-p\@md {
        padding: 2rem !important
    }
    .u-pt\@md {
        padding-top: 2rem !important
    }
    .u-pr\@md {
        padding-right: 2rem !important
    }
    .u-pb\@md {
        padding-bottom: 2rem !important
    }
    .u-pl\@md {
        padding-left: 2rem !important
    }
    .u-pv\@md {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .u-ph\@md {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
}

@media screen and (min-width:80em) {
    .u-p\@lg {
        padding: 2rem !important
    }
    .u-pt\@lg {
        padding-top: 2rem !important
    }
    .u-pr\@lg {
        padding-right: 2rem !important
    }
    .u-pb\@lg {
        padding-bottom: 2rem !important
    }
    .u-pl\@lg {
        padding-left: 2rem !important
    }
    .u-pv\@lg {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .u-ph\@lg {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
}

@media screen and (min-width:90em) {
    .u-p\@xl {
        padding: 2rem !important
    }
    .u-pt\@xl {
        padding-top: 2rem !important
    }
    .u-pr\@xl {
        padding-right: 2rem !important
    }
    .u-pb\@xl {
        padding-bottom: 2rem !important
    }
    .u-pl\@xl {
        padding-left: 2rem !important
    }
    .u-pv\@xl {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .u-ph\@xl {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
}

@media screen and (min-width:100em) {
    .u-p\@xxl {
        padding: 2rem !important
    }
    .u-pt\@xxl {
        padding-top: 2rem !important
    }
    .u-pr\@xxl {
        padding-right: 2rem !important
    }
    .u-pb\@xxl {
        padding-bottom: 2rem !important
    }
    .u-pl\@xxl {
        padding-left: 2rem !important
    }
    .u-pv\@xxl {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .u-ph\@xxl {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
}

@media screen and (min-width:30em) {
    .u-p0\@xs {
        padding: 0 !important
    }
    .u-pt0\@xs {
        padding-top: 0 !important
    }
    .u-pr0\@xs {
        padding-right: 0 !important
    }
    .u-pb0\@xs {
        padding-bottom: 0 !important
    }
    .u-pl0\@xs {
        padding-left: 0 !important
    }
    .u-pv0\@xs {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
    .u-ph0\@xs {
        padding-right: 0 !important;
        padding-left: 0 !important
    }
}

@media screen and (min-width:48em) {
    .u-p0\@sm {
        padding: 0 !important
    }
    .u-pt0\@sm {
        padding-top: 0 !important
    }
    .u-pr0\@sm {
        padding-right: 0 !important
    }
    .u-pb0\@sm {
        padding-bottom: 0 !important
    }
    .u-pl0\@sm {
        padding-left: 0 !important
    }
    .u-pv0\@sm {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
    .u-ph0\@sm {
        padding-right: 0 !important;
        padding-left: 0 !important
    }
}

@media screen and (min-width:62em) {
    .u-p0\@md {
        padding: 0 !important
    }
    .u-pt0\@md {
        padding-top: 0 !important
    }
    .u-pr0\@md {
        padding-right: 0 !important
    }
    .u-pb0\@md {
        padding-bottom: 0 !important
    }
    .u-pl0\@md {
        padding-left: 0 !important
    }
    .u-pv0\@md {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
    .u-ph0\@md {
        padding-right: 0 !important;
        padding-left: 0 !important
    }
}

@media screen and (min-width:80em) {
    .u-p0\@lg {
        padding: 0 !important
    }
    .u-pt0\@lg {
        padding-top: 0 !important
    }
    .u-pr0\@lg {
        padding-right: 0 !important
    }
    .u-pb0\@lg {
        padding-bottom: 0 !important
    }
    .u-pl0\@lg {
        padding-left: 0 !important
    }
    .u-pv0\@lg {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
    .u-ph0\@lg {
        padding-right: 0 !important;
        padding-left: 0 !important
    }
}

@media screen and (min-width:90em) {
    .u-p0\@xl {
        padding: 0 !important
    }
    .u-pt0\@xl {
        padding-top: 0 !important
    }
    .u-pr0\@xl {
        padding-right: 0 !important
    }
    .u-pb0\@xl {
        padding-bottom: 0 !important
    }
    .u-pl0\@xl {
        padding-left: 0 !important
    }
    .u-pv0\@xl {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
    .u-ph0\@xl {
        padding-right: 0 !important;
        padding-left: 0 !important
    }
}

@media screen and (min-width:100em) {
    .u-p0\@xxl {
        padding: 0 !important
    }
    .u-pt0\@xxl {
        padding-top: 0 !important
    }
    .u-pr0\@xxl {
        padding-right: 0 !important
    }
    .u-pb0\@xxl {
        padding-bottom: 0 !important
    }
    .u-pl0\@xxl {
        padding-left: 0 !important
    }
    .u-pv0\@xxl {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
    .u-ph0\@xxl {
        padding-right: 0 !important;
        padding-left: 0 !important
    }
}

@media screen and (min-width:30em) {
    .u-p8\@xs {
        padding: .8rem !important
    }
    .u-pt8\@xs {
        padding-top: .8rem !important
    }
    .u-pr8\@xs {
        padding-right: .8rem !important
    }
    .u-pb8\@xs {
        padding-bottom: .8rem !important
    }
    .u-pl8\@xs {
        padding-left: .8rem !important
    }
    .u-pv8\@xs {
        padding-top: .8rem !important;
        padding-bottom: .8rem !important
    }
    .u-ph8\@xs {
        padding-right: .8rem !important;
        padding-left: .8rem !important
    }
}

@media screen and (min-width:48em) {
    .u-p8\@sm {
        padding: .8rem !important
    }
    .u-pt8\@sm {
        padding-top: .8rem !important
    }
    .u-pr8\@sm {
        padding-right: .8rem !important
    }
    .u-pb8\@sm {
        padding-bottom: .8rem !important
    }
    .u-pl8\@sm {
        padding-left: .8rem !important
    }
    .u-pv8\@sm {
        padding-top: .8rem !important;
        padding-bottom: .8rem !important
    }
    .u-ph8\@sm {
        padding-right: .8rem !important;
        padding-left: .8rem !important
    }
}

@media screen and (min-width:62em) {
    .u-p8\@md {
        padding: .8rem !important
    }
    .u-pt8\@md {
        padding-top: .8rem !important
    }
    .u-pr8\@md {
        padding-right: .8rem !important
    }
    .u-pb8\@md {
        padding-bottom: .8rem !important
    }
    .u-pl8\@md {
        padding-left: .8rem !important
    }
    .u-pv8\@md {
        padding-top: .8rem !important;
        padding-bottom: .8rem !important
    }
    .u-ph8\@md {
        padding-right: .8rem !important;
        padding-left: .8rem !important
    }
}

@media screen and (min-width:80em) {
    .u-p8\@lg {
        padding: .8rem !important
    }
    .u-pt8\@lg {
        padding-top: .8rem !important
    }
    .u-pr8\@lg {
        padding-right: .8rem !important
    }
    .u-pb8\@lg {
        padding-bottom: .8rem !important
    }
    .u-pl8\@lg {
        padding-left: .8rem !important
    }
    .u-pv8\@lg {
        padding-top: .8rem !important;
        padding-bottom: .8rem !important
    }
    .u-ph8\@lg {
        padding-right: .8rem !important;
        padding-left: .8rem !important
    }
}

@media screen and (min-width:90em) {
    .u-p8\@xl {
        padding: .8rem !important
    }
    .u-pt8\@xl {
        padding-top: .8rem !important
    }
    .u-pr8\@xl {
        padding-right: .8rem !important
    }
    .u-pb8\@xl {
        padding-bottom: .8rem !important
    }
    .u-pl8\@xl {
        padding-left: .8rem !important
    }
    .u-pv8\@xl {
        padding-top: .8rem !important;
        padding-bottom: .8rem !important
    }
    .u-ph8\@xl {
        padding-right: .8rem !important;
        padding-left: .8rem !important
    }
}

@media screen and (min-width:100em) {
    .u-p8\@xxl {
        padding: .8rem !important
    }
    .u-pt8\@xxl {
        padding-top: .8rem !important
    }
    .u-pr8\@xxl {
        padding-right: .8rem !important
    }
    .u-pb8\@xxl {
        padding-bottom: .8rem !important
    }
    .u-pl8\@xxl {
        padding-left: .8rem !important
    }
    .u-pv8\@xxl {
        padding-top: .8rem !important;
        padding-bottom: .8rem !important
    }
    .u-ph8\@xxl {
        padding-right: .8rem !important;
        padding-left: .8rem !important
    }
}

@media screen and (min-width:30em) {
    .u-p16\@xs {
        padding: 1.6rem !important
    }
    .u-pt16\@xs {
        padding-top: 1.6rem !important
    }
    .u-pr16\@xs {
        padding-right: 1.6rem !important
    }
    .u-pb16\@xs {
        padding-bottom: 1.6rem !important
    }
    .u-pl16\@xs {
        padding-left: 1.6rem !important
    }
    .u-pv16\@xs {
        padding-top: 1.6rem !important;
        padding-bottom: 1.6rem !important
    }
    .u-ph16\@xs {
        padding-right: 1.6rem !important;
        padding-left: 1.6rem !important
    }
}

@media screen and (min-width:48em) {
    .u-p16\@sm {
        padding: 1.6rem !important
    }
    .u-pt16\@sm {
        padding-top: 1.6rem !important
    }
    .u-pr16\@sm {
        padding-right: 1.6rem !important
    }
    .u-pb16\@sm {
        padding-bottom: 1.6rem !important
    }
    .u-pl16\@sm {
        padding-left: 1.6rem !important
    }
    .u-pv16\@sm {
        padding-top: 1.6rem !important;
        padding-bottom: 1.6rem !important
    }
    .u-ph16\@sm {
        padding-right: 1.6rem !important;
        padding-left: 1.6rem !important
    }
}

@media screen and (min-width:62em) {
    .u-p16\@md {
        padding: 1.6rem !important
    }
    .u-pt16\@md {
        padding-top: 1.6rem !important
    }
    .u-pr16\@md {
        padding-right: 1.6rem !important
    }
    .u-pb16\@md {
        padding-bottom: 1.6rem !important
    }
    .u-pl16\@md {
        padding-left: 1.6rem !important
    }
    .u-pv16\@md {
        padding-top: 1.6rem !important;
        padding-bottom: 1.6rem !important
    }
    .u-ph16\@md {
        padding-right: 1.6rem !important;
        padding-left: 1.6rem !important
    }
}

@media screen and (min-width:80em) {
    .u-p16\@lg {
        padding: 1.6rem !important
    }
    .u-pt16\@lg {
        padding-top: 1.6rem !important
    }
    .u-pr16\@lg {
        padding-right: 1.6rem !important
    }
    .u-pb16\@lg {
        padding-bottom: 1.6rem !important
    }
    .u-pl16\@lg {
        padding-left: 1.6rem !important
    }
    .u-pv16\@lg {
        padding-top: 1.6rem !important;
        padding-bottom: 1.6rem !important
    }
    .u-ph16\@lg {
        padding-right: 1.6rem !important;
        padding-left: 1.6rem !important
    }
}

@media screen and (min-width:90em) {
    .u-p16\@xl {
        padding: 1.6rem !important
    }
    .u-pt16\@xl {
        padding-top: 1.6rem !important
    }
    .u-pr16\@xl {
        padding-right: 1.6rem !important
    }
    .u-pb16\@xl {
        padding-bottom: 1.6rem !important
    }
    .u-pl16\@xl {
        padding-left: 1.6rem !important
    }
    .u-pv16\@xl {
        padding-top: 1.6rem !important;
        padding-bottom: 1.6rem !important
    }
    .u-ph16\@xl {
        padding-right: 1.6rem !important;
        padding-left: 1.6rem !important
    }
}

@media screen and (min-width:100em) {
    .u-p16\@xxl {
        padding: 1.6rem !important
    }
    .u-pt16\@xxl {
        padding-top: 1.6rem !important
    }
    .u-pr16\@xxl {
        padding-right: 1.6rem !important
    }
    .u-pb16\@xxl {
        padding-bottom: 1.6rem !important
    }
    .u-pl16\@xxl {
        padding-left: 1.6rem !important
    }
    .u-pv16\@xxl {
        padding-top: 1.6rem !important;
        padding-bottom: 1.6rem !important
    }
    .u-ph16\@xxl {
        padding-right: 1.6rem !important;
        padding-left: 1.6rem !important
    }
}

@media screen and (min-width:30em) {
    .u-p20\@xs {
        padding: 2rem !important
    }
    .u-pt20\@xs {
        padding-top: 2rem !important
    }
    .u-pr20\@xs {
        padding-right: 2rem !important
    }
    .u-pb20\@xs {
        padding-bottom: 2rem !important
    }
    .u-pl20\@xs {
        padding-left: 2rem !important
    }
    .u-pv20\@xs {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .u-ph20\@xs {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
}

@media screen and (min-width:48em) {
    .u-p20\@sm {
        padding: 2rem !important
    }
    .u-pt20\@sm {
        padding-top: 2rem !important
    }
    .u-pr20\@sm {
        padding-right: 2rem !important
    }
    .u-pb20\@sm {
        padding-bottom: 2rem !important
    }
    .u-pl20\@sm {
        padding-left: 2rem !important
    }
    .u-pv20\@sm {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .u-ph20\@sm {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
}

@media screen and (min-width:62em) {
    .u-p20\@md {
        padding: 2rem !important
    }
    .u-pt20\@md {
        padding-top: 2rem !important
    }
    .u-pr20\@md {
        padding-right: 2rem !important
    }
    .u-pb20\@md {
        padding-bottom: 2rem !important
    }
    .u-pl20\@md {
        padding-left: 2rem !important
    }
    .u-pv20\@md {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .u-ph20\@md {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
}

@media screen and (min-width:80em) {
    .u-p20\@lg {
        padding: 2rem !important
    }
    .u-pt20\@lg {
        padding-top: 2rem !important
    }
    .u-pr20\@lg {
        padding-right: 2rem !important
    }
    .u-pb20\@lg {
        padding-bottom: 2rem !important
    }
    .u-pl20\@lg {
        padding-left: 2rem !important
    }
    .u-pv20\@lg {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .u-ph20\@lg {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
}

@media screen and (min-width:90em) {
    .u-p20\@xl {
        padding: 2rem !important
    }
    .u-pt20\@xl {
        padding-top: 2rem !important
    }
    .u-pr20\@xl {
        padding-right: 2rem !important
    }
    .u-pb20\@xl {
        padding-bottom: 2rem !important
    }
    .u-pl20\@xl {
        padding-left: 2rem !important
    }
    .u-pv20\@xl {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .u-ph20\@xl {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
}

@media screen and (min-width:100em) {
    .u-p20\@xxl {
        padding: 2rem !important
    }
    .u-pt20\@xxl {
        padding-top: 2rem !important
    }
    .u-pr20\@xxl {
        padding-right: 2rem !important
    }
    .u-pb20\@xxl {
        padding-bottom: 2rem !important
    }
    .u-pl20\@xxl {
        padding-left: 2rem !important
    }
    .u-pv20\@xxl {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .u-ph20\@xxl {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
}

@media screen and (min-width:30em) {
    .u-p32\@xs {
        padding: 3.3rem !important
    }
    .u-pt32\@xs {
        padding-top: 3.3rem !important
    }
    .u-pr32\@xs {
        padding-right: 3.3rem !important
    }
    .u-pb32\@xs {
        padding-bottom: 3.3rem !important
    }
    .u-pl32\@xs {
        padding-left: 3.3rem !important
    }
    .u-pv32\@xs {
        padding-top: 3.3rem !important;
        padding-bottom: 3.3rem !important
    }
    .u-ph32\@xs {
        padding-right: 3.3rem !important;
        padding-left: 3.3rem !important
    }
}

@media screen and (min-width:48em) {
    .u-p32\@sm {
        padding: 3.3rem !important
    }
    .u-pt32\@sm {
        padding-top: 3.3rem !important
    }
    .u-pr32\@sm {
        padding-right: 3.3rem !important
    }
    .u-pb32\@sm {
        padding-bottom: 3.3rem !important
    }
    .u-pl32\@sm {
        padding-left: 3.3rem !important
    }
    .u-pv32\@sm {
        padding-top: 3.3rem !important;
        padding-bottom: 3.3rem !important
    }
    .u-ph32\@sm {
        padding-right: 3.3rem !important;
        padding-left: 3.3rem !important
    }
}

@media screen and (min-width:62em) {
    .u-p32\@md {
        padding: 3.3rem !important
    }
    .u-pt32\@md {
        padding-top: 3.3rem !important
    }
    .u-pr32\@md {
        padding-right: 3.3rem !important
    }
    .u-pb32\@md {
        padding-bottom: 3.3rem !important
    }
    .u-pl32\@md {
        padding-left: 3.3rem !important
    }
    .u-pv32\@md {
        padding-top: 3.3rem !important;
        padding-bottom: 3.3rem !important
    }
    .u-ph32\@md {
        padding-right: 3.3rem !important;
        padding-left: 3.3rem !important
    }
}

@media screen and (min-width:80em) {
    .u-p32\@lg {
        padding: 3.3rem !important
    }
    .u-pt32\@lg {
        padding-top: 3.3rem !important
    }
    .u-pr32\@lg {
        padding-right: 3.3rem !important
    }
    .u-pb32\@lg {
        padding-bottom: 3.3rem !important
    }
    .u-pl32\@lg {
        padding-left: 3.3rem !important
    }
    .u-pv32\@lg {
        padding-top: 3.3rem !important;
        padding-bottom: 3.3rem !important
    }
    .u-ph32\@lg {
        padding-right: 3.3rem !important;
        padding-left: 3.3rem !important
    }
}

@media screen and (min-width:90em) {
    .u-p32\@xl {
        padding: 3.3rem !important
    }
    .u-pt32\@xl {
        padding-top: 3.3rem !important
    }
    .u-pr32\@xl {
        padding-right: 3.3rem !important
    }
    .u-pb32\@xl {
        padding-bottom: 3.3rem !important
    }
    .u-pl32\@xl {
        padding-left: 3.3rem !important
    }
    .u-pv32\@xl {
        padding-top: 3.3rem !important;
        padding-bottom: 3.3rem !important
    }
    .u-ph32\@xl {
        padding-right: 3.3rem !important;
        padding-left: 3.3rem !important
    }
}

@media screen and (min-width:100em) {
    .u-p32\@xxl {
        padding: 3.3rem !important
    }
    .u-pt32\@xxl {
        padding-top: 3.3rem !important
    }
    .u-pr32\@xxl {
        padding-right: 3.3rem !important
    }
    .u-pb32\@xxl {
        padding-bottom: 3.3rem !important
    }
    .u-pl32\@xxl {
        padding-left: 3.3rem !important
    }
    .u-pv32\@xxl {
        padding-top: 3.3rem !important;
        padding-bottom: 3.3rem !important
    }
    .u-ph32\@xxl {
        padding-right: 3.3rem !important;
        padding-left: 3.3rem !important
    }
}

@media screen and (min-width:30em) {
    .u-p40\@xs {
        padding: 4rem !important
    }
    .u-pt40\@xs {
        padding-top: 4rem !important
    }
    .u-pr40\@xs {
        padding-right: 4rem !important
    }
    .u-pb40\@xs {
        padding-bottom: 4rem !important
    }
    .u-pl40\@xs {
        padding-left: 4rem !important
    }
    .u-pv40\@xs {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important
    }
    .u-ph40\@xs {
        padding-right: 4rem !important;
        padding-left: 4rem !important
    }
}

@media screen and (min-width:48em) {
    .u-p40\@sm {
        padding: 4rem !important
    }
    .u-pt40\@sm {
        padding-top: 4rem !important
    }
    .u-pr40\@sm {
        padding-right: 4rem !important
    }
    .u-pb40\@sm {
        padding-bottom: 4rem !important
    }
    .u-pl40\@sm {
        padding-left: 4rem !important
    }
    .u-pv40\@sm {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important
    }
    .u-ph40\@sm {
        padding-right: 4rem !important;
        padding-left: 4rem !important
    }
}

@media screen and (min-width:62em) {
    .u-p40\@md {
        padding: 4rem !important
    }
    .u-pt40\@md {
        padding-top: 4rem !important
    }
    .u-pr40\@md {
        padding-right: 4rem !important
    }
    .u-pb40\@md {
        padding-bottom: 4rem !important
    }
    .u-pl40\@md {
        padding-left: 4rem !important
    }
    .u-pv40\@md {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important
    }
    .u-ph40\@md {
        padding-right: 4rem !important;
        padding-left: 4rem !important
    }
}

@media screen and (min-width:80em) {
    .u-p40\@lg {
        padding: 4rem !important
    }
    .u-pt40\@lg {
        padding-top: 4rem !important
    }
    .u-pr40\@lg {
        padding-right: 4rem !important
    }
    .u-pb40\@lg {
        padding-bottom: 4rem !important
    }
    .u-pl40\@lg {
        padding-left: 4rem !important
    }
    .u-pv40\@lg {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important
    }
    .u-ph40\@lg {
        padding-right: 4rem !important;
        padding-left: 4rem !important
    }
}

@media screen and (min-width:90em) {
    .u-p40\@xl {
        padding: 4rem !important
    }
    .u-pt40\@xl {
        padding-top: 4rem !important
    }
    .u-pr40\@xl {
        padding-right: 4rem !important
    }
    .u-pb40\@xl {
        padding-bottom: 4rem !important
    }
    .u-pl40\@xl {
        padding-left: 4rem !important
    }
    .u-pv40\@xl {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important
    }
    .u-ph40\@xl {
        padding-right: 4rem !important;
        padding-left: 4rem !important
    }
}

@media screen and (min-width:100em) {
    .u-p40\@xxl {
        padding: 4rem !important
    }
    .u-pt40\@xxl {
        padding-top: 4rem !important
    }
    .u-pr40\@xxl {
        padding-right: 4rem !important
    }
    .u-pb40\@xxl {
        padding-bottom: 4rem !important
    }
    .u-pl40\@xxl {
        padding-left: 4rem !important
    }
    .u-pv40\@xxl {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important
    }
    .u-ph40\@xxl {
        padding-right: 4rem !important;
        padding-left: 4rem !important
    }
}

@media screen and (min-width:30em) {
    .u-p70\@xs {
        padding: 7rem !important
    }
    .u-pt70\@xs {
        padding-top: 7rem !important
    }
    .u-pr70\@xs {
        padding-right: 7rem !important
    }
    .u-pb70\@xs {
        padding-bottom: 7rem !important
    }
    .u-pl70\@xs {
        padding-left: 7rem !important
    }
    .u-pv70\@xs {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important
    }
    .u-ph70\@xs {
        padding-right: 7rem !important;
        padding-left: 7rem !important
    }
}

@media screen and (min-width:48em) {
    .u-p70\@sm {
        padding: 7rem !important
    }
    .u-pt70\@sm {
        padding-top: 7rem !important
    }
    .u-pr70\@sm {
        padding-right: 7rem !important
    }
    .u-pb70\@sm {
        padding-bottom: 7rem !important
    }
    .u-pl70\@sm {
        padding-left: 7rem !important
    }
    .u-pv70\@sm {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important
    }
    .u-ph70\@sm {
        padding-right: 7rem !important;
        padding-left: 7rem !important
    }
}

@media screen and (min-width:62em) {
    .u-p70\@md {
        padding: 7rem !important
    }
    .u-pt70\@md {
        padding-top: 7rem !important
    }
    .u-pr70\@md {
        padding-right: 7rem !important
    }
    .u-pb70\@md {
        padding-bottom: 7rem !important
    }
    .u-pl70\@md {
        padding-left: 7rem !important
    }
    .u-pv70\@md {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important
    }
    .u-ph70\@md {
        padding-right: 7rem !important;
        padding-left: 7rem !important
    }
}

@media screen and (min-width:80em) {
    .u-p70\@lg {
        padding: 7rem !important
    }
    .u-pt70\@lg {
        padding-top: 7rem !important
    }
    .u-pr70\@lg {
        padding-right: 7rem !important
    }
    .u-pb70\@lg {
        padding-bottom: 7rem !important
    }
    .u-pl70\@lg {
        padding-left: 7rem !important
    }
    .u-pv70\@lg {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important
    }
    .u-ph70\@lg {
        padding-right: 7rem !important;
        padding-left: 7rem !important
    }
}

@media screen and (min-width:90em) {
    .u-p70\@xl {
        padding: 7rem !important
    }
    .u-pt70\@xl {
        padding-top: 7rem !important
    }
    .u-pr70\@xl {
        padding-right: 7rem !important
    }
    .u-pb70\@xl {
        padding-bottom: 7rem !important
    }
    .u-pl70\@xl {
        padding-left: 7rem !important
    }
    .u-pv70\@xl {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important
    }
    .u-ph70\@xl {
        padding-right: 7rem !important;
        padding-left: 7rem !important
    }
}

@media screen and (min-width:100em) {
    .u-p70\@xxl {
        padding: 7rem !important
    }
    .u-pt70\@xxl {
        padding-top: 7rem !important
    }
    .u-pr70\@xxl {
        padding-right: 7rem !important
    }
    .u-pb70\@xxl {
        padding-bottom: 7rem !important
    }
    .u-pl70\@xxl {
        padding-left: 7rem !important
    }
    .u-pv70\@xxl {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important
    }
    .u-ph70\@xxl {
        padding-right: 7rem !important;
        padding-left: 7rem !important
    }
}

@media screen and (min-width:30em) {
    .u-pstd {
        padding: 4rem !important
    }
    .u-ptstd {
        padding-top: 4rem !important
    }
    .u-prstd {
        padding-right: 4rem !important
    }
    .u-pbstd {
        padding-bottom: 4rem !important
    }
    .u-plstd {
        padding-left: 4rem !important
    }
    .u-pvstd {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important
    }
    .u-phstd {
        padding-right: 4rem !important;
        padding-left: 4rem !important
    }
}

@media screen and (min-width:62em) {
    .u-pstd {
        padding: 6rem !important
    }
    .u-ptstd {
        padding-top: 6rem !important
    }
    .u-prstd {
        padding-right: 6rem !important
    }
    .u-pbstd {
        padding-bottom: 6rem !important
    }
    .u-plstd {
        padding-left: 6rem !important
    }
    .u-pvstd {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important
    }
    .u-phstd {
        padding-right: 6rem !important;
        padding-left: 6rem !important
    }
}

@media screen and (min-width:80em) {
    .u-pstd {
        padding: 8rem !important
    }
    .u-ptstd {
        padding-top: 8rem !important
    }
    .u-prstd {
        padding-right: 8rem !important
    }
    .u-pbstd {
        padding-bottom: 8rem !important
    }
    .u-plstd {
        padding-left: 8rem !important
    }
    .u-pvstd {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important
    }
    .u-phstd {
        padding-right: 8rem !important;
        padding-left: 8rem !important
    }
}

@media screen and (min-width:30em) {
    .u-pstd\@xs {
        padding: 4rem !important
    }
    .u-ptstd\@xs {
        padding-top: 4rem !important
    }
    .u-prstd\@xs {
        padding-right: 4rem !important
    }
    .u-pbstd\@xs {
        padding-bottom: 4rem !important
    }
    .u-plstd\@xs {
        padding-left: 4rem !important
    }
    .u-pvstd\@xs {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important
    }
    .u-phstd\@xs {
        padding-right: 4rem !important;
        padding-left: 4rem !important
    }
}

@media screen and (min-width:62em) {
    .u-pstd\@xs {
        padding: 6rem !important
    }
    .u-ptstd\@xs {
        padding-top: 6rem !important
    }
    .u-prstd\@xs {
        padding-right: 6rem !important
    }
    .u-pbstd\@xs {
        padding-bottom: 6rem !important
    }
    .u-plstd\@xs {
        padding-left: 6rem !important
    }
    .u-pvstd\@xs {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important
    }
    .u-phstd\@xs {
        padding-right: 6rem !important;
        padding-left: 6rem !important
    }
}

@media screen and (min-width:80em) {
    .u-pstd\@xs {
        padding: 8rem !important
    }
    .u-ptstd\@xs {
        padding-top: 8rem !important
    }
    .u-prstd\@xs {
        padding-right: 8rem !important
    }
    .u-pbstd\@xs {
        padding-bottom: 8rem !important
    }
    .u-plstd\@xs {
        padding-left: 8rem !important
    }
    .u-pvstd\@xs {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important
    }
    .u-phstd\@xs {
        padding-right: 8rem !important;
        padding-left: 8rem !important
    }
}

@media screen and (min-width:62em) {
    .u-pstd\@md {
        padding: 6rem !important
    }
    .u-ptstd\@md {
        padding-top: 6rem !important
    }
    .u-prstd\@md {
        padding-right: 6rem !important
    }
    .u-pbstd\@md {
        padding-bottom: 6rem !important
    }
    .u-plstd\@md {
        padding-left: 6rem !important
    }
    .u-pvstd\@md {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important
    }
    .u-phstd\@md {
        padding-right: 6rem !important;
        padding-left: 6rem !important
    }
}

@media screen and (min-width:80em) {
    .u-pstd\@md {
        padding: 8rem !important
    }
    .u-ptstd\@md {
        padding-top: 8rem !important
    }
    .u-prstd\@md {
        padding-right: 8rem !important
    }
    .u-pbstd\@md {
        padding-bottom: 8rem !important
    }
    .u-plstd\@md {
        padding-left: 8rem !important
    }
    .u-pvstd\@md {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important
    }
    .u-phstd\@md {
        padding-right: 8rem !important;
        padding-left: 8rem !important
    }
}

@media screen and (min-width:80em) {
    .u-pstd\@lg {
        padding: 8rem !important
    }
    .u-ptstd\@lg {
        padding-top: 8rem !important
    }
    .u-prstd\@lg {
        padding-right: 8rem !important
    }
    .u-pbstd\@lg {
        padding-bottom: 8rem !important
    }
    .u-plstd\@lg {
        padding-left: 8rem !important
    }
    .u-pvstd\@lg {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important
    }
    .u-phstd\@lg {
        padding-right: 8rem !important;
        padding-left: 8rem !important
    }
}

@media screen and (min-width:62em) {
    .u-psection {
        padding: 12rem !important
    }
    .u-ptsection {
        padding-top: 12rem !important
    }
    .u-prsection {
        padding-right: 12rem !important
    }
    .u-pbsection {
        padding-bottom: 12rem !important
    }
    .u-plsection {
        padding-left: 12rem !important
    }
    .u-pvsection {
        padding-top: 12rem !important;
        padding-bottom: 12rem !important
    }
    .u-phsection {
        padding-right: 12rem !important;
        padding-left: 12rem !important
    }
}

@media screen and (min-width:62em) {
    .u-psection\@md {
        padding: 12rem !important
    }
    .u-ptsection\@md {
        padding-top: 12rem !important
    }
    .u-prsection\@md {
        padding-right: 12rem !important
    }
    .u-pbsection\@md {
        padding-bottom: 12rem !important
    }
    .u-plsection\@md {
        padding-left: 12rem !important
    }
    .u-pvsection\@md {
        padding-top: 12rem !important;
        padding-bottom: 12rem !important
    }
    .u-phsection\@md {
        padding-right: 12rem !important;
        padding-left: 12rem !important
    }
}

@media screen and (min-width:62em) {
    .u-phero {
        padding: 6rem !important
    }
    .u-pthero {
        padding-top: 6rem !important
    }
    .u-prhero {
        padding-right: 6rem !important
    }
    .u-pbhero {
        padding-bottom: 6rem !important
    }
    .u-plhero {
        padding-left: 6rem !important
    }
    .u-pvhero {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important
    }
    .u-phhero {
        padding-right: 6rem !important;
        padding-left: 6rem !important
    }
}

@media screen and (min-width:62em) {
    .u-phero\@md {
        padding: 6rem !important
    }
    .u-pthero\@md {
        padding-top: 6rem !important
    }
    .u-prhero\@md {
        padding-right: 6rem !important
    }
    .u-pbhero\@md {
        padding-bottom: 6rem !important
    }
    .u-plhero\@md {
        padding-left: 6rem !important
    }
    .u-pvhero\@md {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important
    }
    .u-phhero\@md {
        padding-right: 6rem !important;
        padding-left: 6rem !important
    }
}

.u-absolute {
    position: absolute !important
}

.u-fixed {
    position: fixed !important
}

.u-relative {
    position: relative !important
}

.u-static {
    position: static !important
}

.u-sticky {
    position: -webkit-sticky !important;
    position: sticky !important
}

@media screen and (min-width:30em) {
    .u-absolute\@xs {
        position: absolute !important
    }
    .u-fixed\@xs {
        position: fixed !important
    }
    .u-relative\@xs {
        position: relative !important
    }
    .u-static\@xs {
        position: static !important
    }
    .u-sticky\@xs {
        position: -webkit-sticky !important;
        position: sticky !important
    }
}

@media screen and (min-width:48em) {
    .u-absolute\@sm {
        position: absolute !important
    }
    .u-fixed\@sm {
        position: fixed !important
    }
    .u-relative\@sm {
        position: relative !important
    }
    .u-static\@sm {
        position: static !important
    }
    .u-sticky\@sm {
        position: -webkit-sticky !important;
        position: sticky !important
    }
}

@media screen and (min-width:62em) {
    .u-absolute\@md {
        position: absolute !important
    }
    .u-fixed\@md {
        position: fixed !important
    }
    .u-relative\@md {
        position: relative !important
    }
    .u-static\@md {
        position: static !important
    }
    .u-sticky\@md {
        position: -webkit-sticky !important;
        position: sticky !important
    }
}

@media screen and (min-width:80em) {
    .u-absolute\@lg {
        position: absolute !important
    }
    .u-fixed\@lg {
        position: fixed !important
    }
    .u-relative\@lg {
        position: relative !important
    }
    .u-static\@lg {
        position: static !important
    }
    .u-sticky\@lg {
        position: -webkit-sticky !important;
        position: sticky !important
    }
}

@media screen and (min-width:90em) {
    .u-absolute\@xl {
        position: absolute !important
    }
    .u-fixed\@xl {
        position: fixed !important
    }
    .u-relative\@xl {
        position: relative !important
    }
    .u-static\@xl {
        position: static !important
    }
    .u-sticky\@xl {
        position: -webkit-sticky !important;
        position: sticky !important
    }
}

@media screen and (min-width:100em) {
    .u-absolute\@xxl {
        position: absolute !important
    }
    .u-fixed\@xxl {
        position: fixed !important
    }
    .u-relative\@xxl {
        position: relative !important
    }
    .u-static\@xxl {
        position: static !important
    }
    .u-sticky\@xxl {
        position: -webkit-sticky !important;
        position: sticky !important
    }
}

.u-pull-1\/12 {
    margin-right: 8.33333% !important
}

.u-pull-2\/12 {
    margin-right: 16.66667% !important
}

.u-pull-3\/12 {
    margin-right: 25% !important
}

.u-pull-4\/12 {
    margin-right: 33.33333% !important
}

.u-pull-5\/12 {
    margin-right: 41.66667% !important
}

.u-pull-6\/12 {
    margin-right: 50% !important
}

.u-pull-7\/12 {
    margin-right: 58.33333% !important
}

.u-pull-8\/12 {
    margin-right: 66.66667% !important
}

.u-pull-9\/12 {
    margin-right: 75% !important
}

.u-pull-10\/12 {
    margin-right: 83.33333% !important
}

.u-pull-11\/12 {
    margin-right: 91.66667% !important
}

.u-pull-0 {
    margin-right: 0 !important
}

@media screen and (min-width:30em) {
    .u-pull-1\/12\@xs {
        margin-right: 8.33333% !important
    }
    .u-pull-2\/12\@xs {
        margin-right: 16.66667% !important
    }
    .u-pull-3\/12\@xs {
        margin-right: 25% !important
    }
    .u-pull-4\/12\@xs {
        margin-right: 33.33333% !important
    }
    .u-pull-5\/12\@xs {
        margin-right: 41.66667% !important
    }
    .u-pull-6\/12\@xs {
        margin-right: 50% !important
    }
    .u-pull-7\/12\@xs {
        margin-right: 58.33333% !important
    }
    .u-pull-8\/12\@xs {
        margin-right: 66.66667% !important
    }
    .u-pull-9\/12\@xs {
        margin-right: 75% !important
    }
    .u-pull-10\/12\@xs {
        margin-right: 83.33333% !important
    }
    .u-pull-11\/12\@xs {
        margin-right: 91.66667% !important
    }
    .u-pull-0\@xs {
        margin-right: 0 !important
    }
}

@media screen and (min-width:48em) {
    .u-pull-1\/12\@sm {
        margin-right: 8.33333% !important
    }
    .u-pull-2\/12\@sm {
        margin-right: 16.66667% !important
    }
    .u-pull-3\/12\@sm {
        margin-right: 25% !important
    }
    .u-pull-4\/12\@sm {
        margin-right: 33.33333% !important
    }
    .u-pull-5\/12\@sm {
        margin-right: 41.66667% !important
    }
    .u-pull-6\/12\@sm {
        margin-right: 50% !important
    }
    .u-pull-7\/12\@sm {
        margin-right: 58.33333% !important
    }
    .u-pull-8\/12\@sm {
        margin-right: 66.66667% !important
    }
    .u-pull-9\/12\@sm {
        margin-right: 75% !important
    }
    .u-pull-10\/12\@sm {
        margin-right: 83.33333% !important
    }
    .u-pull-11\/12\@sm {
        margin-right: 91.66667% !important
    }
    .u-pull-0\@sm {
        margin-right: 0 !important
    }
}

@media screen and (min-width:62em) {
    .u-pull-1\/12\@md {
        margin-right: 8.33333% !important
    }
    .u-pull-2\/12\@md {
        margin-right: 16.66667% !important
    }
    .u-pull-3\/12\@md {
        margin-right: 25% !important
    }
    .u-pull-4\/12\@md {
        margin-right: 33.33333% !important
    }
    .u-pull-5\/12\@md {
        margin-right: 41.66667% !important
    }
    .u-pull-6\/12\@md {
        margin-right: 50% !important
    }
    .u-pull-7\/12\@md {
        margin-right: 58.33333% !important
    }
    .u-pull-8\/12\@md {
        margin-right: 66.66667% !important
    }
    .u-pull-9\/12\@md {
        margin-right: 75% !important
    }
    .u-pull-10\/12\@md {
        margin-right: 83.33333% !important
    }
    .u-pull-11\/12\@md {
        margin-right: 91.66667% !important
    }
    .u-pull-0\@md {
        margin-right: 0 !important
    }
}

@media screen and (min-width:80em) {
    .u-pull-1\/12\@lg {
        margin-right: 8.33333% !important
    }
    .u-pull-2\/12\@lg {
        margin-right: 16.66667% !important
    }
    .u-pull-3\/12\@lg {
        margin-right: 25% !important
    }
    .u-pull-4\/12\@lg {
        margin-right: 33.33333% !important
    }
    .u-pull-5\/12\@lg {
        margin-right: 41.66667% !important
    }
    .u-pull-6\/12\@lg {
        margin-right: 50% !important
    }
    .u-pull-7\/12\@lg {
        margin-right: 58.33333% !important
    }
    .u-pull-8\/12\@lg {
        margin-right: 66.66667% !important
    }
    .u-pull-9\/12\@lg {
        margin-right: 75% !important
    }
    .u-pull-10\/12\@lg {
        margin-right: 83.33333% !important
    }
    .u-pull-11\/12\@lg {
        margin-right: 91.66667% !important
    }
    .u-pull-0\@lg {
        margin-right: 0 !important
    }
}

@media screen and (min-width:90em) {
    .u-pull-1\/12\@xl {
        margin-right: 8.33333% !important
    }
    .u-pull-2\/12\@xl {
        margin-right: 16.66667% !important
    }
    .u-pull-3\/12\@xl {
        margin-right: 25% !important
    }
    .u-pull-4\/12\@xl {
        margin-right: 33.33333% !important
    }
    .u-pull-5\/12\@xl {
        margin-right: 41.66667% !important
    }
    .u-pull-6\/12\@xl {
        margin-right: 50% !important
    }
    .u-pull-7\/12\@xl {
        margin-right: 58.33333% !important
    }
    .u-pull-8\/12\@xl {
        margin-right: 66.66667% !important
    }
    .u-pull-9\/12\@xl {
        margin-right: 75% !important
    }
    .u-pull-10\/12\@xl {
        margin-right: 83.33333% !important
    }
    .u-pull-11\/12\@xl {
        margin-right: 91.66667% !important
    }
    .u-pull-0\@xl {
        margin-right: 0 !important
    }
}

@media screen and (min-width:100em) {
    .u-pull-1\/12\@xxl {
        margin-right: 8.33333% !important
    }
    .u-pull-2\/12\@xxl {
        margin-right: 16.66667% !important
    }
    .u-pull-3\/12\@xxl {
        margin-right: 25% !important
    }
    .u-pull-4\/12\@xxl {
        margin-right: 33.33333% !important
    }
    .u-pull-5\/12\@xxl {
        margin-right: 41.66667% !important
    }
    .u-pull-6\/12\@xxl {
        margin-right: 50% !important
    }
    .u-pull-7\/12\@xxl {
        margin-right: 58.33333% !important
    }
    .u-pull-8\/12\@xxl {
        margin-right: 66.66667% !important
    }
    .u-pull-9\/12\@xxl {
        margin-right: 75% !important
    }
    .u-pull-10\/12\@xxl {
        margin-right: 83.33333% !important
    }
    .u-pull-11\/12\@xxl {
        margin-right: 91.66667% !important
    }
    .u-pull-0\@xxl {
        margin-right: 0 !important
    }
}

.c-form .js-select .ss-search>input,
.u-sronly {
    border: 0;
    clip: rect(0 0 0 0);
    height: .1rem;
    margin: -.1rem;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: .1rem;
    z-index: -99999
}

.c-builder__image img,
.c-builder__video iframe,
.c-builder__video video,
.c-form,
.c-fproducts,
.c-fproducts__slide,
.c-gallery--builder .c-gallery__image,
.c-header.is-scrolled,
.c-lcards__card,
.c-post__image,
.c-proCard,
.c-proTemplate__filter,
.c-share__wrapper,
.c-timeline,
.c-timeline__slide,
.c-values__video,
.u-shadow-one {
    -webkit-box-shadow: 0 0 1.6rem 0 rgba(70, 80, 122, .4);
    box-shadow: 0 0 1.6rem 0 rgba(70, 80, 122, .4)
}

.u-shadow-two {
    -webkit-box-shadow: 0 0 1.2rem 0 rgba(70, 80, 122, .15);
    box-shadow: 0 0 1.2rem 0 rgba(70, 80, 122, .15)
}

.u-push-1\/12 {
    margin-left: 8.33333% !important
}

.u-push-2\/12 {
    margin-left: 16.66667% !important
}

.u-push-3\/12 {
    margin-left: 25% !important
}

.u-push-4\/12 {
    margin-left: 33.33333% !important
}

.u-push-5\/12 {
    margin-left: 41.66667% !important
}

.u-push-6\/12 {
    margin-left: 50% !important
}

.u-push-7\/12 {
    margin-left: 58.33333% !important
}

.u-push-8\/12 {
    margin-left: 66.66667% !important
}

.u-push-9\/12 {
    margin-left: 75% !important
}

.u-push-10\/12 {
    margin-left: 83.33333% !important
}

.u-push-11\/12 {
    margin-left: 91.66667% !important
}

.u-push-0 {
    margin-left: 0 !important
}

@media screen and (min-width:30em) {
    .u-push-1\/12\@xs {
        margin-left: 8.33333% !important
    }
    .u-push-2\/12\@xs {
        margin-left: 16.66667% !important
    }
    .u-push-3\/12\@xs {
        margin-left: 25% !important
    }
    .u-push-4\/12\@xs {
        margin-left: 33.33333% !important
    }
    .u-push-5\/12\@xs {
        margin-left: 41.66667% !important
    }
    .u-push-6\/12\@xs {
        margin-left: 50% !important
    }
    .u-push-7\/12\@xs {
        margin-left: 58.33333% !important
    }
    .u-push-8\/12\@xs {
        margin-left: 66.66667% !important
    }
    .u-push-9\/12\@xs {
        margin-left: 75% !important
    }
    .u-push-10\/12\@xs {
        margin-left: 83.33333% !important
    }
    .u-push-11\/12\@xs {
        margin-left: 91.66667% !important
    }
    .u-push-0\@xs {
        margin-left: 0 !important
    }
}

@media screen and (min-width:48em) {
    .u-push-1\/12\@sm {
        margin-left: 8.33333% !important
    }
    .u-push-2\/12\@sm {
        margin-left: 16.66667% !important
    }
    .u-push-3\/12\@sm {
        margin-left: 25% !important
    }
    .u-push-4\/12\@sm {
        margin-left: 33.33333% !important
    }
    .u-push-5\/12\@sm {
        margin-left: 41.66667% !important
    }
    .u-push-6\/12\@sm {
        margin-left: 50% !important
    }
    .u-push-7\/12\@sm {
        margin-left: 58.33333% !important
    }
    .u-push-8\/12\@sm {
        margin-left: 66.66667% !important
    }
    .u-push-9\/12\@sm {
        margin-left: 75% !important
    }
    .u-push-10\/12\@sm {
        margin-left: 83.33333% !important
    }
    .u-push-11\/12\@sm {
        margin-left: 91.66667% !important
    }
    .u-push-0\@sm {
        margin-left: 0 !important
    }
}

@media screen and (min-width:62em) {
    .u-push-1\/12\@md {
        margin-left: 8.33333% !important
    }
    .u-push-2\/12\@md {
        margin-left: 16.66667% !important
    }
    .u-push-3\/12\@md {
        margin-left: 25% !important
    }
    .u-push-4\/12\@md {
        margin-left: 33.33333% !important
    }
    .u-push-5\/12\@md {
        margin-left: 41.66667% !important
    }
    .u-push-6\/12\@md {
        margin-left: 50% !important
    }
    .u-push-7\/12\@md {
        margin-left: 58.33333% !important
    }
    .u-push-8\/12\@md {
        margin-left: 66.66667% !important
    }
    .u-push-9\/12\@md {
        margin-left: 75% !important
    }
    .u-push-10\/12\@md {
        margin-left: 83.33333% !important
    }
    .u-push-11\/12\@md {
        margin-left: 91.66667% !important
    }
    .u-push-0\@md {
        margin-left: 0 !important
    }
}

@media screen and (min-width:80em) {
    .u-push-1\/12\@lg {
        margin-left: 8.33333% !important
    }
    .u-push-2\/12\@lg {
        margin-left: 16.66667% !important
    }
    .u-push-3\/12\@lg {
        margin-left: 25% !important
    }
    .u-push-4\/12\@lg {
        margin-left: 33.33333% !important
    }
    .u-push-5\/12\@lg {
        margin-left: 41.66667% !important
    }
    .u-push-6\/12\@lg {
        margin-left: 50% !important
    }
    .u-push-7\/12\@lg {
        margin-left: 58.33333% !important
    }
    .u-push-8\/12\@lg {
        margin-left: 66.66667% !important
    }
    .u-push-9\/12\@lg {
        margin-left: 75% !important
    }
    .u-push-10\/12\@lg {
        margin-left: 83.33333% !important
    }
    .u-push-11\/12\@lg {
        margin-left: 91.66667% !important
    }
    .u-push-0\@lg {
        margin-left: 0 !important
    }
}

@media screen and (min-width:90em) {
    .u-push-1\/12\@xl {
        margin-left: 8.33333% !important
    }
    .u-push-2\/12\@xl {
        margin-left: 16.66667% !important
    }
    .u-push-3\/12\@xl {
        margin-left: 25% !important
    }
    .u-push-4\/12\@xl {
        margin-left: 33.33333% !important
    }
    .u-push-5\/12\@xl {
        margin-left: 41.66667% !important
    }
    .u-push-6\/12\@xl {
        margin-left: 50% !important
    }
    .u-push-7\/12\@xl {
        margin-left: 58.33333% !important
    }
    .u-push-8\/12\@xl {
        margin-left: 66.66667% !important
    }
    .u-push-9\/12\@xl {
        margin-left: 75% !important
    }
    .u-push-10\/12\@xl {
        margin-left: 83.33333% !important
    }
    .u-push-11\/12\@xl {
        margin-left: 91.66667% !important
    }
    .u-push-0\@xl {
        margin-left: 0 !important
    }
}

@media screen and (min-width:100em) {
    .u-push-1\/12\@xxl {
        margin-left: 8.33333% !important
    }
    .u-push-2\/12\@xxl {
        margin-left: 16.66667% !important
    }
    .u-push-3\/12\@xxl {
        margin-left: 25% !important
    }
    .u-push-4\/12\@xxl {
        margin-left: 33.33333% !important
    }
    .u-push-5\/12\@xxl {
        margin-left: 41.66667% !important
    }
    .u-push-6\/12\@xxl {
        margin-left: 50% !important
    }
    .u-push-7\/12\@xxl {
        margin-left: 58.33333% !important
    }
    .u-push-8\/12\@xxl {
        margin-left: 66.66667% !important
    }
    .u-push-9\/12\@xxl {
        margin-left: 75% !important
    }
    .u-push-10\/12\@xxl {
        margin-left: 83.33333% !important
    }
    .u-push-11\/12\@xxl {
        margin-left: 91.66667% !important
    }
    .u-push-0\@xxl {
        margin-left: 0 !important
    }
}

.u-1\/12 {
    width: 8.33333% !important
}

.u-2\/12 {
    width: 16.66667% !important
}

.u-3\/12 {
    width: 25% !important
}

.u-4\/12 {
    width: 33.33333% !important
}

.u-5\/12 {
    width: 41.66667% !important
}

.u-6\/12 {
    width: 50% !important
}

.u-7\/12 {
    width: 58.33333% !important
}

.u-8\/12 {
    width: 66.66667% !important
}

.u-9\/12 {
    width: 75% !important
}

.u-10\/12 {
    width: 83.33333% !important
}

.u-11\/12 {
    width: 91.66667% !important
}

.u-12\/12 {
    width: 100% !important
}

@media screen and (min-width:30em) {
    .u-1\/12\@xs {
        width: 8.33333% !important
    }
    .u-2\/12\@xs {
        width: 16.66667% !important
    }
    .u-3\/12\@xs {
        width: 25% !important
    }
    .u-4\/12\@xs {
        width: 33.33333% !important
    }
    .u-5\/12\@xs {
        width: 41.66667% !important
    }
    .u-6\/12\@xs {
        width: 50% !important
    }
    .u-7\/12\@xs {
        width: 58.33333% !important
    }
    .u-8\/12\@xs {
        width: 66.66667% !important
    }
    .u-9\/12\@xs {
        width: 75% !important
    }
    .u-10\/12\@xs {
        width: 83.33333% !important
    }
    .u-11\/12\@xs {
        width: 91.66667% !important
    }
    .u-12\/12\@xs {
        width: 100% !important
    }
}

@media screen and (min-width:48em) {
    .u-1\/12\@sm {
        width: 8.33333% !important
    }
    .u-2\/12\@sm {
        width: 16.66667% !important
    }
    .u-3\/12\@sm {
        width: 25% !important
    }
    .u-4\/12\@sm {
        width: 33.33333% !important
    }
    .u-5\/12\@sm {
        width: 41.66667% !important
    }
    .u-6\/12\@sm {
        width: 50% !important
    }
    .u-7\/12\@sm {
        width: 58.33333% !important
    }
    .u-8\/12\@sm {
        width: 66.66667% !important
    }
    .u-9\/12\@sm {
        width: 75% !important
    }
    .u-10\/12\@sm {
        width: 83.33333% !important
    }
    .u-11\/12\@sm {
        width: 91.66667% !important
    }
    .u-12\/12\@sm {
        width: 100% !important
    }
}

@media screen and (min-width:62em) {
    .u-1\/12\@md {
        width: 8.33333% !important
    }
    .u-2\/12\@md {
        width: 16.66667% !important
    }
    .u-3\/12\@md {
        width: 25% !important
    }
    .u-4\/12\@md {
        width: 33.33333% !important
    }
    .u-5\/12\@md {
        width: 41.66667% !important
    }
    .u-6\/12\@md {
        width: 50% !important
    }
    .u-7\/12\@md {
        width: 58.33333% !important
    }
    .u-8\/12\@md {
        width: 66.66667% !important
    }
    .u-9\/12\@md {
        width: 75% !important
    }
    .u-10\/12\@md {
        width: 83.33333% !important
    }
    .u-11\/12\@md {
        width: 91.66667% !important
    }
    .u-12\/12\@md {
        width: 100% !important
    }
}

@media screen and (min-width:80em) {
    .u-1\/12\@lg {
        width: 8.33333% !important
    }
    .u-2\/12\@lg {
        width: 16.66667% !important
    }
    .u-3\/12\@lg {
        width: 25% !important
    }
    .u-4\/12\@lg {
        width: 33.33333% !important
    }
    .u-5\/12\@lg {
        width: 41.66667% !important
    }
    .u-6\/12\@lg {
        width: 50% !important
    }
    .u-7\/12\@lg {
        width: 58.33333% !important
    }
    .u-8\/12\@lg {
        width: 66.66667% !important
    }
    .u-9\/12\@lg {
        width: 75% !important
    }
    .u-10\/12\@lg {
        width: 83.33333% !important
    }
    .u-11\/12\@lg {
        width: 91.66667% !important
    }
    .u-12\/12\@lg {
        width: 100% !important
    }
}

@media screen and (min-width:90em) {
    .u-1\/12\@xl {
        width: 8.33333% !important
    }
    .u-2\/12\@xl {
        width: 16.66667% !important
    }
    .u-3\/12\@xl {
        width: 25% !important
    }
    .u-4\/12\@xl {
        width: 33.33333% !important
    }
    .u-5\/12\@xl {
        width: 41.66667% !important
    }
    .u-6\/12\@xl {
        width: 50% !important
    }
    .u-7\/12\@xl {
        width: 58.33333% !important
    }
    .u-8\/12\@xl {
        width: 66.66667% !important
    }
    .u-9\/12\@xl {
        width: 75% !important
    }
    .u-10\/12\@xl {
        width: 83.33333% !important
    }
    .u-11\/12\@xl {
        width: 91.66667% !important
    }
    .u-12\/12\@xl {
        width: 100% !important
    }
}

@media screen and (min-width:100em) {
    .u-1\/12\@xxl {
        width: 8.33333% !important
    }
    .u-2\/12\@xxl {
        width: 16.66667% !important
    }
    .u-3\/12\@xxl {
        width: 25% !important
    }
    .u-4\/12\@xxl {
        width: 33.33333% !important
    }
    .u-5\/12\@xxl {
        width: 41.66667% !important
    }
    .u-6\/12\@xxl {
        width: 50% !important
    }
    .u-7\/12\@xxl {
        width: 58.33333% !important
    }
    .u-8\/12\@xxl {
        width: 66.66667% !important
    }
    .u-9\/12\@xxl {
        width: 75% !important
    }
    .u-10\/12\@xxl {
        width: 83.33333% !important
    }
    .u-11\/12\@xxl {
        width: 91.66667% !important
    }
    .u-12\/12\@xxl {
        width: 100% !important
    }
}

.u-text-left {
    text-align: left !important
}

.u-text-right {
    text-align: right !important
}

.u-text-center {
    text-align: center !important
}

p.add {
    color: #fff;
}
span#menuItem098 {
    color: #9b9b9b;
    font-size: 21px;
    /* padding: 10px; */
    /* margin: 19px; */
}
a.missin {
    text-align: center;
}

li.c-nav__submenu-item {
    list-style: none;
}

li.substrate-house {
    list-style: none;
    text-align: left;
}
li.substrate-house {
    color: #eee !important; font-weight: 300;
    /* text-decoration: none !important; */
}
@media screen and (min-width:320px) and (max-width:480px) {
    .c-nav__item-btn[aria-expanded="true"] + .js-submenu {
        display: block;
        width: 100%;
        padding: 0px 29px;
      }

      .c-nav__item-btn--arrow {
        background-color: transparent;
        display: -ms-flexbox;
        display: flex;
        padding: 1rem 2rem;
        position: absolute;
        left: 70%;
        top: 1rem;
        width: 2rem
    }

    .c-split-content__heading--highlight {
        font-size: 14px;
        line-height: 33px;
      }
      .c-logo {
        max-width: 300px;
        width: 100%;
      }
      h2.c-fcta__heading {
        font-size: 15px;
      }
      .c-split-content {
        margin: 60px 0px;
      }
      .c-innerHero__heading {
        padding: 70px 0 0 0;
        font-size: 19px;
      }
      
      .c-split-content__image-src.u-bgimg-cover-ctr.produt-img {
  min-height: auto;
}
      aside.c-contact__info {
        padding: 25px 14px !important;
        font-size: 15px;
      }
      .c-fcta__heading > span{ padding: ;}
    .c-possibilities__heading{max-width: 100%;}
    
    .c-split-content__image-src.u-bgimg-cover-ctr {
  border: 1px solid #ccc;

  margin: 8px;
  min-height: 400px;
}
.c-substrate__heading{font-size: 16px;
  line-height: 32px;}
.c-substrate__item > a {font-size: 13px;
  text-align: left;}
    .c-possibilities__item{ font-size: 12px;line-height:30px ; padding: 18px 20px;}
    
}

.dtals {
    padding: 80px 0px;
}

aside.c-contact__info

 {
    padding: 40px 137px;
}