@charset "UTF-8";
html {
    box-sizing: border-box;
}

*, *::after, *::before {
    box-sizing: inherit;
}

/**
 * Swiper 3.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/swiper/
 *
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under MIT
 *
 * Released on: February 7, 2016
 */
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
    float: left;
}

.swiper-container-vertical > .swiper-wrapper {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    -ms-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}

/* a11y */
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    display: none;
    z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto;
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Pagination Styles */
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    display: none;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

/* Bullets */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    opacity: 0.2;
    border-style: groove;
    border-color: #667790;
    border-width: 1px;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
    background: #fff;
}

.swiper-pagination-bullet-active {
    display: block;
    background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000;
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    -ms-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 5px 0;
    display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}

/* Progress */
.swiper-pagination-progress {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progress .swiper-pagination-progressbar {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progress {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-container-vertical > .swiper-pagination-progress {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-progress.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
    background: #fff;
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
    background: #000;
}

/* 3D Container */
.swiper-container-3d {
    -webkit-perspective: 1200px;
    -o-perspective: 1200px;
    perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    /* Safari 4+, Chrome */
    /* Chrome 10+, Safari 5.1+, iOS 5+ */
    /* Firefox 3.6-15 */
    /* Opera 11.10-12.00 */
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
    /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-right {
    /* Safari 4+, Chrome */
    /* Chrome 10+, Safari 5.1+, iOS 5+ */
    /* Firefox 3.6-15 */
    /* Opera 11.10-12.00 */
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
    /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-top {
    /* Safari 4+, Chrome */
    /* Chrome 10+, Safari 5.1+, iOS 5+ */
    /* Firefox 3.6-15 */
    /* Opera 11.10-12.00 */
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    /* Safari 4+, Chrome */
    /* Chrome 10+, Safari 5.1+, iOS 5+ */
    /* Firefox 3.6-15 */
    /* Opera 11.10-12.00 */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
    /* Firefox 16+, IE10, Opera 12.50+ */
}

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
    /* Windows 8 IE 10 fix */
    -ms-perspective: 1200px;
}

/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
    overflow: visible;
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Cube */
.swiper-container-cube .swiper-slide {
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

/* Scrollbar */
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*-- Chart --*/
.c3 svg {
    font: 10px sans-serif;
    -webkit-tap-highlight-color: transparent;
}

.c3 path, .c3 line {
    fill: none;
    stroke: #000;
}

.c3 text {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.c3-legend-item-tile,
.c3-xgrid-focus,
.c3-ygrid,
.c3-event-rect,
.c3-bars path {
    shape-rendering: crispEdges;
}

.c3-chart-arc path {
    stroke: #fff;
}

.c3-chart-arc text {
    fill: #fff;
    font-size: 13px;
}

/*-- Axis --*/
/*-- Grid --*/
.c3-grid line {
    stroke: #aaa;
}

.c3-grid text {
    fill: #aaa;
}

.c3-xgrid, .c3-ygrid {
    stroke-dasharray: 3 3;
}

/*-- Text on Chart --*/
.c3-text.c3-empty {
    fill: #808080;
    font-size: 2em;
}

/*-- Line --*/
.c3-line {
    stroke-width: 1px;
}

/*-- Point --*/
.c3-circle._expanded_ {
    stroke-width: 1px;
    stroke: white;
}

.c3-selected-circle {
    fill: white;
    stroke-width: 2px;
}

/*-- Bar --*/
.c3-bar {
    stroke-width: 0;
}

.c3-bar._expanded_ {
    fill-opacity: 0.75;
}

/*-- Focus --*/
.c3-target.c3-focused {
    display: block;
}

.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {
    stroke-width: 2px;
}

.c3-target.c3-defocused {
    opacity: 0.3 !important;
}

/*-- Region --*/
.c3-region {
    fill: steelblue;
    fill-opacity: .1;
}

/*-- Brush --*/
.c3-brush .extent {
    fill-opacity: .1;
}

/*-- Select - Drag --*/
/*-- Legend --*/
.c3-legend-item {
    font-size: 12px;
}

.c3-legend-item-hidden {
    opacity: 0.15;
}

.c3-legend-background {
    opacity: 0.75;
    fill: white;
    stroke: lightgray;
    stroke-width: 1;
}

/*-- Title --*/
.c3-title {
    font: 14px sans-serif;
}

/*-- Tooltip --*/
.c3-tooltip-container {
    z-index: 10;
}

.c3-tooltip {
    border-collapse: collapse;
    border-spacing: 0;
    background-color: #fff;
    empty-cells: show;
    box-shadow: 7px 7px 12px -9px #777777;
    opacity: 0.9;
}

.c3-tooltip tr {
    border: 1px solid #CCC;
}

.c3-tooltip th {
    background-color: #aaa;
    font-size: 14px;
    padding: 2px 5px;
    text-align: left;
    color: #FFF;
}

.c3-tooltip td {
    font-size: 13px;
    padding: 3px 6px;
    background-color: #fff;
    border-left: 1px dotted #999;
}

.c3-tooltip td > span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 6px;
}

.c3-tooltip td.value {
    text-align: right;
}

/*-- Area --*/
.c3-area {
    stroke-width: 0;
    opacity: 0.2;
}

/*-- Arc --*/
.c3-chart-arcs-title {
    dominant-baseline: middle;
    font-size: 1.3em;
}

.c3-chart-arcs .c3-chart-arcs-background {
    fill: #e0e0e0;
    stroke: none;
}

.c3-chart-arcs .c3-chart-arcs-gauge-unit {
    fill: #000;
    font-size: 16px;
}

.c3-chart-arcs .c3-chart-arcs-gauge-max {
    fill: #777;
}

.c3-chart-arcs .c3-chart-arcs-gauge-min {
    fill: #777;
}

.c3-chart-arc .c3-gauge-value {
    fill: #000;
    /*  font-size: 28px !important;*/
}

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 */
.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pika-single.is-hidden {
    display: none;
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}

.pika-single {
    *zoom: 1;
}

.pika-single:before, .pika-single:after {
    content: " ";
    display: table;
}

.pika-single:after {
    clear: both;
}

.pika-lendar {
    float: left;
    width: 240px;
    margin: 8px;
}

.pika-title {
    position: relative;
    text-align: center;
}

.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    display: none;
}

.pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    *position: absolute;
    *top: 0;
}

.pika-prev:hover,
.pika-next:hover {
    display: block;
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;
}

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
    *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
    *right: 0;
}

.pika-select {
    display: inline-block;
    *display: inline;
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

.pika-table th,
.pika-table td {
    width: 14.285714285714286%;
    padding: 0;
}

.pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
}

.pika-table abbr {
    border-bottom: none;
    cursor: help;
}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
}

.is-today .pika-button {
    color: #33aaff;
    font-weight: bold;
}

.is-selected .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px;
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3;
}

.pika-button:hover {
    color: #fff;
    background: #ff8000;
    box-shadow: none;
    border-radius: 3px;
}

.pika-week {
    font-size: 11px;
    color: #999;
}

.is-inrange .pika-button {
    background: #D5E9F7;
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    box-shadow: none;
    border-radius: 3px;
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    box-shadow: none;
    border-radius: 3px;
}

/*
 * jquery.selectBoxIt.css 3.8.1
 * Author: @gregfranko
 */
/*
  Common CSS Properties
  ---------------------
  These properties will be applied to any themes that you use
*/
/* SelectBoxIt container */
.selectboxit-container {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

/* Styles that apply to all SelectBoxIt elements */
.selectboxit-container * {
    font: 14px Helvetica, Arial;
    /* Prevents text selection */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    outline: none;
    white-space: nowrap;
}

/* Button */
.selectboxit-container .selectboxit {
    width: 220px;
    /* Width of the dropdown button */
    cursor: pointer;
    margin: 0;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
    display: block;
    position: relative;
}

/* Height and Vertical Alignment of Text */
.selectboxit-container span, .selectboxit-container .selectboxit-options a {
    height: 30px;
    /* Height of the drop down */
    line-height: 30px;
    /* Vertically positions the drop down text */
    display: block;
}

/* Focus pseudo selector */
.selectboxit-container .selectboxit:focus {
    outline: 0;
}

/* Disabled Mouse Interaction */
.selectboxit.selectboxit-disabled, .selectboxit-options .selectboxit-disabled {
    opacity: 0.65;
    filter: alpha(opacity=65);
    box-shadow: none;
    cursor: default;
}

/* Button Text */
.selectboxit-text {
    text-indent: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
}

.selectboxit .selectboxit-option-icon-container {
    margin-left: 5px;
}

/* Options List */
.selectboxit-container .selectboxit-options {
    box-sizing: border-box;
    min-width: 100%;
    /* Minimum Width of the dropdown list box options */
    *width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    overflow-x: hidden;
    overflow-y: auto;
    cursor: pointer;
    display: none;
    z-index: 9999999999999;
    border-radius: 6px;
    text-align: left;
    box-shadow: none;
}

/* Individual options */
.selectboxit-option .selectboxit-option-anchor {
    padding: 0 2px;
}

/* Individual Option Hover Action */
.selectboxit-option .selectboxit-option-anchor:hover {
    text-decoration: none;
}

/* Individual Option Optgroup Header */
.selectboxit-option, .selectboxit-optgroup-header {
    text-indent: 5px;
    /* Horizontal Positioning of the select box option text */
    margin: 0;
    list-style-type: none;
}

/* The first Drop Down option */
.selectboxit-option-first {
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

/* The first Drop Down option optgroup */
.selectboxit-optgroup-header + .selectboxit-option-first {
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}

/* The last Drop Down option */
.selectboxit-option-last {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}

/* Drop Down optgroup headers */
.selectboxit-optgroup-header {
    font-weight: bold;
}

/* Drop Down optgroup header hover psuedo class */
.selectboxit-optgroup-header:hover {
    cursor: default;
}

/* Drop Down down arrow container */
.selectboxit-arrow-container {
    /* Positions the down arrow */
    width: 30px;
    position: absolute;
    right: 0;
}

/* Drop Down down arrow */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow {
    /* Horizontally centers the down arrow */
    margin: 0 auto;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
}

/* Drop Down down arrow for jQueryUI and jQuery Mobile */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow.ui-icon {
    top: 30%;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-container {
    float: left;
}

.selectboxit-container .selectboxit-option-icon {
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-url {
    width: 18px;
    background-size: 18px 18px;
    background-repeat: no-repeat;
    height: 100%;
    background-position: center;
    float: left;
}

.selectboxit-rendering {
    display: inline-block !important;
    *display: inline !important;
    zoom: 1 !important;
    visibility: visible !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

/* jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon {
    background-color: inherit;
}

/* Another jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon-triangle-1-s {
    background-position: -64px -16px;
}

/*
  Default Theme
  -------------
  Note: Feel free to remove all of the CSS underneath this line if you are not using the default theme
*/
.selectboxit-btn {
    background-color: #f5f5f5;
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #cccccc;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    border-bottom-color: #b3b3b3;
}

.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus,
.selectboxit-btn.selectboxit-enabled:active {
    color: #333333;
    background-color: #e6e6e6;
}

.selectboxit-btn.selectboxit-enabled:hover{
    color: #333333;
    text-decoration: none;
    background-position: 0 -15px;
}
.selectboxit-btn.selectboxit-enabled:focus{
    outline: -webkit-focus-ring-color auto 1px !important;
}
.selectboxit-btn.selectboxit-enabled :-moz-focusring {
    outline: 2px solid blue;
}

.selectboxit-default-arrow {
    width: 0;
    height: 0;
    border-top: 4px solid #000000;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.selectboxit-list {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.selectboxit-list .selectboxit-option-anchor {
    color: #333333;
}

.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
    color: #ffffff;
    background-color: #0081c2;
    background-image: linear-gradient(to bottom, #0088cc, #0077b3);
    background-repeat: repeat-x;
}

.selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
    color: #999999;
}


/* @mixin container {
    @include outer-container;
    @include media($small-screen) {
        max-width:  90%;
    }
    @include media($medium-screen) {
        max-width:  93%;
    }
    @include media($large-screen) {
        max-width:  80%;
    }
} */
/*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */
/* Modified for ALDO Prototype */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
    font-family: RooberLight;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/**
 * Remove default margin.
 */
body {
    margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
    display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
    background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
    outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
    font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
    font-size: 2em;
    margin: 0px;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
    background: #ff0;
    color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
    border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
    margin: 0px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
    box-sizing: content-box;
    height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
    overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
    line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    /* 2 */
    box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `alternate` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
    overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
    font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/* Custom Reset
   ========================================================================== */
a {
    text-decoration: none;
    color: inherit;
}

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

p {
    margin: 0;
    padding: 0;
}

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

[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

[class^="icon-"] span, [class*=" icon-"] span {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.icon-timer-enel:before {
	content: "\e9a1";
}

.icon-bundle-mobilita:before {
    content: "\e9a4";
}

.icon-rocket:before {
    content: "\e9a5";
}

.icon-arrow:before {
    content: "\e900";
}

.icon-fb:before {
    content: "\e901";
}

.icon-mail:before {
    content: "\e902";
}

.icon-print:before {
    content: "\e903";
}

.icon-twitter:before {
    content: "\e904";
}

.icon-chevron-right:before {
    content: "\e905";
}

.icon-chevron-left:before {
    content: "\e906";
}

.icon-chevron-down:before {
    content: "\e907";
}

.icon-chevron-up:before {
    content: "\e908";
}

.icon-menu:before {
    content: "\e909";
}

.icon-youtube:before {
    content: "\e90a";
}

.icon-google:before {
    content: "\e99a";
}

.icon-volume-mute:before {
    content: "\e90c";
}

.icon-close:before {
    content: "\e90d";
}

.icon-volume-none:before {
    content: "\e90e";
}

.icon-volume-low:before {
    content: "\e90f";
}

.icon-volume-med:before {
    content: "\e910";
}

.icon-volume-high:before {
    content: "\e911";
}

.icon-pause:before {
    content: "\e912";
}

.icon-enlarge:before {
    content: "\e913";
}

.icon-enlarge2:before {
    content: "\e914";
}

.icon-play:before {
    content: "\e915";
}

.icon-play-circ:before {
    content: "\e916";
}

.icon-search:before {
    content: "\e917";
}

.icon-download:before {
    content: "\e918";
}

.icon-user:before {
    content: "\e919";
}

.icon-search-small:before {
    content: "\e91a";
}

.icon-rss:before {
    content: "\e91b";
}

.icon-external:before {
    content: "\e91c";
}

.icon-career:before {
    content: "\e91d";
}

.icon-linkedin:before {
    content: "\e91e";
}

.icon-mail2:before {
    content: "\e91f";
}

.icon-video:before {
    content: "\e920";
}

.icon-tick:before {
    content: "\e921";
}

.icon-line-geothermal:before {
    content: "\e922";
}

.icon-line-bulb:before {
    content: "\e923";
}

.icon-link-external:before {
    content: "\e924";
}

.icon-line-car:before {
    content: "\e925";
}

.icon-line-chat:before {
    content: "\e926";
}

.icon-line-cooking:before {
    content: "\e927";
}

.icon-line-download:before {
    content: "\e928";
}

.icon-line-electricity:before {
    content: "\e929";
}

.icon-line-facebook:before {
    content: "\e92a";
}

.icon-line-family:before {
    content: "\e92b";
}

.icon-line-file:before {
    content: "\e92c";
}

.icon-line-flame:before {
    content: "\e92d";
}

.icon-line-graph:before {
    content: "\e92e";
}

.icon-line-heating:before {
    content: "\e92f";
}

.icon-line-home:before {
    content: "\e930";
}

.icon-line-info:before {
    content: "\e931";
}

.icon-line-leaf:before {
    content: "\e932";
}

.icon-line-mail:before {
    content: "\e933";
}

.icon-line-nuclear:before {
    content: "\e934";
}

.icon-line-oil-drum:before {
    content: "\e935";
}

.icon-line-pc:before {
    content: "\e936";
}

.icon-line-pen:before {
    content: "\e937";
}

.icon-line-phone:before {
    content: "\e938";
}

.icon-line-pin:before {
    content: "\e939";
}

.icon-line-savings:before {
    content: "\e93a";
}

.icon-line-solar:before {
    content: "\e93b";
}

.icon-line-star:before {
    content: "\e93c";
}

.icon-line-storage:before {
    content: "\e93d";
}

.icon-line-tag:before {
    content: "\e93e";
}

.icon-line-time:before {
    content: "\e93f";
}

.icon-line-tv:before {
    content: "\e940";
}

.icon-line-user:before {
    content: "\e941";
}

.icon-line-wallet:before {
    content: "\e942";
}

.icon-new-wallet:before {
    content: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff;opacity:0;%7D.b%7Bfill:none;stroke:%230e141a;stroke-miterlimit:10;stroke-width:1.5px;%7D%3C/style%3E%3C/defs%3E%3Cg%20transform='translate(132%20176)'%3E%3Crect%20class='a'%20width='24'%20height='24'%20transform='translate(-132%20-176)'/%3E%3Cpath%20class='b'%20d='M-216.5-250.5v-6c-.01.06,0,5.93,0,6v5a1,1,0,0,0,1,1h16a1,1,0,0,0,1-1v-9a1,1,0,0,0-1-1h-5'%20transform='translate(87%2088)'/%3E%3Cpath%20class='b'%20d='M-204.5-255.5h-11c-.83,0-1-1.17-1-2s.17-1,1-1h12v3'%20transform='translate(87%2088)'/%3E%3Ccircle%20class='b'%20cx='1.5'%20cy='1.5'%20r='1.5'%20transform='translate(-117.5%20-163.5)'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-line-water:before {
    content: "\e943";
}

.icon-line-wave:before {
    content: "\e944";
}

.icon-line-wind:before {
    content: "\e945";
}

.icon-line-spanner:before {
    content: "\e946";
}

.icon-pin:before {
    content: "\e947";
}

.icon-warning:before {
    content: "\e948";
}

.icon-plus:before {
    content: "\e949";
}

.icon-gift:before {
    content: "\e9a9";
}

.icon-minus:before {
    content: "\e94a ";
}
.chat-section .icon-minus:before {
	content: "\ea0b ";
}

.icon-chat-bubble-msg:before {
	content: "\e9bc ";
}

.burger-icon, .cross-icon {
    width: 100%;
    height: 16.6%;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -16.6%;
    background: #ffffff;
    display: inline-block;
    transition: all 0.3s;
    /* .menu-open & {
        background: none;
    } */
}

.burger-icon:after, .cross-icon:after, .burger-icon:before, .cross-icon:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: absolute;
    z-index: -1;
    transition: all 0.3s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.burger-icon:after, .cross-icon:after {
    top: 250%;
    /* .menu-open & {
            top: 0 !important;
            transform: rotate(45deg);
        } */
}

.burger-icon:before, .cross-icon:before {
    top: -250%;
    /* .menu-open & {
            top: 0 !important;
            transform: rotate(-45deg);
        } */
}

.cross-icon {
    background: none;
}

.cross-icon:after, .cross-icon:before {
    transition: none;
}

.cross-icon:after {
    top: 0 !important;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cross-icon:before {
    top: 0 !important;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.icon-rss {
    box-size: content-box;
    font-size: 18px;
    background: #0152E8;
    color: #fff;
    padding: 3px 6px;
    top: -3px;
    margin-left: 10px;
}

a.icon-external {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-decoration: none !important;
}

a.icon-external:before {
    font-size: 0.8em;
    margin-right: 0.5em;
}

button {
    -webkit-appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
}

.btn-cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #000;
    color: #000;
}

.btn-cta:hover, .btn-cta._hover,
a:hover .btn-cta {
    text-decoration: none;
}

.btn-cta:hover, a:hover .btn-cta {
    color: #fff;
    background-color: #000;
}

.btn-cta--clear {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
    transition: background-color 100ms linear;
}

.btn-cta--clear:hover, .btn-cta--clear._hover,
a:hover .btn-cta--clear {
    text-decoration: none;
}

.btn-cta--clear:hover, .btn-cta--clear._hover,
a:hover .btn-cta--clear {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-cta--alt {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #d3135a;
    color: #d3135a;
}

.btn-cta--alt:hover, .btn-cta--alt._hover,
a:hover .btn-cta--alt {
    text-decoration: none;
}

.btn-cta--alt:hover, .btn-cta--alt._hover,
a:hover .btn-cta--alt {
    background-color: rgba(211, 19, 89, 0.2);
}

.btn-cta--alt--white {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
}

.btn-cta--alt--white:hover, .btn-cta--alt--white._hover,
a:hover .btn-cta--alt--white {
    text-decoration: none;
}

.btn-cta--alt--white:hover, .btn-cta--alt--white._hover,
a:hover .btn-cta--alt--white {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-cta--blue {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #002466;
    border-color: #002466;
    color: #ffffff;
}

.btn-cta--blue:hover, .btn-cta--blue._hover,
a:hover .btn-cta--blue {
    text-decoration: none;
}

.btn-cta--blue:hover, .btn-cta--blue._hover,
a:hover .btn-cta--blue {
    background-color: #ffffff;
    border-color: #002466;
    color: #002466;
}

.btn-cta--pink {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #d3135a;
    color: #ffffff;
    background-color: #d3135a;
}

.btn-cta--pink:hover, .btn-cta--pink._hover,
a:hover .btn-cta--pink {
    text-decoration: none;
}

.btn-cta--pink:hover, .btn-cta--pink._hover,
a:hover .btn-cta--pink {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

@media screen and (max-width: 767px) {
    .btn-cta__wrapper .btn-cta {
        width: 100%;
    }
}

.link {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    text-transform: uppercase;
}

.link:hover {
    text-decoration: underline;
}

h1, .h1 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    h1, .h1 {
        font-size: 60px;
        letter-spacing: -1.2px;
        line-height: 1.08333;
    }
}

h2, .h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    h2, .h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

h3, .h3 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.52px;
    line-height: 1.07692;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    h3, .h3 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

h4, .h4,
h5, h6 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    h4, .h4,
    h5, h6 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

small,
.small,
small p,
small .p,
.small p,
.small .p {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    small,
    .small,
    small p,
    small .p,
    .small p,
    .small .p {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.eyebrow {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .eyebrow {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

ul.reset {
    margin: 0;
}

ul.reset li {
    padding: 0;
    margin: 0;
}

ul.reset li:before {
    display: none;
}

.bullet-list,
.rich-text_inner ul {
    margin: 30px 0;
    list-style: none;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.bullet-list p,
.rich-text_inner ul p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .bullet-list,
    .rich-text_inner ul {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.bullet-list li,
.rich-text_inner ul li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 1em;
}

.bullet-list li:before,
.rich-text_inner ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 0.55em;
    margin-top: -2px;
}

@media screen and (min-width: 768px) {
    .bullet-list li:before,
    .rich-text_inner ul li:before {
        margin-top: 0;
    }
}

.tick-list {
    margin: 30px 0;
}

.tick-list li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 1em;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.22222;
}

.tick-list li:before {
    display: block;
    font-family: 'icomoon';
    content: "\e921";
    font-style: normal;
    font-weight: normal;
}

.tick-list li:before {
    color: #0B563D;
    position: absolute;
    left: 0;
    background: none;
    width: auto;
    height: auto;
}

.icon-list {
    margin: 30px 0;
}

.icon-list li {
    padding-left: 2.5em;
    position: relative;
    margin-bottom: 1em;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.22222;
}

.icon-list li:before {
    font-size: 1.5555em;
    vertical-align: sub;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*
 * OLD STYLES - DEPRECATED
 * -----------------------
*/
.text--breadcrumb {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.4px;
    line-height: 2;
    color: #ffffff;
    text-transform: uppercase;
}


@media screen and (min-width: 768px) {
    .text--breadcrumb {
        font-size: 13px;
        letter-spacing: 0.52px;
        line-height: 1.84615;
    }
}

.text--page-heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .text--page-heading {
        font-size: 60px;
        letter-spacing: -1.2px;
        line-height: 1.08333;
    }
}

.text--product-heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 50px;
    letter-spacing: -2px;
    line-height: 1;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .text--product-heading {
        font-size: 60px;
        letter-spacing: -2.4px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 1024px) {
    .text--product-heading {
        font-size: 80px;
        letter-spacing: -3.2px;
        line-height: 1.5;
    }
}

.text--page-subheading {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.88px;
    line-height: 1.27273;
    color: #000000;
}

@media screen and (min-width: 768px) {
    .text--page-subheading {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.2;
    }
}

.text--date {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.28571;
    color: #667790;
}

@media screen and (min-width: 768px) {
    .text--date {
        font-size: 16px;
        letter-spacing: 0px;
        line-height: 1.375;
    }
}

.text--large {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0.36px;
    line-height: 1.33333;
    color: #111111;
}

@media screen and (min-width: 768px) {
    .text--large {
        font-size: 36px;
        letter-spacing: 0.72px;
        line-height: 1.33333;
    }
}

.text--standard, .article-content_inner .rich-text.rich-text_inner p, .rich-text .rich-text_inner p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.73333;
    color: #111111;
}

.text--standard a, .article-content_inner .rich-text.rich-text_inner p a, .rich-text .rich-text_inner p a {
    color: #d3135a;
    text-decoration: underline;
}

.text--standard strong, .article-content_inner .rich-text.rich-text_inner p strong, .rich-text .rich-text_inner p strong {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
}

@media screen and (min-width: 768px) {
    .text--standard, .article-content_inner .rich-text.rich-text_inner p, .rich-text .rich-text_inner p {
        font-size: 22px;
        letter-spacing: 0.44px;
        line-height: 1.63636;
    }
}

.text--list-item {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.73333;
    color: #111111;
}

.text--list-item a {
    color: #d3135a;
    text-decoration: underline;
}

.text--list-item strong {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
}

@media screen and (min-width: 768px) {
    .text--list-item {
        font-size: 22px;
        letter-spacing: 0.44px;
        line-height: 1.63636;
    }
}

.text--caption {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 8px;
    letter-spacing: -0.16px;
    line-height: 2.25;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .text--caption {
        font-size: 15px;
        letter-spacing: -0.3px;
        line-height: 1.8;
    }
}

.text--pull-quote {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    letter-spacing: -0.4px;
    line-height: 1.5;
    color: #111111;
}

@media screen and (min-width: 768px) {
    .text--pull-quote {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.5;
    }
}

.text--pull-quote-author {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    letter-spacing: -0.24px;
    line-height: 1.66667;
    color: #999999;
}

@media screen and (min-width: 768px) {
    .text--pull-quote-author {
        font-size: 15px;
        letter-spacing: -0.3px;
        line-height: 1.33333;
    }
}

.text--footer-link {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.33333;
    color: #002466;
}

.text--list-title-med {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 1.66667;
    color: #d3135a;
}

@media screen and (max-width: 767px) {
    .text--list-title-med {
        font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 300;
        font-style: normal;
        color: #000000;
        font-size: 22px;
        letter-spacing: -0.44px;
        line-height: 1.27273;
    }
}

.text--list-title-large {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.2;
    color: #d3135a;
}

@media screen and (max-width: 767px) {
    .text--list-title-large {
        font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 300;
        font-style: normal;
        color: #000000;
        font-size: 22px;
        letter-spacing: -0.44px;
        line-height: 1.27273;
    }
}

.text--list-description {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 1.66667;
    color: #111111;
}

.text--disclaimer {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    letter-spacing: -0.336px;
    line-height: 1.71429;
    color: #666666;
}

@media screen and (max-width: 767px) {
    .text--disclaimer {
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: 1.66667;
    }
}

.text--error-heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 120px;
    letter-spacing: -4.8px;
    line-height: 1.25;
}

@media screen and (max-width: 767px) {
    .text--error-heading {
        font-size: 40px;
        letter-spacing: -1.2px;
        line-height: 1.15;
    }
}

.text--hero-description {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 40px;
    letter-spacing: -1.2px;
    line-height: 1.15;
}

@media screen and (max-width: 767px) {
    .text--hero-description {
        font-size: 20px;
        letter-spacing: -0.4px;
        line-height: 1.5;
    }
}

.text--error-reason {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 1.4;
}

@media screen and (max-width: 767px) {
    .text--error-reason {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.46667;
    }
}

.text--error-reason strong {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    letter-spacing: 0px;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .text--error-reason strong {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.46667;
    }
}

.text--tile-heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
    letter-spacing: -0.96px;
    line-height: 1.25;
    color: #000000;
}

@media screen and (min-width: 768px) {
    .text--tile-heading {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.26667;
    }
}

.text--tile-description {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: 1.42857;
    color: #666666;
}

@media screen and (min-width: 1024px) {
    .text--tile-description {
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: 1.77778;
    }
}

.text--tile-issue {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.33333;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .text--tile-issue {
        font-size: 13px;
        letter-spacing: 0.26px;
        line-height: 1.84615;
    }
}

.text--uppercase-heading {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.33333;
    font-size: 13px;
    text-transform: uppercase;
}

.text--nowrap {
    white-space: nowrap;
}

input[type='text'],
input[type='number'],
input[type='tel'],
input[type='email'],
textarea {
    transition: all 100ms linear;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.15);
    color: #000000;
    display: inline-block;
    min-width: 160px;
    outline: none;
    padding: 10px 10px 8px;
    width: 100%;
    -moz-appearance: textfield;
    -webkit-appearance: none;
    border-radius: 0;
    box-shadow: none;
}

input[type='text']::-webkit-input-placeholder,
input[type='number']::-webkit-input-placeholder,
input[type='tel']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

input[type='text']::-moz-placeholder,
input[type='number']::-moz-placeholder,
input[type='tel']::-moz-placeholder,
input[type='email']::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

input[type='text']:-moz-placeholder,
input[type='number']:-moz-placeholder,
input[type='tel']:-moz-placeholder,
input[type='email']:-moz-placeholder,
textarea:-moz-placeholder {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

input[type='text']:-ms-input-placeholder,
input[type='number']:-ms-input-placeholder,
input[type='tel']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

input[type='text']:focus::-webkit-input-placeholder,
input[type='number']:focus::-webkit-input-placeholder,
input[type='tel']:focus::-webkit-input-placeholder,
input[type='email']:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    display: none;
    transition: opacity 0.3s ease;
}

input[type='text']:focus::-moz-placeholder,
input[type='number']:focus::-moz-placeholder,
input[type='tel']:focus::-moz-placeholder,
input[type='email']:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    display: none;
    transition: opacity 0.3s ease;
}

input[type='text']:focus:-moz-placeholder,
input[type='number']:focus:-moz-placeholder,
input[type='tel']:focus:-moz-placeholder,
input[type='email']:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
    display: none;
    transition: opacity 0.3s ease;
}

input[type='text']:focus:-ms-input-placeholder,
input[type='number']:focus:-ms-input-placeholder,
input[type='tel']:focus:-ms-input-placeholder,
input[type='email']:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
    display: none;
    transition: opacity 0.3s ease;
}

@media screen and (min-width: 768px) {
    input[type='text'],
    input[type='number'],
    input[type='tel'],
    input[type='email'],
    textarea {
        font-size: 18px;
        letter-spacing: 0px;
        line-height: 1;
        padding: 14px;
    }
}

input[type='text']::-webkit-input-placeholder,
input[type='number']::-webkit-input-placeholder,
input[type='tel']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #000000;
    opacity: 0.4;
}

input[type='text']::-moz-placeholder,
input[type='number']::-moz-placeholder,
input[type='tel']::-moz-placeholder,
input[type='email']::-moz-placeholder,
textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #000000;
    opacity: 0.4;
}

input[type='text']:-ms-input-placeholder,
input[type='number']:-ms-input-placeholder,
input[type='tel']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #000000;
    opacity: 0.4;
}

input[type='text']:-moz-placeholder,
input[type='number']:-moz-placeholder,
input[type='tel']:-moz-placeholder,
input[type='email']:-moz-placeholder,
textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #000000;
    opacity: 0.4;
}

input[type='text']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='email']:focus,
textarea:focus {
    border: 2px solid #000000;
}

input[type='text'].error,
input[type='number'].error,
input[type='tel'].error,
input[type='email'].error,
textarea.error {
    border: 2px solid #d3135a;
}

input[type='text']::-webkit-inner-spin-button, input[type='text']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button,
input[type='tel']::-webkit-inner-spin-button,
input[type='tel']::-webkit-outer-spin-button,
input[type='email']::-webkit-inner-spin-button,
input[type='email']::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button,
textarea::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type='text']::-ms-clear,
input[type='number']::-ms-clear,
input[type='tel']::-ms-clear,
input[type='email']::-ms-clear,
textarea::-ms-clear {
    display: none;
}

input[type='radio'] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

input[type='radio'] + label {
    padding: 0 1.5em;
}

input[type='radio'] + label:before {
    content: '';
    display: block;
    position: absolute;
    border: 2px solid #667790;
    border-radius: 1em;
    height: 1em;
    left: 0;
    opacity: 1;
    width: 1em;
}

input[type='radio'] + label:after{
    content: '';
    display: block;
    position: absolute;
    background: #000000;
    border-radius: 1em;
    height: 1em;
    left: 0;
    top: 0;
    width: 1em;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    display: none;
    transition: all 0.3s ease;
}

section.quote-builder input[type='radio'] + label:after {
	width: 1em;
    height: 1em;
    margin-top: 0px;
    left: 0px;
    top: 2px;
}

input[type='radio']:checked + label {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
}

input[type='radio']:checked + label:after {
    display: block;
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
}

input[type='checkbox'] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

input[type='checkbox'] + label {
    padding: 0 1.5em;
}

input[type='checkbox'] + label:before {
    content: '';
    display: block;
    position: absolute;
    border: 2px solid #667790;
    height: 1em;
    left: 0;
    opacity: 1;
    width: 1em;
}

input[type='checkbox'] + label:after {
    content: '';
    display: block;
    position: absolute;
    height: 1em;
    left: 2px;
    top: 2px;
    width: 1em;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    display: none;
    transition: all 0.3s ease;
    visibility: hidden;
}

input[type='checkbox'] + label:after {
    display: block;
    font-family: 'icomoon';
    content: "\e921";
    font-style: normal;
    font-weight: normal;
}

input[type='checkbox']:checked + label {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
}

input[type='checkbox']:checked + label:after {
    visibility: visible;
    display: block;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

input[type='file'] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

input[type='file'] + label {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
}

input[type='file'] + label span {
    transition: all 100ms linear;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-right: none;
    color: #000000;
    display: inline-block;
    padding: 10px 10px 8px;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (min-width: 768px) {
    input[type='file'] + label span {
        font-size: 18px;
        letter-spacing: 0px;
        line-height: 1;
        padding: 14px;
    }
}

input[type='file'] + label strong {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
    cursor: pointer;
}

input[type='file'] + label strong:hover, input[type='file'] + label strong._hover,
a:hover input[type='file'] + label strong {
    text-decoration: none;
}

input[type='file'] + label strong:hover, input[type='file'] + label strong._hover,
a:hover input[type='file'] + label strong {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

.selectboxit-container {
    display: block;
    max-width: 100%;
}

.selectboxit-container * {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1;
}

@media screen and (min-width: 768px) {
    .selectboxit-container * {
        font-size: 18px;
        letter-spacing: 0px;
        line-height: 1;
    }
}

.selectboxit-container .selectboxit {
    border: 2px solid #667790;
    border-radius: 0;
    width: 100%;
}

.selectboxit-container .selectboxit-btn {
    background: transparent;
    color: #000000;
    padding: 10px 10px 8px;
}

@media screen and (min-width: 768px) {
    .selectboxit-container .selectboxit-btn {
        padding: 14px;
    }
}

.selectboxit-container .selectboxit-btn .selectboxit-text {
    margin-right: 30px;
}

.selectboxit-container .selectboxit-btn.selectboxit-enabled:hover, .selectboxit-container .selectboxit-btn.selectboxit-enabled:focus, .selectboxit-container .selectboxit-btn.selectboxit-enabled:active {
    color: inherit;
    background-color: inherit;
}

.selectboxit-container .selectboxit-btn.selectboxit-focus {
    border: 2px solid #000000;
}

.selectboxit-container .selectboxit-btn:after {
    content: '';
    display: block;
    position: absolute;
    font-size: 0.75em;
    border: none;
    height: 1em;
    right: 20px;
    top: 50%;
    width: 1em;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*.selectboxit-container .selectboxit-btn:after {
    display: block;
    font-family: 'icomoon';
    content: "\e907";
    font-style: normal;
    font-weight: normal;
}*/

.selectboxit-container span,
.selectboxit-container .selectboxit-options a {
    height: auto;
    line-height: inherit;
    max-width: none !important;
}

.selectboxit-container .selectboxit-option-icon-container,
.selectboxit-container .selectboxit-arrow-container {
    display: none;
}

.selectboxit-container .selectboxit-options * {
    border-radius: 0;
}

.selectboxit-container .selectboxit-options .selectboxit-option .selectboxit-option-anchor {
    padding: 10px 10px 8px;
}

@media screen and (min-width: 768px) {
    .selectboxit-container .selectboxit-options .selectboxit-option .selectboxit-option-anchor {
        padding: 14px;
    }
}

.selectboxit-container .selectboxit-list {
    background: #ffffff;
    border: 1px solid #667790;
    border-top: 2px solid #667790;
    border-radius: 0;
}

.selectboxit-container .selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
    color: #000000;
    background: #EFF2F7;
}

.range-slider:before {
    content: "";
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 50%;
    margin-top: -3px;
}

.range-slider input[type="range"] {
    -webkit-appearance: none;
    /* Hides the slider so that custom slider can be made */
    width: 100%;
    /* Specific width is required for Firefox. */
    background: transparent;
    /* Otherwise white in Chrome */
    overflow: visible;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
}

.range-slider input[type="range"]:focus {
    outline: none;
    /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

.range-slider input[type="range"]::-moz-focus-outer {
    border: 0;
}

.range-slider input[type="range"]::-ms-track {
    width: 100%;
    cursor: pointer;
    /* Hides the slider so custom styles can be added */
    background: transparent;
    border-color: transparent;
    color: transparent;
    overflow: visible;
}

.range-slider input[type="range"]::-ms-tooltip {
    display: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    border: none;
    height: 46px;
    width: 46px;
    border-radius: 50%;
    background: #0B563D;
    cursor: pointer;
    box-shadow: 0px 6px 0px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.form--color-bg .range-slider input[type="range"]::-webkit-slider-thumb {
    background: #fff;
    box-shadow: none;
}

.range-slider input[type="range"]::-moz-range-thumb {
    border: none;
    height: 46px;
    width: 46px;
    border-radius: 50%;
    background: #0B563D;
    cursor: pointer;
    box-shadow: 0px 6px 0px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.form--color-bg .range-slider input[type="range"]::-moz-range-thumb {
    background: #fff;
    box-shadow: none;
}

.range-slider input[type="range"]::-ms-thumb {
    border: none;
    height: 46px;
    width: 46px;
    border-radius: 50%;
    background: #0B563D;
    cursor: pointer;
    box-shadow: 0px 6px 0px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.form--color-bg .range-slider input[type="range"]::-ms-thumb {
    background: #fff;
    box-shadow: none;
}

.range-slider input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 46px;
    cursor: pointer;
    box-shadow: none;
    background: transparent;
    outline: none;
    border-radius: 50%;
}

.range-slider input[type="range"]::-moz-range-track {
    width: 100%;
    height: 46px;
    cursor: pointer;
    box-shadow: none;
    background: transparent;
    outline: none;
    border-radius: 50%;
}

.range-slider input[type="range"]::-ms-track {
    width: 100%;
    height: 46px;
    cursor: pointer;
    box-shadow: none;
    background: transparent;
    outline: none;
    border-radius: 50%;
}

.range-slider input[type="range"]::-ms-fill-lower {
    background: transparent;
}

.form-row {
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .form-row {
        margin-bottom: 40px;
    }
}

.form-row:last-of-type {
    margin-bottom: 0;
}

fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

fieldset label {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1;
    color: #000000;
    display: inline-block;
    margin: 0;
}

@media screen and (min-width: 768px) {
    fieldset label {
        font-size: 18px;
        letter-spacing: 0px;
        line-height: 1;
    }
}

label, h3.label {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1;
    color: #000000;
    display: block;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    label, h3.label {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1;
        margin-bottom: 15px;
    }
}

label.error, h3.label.error {
    bottom: -1.4em;
    color: #d3135a;
    margin: 0;
    position: absolute;
    right: 0;
}

form .disabled label {
    font-weight: normal !important;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    cursor: default;
    color: #999999;
}

.form-message {
    background: rgba(0, 0, 0, 0.15);
    padding: 40px;
    margin-bottom: 24px;
}

.form-message.success:before {
    display: block;
    font-family: 'icomoon';
    content: "\e921";
    font-style: normal;
    font-weight: normal;
}

.form-message.success:before {
    background: #0B563D;
    border: 2px solid #ffffff;
    border-radius: 1em;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    padding: 0.25em;
    margin-bottom: 12px;
}

.form-message.error:before {
    display: block;
    font-family: 'icomoon';
    content: "\e948";
    font-style: normal;
    font-weight: normal;
}

.form-message.error:before {
    background: #d3135a;
    border-radius: 1em;
    color: #ffffff;
    display: inline-block;
    font-size: 24px;
    margin-bottom: 12px;
}

.form-message.warning:before {
    display: block;
    font-family: 'icomoon';
    content: "\e948";
    font-style: normal;
    font-weight: normal;
}

.form-message.warning:before {
    background: #0152E8;
    border-radius: 1em;
    color: #ffffff;
    display: inline-block;
    font-size: 24px;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .form-message {
        margin-bottom: 40px;
    }
}

.form-message h3 {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    font-weight: 700;
    margin-bottom: 6px;
}

@media screen and (min-width: 768px) {
    .form-message h3 {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.form-message p, .form-message a {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.form-message p p, .form-message a p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .form-message p, .form-message a {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.form--color-bg input[type='text'],
.form--color-bg input[type='number'],
.form--color-bg input[type='tel'],
.form--color-bg input[type='email'],
.form--color-bg textarea {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.form--color-bg input[type='text']::-webkit-input-placeholder,
.form--color-bg input[type='number']::-webkit-input-placeholder,
.form--color-bg input[type='tel']::-webkit-input-placeholder,
.form--color-bg input[type='email']::-webkit-input-placeholder,
.form--color-bg textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
    opacity: 0.6;
}

.form--color-bg input[type='text']::-moz-placeholder,
.form--color-bg input[type='number']::-moz-placeholder,
.form--color-bg input[type='tel']::-moz-placeholder,
.form--color-bg input[type='email']::-moz-placeholder,
.form--color-bg textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
    opacity: 0.6;
}

.form--color-bg input[type='text']:-ms-input-placeholder,
.form--color-bg input[type='number']:-ms-input-placeholder,
.form--color-bg input[type='tel']:-ms-input-placeholder,
.form--color-bg input[type='email']:-ms-input-placeholder,
.form--color-bg textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
    opacity: 0.6;
}

.form--color-bg input[type='text']:-moz-placeholder,
.form--color-bg input[type='number']:-moz-placeholder,
.form--color-bg input[type='tel']:-moz-placeholder,
.form--color-bg input[type='email']:-moz-placeholder,
.form--color-bg textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
    opacity: 0.6;
}

.form--color-bg input[type='text']:focus,
.form--color-bg input[type='number']:focus,
.form--color-bg input[type='tel']:focus,
.form--color-bg input[type='email']:focus,
.form--color-bg textarea:focus {
    border: 2px solid #ffffff;
}

.form--color-bg input[type='text'].error,
.form--color-bg input[type='number'].error,
.form--color-bg input[type='tel'].error,
.form--color-bg input[type='email'].error,
.form--color-bg textarea.error {
    border: 2px solid rgba(0, 0, 0, 0.4);
}

.form--color-bg input[type='file'] + label span {
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-right: none;
    color: #ffffff;
}

.form--color-bg input[type='radio'] + label:before {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.form--color-bg input[type='radio'] + label:after {
    background: #ffffff;
}

.form--color-bg input[type='checkbox'] + label:before {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.form--color-bg .selectboxit-container .selectboxit {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.form--color-bg .selectboxit-container .selectboxit-btn {
    color: #ffffff;
}

.form--color-bg .selectboxit-container .selectboxit-btn.selectboxit-focus {
    border: 2px solid #ffffff;
}

.form--color-bg fieldset label {
    color: #ffffff;
}

.form--color-bg label, .form--color-bg h3.label {
    color: #ffffff;
}

.form--color-bg label.error, .form--color-bg h3.label.error {
    color: rgba(0, 0, 0, 0.4);
}

.form--color-bg .form-message h3 {
    color: #ffffff;
}

.form--color-bg .form-message p, .form--color-bg .form-message a {
    color: #ffffff;
}

.form--black-bg input[type='text'],
.form--black-bg input[type='number'],
.form--black-bg input[type='tel'],
.form--black-bg input[type='email'],
.form--black-bg textarea {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.form--black-bg input[type='text']::-webkit-input-placeholder,
.form--black-bg input[type='number']::-webkit-input-placeholder,
.form--black-bg input[type='tel']::-webkit-input-placeholder,
.form--black-bg input[type='email']::-webkit-input-placeholder,
.form--black-bg textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
    opacity: 0.6;
}

.form--black-bg input[type='text']::-moz-placeholder,
.form--black-bg input[type='number']::-moz-placeholder,
.form--black-bg input[type='tel']::-moz-placeholder,
.form--black-bg input[type='email']::-moz-placeholder,
.form--black-bg textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
    opacity: 0.6;
}

.form--black-bg input[type='text']:-ms-input-placeholder,
.form--black-bg input[type='number']:-ms-input-placeholder,
.form--black-bg input[type='tel']:-ms-input-placeholder,
.form--black-bg input[type='email']:-ms-input-placeholder,
.form--black-bg textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
    opacity: 0.6;
}

.form--black-bg input[type='text']:-moz-placeholder,
.form--black-bg input[type='number']:-moz-placeholder,
.form--black-bg input[type='tel']:-moz-placeholder,
.form--black-bg input[type='email']:-moz-placeholder,
.form--black-bg textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
    opacity: 0.6;
}

.form--black-bg input[type='text']:focus,
.form--black-bg input[type='number']:focus,
.form--black-bg input[type='tel']:focus,
.form--black-bg input[type='email']:focus,
.form--black-bg textarea:focus {
    border: 2px solid #ffffff;
}

.form--black-bg input[type='text'].error,
.form--black-bg input[type='number'].error,
.form--black-bg input[type='tel'].error,
.form--black-bg input[type='email'].error,
.form--black-bg textarea.error {
    border: 2px solid #d3135a;
}

.form--black-bg input[type='file'] + label span {
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-right: none;
    color: #ffffff;
}

.form--black-bg input[type='radio'] + label:before {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.form--black-bg input[type='radio'] + label:after {
    background: #ffffff;
}

.form--black-bg input[type='checkbox'] + label:before {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.form--black-bg .selectboxit-container .selectboxit {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.form--black-bg .selectboxit-container .selectboxit-btn {
    color: #ffffff;
}

.form--black-bg .selectboxit-container .selectboxit-btn.selectboxit-focus {
    border: 2px solid #ffffff;
}

.form--black-bg fieldset label {
    color: #ffffff;
}

.form--black-bg label, .form--black-bg h3.label {
    color: #ffffff;
}

.form--black-bg label.error, .form--black-bg h3.label.error {
    color: #d3135a;
}

.form--black-bg .form-message h3 {
    color: #ffffff;
}

.form--black-bg .form-message p, .form--black-bg .form-message a {
    color: #ffffff;
}

.pac-container {
    margin-top: 2px;
}

.pac-container .pac-item {
    line-height: 50px;
    padding: 0 15px;
    cursor: pointer;
    font-size: 18px;
}

.pac-container .pac-item-query {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
}

.pac-container .pac-matched {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
}

.pac-container .pac-icon {
    margin-top: 16px;
    display: none;
}

.pac-logo:after {
    display: none;
}

* {
    box-sizing: border-box;
    position: relative;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#livechat-compact-container[style],
#livechat-full[style] {
    z-index: 2 !important;
}

a:hover {
    text-decoration: underline;
}

body {
    transition: all .4s ease-in-out;
}

body.no-anim {
    transition: none;
}

body #main {
    position: relative;
    left: 0px;
    transition: left .4s ease-in-out;
    -webkit-font-smoothing: antialiased;
}

body #main, body .filter, body .hero {
    display: block;
    transition: .4s ease-in-out;
}

body #main .hero, body .filter .hero, body .hero .hero {
    transition: none;
    opacity: 1 !important;
}

body.menu-open, body.search-open, body.filter-open, body.quote-builder-open, body.registration-overlay-open, body.localisation-open, body.save-quote-open {
    overflow: hidden;
    height: 100vh;
    background: black;
}

body.menu-open.ios, body.search-open.ios, body.filter-open.ios, body.quote-builder-open.ios, body.registration-overlay-open.ios, body.localisation-open.ios, body.save-quote-open.ios {
    position: fixed;
    width: 100vw;
}

body.menu-open #main, body.search-open #main, body.filter-open #main, body.quote-builder-open #main, body.registration-overlay-open #main, body.localisation-open #main, body.save-quote-open #main {
    overflow: hidden;
    position: relative;
    left: 0;
    opacity: .55;
}

@media screen and (min-width: 768px) {
    body.menu-open #main, body.search-open #main, body.filter-open #main, body.quote-builder-open #main, body.registration-overlay-open #main, body.localisation-open #main, body.save-quote-open #main {
        left: 0;
    }
}

body.menu-open .filter, body.menu-open .hero {
    opacity: .55;
}

body.menu-open .global-side-menu {
    visibility: visible;
    right: 0;
}

#main {
    background-color: #ffffff;
}

#main::after {
    clear: both;
    content: "";
    display: table;
}

.plan-detail #main,
.page-product-catalog #main {
    background: #f4f4f4;
}

.dev-spacer {
    min-height: 800px;
    padding: 120px 0;
    background: #f4f4f4;
}

ul::after {
    clear: both;
    content: "";
    display: table;
}

.visually-hidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.hidden {
    display: none !important;
}

.no-scroll {
    overflow: hidden !important;
    max-width: 100vw;
    max-height: 100vh;
}

.container {
    max-width: 1370px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.container::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (min-width: 768px) {
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media screen and (min-width: 1024px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (min-width: 768px) {
    .mobile-only {
        display: none;
    }
}

.color-scheme--red .hero {
    background-color: #d3135a;
}

.color-scheme--red .hero_arrow:before {
    color: #d3135a;
}

.color-scheme--green .hero {
    background-color: #0B563D;
}

.color-scheme--green .hero_arrow:before {
    color: #0B563D;
}

.color-scheme--blue .hero {
    background-color: #002466;
}

.color-scheme--blue .hero_arrow:before {
    color: #002466;
}

.color-scheme--blue .hero_breadcrumbs li, .color-scheme--blue .hero_breadcrumbs li::after {
    color: #c0d4fe;
}

.color-scheme--blue .hero_breadcrumbs li:last-child, .color-scheme--blue .hero_breadcrumbs li::after:last-child {
    color: #000000;
}

.color-scheme--orange .hero {
    background-color: #0152E8;
}

.color-scheme--orange .hero_arrow:before {
    color: #0152E8;
}

.color-scheme--blue .hero {
    background-color: #002466;
}

.color-scheme--pink .hero {
    background-color: #d3135a;
}

.color-scheme--forest .hero {
    background-color: #0f955a;
}

.loader {
    display: none;
    width: 50px;
    height: 50px;
    background: url(/etc.clientlibs/enel-comm-common/clientlibs/clientlib-site/resources/image/Enel_Loader_white_100x100.gif);
    background-size: cover;
    position: absolute;
    left: 50%;
    margin-left: -50px;
    top: 100px;
}

.loading .loader {
    display: block;
}

.slick-dots {
    position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    padding: 5px;
    cursor: pointer;
    color: white;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 100px;
    outline: none;
    transition: all 0.6s ease;
}

.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
}

.slick-dots li.slick-active button {
    background-color: #d3135a;
}

.slick-dots li.slick-active button:active {
    -webkit-tap-highlight-color: transparent;
}

.inline-chat #livechat-compact-container {
    display: none;
}

button {
    -webkit-appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
}

.btn-cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #000;
    color: #000;
}

.btn-cta:hover, .btn-cta._hover,
a:hover .btn-cta {
    text-decoration: none;
}

.btn-cta:hover, a:hover .btn-cta {
    color: #fff;
    background-color: #000;
}

.btn-cta--clear {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
    transition: background-color 100ms linear;
}

.btn-cta--clear:hover, .btn-cta--clear._hover,
a:hover .btn-cta--clear {
    text-decoration: none;
}

.btn-cta--clear:hover, .btn-cta--clear._hover,
a:hover .btn-cta--clear {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-cta--alt {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #d3135a;
    color: #d3135a;
}

.btn-cta--alt:hover, .btn-cta--alt._hover,
a:hover .btn-cta--alt {
    text-decoration: none;
}

.btn-cta--alt:hover, .btn-cta--alt._hover,
a:hover .btn-cta--alt {
    background-color: rgba(211, 19, 89, 0.2);
}

.btn-cta--alt--white {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
}

.btn-cta--alt--white:hover, .btn-cta--alt--white._hover,
a:hover .btn-cta--alt--white {
    text-decoration: none;
}

.btn-cta--alt--white:hover, .btn-cta--alt--white._hover,
a:hover .btn-cta--alt--white {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-cta--blue {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #002466;
    border-color: #002466;
    color: #ffffff;
}

.btn-cta--blue:hover, .btn-cta--blue._hover,
a:hover .btn-cta--blue {
    text-decoration: none;
}

.btn-cta--blue:hover, .btn-cta--blue._hover,
a:hover .btn-cta--blue {
    background-color: #ffffff;
    border-color: #002466;
    color: #002466;
}

.btn-cta--pink {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #d3135a;
    color: #ffffff;
    background-color: #d3135a;
}

.btn-cta--pink:hover, .btn-cta--pink._hover,
a:hover .btn-cta--pink {
    text-decoration: none;
}

.btn-cta--pink:hover, .btn-cta--pink._hover,
a:hover .btn-cta--pink {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

@media screen and (max-width: 767px) {
    .btn-cta__wrapper .btn-cta {
        width: 100%;
    }
}

/* inject:imports */
.article-carousel {
    width: 100%;
    font-size: 0px;
}

.article-carousel .carousel {
    background-color: #ffffff;
}

@media screen and (max-width: 767px) {
    .article-carousel .carousel {
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 768px) {
    .article-carousel_inner {
        z-index: 1;
    }

    .article-carousel_inner:before {
        content: '';
        width: 100%;
        height: 5px;
        position: absolute;
        z-index: -1;
        top: -5px;
        background-color: rgba(0, 0, 0, 0.2);
    }
}

@media screen and (min-width: 1024px) {
    .article-carousel {
        margin-bottom: -70px;
        padding: 0 30px;
    }

    .article-carousel_inner {
        position: relative;
        top: -70px;
        max-width: 1280px;
        margin: 0px auto;
    }

    .article-carousel_inner:before {
        content: '';
        width: auto;
        height: 100%;
        left: -5px;
        right: -5px;
        bottom: 5px;
    }
}

.article-content {
    padding: 30px 0 40px;
}

@media screen and (min-width: 768px) {
    .article-content {
        padding: 60px 0 90px;
    }
}

@media screen and (min-width: 1024px) {
    .article-content {
        padding-top: 100px;
    }
}

.article-content_inner {
    display: block;
    margin: 0px auto;
}

.article-content_inner .pull-quote {
    margin: 0px 0px 60px 0px;
}

@media screen and (min-width: 768px) {
    .article-content_inner .pull-quote {
        margin: 80px 0px 60px 0px;
    }
}

.article-content_inner .full-bleed-image {
    margin: 0px 0px 40px 0px;
}

@media screen and (min-width: 768px) {
    .article-content_inner .full-bleed-image {
        margin: 0px 0px 60px 0px;
    }
}

.article-content_inner .full-bleed-image {
    margin: 0px 0px 60px 0px;
}

@media screen and (min-width: 1024px) {
    .article-content_inner .rich-text {
        display: block;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }

    .article-content_inner .rich-text_inner {
        padding: 0px 13%;
    }

    .article-content_inner .rich-text--social {
        display: block;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
    }

    .article-content_inner .rich-text--social .rich-text_inner {
        /*padding: 0px 13% 0 0;*/
        padding: 0px 0 0 0;
    }

    .article-content_inner .pull-quote {
        display: block;
        max-width: 1280px;
        margin: 85px auto 70px;
    }

    .article-content_inner .full-bleed-image {
        display: block;
        margin: 90px auto;
    }

    .article-content_inner .tags {
        display: block;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }

    .article-content_inner .tags__inner {
        padding: 0px 13%;
    }
}

.article-links_header h2 {
    margin-bottom: 15px;
    text-align: center;
}

@media screen and (min-width: 1024px) {
    .article-links_header h2 {
        margin-bottom: 40px;
    }
}

.article-links_carousel {
    overflow: hidden;
    display: block;
    transition: all 1s ease;
    padding-bottom: 60px;
}

@media screen and (min-width: 768px) {
    .article-links_carousel {
        margin: 0 -10px;
    }
}

.article-links_carousel--loading {
    display: none;
    visibility: hidden;
}

.article-links_carousel .slick-slide {
    outline: none;
}

.article-links_carousel .slick-slider {
    margin-bottom: 30px;
}

.article-youtube-player {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .article-youtube-player_inner:before {
        content: '';
        width: 100%;
        height: 5px;
        position: absolute;
        z-index: 0;
        top: -5px;
        background-color: rgba(0, 0, 0, 0.2);
    }
}

@media screen and (min-width: 1024px) {
    .article-youtube-player {
        margin-bottom: -70px;
        padding: 0 30px;
    }

    .article-youtube-player_inner {
        position: relative;
        top: -70px;
        max-width: 1280px;
        margin: 0px auto;
        max-height: 720px;
    }

    .article-youtube-player_inner:before {
        content: '';
        width: auto;
        height: 100%;
        left: -5px;
        right: -5px;
        bottom: 5px;
    }
}

.bento {
    background: #f2f2f2;
}

.bento__heading {
    text-align: center;
    padding-bottom: 35px;
    padding-top: 70px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f2f2f2+100 */
    background: #ffffff;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f2f2f2', GradientType=0);
    /* IE6-9 */
}

.bento__heading .eyebrow {
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .bento__heading {
        padding-top: 200px;
        padding-bottom: 80px;
    }

    .bento__heading .eyebrow {
        margin-bottom: 50px;
    }
}

.bento__content {
    width: 100%;
    margin: 0 auto;
    max-width: 1600px;
}

.bento__content::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (min-width: 768px) {
    .bento__content {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.bento__item {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    background: #fff;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vw;
}

.bento__item p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .bento__item {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.bento__item__inner {
    padding: 30px;
    margin: 0 auto;
    width: 100%;
}

.bento__item.article {
    border-bottom: 1px solid #dddddd;
}

.bento__item.image-small .bento__item__inner {
    padding: 0;
}

.bento__item.image-small img {
    width: 100%;
    height: auto;
    display: block;
    padding: 0;
}

.bento__item.image-large {
    padding-top: 100%;
}

.bento__item.image-large .bento__item__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    max-width: none;
    padding: 0;
}

.bento__item.image-large img {
    min-height: 100%;
    width: auto;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.bento__item__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .bento__item__title {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.bento__item.infographic {
    color: #fff;
    text-align: center;
}

.bento__item.infographic img {
    margin: 0 auto 20px;
    max-width: 80%;
    width: auto;
}

@media screen and (min-width: 768px) {
    .bento__item {
        width: 50%;
        min-height: 50vw;
    }

    .bento__item__inner {
        max-width: 400px;
    }

    .bento__item.image-large {
        padding-top: 50%;
    }

    .bento__item.image-large .bento__item__inner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        max-width: none;
        padding: 0;
    }

    .bento__item.image-large img {
        height: 100%;
        width: auto;
        position: absolute;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    .bento__item.image-small {
        padding-top: 50%;
    }

    .bento__item.image-small .bento__item__inner {
        max-width: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .bento__item.image-small img {
        height: 100%;
    }

    .bento__item.article {
        border: none;
    }
}

@media screen and (min-width: 1024px) {
    .bento__item {
        width: 33.333%;
        min-height: 33.333vw;
    }

    .bento__item.image-large {
        width: 66.666%;
        padding-top: 33.333%;
    }

    .bento__item.image-small {
        padding-top: 33.333%;
    }
}

@media screen and (min-width: 1600px) {
    .bento__item {
        min-height: 0;
    }
}

.bento__item img {
    width: 100%;
    height: auto;
}

.collage {
    background: #fff;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    overflow: hidden;
}

.collage p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .collage {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.collage__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #002466;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .collage__title {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.collage__link {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    text-transform: uppercase;
}

.collage__link:hover {
    text-decoration: underline;
}

.collage__image-col {
    margin: 0 -25px;
}

.collage__image-col:before {
    content: "";
    width: 32px;
    height: 32px;
    border: 16px solid transparent;
    border-top-color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -16px;
    z-index: 1;
}

.collage__image-col .image_2 {
    display: none;
}

.collage__image-col img {
    display: block;
    width: 100%;
    height: auto;
}

.collage__text-col {
    padding: 50px 15px 30px;
}

@media screen and (min-width: 1024px) {
    .collage .container {
        padding-top: 100px;
        padding-bottom: 100px;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .collage__image-col {
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        width: 50%;
        margin: 0;
    }

    .collage__image-col:before {
        display: none;
    }

    .collage__image-col .image_2 {
        display: inline-block;
        margin-top: -100px;
        float: right;
        margin-right: 30px;
        width: 70%;
    }

    .collage__text-col {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        width: 50%;
        padding: 0 120px 0 80px;
    }

    .collage__title {
        max-width: 80%;
    }

    .collage .image_1 {
        -webkit-transform: translate(0, 60px);
        -ms-transform: translate(0, 60px);
        transform: translate(0, 60px);
        display: none;
        transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .collage .image_2 {
        -webkit-transform: translate(0, 100px);
        -ms-transform: translate(0, 100px);
        transform: translate(0, 100px);
        display: none;
        transition: all 1.6s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .collage.in-view .image_1, .collage.in-view .image_2 {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        display: block;
    }
}

.contact-form {
    background: #f4f4f4;
}

.contact-form .container {
    overflow: hidden;
}

.contact-form__header {
    margin: 60px 0 40px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .contact-form__header {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-right: 0;
        margin-left: 25.58941%;
        margin-top: 120px;
        margin-bottom: 50px;
    }

    .contact-form__header:last-child {
        margin-right: 0;
    }
}

.contact-form__cta {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .contact-form__cta {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%;
    }

    .contact-form__cta:last-child {
        margin-right: 0;
    }
}

.contact-form__cta button {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
    margin-bottom: 60px;
}

.contact-form__cta button:hover, .contact-form__cta button._hover,
a:hover .contact-form__cta button {
    text-decoration: none;
}

.contact-form__cta button:hover, .contact-form__cta button._hover,
a:hover .contact-form__cta button {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

@media screen and (min-width: 768px) {
    .contact-form__cta button {
        margin-bottom: 120px;
    }
}

.contact-form__form {
    display: none;
    margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
    .contact-form__form {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-right: 0;
        margin-left: 25.58941%;
        display: none;
        margin-bottom: 120px;
    }

    .contact-form__form:last-child {
        margin-right: 0;
    }
}

.contact-form__form button {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
    display: block;
}

.contact-form__form button:hover, .contact-form__form button._hover,
a:hover .contact-form__form button {
    text-decoration: none;
}

.contact-form__form button:hover, .contact-form__form button._hover,
a:hover .contact-form__form button {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

.contact-options {
    background: #ffffff;
    padding: 30px 0;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.contact-options p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .contact-options {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.contact-options__header {
    text-align: center;
    margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
    .contact-options__header {
        margin-bottom: 60px;
    }
}

.contact-options .container {
    padding: 0;
}

@media screen and (min-width: 1024px) {
    .contact-options {
        padding: 20px 0 140px 0;
    }
}

.contact-options__item {
    text-align: center;
    padding: 0 15px;
    padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .contact-options__item {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .contact-options__item {
        padding: 0 30px;
    }
}

@media screen and (min-width: 1024px) {
    .contact-options__item {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
        padding: 0 60px;
    }

    .contact-options__item:last-child {
        margin-right: 0;
    }

    .contact-options__item:nth-child(3) {
        margin-right: 0;
    }
}

.contact-options .icon {
    font-size: 70px;
    margin-bottom: 10px;
    display: inline-block;
}

.contact-options .icon.green {
    color: #0B563D;
}

.contact-options .icon.red {
    color: #d3135a;
}

.contact-options .icon.blue {
    color: #002466;
}

.contact-options .icon.sky {
    color: #002466;
}

.contact-options .icon.orange {
    color: #0152E8;
}

.contact-options .icon.pink {
    color: #d3135a;
}

.contact-options .eyebrow {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .contact-options .eyebrow {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

.contact-options p {
    color: #0E141A;
}

.contact-options__heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .contact-options__heading {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.contact-options .btn-cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #0E141A;
    color: #0E141A;
}

.contact-options .btn-cta:hover, .contact-options .btn-cta._hover,
a:hover .contact-options .btn-cta {
    text-decoration: none;
}

.contact-options .btn-cta:hover, .contact-options .btn-cta._hover,
a:hover .contact-options .btn-cta {
    background-color: rgba(34, 34, 34, 0.2);
}

.contact-options .link {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    display: inline-block;
    text-transform: none;
}

@media screen and (min-width: 768px) {
    .contact-options .link {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.content-scroller {
    background: #fff;
    overflow: hidden;
}

@media screen and (max-width: 1023px) {
    .content-scroller__inner {
        background: #fff !important;
    }
}

.content-scroller .text--page-heading {
    color: #000;
    line-height: 1.13;
    margin-bottom: 20px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .content-scroller .text--page-heading {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (min-width: 1024px) {
    .content-scroller .has-background .text--page-heading {
        color: #fff !important;
    }

    .content-scroller .has-background .content-scroller__item__inner {
        color: #fff;
    }

    .content-scroller .has-background .content-scroller__item__inner p {
        color: #fff;
    }
}

.content-scroller .no-background {
    background: #fff;
}

.content-scroller__item {
    padding-top: 40px;
}

@media screen and (min-width: 1024px) {
    .content-scroller__item {
        padding-top: 0;
    }
}

.content-scroller__item--hero {
    margin-top: 0;
    min-height: 100vh;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.content-scroller__item__inner {
    padding: 0 30px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.content-scroller__media {
    margin: 0 -30px;
}

.content-scroller__media img {
    width: 100%;
    height: auto;
    display: block;
}

.content-scroller__media:before {
    content: "";
    width: 32px;
    height: 32px;
    border: 16px solid transparent;
    border-top-color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -16px;
    z-index: 1;
}

.content-scroller__media--video {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.content-scroller__media--video video {
    max-width: 100%;
    height: auto;
    display: inline-block;
    margin: 0 auto;
}

.content-scroller__media--video img.fallback {
    display: none;
}

.ios .content-scroller__media--video video, .android .content-scroller__media--video video {
    display: none;
}

.ios .content-scroller__media--video img.fallback, .android .content-scroller__media--video img.fallback {
    display: inline-block;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
}

.content-scroller .cta {
    margin: 20px 0;
}

@media screen and (max-width: 767px) {
    .content-scroller .cta {
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    .content-scroller .has-background .cta {
        font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 700;
        font-style: normal;
        transition: all 100ms linear;
        display: inline-block;
        font-size: 12px;
        min-width: 160px;
        padding: 17px 40px 17px;
        text-align: center;
        text-transform: uppercase;
        border-width: 2px;
        border-style: solid;
        font-size: 12px;
        letter-spacing: 0.6px;
        line-height: 1.33333;
        border-color: #ffffff;
        color: #ffffff;
        transition: background-color 100ms linear;
    }

    .content-scroller .has-background .cta:hover, .content-scroller .has-background .cta._hover,
    a:hover .content-scroller .has-background .cta {
        text-decoration: none;
    }

    .content-scroller .has-background .cta:hover, .content-scroller .has-background .cta._hover,
    a:hover .content-scroller .has-background .cta {
        background-color: rgba(255, 255, 255, 0.2);
    }
}

.content-scroller .rich-text {
    padding: 0;
    margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .content-scroller .rich-text {
        margin-bottom: 60px;
    }
}

.content-scroller .rich-text .rich-text_inner, .content-scroller .rich-text .rich-text_inner p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.content-scroller .rich-text .rich-text_inner p, .content-scroller .rich-text .rich-text_inner p p {
    margin-bottom: 30px;
}

.content-scroller p span.color-scheme--black {
    color: #111;
}

.content-scroller p a.color-scheme--black {
    color: #111;
}

@media screen and (min-width: 768px) {
    .content-scroller .rich-text .rich-text_inner, .content-scroller .rich-text .rich-text_inner p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.content-scroller .pull-quote {
    margin-bottom: 60px;
}

.content-scroller .pull-quote_inner {
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.content-scroller .pull-quote p.text--pull-quote-author {
    color: rgba(0, 0, 0, 0.4);
}

.content-scroller .pull-quote:before {
    width: 35px;
}

@media screen and (min-width: 768px) {
    .content-scroller .pull-quote_inner {
        padding-left: 0;
    }
}

@media screen and (min-width: 1024px) {
    .content-scroller .pull-quote:before {
        background: #fff;
    }
}

@media screen and (min-width: 1280px) {
    .content-scroller .pull-quote {
        margin-left: -65px;
    }
}

.content-scroller .component.accordian-table .accordian-table_ct {
    margin: 0;
}

.content-scroller__text {
    padding: 20px 0 40px;
}

.content-scroller__text img {
    width: 100%;
    height: auto;
}

.content-scroller .renewable-sources_legend {
    margin: 40px 0;
}

@media screen and (min-width: 1024px) {
    .content-scroller .renewable-sources_legend {
        max-width: 270px;
        margin: 40px 0 60px;
    }
}

@media screen and (min-width: 1024px) {
    .content-scroller__inner {
        transition: background 0.8s linear;
    }

    .content-scroller__item {
        margin-top: 0;
        padding: 130px 0;
        min-height: 50vh;
        -webkit-align-items: center;
        -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
        position: static;
    }

    .content-scroller__item--hero {
        min-height: 100vh;
    }

    .content-scroller__item:first-child:last-child {
        min-height: 100vh;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .content-scroller__item__inner {
        position: static;
        width: 50%;
    }

    .content-scroller__text {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

    .content-scroller__media {
        position: fixed;
        height: 100vh;
        right: 0;
        bottom: 0;
        width: 50vw;
        overflow: hidden;
        margin: 0;
    }

    .content-scroller__media picture {
        position: static;
    }

    .content-scroller__media img {
        min-height: 100%;
        min-width: 100%;
        width: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .content-scroller__media:before {
        display: none;
    }

    .content-scroller .content-scroller__item:first-child .content-scroller__item__inner {
        padding-top: 20vh;
    }

    .content-scroller .content-scroller__item:last-child .content-scroller__item__inner {
        padding-bottom: 20vh;
    }

    .content-scroller .content-scroller__item:first-child .content-scroller__media {
        position: absolute;
        top: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .content-scroller.scrolled-into .content-scroller__item:first-child .content-scroller__media {
        position: fixed;
    }

    .content-scroller.scrolled-past .content-scroller__item:last-child .content-scroller__media {
        position: absolute;
        top: auto;
        bottom: 0;
    }

    .content-scroller__media {
        transition: -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    .content-scroller__media.active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .content-scroller__media.exit-up {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    .content-scroller__media.exit-down {
        -webkit-transform: translate3d(0, -100%, 0) !important;
        transform: translate3d(0, -100%, 0) !important;
    }
}

.filter {
    background: #f4f4f4;
}

.filter input[type='radio'] + label,
.filter input[type='checkbox'] + label {
    padding-right: 0;
}

.filter__menu {
    border-bottom: 1px solid #0e141a;
}

.filter__menu__wrap {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0;
}

@media screen and (min-width: 768px) {
    .filter__menu {
        padding: 15px 0;
    }
}

.filter__sort {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.filter .selectboxit-container {
    margin-left: 12px;
    width: auto;
}

.filter__menu label, .filter__group__heading {
    text-transform: uppercase;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    margin: 10px 0;
}

.filter__sort label {
    top: 1px;
    display: inline;
}

.ios .filter__sort label {
    top: 0;
}

.filter__num-items {
    color: #999999;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.filter__filters {
    display: none;
}

.filter__filters label {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1;
    cursor: pointer;
    display: inline-block;
}

@media screen and (min-width: 768px) {
    .filter__filters {
        position: static;
        width: auto;
        height: auto;
    }

    .filter__filters > .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (min-width: 768px) {
    .filter__groups {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.filter__group .form-row {
    margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
    .filter__group {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        float: none;
        margin: 0;
    }

    .filter__group:last-child {
        margin-right: 0;
    }

    .filter__group--large {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        float: none;
    }

    .filter__group--large:last-child {
        margin-right: 0;
    }
}

@media screen and (min-width: 1024px) {
    .filter__group {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 14.70196%;
        float: none;
    }

    .filter__group:last-child {
        margin-right: 0;
    }

    .filter__group--large {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 40.29137%;
        float: none;
    }

    .filter__group--large:last-child {
        margin-right: 0;
    }

    .filter__group--large .form-row {
        width: 50%;
        float: left;
    }

    .filter__group--published .form-row {
        width: 100%;
        float: none;
    }

    .filter__group--published .col {
        width: 50%;
        float: left;
    }
}

.filter__heading {
    display: none;
}

.filter__controls {
    display: none;
}

@media screen and (max-width: 767px) {
    .filter__filters {
        position: fixed;
        top: 0;
        height: 100%;
        left: 0;
        right: 0;
        background: #f4f4f4;
        z-index: 10000;
    }

    .filter__filters__wrap {
        bottom: 0;
        height: 100%;
        width: 100%;
        overflow: scroll;
        position: absolute;
        padding: 0;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .filter__heading, .filter__group {
        display: block;
        padding: 0 15px;
    }

    .filter__controls {
        display: block;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .filter__group__heading {
        cursor: pointer;
    }

    .filter__heading {
        padding: 15px;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .filter__heading__text {
        font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.33333;
    }

    .filter__groups {
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        overflow: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .filter .btn-filter-cancel {
        color: #d3135a;
        font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 12px;
        letter-spacing: 0.012px;
        line-height: 10.41667%;
        text-transform: uppercase;
        position: absolute;
        right: 15px;
        top: 50%;
        margin-top: -5px;
        height: 17px;
        width: 24px;
    }

    .filter .btn-filter-cancel .cross-icon:before, .filter .btn-filter-cancel .cross-icon:after {
        background: #d3135a;
    }

    .filter__group {
        background: #fff;
        border-bottom: 1px solid #dddddd;
        padding: 0;
    }

    .filter__group__heading {
        margin: 0;
        padding: 15px;
    }

    .filter__group__heading:after {
        content: "+";
        position: absolute;
        right: 15px;
        top: 50%;
        margin-top: -12px;
        color: #d3135a;
    }

    .filter__group__content {
        padding: 15px;
    }

    .filter__group.open .filter__group__heading:after {
        content: "\2014";
        right: 12px;
    }

    .filter__controls .container {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 15px;
    }

    .filter__controls .container button {
        min-width: 140px;
    }

    .filter__controls .container button:last-child {
        margin-left: auto;
    }
}

.filter .datepickers {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 5px;
}

.filter .datepickers .labels {
    padding-right: 20px;
    text-align: right;
}

.filter .datepickers .labels label {
    display: block;
    margin-bottom: 5px;
}

.filter .datepickers .inputs input {
    margin-bottom: 5px;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    background: transparent;
    border: none;
    border-bottom: 2px solid #dddddd;
    outline: none;
    display: block;
    border-radius: 0;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .filter .datepickers .inputs input {
        width: 100%;
    }
}

.pika-single {
    z-index: 1000000;
}

.pika-single * {
    border-radius: 0;
}

.is-today .pika-button {
    color: #d3135a;
}

.pika-button:hover {
    background: #d3135a;
    color: #fff;
    box-shadow: none;
}

.is-selected .pika-button {
    background: #d3135a;
    color: #fff;
    box-shadow: none;
}

.is-selected .pika-button:hover {
    color: #fff !important;
}

.footer-contact {
    text-align: center;
    background: #002466;
    color: #fff;
    padding: 70px 0;
}

.footer-contact__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: white;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .footer-contact__title {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.footer-contact__description {
    margin-bottom: 30px;
}

.footer-contact__ctas {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-contact__ctas .btn-cta {
    margin-bottom: 10px;
}

.footer-contact__ctas .link {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    text-transform: uppercase;
    padding: 17px 40px 17px;
}

.footer-contact__ctas .link:hover {
    text-decoration: underline;
}

@media screen and (min-width: 1024px) {
    .footer-contact {
        padding: 120px 0;
    }
}

.footer-hero-cta {
    text-align: center;
    background: #002466;
    color: #fff;
    padding: 70px 0;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.footer-hero-cta p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .footer-hero-cta {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.footer-hero-cta.live-chat-cta {
    background: #0B563D;
}

.footer-hero-cta__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: white;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .footer-hero-cta__title {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (min-width: 1024px) {
    .footer-hero-cta {
        padding: 120px 0;
    }
}

.footer-hero-cta h2 {
    margin-bottom: 6px;
}

.footer-hero-cta p {
    margin-bottom: 40px;
}

.footer-hero-cta p:last-child {
    margin: 0;
}

.footer-hero-cta .cta-holder {
    margin-bottom: 20px;
}

.footer-hero-cta .cta-holder:last-child {
    margin: 0;
}

.for-homes-hero__cta {
    display: block;
    padding: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: #002466;
    background: linear-gradient(90deg, #002466 0%, #36a6ea 100%);
    color: #fff;
    z-index: 1;
    transition: 0.3s -webkit-transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: 0.3s transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: 0.3s transform cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.3s -webkit-transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.for-homes-hero__cta.unstick {
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
}

.for-homes-hero__cta .text1 {
    display: none;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    font-size: 24px !important;
}

@media screen and (min-width: 768px) {
    .for-homes-hero__cta .text1 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.for-homes-hero__cta .text2 {
    text-transform: uppercase;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.72px;
    line-height: 1.33333;
    display: inline-block;
}

.for-homes-hero__cta .icon-arrow {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    font-size: 11px;
}

@media screen and (min-width: 1024px) {
    .for-homes-hero__cta {
        position: absolute;
        width: auto;
        bottom: auto;
        left: auto;
        text-align: left;
        min-width: 310px;
        padding: 30px;
        padding-right: 60px;
        top: 100%;
        margin-top: -150px;
        right: 0;
        box-shadow: 0 5px 0px rgba(0, 0, 0, 0.1);
        -webkit-transform: translate(10px, 0);
        -ms-transform: translate(10px, 0);
        transform: translate(10px, 0);
    }

    .for-homes-hero__cta .text1 {
        display: block;
        margin-bottom: 0;
        color: #fff;
    }

    .for-homes-hero__cta .icon-arrow {
        position: absolute;
        right: 15px;
        top: 50%;
        margin-top: -10px;
        display: none;
        transition: 0.2s opacity;
        margin-left: 0;
        font-size: 1em;
    }

    .for-homes-hero__cta:hover {
        text-decoration: none;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .for-homes-hero__cta:hover .icon-arrow {
        display: block;
    }

    .for-homes-hero__cta.sticky {
        position: fixed;
        margin-top: 0;
        top: 20px;
    }

    .for-homes-hero__cta.sticky.unstick {
        -webkit-transform: translate(10px, -200%);
        -ms-transform: translate(10px, -200%);
        transform: translate(10px, -200%);
    }
}

.for-homes-hero {
    background: #d3135a;
    color: #fff;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #fff;
    z-index: 3 !important;
}

.for-homes-hero p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .for-homes-hero {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.for-homes-hero__inner {
    min-height: 100vh;
    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    .for-homes-hero__inner {
        max-height: 1000px;
        min-height: 0;
        height: calc(100vh - 40px);
    }
}

.for-homes-hero__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: white;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .for-homes-hero__title {
        font-size: 60px;
        letter-spacing: -1.2px;
        line-height: 1.08333;
    }
}

.for-homes-hero__content__wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}

.for-homes-hero__content__wrapper .container {
    -webkit-flex: 1 0 0;
    -ms-flex: 1 0 0;
    flex: 1 0 0;
}

.for-homes-hero__content {
    width: 100%;
    max-width: 720px;
}

@media screen and (max-width: 767px) {
    .for-homes-hero__content {
        padding-bottom: 40px;
    }
}

.for-homes-hero .eyebrow {
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .for-homes-hero .eyebrow {
        margin-bottom: 60px;
    }
}

.footer-container {
    background: #0E141A;
    color: #666666;
    padding: 0 30px 40px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .footer-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (min-width: 1024px) {
    .footer-container {
        padding: 10px 30px 40px;
    }
}

.footer__localisation {
    background: #000000;
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .footer__localisation {
        display: none;
    }
}

.footer__localisation button {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    font-size: 10px;
    letter-spacing: 0px;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    width: 100%;
    padding: 10px 15px;
}

@media screen and (min-width: 768px) {
    .footer__localisation button {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.footer__localisation button .flex-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__localisation button .flex-wrap:after {
    display: block;
    font-family: 'icomoon';
    content: "\e905";
    font-style: normal;
    font-weight: normal;
}

.footer__localisation button .flex-wrap:after {
    display: inline-block;
}

@media screen and (min-width: 768px) {
    .footer__localisation button {
        font-size: 10px;
        letter-spacing: 0px;
        line-height: 1;
        padding: 10px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .footer__localisation button {
        padding: 10px 30px;
    }
}

.footer__localisation button span {
    font-size: 10px;
    letter-spacing: 0px;
    line-height: 1;
    color: #999999;
    margin: 10px 1em 10px 0;
}

.footer__localisation button strong {
    font-size: 10px;
    letter-spacing: 0px;
    line-height: 1;
    color: #ffffff;
    margin: 10px 1em 10px 0;
}

.footer__localisation button strong + strong {
    border-left: 1px solid #ffffff;
    padding-left: 1em;
}

.footer-content {
    max-width: 1080px;
    margin: auto;
}

.footer-section {
    -webkit-flex: 1 100% auto;
    -ms-flex: 1 100% auto;
    flex: 1 100% auto;
    padding: 40px 0;
    position: relative;
}

.footer-section:before {
    content: '';
    display: block;
    position: absolute;
    background: #666666;
    height: 1px;
    top: 0;
    width: 100%;
}

.footer-section:first-child:before {
    display: none;
}

.footer-section p {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.33333;
    margin: 0;
}

.footer-social ul {
    margin-top: 18px;
}

.footer-social li {
    display: inline-block;
    margin-right: 20px;
}

.footer-social li:last-child {
    margin-right: 0;
}

.footer-social a {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid #EFF2F7;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 32px;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    transition: all 100ms linear;
}

.footer-social a:before {
    color: #EFF2F7;
    font-size: 15px;
    transition: all 100ms linear;
}

.footer-social a:hover {
    background: #EFF2F7;
    text-decoration: none;
}

.footer-social a:hover:before {
    color: #0E141A;
}

.footer-social span {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.footer-legal li:before, .footer-legal-links li:first-child:after {
    content: '';
    display: block;
    position: absolute;
    height: 14px;
    top: 3px;
    width: 1px;
}

.footer-legal {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .footer-legal {
        padding-bottom: 10px;
    }
}

.footer-legal li {
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1.53846;
    display: inline-block;
    float: left;
    position: relative;
}

.footer-legal li:before {
    right: 0;
}

.footer-legal li:last-child {
    padding-right: 0;
}

.footer-legal li:last-child:before {
    display: none;
}

.footer-copyright li {
    margin: 0 10px 13px 0;
    padding-right: 10px;
}

.footer-copyright li:before {
    background: #313131;
}

.footer-legal-links {
    /*margin-left: -13px; on mobile device the first term was cutted in the middle*/
}

.footer-legal-links li {
    padding-right: 13px;
    padding-left: 13px;
}

.footer-legal-links li:before {
    background: #666666;
}

.footer-legal-links a {
    color: #EFF2F7;
}

.footer-legal-links a:hover {
    text-decoration: underline;
    color: #FFFFFF;
}

@media screen and (min-width: 768px) {
    .footer-content {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 40px 0 24px;
    }

    .footer-section {
        padding: 0;
    }

    .footer-legal {
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
    }

    .footer-social {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }

    .footer-social p {
        font-size: 16px;
        letter-spacing: 0px;
        line-height: 1.25;
        margin: 0;
    }

    .footer-section:before {
        display: none;
    }

    .footer-section .text--footer-link:hover {
        text-decoration: underline;
    }

    .footer-legal li {
        font-size: 14px;
        letter-spacing: 0px;
        line-height: 1.42857;
    }

    .footer-legal li:before {
        top: 2px;
    }

    .footer-legal li:first-child:after {
        top: 2px;
    }

    .footer-copyright li:before {
        background: #313131;
    }

    .footer-legal-links {
        margin-left: -10px;
    }

    .footer-legal-links li {
        padding-right: 10px;
        padding-left: 10px;
    }

    .footer-legal-links li:before {
        background: #444;
    }

    .footer-legal-links li:first-child {
        padding-left: 10px;
    }

    .footer-legal-links li:first-child:after {
        background: #313131;
        left: 0;
    }
}

@media screen and (min-width: 1024px) {
    .footer-content {
        max-width: 1080px;
        margin: auto;
        padding: 20px 0 0;
        -webkit-align-items: center;
        -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
    }

    .footer-content::after {
        clear: both;
        content: "";
        display: table;
    }

    .footer-copyright,
    .footer-legal-links {
        display: inline-block;
        vertical-align: middle;
        margin: 5px 0;
    }

    .footer-copyright li,
    .footer-legal-links li {
        margin-bottom: 0;
    }

    .footer-social p {
        display: inline-block;
        margin-right: 10px;
        vertical-align: middle;
    }

    .footer-social ul {
        display: inline-block;
        vertical-align: middle;
        margin: 10px 0;
    }

    .footer-social li:last-child {
        margin: 0;
    }
}

.global-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

.global-header__localisation {
    background: #000000;
    width: 100%;
    display: none;
    z-index: 1;
}

@media screen and (min-width: 1024px) {
    .global-header__localisation {
        display: block;
    }
}

.global-header__localisation button {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0px;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    width: 100%;
    padding: 10px 15px;
}

@media screen and (min-width: 768px) {
    .global-header__localisation button {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.global-header__localisation button .flex-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.global-header__localisation button .flex-wrap:after {
    display: block;
    font-family: 'icomoon';
    content: "\e905";
    font-style: normal;
    font-weight: normal;
}

.global-header__localisation button .flex-wrap:after {
    display: inline-block;
}

@media screen and (min-width: 768px) {
    .global-header__localisation button {
        font-size: 10px;
        letter-spacing: 0px;
        line-height: 1;
        padding: 10px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .global-header__localisation button {
        padding: 10px 30px;
    }
}

.global-header__localisation button span {
    font-size: 10px;
    letter-spacing: 0px;
    line-height: 1;
    color: #999999;
    margin: 10px 1em 10px 0;
}

.global-header__localisation button strong {
    font-size: 10px;
    letter-spacing: 0px;
    line-height: 1;
    color: #ffffff;
    margin: 10px 1em 10px 0;
}

.global-header__localisation button strong + strong {
    border-left: 1px solid #ffffff;
    padding-left: 1em;
}

.global-header__main {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 15px;
}

@media screen and (min-width: 768px) {
    .global-header__main {
        padding: 25px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .global-header__main {
        padding: 23px 30px;
    }
}

.global-header__logo {
    max-width: 60px;
}

@media screen and (min-width: 768px) {
    .global-header__logo {
        max-width: 109px;
    }
}

.global-header__logo a {
    display: block;
}

.global-header__logo img {
    width: 100%;
}

.global-header__logo__color {
    display: none;
}

.global-header__btns {
    margin-left: auto;
}

@media screen and (min-width: 1024px) {
    .global-header__btns {
        margin-left: 0;
    }
}

.global-header__btn {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
}

@media screen and (min-width: 768px) {
    .global-header__btn {
        margin-left: 30px;
    }

    .global-header__btn:first-of-type {
        margin-left: 0;
    }
}

.global-header__btn__text {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    display: none;
    color: #ffffff;
    padding-right: 20px;
    position: relative;
    top: -7px;
}

@media screen and (min-width: 768px) {
    .global-header__btn__text {
        text-transform: uppercase;
        display: inline-block;
    }
}

.global-header__btn.btn-user {
    font-size: 20px;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .global-header__btn.btn-user {
        font-size: 28px;
    }
}

@media screen and (min-width: 1024px) {
    .global-header__btn.btn-user {
        font-size: 22px;
    }
}

.global-header__btn.btn-search-open {
    font-size: 20px;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .global-header__btn.btn-search-open {
        font-size: 28px;
    }
}

@media screen and (min-width: 1024px) {
    .global-header__btn.btn-search-open {
        font-size: 22px;
    }
}

.global-header__btn.btn-menu {
    font-size: 20px;
    color: #fff;
}

@media screen and (min-width: 768px) {
    .global-header__btn.btn-menu {
        font-size: 28px;
    }
}

@media screen and (min-width: 1024px) {
    .global-header__btn.btn-menu {
        font-size: 22px;
    }
}

.global-header__btn.btn-search-close {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .global-header__btn.btn-search-close {
        height: 24px;
        width: 32px;
    }
}

@media screen and (min-width: 1024px) {
    .global-header__btn.btn-search-close {
        height: 21px;
        width: 21px;
    }
}

.global-header__links {
    display: none;
}

@media screen and (min-width: 1024px) {
    .global-header__links {
        display: block;
        margin-left: 43px;
    }
}

.global-header__links li {
    display: inline;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 4px;
}

.global-header__links li a {
    display: inline-block;
    color: #ffffff;
    padding: 10px 20px;
    line-height: 1;
}

.global-header__links li a:hover, .global-header__links li a:focus {
    text-decoration: underline;
}

.global-header__links li.selected a {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 100px;
}

.global-header__links li.selected a:hover {
    text-decoration: none;
}
.global-header-inherit-text-black .dotcom-header .dotcom-header__logo span {
    color: #0E141A;
}
.global-header-inherit-text-black .dotcom-header .colorlogoimg {
    display: inline;
}

.global-header-inherit-text-black .dotcom-header .logoimg {
    display: none;
}
.global-header-inherit-text-black .dotcom-header .dotcom-header__links li, .global-header-inherit-text-black .dotcom-header .dotcom-header__links li a {
    color: #0E141A;
}
.global-header-inherit-text-black .dotcom-header .dotcom-header__btn {
    color: #0E141A;
}

.global-header-inherit-text-black .dotcom-header .dotcom-header__btn .icon-user,
.global-header-inherit-text-black .dotcom-header .dotcom-header__btn .icon-search-small {
    color: #0E141A;
}

.global-header-inherit-text-black .dotcom-header .dotcom-header__btn.btn-menu .icon-menu, .global-header-inherit-text-black .dotcom-header .dotcom-header__btn.btn-menu .cross-icon {
    color: #0E141A;
}

.global-header-inherit-text-black .dotcom-header .dotcom-header__btn.btn-menu .icon-menu:after, .global-header-inherit-text-black .dotcom-header .dotcom-header__btn.btn-menu .cross-icon:after, .global-header-inherit-text-black .dotcom-header .dotcom-header__btn.btn-menu .burger-icon:before, .global-header-inherit-text-black .dotcom-header .dotcom-header__btn.btn-menu .cross-icon:before {
    color: #0E141A;
}

.global-header-white-bg .global-header {
    background: #fff;
    border-bottom: 1px solid #dddddd;
    color: #999999;
}

.global-header-white-bg .global-header .global-header__logo__color {
    display: inline;
}

.global-header-white-bg .global-header .global-header__logo__bw {
    display: none;
}

.global-header-white-bg .global-header .global-header__links li, .global-header-white-bg .global-header .global-header__links li a {
    color: #999999;
}

.global-header-white-bg .global-header .global-header__links li.selected a {
    background: #f4f4f4;
    color: #000000;
}

.global-header-white-bg .global-header .global-header__btn {
    color: #999999;
}

.global-header-white-bg .global-header .global-header__btn .icon-user,
.global-header-white-bg .global-header .global-header__btn .icon-search-small {
    color: #999999;
}

.global-header-white-bg .global-header .global-header__btn.btn-menu .burger-icon, .global-header-white-bg .global-header .global-header__btn.btn-menu .cross-icon {
    background: #999999;
}

.global-header-white-bg .global-header .global-header__btn.btn-menu .burger-icon:after, .global-header-white-bg .global-header .global-header__btn.btn-menu .cross-icon:after, .global-header-white-bg .global-header .global-header__btn.btn-menu .burger-icon:before, .global-header-white-bg .global-header .global-header__btn.btn-menu .cross-icon:before {
    background: #999999;
}

@media screen and (min-width: 768px) {
    .megamenu__article {
        display: none;
        -webkit-transform: translate(0, 10px);
        -ms-transform: translate(0, 10px);
        transform: translate(0, 10px);
        transition: 0.3s opacity, 0.5s -webkit-transform ease-out;
        transition: 0.3s opacity, 0.5s transform ease-out;
        transition: 0.3s opacity, 0.5s transform ease-out, 0.5s -webkit-transform ease-out;
    }

    .megamenu__article:nth-of-type(0) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(1) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(2) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(3) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(4) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(5) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(6) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(7) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(8) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(9) {
        transition-delay: 0s;
    }
}

@media screen and (min-width: 768px) {
    .megamenu__nav .megamenu__nav__body li {
        transition: 0.1s opacity, 0.2s -webkit-transform ease-out;
        transition: 0.1s opacity, 0.2s transform ease-out;
        transition: 0.1s opacity, 0.2s transform ease-out, 0.2s -webkit-transform ease-out;
        -webkit-transform: translate(0, 10px);
        -ms-transform: translate(0, 10px);
        transform: translate(0, 10px);
        display: none;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(0) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(1) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(2) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(3) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(4) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(5) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(6) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(7) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(8) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(9) {
        transition-delay: 0s;
    }
}

.megamenu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    transition: -webkit-transform 0s ease-in-out 0.7s;
    transition: transform 0s ease-in-out 0.7s;
    transition: transform 0s ease-in-out 0.7s, -webkit-transform 0s ease-in-out 0.7s;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (min-width: 768px) {
    .megamenu {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.menu-open .megamenu {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0s;
    transition: transform 0s;
    transition: transform 0s, -webkit-transform 0s;
}

.menu-open .megamenu .megamenu__nav {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.menu-open .megamenu .megamenu__main {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: all 0.7s ease-in-out 0s;
    display: block;
}

@media screen and (min-width: 768px) {
    .menu-open .megamenu .megamenu__article {
        display: block;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(0) {
        transition-delay: 0.5s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(1) {
        transition-delay: 0.75s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(2) {
        transition-delay: 1s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(3) {
        transition-delay: 1.25s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(4) {
        transition-delay: 1.5s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(5) {
        transition-delay: 1.75s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(6) {
        transition-delay: 2s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(7) {
        transition-delay: 2.25s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(8) {
        transition-delay: 2.5s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(9) {
        transition-delay: 2.75s;
    }
}

@media screen and (min-width: 768px) {
    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li {
        display: block;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(0) {
        transition-delay: 0.4s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(1) {
        transition-delay: 0.5s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(2) {
        transition-delay: 0.6s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(3) {
        transition-delay: 0.7s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(4) {
        transition-delay: 0.8s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(5) {
        transition-delay: 0.9s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(6) {
        transition-delay: 1s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(7) {
        transition-delay: 1.1s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(8) {
        transition-delay: 1.2s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(9) {
        transition-delay: 1.3s;
    }
}

.megamenu__nav {
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #002466;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    z-index: 1;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .megamenu__nav {
        width: 340px;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        transition: -webkit-transform 0.4s ease-in-out 0s;
        transition: transform 0.4s ease-in-out 0s;
        transition: transform 0.4s ease-in-out 0s, -webkit-transform 0.4s ease-in-out 0s;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__nav {
        width: 400px;
    }
}

.megamenu__main {
    background: #f4f4f4;
    -webkit-transform: translate(calc(100% + 400px), 0);
    -ms-transform: translate(calc(100% + 400px), 0);
    transform: translate(calc(100% + 400px), 0);
    transition: all 0.4s ease-in-out;
    display: none;
}

@media screen and (min-width: 768px) {
    .megamenu__main {
        display: block;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
}

.megamenu__main__body {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.megamenu__navSecondary {
    display: none;
}

@media screen and (min-width: 1280px) {
    .megamenu__navSecondary {
        display: none !important;
        min-width: 280px;
        max-width: 360px;
    }
    .menu-open .megamenu__navSecondary {
        display: block !important;
        min-width: 280px;
        max-width: 360px;
    }
}

.megamenu__lang-links {
    top: -4px;
}

.megamenu__lang-links li {
    display: inline-block;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1.53846;
    margin-right: 20px;
}

.megamenu__lang-links li a {
    color: #fff;
}

.megamenu__lang-links li a:hover {
    text-decoration: none;
}

.megamenu__lang-links li.selected:after, .megamenu__lang-links li:hover:after {
    content: "";
    width: 100%;
    height: 4px;
    background: #fff;
    position: absolute;
    bottom: -6px;
    left: -2px;
    box-sizing: content-box;
    padding: 0 2px;
}

.megamenu__main {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.megamenu__main__header {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 64px;
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .megamenu__main__header {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__main__header {
        padding: 0 30px;
    }
}

@media screen and (max-width: 768px -1) {
    .megamenu__main__header {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .megamenu__main__header {
        height: 84px;
    }
}

.megamenu__main__header__logo {
    display: block;
    width: 120px;
}

.megamenu__main__header__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.megamenu__nav__header {
    background: #0444c8;
    position: absolute;
    top: 0;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 64px;
    padding: 0 15px;
    z-index: 9999999;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

@media screen and (min-width: 768px) {
    .megamenu__nav__header {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__nav__header {
        padding: 0 30px;
    }
}

@media screen and (min-width: 768px) {
    .megamenu__nav__header {
        height: 84px;
    }
}

.megamenu__nav .btn-close {
    top: 2px;
    height: 17px;
    width: 24px;
    vertical-align: middle;
}

@media screen and (min-width: 768px) {
    .megamenu__nav .btn-close {
        width: 32px;
        height: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__nav .btn-close {
        width: 21px;
        height: 21px;
    }
}

.megamenu__nav__body {
    height: calc(100% - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    margin: 64px 0 0;
}

@media screen and (min-width: 768px) {
    .megamenu__nav__body {
        height: calc(100% - 84px);
        margin: 84px 0 0;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 767px) {
    .megamenu__nav__body {
        background: #f4f4f4;
    }
}

@media screen and (min-width: 1280px) {
    .megamenu__nav .secondaryMenu {
        display: none;
    }
}

.megamenu__accordian {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.megamenu__nav__body .megamenu__accordian {
    background-color: #002466;
}

.megamenu__accordian__header {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.36364;
    padding: 0 15px;
    border-top: 1px solid #0444c8;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .megamenu__accordian__header {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__accordian__header {
        padding: 0 30px;
    }
}

.megamenu__accordian__header:before, .megamenu__accordian__header:after {
    right: 27px;
}

@media screen and (min-width: 768px) {
    .megamenu__accordian__header:before, .megamenu__accordian__header:after {
        right: 37px;
    }
}

.megamenu__accordian__header:before {
    content: "";
    background: #033396;
    width: 16px;
    height: 2px;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    margin-right: -7px;
}

.megamenu__accordian__header:after {
    content: "";
    background: #033396;
    width: 2px;
    height: 16px;
    position: absolute;
    top: 50%;
    margin-top: -8px;
}

@media screen and (min-width: 1280px) {
    .megamenu__accordian__header {
        cursor: default;
    }

    .megamenu__accordian__header:before, .megamenu__accordian__header:after {
        display: none;
    }
}

.megamenu__accordian__body {
    display: none;
    padding: 10px 0 20px;
}

@media screen and (min-width: 768px) {
    .megamenu__accordian__body {
        padding: 10px 0 40px;
    }
}

.megamenu__accordian__form {
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .megamenu__accordian__form {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__accordian__form {
        padding: 0 30px;
    }
}

.megamenu__accordian__form input[type='text'] {
    margin-bottom: 10px;
    width: 100%;
}

.megamenu__accordian__form .btn-cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
    transition: background-color 100ms linear;
    display: block;
    margin-top: 20px;
    width: 100%;
}

.megamenu__accordian__form .btn-cta:hover, .megamenu__accordian__form .btn-cta._hover,
a:hover .megamenu__accordian__form .btn-cta {
    text-decoration: none;
}

.megamenu__accordian__form .btn-cta:hover, .megamenu__accordian__form .btn-cta._hover,
a:hover .megamenu__accordian__form .btn-cta {
    background-color: rgba(255, 255, 255, 0.2);
}

.megamenu__accordian.open .megamenu__accordian__header:after {
    display: none;
}

@media screen and (max-width: 768px -1) {
    .megamenu__accordian.primaryMenu .megamenu__accordian__header {
        display: none;
    }

    .megamenu__accordian.primaryMenu .megamenu__accordian__body {
        padding: 30px 0;
    }
}

@media screen and (min-width: 768px) {
    .megamenu__accordian:last-child {
        border-bottom: none;
    }
}

.megamenu__navSecondary .megamenu__accordian .megamenu__accordian__header {
    border: none;
    cursor: default;
    color: #999999;
}

.megamenu__navSecondary .megamenu__accordian .megamenu__accordian__header:before, .megamenu__navSecondary .megamenu__accordian .megamenu__accordian__header:after {
    display: none;
}

.megamenu__navSecondary .megamenu__accordian .megamenu__accordian__body {
    padding-top: 0;
}

.megamenu__links {
    margin-bottom: 30px;
}

.megamenu__links:last-child {
    margin-bottom: 0;
}

.megamenu__links a {
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .megamenu__links a {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__links a {
        padding: 0 30px;
    }
}

.megamenu__links a:hover {
    text-decoration: underline;
}

.megamenu__links__heading {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1.53846;
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .megamenu__links__heading {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__links__heading {
        padding: 0 30px;
    }
}

.megamenu__links li {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.33333;
    margin-bottom: 36px;
}

.megamenu__links li:last-child {
    margin-bottom: 0;
}

.megamenu__links li.selected > a:before {
    content: "";
    width: 0.22em;
    height: 1.1em;
    box-sizing: content-box;
    padding: 0.05em 0;
    background: #fff;
    position: absolute;
    top: 0.05em;
    left: 0;
}

@media screen and (min-width: 768px) {
    .megamenu__links li.selected > a:before {
        left: 10px;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__links li.selected > a:before {
        left: 14px;
    }
}

.megamenu__links li.selected .megamenu__links__heading:before {
    font-size: 18px;
    top: 0em;
}

.megamenu__links li li {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.megamenu__links .megamenu__submenu {
    margin-top: 12px;
}

.megamenu__links .megamenu__submenu li {
    margin-bottom: 12px;
}

.megamenu__links .megamenu__submenu li:last-child {
    margin: 0;
}

@media screen and (max-width: 768px -1) {
    a.megamenu__links__heading {
        font-size: 26px;
        letter-spacing: 0px;
        line-height: 1.30769;
        text-transform: none;
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .selected a.megamenu__links__heading:before {
        font-size: 26px !important;
    }

    a.megamenu__links__heading + .megamenu__submenu {
        display: none;
    }
}

.megamenu__news {
    padding: 25px 40px 0;
    margin: 0 auto;
    width: 100%;
    max-width: 832px;
}

.megamenu__news__inner {
    margin: 0 auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.megamenu__news__mobile {
    background: #f4f4f4;
    padding: 40px 15px;
}

.megamenu__news__mobile .megamenu__article {
    height: 100%;
}

.megamenu__news__mobile .swiper-container {
    padding-bottom: 40px;
}

.megamenu__news__mobile .swiper-wrapper {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.megamenu__news__mobile .swiper-slide {
    height: auto;
}

.megamenu__news__mobile .swiper-pagination-bullet-active {
    background: #002466;
}

@media screen and (min-width: 768px) {
    .megamenu__news__mobile {
        display: none;
    }
}

.search-form {
    background: #002466;
    color: #fff;
    width: 100%;
    z-index: 10000;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    position: absolute;
    transition: all .4s ease-in-out;
    overflow: hidden;
    max-height: 100vh;
    visibility: hidden;
}

.search-form--inpage {
    background: #0B563D;
    position: static;
    visibility: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.search-form__header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 15px;
}

@media screen and (min-width: 768px) {
    .search-form__header {
        padding: 25px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .search-form__header {
        padding: 23px 30px;
    }
}

.search-form__logo {
    max-width: 60px;
}

@media screen and (min-width: 768px) {
    .search-form__logo {
        max-width: 109px;
    }
}

.search-form__logo a {
    display: block;
}

.search-form__logo img {
    width: 100%;
}

.search-form__btns {
    margin-left: auto;
    -webkit-flex-grow: 1000;
    -ms-flex-positive: 1000;
    flex-grow: 1000;
    text-align: right;
}

@media screen and (min-width: 1024px) {
    .search-form__btns {
        margin-left: 20px;
    }
}

.search-form__btn {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
}

@media screen and (min-width: 768px) {
    .search-form__btn {
        margin-left: 30px;
    }
}

.search-form__btn-close {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .search-form__btn-close {
        height: 21px;
        width: 21px;
    }
}

.search-form__inner {
    padding: 0 0 60px;
    max-height: 100vh;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .search-form__inner {
        padding: 130px 0 80px;
    }
}

@media screen and (max-height: 400px) {
    .search-form__inner {
        padding: 30px 0 60px;
    }

    .search-open .search-form__inner {
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }
}

.search-form form {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .search-form__content {
        padding-left: 65px;
    }

    .search-form__content:first-child {
        margin-top: 40px;
    }
}

@media screen and (min-width: 1024px) {
    .search-form__content {
        padding-left: 90px;
    }

    .search-form__content:first-child {
        margin-top: 60px;
    }
}

.search-form__content ul {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 2;
}

.search-form__heading {
    color: #01194b;
    color: rgba(0, 0, 0, 0.4);
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.52px;
    line-height: 2.07692;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .search-form {
        padding: 0 0 40px;
    }
}

body.search-open .search-form {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.search-form__input {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 36px;
    letter-spacing: -1.44px;
    line-height: 2.22222;
    background: transparent;
    color: #fff;
    padding: 0;
    border: none;
    outline: none;
    width: 100%;
}

.search-form__input::-webkit-input-placeholder {
    color: #000000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.search-form__input::-moz-placeholder {
    color: #000000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.search-form__input:-moz-placeholder {
    color: #000000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.search-form__input:-ms-input-placeholder {
    color: #000000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.search-form__input:focus::-webkit-input-placeholder {
    color: #000000;
    display: none;
    transition: opacity 0.3s ease;
}

.search-form__input:focus::-moz-placeholder {
    color: #000000;
    display: none;
    transition: opacity 0.3s ease;
}

.search-form__input:focus:-moz-placeholder {
    color: #000000;
    display: none;
    transition: opacity 0.3s ease;
}

.search-form__input:focus:-ms-input-placeholder {
    color: #000000;
    display: none;
    transition: opacity 0.3s ease;
}

.search-form__input::-ms-clear {
    display: none;
}

.search-form__input__wrap {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (min-width: 768px) {
    .search-form__input {
        font-size: 60px;
        letter-spacing: -2.4px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 1024px) {
    .search-form__input {
        font-size: 80px;
        letter-spacing: -3.2px;
        line-height: 1;
    }
}

.search-form__submit {
    font-size: 29px;
    letter-spacing: 0.029px;
    line-height: 4.31034%;
    top: 0.07em;
}

.search-form__submit__wrap {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    margin-right: 20px;
}

@media screen and (min-width: 768px) {
    .search-form__submit {
        font-size: 45px;
        letter-spacing: 0.045px;
        line-height: 2.77778%;
    }
}

@media screen and (min-width: 1024px) {
    .search-form__submit {
        font-size: 60px;
        letter-spacing: 0.06px;
        line-height: 2.08333%;
    }

    .search-form__submit__wrap {
        margin-right: 30px;
    }
}

.page-search .search-form {
    position: static !important;
    top: 0 !important;
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    visibility: visible;
    z-index: 1;
    background: #0B563D;
}

.page-search .search-form__logo, .page-search .search-form__btns {
    visibility: hidden;
}

.page-search .search-form__content {
    margin-top: 0;
}

@media screen and (min-width: 768px) {
    .page-help .search-form__content:first-child {
        margin-top: 40px;
    }
}

@media screen and (min-width: 1024px) {
    .page-help .search-form__content:first-child {
        margin-top: 60px;
    }
}

.help-tabs {
    background: #002466;
    padding: 60px 0;
    color: #fff;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    overflow: hidden;
}

.help-tabs p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .help-tabs {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.help-tabs__title {
    color: #fff;
    text-align: center;
}

.help-tabs__nav {
    margin: 0 auto;
    width: 50%;
    max-width: 200px;
    overflow: visible;
}

.help-tabs__nav ul {
    text-align: center;
    white-space: nowrap;
    padding: 30px 0;
}

.help-tabs__nav li {
    display: inline-block;
}

.help-tabs__nav a {
    color: #fff;
    padding: 0 20px;
    line-height: 30px;
    border-radius: 15px;
    text-transform: uppercase;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    display: inline-block;
    margin-right: 5px;
}

.help-tabs__nav a.active {
    background: #fff;
    color: #002466;
}

.help-tabs__nav a.active:hover {
    text-decoration: none;
    cursor: default;
}

.help-tabs__nav a.active:after {
    content: "";
    border: 10px solid transparent;
    border-top: 10px solid #fff;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    margin-left: -10px;
}

.help-tabs__eyebrow {
    color: #fff;
    opacity: 0.8;
    margin-bottom: 20px;
}

.help-tabs__content {
    padding: 30px 0 0;
    display: none;
}

.help-tabs__content:first-child {
    display: block;
}

.help-tabs__content li a {
    font-size: 22px;
    letter-spacing: 0.44px;
    line-height: 1.63636;
}

.help-tabs__content li a .miniArrow:after {
    display: block;
    font-family: 'icomoon';
    content: "\e905";
    font-style: normal;
    font-weight: normal;
}

.help-tabs__content li a .miniArrow:after {
    font-size: 12px;
    display: inline-block;
    margin-left: 10px;
    opacity: 0.5;
}

.help-tabs__content li a:hover .miniArrow:after {
    opacity: 1;
}
.help-tabs__content li a .miniArrow {
    margin-left: -0.25em;
    display: inline-block;
    width: 0;
}
.help-tabs__column {
    margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .help-tabs__nav {
        max-width: none;
    }

    .help-tabs .swiper-wrapper {
        text-align: center;
        display: block;
    }

    .help-tabs .swiper-slide {
        display: inline-block;
        width: auto !important;
    }
}

@media screen and (min-width: 1024px) {
    .help-tabs__content__inner {
        padding-top: 20px;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .help-tabs__column {
        float: left;
        width: 33.3%;
    }
}

.hero {
    box-sizing: inherit;
    padding: 87px 0;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .hero {
        padding: 170px 0 127px;
    }
}

@media screen and (max-width: 767px) {
    .hero--reduce-padding {
        padding: 110px 0 56px;
    }
}

@media screen and (min-width: 768px) {
    .hero--reduce-padding {
        padding-bottom: 100px;
    }
}

@media screen and (min-width: 1024px) {
    .hero--reduce-padding {
        padding-bottom: 170px;
    }
}

.hero--clear-padding-bottom {
    padding: 110px 0 0px;
}

@media screen and (min-width: 768px) {
    .hero--clear-padding-bottom {
        padding-bottom: 100px;
    }
}

@media screen and (min-width: 1024px) {
    .hero--clear-padding-bottom {
        padding-bottom: 170px;
    }
}

.hero_inner {
    float: none;
    margin-left: auto;
    margin-right: auto;
    min-width: 250px;
    position: relative;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .hero_inner {
        float: none;
    }
}

.hero_content-wrapper {
    max-width: 1024px;
    margin: 0 auto;
}

.hero_top {
    padding-top: 15px;
}

.hero_top::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (min-width: 768px) {
    .hero_top {
        padding-top: 12px;
    }
}

.hero_arrow {
    display: none;
}

@media screen and (min-width: 768px) {
    .hero_arrow {
        top: 0px;
        left: 50%;
        display: block;
        position: absolute;
        width: 26px;
        margin-left: -12px;
        font-size: 18px;
        z-index: 3000;
        height: 80px;
        background-color: #ffffff;
    }

    .hero_arrow:before {
        display: block;
        font-family: 'icomoon';
        content: "\e900";
        font-style: normal;
        font-weight: normal;
        -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .hero_arrow:before {
        top: 12px;
        margin-left: -10px;
        position: absolute;
        left: 50%;
    }
}

.hero_breadcrumbs {
    display: none;
    padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .hero_breadcrumbs {
        display: block;
        margin: 0px auto;
        padding-bottom: 15px;
    }
}

.hero_breadcrumbs > ul {
    display: inline-block;
}

.hero_date {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    letter-spacing: -0.24px;
    line-height: 1;
    color: #ffffff;
    margin-top: 40px;
}

@media screen and (min-width: 768px) {
    .hero_date {
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: 1;
        margin-top: 50px;
    }
}

.hero_detail {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #ffffff;
    font-size: 22px;
    margin-top: 30px;
}

.hero__cta {
    text-align: center;
    padding-top: 50px;
}

.hero .eyebrow {
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .hero .eyebrow {
        margin-bottom: 30px;
    }
}

.inpage-search-form {
    background: #0B563D;
    color: #fff;
    width: 100%;
}

.inpage-search-form__inner {
    padding: 20px 0 20px;
    max-height: 100vh;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .inpage-search-form__inner {
        padding: 80px 0 10px;
    }
}

@media screen and (max-height: 400px) {
    .inpage-search-form__inner {
        padding: 30px 0 60px;
    }
}

.inpage-search-form form {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .inpage-search-form__content {
        margin-top: 20px;
        padding-left: 65px;
    }
}

@media screen and (min-width: 1024px) {
    .inpage-search-form__content {
        margin-top: 30px;
        padding-left: 90px;
    }
}

.inpage-search-form__content ul {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 2;
}

.inpage-search-form__heading {
    color: #01194b;
    color: rgba(0, 0, 0, 0.4);
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.52px;
    line-height: 2.07692;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .inpage-search-form {
        padding: 0 0 40px;
    }
}

.inpage-search-form__input {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 36px;
    letter-spacing: -1.44px;
    line-height: 2.22222;
    background: transparent;
    color: #fff;
    padding: 0;
    border: none;
    outline: none;
    width: 100%;
}

.inpage-search-form__input::-webkit-input-placeholder {
    color: #000000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.inpage-search-form__input::-moz-placeholder {
    color: #000000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.inpage-search-form__input:-moz-placeholder {
    color: #000000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.inpage-search-form__input:-ms-input-placeholder {
    color: #000000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.inpage-search-form__input:focus::-webkit-input-placeholder {
    color: #000000;
    display: none;
    transition: opacity 0.3s ease;
}

.inpage-search-form__input:focus::-moz-placeholder {
    color: #000000;
    display: none;
    transition: opacity 0.3s ease;
}

.inpage-search-form__input:focus:-moz-placeholder {
    color: #000000;
    display: none;
    transition: opacity 0.3s ease;
}

.inpage-search-form__input:focus:-ms-input-placeholder {
    color: #000000;
    display: none;
    transition: opacity 0.3s ease;
}

.inpage-search-form__input::-ms-clear {
    display: none;
}

.inpage-search-form__input__wrap {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (min-width: 768px) {
    .inpage-search-form__input {
        font-size: 60px;
        letter-spacing: -2.4px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 1024px) {
    .inpage-search-form__input {
        font-size: 80px;
        letter-spacing: -3.2px;
        line-height: 1;
    }
}

.inpage-search-form__submit {
    font-size: 29px;
    letter-spacing: 0.029px;
    line-height: 4.31034%;
    top: 0.07em;
}

.inpage-search-form__submit__wrap {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    margin-right: 20px;
}

@media screen and (min-width: 768px) {
    .inpage-search-form__submit {
        font-size: 45px;
        letter-spacing: 0.045px;
        line-height: 2.77778%;
    }
}

@media screen and (min-width: 1024px) {
    .inpage-search-form__submit {
        font-size: 60px;
        letter-spacing: 0.06px;
        line-height: 2.08333%;
    }

    .inpage-search-form__submit__wrap {
        margin-right: 30px;
    }
}

.localisation {
    background: #000000;
    color: #fff;
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    transition: all .4s ease-in-out;
    z-index: 999;
}

.localisation__header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 15px;
}

@media screen and (min-width: 768px) {
    .localisation__header {
        padding: 25px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .localisation__header {
        padding: 23px 30px;
    }
}

.localisation__logo {
    max-width: 60px;
}

@media screen and (min-width: 768px) {
    .localisation__logo {
        max-width: 109px;
    }
}

.localisation__logo a {
    display: block;
}

.localisation__logo img {
    width: 100%;
}

.localisation__btns {
    margin-left: auto;
    -webkit-flex-grow: 1000;
    -ms-flex-positive: 1000;
    flex-grow: 1000;
    text-align: right;
}

@media screen and (min-width: 1024px) {
    .localisation__btns {
        margin-left: 20px;
    }
}

.localisation__btn {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
}

@media screen and (min-width: 768px) {
    .localisation__btn {
        margin-left: 30px;
    }
}

.localisation__btn-close {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .localisation__btn-close {
        height: 21px;
        width: 21px;
    }
}

.localisation__inner {
    padding-top: 60px;
    padding-bottom: 60px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.localisation__inner::after {
    clear: both;
    content: "";
    display: table;
}

.localisation__content {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .localisation__content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%;
        margin-left: 17.05961%;
    }

    .localisation__content:last-child {
        margin-right: 0;
    }
}

@media screen and (min-width: 1024px) {
    .localisation__content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-left: 25.58941%;
    }

    .localisation__content:last-child {
        margin-right: 0;
    }
}

.localisation__content h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

.localisation__content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    margin-bottom: 30px;
}

.localisation__content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .localisation__content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.localisation__footer {
    background: #002466;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.localisation__footer p {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: white;
}

@media screen and (min-width: 768px) {
    .localisation__footer p {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.localisation__footer p a {
    text-decoration: underline;
}

.localisation__footer p a:hover {
    text-decoration: none;
}

body.localisation-open .localisation {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.list-content {
    font-size: 16px;
    padding: 30px;
}

@media screen and (min-width: 768px) {
    .list-content {
        padding: 50px 25px;
    }
}

@media screen and (max-width: 767px) {
    .list-content {
        padding: 40px 15px;
    }
}

.list-content_inner {
    max-width: 1370px;
    margin: auto;
}

.list-content_cta {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .list-content_cta {
        display: none;
    }
}

.list-content__heading h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .list-content__heading h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (min-width: 768px) {
    .list-content__heading h2 {
        margin-bottom: 35px;
    }
}

.outage-alert {
    background: #0152E8;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.outage-alert__header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 15px;
}

@media screen and (min-width: 768px) {
    .outage-alert__header {
        padding: 25px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .outage-alert__header {
        padding: 23px 30px;
    }
}

.outage-alert__btns {
    margin-left: auto;
    -webkit-flex-grow: 1000;
    -ms-flex-positive: 1000;
    flex-grow: 1000;
    text-align: right;
}

@media screen and (min-width: 1024px) {
    .outage-alert__btns {
        margin-left: 20px;
    }
}

.outage-alert__btn {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
}

@media screen and (min-width: 768px) {
    .outage-alert__btn {
        margin-left: 30px;
    }
}

.outage-alert__btn-close {
    height: 17px;
    width: 24px;
    top: 1px;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .outage-alert__btn-close {
        height: 21px;
        width: 21px;
    }
}

.outage-alert h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.52px;
    line-height: 1.07692;
    color: #0E141A;
    color: #ffffff;
    margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .outage-alert h2 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

.outage-alert .btn-cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
    margin-bottom: 40px;
}

.outage-alert .btn-cta:hover, .outage-alert .btn-cta._hover,
a:hover .outage-alert .btn-cta {
    text-decoration: none;
}

.outage-alert .btn-cta:hover, .outage-alert .btn-cta._hover,
a:hover .outage-alert .btn-cta {
    background-color: rgba(255, 255, 255, 0.2);
}

@-webkit-keyframes planOverviewRise {
    from {
        -webkit-transform: translate(0, 30px);
        transform: translate(0, 30px);
    }
    to {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes planOverviewRise {
    from {
        -webkit-transform: translate(0, 30px);
        transform: translate(0, 30px);
    }
    to {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.plan-overview .btn-cta__wrapper {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 40px;
}

.plan-overview_location-input {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.15);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 6px 20px 6px 0;
    margin-bottom: 32px;
}

.plan-overview_location-input input {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1;
    outline: none;
    width: 100%;
}

.plan-overview_location-input input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
}

.plan-overview_location-input input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
}

.plan-overview_location-input input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
}

.plan-overview_location-input input:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .plan-overview_location-input {
        width: 520px;
        margin: 0 auto 64px auto;
    }
}

@media screen and (min-width: 768px) {
    .plan-overview__wrapper {
        -webkit-transform: translate(0, 30px);
        -ms-transform: translate(0, 30px);
        transform: translate(0, 30px);
        -webkit-animation: planOverviewRise 1.6s cubic-bezier(0.19, 1, 0.22, 1);
        animation: planOverviewRise 1.6s cubic-bezier(0.19, 1, 0.22, 1);
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
}

.plan-overview_rates {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.plan-overview_rates::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (max-width: 767px) {
    .plan-overview_rates {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 768px) {
    .plan-overview_rates {
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        -ms-grid-row-align: flex-end;
        align-items: flex-end;
    }
}

.plan-overview_rate {
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
    float: left;
    padding: 35px 20px;
    text-align: center;
    width: 50%;
}

.plan-overview_rate .eyebrow {
    color: #667790;
}

.plan-overview_rate .cost {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 40px;
    letter-spacing: -1.6px;
    line-height: 1;
    color: #000000;
    margin-bottom: 15px;
}

@media screen and (min-width: 1024px) {
    .plan-overview_rate .cost {
        font-size: 70px;
        letter-spacing: -2.8px;
        line-height: 1;
    }
}

.plan-overview_rate .unit {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.32px;
    line-height: 1;
    color: #000000;
    margin-bottom: 10px;
}

@media screen and (min-width: 1024px) {
    .plan-overview_rate .unit {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1;
    }
}

.plan-overview_rate .sub-text {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1;
    color: #000000;
    opacity: .5;
    margin-bottom: 10px;
}

@media screen and (min-width: 1024px) {
    .plan-overview_rate .sub-text {
        font-size: 14px;
        letter-spacing: 0px;
        line-height: 1;
    }
}

.plan-overview_rate .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.16667;
    color: #d3135a;
    text-transform: uppercase;
    margin-top: 30px;
    display: inline-block;
}

.plan-overview_rate:nth-of-type(1) {
    float: none;
    width: 100%;
}

.plan-overview_rate:nth-of-type(1) .cost {
    font-size: 50px;
    letter-spacing: -2px;
    line-height: 1;
}

@media screen and (min-width: 1024px) {
    .plan-overview_rate:nth-of-type(1) .cost {
        font-size: 100px;
        letter-spacing: -4px;
        line-height: 1;
    }
}

.plan-overview_rate:nth-of-type(1) .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
    display: block;
}

.plan-overview_rate:nth-of-type(1) .cta:hover, .plan-overview_rate:nth-of-type(1) .cta._hover,
a:hover .plan-overview_rate:nth-of-type(1) .cta {
    text-decoration: none;
}

.plan-overview_rate:nth-of-type(1) .cta:hover, .plan-overview_rate:nth-of-type(1) .cta._hover,
a:hover .plan-overview_rate:nth-of-type(1) .cta {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

@media screen and (min-width: 768px) {
    .plan-overview_rate:nth-of-type(1) .cta {
        display: inline-block;
    }
}

@media screen and (min-width: 1024px) {
    .plan-overview_rate:nth-of-type(1) .cta {
        padding: 18px 60px 19px;
    }
}

@media screen and (min-width: 768px) {
    .plan-overview_rate:nth-of-type(1) {
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        width: 40%;
        padding: 30px 0 20px;
    }
}

@media screen and (min-width: 1024px) {
    .plan-overview_rate:nth-of-type(1) {
        padding: 60px 0 50px;
    }
}

@media screen and (min-width: 768px) {
    .plan-overview_rate:nth-of-type(2) {
        border-right: 1px solid #dddddd;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
}

.plan-overview_rate:nth-of-type(3) {
    border-left: 1px solid #dddddd;
    margin-left: -1px;
    width: calc(50% + 1px);
}

@media screen and (min-width: 768px) {
    .plan-overview_rate:nth-of-type(3) {
        margin: 0;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
        width: 30%;
    }
}

@media screen and (min-width: 768px) {
    .plan-overview_rate {
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        padding: 40px 0;
        width: 30%;
    }

    .plan-overview_rate:before {
        content: '';
        display: block;
        position: absolute;
        background: rgba(0, 0, 0, 0.15);
        height: 6px;
        width: 100%;
        bottom: 100%;
        left: 0;
    }
}

@media screen and (min-width: 1024px) {
    .plan-overview_rate {
        padding: 80px 0;
    }
}

.plan-overview_details {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    background: #ffffff;
    padding: 40px 20px 20px;
    margin-bottom: 30px;
}

.plan-overview_details::after {
    clear: both;
    content: "";
    display: table;
}

.plan-overview_details p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-overview_details {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.plan-overview_details_container h3 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.52px;
    line-height: 1.07692;
    color: #0E141A;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .plan-overview_details_container h3 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

.plan-overview_details_container h3:before {
    color: #0B563D;
    margin-right: 0.6em;
}

.plan-overview_details_container p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.plan-overview_details_container p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-overview_details_container p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.plan-overview_details_container ul {
    margin: 0 0 40px 0;
}

.plan-overview_details_container h3 + ul,
.plan-overview_details_container p + ul {
    margin: 40px 0;
}

.plan-overview_details_container h3 {
    margin-bottom: 20px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .plan-overview_details_container h3 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.plan-overview_details_container li {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 1.11111;
    margin-bottom: 20px;
    position: relative;
    padding-left: 1.5em;
}

@media screen and (min-width: 1024px) {
    .plan-overview_details_container li {
        font-size: 24px;
        letter-spacing: -0.48px;
        line-height: 0.91667;
    }
}

.plan-overview_details_container li span {
    color: #0B563D;
    position: absolute;
    top: 0;
    left: 0;
}

.plan-overview_details_container li:last-of-type {
    margin: 0;
}

.plan-overview_details_container .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #002466;
    border-color: #002466;
    color: #ffffff;
    display: block;
    margin-top: 40px;
}

.plan-overview_details_container .cta:hover, .plan-overview_details_container .cta._hover,
a:hover .plan-overview_details_container .cta {
    text-decoration: none;
}

.plan-overview_details_container .cta:hover, .plan-overview_details_container .cta._hover,
a:hover .plan-overview_details_container .cta {
    background-color: #ffffff;
    border-color: #002466;
    color: #002466;
}

@media screen and (min-width: 768px) {
    .plan-overview_details_container .cta {
        display: inline-block;
    }
}

@media screen and (min-width: 768px) {
    .plan-overview_details_container {
        float: left;
        padding: 30px;
        width: 50%;
    }
}

@media screen and (min-width: 1024px) {
    .plan-overview_details_container {
        padding: 60px;
    }
}

@media screen and (min-width: 768px) {
    .plan-overview_details {
        padding: 20px;
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 1280px) {
    .plan-overview_details {
        padding: 20px 120px;
    }
}

.plan-overview_smallprint {
    background: #ffffff;
    padding: 20px;
    border-bottom: 1px solid #dddddd;
}

.plan-overview_smallprint p {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #999999;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .plan-overview_smallprint p {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.plan-overview_promo {
    background-color: #002466;
    background-image: linear-gradient(#002466 20%, #002466 90%);
    padding: 20px;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-overview_promo {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 40px 50px;
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 1024px) {
    .plan-overview_promo {
        padding: 40px 80px;
    }
}

@media screen and (min-width: 1280px) {
    .plan-overview_promo {
        padding: 40px 180px;
    }
}

.plan-overview_promo-text {
    padding-right: 40px;
}

.plan-overview_promo-text h2 {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 1.27778;
    color: #ffffff;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .plan-overview_promo-text h2 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1;
        margin-bottom: 12px;
    }
}

.plan-overview_promo-text p {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 1.375;
    color: #ffffff;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-overview_promo-text p {
        margin-bottom: 0;
    }
}

.plan-overview_promo-cta a {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
    display: block;
}

.plan-overview_promo-cta a:hover, .plan-overview_promo-cta a._hover,
a:hover .plan-overview_promo-cta a {
    text-decoration: none;
}

.plan-overview_promo-cta a:hover, .plan-overview_promo-cta a._hover,
a:hover .plan-overview_promo-cta a {
    background-color: rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 768px) {
    .plan-overview_promo-cta a {
        display: inline-block;
    }
}

.plan-overview .tooltip {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.plan-overview .tooltip__content {
    padding: 20px 30px 10px;
    width: 280px;
    box-shadow: 0px 0px 85px 21px rgba(0, 0, 0, 0.2);
    z-index: 0;
    background: #fff;
    text-align: center;
    display: none;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
}

.plan-overview .tooltip__content.active {
    display: block;
    z-index: 1;
    visibility: visible;
}

@media screen and (min-width: 768px) {
    .plan-overview .tooltip__content {
        position: absolute;
        left: 50%;
        margin-left: -140px;
        top: -20px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin-left: -140px;
    }
}

.plan-overview .tooltip__title {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.16667;
    color: #d3135a;
    text-transform: uppercase;
    margin-top: 30px;
    display: inline-block;
    margin-bottom: 30px;
}

.plan-overview .tooltip .btn-close {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #d3135a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.15);
}

.plan-overview .tooltip .btn-close:before {
    display: block;
    font-family: 'icomoon';
    content: "\e90d";
    font-style: normal;
    font-weight: normal;
}

.plan-overview .tooltip .btn-close:before {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.plan-overview .tooltip p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-overview .tooltip {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.plan-overview .tooltip p {
    font-size: 14px;
}

.plan-promo {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.plan-promo_inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media screen and (min-width: 1024px) {
    .plan-promo_inner {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.plan-promo_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .plan-promo_content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
    }

    .plan-promo_content:last-child {
        margin-right: 0;
    }
}

.plan-promo_content .eyebrow {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #667790;
    font-weight: 700;
    opacity: 1;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .plan-promo_content .eyebrow {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 768px) {
    .plan-promo_content .eyebrow {
        margin-bottom: 48px;
    }
}

.plan-promo_content h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .plan-promo_content h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.plan-promo_content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
    margin-bottom: 20px;
}

.plan-promo_content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-promo_content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.plan-promo_content .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    color: #ffffff;
    text-transform: uppercase;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin: 0 0 40px 0;
}

.plan-promo_content .cta:after {
    display: block;
    font-family: 'icomoon';
    content: "\e900";
    font-style: normal;
    font-weight: normal;
}

@media screen and (min-width: 1024px) {
    .plan-promo_content .cta {
        margin: 60px 0 0 0;
    }
}

.plan-promo_content .cta:after {
    display: inline;
    margin-left: 14px;
}

@media screen and (min-width: 1024px) {
    .plan-promo_plan-holder {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 57.35098%;
        margin-right: 0;
        margin-left: 8.5298%;
    }

    .plan-promo_plan-holder:last-child {
        margin-right: 0;
    }
}

.plan-promo_plan-list li {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 10px 0;
    transition: all 0.1s linear;
    box-shadow: 0 0 0 0 transparent;
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        margin: 5px 0;
    }
}

.plan-promo_plan-list li .price-holder {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    background: #002466;
    padding: 20px;
    transition: all 0.2s linear;
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .price-holder {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 50px;
    }
}

.plan-promo_plan-list li .price-holder .price {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .price-holder .price {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (max-width: 767px) {
    .plan-promo_plan-list li .price-holder .price {
        margin-right: 8px;
    }
}

.plan-promo_plan-list li .price-holder .unit {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
}

.plan-promo_plan-list li .price-holder .unit p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .price-holder .unit {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .price-holder .unit {
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        letter-spacing: 0px;
        line-height: 1.66667;
        color: #0E141A;
        color: #ffffff;
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .plan-promo_plan-list li .price-holder .unit {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.plan-promo_plan-list li .desc-holder {
    background: #ffffff;
    padding: 20px;
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .desc-holder {
        padding: 50px;
    }
}

.plan-promo_plan-list li .desc-holder .type {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .desc-holder .type {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .desc-holder .type {
        margin-bottom: 18px;
    }
}

.plan-promo_plan-list li .desc-holder h3 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    margin-bottom: 6px;
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .desc-holder h3 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .desc-holder h3 {
        margin-bottom: 18px;
    }
}

.plan-promo_plan-list li .desc-holder p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    margin-bottom: 12px;
}

.plan-promo_plan-list li .desc-holder p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .desc-holder p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .desc-holder p {
        margin-bottom: 18px;
    }
}

.plan-promo_plan-list li .desc-holder .ctas {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .plan-promo_plan-list li .desc-holder .ctas {
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .desc-holder .ctas {
        margin-top: 32px;
    }
}

.plan-promo_plan-list li .desc-holder .ctas .ctaPrimary {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #d3135a;
    color: #d3135a;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.plan-promo_plan-list li .desc-holder .ctas .ctaPrimary:hover, .plan-promo_plan-list li .desc-holder .ctas .ctaPrimary._hover,
a:hover .plan-promo_plan-list li .desc-holder .ctas .ctaPrimary {
    text-decoration: none;
}

.plan-promo_plan-list li .desc-holder .ctas .ctaPrimary:hover, .plan-promo_plan-list li .desc-holder .ctas .ctaPrimary._hover,
a:hover .plan-promo_plan-list li .desc-holder .ctas .ctaPrimary {
    background-color: rgba(211, 19, 89, 0.2);
}

@media screen and (max-width: 767px) {
    .plan-promo_plan-list li .desc-holder .ctas .ctaPrimary {
        -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
        align-self: stretch;
    }
}

.plan-promo_plan-list li .desc-holder .ctas .ctaSecondary {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    color: #d3135a;
    display: inline-block;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 13px 40px 14px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .plan-promo_plan-list li .desc-holder .ctas .ctaSecondary {
        display: block;
    }
}

.plan-promo_plan-list li:hover {
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.17);
    -webkit-transform: scale(1.075);
    -ms-transform: scale(1.075);
    transform: scale(1.075);
    position: relative;
    z-index: 1;
}

.plan-promo_terms {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: offblack;
    margin-top: 24px;
    opacity: 0.6;
    text-align: right;
}

@media screen and (min-width: 768px) {
    .plan-promo_terms {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

@media screen and (max-width: 767px) {
    .plan-promo_terms {
        margin-top: 12px;
        text-align: center;
    }
}

.plan-promo--sky {
    background: #002466;
}

.plan-promo--offwhite {
    background: #f4f4f4;
}

.plan-promo--offwhite .plan-promo_content h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .plan-promo--offwhite .plan-promo_content h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.plan-promo--offwhite .plan-promo_content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #0E141A;
}

.plan-promo--offwhite .plan-promo_content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-promo--offwhite .plan-promo_content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.plan-promo--offwhite .plan-promo_content .cta {
    color: #0E141A;
}

.points-map {
    background: #ffffff;
    overflow: hidden;
    margin-top: 80px;
}

.points-map__wrap {
    clear: both;
    display: none;
}

@media screen and (min-width: 1024px) {
    .points-map__wrap {
        display: block;
    }
}

.points-map__google-map-container {
    width: 100%;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: all 0.4s ease-in-out;
}

@media screen and (min-width: 900px) {
    .points-map__google-map-container {
        height: 640px;
    }
}

@media screen and (min-width: 1500px) {
    .points-map__google-map-container {
        height: 1100px;
        max-height: 80vh;
    }
}

.points-map__google-map {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
}

.points-map__heading {
    text-align: center;
    margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
    .points-map__heading {
        padding: 0;
    }
}

.points-map__input {
    margin-bottom: 20px;
}

.points-map__input:before {
    display: block;
    font-family: 'icomoon';
    content: "\e91a";
    font-style: normal;
    font-weight: normal;
}

@media screen and (min-width: 768px) {
    .points-map__input {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-right: 0;
        margin-left: 25.58941%;
        margin-bottom: 40px;
    }

    .points-map__input:last-child {
        margin-right: 0;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__input {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
        margin-right: 0;
        margin-left: 34.11922%;
        margin-bottom: 40px;
    }

    .points-map__input:last-child {
        margin-right: 0;
    }
}

.points-map__input:before {
    color: #999999;
    font-size: 18px;
    position: absolute;
    left: 29px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
    .points-map__input:before {
        font-size: 20px;
        left: 39px;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__input:before {
        left: 44px;
    }
}

.points-map__input input {
    padding-left: 39px;
    padding-right: 39px;
}

@media screen and (min-width: 768px) {
    .points-map__input input {
        padding-left: 44px;
        padding-right: 44px;
    }
}

.points-map__input .geolocate {
    color: #d3135a;
    font-size: 20px;
    position: absolute;
    right: 29px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.points-map__input .geolocate:before {
    display: block;
    font-family: 'icomoon';
    content: "\e947";
    font-style: normal;
    font-weight: normal;
}

@media screen and (min-width: 768px) {
    .points-map__input .geolocate {
        font-size: 24px;
        right: 39px;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__input .geolocate {
        right: 44px;
    }
}

.points-map__input .geolocate.locating {
    position: absolute;
    display: inline-block;
    width: 5em;
    height: 5em;
    margin: -9px 0 0;
    font-size: 4px;
    text-indent: 999em;
    overflow: hidden;
    -webkit-animation: spinner 1s infinite steps(8);
    animation: spinner 1s infinite steps(8);
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.points-map__input .geolocate.locating span {
    position: static;
}

.points-map__input .geolocate.locating:before, .points-map__input .geolocate.locating:after,
.points-map__input .geolocate.locating > span:before,
.points-map__input .geolocate.locating > span:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 2.25em;
    /* (container width - part width)/2  */
    width: .5em;
    height: 1.5em;
    border-radius: .2em;
    background: #eee;
    box-shadow: 0 3.5em #eee;
    /* container height - part height */
    -webkit-transform-origin: 50% 2.5em;
    -ms-transform-origin: 50% 2.5em;
    transform-origin: 50% 2.5em;
    /* container height / 2 */
}

.points-map__input .geolocate.locating:before {
    background: #555;
}

.points-map__input .geolocate.locating:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #777;
}

.points-map__input .geolocate.locating > span:before {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    background: #999;
}

.points-map__input .geolocate.locating > span:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #bbb;
}

.points-map__cta {
    color: #000;
}

.points-map__cta__wrap {
    text-align: center;
    margin-top: 40px;
}

.points-map__card {
    background: #f4f4f4;
    margin: 0 15px;
}

@media screen and (min-width: 1024px) {
    .points-map__card {
        background: #ffffff;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 380px;
        z-index: 1;
        -webkit-transform: translate(-110%, 0);
        -ms-transform: translate(-110%, 0);
        transform: translate(-110%, 0);
        transition: -webkit-transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
        margin: 0;
        box-shadow: 5px 0px 0px 0px rgba(130, 130, 130, 0.1);
    }

    .points-map__card__inner {
        margin-top: 0;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__card__inner {
        display: none;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.points-map__card__header {
    background: #002466;
    padding: 20px 15px;
}

@media screen and (min-width: 768px) {
    .points-map__card__header {
        padding: 30px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__card__header {
        padding: 40px 40px;
    }
}

.points-map__card__header h3 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    color: #ffffff;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .points-map__card__header h3 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__card__header h3 {
        text-align: left;
    }
}

.points-map__card__content {
    text-align: left;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.71429;
    padding: 30px 15px;
}

@media screen and (min-width: 768px) {
    .points-map__card__content {
        padding: 30px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__card__content {
        padding: 50px 40px;
    }
}

.points-map__card__content .distance {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
    text-transform: none;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .points-map__card__content .distance {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__card__content .distance {
        text-align: left;
    }
}

.points-map__card__content h4 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    margin-bottom: 24px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .points-map__card__content h4 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__card__content h4 {
        margin-bottom: 30px;
        text-align: left;
    }
}

.points-map__card__content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    margin-bottom: 30px;
}

.points-map__card__content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .points-map__card__content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__card__content p {
        margin-bottom: 60px;
    }
}

.points-map__card__content .opening {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
    margin-bottom: 6px;
    text-align: left;
}

@media screen and (min-width: 768px) {
    .points-map__card__content .opening {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

.points-map__card__content ul {
    margin-bottom: 20px;
}

.points-map__card__content li {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    margin-bottom: 10px;
}

.points-map__card__content li p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .points-map__card__content li {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.points-map__card__content a {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    text-transform: uppercase;
    color: #d3135a;
}

.points-map__card__content a:hover {
    text-decoration: underline;
}

.points-map__card .btn-close {
    display: none;
    background: #d3135a;
    color: #fff;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 55px;
    border-radius: 50%;
    font-size: 20px;
    text-indent: -3px;
    box-shadow: 5px 0px 0px 0px rgba(130, 130, 130, 0.3);
    position: absolute;
    right: 0;
    top: 50%;
    margin-right: -25px;
    margin-top: -25px;
}

@media screen and (min-width: 1024px) {
    .points-map__card .btn-close {
        display: block;
    }
}

.points-map.cardVisible .points-map__card {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

@media screen and (min-width: 1024px) {
    .points-map.offsetMap .points-map__google-map-container {
        -webkit-transform: translate(200px, 0);
        -ms-transform: translate(200px, 0);
        transform: translate(200px, 0);
    }
}

.points-map__count {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    clear: both;
    text-align: center;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .points-map__count {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__count {
        display: none;
    }
}

.points-map__carousel {
    clear: both;
    display: block;
    overflow: hidden;
    display: block;
    transition: all 1s ease;
    padding-bottom: 60px;
}

@media screen and (min-width: 1024px) {
    .points-map__carousel {
        display: none;
    }
}

.points-map__carousel .slick-track {
    margin: auto;
}

.points-map__carousel .slick-slide {
    outline: none;
}

.points-map__carousel .slick-slider {
    margin-bottom: 30px;
}

.points-map__carousel .points-map__card {
    display: block;
    float: left;
    max-width: none;
}

.product-grid {
    padding: 50px 0 0;
    color: #0E141A;
}

.product-grid__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
    margin: 70px 0 30px 0;
}

@media screen and (min-width: 768px) {
    .product-grid__title {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.product-grid:first-child {
    padding-top: 30px;
}

@media screen and (min-width: 768px) {
    .product-grid:first-child {
        padding-top: 70px;
    }
}

@media screen and (min-width: 1024px) {
    .product-grid:first-child {
        padding-top: 110px;
    }
}

.page-article .product-grid {
    background: #f4f4f4;
}

.product-grid header {
    text-align: center;
    padding: 0 15px;
}

.product-grid header p {
    margin: 10px 0;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: 0px;
    line-height: 1.27273;
    color: #999999;
}

.product-grid__products {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

@media screen and (min-width: 768px) {
    .product-grid__products:after {
        content: "";
        -webkit-flex: auto;
        -ms-flex: auto;
        flex: auto;
    }
}

.product-grid__product {
    margin: 0;
    max-width: 370px;
    padding: 15px;
}

@media screen and (min-width: 768px) {
    .product-grid__product {
        max-width: none;
        width: calc(50%);
    }
}

@media screen and (min-width: 1024px) {
    .product-grid__product {
        width: calc(100% / 3);
    }
}

@media screen and (min-width: 768px) {
    .product-grid__product--large {
        width: calc(100%);
        max-width: none;
    }
}

@media screen and (min-width: 1024px) {
    .product-grid__product--large {
        width: calc(200% / 3);
    }
}

.product-grid__carousel {
    display: block;
    overflow: hidden;
    display: block;
    transition: all 1s ease;
    padding-bottom: 60px;
}

.product-grid__carousel--loading {
    display: none;
    visibility: hidden;
}

.product-grid__carousel .slick-track {
    margin: auto;
}

.product-grid__carousel .slick-slide {
    outline: none;
}

.product-grid__carousel .slick-slider {
    margin-bottom: 30px;
}

.product-grid__carousel .product-grid__product {
    display: block;
    float: left;
    max-width: none;
}

.product-hero {
    box-sizing: inherit;
    padding: 90px 0 170px;
    width: 100%;
    margin-bottom: -170px;
}

.product-hero_title {
    margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .product-hero {
        padding: 155px 0 270px;
        margin-bottom: -270px;
    }
}

.product-hero_inner {
    float: left;
    display: block;
    width: 76.76824%;
    float: none;
    margin-left: auto;
    margin-right: auto;
    min-width: 250px;
    position: relative;
    text-align: center;
}

.product-hero_inner:last-child {
    width: 74.41059%;
}

@media screen and (min-width: 768px) {
    .product-hero_inner {
        float: left;
        display: block;
        width: 85.29804%;
        float: none;
    }

    .product-hero_inner:last-child {
        width: 82.94039%;
    }
}

.product-hero_plan-icon {
    font-size: 16px;
    letter-spacing: 0.64px;
    line-height: 1;
    color: #ffffff;
    opacity: 0.5;
    margin-bottom: 10px;
    display: block;
}

@media screen and (min-width: 1024px) {
    .product-hero_plan-icon {
        font-size: 18px;
        letter-spacing: 0.72px;
        line-height: 1;
        margin-bottom: 15px;
    }
}

.product-hero_plan-title {
    color: #ffffff;
    opacity: 0.5;
}

.product-hero_detail {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #ffffff;
    font-size: 18px;
    margin-top: 10px;
}

@media screen and (min-width: 768px) {
    .product-hero_detail {
        font-size: 20px;
        margin-top: 12px;
    }
}

@media screen and (min-width: 1024px) {
    .product-hero_detail {
        font-size: 24px;
        margin-top: 16px;
    }
}

.color-scheme--blue .product-hero {
    background: #002466;
    background: #2d98ed;
    background: linear-gradient(0deg, #2d98ed 29%, #002466 71%);
}

.quote-builder-overlay {
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    transition: all .4s ease-in-out;
    z-index: 999;
}

.quote-builder-overlay.active {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

@media screen and (min-width: 1024px) {
    .quote-builder-overlay .quote-builder__app {
        height: 100vh;
    }
}

.quote-builder__header {
    z-index: 1;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.quote-builder__header .btn-close {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .quote-builder__header .btn-close {
        height: 21px;
        width: 21px;
    }
}

.quote-builder {
    overflow: hidden;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.quote-builder [v-cloak] {
    display: none;
}

.quote-builder p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .quote-builder {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.quote-builder__app {
    color: #fff;
    height: 100vh;
	display:block;
    transition: background 0.4s;
}

@media screen and (min-width: 1024px) {
    .quote-builder__app {
        height: calc(100vh - 40px);
    }
}

.quote-builder section, .quote-builder #quoteBuilderForm, .quote-builder__question {
    display:block;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
}

.quote-builder__content {
    z-index: 1;
}

@media screen and (min-width: 1024px) {
    .quote-builder__content {
        position: static;
        width: 50%;
        max-width: 600px;
    }
}

.quote-builder__question .container,
.quote-builder__error .container {
    padding: 0 15px;
    padding-top: 60px !important;
    padding-bottom: 90px !important;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

@media screen and (min-width: 768px) {
    .quote-builder__question .container,
    .quote-builder__error .container {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder__question .container,
    .quote-builder__error .container {
        padding: 0 30px;
    }
}

@media screen and (max-width: 1023px) {
    .quote-builder__question .container,
    .quote-builder__error .container {
        height: 100%;
    }

    .quote-builder__question .container .quote-builder__title,
    .quote-builder__error .container .quote-builder__title {
        text-align: center;
    }
}

@media screen and (min-width: 768px) {
    .quote-builder__question .container,
    .quote-builder__error .container {
        padding-top: 100px;
    }

    .quote-builder__question .container:after,
    .quote-builder__error .container:after {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder__question .container,
    .quote-builder__error .container {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding-top: 0;
        padding-bottom: 80px;
        min-height: 640px;
    }
}

.quote-builder__error .container .quote-builder__title {
    text-align: left !important;
}

@media screen and (min-width: 1024px) {
    .quote-builder__intro .quote-builder__content {
        width: 100%;
        max-width: 960px;
    }
}

@media screen and (min-width: 768px) {
    .quote-builder__address-form .input-wrapper {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}

.quote-builder__address-form .input-wrapper input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 1;
    outline: none;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 11px 0;
    transition: all 0.8s linear;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .quote-builder__address-form .input-wrapper input {
        font-size: 24px;
        letter-spacing: 0px;
        line-height: 1;
        margin-bottom: 0;
        width: 22em;
    }
}

.quote-builder__address-form .input-wrapper input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.8s linear;
}

.quote-builder__address-form .input-wrapper input::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.8s linear;
}

.quote-builder__address-form .input-wrapper input:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.8s linear;
}

.quote-builder__address-form .input-wrapper input:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.8s linear;
}

.quote-builder__address-form .input-wrapper input:invalid + .cta {
    background-color: transparent;
    border-color: transparent;
    color: #ffffff;
    padding: 13px 0 14px;
    cursor: auto;
}

.quote-builder__address-form .input-wrapper input[type=number]::-webkit-inner-spin-button, .quote-builder__address-form .input-wrapper input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quote-builder__address-form .input-wrapper .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
    transition: all 0.2s linear;
    min-width: 0;
    white-space: nowrap;
}

.quote-builder__address-form .input-wrapper .cta:hover, .quote-builder__address-form .input-wrapper .cta._hover,
a:hover .quote-builder__address-form .input-wrapper .cta {
    text-decoration: none;
}

.quote-builder__address-form .input-wrapper .cta:hover, .quote-builder__address-form .input-wrapper .cta._hover,
a:hover .quote-builder__address-form .input-wrapper .cta {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

.quote-builder__address-form .input-wrapper .cta:after {
    display: block;
    font-family: 'icomoon';
    content: "\e900";
    font-style: normal;
    font-weight: normal;
}

.quote-builder__address-form .input-wrapper .cta:after {
    display: inline;
    margin-left: 14px;
}

.quote-builder__address-form .input-wrapper .cta:disabled {
    visibility: visible;
}

.quote-builder__images img {
    max-width: 100%;
}

@media screen and (max-width: 374px) {
    .quote-builder__images img {
        display: block;
        margin: auto;
        max-width: 100px;
    }
}

.quote-builder__images__wrap {
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .quote-builder__images__wrap {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder__images__wrap {
        padding: 0 30px;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder__images {
        z-index: 0;
        height: 0;
        padding-top: 100%;
        width: 100% !important;
        max-width: none !important;
    }

    .quote-builder__images__wrap {
        display: block !important;
    }

    .quote-builder__images__image {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
    }

    .quote-builder__images__wrap {
        width: 50% !important;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder__images {
        padding-top: 0;
        max-width: 550px !important;
    }

    .quote-builder__images__image {
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        position: static;
    }

    .quote-builder__images img {
        position: absolute;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    .quote-builder__images__wrap {
        width: auto !important;
        margin: 0;
        position: absolute;
        right: 0;
        top: 50%;
        width: 50% !important;
    }
}

.question-type--range .quote-builder__images,
.question-type--text .quote-builder__images,
.question-type--number .quote-builder__images {
    display: block;
    width: 80%;
    max-width: 180px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .question-type--range .quote-builder__images,
    .question-type--text .quote-builder__images,
    .question-type--number .quote-builder__images {
        max-width: 400px;
    }
}

@media screen and (max-width: 1023px) {
    .quote-builder .question-type--radio .quote-builder__images__wrap {
        display: none;
    }

    .quote-builder .question-type--radio .swiper-container {
        width: 85%;
        margin: 0 auto;
        overflow: visible;
    }

    .quote-builder .question-type--radio .swiper-pagination {
        text-align: center;
        width: 100%;
    }

    .quote-builder .question-type--radio .swiper-pagination-bullet {
        margin: 0 7px;
        background: #fff;
        opacity: 0.3;
    }

    .quote-builder .question-type--radio .swiper-pagination-bullet-active {
        background: #fff;
        display: block;
    }

    .quote-builder .question-type--radio .form-row {
        text-align: center;
    }

    .quote-builder .question-type--radio .form-row input + label {
        padding: 0;
    }

    .quote-builder .question-type--radio .form-row input + label:before, .quote-builder .question-type--radio .form-row input + label:after {
        display: none;
    }

    .quote-builder .question-type--radio .radio-image {
        margin-bottom: 30px;
    }

    .quote-builder .question-type--radio .radio-image img {
        display: block;
        width: 80%;
        max-width: 180px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1023px) and (max-width: 374px) {
    .quote-builder .question-type--radio .radio-image img {
        max-width: 100px;
    }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
    .quote-builder .question-type--radio .radio-image img {
        max-width: 400px;
    }
}

@media screen and (max-width: 1023px) {
    .quote-builder .question-type--radio .radio-image .icon-tick {
        position: absolute;
        background: #fff;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        line-height: 33px;
        display: block;
        left: 50%;
        margin-left: -15px;
        bottom: -15px;
        font-size: 18px;
    }
}

@media screen and (max-width: 1023px) and (max-width: 374px) {
    .quote-builder .question-type--radio .radio-image .icon-tick {
        width: 20px;
        height: 20px;
        line-height: 23px;
        margin-left: -10px;
        bottom: -10px;
        font-size: 11px;
    }
}

@media screen and (min-width: 768px) {
    .quote-builder .question-type--radio .swiper-container {
        max-width: 520px;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder .question-type--radio .swiper-container {
        max-width: none;
    }

    .quote-builder .question-type--radio .swiper-wrapper {
        display: block;
    }

    .quote-builder .question-type--radio .swiper-pagination {
        display: none;
    }

    .quote-builder .question-type--radio .radio-image {
        display: none !important;
    }
}

@media screen and (max-width: 1023px) {
    .quote-builder__question .quote-builder__title {
        text-align: center;
    }
}

.quote-builder__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #fff;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .quote-builder__title {
        font-size: 60px;
        letter-spacing: -1.2px;
        line-height: 1.08333;
    }
}

.quote-builder .eyebrow {
    color: #fff;
}

@media screen and (max-width: 374px) {
    .quote-builder .eyebrow {
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder .eyebrow {
        display: block;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder .eyebrow {
        margin-bottom: 60px;
    }
}

.quote-builder .form-row {
    margin-bottom: 20px;
    text-align: center;
}

@media screen and (max-width: 374px) {
    .quote-builder .form-row {
        margin-bottom: 10px;
    }
}

.quote-builder .form-row input[type="text"],
.quote-builder .form-row input[type="number"],
.quote-builder .form-row input[type="email"],
.quote-builder .form-row .range-slider,
.quote-builder .form-row .range-slider__label {
    max-width: 350px;
}

.quote-builder .form-row input.radio + label,
.quote-builder .form-row input.radio:checked + label {
    font-size: 24px;
    letter-spacing: 0.24px;
    line-height: 1;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    text-align: left;
}

@media screen and (max-width: 1023px) {
    .quote-builder .form-row input.radio + label,
    .quote-builder .form-row input.radio:checked + label {
        text-align: center;
    }
}

.quote-builder .form-row .range-slider__label {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 40px;
    letter-spacing: 0.4px;
    line-height: 0.7;
    display: block;
    text-align: center;
    margin: 30px auto;
}

@media screen and (max-width: 374px) {
    .quote-builder .form-row .range-slider__label {
        font-size: 30px;
        letter-spacing: 0.3px;
        line-height: 0.93333;
        margin: 10px auto 0;
    }
}

.quote-builder .form-row .range-slider {
    margin: 0 auto;
}

@media screen and (min-width: 1024px) {
    .quote-builder .form-row {
        text-align: left;
    }

    .quote-builder .form-row .range-slider__label {
        margin: 30px 0;
    }

    .quote-builder .form-row .range-slider {
        margin: 0;
    }
}

.quote-builder .form-row .error {
    margin-top: 10px;
    margin-bottom: 0;
}

.quote-builder__fields:last-child .form-row {
    margin: 0;
}

.quote-builder button:disabled {
    visibility: hidden;
}

.quote-builder .btn-cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
    transition: background-color 100ms linear;
    padding-left: 0;
    padding-right: 0;
    white-space: nowrap;
    border-color: rgba(255, 255, 255, 0.5);
}

.quote-builder .btn-cta:hover, .quote-builder .btn-cta._hover,
a:hover .quote-builder .btn-cta {
    text-decoration: none;
}

.quote-builder .btn-cta:hover, .quote-builder .btn-cta._hover,
a:hover .quote-builder .btn-cta {
    background-color: rgba(255, 255, 255, 0.2);
}

.quote-builder .btn-cta:hover {
    border-color: white;
    background: transparent;
}

.quote-builder .btn-next span {
    display: inline-block;
    margin-left: 5px;
}

.quote-builder .btn-next span:before {
    display: block;
    font-family: 'icomoon';
    content: "\e900";
    font-style: normal;
    font-weight: normal;
}

.quote-builder .btn-prev span {
    display: inline-block;
    margin-right: 5px;
}

.quote-builder .btn-prev span:before {
    display: block;
    font-family: 'icomoon';
    content: "\e900";
    font-style: normal;
    font-weight: normal;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.quote-builder__ui {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
}

.quote-builder__ui__progress {
    color: #0E141A;
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    width: 60px;
    text-align: center;
}

@media screen and (min-width: 1024px) {
    .quote-builder__ui__progress {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    .quote-builder__ui {
        width: 100%;
        background: #EFF2F7;
        z-index: 1;
    }

    .quote-builder__ui .btn-cta, .quote-builder__ui .btn-cta[style] {
        background: #fff;
        color: #0E141A !important;
        border: none;
        height: 60px;
        -webkit-flex: 1 1 0;
        -ms-flex: 1 1 0;
        flex: 1 1 0;
        min-width: 0 !important;
        padding: 0 !important;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder__ui {
        position: static;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder__ui {
        position: absolute;
        left: 30px;
        min-width: 350px;
    }
}

.quote-builder__ui .btn-next[style], .quote-builder__ui .btn-submit[style] {
    background: #fff;
}

.quote-builder__ui .btn-next[style]:hover, .quote-builder__ui .btn-submit[style]:hover {
    background: #fff;
}

.quote-builder input[type="text"]::-webkit-input-placeholder,
.quote-builder input[type="number"]
input[type="email"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.5);
}

.quote-builder input[type="text"]::-moz-placeholder,
.quote-builder input[type="number"]
input[type="email"]::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.5);
}

.quote-builder input[type="text"]:-ms-input-placeholder,
.quote-builder input[type="number"]
input[type="email"]:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 0.5);
}

.quote-builder input[type="text"]:-moz-placeholder,
.quote-builder input[type="number"]
input[type="email"]:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.5);
}

@media screen and (min-width: 1024px) {
    .quote-builder__error .container {
        min-height: 0;
    }

    .quote-builder__error .quote-builder__ui {
        position: static;
    }
}

.quote-builder .fade-transition {
    transition: opacity .4s ease;
    display: block;
}

.quote-builder .fade-enter, .quote-builder .fade-leave {
    display: none;
}

.quote-builder .image-fade-transition {
    transition: opacity .2s ease;
    display: block;
}

.quote-builder .image-fade-enter,
.quote-builder .image-fade-leave {
    display: none;
}

.quote-builder .image-fade-enter {
    z-index: 100;
    transition-delay: 0;
}

.quote-builder .image-fade-leave {
    transition-delay: .1s;
}

.quote-builder .pop-transition,
.quote-builder .pop-delay-transition {
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    display: block;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.quote-builder .pop-delay-transition {
    transition-delay: 0.4s;
}

.quote-builder .pop-enter,
.quote-builder .pop-delay-enter {
    display: none;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.quote-builder .pop-leave,
.quote-builder .pop-delay-leave {
    transition-delay: 0s;
    display: none;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.quote-builder .slideForward-transition,
.quote-builder .slideBack-transition {
    transition: all 0.4s;
    -webkit-transform: translateZ(1);
    transform: translateZ(1);
    transition-delay: 0.4s;
}

.quote-builder .slideForward-transition .quote-builder__content,
.quote-builder .slideBack-transition .quote-builder__content {
    display: block;
    transition: all 0.4s ease-in-out;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition-delay: 0.4s;
}

.quote-builder .slideForward-transition .quote-builder__images,
.quote-builder .slideBack-transition .quote-builder__images {
    transition: all 0.3s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition-delay: 0.4s;
}

.quote-builder .slideForward-enter .quote-builder__images,
.quote-builder .slideForward-leave .quote-builder__images,
.quote-builder .slideBack-enter .quote-builder__images,
.quote-builder .slideBack-leave .quote-builder__images {
    display: none;
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
}

.quote-builder .slideForward-leave .quote-builder__images,
.quote-builder .slideBack-leave .quote-builder__images {
    transition-delay: 0s;
}

.quote-builder .slideForward-enter {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.quote-builder .slideForward-enter .quote-builder__content {
    display: none;
    -webkit-transform: translate(2%, 0);
    -ms-transform: translate(2%, 0);
    transform: translate(2%, 0);
}

.quote-builder .slideForward-leave {
    transition-delay: 0s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.quote-builder .slideForward-leave .quote-builder__content {
    display: none;
    transition-delay: 0s;
    -webkit-transform: translate(-2%, 0);
    -ms-transform: translate(-2%, 0);
    transform: translate(-2%, 0);
}

.quote-builder .slideBack-enter {
    transition-delay: 0.4s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.quote-builder .slideBack-enter .quote-builder__content {
    display: none;
    transition-delay: .5;
    -webkit-transform: translate(-2%, 0);
    -ms-transform: translate(-2%, 0);
    transform: translate(-2%, 0);
}

.quote-builder .slideBack-leave {
    transition-delay: 0s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.quote-builder .slideBack-leave .quote-builder__content {
    display: none;
    transition-delay: 0s;
    -webkit-transform: translate(2%, 0);
    -ms-transform: translate(2%, 0);
    transform: translate(2%, 0);
}

@-webkit-keyframes rectangle1a {
    0% {
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }
    25% {
        -webkit-transform: translate(-6%, 0);
        transform: translate(-6%, 0);
    }
    100% {
        -webkit-transform: translate(100%, 0);
        transform: translate(100%, 0);
    }
}

@keyframes rectangle1a {
    0% {
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }
    25% {
        -webkit-transform: translate(-6%, 0);
        transform: translate(-6%, 0);
    }
    100% {
        -webkit-transform: translate(100%, 0);
        transform: translate(100%, 0);
    }
}

@-webkit-keyframes rectangle1b {
    0% {
        -webkit-transform: translate(-100%, 220px);
        transform: translate(-100%, 220px);
    }
    25% {
        -webkit-transform: translate(0, 220px);
        transform: translate(0, 220px);
    }
    100% {
        -webkit-transform: translate(100%, 220px);
        transform: translate(100%, 220px);
    }
}

@keyframes rectangle1b {
    0% {
        -webkit-transform: translate(-100%, 220px);
        transform: translate(-100%, 220px);
    }
    25% {
        -webkit-transform: translate(0, 220px);
        transform: translate(0, 220px);
    }
    100% {
        -webkit-transform: translate(100%, 220px);
        transform: translate(100%, 220px);
    }
}

@-webkit-keyframes rectangle1c {
    0% {
        -webkit-transform: translate(-100%, 440px);
        transform: translate(-100%, 440px);
    }
    25% {
        -webkit-transform: translate(-10%, 440px);
        transform: translate(-10%, 440px);
    }
    100% {
        -webkit-transform: translate(100%, 440px);
        transform: translate(100%, 440px);
    }
}

@keyframes rectangle1c {
    0% {
        -webkit-transform: translate(-100%, 440px);
        transform: translate(-100%, 440px);
    }
    25% {
        -webkit-transform: translate(-10%, 440px);
        transform: translate(-10%, 440px);
    }
    100% {
        -webkit-transform: translate(100%, 440px);
        transform: translate(100%, 440px);
    }
}

@-webkit-keyframes rectangle2a {
    0% {
        -webkit-transform: translate(-400%, 200px);
        transform: translate(-400%, 200px);
    }
    10% {
        -webkit-transform: translate(15%, 200px);
        transform: translate(15%, 200px);
    }
    100% {
        -webkit-transform: translate(500%, 200px);
        transform: translate(500%, 200px);
    }
}

@keyframes rectangle2a {
    0% {
        -webkit-transform: translate(-400%, 200px);
        transform: translate(-400%, 200px);
    }
    10% {
        -webkit-transform: translate(15%, 200px);
        transform: translate(15%, 200px);
    }
    100% {
        -webkit-transform: translate(500%, 200px);
        transform: translate(500%, 200px);
    }
}

@-webkit-keyframes rectangle2b {
    0% {
        -webkit-transform: rotate(270deg) translate(-200%, 380px);
        transform: rotate(270deg) translate(-200%, 380px);
    }
    25% {
        -webkit-transform: rotate(270deg) translate(10%, 380px);
        transform: rotate(270deg) translate(10%, 380px);
    }
    100% {
        -webkit-transform: rotate(270deg) translate(200%, 380px);
        transform: rotate(270deg) translate(200%, 380px);
    }
}

@keyframes rectangle2b {
    0% {
        -webkit-transform: rotate(270deg) translate(-200%, 380px);
        transform: rotate(270deg) translate(-200%, 380px);
    }
    25% {
        -webkit-transform: rotate(270deg) translate(10%, 380px);
        transform: rotate(270deg) translate(10%, 380px);
    }
    100% {
        -webkit-transform: rotate(270deg) translate(200%, 380px);
        transform: rotate(270deg) translate(200%, 380px);
    }
}

@-webkit-keyframes rectangle2c {
    0% {
        -webkit-transform: rotate(270deg) translate(-300%, 620px);
        transform: rotate(270deg) translate(-300%, 620px);
    }
    25% {
        -webkit-transform: rotate(270deg) translate(15%, 620px);
        transform: rotate(270deg) translate(15%, 620px);
    }
    100% {
        -webkit-transform: rotate(270deg) translate(300%, 620px);
        transform: rotate(270deg) translate(300%, 620px);
    }
}

@keyframes rectangle2c {
    0% {
        -webkit-transform: rotate(270deg) translate(-300%, 620px);
        transform: rotate(270deg) translate(-300%, 620px);
    }
    25% {
        -webkit-transform: rotate(270deg) translate(15%, 620px);
        transform: rotate(270deg) translate(15%, 620px);
    }
    100% {
        -webkit-transform: rotate(270deg) translate(300%, 620px);
        transform: rotate(270deg) translate(300%, 620px);
    }
}

@-webkit-keyframes ringa {
    0% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    25% {
        -webkit-transform: rotate(35deg);
        transform: rotate(35deg);
    }
    100% {
        -webkit-transform: rotate(-270deg);
        transform: rotate(-270deg);
    }
}

@keyframes ringa {
    0% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    25% {
        -webkit-transform: rotate(35deg);
        transform: rotate(35deg);
    }
    100% {
        -webkit-transform: rotate(-270deg);
        transform: rotate(-270deg);
    }
}

@-webkit-keyframes ringb {
    0% {
        -webkit-transform: rotate(160deg);
        transform: rotate(160deg);
    }
    25% {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    100% {
        -webkit-transform: rotate(-300deg);
        transform: rotate(-300deg);
    }
}

@keyframes ringb {
    0% {
        -webkit-transform: rotate(160deg);
        transform: rotate(160deg);
    }
    25% {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    100% {
        -webkit-transform: rotate(-300deg);
        transform: rotate(-300deg);
    }
}

@-webkit-keyframes ringc {
    0% {
        -webkit-transform: rotate(170deg);
        transform: rotate(170deg);
    }
    25% {
        -webkit-transform: rotate(40deg);
        transform: rotate(40deg);
    }
    100% {
        -webkit-transform: rotate(-280deg);
        transform: rotate(-280deg);
    }
}

@keyframes ringc {
    0% {
        -webkit-transform: rotate(170deg);
        transform: rotate(170deg);
    }
    25% {
        -webkit-transform: rotate(40deg);
        transform: rotate(40deg);
    }
    100% {
        -webkit-transform: rotate(-280deg);
        transform: rotate(-280deg);
    }
}

.quote-business {
    transition: all 0.8s linear;
    background: #fff;
    overflow: hidden;
}

.quote-business_svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
}

.quote-business_svg .svg {
    display: none;
}

.quote-business_svg .svg.rectangles1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-30%, -50%) scale(1.9) rotate(120deg);
    -ms-transform: translate(-30%, -50%) scale(1.9) rotate(120deg);
    transform: translate(-30%, -50%) scale(1.9) rotate(120deg);
}

.quote-business_svg .svg.rectangles1 svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.quote-business_svg .svg.rectangles1.animate .rect1a {
    -webkit-animation: rectangle1a 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: rectangle1a 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quote-business_svg .svg.rectangles1.animate .rect1b {
    -webkit-animation: rectangle1b 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: rectangle1b 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quote-business_svg .svg.rectangles1.animate .rect1c {
    -webkit-animation: rectangle1c 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: rectangle1c 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quote-business_svg .svg.rings {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-15%, -50%) scale(0.75);
    -ms-transform: translate(-15%, -50%) scale(0.75);
    transform: translate(-15%, -50%) scale(0.75);
}

.quote-business_svg .svg.rings svg {
    position: absolute;
    top: 0;
    left: 0;
}

.quote-business_svg .svg.rings.animate .ringa {
    -webkit-animation: ringa 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: ringa 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.quote-business_svg .svg.rings.animate .ringb {
    -webkit-animation: ringb 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: ringb 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.quote-business_svg .svg.rings.animate .ringc {
    -webkit-animation: ringc 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: ringc 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.quote-business_svg .svg.rectangles2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1.5) rotate(140deg);
    -ms-transform: translate(-50%, -50%) scale(1.5) rotate(140deg);
    transform: translate(-50%, -50%) scale(1.5) rotate(140deg);
}

.quote-business_svg .svg.rectangles2 svg {
    position: absolute;
    top: 0;
    left: 0;
}

.quote-business_svg .svg.rectangles2.animate .rect2a {
    -webkit-animation: rectangle2a 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: rectangle2a 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quote-business_svg .svg.rectangles2.animate .rect2b {
    -webkit-animation: rectangle2b 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: rectangle2b 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quote-business_svg .svg.rectangles2.animate .rect2c {
    -webkit-animation: rectangle2c 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: rectangle2c 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quote-business_header {
    min-height: 100vh;
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .quote-business_header {
        max-height: 1000px;
        min-height: 0;
        height: calc(100vh - 40px);
    }
}

.quote-business_header_inner {
    -webkit-flex: 0 0 0;
    -ms-flex: 0 0 0;
    flex: 0 0 0;
}

.quote-business_header_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media screen and (min-width: 1024px) {
    .quote-business_header_content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%;
    }

    .quote-business_header_content:last-child {
        margin-right: 0;
    }
}

.quote-business_header_content span {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    transition: all 0.8s linear;
}

@media screen and (min-width: 768px) {
    .quote-business_header_content span {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 768px) {
    .quote-business_header_content span {
        margin-bottom: 60px;
    }
}

.quote-business_header_content h1 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
    margin-bottom: 40px;
    transition: all 0.8s linear;
}

@media screen and (min-width: 768px) {
    .quote-business_header_content h1 {
        font-size: 60px;
        letter-spacing: -1.2px;
        line-height: 1.08333;
    }
}

@media screen and (min-width: 768px) {
    .quote-business_header_content h1 {
        margin-bottom: 50px;
    }
}

@media screen and (min-width: 768px) {
    .quote-business_header .input-holder {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}

.quote-business_header .input-holder input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    color: #0E141A;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 1;
    outline: none;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 11px 0;
    transition: all 0.8s linear;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .quote-business_header .input-holder input {
        font-size: 24px;
        letter-spacing: 0px;
        line-height: 1;
        margin-bottom: 0;
        width: 17em;
    }
}

.quote-business_header .input-holder input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #0E141A;
    opacity: 0.3;
    transition: all 0.8s linear;
}

.quote-business_header .input-holder input::-moz-placeholder {
    /* Firefox 19+ */
    color: #0E141A;
    opacity: 0.3;
    transition: all 0.8s linear;
}

.quote-business_header .input-holder input:-ms-input-placeholder {
    /* IE 10+ */
    color: #0E141A;
    opacity: 0.3;
    transition: all 0.8s linear;
}

.quote-business_header .input-holder input:-moz-placeholder {
    /* Firefox 18- */
    color: #0E141A;
    opacity: 0.3;
    transition: all 0.8s linear;
}

.quote-business_header .input-holder input:invalid + .cta {
    background-color: transparent;
    border-color: transparent;
    color: #002466;
    padding: 13px 0 14px;
    cursor: auto;
}

.quote-business_header .input-holder input[type=number]::-webkit-inner-spin-button, .quote-business_header .input-holder input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quote-business_header .input-holder .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
    transition: all 0.2s linear;
    min-width: 0;
    white-space: nowrap;
}

.quote-business_header .input-holder .cta:hover, .quote-business_header .input-holder .cta._hover,
a:hover .quote-business_header .input-holder .cta {
    text-decoration: none;
}

.quote-business_header .input-holder .cta:hover, .quote-business_header .input-holder .cta._hover,
a:hover .quote-business_header .input-holder .cta {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

.quote-business_header .input-holder .cta:after {
    display: block;
    font-family: 'icomoon';
    content: "\e900";
    font-style: normal;
    font-weight: normal;
}

.quote-business_header .input-holder .cta:after {
    display: inline;
    margin-left: 14px;
}

.quote-business_choose-plans {
    min-height: 100vh;
    display: none;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.quote-business_choose-plans_inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .quote-business_choose-plans_inner {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.quote-business_choose-plans_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .quote-business_choose-plans_content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
        padding-top: 10vh;
    }

    .quote-business_choose-plans_content:last-child {
        margin-right: 0;
    }
}

.quote-business_choose-plans_content h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_content h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.quote-business_choose-plans_content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
}

.quote-business_choose-plans_content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.quote-business_choose-plans_content .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    color: #ffffff;
    text-transform: uppercase;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin: 20px 0 40px 0;
}

@media screen and (min-width: 1024px) {
    .quote-business_choose-plans_content .cta {
        margin: 60px 0 0 0;
    }
}

@media screen and (min-width: 1024px) {
    .quote-business_choose-plans_plan-holder {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 57.35098%;
        margin-right: 0;
        margin-left: 8.5298%;
    }

    .quote-business_choose-plans_plan-holder:last-child {
        margin-right: 0;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.quote-business_choose-plans_plan-list input[type=radio] + label {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 10px 0;
    padding: 0;
    transition: all 0.1s linear;
    box-shadow: 0 0 0 0 transparent;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        margin: 15px 0;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label:before, .quote-business_choose-plans_plan-list input[type=radio] + label:after {
    display: none;
}

.quote-business_choose-plans_plan-list input[type=radio] + label .price-holder {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    background: #002466;
    padding: 20px;
    transition: all 0.2s linear;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .price-holder {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 50px;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .price-holder .price {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .price-holder .price {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (max-width: 767px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .price-holder .price {
        margin-right: 8px;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .price-holder .unit {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
}

.quote-business_choose-plans_plan-list input[type=radio] + label .price-holder .unit p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .price-holder .unit {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .price-holder .unit {
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        letter-spacing: 0px;
        line-height: 1.66667;
        color: #ffffff;
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .price-holder .unit {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder {
    background: #ffffff;
    padding: 20px;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder {
        padding: 50px;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .type {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .type {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .type {
        margin-bottom: 18px;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder h3 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.52px;
    line-height: 1.07692;
    color: #0E141A;
    margin-bottom: 6px;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder h3 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder p {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder p {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder p {
        margin-bottom: 18px;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas {
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas {
        margin-top: 32px;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #d3135a;
    color: #d3135a;
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a:hover, .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a._hover,
a:hover .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a {
    text-decoration: none;
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a:hover, .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a._hover,
a:hover .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a {
    background-color: rgba(211, 19, 89, 0.2);
}

@media screen and (max-width: 767px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a {
        -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
        align-self: stretch;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a:hover {
    cursor: pointer;
}

.quote-business_choose-plans_plan-list input[type=radio] + label:hover {
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.025);
    -ms-transform: scale(1.025);
    transform: scale(1.025);
    position: relative;
    z-index: 1;
}

.quote-business_choose-plans_plan-list input[type=radio]:checked + label .price-holder,
.quote-business_choose-plans_plan-list input[type=radio]:focus + label .price-holder {
    background: #d3135a;
}

.quote-business_choose-plans_plan-template {
    display: none;
}

.quote-business_choose-plans_terms {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    margin: 14px 0 40px 0;
    opacity: 0.6;
    text-align: right;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_terms {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.quote-business_request-plans {
    min-height: 100vh;
    display: none;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.quote-business_request-plans_inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .quote-business_request-plans_inner {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.quote-business_request-plans_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .quote-business_request-plans_content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
    }

    .quote-business_request-plans_content:last-child {
        margin-right: 0;
    }
}

.quote-business_request-plans_content h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .quote-business_request-plans_content h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.quote-business_request-plans_content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
    margin-bottom: 20px;
}

.quote-business_request-plans_content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .quote-business_request-plans_content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.quote-business_request-plans_form {
    padding-bottom: 100px;
}

@media screen and (min-width: 1024px) {
    .quote-business_request-plans_form {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 57.35098%;
        margin-right: 0;
        margin-left: 8.5298%;
    }

    .quote-business_request-plans_form:last-child {
        margin-right: 0;
    }
}

.quote-business_request-plans_form button {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
}

.quote-business_request-plans_form button:hover, .quote-business_request-plans_form button._hover,
a:hover .quote-business_request-plans_form button {
    text-decoration: none;
}

.quote-business_request-plans_form button:hover, .quote-business_request-plans_form button._hover,
a:hover .quote-business_request-plans_form button {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

.quote-business_request-plans_confirmation {
    display: none;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .quote-business_request-plans_confirmation {
        float: left;
        display: block;
        margin-right: 2.35765%;
        margin-top: 20px;
        /*width: 31.76157%;*/
        display: none;
    }

    .quote-business_request-plans_confirmation:last-child {
        margin-right: 0;
    }
}

.quote-business_request-plans_confirmation h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .quote-business_request-plans_confirmation h2 {
        font-size: 60px;
        letter-spacing: -1.2px;
        line-height: 1.08333;
    }
}

.quote-business_request-plans_confirmation p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    margin-bottom: 20px;
}

.quote-business_request-plans_confirmation p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .quote-business_request-plans_confirmation p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.quote-business_request-plans_confirmation a {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.28px;
    line-height: 1;
    padding-top: 32px;
    padding-bottom: 32px;
    width: 100%;
}

.quote-business_request-plans_confirmation a:hover, .quote-business_request-plans_confirmation a._hover,
a:hover .quote-business_request-plans_confirmation a {
    text-decoration: none;
}

.quote-business_request-plans_confirmation a:hover, .quote-business_request-plans_confirmation a._hover,
a:hover .quote-business_request-plans_confirmation a {
    background-color: rgba(255, 255, 255, 0.2);
}

.quote-business--color .quote-business_header_content span {
    color: #ffffff;
}

.quote-business--color .quote-business_header_content h1 {
    color: #ffffff;
}

.quote-business--color .quote-business_header_content .input-holder input {
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
}

.quote-business--color .quote-business_header_content .input-holder input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
    opacity: 0.4;
}

.quote-business--color .quote-business_header_content .input-holder input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
    opacity: 0.4;
}

.quote-business--color .quote-business_header_content .input-holder input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
    opacity: 0.4;
}

.quote-business--color .quote-business_header_content .input-holder input:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
    opacity: 0.4;
}

.quote-business--color .quote-business_header_content .input-holder input:invalid + .cta {
    color: #ffffff;
}

.registration {
    transition: all 0.8s linear;
    background: #002466;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .registration_section {
        padding: 100px 0;
    }
}

.registration_choose-plans {
    min-height: 100vh;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 100px 0 0 0;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans {
        padding: 200px 0 100px 0;
    }
}

.registration_choose-plans_inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .registration_choose-plans_inner {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.registration_choose-plans_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .registration_choose-plans_content {
        padding: 0 2.35765%;
        text-align: center;
    }
}

@media screen and (min-width: 1024px) {
    .registration_choose-plans_content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
    }

    .registration_choose-plans_content:last-child {
        margin-right: 0;
    }
}

.registration_choose-plans_content h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_content h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_content h2 {
        margin-bottom: 5px;
    }
}

.registration_choose-plans_content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
}

.registration_choose-plans_content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.registration_choose-plans_content p.address {
    font-size: 18px;
    letter-spacing: 0.36px;
    line-height: 1.66667;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_content p.address {
        font-size: 24px;
        letter-spacing: 0.48px;
        line-height: 1.25;
    }
}

.registration_choose-plans_content .ctas {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (max-width: 767px) {
    .registration_choose-plans_content .ctas {
        margin-bottom: 50px;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_content .ctas {
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        -ms-grid-row-align: flex-start;
        align-items: flex-start;
        margin-bottom: 130px;
    }
}

.registration_choose-plans_content .ctas .ctaPrimary {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
}

.registration_choose-plans_content .ctas .ctaPrimary:hover, .registration_choose-plans_content .ctas .ctaPrimary._hover,
a:hover .registration_choose-plans_content .ctas .ctaPrimary {
    text-decoration: none;
}

.registration_choose-plans_content .ctas .ctaPrimary:hover, .registration_choose-plans_content .ctas .ctaPrimary._hover,
a:hover .registration_choose-plans_content .ctas .ctaPrimary {
    background-color: rgba(255, 255, 255, 0.2);
}

.registration_choose-plans_content .ctas .ctaSecondary {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    color: #ffffff;
    display: inline-block;
    padding: 13px 40px 14px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_content .ctas .ctaSecondary {
        padding-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .registration_choose-plans_content .included {
        margin-bottom: 30px;
    }
}

.registration_choose-plans_content .included h3 {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_content .included h3 {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

.registration_choose-plans_content .included li {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
    margin: 20px 0;
    text-align: left;
    text-indent: -38px;
    padding-left: 38px;
}

.registration_choose-plans_content .included li p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_content .included li {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.registration_choose-plans_content .included li:before {
    font-size: 28px;
    margin-right: 10px;
    vertical-align: sub;
}

@media screen and (min-width: 1024px) {
    .registration_choose-plans_plan-holder {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 57.35098%;
        margin-right: 0;
        margin-left: 8.5298%;
    }

    .registration_choose-plans_plan-holder:last-child {
        margin-right: 0;
    }
}

.registration_choose-plans_plan-list input[type=radio] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.registration_choose-plans_plan-list label {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 10px 0;
    transition: all 0.1s linear;
    box-shadow: 0 0 0 0 transparent;
    padding: 0 !important;
}

.registration_choose-plans_plan-list label:before, .registration_choose-plans_plan-list label:after {
    display: none !important;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        margin: 15px 0;
    }
}

.registration_choose-plans_plan-list label:before {
    content: '';
}

.registration_choose-plans_plan-list label .price-holder {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    background: #002466;
    padding: 20px;
    transition: all 0.2s linear;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .price-holder {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 50px;
    }
}

.registration_choose-plans_plan-list label .price-holder .price {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .price-holder .price {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (max-width: 767px) {
    .registration_choose-plans_plan-list label .price-holder .price {
        margin-right: 8px;
    }
}

.registration_choose-plans_plan-list label .price-holder .unit {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
}

.registration_choose-plans_plan-list label .price-holder .unit p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .price-holder .unit {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .price-holder .unit {
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        letter-spacing: 0px;
        line-height: 1.66667;
        color: #ffffff;
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .registration_choose-plans_plan-list label .price-holder .unit {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.registration_choose-plans_plan-list label .desc-holder {
    background: #ffffff;
    padding: 20px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .desc-holder {
        padding: 50px;
    }
}

.registration_choose-plans_plan-list label .desc-holder .type {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .desc-holder .type {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .desc-holder .type {
        margin-bottom: 18px;
    }
}

.registration_choose-plans_plan-list label .desc-holder h3 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.52px;
    line-height: 1.07692;
    color: #0E141A;
    margin-bottom: 6px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .desc-holder h3 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

.registration_choose-plans_plan-list label .desc-holder p {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .desc-holder p {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .desc-holder p {
        margin-bottom: 18px;
    }
}

.registration_choose-plans_plan-list label .desc-holder .ctas {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .registration_choose-plans_plan-list label .desc-holder .ctas {
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .desc-holder .ctas {
        margin-top: 32px;
    }
}

.registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #d3135a;
    color: #d3135a;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary:hover, .registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary._hover,
a:hover .registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary {
    text-decoration: none;
}

.registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary:hover, .registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary._hover,
a:hover .registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary {
    background-color: rgba(211, 19, 89, 0.2);
}

@media screen and (max-width: 767px) {
    .registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary {
        -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
        align-self: stretch;
    }
}

.registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary:hover {
    cursor: pointer;
}

.registration_choose-plans_plan-list label .desc-holder .ctas .ctaSecondary {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    color: #d3135a;
    display: inline-block;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 13px 40px 14px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .registration_choose-plans_plan-list label .desc-holder .ctas .ctaSecondary {
        display: block;
    }
}

.registration_choose-plans_plan-list label .desc-holder .ctas .ctaSecondary:hover {
    cursor: pointer;
}

.registration_choose-plans_plan-list label:hover {
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.025);
    -ms-transform: scale(1.025);
    transform: scale(1.025);
    position: relative;
    z-index: 1;
}

.registration_choose-plans_plan-list input[type=radio]:checked + label .price-holder,
.registration_choose-plans_plan-list input[type=radio]:focus + label .price-holder {
    background: #d3135a;
}

.registration_choose-plans_terms {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    margin-top: 14px;
    opacity: 0.6;
    text-align: right;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_terms {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.registration_choose-plans_calc-link {
    margin-bottom: 40px;
    text-align: right;
}

.registration_choose-plans_calc-link .link {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    opacity: 0.6;
    text-decoration: underline;
    text-transform: none;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_calc-link .link {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.registration_choose-extras {
    display: none;
    min-height: 100vh;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.registration_choose-extras_inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .registration_choose-extras_inner {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.registration_choose-extras_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .registration_choose-extras_content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
    }

    .registration_choose-extras_content:last-child {
        margin-right: 0;
    }
}

.registration_choose-extras_content h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_content h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.registration_choose-extras_content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
    margin-bottom: 20px;
}

.registration_choose-extras_content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 1024px) {
    .registration_choose-extras_extra-holder {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 57.35098%;
        margin-right: 0;
        margin-left: 8.5298%;
    }

    .registration_choose-extras_extra-holder:last-child {
        margin-right: 0;
    }
}

.registration_choose-extras_extra-holder .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
    margin-top: 40px;
}

.registration_choose-extras_extra-holder .cta:hover, .registration_choose-extras_extra-holder .cta._hover,
a:hover .registration_choose-extras_extra-holder .cta {
    text-decoration: none;
}

.registration_choose-extras_extra-holder .cta:hover, .registration_choose-extras_extra-holder .cta._hover,
a:hover .registration_choose-extras_extra-holder .cta {
    background-color: rgba(255, 255, 255, 0.2);
}

.registration_choose-extras_extra-list input[type=checkbox] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.registration_choose-extras_extra-list label {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 10px 0;
    transition: all 0.1s linear;
    box-shadow: 0 0 0 0 transparent;
    padding: 0 !important;
}

.registration_choose-extras_extra-list label:before, .registration_choose-extras_extra-list label:after {
    display: none !important;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label {
        margin: 15px 0;
    }
}

.registration_choose-extras_extra-list label .price-holder {
    background: #f4f4f4;
    padding: 20px;
    transition: all 0.2s linear;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .price-holder {
        -webkit-align-items: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 25px 40px;
    }
}

.registration_choose-extras_extra-list label .price-holder h3 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    margin-bottom: 0;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .price-holder h3 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

@media screen and (max-width: 767px) {
    .registration_choose-extras_extra-list label .price-holder h3 {
        font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 26px;
        letter-spacing: -0.52px;
        line-height: 1.07692;
        color: #0E141A;
    }
}

@media screen and (max-width: 767px) and (min-width: 768px) {
    .registration_choose-extras_extra-list label .price-holder h3 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

.registration_choose-extras_extra-list label .price-holder .price {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    margin-right: 8px;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .price-holder .price {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.registration_choose-extras_extra-list label .price-holder .unit {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #0E141A;
}

.registration_choose-extras_extra-list label .price-holder .unit p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .price-holder .unit {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .price-holder .unit {
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        letter-spacing: 0px;
        line-height: 1.66667;
        color: #0E141A;
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .registration_choose-extras_extra-list label .price-holder .unit {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.registration_choose-extras_extra-list label .desc-holder {
    background: #ffffff;
    padding: 20px;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .desc-holder {
        padding: 30px 40px;
    }
}

.registration_choose-extras_extra-list label .desc-holder .type {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .desc-holder .type {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .desc-holder .type {
        margin-bottom: 18px;
    }
}

.registration_choose-extras_extra-list label .desc-holder p {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .desc-holder p {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .desc-holder p {
        margin-bottom: 18px;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .desc-holder .ctas {
        margin-top: 16px;
    }
}

.registration_choose-extras_extra-list label .desc-holder .ctas .ctaPrimary {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    color: #d3135a;
    display: inline-block;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 13px 40px 0 0;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.registration_choose-extras_extra-list label .desc-holder .ctas .ctaPrimary:before {
    display: block;
    font-family: 'icomoon';
    content: "\e949";
    font-style: normal;
    font-weight: normal;
}

@media screen and (max-width: 767px) {
    .registration_choose-extras_extra-list label .desc-holder .ctas .ctaPrimary {
        display: block;
    }
}

.registration_choose-extras_extra-list label .desc-holder .ctas .ctaPrimary:before {
    display: inline-block;
    margin-right: 1em;
}

.registration_choose-extras_extra-list label .desc-holder .ctas .ctaPrimary:hover {
    cursor: pointer;
}

.registration_choose-extras_extra-list label:hover {
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.025);
    -ms-transform: scale(1.025);
    transform: scale(1.025);
    position: relative;
    z-index: 1;
}

.registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder,
.registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder {
    background: #d3135a;
}

.registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder h3,
.registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder h3 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder h3,
    .registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder h3 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

@media screen and (max-width: 767px) {
    .registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder h3,
    .registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder h3 {
        font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 26px;
        letter-spacing: -0.52px;
        line-height: 1.07692;
        color: #ffffff;
    }
}

@media screen and (max-width: 767px) and (min-width: 768px) {
    .registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder h3,
    .registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder h3 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

.registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder .price,
.registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder .price {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder .price,
    .registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder .price {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder .unit,
.registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder .unit {
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder .unit,
    .registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder .unit {
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        letter-spacing: 0px;
        line-height: 1.66667;
        color: #ffffff;
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder .unit,
    .registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder .unit {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.registration_choose-extras_extra-list input[type=checkbox]:checked + label .desc-holder .ctas .ctaPrimary:before,
.registration_choose-extras_extra-list input[type=checkbox]:focus + label .desc-holder .ctas .ctaPrimary:before {
    display: block;
    font-family: 'icomoon';
    content: "\e90d";
    font-style: normal;
    font-weight: normal;
}

.registration_choose-extras_extra-list input[type=checkbox]:checked + label .desc-holder .ctas .ctaPrimary:before,
.registration_choose-extras_extra-list input[type=checkbox]:focus + label .desc-holder .ctas .ctaPrimary:before {
    display: inline-block;
    margin-right: 1em;
}

.registration_request-plans {
    min-height: 100vh;
    display: none;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.registration_request-plans_inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .registration_request-plans_inner {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.registration_request-plans_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .registration_request-plans_content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
    }

    .registration_request-plans_content:last-child {
        margin-right: 0;
    }
}

.registration_request-plans_content h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .registration_request-plans_content h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.registration_request-plans_content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
    margin-bottom: 20px;
}

.registration_request-plans_content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .registration_request-plans_content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 1024px) {
    .registration_request-plans_form {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 57.35098%;
        margin-right: 0;
        margin-left: 8.5298%;
    }

    .registration_request-plans_form:last-child {
        margin-right: 0;
    }
}

.registration_request-plans_form button {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
}

.registration_request-plans_form button:hover, .registration_request-plans_form button._hover,
a:hover .registration_request-plans_form button {
    text-decoration: none;
}

.registration_request-plans_form button:hover, .registration_request-plans_form button._hover,
a:hover .registration_request-plans_form button {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

.registration-overlay {
    background: #000000;
    color: #fff;
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    transition: all .4s ease-in-out;
    z-index: 999;
}

.registration-overlay.active {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.registration-overlay__header {
    z-index: 1;
    width: 100%;
}

.registration-overlay__header .btn-close {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .registration-overlay__header .btn-close {
        height: 21px;
        width: 21px;
    }
}

.registration-overlay__main {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.registration-overlay__main::after {
    clear: both;
    content: "";
    display: table;
}

.registration-overlay__main p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .registration-overlay__main {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .registration-overlay__main {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

@media screen and (max-width: 767px) {
    .registration-overlay__col:first-child .registration-overlay__text {
        text-align: center;
    }
}

@media screen and (min-width: 768px) {
    .registration-overlay__col {
        width: 50%;
        float: left;
        padding: 0 30px;
    }

    .registration-overlay__col::after {
        clear: both;
        content: "";
        display: table;
    }

    .registration-overlay__col:first-child {
        padding-left: 0;
    }

    .registration-overlay__col:last-child {
        padding-right: 0;
    }

    .registration-overlay__col:last-child .registration-overlay__text {
        float: right;
    }
}

.registration-overlay__title {
    color: #fff;
    margin-bottom: 20px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #fff;
}

@media screen and (min-width: 768px) {
    .registration-overlay__title {
        font-size: 60px;
        letter-spacing: -1.2px;
        line-height: 1.08333;
    }
}

@media screen and (min-width: 768px) {
    .registration-overlay__title {
        margin-bottom: 40px;
    }
}

.registration-overlay__details {
    border-bottom: 1px solid #333;
    padding: 20px 0 10px;
    margin: 0;
}

.registration-overlay__details:last-of-type {
    border: none;
}

.registration-overlay__details dd {
    margin: 0 0 10px;
}

.registration-overlay__details dt {
    color: #fff;
    opacity: 0.5;
    font-size: 16px;
}

.registration-overlay__info-title {
    color: #fff;
    opacity: 0.5;
    margin-bottom: 0;
}

.registration-overlay__text {
    width: 100%;
    max-width: 500px;
}

.registration-overlay p.registration-overlay__quote-builder-cta {
    margin: 0;
    color: #d3135a;
}

.related-content {
    padding: 0 15px;
    background: #f4f4f4;
}

@media screen and (min-width: 768px) {
    .related-content {
        padding: 0 30px;
    }
}

.related-content--gallery {
    background-color: #EFF2F7;
}

.related-content--gallery .related-content_inner {
    border-top: 0;
}

.related-content_inner {
    margin: auto;
    max-width: 1080px;
    padding: 40px 0 30px;
}

@media screen and (min-width: 768px) {
    .related-content_inner {
        padding: 50px 0 77px;
    }
}

.related-content_heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.52px;
    line-height: 1.07692;
    color: #0E141A;
    margin-bottom: 48px;
}

@media screen and (min-width: 768px) {
    .related-content_heading {
        font-size: 50px;
        letter-spacing: -0.8px;
        line-height: 1.125;
        text-align:left !important;
    }
}

.related-content_card-wrap {
    display: block;
    margin: 0px auto;
    max-width: 1340px;
}

@media screen and (min-width: 768px) {
    .related-content_card-wrap {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}

@media screen and (min-width: 1024px) {
    .related-content_card-wrap {
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.related-content_card-wrap .related-content-card {
    display: block;
    margin: 0px auto 30px auto;
}

@media screen and (min-width: 768px) {
    .related-content_card-wrap .related-content-card {
        margin: 0px 0px 50px 0px;
    }
}

@media screen and (min-width: 1024px) {
    .related-content_card-wrap .related-content-card {
        max-width: 30%;
    }
}

.related-content_card-wrap .related-content-card:nth-child(n+3) {
    display: none;
}

@media screen and (min-width: 1024px) {
    .related-content_card-wrap .related-content-card:nth-child(n+3) {
        display: block;
    }
}

.related-content_cta {
    text-align: center;
}

html {
    box-sizing: border-box;
}

*, *::after, *::before {
    box-sizing: inherit;
}

/**
 * Swiper 3.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/swiper/
 *
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under MIT
 *
 * Released on: February 7, 2016
 */
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
    float: left;
}

.swiper-container-vertical > .swiper-wrapper {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    -ms-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}

/* a11y */
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    display: none;
    z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto;
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Pagination Styles */
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    display: none;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

/* Bullets */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    opacity: 0.2;
    border-style: groove;
    border-color: #667790;
    border-width: 1px;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
    background: #fff;
}

.swiper-pagination-bullet-active {
    display: block;
    background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000;
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    -ms-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 5px 0;
    display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}

/* Progress */
.swiper-pagination-progress {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progress .swiper-pagination-progressbar {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progress {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-container-vertical > .swiper-pagination-progress {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-progress.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
    background: #fff;
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
    background: #000;
}

/* 3D Container */
.swiper-container-3d {
    -webkit-perspective: 1200px;
    -o-perspective: 1200px;
    perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    /* Safari 4+, Chrome */
    /* Chrome 10+, Safari 5.1+, iOS 5+ */
    /* Firefox 3.6-15 */
    /* Opera 11.10-12.00 */
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
    /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-right {
    /* Safari 4+, Chrome */
    /* Chrome 10+, Safari 5.1+, iOS 5+ */
    /* Firefox 3.6-15 */
    /* Opera 11.10-12.00 */
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
    /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-top {
    /* Safari 4+, Chrome */
    /* Chrome 10+, Safari 5.1+, iOS 5+ */
    /* Firefox 3.6-15 */
    /* Opera 11.10-12.00 */
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    /* Safari 4+, Chrome */
    /* Chrome 10+, Safari 5.1+, iOS 5+ */
    /* Firefox 3.6-15 */
    /* Opera 11.10-12.00 */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
    /* Firefox 16+, IE10, Opera 12.50+ */
}

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
    /* Windows 8 IE 10 fix */
    -ms-perspective: 1200px;
}

/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
    overflow: visible;
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Cube */
.swiper-container-cube .swiper-slide {
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

/* Scrollbar */
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*-- Chart --*/
.c3 svg {
    font: 10px sans-serif;
    -webkit-tap-highlight-color: transparent;
}

.c3 path, .c3 line {
    fill: none;
    stroke: #000;
}

.c3 text {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.c3-legend-item-tile,
.c3-xgrid-focus,
.c3-ygrid,
.c3-event-rect,
.c3-bars path {
    shape-rendering: crispEdges;
}

.c3-chart-arc path {
    stroke: #fff;
}

.c3-chart-arc text {
    fill: #fff;
    font-size: 13px;
}

/*-- Axis --*/
/*-- Grid --*/
.c3-grid line {
    stroke: #aaa;
}

.c3-grid text {
    fill: #aaa;
}

.c3-xgrid, .c3-ygrid {
    stroke-dasharray: 3 3;
}

/*-- Text on Chart --*/
.c3-text.c3-empty {
    fill: #808080;
    font-size: 2em;
}

/*-- Line --*/
.c3-line {
    stroke-width: 1px;
}

/*-- Point --*/
.c3-circle._expanded_ {
    stroke-width: 1px;
    stroke: white;
}

.c3-selected-circle {
    fill: white;
    stroke-width: 2px;
}

/*-- Bar --*/
.c3-bar {
    stroke-width: 0;
}

.c3-bar._expanded_ {
    fill-opacity: 0.75;
}

/*-- Focus --*/
.c3-target.c3-focused {
    display: block;
}

.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {
    stroke-width: 2px;
}

.c3-target.c3-defocused {
    opacity: 0.3 !important;
}

/*-- Region --*/
.c3-region {
    fill: steelblue;
    fill-opacity: .1;
}

/*-- Brush --*/
.c3-brush .extent {
    fill-opacity: .1;
}

/*-- Select - Drag --*/
/*-- Legend --*/
.c3-legend-item {
    font-size: 12px;
}

.c3-legend-item-hidden {
    opacity: 0.15;
}

.c3-legend-background {
    opacity: 0.75;
    fill: white;
    stroke: lightgray;
    stroke-width: 1;
}

/*-- Title --*/
.c3-title {
    font: 14px sans-serif;
}

/*-- Tooltip --*/
.c3-tooltip-container {
    z-index: 10;
}

.c3-tooltip {
    border-collapse: collapse;
    border-spacing: 0;
    background-color: #fff;
    empty-cells: show;
    box-shadow: 7px 7px 12px -9px #777777;
    opacity: 0.9;
}

.c3-tooltip tr {
    border: 1px solid #CCC;
}

.c3-tooltip th {
    background-color: #aaa;
    font-size: 14px;
    padding: 2px 5px;
    text-align: left;
    color: #FFF;
}

.c3-tooltip td {
    font-size: 13px;
    padding: 3px 6px;
    background-color: #fff;
    border-left: 1px dotted #999;
}

.c3-tooltip td > span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 6px;
}

.c3-tooltip td.value {
    text-align: right;
}

/*-- Area --*/
.c3-area {
    stroke-width: 0;
    opacity: 0.2;
}

/*-- Arc --*/
.c3-chart-arcs-title {
    dominant-baseline: middle;
    font-size: 1.3em;
}

.c3-chart-arcs .c3-chart-arcs-background {
    fill: #e0e0e0;
    stroke: none;
}

.c3-chart-arcs .c3-chart-arcs-gauge-unit {
    fill: #000;
    font-size: 16px;
}

.c3-chart-arcs .c3-chart-arcs-gauge-max {
    fill: #777;
}

.c3-chart-arcs .c3-chart-arcs-gauge-min {
    fill: #777;
}

.c3-chart-arc .c3-gauge-value {
    fill: #000;
    /*  font-size: 28px !important;*/
}

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 */
.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pika-single.is-hidden {
    display: none;
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}

.pika-single {
    *zoom: 1;
}

.pika-single:before, .pika-single:after {
    content: " ";
    display: table;
}

.pika-single:after {
    clear: both;
}

.pika-lendar {
    float: left;
    width: 240px;
    margin: 8px;
}

.pika-title {
    position: relative;
    text-align: center;
}

.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    display: none;
}

.pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    *position: absolute;
    *top: 0;
}

.pika-prev:hover,
.pika-next:hover {
    display: block;
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;
}

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
    *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
    *right: 0;
}

.pika-select {
    display: inline-block;
    *display: inline;
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

.pika-table th,
.pika-table td {
    width: 14.285714285714286%;
    padding: 0;
}

.pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
}

.pika-table abbr {
    border-bottom: none;
    cursor: help;
}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
}

.is-today .pika-button {
    color: #33aaff;
    font-weight: bold;
}

.is-selected .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px;
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3;
}

.pika-button:hover {
    color: #fff;
    background: #ff8000;
    box-shadow: none;
    border-radius: 3px;
}

.pika-week {
    font-size: 11px;
    color: #999;
}

.is-inrange .pika-button {
    background: #D5E9F7;
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    box-shadow: none;
    border-radius: 3px;
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    box-shadow: none;
    border-radius: 3px;
}

/*
 * jquery.selectBoxIt.css 3.8.1
 * Author: @gregfranko
 */
/*
  Common CSS Properties
  ---------------------
  These properties will be applied to any themes that you use
*/
/* SelectBoxIt container */
.selectboxit-container {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

/* Styles that apply to all SelectBoxIt elements */
.selectboxit-container * {
    font: 14px Helvetica, Arial;
    /* Prevents text selection */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    outline: none;
    white-space: nowrap;
}

/* Button */
.selectboxit-container .selectboxit {
    width: 220px;
    /* Width of the dropdown button */
    cursor: pointer;
    margin: 0;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
    display: block;
    position: relative;
}

/* Height and Vertical Alignment of Text */
.selectboxit-container span, .selectboxit-container .selectboxit-options a {
    height: 30px;
    /* Height of the drop down */
    line-height: 30px;
    /* Vertically positions the drop down text */
    display: block;
}

/* Focus pseudo selector */
.selectboxit-container .selectboxit:focus {
    outline: 0;
}

/* Disabled Mouse Interaction */
.selectboxit.selectboxit-disabled, .selectboxit-options .selectboxit-disabled {
    opacity: 0.65;
    filter: alpha(opacity=65);
    box-shadow: none;
    cursor: default;
}

/* Button Text */
.selectboxit-text {
    text-indent: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
}

.selectboxit .selectboxit-option-icon-container {
    margin-left: 5px;
}

/* Options List */
.selectboxit-container .selectboxit-options {
    box-sizing: border-box;
    min-width: 100%;
    /* Minimum Width of the dropdown list box options */
    *width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    overflow-x: hidden;
    overflow-y: auto;
    cursor: pointer;
    display: none;
    z-index: 9999999999999;
    border-radius: 6px;
    text-align: left;
    box-shadow: none;
}

/* Individual options */
.selectboxit-option .selectboxit-option-anchor {
    padding: 0 2px;
}

/* Individual Option Hover Action */
.selectboxit-option .selectboxit-option-anchor:hover {
    text-decoration: none;
}

/* Individual Option Optgroup Header */
.selectboxit-option, .selectboxit-optgroup-header {
    text-indent: 5px;
    /* Horizontal Positioning of the select box option text */
    margin: 0;
    list-style-type: none;
}

/* The first Drop Down option */
.selectboxit-option-first {
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

/* The first Drop Down option optgroup */
.selectboxit-optgroup-header + .selectboxit-option-first {
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}

/* The last Drop Down option */
.selectboxit-option-last {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}

/* Drop Down optgroup headers */
.selectboxit-optgroup-header {
    font-weight: bold;
}

/* Drop Down optgroup header hover psuedo class */
.selectboxit-optgroup-header:hover {
    cursor: default;
}

/* Drop Down down arrow container */
.selectboxit-arrow-container {
    /* Positions the down arrow */
    width: 30px;
    position: absolute;
    right: 0;
}

/* Drop Down down arrow */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow {
    /* Horizontally centers the down arrow */
    margin: 0 auto;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
}

/* Drop Down down arrow for jQueryUI and jQuery Mobile */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow.ui-icon {
    top: 30%;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-container {
    float: left;
}

.selectboxit-container .selectboxit-option-icon {
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-url {
    width: 18px;
    background-size: 18px 18px;
    background-repeat: no-repeat;
    height: 100%;
    background-position: center;
    float: left;
}

.selectboxit-rendering {
    display: inline-block !important;
    *display: inline !important;
    zoom: 1 !important;
    visibility: visible !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

/* jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon {
    background-color: inherit;
}

/* Another jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon-triangle-1-s {
    background-position: -64px -16px;
}

/*
  Default Theme
  -------------
  Note: Feel free to remove all of the CSS underneath this line if you are not using the default theme
*/
.selectboxit-btn {
    background-color: #f5f5f5;
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #cccccc;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    border-bottom-color: #b3b3b3;
}

.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus,
.selectboxit-btn.selectboxit-enabled:active {
    color: #333333;
    background-color: #e6e6e6;
}

.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus {
    color: #333333;
    text-decoration: none;
    background-position: 0 -15px;
}

.selectboxit-default-arrow {
    width: 0;
    height: 0;
    border-top: 4px solid #000000;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.selectboxit-list {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.selectboxit-list .selectboxit-option-anchor {
    color: #333333;
}

.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
    color: #ffffff;
    background-color: #0081c2;
    background-image: linear-gradient(to bottom, #0088cc, #0077b3);
    background-repeat: repeat-x;
}

.selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
    color: #999999;
}


/* @mixin container {
    @include outer-container;
    @include media($small-screen) {
        max-width:  90%;
    }
    @include media($medium-screen) {
        max-width:  93%;
    }
    @include media($large-screen) {
        max-width:  80%;
    }
} */
/*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */
/* Modified for ALDO Prototype */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
    font-family: RoobertLight;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/**
 * Remove default margin.
 */
body {
    margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
    display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
    background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
    outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
    font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
    font-size: 2em;
    margin: 0px;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
    background: #ff0;
    color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
    border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
    margin: 0px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
    box-sizing: content-box;
    height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
    overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
    line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    /* 2 */
    box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `alternate` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
    overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
    font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/* Custom Reset
   ========================================================================== */
a {
    text-decoration: none;
    color: inherit;
}

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

p {
    margin: 0;
    padding: 0;
}

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

[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

[class^="icon-"] span, [class*=" icon-"] span {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.icon-arrow:before {
    content: "\e900";
}

.icon-fb:before {
    content: "\e901";
}

.icon-mail:before {
    content: "\e902";
}

.icon-print:before {
    content: "\e903";
}

.icon-twitter:before {
    content: "\e904";
}

.icon-chevron-right:before {
    content: "\e905";
}

.icon-chevron-left:before {
    content: "\e906";
}

.icon-chevron-down:before {
    content: "\e907";
}

.icon-chevron-up:before {
    content: "\e908";
}

.icon-menu:before {
    content: "\e909";
}

.icon-youtube:before {
    content: "\e90a";
}

.icon-google:before {
    content: "\e99a";
}

.icon-volume-mute:before {
    content: "\e90c";
}

.icon-close:before {
    content: "\e90d";
}

.icon-volume-none:before {
    content: "\e90e";
}

.icon-volume-low:before {
    content: "\e90f";
}

.icon-volume-med:before {
    content: "\e910";
}

.icon-volume-high:before {
    content: "\e911";
}

.icon-pause:before {
    content: "\e912";
}

.icon-enlarge:before {
    content: "\e913";
}

.icon-enlarge2:before {
    content: "\e914";
}

.icon-play:before {
    content: "\e915";
}

.icon-play-circ:before {
    content: "\e916";
}

.icon-search:before {
    content: "\e917";
}

.icon-download:before {
    content: "\e918";
}

.icon-user:before {
    content: "\e919";
}

.icon-search-small:before {
    content: "\e91a";
}

.icon-rss:before {
    content: "\e91b";
}

.icon-external:before {
    content: "\e91c";
}

.icon-career:before {
    content: "\e91d";
}

.icon-linkedin:before {
    content: "\e91e";
}

.icon-mail2:before {
    content: "\e91f";
}

.icon-video:before {
    content: "\e920";
}

.icon-tick:before {
    content: "\e921";
}

.icon-line-geothermal:before {
    content: "\e922";
}

.icon-line-bulb:before {
    content: "\e923";
}

.icon-link-external:before {
    content: "\e924";
}

.icon-line-car:before {
    content: "\e925";
}

.icon-line-chat:before {
    content: "\e926";
}

.icon-line-cooking:before {
    content: "\e927";
}

.icon-line-download:before {
    content: "\e928";
}

.icon-line-electricity:before {
    content: "\e929";
}

.icon-line-facebook:before {
    content: "\e92a";
}

.icon-line-family:before {
    content: "\e92b";
}

.icon-line-file:before {
    content: "\e92c";
}

.icon-line-flame:before {
    content: "\e92d";
}

.icon-line-graph:before {
    content: "\e92e";
}

.icon-line-heating:before {
    content: "\e92f";
}

.icon-line-home:before {
    content: "\e930";
}

.icon-line-info:before {
    content: "\e931";
}

.icon-line-leaf:before {
    content: "\e932";
}

.icon-line-mail:before {
    content: "\e933";
}

.icon-line-nuclear:before {
    content: "\e934";
}

.icon-line-oil-drum:before {
    content: "\e935";
}

.icon-line-pc:before {
    content: "\e936";
}

.icon-line-pen:before {
    content: "\e937";
}

.icon-line-phone:before {
    content: "\e938";
}

.icon-line-pin:before {
    content: "\e939";
}

.icon-line-savings:before {
    content: "\e93a";
}

.icon-line-solar:before {
    content: "\e93b";
}

.icon-line-star:before {
    content: "\e93c";
}

.icon-line-storage:before {
    content: "\e93d";
}

.icon-line-tag:before {
    content: "\e93e";
}

.icon-line-time:before {
    content: "\e93f";
}

.icon-line-tv:before {
    content: "\e940";
}

.icon-line-user:before {
    content: "\e941";
}

.icon-line-wallet:before {
    content: "\e942";
}

.icon-line-water:before {
    content: "\e943";
}

.icon-line-wave:before {
    content: "\e944";
}

.icon-line-wind:before {
    content: "\e945";
}

.icon-line-spanner:before {
    content: "\e946";
}

.icon-pin:before {
    content: "\e947";
}

.icon-warning:before {
    content: "\e948";
}

.icon-plus:before {
    content: "\e949";
}

.icon-gift:before {
    content: "\e9a9";
}

.icon-minus:before {
    content: "\e94a ";
}
.chat-section.chatBox-open .icon-minus:before {
	content: "\ea0b ";
}
.icon-smartphone:before {
	content: "\e99e";
}
.icon-loyalty-deactive:before {
	content: "\e99f";
}
.icon-riscatta:before {
	content: "\e99c";
}
.icon-loyalty-active:before {
	content: "\e99d";
}
.icon-green-kit:before {
	content: "\e9a0";
}

.icon-chat-bubble-msg:before {
	content: "\e9bc ";
}

.burger-icon, .cross-icon {
    width: 100%;
    height: 16.6%;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -16.6%;
    background: #ffffff;
    display: inline-block;
    transition: all 0.3s;
    /* .menu-open & {
        background: none;
    } */
}

.burger-icon:after, .cross-icon:after, .burger-icon:before, .cross-icon:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: absolute;
    z-index: -1;
    transition: all 0.3s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.burger-icon:after, .cross-icon:after {
    top: 250%;
    /* .menu-open & {
            top: 0 !important;
            transform: rotate(45deg);
        } */
}

.burger-icon:before, .cross-icon:before {
    top: -250%;
    /* .menu-open & {
            top: 0 !important;
            transform: rotate(-45deg);
        } */
}

.cross-icon {
    background: none;
}

.cross-icon:after, .cross-icon:before {
    transition: none;
}

.cross-icon:after {
    top: 0 !important;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cross-icon:before {
    top: 0 !important;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.icon-rss {
    box-size: content-box;
    font-size: 18px;
    background: #0152E8;
    color: #fff;
    padding: 3px 6px;
    top: -3px;
    margin-left: 10px;
}

a.icon-external {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-decoration: none !important;
}

a.icon-external:before {
    font-size: 0.8em;
    margin-right: 0.5em;
}

button {
    -webkit-appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
}

.btn-cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #000;
    color: #000;
}

.btn-cta:hover, .btn-cta._hover,
a:hover .btn-cta {
    text-decoration: none;
}

.btn-cta:hover, a:hover .btn-cta {
    color: #fff;
    background-color: #000;
}

.btn-cta--clear {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
    transition: background-color 100ms linear;
}

.btn-cta--clear:hover, .btn-cta--clear._hover,
a:hover .btn-cta--clear {
    text-decoration: none;
}

.btn-cta--clear:hover, .btn-cta--clear._hover,
a:hover .btn-cta--clear {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-cta--alt {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #d3135a;
    color: #d3135a;
}

.btn-cta--alt:hover, .btn-cta--alt._hover,
a:hover .btn-cta--alt {
    text-decoration: none;
}

.btn-cta--alt:hover, .btn-cta--alt._hover,
a:hover .btn-cta--alt {
    background-color: rgba(211, 19, 89, 0.2);
}

.btn-cta--alt--white {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
}

.btn-cta--alt--white:hover, .btn-cta--alt--white._hover,
a:hover .btn-cta--alt--white {
    text-decoration: none;
}

.btn-cta--alt--white:hover, .btn-cta--alt--white._hover,
a:hover .btn-cta--alt--white {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-cta--blue {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #002466;
    border-color: #002466;
    color: #ffffff;
}

.btn-cta--blue:hover, .btn-cta--blue._hover,
a:hover .btn-cta--blue {
    text-decoration: none;
}

.btn-cta--blue:hover, .btn-cta--blue._hover,
a:hover .btn-cta--blue {
    background-color: #ffffff;
    border-color: #002466;
    color: #002466;
}

.btn-cta--pink {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #d3135a;
    color: #ffffff;
    background-color: #d3135a;
}

.btn-cta--pink:hover, .btn-cta--pink._hover,
a:hover .btn-cta--pink {
    text-decoration: none;
}

.btn-cta--pink:hover, .btn-cta--pink._hover,
a:hover .btn-cta--pink {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

@media screen and (max-width: 767px) {
    .btn-cta__wrapper .btn-cta {
        width: 100%;
    }
}

.link {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    text-transform: uppercase;
}

.link:hover {
    text-decoration: underline;
}

h1, .h1 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    h1, .h1 {
        font-size: 60px;
        letter-spacing: -1.2px;
        line-height: 1.08333;
    }
}

h2, .h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    h2, .h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

h3, .h3 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.52px;
    line-height: 1.07692;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    h3, .h3 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

h4, .h4,
h5, h6 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    h4, .h4,
    h5, h6 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

small,
.small,
small p,
small .p,
.small p,
.small .p {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    small,
    .small,
    small p,
    small .p,
    .small p,
    .small .p {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.eyebrow {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .eyebrow {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

ul.reset {
    margin: 0;
}

ul.reset li {
    padding: 0;
    margin: 0;
}

ul.reset li:before {
    display: none;
}

.bullet-list,
.rich-text_inner ul {
    margin: 30px 0;
    list-style: none;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.bullet-list p,
.rich-text_inner ul p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .bullet-list,
    .rich-text_inner ul {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.bullet-list li,
.rich-text_inner ul li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 1em;
}

.bullet-list li:before,
.rich-text_inner ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 0.55em;
    margin-top: -2px;
}

@media screen and (min-width: 768px) {
    .bullet-list li:before,
    .rich-text_inner ul li:before {
        margin-top: 0;
    }
}

.tick-list {
    margin: 30px 0;
}

.tick-list li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 1em;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.22222;
}

.tick-list li:before {
    display: block;
    font-family: 'icomoon';
    content: "\e921";
    font-style: normal;
    font-weight: normal;
}

.tick-list li:before {
    color: #0B563D;
    position: absolute;
    left: 0;
    background: none;
    width: auto;
    height: auto;
}

.icon-list {
    margin: 30px 0;
}

.icon-list li {
    padding-left: 2.5em;
    position: relative;
    margin-bottom: 1em;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.22222;
}

.icon-list li:before {
    font-size: 1.5555em;
    vertical-align: sub;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*
 * OLD STYLES - DEPRECATED
 * -----------------------
*/
.text--breadcrumb {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.4px;
    line-height: 2;
    color: #ffffff;
    text-transform: uppercase;
}


@media screen and (min-width: 768px) {
    .text--breadcrumb {
        font-size: 13px;
        letter-spacing: 0.52px;
        line-height: 1.84615;
    }
}

.text--page-heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .text--page-heading {
        font-size: 60px;
        letter-spacing: -1.2px;
        line-height: 1.08333;
    }
}

.text--product-heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 50px;
    letter-spacing: -2px;
    line-height: 1;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .text--product-heading {
        font-size: 60px;
        letter-spacing: -2.4px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 1024px) {
    .text--product-heading {
        font-size: 80px;
        letter-spacing: -3.2px;
        line-height: 1.5;
    }
}

.text--page-subheading {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.88px;
    line-height: 1.27273;
    color: #000000;
}

@media screen and (min-width: 768px) {
    .text--page-subheading {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.2;
    }
}

.text--date {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.28571;
    color: #667790;
}

@media screen and (min-width: 768px) {
    .text--date {
        font-size: 16px;
        letter-spacing: 0px;
        line-height: 1.375;
    }
}

.text--large {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0.36px;
    line-height: 1.33333;
    color: #111111;
}

@media screen and (min-width: 768px) {
    .text--large {
        font-size: 36px;
        letter-spacing: 0.72px;
        line-height: 1.33333;
    }
}

.text--standard, .article-content_inner .rich-text.rich-text_inner p, .rich-text .rich-text_inner p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.73333;
    color: #111111;
}

.text--standard a, .article-content_inner .rich-text.rich-text_inner p a, .rich-text .rich-text_inner p a {
    color: #d3135a;
    text-decoration: underline;
}

.text--standard strong, .article-content_inner .rich-text.rich-text_inner p strong, .rich-text .rich-text_inner p strong {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
}

@media screen and (min-width: 768px) {
    .text--standard, .article-content_inner .rich-text.rich-text_inner p, .rich-text .rich-text_inner p {
        font-size: 22px;
        letter-spacing: 0.44px;
        line-height: 1.63636;
    }
}

.text--list-item {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.73333;
    color: #111111;
}

.text--list-item a {
    color: #d3135a;
    text-decoration: underline;
}

.text--list-item strong {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
}

@media screen and (min-width: 768px) {
    .text--list-item {
        font-size: 22px;
        letter-spacing: 0.44px;
        line-height: 1.63636;
    }
}

.text--caption {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 8px;
    letter-spacing: -0.16px;
    line-height: 2.25;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .text--caption {
        font-size: 15px;
        letter-spacing: -0.3px;
        line-height: 1.8;
    }
}

.text--pull-quote {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    letter-spacing: -0.4px;
    line-height: 1.5;
    color: #111111;
}

@media screen and (min-width: 768px) {
    .text--pull-quote {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.5;
    }
}

.text--pull-quote-author {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    letter-spacing: -0.24px;
    line-height: 1.66667;
    color: #999999;
}

@media screen and (min-width: 768px) {
    .text--pull-quote-author {
        font-size: 15px;
        letter-spacing: -0.3px;
        line-height: 1.33333;
    }
}

.text--footer-link {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.33333;
    color: #002466;
}

.text--list-title-med {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 1.66667;
    color: #d3135a;
}

@media screen and (max-width: 767px) {
    .text--list-title-med {
        font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 300;
        font-style: normal;
        color: #000000;
        font-size: 22px;
        letter-spacing: -0.44px;
        line-height: 1.27273;
    }
}

.text--list-title-large {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.2;
    color: #d3135a;
}

@media screen and (max-width: 767px) {
    .text--list-title-large {
        font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 300;
        font-style: normal;
        color: #000000;
        font-size: 22px;
        letter-spacing: -0.44px;
        line-height: 1.27273;
    }
}

.text--list-description {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 1.66667;
    color: #111111;
}

.text--disclaimer {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    letter-spacing: -0.336px;
    line-height: 1.71429;
    color: #666666;
}

@media screen and (max-width: 767px) {
    .text--disclaimer {
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: 1.66667;
    }
}

.text--error-heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 120px;
    letter-spacing: -4.8px;
    line-height: 1.25;
}

@media screen and (max-width: 767px) {
    .text--error-heading {
        font-size: 40px;
        letter-spacing: -1.2px;
        line-height: 1.15;
    }
}

.text--hero-description {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 40px;
    letter-spacing: -1.2px;
    line-height: 1.15;
}

@media screen and (max-width: 767px) {
    .text--hero-description {
        font-size: 20px;
        letter-spacing: -0.4px;
        line-height: 1.5;
    }
}

.text--error-reason {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 1.4;
}

@media screen and (max-width: 767px) {
    .text--error-reason {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.46667;
    }
}

.text--error-reason strong {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    letter-spacing: 0px;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .text--error-reason strong {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.46667;
    }
}

.text--tile-heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
    letter-spacing: -0.96px;
    line-height: 1.25;
    color: #000000;
}

@media screen and (min-width: 768px) {
    .text--tile-heading {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.26667;
    }
}

.text--tile-description {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: 1.42857;
    color: #666666;
}

@media screen and (min-width: 1024px) {
    .text--tile-description {
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: 1.77778;
    }
}

.text--tile-issue {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.33333;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .text--tile-issue {
        font-size: 13px;
        letter-spacing: 0.26px;
        line-height: 1.84615;
    }
}

.text--uppercase-heading {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.33333;
    font-size: 13px;
    text-transform: uppercase;
}

.text--nowrap {
    white-space: nowrap;
}

input[type='text'],
input[type='number'],
input[type='tel'],
input[type='email'],
textarea {
    transition: all 100ms linear;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.15);
    color: #000000;
    display: inline-block;
    min-width: 160px;
    outline: none;
    padding: 10px 10px 8px;
    width: 100%;
    -moz-appearance: textfield;
    -webkit-appearance: none;
    border-radius: 0;
    box-shadow: none;
}

input[type='text']::-webkit-input-placeholder,
input[type='number']::-webkit-input-placeholder,
input[type='tel']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

input[type='text']::-moz-placeholder,
input[type='number']::-moz-placeholder,
input[type='tel']::-moz-placeholder,
input[type='email']::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

input[type='text']:-moz-placeholder,
input[type='number']:-moz-placeholder,
input[type='tel']:-moz-placeholder,
input[type='email']:-moz-placeholder,
textarea:-moz-placeholder {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

input[type='text']:-ms-input-placeholder,
input[type='number']:-ms-input-placeholder,
input[type='tel']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

input[type='text']:focus::-webkit-input-placeholder,
input[type='number']:focus::-webkit-input-placeholder,
input[type='tel']:focus::-webkit-input-placeholder,
input[type='email']:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    display: none;
    transition: opacity 0.3s ease;
}

input[type='text']:focus::-moz-placeholder,
input[type='number']:focus::-moz-placeholder,
input[type='tel']:focus::-moz-placeholder,
input[type='email']:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    display: none;
    transition: opacity 0.3s ease;
}

input[type='text']:focus:-moz-placeholder,
input[type='number']:focus:-moz-placeholder,
input[type='tel']:focus:-moz-placeholder,
input[type='email']:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
    display: none;
    transition: opacity 0.3s ease;
}

input[type='text']:focus:-ms-input-placeholder,
input[type='number']:focus:-ms-input-placeholder,
input[type='tel']:focus:-ms-input-placeholder,
input[type='email']:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
    display: none;
    transition: opacity 0.3s ease;
}

@media screen and (min-width: 768px) {
    input[type='text'],
    input[type='number'],
    input[type='tel'],
    input[type='email'],
    textarea {
        font-size: 18px;
        letter-spacing: 0px;
        line-height: 1;
        padding: 14px;
    }
}

input[type='text']::-webkit-input-placeholder,
input[type='number']::-webkit-input-placeholder,
input[type='tel']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #000000;
    opacity: 0.4;
}

input[type='text']::-moz-placeholder,
input[type='number']::-moz-placeholder,
input[type='tel']::-moz-placeholder,
input[type='email']::-moz-placeholder,
textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #000000;
    opacity: 0.4;
}

input[type='text']:-ms-input-placeholder,
input[type='number']:-ms-input-placeholder,
input[type='tel']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #000000;
    opacity: 0.4;
}

input[type='text']:-moz-placeholder,
input[type='number']:-moz-placeholder,
input[type='tel']:-moz-placeholder,
input[type='email']:-moz-placeholder,
textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #000000;
    opacity: 0.4;
}

input[type='text']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='email']:focus,
textarea:focus {
    border: 2px solid #000000;
}

input[type='text'].error,
input[type='number'].error,
input[type='tel'].error,
input[type='email'].error,
textarea.error {
    border: 2px solid #d3135a;
}

input[type='text']::-webkit-inner-spin-button, input[type='text']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button,
input[type='tel']::-webkit-inner-spin-button,
input[type='tel']::-webkit-outer-spin-button,
input[type='email']::-webkit-inner-spin-button,
input[type='email']::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button,
textarea::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type='text']::-ms-clear,
input[type='number']::-ms-clear,
input[type='tel']::-ms-clear,
input[type='email']::-ms-clear,
textarea::-ms-clear {
    display: none;
}

input[type='radio'] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

input[type='radio'] + label {
    padding: 0 1.5em;
}

input[type='radio'] + label:before {
    content: '';
    display: block;
    position: absolute;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 1em;
    height: 1em;
    left: 0;
    opacity: 0.4;
    width: 1em;
}

input[type='radio'] + label:after{
    content: '';
    display: block;
    position: absolute;
    background: #000000;
    border-radius: 1em;
    height: 1em;
    left: 0;
    top: 0;
    width: 1em;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    display: none;
    transition: all 0.3s ease;
}

section.quote-builder input[type='radio'] + label:after {
	width: 1em;
    height: 1em;
    margin-top: 0px;
    left: 0px;
    top: 2px;
}

input[type='radio']:checked + label {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
}

input[type='radio']:checked + label:after {
    display: block;
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
}

input[type='checkbox'] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

input[type='checkbox'] + label {
    padding: 0 1.5em;
}

input[type='checkbox'] + label:before {
    content: '';
    display: block;
    position: absolute;
    border: 2px solid rgba(0, 0, 0, 0.15);
    height: 1em;
    left: 0;
    opacity: 0.4;
    width: 1em;
}

input[type='checkbox'] + label:after {
    content: '';
    display: block;
    position: absolute;
    height: 1em;
    left: 2px;
    top: 2px;
    width: 1em;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    display: none;
    transition: all 0.3s ease;
    visibility: hidden;
}

input[type='checkbox'] + label:after {
    display: block;
    font-family: 'icomoon';
    content: "\e921";
    font-style: normal;
    font-weight: normal;
}

input[type='checkbox']:checked + label {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
}

input[type='checkbox']:checked + label:after {
    visibility: visible;
    display: block;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

input[type='file'] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

input[type='file'] + label {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
}

input[type='file'] + label span {
    transition: all 100ms linear;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-right: none;
    color: #000000;
    display: inline-block;
    padding: 10px 10px 8px;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (min-width: 768px) {
    input[type='file'] + label span {
        font-size: 18px;
        letter-spacing: 0px;
        line-height: 1;
        padding: 14px;
    }
}

input[type='file'] + label strong {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
    cursor: pointer;
}

input[type='file'] + label strong:hover, input[type='file'] + label strong._hover,
a:hover input[type='file'] + label strong {
    text-decoration: none;
}

input[type='file'] + label strong:hover, input[type='file'] + label strong._hover,
a:hover input[type='file'] + label strong {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

.selectboxit-container {
    display: block;
    max-width: 100%;
}

.selectboxit-container * {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1;
}

@media screen and (min-width: 768px) {
    .selectboxit-container * {
        font-size: 18px;
        letter-spacing: 0px;
        line-height: 1;
    }
}

.selectboxit-container .selectboxit {
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    width: 100%;
}

.selectboxit-container .selectboxit-btn {
    background: transparent;
    color: #000000;
    padding: 10px 10px 8px;
}

@media screen and (min-width: 768px) {
    .selectboxit-container .selectboxit-btn {
        padding: 14px;
    }
}

.selectboxit-container .selectboxit-btn .selectboxit-text {
    margin-right: 30px;
}

.selectboxit-container .selectboxit-btn.selectboxit-enabled:hover, .selectboxit-container .selectboxit-btn.selectboxit-enabled:focus, .selectboxit-container .selectboxit-btn.selectboxit-enabled:active {
    color: inherit;
    background-color: inherit;
}

.selectboxit-container .selectboxit-btn.selectboxit-focus {
    border: 2px solid #000000;
}

.selectboxit-container .selectboxit-btn:after {
    content: '';
    display: block;
    position: absolute;
    font-size: 0.75em;
    border: none;
    height: 1em;
    right: 20px;
    top: 50%;
    width: 1em;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*.selectboxit-container .selectboxit-btn:after {
    display: block;
    font-family: 'icomoon';
    content: "\e907";
    font-style: normal;
    font-weight: normal;
}*/

.selectboxit-container span,
.selectboxit-container .selectboxit-options a {
    height: auto;
    line-height: inherit;
    max-width: none !important;
}

.selectboxit-container .selectboxit-option-icon-container,
.selectboxit-container .selectboxit-arrow-container {
    display: none;
}

.selectboxit-container .selectboxit-options * {
    border-radius: 0;
}

.selectboxit-container .selectboxit-options .selectboxit-option .selectboxit-option-anchor {
    padding: 10px 10px 8px;
}

@media screen and (min-width: 768px) {
    .selectboxit-container .selectboxit-options .selectboxit-option .selectboxit-option-anchor {
        padding: 14px;
    }
}

.selectboxit-container .selectboxit-list {
    background: #ffffff;
    border: 1px solid #667790;
    border-top: 2px solid #667790;
    border-radius: 0;
}

.selectboxit-container .selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
    color: #000000;
    background: #EFF2F7;
}

.range-slider:before {
    content: "";
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 50%;
    margin-top: -3px;
}

.range-slider input[type="range"] {
    -webkit-appearance: none;
    /* Hides the slider so that custom slider can be made */
    width: 100%;
    /* Specific width is required for Firefox. */
    background: transparent;
    /* Otherwise white in Chrome */
    overflow: visible;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
}

.range-slider input[type="range"]:focus {
    outline: none;
    /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

.range-slider input[type="range"]::-moz-focus-outer {
    border: 0;
}

.range-slider input[type="range"]::-ms-track {
    width: 100%;
    cursor: pointer;
    /* Hides the slider so custom styles can be added */
    background: transparent;
    border-color: transparent;
    color: transparent;
    overflow: visible;
}

.range-slider input[type="range"]::-ms-tooltip {
    display: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    border: none;
    height: 46px;
    width: 46px;
    border-radius: 50%;
    background: #0B563D;
    cursor: pointer;
    box-shadow: 0px 6px 0px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.form--color-bg .range-slider input[type="range"]::-webkit-slider-thumb {
    background: #fff;
    box-shadow: none;
}

.range-slider input[type="range"]::-moz-range-thumb {
    border: none;
    height: 46px;
    width: 46px;
    border-radius: 50%;
    background: #0B563D;
    cursor: pointer;
    box-shadow: 0px 6px 0px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.form--color-bg .range-slider input[type="range"]::-moz-range-thumb {
    background: #fff;
    box-shadow: none;
}

.range-slider input[type="range"]::-ms-thumb {
    border: none;
    height: 46px;
    width: 46px;
    border-radius: 50%;
    background: #0B563D;
    cursor: pointer;
    box-shadow: 0px 6px 0px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.form--color-bg .range-slider input[type="range"]::-ms-thumb {
    background: #fff;
    box-shadow: none;
}

.range-slider input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 46px;
    cursor: pointer;
    box-shadow: none;
    background: transparent;
    outline: none;
    border-radius: 50%;
}

.range-slider input[type="range"]::-moz-range-track {
    width: 100%;
    height: 46px;
    cursor: pointer;
    box-shadow: none;
    background: transparent;
    outline: none;
    border-radius: 50%;
}

.range-slider input[type="range"]::-ms-track {
    width: 100%;
    height: 46px;
    cursor: pointer;
    box-shadow: none;
    background: transparent;
    outline: none;
    border-radius: 50%;
}

.range-slider input[type="range"]::-ms-fill-lower {
    background: transparent;
}

.form-row {
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .form-row {
        margin-bottom: 40px;
    }
}

.form-row:last-of-type {
    margin-bottom: 0;
}

fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

fieldset label {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1;
    color: #000000;
    display: inline-block;
    margin: 0;
}

@media screen and (min-width: 768px) {
    fieldset label {
        font-size: 18px;
        letter-spacing: 0px;
        line-height: 1;
    }
}

label, h3.label {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1;
    color: #000000;
    display: block;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    label, h3.label {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1;
        margin-bottom: 15px;
    }
}

label.error, h3.label.error {
    bottom: -1.4em;
    color: #d3135a;
    margin: 0;
    position: absolute;
    right: 0;
}

form .disabled label {
    font-weight: normal !important;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    cursor: default;
    color: #999999;
}

.form-message {
    background: rgba(0, 0, 0, 0.15);
    padding: 40px;
    margin-bottom: 24px;
}

.form-message.success:before {
    display: block;
    font-family: 'icomoon';
    content: "\e921";
    font-style: normal;
    font-weight: normal;
}

.form-message.success:before {
    background: #0B563D;
    border: 2px solid #ffffff;
    border-radius: 1em;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    padding: 0.25em;
    margin-bottom: 12px;
}

.form-message.error:before {
    display: block;
    font-family: 'icomoon';
    content: "\e948";
    font-style: normal;
    font-weight: normal;
}

.form-message.error:before {
    background: #d3135a;
    border-radius: 1em;
    color: #ffffff;
    display: inline-block;
    font-size: 24px;
    margin-bottom: 12px;
}

.form-message.warning:before {
    display: block;
    font-family: 'icomoon';
    content: "\e948";
    font-style: normal;
    font-weight: normal;
}

.form-message.warning:before {
    background: #0152E8;
    border-radius: 1em;
    color: #ffffff;
    display: inline-block;
    font-size: 24px;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .form-message {
        margin-bottom: 40px;
    }
}

.form-message h3 {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    font-weight: 700;
    margin-bottom: 6px;
}

@media screen and (min-width: 768px) {
    .form-message h3 {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.form-message p, .form-message a {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.form-message p p, .form-message a p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .form-message p, .form-message a {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.form--color-bg input[type='text'],
.form--color-bg input[type='number'],
.form--color-bg input[type='tel'],
.form--color-bg input[type='email'],
.form--color-bg textarea {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.form--color-bg input[type='text']::-webkit-input-placeholder,
.form--color-bg input[type='number']::-webkit-input-placeholder,
.form--color-bg input[type='tel']::-webkit-input-placeholder,
.form--color-bg input[type='email']::-webkit-input-placeholder,
.form--color-bg textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
    opacity: 0.6;
}

.form--color-bg input[type='text']::-moz-placeholder,
.form--color-bg input[type='number']::-moz-placeholder,
.form--color-bg input[type='tel']::-moz-placeholder,
.form--color-bg input[type='email']::-moz-placeholder,
.form--color-bg textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
    opacity: 0.6;
}

.form--color-bg input[type='text']:-ms-input-placeholder,
.form--color-bg input[type='number']:-ms-input-placeholder,
.form--color-bg input[type='tel']:-ms-input-placeholder,
.form--color-bg input[type='email']:-ms-input-placeholder,
.form--color-bg textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
    opacity: 0.6;
}

.form--color-bg input[type='text']:-moz-placeholder,
.form--color-bg input[type='number']:-moz-placeholder,
.form--color-bg input[type='tel']:-moz-placeholder,
.form--color-bg input[type='email']:-moz-placeholder,
.form--color-bg textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
    opacity: 0.6;
}

.form--color-bg input[type='text']:focus,
.form--color-bg input[type='number']:focus,
.form--color-bg input[type='tel']:focus,
.form--color-bg input[type='email']:focus,
.form--color-bg textarea:focus {
    border: 2px solid #ffffff;
}

.form--color-bg input[type='text'].error,
.form--color-bg input[type='number'].error,
.form--color-bg input[type='tel'].error,
.form--color-bg input[type='email'].error,
.form--color-bg textarea.error {
    border: 2px solid rgba(0, 0, 0, 0.4);
}

.form--color-bg input[type='file'] + label span {
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-right: none;
    color: #ffffff;
}

.form--color-bg input[type='radio'] + label:before {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.form--color-bg input[type='radio'] + label:after {
    background: #ffffff;
}

.form--color-bg input[type='checkbox'] + label:before {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.form--color-bg .selectboxit-container .selectboxit {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.form--color-bg .selectboxit-container .selectboxit-btn {
    color: #ffffff;
}

.form--color-bg .selectboxit-container .selectboxit-btn.selectboxit-focus {
    border: 2px solid #ffffff;
}

.form--color-bg fieldset label {
    color: #ffffff;
}

.form--color-bg label, .form--color-bg h3.label {
    color: #ffffff;
}

.form--color-bg label.error, .form--color-bg h3.label.error {
    color: rgba(0, 0, 0, 0.4);
}

.form--color-bg .form-message h3 {
    color: #ffffff;
}

.form--color-bg .form-message p, .form--color-bg .form-message a {
    color: #ffffff;
}

.form--black-bg input[type='text'],
.form--black-bg input[type='number'],
.form--black-bg input[type='tel'],
.form--black-bg input[type='email'],
.form--black-bg textarea {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.form--black-bg input[type='text']::-webkit-input-placeholder,
.form--black-bg input[type='number']::-webkit-input-placeholder,
.form--black-bg input[type='tel']::-webkit-input-placeholder,
.form--black-bg input[type='email']::-webkit-input-placeholder,
.form--black-bg textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
    opacity: 0.6;
}

.form--black-bg input[type='text']::-moz-placeholder,
.form--black-bg input[type='number']::-moz-placeholder,
.form--black-bg input[type='tel']::-moz-placeholder,
.form--black-bg input[type='email']::-moz-placeholder,
.form--black-bg textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
    opacity: 0.6;
}

.form--black-bg input[type='text']:-ms-input-placeholder,
.form--black-bg input[type='number']:-ms-input-placeholder,
.form--black-bg input[type='tel']:-ms-input-placeholder,
.form--black-bg input[type='email']:-ms-input-placeholder,
.form--black-bg textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
    opacity: 0.6;
}

.form--black-bg input[type='text']:-moz-placeholder,
.form--black-bg input[type='number']:-moz-placeholder,
.form--black-bg input[type='tel']:-moz-placeholder,
.form--black-bg input[type='email']:-moz-placeholder,
.form--black-bg textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
    opacity: 0.6;
}

.form--black-bg input[type='text']:focus,
.form--black-bg input[type='number']:focus,
.form--black-bg input[type='tel']:focus,
.form--black-bg input[type='email']:focus,
.form--black-bg textarea:focus {
    border: 2px solid #ffffff;
}

.form--black-bg input[type='text'].error,
.form--black-bg input[type='number'].error,
.form--black-bg input[type='tel'].error,
.form--black-bg input[type='email'].error,
.form--black-bg textarea.error {
    border: 2px solid #d3135a;
}

.form--black-bg input[type='file'] + label span {
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-right: none;
    color: #ffffff;
}

.form--black-bg input[type='radio'] + label:before {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.form--black-bg input[type='radio'] + label:after {
    background: #ffffff;
}

.form--black-bg input[type='checkbox'] + label:before {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.form--black-bg .selectboxit-container .selectboxit {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.form--black-bg .selectboxit-container .selectboxit-btn {
    color: #ffffff;
}

.form--black-bg .selectboxit-container .selectboxit-btn.selectboxit-focus {
    border: 2px solid #ffffff;
}

.form--black-bg fieldset label {
    color: #ffffff;
}

.form--black-bg label, .form--black-bg h3.label {
    color: #ffffff;
}

.form--black-bg label.error, .form--black-bg h3.label.error {
    color: #d3135a;
}

.form--black-bg .form-message h3 {
    color: #ffffff;
}

.form--black-bg .form-message p, .form--black-bg .form-message a {
    color: #ffffff;
}

.pac-container {
    margin-top: 2px;
}

.pac-container .pac-item {
    line-height: 50px;
    padding: 0 15px;
    cursor: pointer;
    font-size: 18px;
}

.pac-container .pac-item-query {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
}

.pac-container .pac-matched {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
}

.pac-container .pac-icon {
    margin-top: 16px;
    display: none;
}

.pac-logo:after {
    display: none;
}

* {
    box-sizing: border-box;
    position: relative;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#livechat-compact-container[style],
#livechat-full[style] {
    z-index: 2 !important;
}

a:hover {
    text-decoration: underline;
}

body {
    transition: all .4s ease-in-out;
}

body.no-anim {
    transition: none;
}

body #main {
    position: relative;
    left: 0px;
    transition: left .4s ease-in-out;
    -webkit-font-smoothing: antialiased;
}

body #main, body .filter, body .hero {
    display: block;
    transition: .4s ease-in-out;
}

body #main .hero, body .filter .hero, body .hero .hero {
    transition: none;
    opacity: 1 !important;
}

body.menu-open, body.search-open, body.filter-open, body.quote-builder-open, body.registration-overlay-open, body.localisation-open, body.save-quote-open {
    overflow: hidden;
    height: 100vh;
    background: black;
}

body.menu-open.ios, body.search-open.ios, body.filter-open.ios, body.quote-builder-open.ios, body.registration-overlay-open.ios, body.localisation-open.ios, body.save-quote-open.ios {
    position: fixed;
    width: 100vw;
}

body.menu-open #main, body.search-open #main, body.filter-open #main, body.quote-builder-open #main, body.registration-overlay-open #main, body.localisation-open #main, body.save-quote-open #main {
    overflow: hidden;
    position: relative;
    left: 0;
    opacity: .55;
}

@media screen and (min-width: 768px) {
    body.menu-open #main, body.search-open #main, body.filter-open #main, body.quote-builder-open #main, body.registration-overlay-open #main, body.localisation-open #main, body.save-quote-open #main {
        left: 0;
    }
}

body.menu-open .filter, body.menu-open .hero {
    opacity: .55;
}

body.menu-open .global-side-menu {
    visibility: visible;
    right: 0;
}

#main {
    background-color: #ffffff;
}

#main::after {
    clear: both;
    content: "";
    display: table;
}

.plan-detail #main,
.page-product-catalog #main {
    background: #f4f4f4;
}

.dev-spacer {
    min-height: 800px;
    padding: 120px 0;
    background: #f4f4f4;
}

ul::after {
    clear: both;
    content: "";
    display: table;
}

.visually-hidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.hidden {
    display: none !important;
}

.no-scroll {
    overflow: hidden !important;
    max-width: 100vw;
    max-height: 100vh;
}

.container {
    max-width: 1370px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.container::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (min-width: 768px) {
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media screen and (min-width: 1024px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (min-width: 768px) {
    .mobile-only {
        display: none;
    }
}

.color-scheme--red .hero {
    background-color: #d3135a;
}

.color-scheme--red .hero_arrow:before {
    color: #d3135a;
}

.color-scheme--green .hero {
    background-color: #0B563D;
}

.color-scheme--green .hero_arrow:before {
    color: #0B563D;
}

.color-scheme--blue .hero {
    background-color: #002466;
}

.color-scheme--blue .hero_arrow:before {
    color: #002466;
}

.color-scheme--blue .hero_breadcrumbs li, .color-scheme--blue .hero_breadcrumbs li::after {
    color: #c0d4fe;
}

.color-scheme--blue .hero_breadcrumbs li:last-child, .color-scheme--blue .hero_breadcrumbs li::after:last-child {
    color: #000000;
}

.color-scheme--orange .hero {
    background-color: #0152E8;
}

.color-scheme--orange .hero_arrow:before {
    color: #0152E8;
}

.color-scheme--blue .hero {
    background-color: #002466;
}

.color-scheme--pink .hero {
    background-color: #d3135a;
}

.color-scheme--forest .hero {
    background-color: #0f955a;
}

.loader {
    display: none;
    width: 50px;
    height: 50px;
    background: url(/etc.clientlibs/enel-comm-common/clientlibs/clientlib-site/resources/image/Enel_Loader_white_100x100.gif);
    background-size: cover;
    position: absolute;
    left: 50%;
    margin-left: -50px;
    top: 100px;
}

.loading .loader {
    display: block;
}

.slick-dots {
    position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    padding: 5px;
    cursor: pointer;
    color: white;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 100px;
    outline: none;
    transition: all 0.6s ease;
}

.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
}

.slick-dots li.slick-active button {
    background-color: #d3135a;
}

.slick-dots li.slick-active button:active {
    -webkit-tap-highlight-color: transparent;
}

.inline-chat #livechat-compact-container {
    display: none;
}

button {
    -webkit-appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
}

.btn-cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #000;
    color: #000;
}

.btn-cta:hover, .btn-cta._hover,
a:hover .btn-cta {
    text-decoration: none;
}

.btn-cta:hover, a:hover .btn-cta {
    color: #fff;
    background-color: #000;
}

.btn-cta--clear {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
    transition: background-color 100ms linear;
}

.btn-cta--clear:hover, .btn-cta--clear._hover,
a:hover .btn-cta--clear {
    text-decoration: none;
}

.btn-cta--clear:hover, .btn-cta--clear._hover,
a:hover .btn-cta--clear {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-cta--alt {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #d3135a;
    color: #d3135a;
}

.btn-cta--alt:hover, .btn-cta--alt._hover,
a:hover .btn-cta--alt {
    text-decoration: none;
}

.btn-cta--alt:hover, .btn-cta--alt._hover,
a:hover .btn-cta--alt {
    background-color: rgba(211, 19, 89, 0.2);
}

.btn-cta--alt--white {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
}

.btn-cta--alt--white:hover, .btn-cta--alt--white._hover,
a:hover .btn-cta--alt--white {
    text-decoration: none;
}

.btn-cta--alt--white:hover, .btn-cta--alt--white._hover,
a:hover .btn-cta--alt--white {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-cta--blue {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #002466;
    border-color: #002466;
    color: #ffffff;
}

.btn-cta--blue:hover, .btn-cta--blue._hover,
a:hover .btn-cta--blue {
    text-decoration: none;
}

.btn-cta--blue:hover, .btn-cta--blue._hover,
a:hover .btn-cta--blue {
    background-color: #ffffff;
    border-color: #002466;
    color: #002466;
}

.btn-cta--pink {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #d3135a;
    color: #ffffff;
    background-color: #d3135a;
}

.btn-cta--pink:hover, .btn-cta--pink._hover,
a:hover .btn-cta--pink {
    text-decoration: none;
}

.btn-cta--pink:hover, .btn-cta--pink._hover,
a:hover .btn-cta--pink {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

@media screen and (max-width: 767px) {
    .btn-cta__wrapper .btn-cta {
        width: 100%;
    }
}

/* inject:imports */
.article-carousel {
    width: 100%;
    font-size: 0px;
}

.article-carousel .carousel {
    background-color: #ffffff;
}

@media screen and (max-width: 767px) {
    .article-carousel .carousel {
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 768px) {
    .article-carousel_inner {
        z-index: 1;
    }

    .article-carousel_inner:before {
        content: '';
        width: 100%;
        height: 5px;
        position: absolute;
        z-index: -1;
        top: -5px;
        background-color: rgba(0, 0, 0, 0.2);
    }
}

@media screen and (min-width: 1024px) {
    .article-carousel {
        margin-bottom: -70px;
        padding: 0 30px;
    }

    .article-carousel_inner {
        position: relative;
        top: -70px;
        max-width: 1280px;
        margin: 0px auto;
    }

    .article-carousel_inner:before {
        content: '';
        width: auto;
        height: 100%;
        left: -5px;
        right: -5px;
        bottom: 5px;
    }
}

.article-content {
    padding: 30px 0 40px;
}

@media screen and (min-width: 768px) {
    .article-content {
        padding: 60px 0 90px;
    }
}

@media screen and (min-width: 1024px) {
    .article-content {
        padding-top: 100px;
    }
}

.article-content_inner {
    display: block;
    margin: 0px auto;
}

.article-content_inner .pull-quote {
    margin: 0px 0px 60px 0px;
}

@media screen and (min-width: 768px) {
    .article-content_inner .pull-quote {
        margin: 80px 0px 60px 0px;
    }
}

.article-content_inner .full-bleed-image {
    margin: 0px 0px 40px 0px;
}

@media screen and (min-width: 768px) {
    .article-content_inner .full-bleed-image {
        margin: 0px 0px 60px 0px;
    }
}

.article-content_inner .full-bleed-image {
    margin: 0px 0px 60px 0px;
}

@media screen and (min-width: 1024px) {
    .article-content_inner .rich-text {
        display: block;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }

    .article-content_inner .rich-text_inner {
        padding: 0px 13%;
    }

    .article-content_inner .rich-text--social {
        display: block;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
    }

    .article-content_inner .rich-text--social .rich-text_inner {
        /*padding: 0px 13% 0 0;*/
        padding: 0px 0 0 0;
    }

    .article-content_inner .pull-quote {
        display: block;
        max-width: 1280px;
        margin: 85px auto 70px;
    }

    .article-content_inner .full-bleed-image {
        display: block;
        margin: 90px auto;
    }

    .article-content_inner .tags {
        display: block;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }

    .article-content_inner .tags__inner {
        padding: 0px 13%;
    }
}

.article-links_header h2 {
    margin-bottom: 15px;
    text-align: center;
}

@media screen and (min-width: 1024px) {
    .article-links_header h2 {
        margin-bottom: 40px;
    }
}

.article-links_carousel {
    overflow: hidden;
    display: block;
    transition: all 1s ease;
    padding-bottom: 60px;
}

@media screen and (min-width: 768px) {
    .article-links_carousel {
        margin: 0 -10px;
    }
}

.article-links_carousel--loading {
    display: none;
    visibility: hidden;
}

.article-links_carousel .slick-slide {
    outline: none;
}

.article-links_carousel .slick-slider {
    margin-bottom: 30px;
}

.article-youtube-player {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .article-youtube-player_inner:before {
        content: '';
        width: 100%;
        height: 5px;
        position: absolute;
        z-index: 0;
        top: -5px;
        background-color: rgba(0, 0, 0, 0.2);
    }
}

@media screen and (min-width: 1024px) {
    .article-youtube-player {
        margin-bottom: -70px;
        padding: 0 30px;
    }

    .article-youtube-player_inner {
        position: relative;
        top: -70px;
        max-width: 1280px;
        margin: 0px auto;
        max-height: 720px;
    }

    .article-youtube-player_inner:before {
        content: '';
        width: auto;
        height: 100%;
        left: -5px;
        right: -5px;
        bottom: 5px;
    }
}

.bento {
    background: #f2f2f2;
}

.bento__heading {
    text-align: center;
    padding-bottom: 35px;
    padding-top: 70px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f2f2f2+100 */
    background: #ffffff;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f2f2f2', GradientType=0);
    /* IE6-9 */
}

.bento__heading .eyebrow {
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .bento__heading {
        padding-top: 200px;
        padding-bottom: 80px;
    }

    .bento__heading .eyebrow {
        margin-bottom: 50px;
    }
}

.bento__content {
    width: 100%;
    margin: 0 auto;
    max-width: 1600px;
}

.bento__content::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (min-width: 768px) {
    .bento__content {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.bento__item {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    background: #fff;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vw;
}

.bento__item p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .bento__item {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.bento__item__inner {
    padding: 30px;
    margin: 0 auto;
    width: 100%;
}

.bento__item.article {
    border-bottom: 1px solid #dddddd;
}

.bento__item.image-small .bento__item__inner {
    padding: 0;
}

.bento__item.image-small img {
    width: 100%;
    height: auto;
    display: block;
    padding: 0;
}

.bento__item.image-large {
    padding-top: 100%;
}

.bento__item.image-large .bento__item__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    max-width: none;
    padding: 0;
}

.bento__item.image-large img {
    min-height: 100%;
    width: auto;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.bento__item__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .bento__item__title {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.bento__item.infographic {
    color: #fff;
    text-align: center;
}

.bento__item.infographic img {
    margin: 0 auto 20px;
    max-width: 80%;
    width: auto;
}

@media screen and (min-width: 768px) {
    .bento__item {
        width: 50%;
        min-height: 50vw;
    }

    .bento__item__inner {
        max-width: 400px;
    }

    .bento__item.image-large {
        padding-top: 50%;
    }

    .bento__item.image-large .bento__item__inner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        max-width: none;
        padding: 0;
    }

    .bento__item.image-large img {
        height: 100%;
        width: auto;
        position: absolute;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    .bento__item.image-small {
        padding-top: 50%;
    }

    .bento__item.image-small .bento__item__inner {
        max-width: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .bento__item.image-small img {
        height: 100%;
    }

    .bento__item.article {
        border: none;
    }
}

@media screen and (min-width: 1024px) {
    .bento__item {
        width: 33.333%;
        min-height: 33.333vw;
    }

    .bento__item.image-large {
        width: 66.666%;
        padding-top: 33.333%;
    }

    .bento__item.image-small {
        padding-top: 33.333%;
    }
}

@media screen and (min-width: 1600px) {
    .bento__item {
        min-height: 0;
    }
}

.bento__item img {
    width: 100%;
    height: auto;
}

.collage {
    background: #fff;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    overflow: hidden;
}

.collage p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .collage {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.collage__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #002466;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .collage__title {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.collage__link {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    text-transform: uppercase;
}

.collage__link:hover {
    text-decoration: underline;
}

.collage__image-col {
    margin: 0 -25px;
}

.collage__image-col:before {
    content: "";
    width: 32px;
    height: 32px;
    border: 16px solid transparent;
    border-top-color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -16px;
    z-index: 1;
}

.collage__image-col .image_2 {
    display: none;
}

.collage__image-col img {
    display: block;
    width: 100%;
    height: auto;
}

.collage__text-col {
    padding: 50px 15px 30px;
}

@media screen and (min-width: 1024px) {
    .collage .container {
        padding-top: 100px;
        padding-bottom: 100px;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .collage__image-col {
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        width: 50%;
        margin: 0;
    }

    .collage__image-col:before {
        display: none;
    }

    .collage__image-col .image_2 {
        display: inline-block;
        margin-top: -100px;
        float: right;
        margin-right: 30px;
        width: 70%;
    }

    .collage__text-col {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        width: 50%;
        padding: 0 120px 0 80px;
    }

    .collage__title {
        max-width: 80%;
    }

    .collage .image_1 {
        -webkit-transform: translate(0, 60px);
        -ms-transform: translate(0, 60px);
        transform: translate(0, 60px);
        display: none;
        transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .collage .image_2 {
        -webkit-transform: translate(0, 100px);
        -ms-transform: translate(0, 100px);
        transform: translate(0, 100px);
        display: none;
        transition: all 1.6s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .collage.in-view .image_1, .collage.in-view .image_2 {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        display: block;
    }
}

.contact-form {
    background: #f4f4f4;
}

.contact-form .container {
    overflow: hidden;
}

.contact-form__header {
    margin: 60px 0 40px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .contact-form__header {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-right: 0;
        margin-left: 25.58941%;
        margin-top: 120px;
        margin-bottom: 50px;
    }

    .contact-form__header:last-child {
        margin-right: 0;
    }
}

.contact-form__cta {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .contact-form__cta {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%;
    }

    .contact-form__cta:last-child {
        margin-right: 0;
    }
}

.contact-form__cta button {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
    margin-bottom: 60px;
}

.contact-form__cta button:hover, .contact-form__cta button._hover,
a:hover .contact-form__cta button {
    text-decoration: none;
}

.contact-form__cta button:hover, .contact-form__cta button._hover,
a:hover .contact-form__cta button {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

@media screen and (min-width: 768px) {
    .contact-form__cta button {
        margin-bottom: 120px;
    }
}

.contact-form__form {
    display: none;
    margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
    .contact-form__form {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-right: 0;
        margin-left: 25.58941%;
        display: none;
        margin-bottom: 120px;
    }

    .contact-form__form:last-child {
        margin-right: 0;
    }
}

.contact-form__form button {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
    display: block;
}

.contact-form__form button:hover, .contact-form__form button._hover,
a:hover .contact-form__form button {
    text-decoration: none;
}

.contact-form__form button:hover, .contact-form__form button._hover,
a:hover .contact-form__form button {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

.contact-options {
    background: #ffffff;
    padding: 30px 0;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.contact-options p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .contact-options {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.contact-options__header {
    text-align: center;
    margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
    .contact-options__header {
        margin-bottom: 60px;
    }
}

.contact-options .container {
    padding: 0;
}

@media screen and (min-width: 1024px) {
    .contact-options {
        padding: 20px 0 140px 0;
    }
}

.contact-options__item {
    text-align: center;
    padding: 0 15px;
    padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .contact-options__item {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .contact-options__item {
        padding: 0 30px;
    }
}

@media screen and (min-width: 1024px) {
    .contact-options__item {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
        padding: 0 60px;
    }

    .contact-options__item:last-child {
        margin-right: 0;
    }

    .contact-options__item:nth-child(3) {
        margin-right: 0;
    }
}

.contact-options .icon {
    font-size: 70px;
    margin-bottom: 10px;
    display: inline-block;
}

.contact-options .icon.green {
    color: #0B563D;
}

.contact-options .icon.red {
    color: #d3135a;
}

.contact-options .icon.blue {
    color: #002466;
}

.contact-options .icon.sky {
    color: #002466;
}

.contact-options .icon.orange {
    color: #0152E8;
}

.contact-options .icon.pink {
    color: #d3135a;
}

.contact-options .eyebrow {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .contact-options .eyebrow {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

.contact-options p {
    color: #0E141A;
}

.contact-options__heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .contact-options__heading {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.contact-options .btn-cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #0E141A;
    color: #0E141A;
}

.contact-options .btn-cta:hover, .contact-options .btn-cta._hover,
a:hover .contact-options .btn-cta {
    text-decoration: none;
}

.contact-options .btn-cta:hover, .contact-options .btn-cta._hover,
a:hover .contact-options .btn-cta {
    background-color: rgba(34, 34, 34, 0.2);
}

.contact-options .link {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    display: inline-block;
    text-transform: none;
}

@media screen and (min-width: 768px) {
    .contact-options .link {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.content-scroller {
    background: #fff;
    overflow: hidden;
}

@media screen and (max-width: 1023px) {
    .content-scroller__inner {
        background: #fff !important;
    }
}

.content-scroller .text--page-heading {
    color: #000;
    line-height: 1.13;
    margin-bottom: 20px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .content-scroller .text--page-heading {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (min-width: 1024px) {
    .content-scroller .has-background .text--page-heading {
        color: #fff !important;
    }

    .content-scroller .has-background .content-scroller__item__inner {
        color: #fff;
    }

    .content-scroller .has-background .content-scroller__item__inner p {
        color: #fff;
    }
}

.content-scroller .no-background {
    background: #fff;
}

.content-scroller__item {
    padding-top: 40px;
}

@media screen and (min-width: 1024px) {
    .content-scroller__item {
        padding-top: 0;
    }
}

.content-scroller__item--hero {
    margin-top: 0;
    min-height: 100vh;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.content-scroller__item__inner {
    padding: 0 30px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.content-scroller__media {
    margin: 0 -30px;
}

.content-scroller__media img {
    width: 100%;
    height: auto;
    display: block;
}

.content-scroller__media:before {
    content: "";
    width: 32px;
    height: 32px;
    border: 16px solid transparent;
    border-top-color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -16px;
    z-index: 1;
}

.content-scroller__media--video {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.content-scroller__media--video video {
    max-width: 100%;
    height: auto;
    display: inline-block;
    margin: 0 auto;
}

.content-scroller__media--video img.fallback {
    display: none;
}

.ios .content-scroller__media--video video, .android .content-scroller__media--video video {
    display: none;
}

.ios .content-scroller__media--video img.fallback, .android .content-scroller__media--video img.fallback {
    display: inline-block;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
}

.content-scroller .cta {
    margin: 20px 0;
}

@media screen and (max-width: 767px) {
    .content-scroller .cta {
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    .content-scroller .has-background .cta {
        font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 700;
        font-style: normal;
        transition: all 100ms linear;
        display: inline-block;
        font-size: 12px;
        min-width: 160px;
        padding: 17px 40px 17px;
        text-align: center;
        text-transform: uppercase;
        border-width: 2px;
        border-style: solid;
        font-size: 12px;
        letter-spacing: 0.6px;
        line-height: 1.33333;
        border-color: #ffffff;
        color: #ffffff;
        transition: background-color 100ms linear;
    }

    .content-scroller .has-background .cta:hover, .content-scroller .has-background .cta._hover,
    a:hover .content-scroller .has-background .cta {
        text-decoration: none;
    }

    .content-scroller .has-background .cta:hover, .content-scroller .has-background .cta._hover,
    a:hover .content-scroller .has-background .cta {
        background-color: rgba(255, 255, 255, 0.2);
    }
}

.content-scroller .rich-text {
    padding: 0;
    margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .content-scroller .rich-text {
        margin-bottom: 60px;
    }
}

.content-scroller .rich-text .rich-text_inner, .content-scroller .rich-text .rich-text_inner p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.content-scroller .rich-text .rich-text_inner p, .content-scroller .rich-text .rich-text_inner p p {
    margin-bottom: 30px;
}

.content-scroller p span.color-scheme--black {
    color: #111;
}

.content-scroller p a.color-scheme--black {
    color: #111;
}

@media screen and (min-width: 768px) {
    .content-scroller .rich-text .rich-text_inner, .content-scroller .rich-text .rich-text_inner p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.content-scroller .pull-quote {
    margin-bottom: 60px;
}

.content-scroller .pull-quote_inner {
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.content-scroller .pull-quote p.text--pull-quote-author {
    color: rgba(0, 0, 0, 0.4);
}

.content-scroller .pull-quote:before {
    width: 35px;
}

@media screen and (min-width: 768px) {
    .content-scroller .pull-quote_inner {
        padding-left: 0;
    }
}

@media screen and (min-width: 1024px) {
    .content-scroller .pull-quote:before {
        background: #fff;
    }
}

@media screen and (min-width: 1280px) {
    .content-scroller .pull-quote {
        margin-left: -65px;
    }
}

.content-scroller .component.accordian-table .accordian-table_ct {
    margin: 0;
}

.content-scroller__text {
    padding: 20px 0 40px;
}

.content-scroller__text img {
    width: 100%;
    height: auto;
}

.content-scroller .renewable-sources_legend {
    margin: 40px 0;
}

@media screen and (min-width: 1024px) {
    .content-scroller .renewable-sources_legend {
        max-width: 270px;
        margin: 40px 0 60px;
    }
}

@media screen and (min-width: 1024px) {
    .content-scroller__inner {
        transition: background 0.8s linear;
    }

    .content-scroller__item {
        margin-top: 0;
        padding: 130px 0;
        min-height: 50vh;
        -webkit-align-items: center;
        -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
        position: static;
    }

    .content-scroller__item--hero {
        min-height: 100vh;
    }

    .content-scroller__item:first-child:last-child {
        min-height: 100vh;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .content-scroller__item__inner {
        position: static;
        width: 50%;
    }

    .content-scroller__text {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

    .content-scroller__media {
        position: fixed;
        height: 100vh;
        right: 0;
        bottom: 0;
        width: 50vw;
        overflow: hidden;
        margin: 0;
    }

    .content-scroller__media picture {
        position: static;
    }

    .content-scroller__media img {
        min-height: 100%;
        min-width: 100%;
        width: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .content-scroller__media:before {
        display: none;
    }

    .content-scroller .content-scroller__item:first-child .content-scroller__item__inner {
        padding-top: 20vh;
    }

    .content-scroller .content-scroller__item:last-child .content-scroller__item__inner {
        padding-bottom: 20vh;
    }

    .content-scroller .content-scroller__item:first-child .content-scroller__media {
        position: absolute;
        top: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .content-scroller.scrolled-into .content-scroller__item:first-child .content-scroller__media {
        position: fixed;
    }

    .content-scroller.scrolled-past .content-scroller__item:last-child .content-scroller__media {
        position: absolute;
        top: auto;
        bottom: 0;
    }

    .content-scroller__media {
        transition: -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    .content-scroller__media.active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .content-scroller__media.exit-up {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    .content-scroller__media.exit-down {
        -webkit-transform: translate3d(0, -100%, 0) !important;
        transform: translate3d(0, -100%, 0) !important;
    }
}

.filter {
    background: #f4f4f4;
}

.filter input[type='radio'] + label,
.filter input[type='checkbox'] + label {
    padding-right: 0;
}

.filter__menu {
    border-bottom: 1px solid #0e141a;
}

.filter__menu__wrap {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0;
}

@media screen and (min-width: 768px) {
    .filter__menu {
        padding: 15px 0;
    }
}

.filter__sort {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.filter .selectboxit-container {
    margin-left: 12px;
    width: auto;
}

.filter__menu label, .filter__group__heading {
    text-transform: uppercase;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    margin: 10px 0;
}

.filter__sort label {
    top: 1px;
    display: inline;
}

.ios .filter__sort label {
    top: 0;
}

.filter__num-items {
    color: #999999;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.filter__filters {
    display: none;
}

.filter__filters label {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1;
    cursor: pointer;
    display: inline-block;
}

@media screen and (min-width: 768px) {
    .filter__filters {
        position: static;
        width: auto;
        height: auto;
    }

    .filter__filters > .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (min-width: 768px) {
    .filter__groups {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.filter__group .form-row {
    margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
    .filter__group {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        float: none;
        margin: 0;
    }

    .filter__group:last-child {
        margin-right: 0;
    }

    .filter__group--large {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        float: none;
    }

    .filter__group--large:last-child {
        margin-right: 0;
    }
}

@media screen and (min-width: 1024px) {
    .filter__group {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 14.70196%;
        float: none;
    }

    .filter__group:last-child {
        margin-right: 0;
    }

    .filter__group--large {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 40.29137%;
        float: none;
    }

    .filter__group--large:last-child {
        margin-right: 0;
    }

    .filter__group--large .form-row {
        width: 50%;
        float: left;
    }

    .filter__group--published .form-row {
        width: 100%;
        float: none;
    }

    .filter__group--published .col {
        width: 50%;
        float: left;
    }
}

.filter__heading {
    display: none;
}

.filter__controls {
    display: none;
}

@media screen and (max-width: 767px) {
    .filter__filters {
        position: fixed;
        top: 0;
        height: 100%;
        left: 0;
        right: 0;
        background: #f4f4f4;
        z-index: 10000;
    }

    .filter__filters__wrap {
        bottom: 0;
        height: 100%;
        width: 100%;
        overflow: scroll;
        position: absolute;
        padding: 0;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .filter__heading, .filter__group {
        display: block;
        padding: 0 15px;
    }

    .filter__controls {
        display: block;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .filter__group__heading {
        cursor: pointer;
    }

    .filter__heading {
        padding: 15px;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .filter__heading__text {
        font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.33333;
    }

    .filter__groups {
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        overflow: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .filter .btn-filter-cancel {
        color: #d3135a;
        font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 12px;
        letter-spacing: 0.012px;
        line-height: 10.41667%;
        text-transform: uppercase;
        position: absolute;
        right: 15px;
        top: 50%;
        margin-top: -5px;
        height: 17px;
        width: 24px;
    }

    .filter .btn-filter-cancel .cross-icon:before, .filter .btn-filter-cancel .cross-icon:after {
        background: #d3135a;
    }

    .filter__group {
        background: #fff;
        border-bottom: 1px solid #dddddd;
        padding: 0;
    }

    .filter__group__heading {
        margin: 0;
        padding: 15px;
    }

    .filter__group__heading:after {
        content: "+";
        position: absolute;
        right: 15px;
        top: 50%;
        margin-top: -12px;
        color: #d3135a;
    }

    .filter__group__content {
        padding: 15px;
    }

    .filter__group.open .filter__group__heading:after {
        content: "\2014";
        right: 12px;
    }

    .filter__controls .container {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 15px;
    }

    .filter__controls .container button {
        min-width: 140px;
    }

    .filter__controls .container button:last-child {
        margin-left: auto;
    }
}

.filter .datepickers {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 5px;
}

.filter .datepickers .labels {
    padding-right: 20px;
    text-align: right;
}

.filter .datepickers .labels label {
    display: block;
    margin-bottom: 5px;
}

.filter .datepickers .inputs input {
    margin-bottom: 5px;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    background: transparent;
    border: none;
    border-bottom: 2px solid #dddddd;
    outline: none;
    display: block;
    border-radius: 0;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .filter .datepickers .inputs input {
        width: 100%;
    }
}

.pika-single {
    z-index: 1000000;
}

.pika-single * {
    border-radius: 0;
}

.is-today .pika-button {
    color: #d3135a;
}

.pika-button:hover {
    background: #d3135a;
    color: #fff;
    box-shadow: none;
}

.is-selected .pika-button {
    background: #d3135a;
    color: #fff;
    box-shadow: none;
}

.is-selected .pika-button:hover {
    color: #fff !important;
}

.footer-contact {
    text-align: center;
    background: #002466;
    color: #fff;
    padding: 70px 0;
}

.footer-contact__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: white;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .footer-contact__title {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.footer-contact__description {
    margin-bottom: 30px;
}

.footer-contact__ctas {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-contact__ctas .btn-cta {
    margin-bottom: 10px;
}

.footer-contact__ctas .link {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    text-transform: uppercase;
    padding: 17px 40px 17px;
}

.footer-contact__ctas .link:hover {
    text-decoration: underline;
}

@media screen and (min-width: 1024px) {
    .footer-contact {
        padding: 120px 0;
    }
}

.footer-hero-cta {
    text-align: center;
    background: #002466;
    color: #fff;
    padding: 70px 0;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.footer-hero-cta p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .footer-hero-cta {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.footer-hero-cta.live-chat-cta {
    background: #0B563D;
}

.footer-hero-cta__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: white;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .footer-hero-cta__title {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (min-width: 1024px) {
    .footer-hero-cta {
        padding: 120px 0;
    }
}

.footer-hero-cta h2 {
    margin-bottom: 6px;
}

.footer-hero-cta p {
    margin-bottom: 40px;
}

.footer-hero-cta p:last-child {
    margin: 0;
}

.footer-hero-cta .cta-holder {
    margin-bottom: 20px;
}

.footer-hero-cta .cta-holder:last-child {
    margin: 0;
}

.for-homes-hero__cta {
    display: block;
    padding: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: #002466;
    background: linear-gradient(90deg, #002466 0%, #36a6ea 100%);
    color: #fff;
    z-index: 1;
    transition: 0.3s -webkit-transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: 0.3s transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: 0.3s transform cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.3s -webkit-transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.for-homes-hero__cta.unstick {
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
}

.for-homes-hero__cta .text1 {
    display: none;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    font-size: 24px !important;
}

@media screen and (min-width: 768px) {
    .for-homes-hero__cta .text1 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.for-homes-hero__cta .text2 {
    text-transform: uppercase;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.72px;
    line-height: 1.33333;
    display: inline-block;
}

.for-homes-hero__cta .icon-arrow {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    font-size: 11px;
}

@media screen and (min-width: 1024px) {
    .for-homes-hero__cta {
        position: absolute;
        width: auto;
        bottom: auto;
        left: auto;
        text-align: left;
        min-width: 310px;
        padding: 30px;
        padding-right: 60px;
        top: 100%;
        margin-top: -150px;
        right: 0;
        box-shadow: 0 5px 0px rgba(0, 0, 0, 0.1);
        -webkit-transform: translate(10px, 0);
        -ms-transform: translate(10px, 0);
        transform: translate(10px, 0);
    }

    .for-homes-hero__cta .text1 {
        display: block;
        margin-bottom: 0;
        color: #fff;
    }

    .for-homes-hero__cta .icon-arrow {
        position: absolute;
        right: 15px;
        top: 50%;
        margin-top: -10px;
        display: none;
        transition: 0.2s opacity;
        margin-left: 0;
        font-size: 1em;
    }

    .for-homes-hero__cta:hover {
        text-decoration: none;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .for-homes-hero__cta:hover .icon-arrow {
        display: block;
    }

    .for-homes-hero__cta.sticky {
        position: fixed;
        margin-top: 0;
        top: 20px;
    }

    .for-homes-hero__cta.sticky.unstick {
        -webkit-transform: translate(10px, -200%);
        -ms-transform: translate(10px, -200%);
        transform: translate(10px, -200%);
    }
}

.for-homes-hero {
    background: #d3135a;
    color: #fff;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #fff;
    z-index: 3 !important;
}

.for-homes-hero p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .for-homes-hero {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.for-homes-hero__inner {
    min-height: 100vh;
    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    .for-homes-hero__inner {
        max-height: 1000px;
        min-height: 0;
        height: calc(100vh - 40px);
    }
}

.for-homes-hero__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: white;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .for-homes-hero__title {
        font-size: 60px;
        letter-spacing: -1.2px;
        line-height: 1.08333;
    }
}

.for-homes-hero__content__wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}

.for-homes-hero__content__wrapper .container {
    -webkit-flex: 1 0 0;
    -ms-flex: 1 0 0;
    flex: 1 0 0;
}

.for-homes-hero__content {
    width: 100%;
    max-width: 720px;
}

@media screen and (max-width: 767px) {
    .for-homes-hero__content {
        padding-bottom: 40px;
    }
}

.for-homes-hero .eyebrow {
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .for-homes-hero .eyebrow {
        margin-bottom: 60px;
    }
}

.footer-container {
    background: #0E141A;
    color: #ffffff;
    padding: 0 30px 40px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .footer-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (min-width: 1024px) {
    .footer-container {
        padding: 10px 30px 40px;
    }
}

.footer__localisation {
    background: #000000;
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .footer__localisation {
        display: none;
    }
}

.footer__localisation button {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    font-size: 10px;
    letter-spacing: 0px;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    width: 100%;
    padding: 10px 15px;
}

@media screen and (min-width: 768px) {
    .footer__localisation button {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.footer__localisation button .flex-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__localisation button .flex-wrap:after {
    display: block;
    font-family: 'icomoon';
    content: "\e905";
    font-style: normal;
    font-weight: normal;
}

.footer__localisation button .flex-wrap:after {
    display: inline-block;
}

@media screen and (min-width: 768px) {
    .footer__localisation button {
        font-size: 10px;
        letter-spacing: 0px;
        line-height: 1;
        padding: 10px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .footer__localisation button {
        padding: 10px 30px;
    }
}

.footer__localisation button span {
    font-size: 10px;
    letter-spacing: 0px;
    line-height: 1;
    color: #999999;
    margin: 10px 1em 10px 0;
}

.footer__localisation button strong {
    font-size: 10px;
    letter-spacing: 0px;
    line-height: 1;
    color: #ffffff;
    margin: 10px 1em 10px 0;
}

.footer__localisation button strong + strong {
    border-left: 1px solid #ffffff;
    padding-left: 1em;
}

.footer-content {
    max-width: 1080px;
    margin: auto;
}

.footer-section {
    -webkit-flex: 1 100% auto;
    -ms-flex: 1 100% auto;
    flex: 1 100% auto;
    padding: 40px 0;
    position: relative;
}

.footer-section:before {
    content: '';
    display: block;
    position: absolute;
    background: #666666;
    height: 1px;
    top: 0;
    width: 100%;
}

.footer-section:first-child:before {
    display: none;
}

.footer-section p {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.33333;
    margin: 0;
}

.footer-social ul {
    margin-top: 18px;
}

.footer-social li {
    display: inline-block;
    margin-right: 20px;
}

.footer-social li:last-child {
    margin-right: 0;
}

.footer-social a {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid #EFF2F7;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 32px;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    transition: all 100ms linear;
}

.footer-social a:before {
    color: #EFF2F7;
    font-size: 15px;
    transition: all 100ms linear;
}

.footer-social a:hover {
    background: #EFF2F7;
    text-decoration: none;
}

.footer-social a:hover:before {
    color: #0E141A;
}

.footer-social span {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.footer-legal li:before, .footer-legal-links li:first-child:after {
    content: '';
    display: block;
    position: absolute;
    height: 14px;
    top: 3px;
    width: 1px;
}

.footer-legal {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .footer-legal {
        padding-bottom: 10px;
    }
}

.footer-legal li {
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1.53846;
    display: inline-block;
    float: left;
    position: relative;
}

.footer-legal li:before {
    right: 0;
}

.footer-legal li:last-child {
    padding-right: 0;
}

.footer-legal li:last-child:before {
    display: none;
}

.footer-copyright li {
    margin: 0 10px 13px 0;
    padding-right: 10px;
}

.footer-copyright li:before {
    background: #313131;
}

.footer-legal-links {
    /*margin-left: -13px; on mobile device the first term was cutted in the middle*/
}

.footer-legal-links li {
    padding-right: 13px;
    padding-left: 13px;
}

.footer-legal-links li:before {
    background: #666666;
}

.footer-legal-links a {
    color: #EFF2F7;
}

.footer-legal-links a:hover {
    text-decoration: underline;
    color: #FFFFFF;
}

@media screen and (min-width: 768px) {
    .footer-content {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 40px 0 24px;
    }

    .footer-section {
        padding: 0;
    }

    .footer-legal {
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
    }

    .footer-social {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }

    .footer-social p {
        font-size: 16px;
        letter-spacing: 0px;
        line-height: 1.25;
        margin: 0;
    }

    .footer-section:before {
        display: none;
    }

    .footer-section .text--footer-link:hover {
        text-decoration: underline;
    }

    .footer-legal li {
        font-size: 14px;
        letter-spacing: 0px;
        line-height: 1.42857;
    }

    .footer-legal li:before {
        top: 2px;
    }

    .footer-legal li:first-child:after {
        top: 2px;
    }

    .footer-copyright li:before {
        background: #313131;
    }

    .footer-legal-links {
        margin-left: -10px;
    }

    .footer-legal-links li {
        padding-right: 10px;
        padding-left: 10px;
    }

    .footer-legal-links li:before {
        background: #444;
    }

    .footer-legal-links li:first-child {
        padding-left: 10px;
    }

    .footer-legal-links li:first-child:after {
        background: #444;
        left: 0;
    }
}

@media screen and (min-width: 1024px) {
    .footer-content {
        max-width: 1080px;
        margin: auto;
        padding: 20px 0 0;
        -webkit-align-items: center;
        -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
    }

    .footer-content::after {
        clear: both;
        content: "";
        display: table;
    }

    .footer-copyright,
    .footer-legal-links {
        display: inline-block;
        vertical-align: middle;
        margin: 5px 0;
    }

    .footer-copyright li,
    .footer-legal-links li {
        margin-bottom: 0;
    }

    .footer-social p {
        display: inline-block;
        margin-right: 10px;
        vertical-align: middle;
    }

    .footer-social ul {
        display: flex;
        vertical-align: middle;
        margin: 10px 0;
    }

    .footer-social li:last-child {
        margin: 0;
    }
}

.global-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

.global-header__localisation {
    background: #000000;
    width: 100%;
    display: none;
    z-index: 1;
}

@media screen and (min-width: 1024px) {
    .global-header__localisation {
        display: block;
    }
}

.global-header__localisation button {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0px;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    width: 100%;
    padding: 10px 15px;
}

@media screen and (min-width: 768px) {
    .global-header__localisation button {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.global-header__localisation button .flex-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.global-header__localisation button .flex-wrap:after {
    display: block;
    font-family: 'icomoon';
    content: "\e905";
    font-style: normal;
    font-weight: normal;
}

.global-header__localisation button .flex-wrap:after {
    display: inline-block;
}

@media screen and (min-width: 768px) {
    .global-header__localisation button {
        font-size: 10px;
        letter-spacing: 0px;
        line-height: 1;
        padding: 10px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .global-header__localisation button {
        padding: 10px 30px;
    }
}

.global-header__localisation button span {
    font-size: 10px;
    letter-spacing: 0px;
    line-height: 1;
    color: #999999;
    margin: 10px 1em 10px 0;
}

.global-header__localisation button strong {
    font-size: 10px;
    letter-spacing: 0px;
    line-height: 1;
    color: #ffffff;
    margin: 10px 1em 10px 0;
}

.global-header__localisation button strong + strong {
    border-left: 1px solid #ffffff;
    padding-left: 1em;
}

.global-header__main {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 15px;
}

@media screen and (min-width: 768px) {
    .global-header__main {
        padding: 25px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .global-header__main {
        padding: 23px 30px;
    }
}

.global-header__logo {
    max-width: 60px;
}

@media screen and (min-width: 768px) {
    .global-header__logo {
        max-width: 109px;
    }
}

.global-header__logo a {
    display: block;
}

.global-header__logo img {
    width: 100%;
}

.global-header__logo__color {
    display: none;
}

.global-header__btns {
    margin-left: auto;
}

@media screen and (min-width: 1024px) {
    .global-header__btns {
        margin-left: 0;
    }
}

.global-header__btn {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
}

@media screen and (min-width: 768px) {
    .global-header__btn {
        margin-left: 30px;
    }

    .global-header__btn:first-of-type {
        margin-left: 0;
    }
}

.global-header__btn__text {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    display: none;
    color: #ffffff;
    padding-right: 20px;
    position: relative;
    top: -7px;
}

@media screen and (min-width: 768px) {
    .global-header__btn__text {
        text-transform: uppercase;
        display: inline-block;
    }
}

.global-header__btn.btn-user {
    font-size: 20px;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .global-header__btn.btn-user {
        font-size: 28px;
    }
}

@media screen and (min-width: 1024px) {
    .global-header__btn.btn-user {
        font-size: 22px;
    }
}

.global-header__btn.btn-search-open {
    font-size: 20px;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .global-header__btn.btn-search-open {
        font-size: 28px;
    }
}

@media screen and (min-width: 1024px) {
    .global-header__btn.btn-search-open {
        font-size: 22px;
    }
}

.global-header__btn.btn-menu {
    font-size: 20px;
    color: #fff;
}

@media screen and (min-width: 768px) {
    .global-header__btn.btn-menu {
        font-size: 28px;
    }
}

@media screen and (min-width: 1024px) {
    .global-header__btn.btn-menu {
        font-size: 22px;
    }
}

.global-header__btn.btn-search-close {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .global-header__btn.btn-search-close {
        height: 24px;
        width: 32px;
    }
}

@media screen and (min-width: 1024px) {
    .global-header__btn.btn-search-close {
        height: 21px;
        width: 21px;
    }
}

.global-header__links {
    display: none;
}

@media screen and (min-width: 1024px) {
    .global-header__links {
        display: block;
        margin-left: 43px;
    }
}

.global-header__links li {
    display: inline;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 4px;
}

.global-header__links li a {
    display: inline-block;
    color: #ffffff;
    padding: 10px 20px;
    line-height: 1;
}

.global-header__links li a:hover, .global-header__links li a:focus {
    text-decoration: underline;
}

.global-header__links li.selected a {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 100px;
}

.global-header__links li.selected a:hover {
    text-decoration: none;
}

.global-header-white-bg .global-header {
    background: #fff;
    border-bottom: 1px solid #dddddd;
    color: #999999;
}

.global-header-white-bg .global-header .global-header__logo__color {
    display: inline;
}

.global-header-white-bg .global-header .global-header__logo__bw {
    display: none;
}

.global-header-white-bg .global-header .global-header__links li, .global-header-white-bg .global-header .global-header__links li a {
    color: #999999;
}

.global-header-white-bg .global-header .global-header__links li.selected a {
    background: #f4f4f4;
    color: #000000;
}

.global-header-white-bg .global-header .global-header__btn {
    color: #999999;
}

.global-header-white-bg .global-header .global-header__btn .icon-user,
.global-header-white-bg .global-header .global-header__btn .icon-search-small {
    color: #999999;
}

.global-header-white-bg .global-header .global-header__btn.btn-menu .burger-icon, .global-header-white-bg .global-header .global-header__btn.btn-menu .cross-icon {
    background: #999999;
}

.global-header-white-bg .global-header .global-header__btn.btn-menu .burger-icon:after, .global-header-white-bg .global-header .global-header__btn.btn-menu .cross-icon:after, .global-header-white-bg .global-header .global-header__btn.btn-menu .burger-icon:before, .global-header-white-bg .global-header .global-header__btn.btn-menu .cross-icon:before {
    background: #999999;
}

@media screen and (min-width: 768px) {
    .megamenu__article {
        display: none;
        -webkit-transform: translate(0, 10px);
        -ms-transform: translate(0, 10px);
        transform: translate(0, 10px);
        transition: 0.3s opacity, 0.5s -webkit-transform ease-out;
        transition: 0.3s opacity, 0.5s transform ease-out;
        transition: 0.3s opacity, 0.5s transform ease-out, 0.5s -webkit-transform ease-out;
    }

    .megamenu__article:nth-of-type(0) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(1) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(2) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(3) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(4) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(5) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(6) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(7) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(8) {
        transition-delay: 0s;
    }

    .megamenu__article:nth-of-type(9) {
        transition-delay: 0s;
    }
}

@media screen and (min-width: 768px) {
    .megamenu__nav .megamenu__nav__body li {
        transition: 0.1s opacity, 0.2s -webkit-transform ease-out;
        transition: 0.1s opacity, 0.2s transform ease-out;
        transition: 0.1s opacity, 0.2s transform ease-out, 0.2s -webkit-transform ease-out;
        -webkit-transform: translate(0, 10px);
        -ms-transform: translate(0, 10px);
        transform: translate(0, 10px);
        display: none;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(0) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(1) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(2) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(3) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(4) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(5) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(6) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(7) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(8) {
        transition-delay: 0s;
    }

    .megamenu__nav .megamenu__nav__body li:nth-of-type(9) {
        transition-delay: 0s;
    }
}

.megamenu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    transition: -webkit-transform 0s ease-in-out 0.7s;
    transition: transform 0s ease-in-out 0.7s;
    transition: transform 0s ease-in-out 0.7s, -webkit-transform 0s ease-in-out 0.7s;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (min-width: 768px) {
    .megamenu {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.menu-open .megamenu {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0s;
    transition: transform 0s;
    transition: transform 0s, -webkit-transform 0s;
}

.menu-open .megamenu .megamenu__nav {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.menu-open .megamenu .megamenu__main {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: all 0.7s ease-in-out 0s;
    display: block;
}

@media screen and (min-width: 768px) {
    .menu-open .megamenu .megamenu__article {
        display: block;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(0) {
        transition-delay: 0.5s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(1) {
        transition-delay: 0.75s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(2) {
        transition-delay: 1s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(3) {
        transition-delay: 1.25s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(4) {
        transition-delay: 1.5s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(5) {
        transition-delay: 1.75s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(6) {
        transition-delay: 2s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(7) {
        transition-delay: 2.25s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(8) {
        transition-delay: 2.5s;
    }

    .menu-open .megamenu .megamenu__article:nth-of-type(9) {
        transition-delay: 2.75s;
    }
}

@media screen and (min-width: 768px) {
    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li {
        display: block;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(0) {
        transition-delay: 0.4s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(1) {
        transition-delay: 0.5s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(2) {
        transition-delay: 0.6s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(3) {
        transition-delay: 0.7s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(4) {
        transition-delay: 0.8s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(5) {
        transition-delay: 0.9s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(6) {
        transition-delay: 1s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(7) {
        transition-delay: 1.1s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(8) {
        transition-delay: 1.2s;
    }

    .menu-open .megamenu .megamenu__nav .megamenu__nav__body li:nth-of-type(9) {
        transition-delay: 1.3s;
    }
}

.megamenu__nav {
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #002466;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    z-index: 1;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .megamenu__nav {
        width: 340px;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        transition: -webkit-transform 0.4s ease-in-out 0s;
        transition: transform 0.4s ease-in-out 0s;
        transition: transform 0.4s ease-in-out 0s, -webkit-transform 0.4s ease-in-out 0s;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__nav {
        width: 400px;
    }
}

.megamenu__main {
    background: #f4f4f4;
    -webkit-transform: translate(calc(100% + 400px), 0);
    -ms-transform: translate(calc(100% + 400px), 0);
    transform: translate(calc(100% + 400px), 0);
    transition: all 0.4s ease-in-out;
    display: none;
}

@media screen and (min-width: 768px) {
    .megamenu__main {
        display: block;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
}

.megamenu__main__body {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}


.megamenu__lang-links {
    top: -4px;
}

.megamenu__lang-links li {
    display: inline-block;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1.53846;
    margin-right: 20px;
}

.megamenu__lang-links li a {
    color: #fff;
}

.megamenu__lang-links li a:hover {
    text-decoration: none;
}

.megamenu__lang-links li.selected:after, .megamenu__lang-links li:hover:after {
    content: "";
    width: 100%;
    height: 4px;
    background: #fff;
    position: absolute;
    bottom: -6px;
    left: -2px;
    box-sizing: content-box;
    padding: 0 2px;
}

.megamenu__main {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.megamenu__main__header {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 64px;
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .megamenu__main__header {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__main__header {
        padding: 0 30px;
    }
}

@media screen and (max-width: 768px -1) {
    .megamenu__main__header {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .megamenu__main__header {
        height: 84px;
    }
}

.megamenu__main__header__logo {
    display: block;
    width: 120px;
}

.megamenu__main__header__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.megamenu__nav__header {
    background: #0444c8;
    position: absolute;
    top: 0;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 64px;
    padding: 0 15px;
    z-index: 9999999;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

@media screen and (min-width: 768px) {
    .megamenu__nav__header {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__nav__header {
        padding: 0 30px;
    }
}

@media screen and (min-width: 768px) {
    .megamenu__nav__header {
        height: 84px;
    }
}

.megamenu__nav .btn-close {
    top: 2px;
    height: 17px;
    width: 24px;
    vertical-align: middle;
}

@media screen and (min-width: 768px) {
    .megamenu__nav .btn-close {
        width: 32px;
        height: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__nav .btn-close {
        width: 21px;
        height: 21px;
    }
}

.megamenu__nav__body {
    height: calc(100% - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    margin: 64px 0 0;
}

@media screen and (min-width: 768px) {
    .megamenu__nav__body {
        height: calc(100% - 84px);
        margin: 84px 0 0;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 767px) {
    .megamenu__nav__body {
        background: #f4f4f4;
    }
}

@media screen and (min-width: 1280px) {
    .megamenu__nav .secondaryMenu {
        display: none;
    }
}

.megamenu__accordian {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.megamenu__nav__body .megamenu__accordian {
    background-color: #002466;
}

.megamenu__accordian__header {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.36364;
    padding: 0 15px;
    border-top: 1px solid #0444c8;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .megamenu__accordian__header {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__accordian__header {
        padding: 0 30px;
    }
}

.megamenu__accordian__header:before, .megamenu__accordian__header:after {
    right: 27px;
}

@media screen and (min-width: 768px) {
    .megamenu__accordian__header:before, .megamenu__accordian__header:after {
        right: 37px;
    }
}

.megamenu__accordian__header:before {
    content: "";
    background: #033396;
    width: 16px;
    height: 2px;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    margin-right: -7px;
}

.megamenu__accordian__header:after {
    content: "";
    background: #033396;
    width: 2px;
    height: 16px;
    position: absolute;
    top: 50%;
    margin-top: -8px;
}

@media screen and (min-width: 1280px) {
    .megamenu__accordian__header {
        cursor: default;
    }

    .megamenu__accordian__header:before, .megamenu__accordian__header:after {
        display: none;
    }
}

.megamenu__accordian__body {
    display: none;
    padding: 10px 0 20px;
}

@media screen and (min-width: 768px) {
    .megamenu__accordian__body {
        padding: 10px 0 40px;
    }
}

.megamenu__accordian__form {
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .megamenu__accordian__form {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__accordian__form {
        padding: 0 30px;
    }
}

.megamenu__accordian__form input[type='text'] {
    margin-bottom: 10px;
    width: 100%;
}

.megamenu__accordian__form .btn-cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
    transition: background-color 100ms linear;
    display: block;
    margin-top: 20px;
    width: 100%;
}

.megamenu__accordian__form .btn-cta:hover, .megamenu__accordian__form .btn-cta._hover,
a:hover .megamenu__accordian__form .btn-cta {
    text-decoration: none;
}

.megamenu__accordian__form .btn-cta:hover, .megamenu__accordian__form .btn-cta._hover,
a:hover .megamenu__accordian__form .btn-cta {
    background-color: rgba(255, 255, 255, 0.2);
}

.megamenu__accordian.open .megamenu__accordian__header:after {
    display: none;
}

@media screen and (max-width: 768px -1) {
    .megamenu__accordian.primaryMenu .megamenu__accordian__header {
        display: none;
    }

    .megamenu__accordian.primaryMenu .megamenu__accordian__body {
        padding: 30px 0;
    }
}

@media screen and (min-width: 768px) {
    .megamenu__accordian:last-child {
        border-bottom: none;
    }
}

.megamenu__navSecondary .megamenu__accordian .megamenu__accordian__header {
    border: none;
    cursor: default;
    color: #999999;
}

.megamenu__navSecondary .megamenu__accordian .megamenu__accordian__header:before, .megamenu__navSecondary .megamenu__accordian .megamenu__accordian__header:after {
    display: none;
}

.megamenu__navSecondary .megamenu__accordian .megamenu__accordian__body {
    padding-top: 0;
}

.megamenu__links {
    margin-bottom: 30px;
}

.megamenu__links:last-child {
    margin-bottom: 0;
}

.megamenu__links a {
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .megamenu__links a {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__links a {
        padding: 0 30px;
    }
}

.megamenu__links a:hover {
    text-decoration: underline;
}

.megamenu__links__heading {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1.53846;
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .megamenu__links__heading {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__links__heading {
        padding: 0 30px;
    }
}

.megamenu__links li {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.33333;
    margin-bottom: 36px;
}

.megamenu__links li:last-child {
    margin-bottom: 0;
}

.megamenu__links li.selected > a:before {
    content: "";
    width: 0.22em;
    height: 1.1em;
    box-sizing: content-box;
    padding: 0.05em 0;
    background: #fff;
    position: absolute;
    top: 0.05em;
    left: 0;
}

@media screen and (min-width: 768px) {
    .megamenu__links li.selected > a:before {
        left: 10px;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__links li.selected > a:before {
        left: 14px;
    }
}

.megamenu__links li.selected .megamenu__links__heading:before {
    font-size: 18px;
    top: 0em;
}

.megamenu__links li li {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.megamenu__links .megamenu__submenu {
    margin-top: 12px;
}

.megamenu__links .megamenu__submenu li {
    margin-bottom: 12px;
}

.megamenu__links .megamenu__submenu li:last-child {
    margin: 0;
}

@media screen and (max-width: 768px -1) {
    a.megamenu__links__heading {
        font-size: 26px;
        letter-spacing: 0px;
        line-height: 1.30769;
        text-transform: none;
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .selected a.megamenu__links__heading:before {
        font-size: 26px !important;
    }

    a.megamenu__links__heading + .megamenu__submenu {
        display: none;
    }
}

.megamenu__news {
    padding: 25px 40px 0;
    margin: 0 auto;
    width: 100%;
    max-width: 832px;
}

.megamenu__news__inner {
    margin: 0 auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.megamenu__news__mobile {
    background: #f4f4f4;
    padding: 40px 15px;
}

.megamenu__news__mobile .megamenu__article {
    height: 100%;
}

.megamenu__news__mobile .swiper-container {
    padding-bottom: 40px;
}

.megamenu__news__mobile .swiper-wrapper {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.megamenu__news__mobile .swiper-slide {
    height: auto;
}

.megamenu__news__mobile .swiper-pagination-bullet-active {
    background: #002466;
}

@media screen and (min-width: 768px) {
    .megamenu__news__mobile {
        display: none;
    }
}

.search-form {
    background: #002466;
    color: #fff;
    width: 100%;
    z-index: 10000;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    position: absolute;
    transition: all .4s ease-in-out;
    overflow: hidden;
    max-height: 100vh;
    visibility: hidden;
}

.search-form--inpage {
    background: #0B563D;
    position: static;
    visibility: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.search-form__header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 15px;
}

@media screen and (min-width: 768px) {
    .search-form__header {
        padding: 25px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .search-form__header {
        padding: 23px 30px;
    }
}

.search-form__logo {
    max-width: 60px;
}

@media screen and (min-width: 768px) {
    .search-form__logo {
        max-width: 109px;
    }
}

.search-form__logo a {
    display: block;
}

.search-form__logo img {
    width: 100%;
}

.search-form__btns {
    margin-left: auto;
    -webkit-flex-grow: 1000;
    -ms-flex-positive: 1000;
    flex-grow: 1000;
    text-align: right;
}

@media screen and (min-width: 1024px) {
    .search-form__btns {
        margin-left: 20px;
    }
}

.search-form__btn {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
}

@media screen and (min-width: 768px) {
    .search-form__btn {
        margin-left: 30px;
    }
}

.search-form__btn-close {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .search-form__btn-close {
        height: 21px;
        width: 21px;
    }
}

.search-form__inner {
    padding: 0 0 60px;
    max-height: 100vh;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .search-form__inner {
        padding: 130px 0 80px;
    }
}

@media screen and (max-height: 400px) {
    .search-form__inner {
        padding: 30px 0 60px;
    }

    .search-open .search-form__inner {
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }
}

.search-form form {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .search-form__content {
        padding-left: 65px;
    }

    .search-form__content:first-child {
        margin-top: 40px;
    }
}

@media screen and (min-width: 1024px) {
    .search-form__content {
        padding-left: 90px;
    }

    .search-form__content:first-child {
        margin-top: 60px;
    }
}

.search-form__content ul {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 2;
}

.search-form__heading {
    color: #01194b;
    color: rgba(0, 0, 0, 0.4);
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.52px;
    line-height: 2.07692;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .search-form {
        padding: 0 0 40px;
    }
}

body.search-open .search-form {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.search-form__input {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 36px;
    letter-spacing: -1.44px;
    line-height: 2.22222;
    background: transparent;
    color: #fff;
    padding: 0;
    border: none;
    outline: none;
    width: 100%;
}

.search-form__input::-webkit-input-placeholder {
    color: #000000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.search-form__input::-moz-placeholder {
    color: #000000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.search-form__input:-moz-placeholder {
    color: #000000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.search-form__input:-ms-input-placeholder {
    color: #000000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.search-form__input:focus::-webkit-input-placeholder {
    color: #000000;
    display: none;
    transition: opacity 0.3s ease;
}

.search-form__input:focus::-moz-placeholder {
    color: #000000;
    display: none;
    transition: opacity 0.3s ease;
}

.search-form__input:focus:-moz-placeholder {
    color: #000000;
    display: none;
    transition: opacity 0.3s ease;
}

.search-form__input:focus:-ms-input-placeholder {
    color: #000000;
    display: none;
    transition: opacity 0.3s ease;
}

.search-form__input::-ms-clear {
    display: none;
}

.search-form__input__wrap {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (min-width: 768px) {
    .search-form__input {
        font-size: 60px;
        letter-spacing: -2.4px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 1024px) {
    .search-form__input {
        font-size: 80px;
        letter-spacing: -3.2px;
        line-height: 1;
    }
}

.search-form__submit {
    font-size: 29px;
    letter-spacing: 0.029px;
    line-height: 4.31034%;
    top: 0.07em;
}

.search-form__submit__wrap {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    margin-right: 20px;
}

@media screen and (min-width: 768px) {
    .search-form__submit {
        font-size: 45px;
        letter-spacing: 0.045px;
        line-height: 2.77778%;
    }
}

@media screen and (min-width: 1024px) {
    .search-form__submit {
        font-size: 60px;
        letter-spacing: 0.06px;
        line-height: 2.08333%;
    }

    .search-form__submit__wrap {
        margin-right: 30px;
    }
}

.page-search .search-form {
    position: static !important;
    top: 0 !important;
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    visibility: visible;
    z-index: 1;
    background: #0B563D;
}

.page-search .search-form__logo, .page-search .search-form__btns {
    visibility: hidden;
}

.page-search .search-form__content {
    margin-top: 0;
}

@media screen and (min-width: 768px) {
    .page-help .search-form__content:first-child {
        margin-top: 40px;
    }
}

@media screen and (min-width: 1024px) {
    .page-help .search-form__content:first-child {
        margin-top: 60px;
    }
}

.help-tabs {
    background: #002466;
    padding: 60px 0;
    color: #fff;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    overflow: hidden;
}

.help-tabs p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .help-tabs {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.help-tabs__title {
    color: #fff;
    text-align: center;
}

.help-tabs__nav {
    margin: 0 auto;
    width: 50%;
    max-width: 200px;
    overflow: visible;
}

.help-tabs__nav ul {
    text-align: center;
    white-space: nowrap;
    padding: 30px 0;
}

.help-tabs__nav li {
    display: inline-block;
}

.help-tabs__nav a {
    color: #fff;
    padding: 0 20px;
    line-height: 30px;
    border-radius: 15px;
    text-transform: uppercase;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    display: inline-block;
    margin-right: 5px;
}

.help-tabs__nav a.active {
    background: #fff;
    color: #002466;
}

.help-tabs__nav a.active:hover {
    text-decoration: none;
    cursor: default;
}

.help-tabs__nav a.active:after {
    content: "";
    border: 10px solid transparent;
    border-top: 10px solid #fff;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    margin-left: -10px;
}

.help-tabs__eyebrow {
    color: #fff;
    opacity: 0.8;
    margin-bottom: 20px;
}

.help-tabs__content {
    padding: 30px 0 0;
    display: none;
}

.help-tabs__content:first-child {
    display: block;
}

.help-tabs__content li a {
    font-size: 22px;
    letter-spacing: 0.44px;
    line-height: 1.63636;
}

.help-tabs__content li a .miniArrow:after {
    display: block;
    font-family: 'icomoon';
    content: "\e905";
    font-style: normal;
    font-weight: normal;
}

.help-tabs__content li a .miniArrow:after {
    font-size: 12px;
    display: inline-block;
    margin-left: 10px;
    opacity: 0.5;
}

.help-tabs__content li a .miniArrow:hover:after {
    opacity: 1;
}

.help-tabs__column {
    margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .help-tabs__nav {
        max-width: none;
    }

    .help-tabs .swiper-wrapper {
        text-align: center;
        display: block;
    }

    .help-tabs .swiper-slide {
        display: inline-block;
        width: auto !important;
    }
}

@media screen and (min-width: 1024px) {
    .help-tabs__content__inner {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .help-tabs__column {
        float: left;
        width: 33.3%;
    }
}

.hero {
    box-sizing: inherit;
    padding: 87px 0;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .hero {
        padding: 170px 0 127px;
    }
}

@media screen and (max-width: 767px) {
    .hero--reduce-padding {
        padding: 110px 0 56px;
    }
}

@media screen and (min-width: 768px) {
    .hero--reduce-padding {
        padding-bottom: 100px;
    }
}

@media screen and (min-width: 1024px) {
    .hero--reduce-padding {
        padding-bottom: 170px;
    }
}

.hero--clear-padding-bottom {
    padding: 110px 0 0px;
}

@media screen and (min-width: 768px) {
    .hero--clear-padding-bottom {
        padding-bottom: 100px;
    }
}

@media screen and (min-width: 1024px) {
    .hero--clear-padding-bottom {
        padding-bottom: 170px;
    }
}

.hero_inner {
    float: none;
    margin-left: auto;
    margin-right: auto;
    min-width: 250px;
    position: relative;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .hero_inner {
        float: none;
    }
}

.hero_content-wrapper {
    max-width: 1024px;
    margin: 0 auto;
}

.hero_top {
    padding-top: 15px;
}

.hero_top::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (min-width: 768px) {
    .hero_top {
        padding-top: 12px;
    }
}

.hero_arrow {
    display: none;
}

@media screen and (min-width: 768px) {
    .hero_arrow {
        top: 0px;
        left: 50%;
        display: block;
        position: absolute;
        width: 26px;
        margin-left: -12px;
        font-size: 18px;
        z-index: 3000;
        height: 80px;
        background-color: #ffffff;
    }

    .hero_arrow:before {
        display: block;
        font-family: 'icomoon';
        content: "\e900";
        font-style: normal;
        font-weight: normal;
        -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .hero_arrow:before {
        top: 12px;
        margin-left: -10px;
        position: absolute;
        left: 50%;
    }
}

.hero_breadcrumbs {
    display: none;
    padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .hero_breadcrumbs {
        display: block;
        margin: 0px auto;
        padding-bottom: 15px;
    }
}

.hero_breadcrumbs > ul {
    display: inline-block;
}

.hero_date {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    letter-spacing: -0.24px;
    line-height: 1;
    color: #ffffff;
    margin-top: 40px;
}

@media screen and (min-width: 768px) {
    .hero_date {
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: 1;
        margin-top: 50px;
    }
}

.hero_detail {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #ffffff;
    font-size: 22px;
    margin-top: 30px;
}

.hero__cta {
    text-align: center;
    padding-top: 50px;
}

.hero .eyebrow {
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .hero .eyebrow {
        margin-bottom: 30px;
    }
}

.inpage-search-form {
    background: #0B563D;
    color: #fff;
    width: 100%;
}

.inpage-search-form__inner {
    padding: 20px 0 20px;
    max-height: 100vh;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .inpage-search-form__inner {
        padding: 80px 0 10px;
    }
}

@media screen and (max-height: 400px) {
    .inpage-search-form__inner {
        padding: 30px 0 60px;
    }
}

.inpage-search-form form {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .inpage-search-form__content {
        margin-top: 20px;
        padding-left: 65px;
    }
}

@media screen and (min-width: 1024px) {
    .inpage-search-form__content {
        margin-top: 30px;
        padding-left: 90px;
    }
}

.inpage-search-form__content ul {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 2;
}

.inpage-search-form__heading {
    color: #01194b;
    color: rgba(0, 0, 0, 0.4);
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.52px;
    line-height: 2.07692;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .inpage-search-form {
        padding: 0 0 40px;
    }
}

.inpage-search-form__input {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 36px;
    letter-spacing: -1.44px;
    line-height: 2.22222;
    background: transparent;
    color: #fff;
    padding: 0;
    border: none;
    outline: none;
    width: 100%;
}

.inpage-search-form__input::-webkit-input-placeholder {
    color: #000000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.inpage-search-form__input::-moz-placeholder {
    color: #000000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.inpage-search-form__input:-moz-placeholder {
    color: #000000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.inpage-search-form__input:-ms-input-placeholder {
    color: #000000;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.inpage-search-form__input:focus::-webkit-input-placeholder {
    color: #000000;
    display: none;
    transition: opacity 0.3s ease;
}

.inpage-search-form__input:focus::-moz-placeholder {
    color: #000000;
    display: none;
    transition: opacity 0.3s ease;
}

.inpage-search-form__input:focus:-moz-placeholder {
    color: #000000;
    display: none;
    transition: opacity 0.3s ease;
}

.inpage-search-form__input:focus:-ms-input-placeholder {
    color: #000000;
    display: none;
    transition: opacity 0.3s ease;
}

.inpage-search-form__input::-ms-clear {
    display: none;
}

.inpage-search-form__input__wrap {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (min-width: 768px) {
    .inpage-search-form__input {
        font-size: 60px;
        letter-spacing: -2.4px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 1024px) {
    .inpage-search-form__input {
        font-size: 80px;
        letter-spacing: -3.2px;
        line-height: 1;
    }
}

.inpage-search-form__submit {
    font-size: 29px;
    letter-spacing: 0.029px;
    line-height: 4.31034%;
    top: 0.07em;
}

.inpage-search-form__submit__wrap {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    margin-right: 20px;
}

@media screen and (min-width: 768px) {
    .inpage-search-form__submit {
        font-size: 45px;
        letter-spacing: 0.045px;
        line-height: 2.77778%;
    }
}

@media screen and (min-width: 1024px) {
    .inpage-search-form__submit {
        font-size: 60px;
        letter-spacing: 0.06px;
        line-height: 2.08333%;
    }

    .inpage-search-form__submit__wrap {
        margin-right: 30px;
    }
}

.localisation {
    background: #000000;
    color: #fff;
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    transition: all .4s ease-in-out;
    z-index: 999;
}

.localisation__header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 15px;
}

@media screen and (min-width: 768px) {
    .localisation__header {
        padding: 25px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .localisation__header {
        padding: 23px 30px;
    }
}

.localisation__logo {
    max-width: 60px;
}

@media screen and (min-width: 768px) {
    .localisation__logo {
        max-width: 109px;
    }
}

.localisation__logo a {
    display: block;
}

.localisation__logo img {
    width: 100%;
}

.localisation__btns {
    margin-left: auto;
    -webkit-flex-grow: 1000;
    -ms-flex-positive: 1000;
    flex-grow: 1000;
    text-align: right;
}

@media screen and (min-width: 1024px) {
    .localisation__btns {
        margin-left: 20px;
    }
}

.localisation__btn {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
}

@media screen and (min-width: 768px) {
    .localisation__btn {
        margin-left: 30px;
    }
}

.localisation__btn-close {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .localisation__btn-close {
        height: 21px;
        width: 21px;
    }
}

.localisation__inner {
    padding-top: 60px;
    padding-bottom: 60px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.localisation__inner::after {
    clear: both;
    content: "";
    display: table;
}

.localisation__content {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .localisation__content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%;
        margin-left: 17.05961%;
    }

    .localisation__content:last-child {
        margin-right: 0;
    }
}

@media screen and (min-width: 1024px) {
    .localisation__content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-left: 25.58941%;
    }

    .localisation__content:last-child {
        margin-right: 0;
    }
}

.localisation__content h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

.localisation__content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    margin-bottom: 30px;
}

.localisation__content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .localisation__content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.localisation__footer {
    background: #002466;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.localisation__footer p {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: white;
}

@media screen and (min-width: 768px) {
    .localisation__footer p {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.localisation__footer p a {
    text-decoration: underline;
}

.localisation__footer p a:hover {
    text-decoration: none;
}

body.localisation-open .localisation {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.list-content {
    font-size: 16px;
    padding: 30px;
}

@media screen and (min-width: 768px) {
    .list-content {
        padding: 50px 25px;
    }
}

@media screen and (max-width: 767px) {
    .list-content {
        padding: 40px 15px;
    }
}

.list-content_inner {
    max-width: 1370px;
    margin: auto;
}

.list-content_cta {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .list-content_cta {
        display: none;
    }
}

.list-content__heading h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .list-content__heading h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (min-width: 768px) {
    .list-content__heading h2 {
        margin-bottom: 35px;
    }
}

.outage-alert {
    background: #0152E8;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.outage-alert__header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 15px;
}

@media screen and (min-width: 768px) {
    .outage-alert__header {
        padding: 25px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .outage-alert__header {
        padding: 23px 30px;
    }
}

.outage-alert__btns {
    margin-left: auto;
    -webkit-flex-grow: 1000;
    -ms-flex-positive: 1000;
    flex-grow: 1000;
    text-align: right;
}

@media screen and (min-width: 1024px) {
    .outage-alert__btns {
        margin-left: 20px;
    }
}

.outage-alert__btn {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
}

@media screen and (min-width: 768px) {
    .outage-alert__btn {
        margin-left: 30px;
    }
}

.outage-alert__btn-close {
    height: 17px;
    width: 24px;
    top: 1px;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .outage-alert__btn-close {
        height: 21px;
        width: 21px;
    }
}

.outage-alert h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.52px;
    line-height: 1.07692;
    color: #0E141A;
    color: #ffffff;
    margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .outage-alert h2 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

.outage-alert .btn-cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
    margin-bottom: 40px;
}

.outage-alert .btn-cta:hover, .outage-alert .btn-cta._hover,
a:hover .outage-alert .btn-cta {
    text-decoration: none;
}

.outage-alert .btn-cta:hover, .outage-alert .btn-cta._hover,
a:hover .outage-alert .btn-cta {
    background-color: rgba(255, 255, 255, 0.2);
}

@-webkit-keyframes planOverviewRise {
    from {
        -webkit-transform: translate(0, 30px);
        transform: translate(0, 30px);
    }
    to {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes planOverviewRise {
    from {
        -webkit-transform: translate(0, 30px);
        transform: translate(0, 30px);
    }
    to {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.plan-overview .btn-cta__wrapper {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 40px;
}

.plan-overview_location-input {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.15);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 6px 20px 6px 0;
    margin-bottom: 32px;
}

.plan-overview_location-input input {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1;
    outline: none;
    width: 100%;
}

.plan-overview_location-input input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
}

.plan-overview_location-input input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
}

.plan-overview_location-input input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
}

.plan-overview_location-input input:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .plan-overview_location-input {
        width: 520px;
        margin: 0 auto 64px auto;
    }
}

@media screen and (min-width: 768px) {
    .plan-overview__wrapper {
        -webkit-transform: translate(0, 30px);
        -ms-transform: translate(0, 30px);
        transform: translate(0, 30px);
        -webkit-animation: planOverviewRise 1.6s cubic-bezier(0.19, 1, 0.22, 1);
        animation: planOverviewRise 1.6s cubic-bezier(0.19, 1, 0.22, 1);
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
}

.plan-overview_rates {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.plan-overview_rates::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (max-width: 767px) {
    .plan-overview_rates {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 768px) {
    .plan-overview_rates {
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        -ms-grid-row-align: flex-end;
        align-items: flex-end;
    }
}

.plan-overview_rate {
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
    float: left;
    padding: 35px 20px;
    text-align: center;
    width: 50%;
}

.plan-overview_rate .eyebrow {
    color: #667790;
}

.plan-overview_rate .cost {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 40px;
    letter-spacing: -1.6px;
    line-height: 1;
    color: #000000;
    margin-bottom: 15px;
}

@media screen and (min-width: 1024px) {
    .plan-overview_rate .cost {
        font-size: 70px;
        letter-spacing: -2.8px;
        line-height: 1;
    }
}

.plan-overview_rate .unit {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.32px;
    line-height: 1;
    color: #000000;
    margin-bottom: 10px;
}

@media screen and (min-width: 1024px) {
    .plan-overview_rate .unit {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1;
    }
}

.plan-overview_rate .sub-text {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1;
    color: #000000;
    opacity: .5;
    margin-bottom: 10px;
}

@media screen and (min-width: 1024px) {
    .plan-overview_rate .sub-text {
        font-size: 14px;
        letter-spacing: 0px;
        line-height: 1;
    }
}

.plan-overview_rate .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.16667;
    color: #d3135a;
    text-transform: uppercase;
    margin-top: 30px;
    display: inline-block;
}

.plan-overview_rate:nth-of-type(1) {
    float: none;
    width: 100%;
}

.plan-overview_rate:nth-of-type(1) .cost {
    font-size: 50px;
    letter-spacing: -2px;
    line-height: 1;
}

@media screen and (min-width: 1024px) {
    .plan-overview_rate:nth-of-type(1) .cost {
        font-size: 100px;
        letter-spacing: -4px;
        line-height: 1;
    }
}

.plan-overview_rate:nth-of-type(1) .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
    display: block;
}

.plan-overview_rate:nth-of-type(1) .cta:hover, .plan-overview_rate:nth-of-type(1) .cta._hover,
a:hover .plan-overview_rate:nth-of-type(1) .cta {
    text-decoration: none;
}

.plan-overview_rate:nth-of-type(1) .cta:hover, .plan-overview_rate:nth-of-type(1) .cta._hover,
a:hover .plan-overview_rate:nth-of-type(1) .cta {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

@media screen and (min-width: 768px) {
    .plan-overview_rate:nth-of-type(1) .cta {
        display: inline-block;
    }
}

@media screen and (min-width: 1024px) {
    .plan-overview_rate:nth-of-type(1) .cta {
        padding: 18px 60px 19px;
    }
}

@media screen and (min-width: 768px) {
    .plan-overview_rate:nth-of-type(1) {
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        width: 40%;
        padding: 30px 0 20px;
    }
}

@media screen and (min-width: 1024px) {
    .plan-overview_rate:nth-of-type(1) {
        padding: 60px 0 50px;
    }
}

@media screen and (min-width: 768px) {
    .plan-overview_rate:nth-of-type(2) {
        border-right: 1px solid #dddddd;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
}

.plan-overview_rate:nth-of-type(3) {
    border-left: 1px solid #dddddd;
    margin-left: -1px;
    width: calc(50% + 1px);
}

@media screen and (min-width: 768px) {
    .plan-overview_rate:nth-of-type(3) {
        margin: 0;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
        width: 30%;
    }
}

@media screen and (min-width: 768px) {
    .plan-overview_rate {
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        padding: 40px 0;
        width: 30%;
    }

    .plan-overview_rate:before {
        content: '';
        display: block;
        position: absolute;
        background: rgba(0, 0, 0, 0.15);
        height: 6px;
        width: 100%;
        bottom: 100%;
        left: 0;
    }
}

@media screen and (min-width: 1024px) {
    .plan-overview_rate {
        padding: 80px 0;
    }
}

.plan-overview_details {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    background: #ffffff;
    padding: 40px 20px 20px;
    margin-bottom: 30px;
}

.plan-overview_details::after {
    clear: both;
    content: "";
    display: table;
}

.plan-overview_details p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-overview_details {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.plan-overview_details_container h3 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.52px;
    line-height: 1.07692;
    color: #0E141A;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .plan-overview_details_container h3 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

.plan-overview_details_container h3:before {
    color: #0B563D;
    margin-right: 0.6em;
}

.plan-overview_details_container p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.plan-overview_details_container p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-overview_details_container p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.plan-overview_details_container ul {
    margin: 0 0 40px 0;
}

.plan-overview_details_container h3 + ul,
.plan-overview_details_container p + ul {
    margin: 40px 0;
}

.plan-overview_details_container h3 {
    margin-bottom: 20px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .plan-overview_details_container h3 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.plan-overview_details_container li {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 1.11111;
    margin-bottom: 20px;
    position: relative;
    padding-left: 1.5em;
}

@media screen and (min-width: 1024px) {
    .plan-overview_details_container li {
        font-size: 24px;
        letter-spacing: -0.48px;
        line-height: 0.91667;
    }
}

.plan-overview_details_container li span {
    color: #0B563D;
    position: absolute;
    top: 0;
    left: 0;
}

.plan-overview_details_container li:last-of-type {
    margin: 0;
}

.plan-overview_details_container .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #002466;
    border-color: #002466;
    color: #ffffff;
    display: block;
    margin-top: 40px;
}

.plan-overview_details_container .cta:hover, .plan-overview_details_container .cta._hover,
a:hover .plan-overview_details_container .cta {
    text-decoration: none;
}

.plan-overview_details_container .cta:hover, .plan-overview_details_container .cta._hover,
a:hover .plan-overview_details_container .cta {
    background-color: #ffffff;
    border-color: #002466;
    color: #002466;
}

@media screen and (min-width: 768px) {
    .plan-overview_details_container .cta {
        display: inline-block;
    }
}

@media screen and (min-width: 768px) {
    .plan-overview_details_container {
        float: left;
        padding: 30px;
        width: 50%;
    }
}

@media screen and (min-width: 1024px) {
    .plan-overview_details_container {
        padding: 60px;
    }
}

@media screen and (min-width: 768px) {
    .plan-overview_details {
        padding: 20px;
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 1280px) {
    .plan-overview_details {
        padding: 20px 120px;
    }
}

.plan-overview_smallprint {
    background: #ffffff;
    padding: 20px;
    border-bottom: 1px solid #dddddd;
}

.plan-overview_smallprint p {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #999999;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .plan-overview_smallprint p {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.plan-overview_promo {
    background-color: #002466;
    background-image: linear-gradient(#002466 20%, #002466 90%);
    padding: 20px;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-overview_promo {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 40px 50px;
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 1024px) {
    .plan-overview_promo {
        padding: 40px 80px;
    }
}

@media screen and (min-width: 1280px) {
    .plan-overview_promo {
        padding: 40px 180px;
    }
}

.plan-overview_promo-text {
    padding-right: 40px;
}

.plan-overview_promo-text h2 {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 1.27778;
    color: #ffffff;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .plan-overview_promo-text h2 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1;
        margin-bottom: 12px;
    }
}

.plan-overview_promo-text p {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 1.375;
    color: #ffffff;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-overview_promo-text p {
        margin-bottom: 0;
    }
}

.plan-overview_promo-cta a {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
    display: block;
}

.plan-overview_promo-cta a:hover, .plan-overview_promo-cta a._hover,
a:hover .plan-overview_promo-cta a {
    text-decoration: none;
}

.plan-overview_promo-cta a:hover, .plan-overview_promo-cta a._hover,
a:hover .plan-overview_promo-cta a {
    background-color: rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 768px) {
    .plan-overview_promo-cta a {
        display: inline-block;
    }
}

.plan-overview .tooltip {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.plan-overview .tooltip__content {
    padding: 20px 30px 10px;
    width: 280px;
    box-shadow: 0px 0px 85px 21px rgba(0, 0, 0, 0.2);
    z-index: 0;
    background: #fff;
    text-align: center;
    display: none;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
}

.plan-overview .tooltip__content.active {
    display: block;
    z-index: 1;
    visibility: visible;
}

@media screen and (min-width: 768px) {
    .plan-overview .tooltip__content {
        position: absolute;
        left: 50%;
        margin-left: -140px;
        top: -20px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin-left: -140px;
    }
}

.plan-overview .tooltip__title {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.16667;
    color: #d3135a;
    text-transform: uppercase;
    margin-top: 30px;
    display: inline-block;
    margin-bottom: 30px;
}

.plan-overview .tooltip .btn-close {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #d3135a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.15);
}

.plan-overview .tooltip .btn-close:before {
    display: block;
    font-family: 'icomoon';
    content: "\e90d";
    font-style: normal;
    font-weight: normal;
}

.plan-overview .tooltip .btn-close:before {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.plan-overview .tooltip p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-overview .tooltip {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.plan-overview .tooltip p {
    font-size: 14px;
}

.plan-promo {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.plan-promo_inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media screen and (min-width: 1024px) {
    .plan-promo_inner {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.plan-promo_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .plan-promo_content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
    }

    .plan-promo_content:last-child {
        margin-right: 0;
    }
}

.plan-promo_content .eyebrow {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #667790;
    font-weight: 700;
    opacity: 1;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .plan-promo_content .eyebrow {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 768px) {
    .plan-promo_content .eyebrow {
        margin-bottom: 48px;
    }
}

.plan-promo_content h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .plan-promo_content h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.plan-promo_content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
    margin-bottom: 20px;
}

.plan-promo_content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-promo_content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.plan-promo_content .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    color: #ffffff;
    text-transform: uppercase;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin: 0 0 40px 0;
}

.plan-promo_content .cta:after {
    display: block;
    font-family: 'icomoon';
    content: "\e900";
    font-style: normal;
    font-weight: normal;
}

@media screen and (min-width: 1024px) {
    .plan-promo_content .cta {
        margin: 60px 0 0 0;
    }
}

.plan-promo_content .cta:after {
    display: inline;
    margin-left: 14px;
}

@media screen and (min-width: 1024px) {
    .plan-promo_plan-holder {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 57.35098%;
        margin-right: 0;
        margin-left: 8.5298%;
    }

    .plan-promo_plan-holder:last-child {
        margin-right: 0;
    }
}

.plan-promo_plan-list li {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 10px 0;
    transition: all 0.1s linear;
    box-shadow: 0 0 0 0 transparent;
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        margin: 5px 0;
    }
}

.plan-promo_plan-list li .price-holder {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    background: #002466;
    padding: 20px;
    transition: all 0.2s linear;
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .price-holder {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 50px;
    }
}

.plan-promo_plan-list li .price-holder .price {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .price-holder .price {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (max-width: 767px) {
    .plan-promo_plan-list li .price-holder .price {
        margin-right: 8px;
    }
}

.plan-promo_plan-list li .price-holder .unit {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
}

.plan-promo_plan-list li .price-holder .unit p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .price-holder .unit {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .price-holder .unit {
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        letter-spacing: 0px;
        line-height: 1.66667;
        color: #0E141A;
        color: #ffffff;
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .plan-promo_plan-list li .price-holder .unit {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.plan-promo_plan-list li .desc-holder {
    background: #ffffff;
    padding: 20px;
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .desc-holder {
        padding: 50px;
    }
}

.plan-promo_plan-list li .desc-holder .type {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #667790;
    font-weight: 700;
    opacity: 1;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .desc-holder .type {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .desc-holder .type {
        margin-bottom: 18px;
    }
}

.plan-promo_plan-list li .desc-holder h3 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    margin-bottom: 6px;
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .desc-holder h3 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .desc-holder h3 {
        margin-bottom: 18px;
    }
}

.plan-promo_plan-list li .desc-holder p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    margin-bottom: 12px;
}

.plan-promo_plan-list li .desc-holder p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .desc-holder p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .desc-holder p {
        margin-bottom: 18px;
    }
}

.plan-promo_plan-list li .desc-holder .ctas {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .plan-promo_plan-list li .desc-holder .ctas {
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media screen and (min-width: 768px) {
    .plan-promo_plan-list li .desc-holder .ctas {
        margin-top: 32px;
    }
}

.plan-promo_plan-list li .desc-holder .ctas .ctaPrimary {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #d3135a;
    color: #d3135a;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.plan-promo_plan-list li .desc-holder .ctas .ctaPrimary:hover, .plan-promo_plan-list li .desc-holder .ctas .ctaPrimary._hover,
a:hover .plan-promo_plan-list li .desc-holder .ctas .ctaPrimary {
    text-decoration: none;
}

.plan-promo_plan-list li .desc-holder .ctas .ctaPrimary:hover, .plan-promo_plan-list li .desc-holder .ctas .ctaPrimary._hover,
a:hover .plan-promo_plan-list li .desc-holder .ctas .ctaPrimary {
    background-color: rgba(211, 19, 89, 0.2);
}

@media screen and (max-width: 767px) {
    .plan-promo_plan-list li .desc-holder .ctas .ctaPrimary {
        -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
        align-self: stretch;
    }
}

.plan-promo_plan-list li .desc-holder .ctas .ctaSecondary {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    color: #d3135a;
    display: inline-block;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 13px 40px 14px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .plan-promo_plan-list li .desc-holder .ctas .ctaSecondary {
        display: block;
    }
}

.plan-promo_plan-list li:hover {
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.17);
    -webkit-transform: scale(1.075);
    -ms-transform: scale(1.075);
    transform: scale(1.075);
    position: relative;
    z-index: 1;
}

.plan-promo_terms {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: offblack;
    margin-top: 24px;
    opacity: 0.6;
    text-align: right;
}

@media screen and (min-width: 768px) {
    .plan-promo_terms {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

@media screen and (max-width: 767px) {
    .plan-promo_terms {
        margin-top: 12px;
        text-align: center;
    }
}

.plan-promo--sky {
    background: #002466;
}

.plan-promo--offwhite {
    background: #f4f4f4;
}

.plan-promo--offwhite .plan-promo_content h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .plan-promo--offwhite .plan-promo_content h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.plan-promo--offwhite .plan-promo_content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #0E141A;
}

.plan-promo--offwhite .plan-promo_content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .plan-promo--offwhite .plan-promo_content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.plan-promo--offwhite .plan-promo_content .cta {
    color: #0E141A;
}

.points-map {
    background: #ffffff;
    overflow: hidden;
    margin-top: 80px;
}

.points-map__wrap {
    clear: both;
    display: none;
}

@media screen and (min-width: 1024px) {
    .points-map__wrap {
        display: block;
    }
}

.points-map__google-map-container {
    width: 100%;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: all 0.4s ease-in-out;
}

@media screen and (min-width: 900px) {
    .points-map__google-map-container {
        height: 640px;
    }
}

@media screen and (min-width: 1500px) {
    .points-map__google-map-container {
        height: 1100px;
        max-height: 80vh;
    }
}

.points-map__google-map {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
}

.points-map__heading {
    text-align: center;
    margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
    .points-map__heading {
        padding: 0;
    }
}

.points-map__input {
    margin-bottom: 20px;
}

.points-map__input:before {
    display: block;
    font-family: 'icomoon';
    content: "\e91a";
    font-style: normal;
    font-weight: normal;
}

@media screen and (min-width: 768px) {
    .points-map__input {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-right: 0;
        margin-left: 25.58941%;
        margin-bottom: 40px;
    }

    .points-map__input:last-child {
        margin-right: 0;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__input {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
        margin-right: 0;
        margin-left: 34.11922%;
        margin-bottom: 40px;
    }

    .points-map__input:last-child {
        margin-right: 0;
    }
}

.points-map__input:before {
    color: #999999;
    font-size: 18px;
    position: absolute;
    left: 29px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
    .points-map__input:before {
        font-size: 20px;
        left: 39px;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__input:before {
        left: 44px;
    }
}

.points-map__input input {
    padding-left: 39px;
    padding-right: 39px;
}

@media screen and (min-width: 768px) {
    .points-map__input input {
        padding-left: 44px;
        padding-right: 44px;
    }
}

.points-map__input .geolocate {
    color: #d3135a;
    font-size: 20px;
    position: absolute;
    right: 29px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.points-map__input .geolocate:before {
    display: block;
    font-family: 'icomoon';
    content: "\e947";
    font-style: normal;
    font-weight: normal;
}

@media screen and (min-width: 768px) {
    .points-map__input .geolocate {
        font-size: 24px;
        right: 39px;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__input .geolocate {
        right: 44px;
    }
}

.points-map__input .geolocate.locating {
    position: absolute;
    display: inline-block;
    width: 5em;
    height: 5em;
    margin: -9px 0 0;
    font-size: 4px;
    text-indent: 999em;
    overflow: hidden;
    -webkit-animation: spinner 1s infinite steps(8);
    animation: spinner 1s infinite steps(8);
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.points-map__input .geolocate.locating span {
    position: static;
}

.points-map__input .geolocate.locating:before, .points-map__input .geolocate.locating:after,
.points-map__input .geolocate.locating > span:before,
.points-map__input .geolocate.locating > span:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 2.25em;
    /* (container width - part width)/2  */
    width: .5em;
    height: 1.5em;
    border-radius: .2em;
    background: #eee;
    box-shadow: 0 3.5em #eee;
    /* container height - part height */
    -webkit-transform-origin: 50% 2.5em;
    -ms-transform-origin: 50% 2.5em;
    transform-origin: 50% 2.5em;
    /* container height / 2 */
}

.points-map__input .geolocate.locating:before {
    background: #555;
}

.points-map__input .geolocate.locating:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #777;
}

.points-map__input .geolocate.locating > span:before {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    background: #999;
}

.points-map__input .geolocate.locating > span:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #bbb;
}

.points-map__cta {
    color: #000;
}

.points-map__cta__wrap {
    text-align: center;
    margin-top: 40px;
}

.points-map__card {
    background: #f4f4f4;
    margin: 0 15px;
}

@media screen and (min-width: 1024px) {
    .points-map__card {
        background: #ffffff;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 380px;
        z-index: 1;
        -webkit-transform: translate(-110%, 0);
        -ms-transform: translate(-110%, 0);
        transform: translate(-110%, 0);
        transition: -webkit-transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
        margin: 0;
        box-shadow: 5px 0px 0px 0px rgba(130, 130, 130, 0.1);
    }

    .points-map__card__inner {
        margin-top: 0;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__card__inner {
        display: none;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.points-map__card__header {
    background: #002466;
    padding: 20px 15px;
}

@media screen and (min-width: 768px) {
    .points-map__card__header {
        padding: 30px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__card__header {
        padding: 40px 40px;
    }
}

.points-map__card__header h3 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    color: #ffffff;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .points-map__card__header h3 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__card__header h3 {
        text-align: left;
    }
}

.points-map__card__content {
    text-align: left;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.71429;
    padding: 30px 15px;
}

@media screen and (min-width: 768px) {
    .points-map__card__content {
        padding: 30px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__card__content {
        padding: 50px 40px;
    }
}

.points-map__card__content .distance {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
    text-transform: none;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .points-map__card__content .distance {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__card__content .distance {
        text-align: left;
    }
}

.points-map__card__content h4 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    margin-bottom: 24px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .points-map__card__content h4 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__card__content h4 {
        margin-bottom: 30px;
        text-align: left;
    }
}

.points-map__card__content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    margin-bottom: 30px;
}

.points-map__card__content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .points-map__card__content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__card__content p {
        margin-bottom: 60px;
    }
}

.points-map__card__content .opening {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
    margin-bottom: 6px;
    text-align: left;
}

@media screen and (min-width: 768px) {
    .points-map__card__content .opening {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

.points-map__card__content ul {
    margin-bottom: 20px;
}

.points-map__card__content li {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    margin-bottom: 10px;
}

.points-map__card__content li p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .points-map__card__content li {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.points-map__card__content a {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    text-transform: uppercase;
    color: #d3135a;
}

.points-map__card__content a:hover {
    text-decoration: underline;
}

.points-map__card .btn-close {
    display: none;
    background: #d3135a;
    color: #fff;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 55px;
    border-radius: 50%;
    font-size: 20px;
    text-indent: -3px;
    box-shadow: 5px 0px 0px 0px rgba(130, 130, 130, 0.3);
    position: absolute;
    right: 0;
    top: 50%;
    margin-right: -25px;
    margin-top: -25px;
}

@media screen and (min-width: 1024px) {
    .points-map__card .btn-close {
        display: block;
    }
}

.points-map.cardVisible .points-map__card {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

@media screen and (min-width: 1024px) {
    .points-map.offsetMap .points-map__google-map-container {
        -webkit-transform: translate(200px, 0);
        -ms-transform: translate(200px, 0);
        transform: translate(200px, 0);
    }
}

.points-map__count {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    clear: both;
    text-align: center;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .points-map__count {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 1024px) {
    .points-map__count {
        display: none;
    }
}

.points-map__carousel {
    clear: both;
    display: block;
    overflow: hidden;
    display: block;
    transition: all 1s ease;
    padding-bottom: 60px;
}

@media screen and (min-width: 1024px) {
    .points-map__carousel {
        display: none;
    }
}

.points-map__carousel .slick-track {
    margin: auto;
}

.points-map__carousel .slick-slide {
    outline: none;
}

.points-map__carousel .slick-slider {
    margin-bottom: 30px;
}

.points-map__carousel .points-map__card {
    display: block;
    float: left;
    max-width: none;
}

.product-grid {
    padding: 50px 0 0;
    color: #0E141A;
}

.product-grid__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
    margin: 70px 0 30px 0;
}

@media screen and (min-width: 768px) {
    .product-grid__title {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.product-grid:first-child {
    padding-top: 30px;
}

@media screen and (min-width: 768px) {
    .product-grid:first-child {
        padding-top: 70px;
    }
}

@media screen and (min-width: 1024px) {
    .product-grid:first-child {
        padding-top: 110px;
    }
}

.page-article .product-grid {
    background: #f4f4f4;
}

.product-grid header {
    text-align: center;
    padding: 0 15px;
}

.product-grid header p {
    margin: 10px 0;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: 0px;
    line-height: 1.27273;
    color: #999999;
}

.product-grid__products {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

@media screen and (min-width: 768px) {
    .product-grid__products:after {
        content: "";
        -webkit-flex: auto;
        -ms-flex: auto;
        flex: auto;
    }
}

.product-grid__product {
    margin: 0;
    max-width: 370px;
    padding: 15px;
}

@media screen and (min-width: 768px) {
    .product-grid__product {
        max-width: none;
        width: calc(50%);
    }
}

@media screen and (min-width: 1024px) {
    .product-grid__product {
        width: calc(100% / 3);
    }
}

@media screen and (min-width: 768px) {
    .product-grid__product--large {
        width: calc(100%);
        max-width: none;
    }
}

@media screen and (min-width: 1024px) {
    .product-grid__product--large {
        width: calc(200% / 3);
    }
}

.product-grid__carousel {
    display: block;
    overflow: hidden;
    display: block;
    transition: all 1s ease;
    padding-bottom: 60px;
}

.product-grid__carousel--loading {
    display: none;
    visibility: hidden;
}

.product-grid__carousel .slick-track {
    margin: auto;
}

.product-grid__carousel .slick-slide {
    outline: none;
}

.product-grid__carousel .slick-slider {
    margin-bottom: 30px;
}

.product-grid__carousel .product-grid__product {
    display: block;
    float: left;
    max-width: none;
}

.product-hero {
    box-sizing: inherit;
    padding: 90px 0 170px;
    width: 100%;
    margin-bottom: -170px;
}

.product-hero_title {
    margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .product-hero {
        padding: 155px 0 270px;
        margin-bottom: -270px;
    }
}

.product-hero_inner {
    float: left;
    display: block;
    width: 76.76824%;
    float: none;
    margin-left: auto;
    margin-right: auto;
    min-width: 250px;
    position: relative;
    text-align: center;
}

.product-hero_inner:last-child {
    width: 74.41059%;
}

@media screen and (min-width: 768px) {
    .product-hero_inner {
        float: left;
        display: block;
        width: 85.29804%;
        float: none;
    }

    .product-hero_inner:last-child {
        width: 82.94039%;
    }
}

.product-hero_plan-icon {
    font-size: 16px;
    letter-spacing: 0.64px;
    line-height: 1;
    color: #ffffff;
    opacity: 0.5;
    margin-bottom: 10px;
    display: block;
}

@media screen and (min-width: 1024px) {
    .product-hero_plan-icon {
        font-size: 18px;
        letter-spacing: 0.72px;
        line-height: 1;
        margin-bottom: 15px;
    }
}

.product-hero_plan-title {
    color: #ffffff;
    opacity: 0.5;
}

.product-hero_detail {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #ffffff;
    font-size: 18px;
    margin-top: 10px;
}

@media screen and (min-width: 768px) {
    .product-hero_detail {
        font-size: 20px;
        margin-top: 12px;
    }
}

@media screen and (min-width: 1024px) {
    .product-hero_detail {
        font-size: 24px;
        margin-top: 16px;
    }
}

.color-scheme--blue .product-hero {
    background: #002466;
    background: #2d98ed;
    background: linear-gradient(0deg, #2d98ed 29%, #002466 71%);
}

.quote-builder-overlay {
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    transition: all .4s ease-in-out;
    z-index: 999;
}

.quote-builder-overlay.active {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

@media screen and (min-width: 1024px) {
    .quote-builder-overlay .quote-builder__app {
        height: 100vh;
    }
}

.quote-builder__header {
    z-index: 1;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.quote-builder__header .btn-close {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .quote-builder__header .btn-close {
        height: 21px;
        width: 21px;
    }
}

.quote-builder {
    overflow: hidden;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.quote-builder [v-cloak] {
    display: none;
}

.quote-builder p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .quote-builder {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.quote-builder__app {
    color: #fff;
    height: 100vh;
	display:block;
    transition: background 0.4s;
}

@media screen and (min-width: 1024px) {
    .quote-builder__app {
        height: calc(100vh - 40px);
    }
}

.quote-builder section, .quote-builder #quoteBuilderForm, .quote-builder__question {
    display:block;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
}

.quote-builder__content {
    z-index: 1;
}

@media screen and (min-width: 1024px) {
    .quote-builder__content {
        position: static;
        width: 50%;
        max-width: 600px;
    }
}

.quote-builder__question .container,
.quote-builder__error .container {
    padding: 0 15px;
    padding-top: 60px !important;
    padding-bottom: 90px !important;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

@media screen and (min-width: 768px) {
    .quote-builder__question .container,
    .quote-builder__error .container {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder__question .container,
    .quote-builder__error .container {
        padding: 0 30px;
    }
}

@media screen and (max-width: 1023px) {
    .quote-builder__question .container,
    .quote-builder__error .container {
        height: 100%;
    }

    .quote-builder__question .container .quote-builder__title,
    .quote-builder__error .container .quote-builder__title {
        text-align: center;
    }
}

@media screen and (min-width: 768px) {
    .quote-builder__question .container,
    .quote-builder__error .container {
        padding-top: 100px;
    }

    .quote-builder__question .container:after,
    .quote-builder__error .container:after {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder__question .container,
    .quote-builder__error .container {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding-top: 0;
        padding-bottom: 80px;
        min-height: 640px;
    }
}

.quote-builder__error .container .quote-builder__title {
    text-align: left !important;
}

@media screen and (min-width: 1024px) {
    .quote-builder__intro .quote-builder__content {
        width: 100%;
        max-width: 960px;
    }
}

@media screen and (min-width: 768px) {
    .quote-builder__address-form .input-wrapper {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}

.quote-builder__address-form .input-wrapper input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 1;
    outline: none;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 11px 0;
    transition: all 0.8s linear;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .quote-builder__address-form .input-wrapper input {
        font-size: 24px;
        letter-spacing: 0px;
        line-height: 1;
        margin-bottom: 0;
        width: 22em;
    }
}

.quote-builder__address-form .input-wrapper input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.8s linear;
}

.quote-builder__address-form .input-wrapper input::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.8s linear;
}

.quote-builder__address-form .input-wrapper input:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.8s linear;
}

.quote-builder__address-form .input-wrapper input:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.8s linear;
}

.quote-builder__address-form .input-wrapper input:invalid + .cta {
    background-color: transparent;
    border-color: transparent;
    color: #ffffff;
    padding: 13px 0 14px;
    cursor: auto;
}

.quote-builder__address-form .input-wrapper input[type=number]::-webkit-inner-spin-button, .quote-builder__address-form .input-wrapper input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quote-builder__address-form .input-wrapper .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
    transition: all 0.2s linear;
    min-width: 0;
    white-space: nowrap;
}

.quote-builder__address-form .input-wrapper .cta:hover, .quote-builder__address-form .input-wrapper .cta._hover,
a:hover .quote-builder__address-form .input-wrapper .cta {
    text-decoration: none;
}

.quote-builder__address-form .input-wrapper .cta:hover, .quote-builder__address-form .input-wrapper .cta._hover,
a:hover .quote-builder__address-form .input-wrapper .cta {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

.quote-builder__address-form .input-wrapper .cta:after {
    display: block;
    font-family: 'icomoon';
    content: "\e900";
    font-style: normal;
    font-weight: normal;
}

.quote-builder__address-form .input-wrapper .cta:after {
    display: inline;
    margin-left: 14px;
}

.quote-builder__address-form .input-wrapper .cta:disabled {
    visibility: visible;
}

.quote-builder__images img {
    max-width: 100%;
}

@media screen and (max-width: 374px) {
    .quote-builder__images img {
        display: block;
        margin: auto;
        max-width: 100px;
    }
}

.quote-builder__images__wrap {
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .quote-builder__images__wrap {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder__images__wrap {
        padding: 0 30px;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder__images {
        z-index: 0;
        height: 0;
        padding-top: 100%;
        width: 100% !important;
        max-width: none !important;
    }

    .quote-builder__images__wrap {
        display: block !important;
    }

    .quote-builder__images__image {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
    }

    .quote-builder__images__wrap {
        width: 50% !important;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder__images {
        padding-top: 0;
        max-width: 550px !important;
    }

    .quote-builder__images__image {
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        position: static;
    }

    .quote-builder__images img {
        position: absolute;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    .quote-builder__images__wrap {
        width: auto !important;
        margin: 0;
        position: absolute;
        right: 0;
        top: 50%;
        width: 50% !important;
    }
}

.question-type--range .quote-builder__images,
.question-type--text .quote-builder__images,
.question-type--number .quote-builder__images {
    display: block;
    width: 80%;
    max-width: 180px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .question-type--range .quote-builder__images,
    .question-type--text .quote-builder__images,
    .question-type--number .quote-builder__images {
        max-width: 400px;
    }
}

@media screen and (max-width: 1023px) {
    .quote-builder .question-type--radio .quote-builder__images__wrap {
        display: none;
    }

    .quote-builder .question-type--radio .swiper-container {
        width: 85%;
        margin: 0 auto;
        overflow: visible;
    }

    .quote-builder .question-type--radio .swiper-pagination {
        text-align: center;
        width: 100%;
    }

    .quote-builder .question-type--radio .swiper-pagination-bullet {
        margin: 0 7px;
        background: #fff;
        opacity: 0.3;
    }

    .quote-builder .question-type--radio .swiper-pagination-bullet-active {
        background: #fff;
        display: block;
    }

    .quote-builder .question-type--radio .form-row {
        text-align: center;
    }

    .quote-builder .question-type--radio .form-row input + label {
        padding: 0;
    }

    .quote-builder .question-type--radio .form-row input + label:before, .quote-builder .question-type--radio .form-row input + label:after {
        display: none;
    }

    .quote-builder .question-type--radio .radio-image {
        margin-bottom: 30px;
    }

    .quote-builder .question-type--radio .radio-image img {
        display: block;
        width: 80%;
        max-width: 180px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1023px) and (max-width: 374px) {
    .quote-builder .question-type--radio .radio-image img {
        max-width: 100px;
    }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
    .quote-builder .question-type--radio .radio-image img {
        max-width: 400px;
    }
}

@media screen and (max-width: 1023px) {
    .quote-builder .question-type--radio .radio-image .icon-tick {
        position: absolute;
        background: #fff;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        line-height: 33px;
        display: block;
        left: 50%;
        margin-left: -15px;
        bottom: -15px;
        font-size: 18px;
    }
}

@media screen and (max-width: 1023px) and (max-width: 374px) {
    .quote-builder .question-type--radio .radio-image .icon-tick {
        width: 20px;
        height: 20px;
        line-height: 23px;
        margin-left: -10px;
        bottom: -10px;
        font-size: 11px;
    }
}

@media screen and (min-width: 768px) {
    .quote-builder .question-type--radio .swiper-container {
        max-width: 520px;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder .question-type--radio .swiper-container {
        max-width: none;
    }

    .quote-builder .question-type--radio .swiper-wrapper {
        display: block;
    }

    .quote-builder .question-type--radio .swiper-pagination {
        display: none;
    }

    .quote-builder .question-type--radio .radio-image {
        display: none !important;
    }
}

@media screen and (max-width: 1023px) {
    .quote-builder__question .quote-builder__title {
        text-align: center;
    }
}

.quote-builder__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #fff;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .quote-builder__title {
        font-size: 60px;
        letter-spacing: -1.2px;
        line-height: 1.08333;
    }
}

.quote-builder .eyebrow {
    color: #fff;
}

@media screen and (max-width: 374px) {
    .quote-builder .eyebrow {
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder .eyebrow {
        display: block;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder .eyebrow {
        margin-bottom: 60px;
    }
}

.quote-builder .form-row {
    margin-bottom: 20px;
    text-align: center;
}

@media screen and (max-width: 374px) {
    .quote-builder .form-row {
        margin-bottom: 10px;
    }
}

.quote-builder .form-row input[type="text"],
.quote-builder .form-row input[type="number"],
.quote-builder .form-row input[type="email"],
.quote-builder .form-row .range-slider,
.quote-builder .form-row .range-slider__label {
    max-width: 350px;
}

.quote-builder .form-row input.radio + label,
.quote-builder .form-row input.radio:checked + label {
    font-size: 24px;
    letter-spacing: 0.24px;
    line-height: 1;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    text-align: left;
}

@media screen and (max-width: 1023px) {
    .quote-builder .form-row input.radio + label,
    .quote-builder .form-row input.radio:checked + label {
        text-align: center;
    }
}

.quote-builder .form-row .range-slider__label {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 40px;
    letter-spacing: 0.4px;
    line-height: 0.7;
    display: block;
    text-align: center;
    margin: 30px auto;
    height: 32px;
}

@media screen and (max-width: 374px) {
    .quote-builder .form-row .range-slider__label {
        font-size: 30px;
        letter-spacing: 0.3px;
        line-height: 0.93333;
        margin: 10px auto 0;
    }
}

.quote-builder .form-row .range-slider {
    margin: 0 auto;
}

@media screen and (min-width: 1024px) {
    .quote-builder .form-row {
        text-align: left;
    }

    .quote-builder .form-row .range-slider__label {
        margin: 30px 0;
    }

    .quote-builder .form-row .range-slider {
        margin: 0;
    }
}

.quote-builder .form-row .error {
    margin-top: 10px;
    margin-bottom: 0;
}

.quote-builder__fields:last-child .form-row {
    margin: 0;
}

.quote-builder button:disabled {
    visibility: hidden;
}

.quote-builder .btn-cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
    transition: background-color 100ms linear;
    padding-left: 0;
    padding-right: 0;
    white-space: nowrap;
    border-color: rgba(255, 255, 255, 0.5);
}

.quote-builder .btn-cta:hover, .quote-builder .btn-cta._hover,
a:hover .quote-builder .btn-cta {
    text-decoration: none;
}

.quote-builder .btn-cta:hover, .quote-builder .btn-cta._hover,
a:hover .quote-builder .btn-cta {
    background-color: rgba(255, 255, 255, 0.2);
}

.quote-builder .btn-cta:hover {
    border-color: white;
    background: transparent;
}

.quote-builder .btn-next span {
    display: inline-block;
    margin-left: 5px;
}

.quote-builder .btn-next span:before {
    display: block;
    font-family: 'icomoon';
    content: "\e900";
    font-style: normal;
    font-weight: normal;
}

.quote-builder .btn-prev span {
    display: inline-block;
    margin-right: 5px;
}

.quote-builder .btn-prev span:before {
    display: block;
    font-family: 'icomoon';
    content: "\e900";
    font-style: normal;
    font-weight: normal;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.quote-builder__ui {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
}

.quote-builder__ui__progress {
    color: #0E141A;
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    width: 60px;
    text-align: center;
}

@media screen and (min-width: 1024px) {
    .quote-builder__ui__progress {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    .quote-builder__ui {
        width: 100%;
        background: #EFF2F7;
        z-index: 1;
    }

    .quote-builder__ui .btn-cta, .quote-builder__ui .btn-cta[style] {
        background: #fff;
        color: #0E141A !important;
        border: none;
        height: 60px;
        -webkit-flex: 1 1 0;
        -ms-flex: 1 1 0;
        flex: 1 1 0;
        min-width: 0 !important;
        padding: 0 !important;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder__ui {
        position: static;
    }
}

@media screen and (min-width: 1024px) {
    .quote-builder__ui {
        position: absolute;
        left: 30px;
        min-width: 350px;
    }
}

.quote-builder__ui .btn-next[style], .quote-builder__ui .btn-submit[style] {
    background: #fff;
}

.quote-builder__ui .btn-next[style]:hover, .quote-builder__ui .btn-submit[style]:hover {
    background: #fff;
}

.quote-builder input[type="text"]::-webkit-input-placeholder,
.quote-builder input[type="number"]
input[type="email"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.5);
}

.quote-builder input[type="text"]::-moz-placeholder,
.quote-builder input[type="number"]
input[type="email"]::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.5);
}

.quote-builder input[type="text"]:-ms-input-placeholder,
.quote-builder input[type="number"]
input[type="email"]:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 0.5);
}

.quote-builder input[type="text"]:-moz-placeholder,
.quote-builder input[type="number"]
input[type="email"]:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.5);
}

@media screen and (min-width: 1024px) {
    .quote-builder__error .container {
        min-height: 0;
    }

    .quote-builder__error .quote-builder__ui {
        position: static;
    }
}

.quote-builder .fade-transition {
    transition: opacity .4s ease;
    display: block;
}

.quote-builder .fade-enter, .quote-builder .fade-leave {
    display: none;
}

.quote-builder .image-fade-transition {
    transition: opacity .2s ease;
    display: block;
}

.quote-builder .image-fade-enter,
.quote-builder .image-fade-leave {
    display: none;
}

.quote-builder .image-fade-enter {
    z-index: 100;
    transition-delay: 0;
}

.quote-builder .image-fade-leave {
    transition-delay: .1s;
}

.quote-builder .pop-transition,
.quote-builder .pop-delay-transition {
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    display: block;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.quote-builder .pop-delay-transition {
    transition-delay: 0.4s;
}

.quote-builder .pop-enter,
.quote-builder .pop-delay-enter {
    display: none;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.quote-builder .pop-leave,
.quote-builder .pop-delay-leave {
    transition-delay: 0s;
    display: none;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.quote-builder .slideForward-transition,
.quote-builder .slideBack-transition {
    transition: all 0.4s;
    -webkit-transform: translateZ(1);
    transform: translateZ(1);
    transition-delay: 0.4s;
}

.quote-builder .slideForward-transition .quote-builder__content,
.quote-builder .slideBack-transition .quote-builder__content {
    display: block;
    transition: all 0.4s ease-in-out;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition-delay: 0.4s;
}

.quote-builder .slideForward-transition .quote-builder__images,
.quote-builder .slideBack-transition .quote-builder__images {
    transition: all 0.3s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition-delay: 0.4s;
}

.quote-builder .slideForward-enter .quote-builder__images,
.quote-builder .slideForward-leave .quote-builder__images,
.quote-builder .slideBack-enter .quote-builder__images,
.quote-builder .slideBack-leave .quote-builder__images {
    display: none;
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
}

.quote-builder .slideForward-leave .quote-builder__images,
.quote-builder .slideBack-leave .quote-builder__images {
    transition-delay: 0s;
}

.quote-builder .slideForward-enter {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.quote-builder .slideForward-enter .quote-builder__content {
    display: none;
    -webkit-transform: translate(2%, 0);
    -ms-transform: translate(2%, 0);
    transform: translate(2%, 0);
}

.quote-builder .slideForward-leave {
    transition-delay: 0s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.quote-builder .slideForward-leave .quote-builder__content {
    display: none;
    transition-delay: 0s;
    -webkit-transform: translate(-2%, 0);
    -ms-transform: translate(-2%, 0);
    transform: translate(-2%, 0);
}

.quote-builder .slideBack-enter {
    transition-delay: 0.4s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.quote-builder .slideBack-enter .quote-builder__content {
    display: none;
    transition-delay: .5;
    -webkit-transform: translate(-2%, 0);
    -ms-transform: translate(-2%, 0);
    transform: translate(-2%, 0);
}

.quote-builder .slideBack-leave {
    transition-delay: 0s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.quote-builder .slideBack-leave .quote-builder__content {
    display: none;
    transition-delay: 0s;
    -webkit-transform: translate(2%, 0);
    -ms-transform: translate(2%, 0);
    transform: translate(2%, 0);
}

@-webkit-keyframes rectangle1a {
    0% {
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }
    25% {
        -webkit-transform: translate(-6%, 0);
        transform: translate(-6%, 0);
    }
    100% {
        -webkit-transform: translate(100%, 0);
        transform: translate(100%, 0);
    }
}

@keyframes rectangle1a {
    0% {
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }
    25% {
        -webkit-transform: translate(-6%, 0);
        transform: translate(-6%, 0);
    }
    100% {
        -webkit-transform: translate(100%, 0);
        transform: translate(100%, 0);
    }
}

@-webkit-keyframes rectangle1b {
    0% {
        -webkit-transform: translate(-100%, 220px);
        transform: translate(-100%, 220px);
    }
    25% {
        -webkit-transform: translate(0, 220px);
        transform: translate(0, 220px);
    }
    100% {
        -webkit-transform: translate(100%, 220px);
        transform: translate(100%, 220px);
    }
}

@keyframes rectangle1b {
    0% {
        -webkit-transform: translate(-100%, 220px);
        transform: translate(-100%, 220px);
    }
    25% {
        -webkit-transform: translate(0, 220px);
        transform: translate(0, 220px);
    }
    100% {
        -webkit-transform: translate(100%, 220px);
        transform: translate(100%, 220px);
    }
}

@-webkit-keyframes rectangle1c {
    0% {
        -webkit-transform: translate(-100%, 440px);
        transform: translate(-100%, 440px);
    }
    25% {
        -webkit-transform: translate(-10%, 440px);
        transform: translate(-10%, 440px);
    }
    100% {
        -webkit-transform: translate(100%, 440px);
        transform: translate(100%, 440px);
    }
}

@keyframes rectangle1c {
    0% {
        -webkit-transform: translate(-100%, 440px);
        transform: translate(-100%, 440px);
    }
    25% {
        -webkit-transform: translate(-10%, 440px);
        transform: translate(-10%, 440px);
    }
    100% {
        -webkit-transform: translate(100%, 440px);
        transform: translate(100%, 440px);
    }
}

@-webkit-keyframes rectangle2a {
    0% {
        -webkit-transform: translate(-400%, 200px);
        transform: translate(-400%, 200px);
    }
    10% {
        -webkit-transform: translate(15%, 200px);
        transform: translate(15%, 200px);
    }
    100% {
        -webkit-transform: translate(500%, 200px);
        transform: translate(500%, 200px);
    }
}

@keyframes rectangle2a {
    0% {
        -webkit-transform: translate(-400%, 200px);
        transform: translate(-400%, 200px);
    }
    10% {
        -webkit-transform: translate(15%, 200px);
        transform: translate(15%, 200px);
    }
    100% {
        -webkit-transform: translate(500%, 200px);
        transform: translate(500%, 200px);
    }
}

@-webkit-keyframes rectangle2b {
    0% {
        -webkit-transform: rotate(270deg) translate(-200%, 380px);
        transform: rotate(270deg) translate(-200%, 380px);
    }
    25% {
        -webkit-transform: rotate(270deg) translate(10%, 380px);
        transform: rotate(270deg) translate(10%, 380px);
    }
    100% {
        -webkit-transform: rotate(270deg) translate(200%, 380px);
        transform: rotate(270deg) translate(200%, 380px);
    }
}

@keyframes rectangle2b {
    0% {
        -webkit-transform: rotate(270deg) translate(-200%, 380px);
        transform: rotate(270deg) translate(-200%, 380px);
    }
    25% {
        -webkit-transform: rotate(270deg) translate(10%, 380px);
        transform: rotate(270deg) translate(10%, 380px);
    }
    100% {
        -webkit-transform: rotate(270deg) translate(200%, 380px);
        transform: rotate(270deg) translate(200%, 380px);
    }
}

@-webkit-keyframes rectangle2c {
    0% {
        -webkit-transform: rotate(270deg) translate(-300%, 620px);
        transform: rotate(270deg) translate(-300%, 620px);
    }
    25% {
        -webkit-transform: rotate(270deg) translate(15%, 620px);
        transform: rotate(270deg) translate(15%, 620px);
    }
    100% {
        -webkit-transform: rotate(270deg) translate(300%, 620px);
        transform: rotate(270deg) translate(300%, 620px);
    }
}

@keyframes rectangle2c {
    0% {
        -webkit-transform: rotate(270deg) translate(-300%, 620px);
        transform: rotate(270deg) translate(-300%, 620px);
    }
    25% {
        -webkit-transform: rotate(270deg) translate(15%, 620px);
        transform: rotate(270deg) translate(15%, 620px);
    }
    100% {
        -webkit-transform: rotate(270deg) translate(300%, 620px);
        transform: rotate(270deg) translate(300%, 620px);
    }
}

@-webkit-keyframes ringa {
    0% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    25% {
        -webkit-transform: rotate(35deg);
        transform: rotate(35deg);
    }
    100% {
        -webkit-transform: rotate(-270deg);
        transform: rotate(-270deg);
    }
}

@keyframes ringa {
    0% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    25% {
        -webkit-transform: rotate(35deg);
        transform: rotate(35deg);
    }
    100% {
        -webkit-transform: rotate(-270deg);
        transform: rotate(-270deg);
    }
}

@-webkit-keyframes ringb {
    0% {
        -webkit-transform: rotate(160deg);
        transform: rotate(160deg);
    }
    25% {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    100% {
        -webkit-transform: rotate(-300deg);
        transform: rotate(-300deg);
    }
}

@keyframes ringb {
    0% {
        -webkit-transform: rotate(160deg);
        transform: rotate(160deg);
    }
    25% {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    100% {
        -webkit-transform: rotate(-300deg);
        transform: rotate(-300deg);
    }
}

@-webkit-keyframes ringc {
    0% {
        -webkit-transform: rotate(170deg);
        transform: rotate(170deg);
    }
    25% {
        -webkit-transform: rotate(40deg);
        transform: rotate(40deg);
    }
    100% {
        -webkit-transform: rotate(-280deg);
        transform: rotate(-280deg);
    }
}

@keyframes ringc {
    0% {
        -webkit-transform: rotate(170deg);
        transform: rotate(170deg);
    }
    25% {
        -webkit-transform: rotate(40deg);
        transform: rotate(40deg);
    }
    100% {
        -webkit-transform: rotate(-280deg);
        transform: rotate(-280deg);
    }
}

.quote-business {
    transition: all 0.8s linear;
    background: #fff;
    overflow: hidden;
}

.quote-business_svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
}

.quote-business_svg .svg {
    display: none;
}

.quote-business_svg .svg.rectangles1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-30%, -50%) scale(1.9) rotate(120deg);
    -ms-transform: translate(-30%, -50%) scale(1.9) rotate(120deg);
    transform: translate(-30%, -50%) scale(1.9) rotate(120deg);
}

.quote-business_svg .svg.rectangles1 svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.quote-business_svg .svg.rectangles1.animate .rect1a {
    -webkit-animation: rectangle1a 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: rectangle1a 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quote-business_svg .svg.rectangles1.animate .rect1b {
    -webkit-animation: rectangle1b 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: rectangle1b 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quote-business_svg .svg.rectangles1.animate .rect1c {
    -webkit-animation: rectangle1c 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: rectangle1c 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quote-business_svg .svg.rings {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-15%, -50%) scale(0.75);
    -ms-transform: translate(-15%, -50%) scale(0.75);
    transform: translate(-15%, -50%) scale(0.75);
}

.quote-business_svg .svg.rings svg {
    position: absolute;
    top: 0;
    left: 0;
}

.quote-business_svg .svg.rings.animate .ringa {
    -webkit-animation: ringa 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: ringa 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.quote-business_svg .svg.rings.animate .ringb {
    -webkit-animation: ringb 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: ringb 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.quote-business_svg .svg.rings.animate .ringc {
    -webkit-animation: ringc 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: ringc 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.quote-business_svg .svg.rectangles2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1.5) rotate(140deg);
    -ms-transform: translate(-50%, -50%) scale(1.5) rotate(140deg);
    transform: translate(-50%, -50%) scale(1.5) rotate(140deg);
}

.quote-business_svg .svg.rectangles2 svg {
    position: absolute;
    top: 0;
    left: 0;
}

.quote-business_svg .svg.rectangles2.animate .rect2a {
    -webkit-animation: rectangle2a 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: rectangle2a 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quote-business_svg .svg.rectangles2.animate .rect2b {
    -webkit-animation: rectangle2b 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: rectangle2b 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quote-business_svg .svg.rectangles2.animate .rect2c {
    -webkit-animation: rectangle2c 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: rectangle2c 12s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quote-business_header {
    min-height: 100vh;
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .quote-business_header {
        max-height: 1000px;
        min-height: 0;
        height: calc(100vh - 40px);
    }
}

.quote-business_header_inner {
    -webkit-flex: 0 0 0;
    -ms-flex: 0 0 0;
    flex: 0 0 0;
}

.quote-business_header_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media screen and (min-width: 1024px) {
    .quote-business_header_content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%;
    }

    .quote-business_header_content:last-child {
        margin-right: 0;
    }
}

.quote-business_header_content span {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    transition: all 0.8s linear;
}

@media screen and (min-width: 768px) {
    .quote-business_header_content span {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 768px) {
    .quote-business_header_content span {
        margin-bottom: 60px;
    }
}

.quote-business_header_content h1 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
    margin-bottom: 40px;
    transition: all 0.8s linear;
}

@media screen and (min-width: 768px) {
    .quote-business_header_content h1 {
        font-size: 60px;
        letter-spacing: -1.2px;
        line-height: 1.08333;
    }
}

@media screen and (min-width: 768px) {
    .quote-business_header_content h1 {
        margin-bottom: 50px;
    }
}

@media screen and (min-width: 768px) {
    .quote-business_header .input-holder {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}

.quote-business_header .input-holder input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    color: #0E141A;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 1;
    outline: none;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 11px 0;
    transition: all 0.8s linear;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .quote-business_header .input-holder input {
        font-size: 24px;
        letter-spacing: 0px;
        line-height: 1;
        margin-bottom: 0;
        width: 17em;
    }
}

.quote-business_header .input-holder input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #0E141A;
    opacity: 0.3;
    transition: all 0.8s linear;
}

.quote-business_header .input-holder input::-moz-placeholder {
    /* Firefox 19+ */
    color: #0E141A;
    opacity: 0.3;
    transition: all 0.8s linear;
}

.quote-business_header .input-holder input:-ms-input-placeholder {
    /* IE 10+ */
    color: #0E141A;
    opacity: 0.3;
    transition: all 0.8s linear;
}

.quote-business_header .input-holder input:-moz-placeholder {
    /* Firefox 18- */
    color: #0E141A;
    opacity: 0.3;
    transition: all 0.8s linear;
}

.quote-business_header .input-holder input:invalid + .cta {
    background-color: transparent;
    border-color: transparent;
    color: #002466;
    padding: 13px 0 14px;
    cursor: auto;
}

.quote-business_header .input-holder input[type=number]::-webkit-inner-spin-button, .quote-business_header .input-holder input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quote-business_header .input-holder .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
    transition: all 0.2s linear;
    min-width: 0;
    white-space: nowrap;
}

.quote-business_header .input-holder .cta:hover, .quote-business_header .input-holder .cta._hover,
a:hover .quote-business_header .input-holder .cta {
    text-decoration: none;
}

.quote-business_header .input-holder .cta:hover, .quote-business_header .input-holder .cta._hover,
a:hover .quote-business_header .input-holder .cta {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

.quote-business_header .input-holder .cta:after {
    display: block;
    font-family: 'icomoon';
    content: "\e900";
    font-style: normal;
    font-weight: normal;
}

.quote-business_header .input-holder .cta:after {
    display: inline;
    margin-left: 14px;
}

.quote-business_choose-plans {
    min-height: 100vh;
    display: none;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.quote-business_choose-plans_inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .quote-business_choose-plans_inner {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.quote-business_choose-plans_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .quote-business_choose-plans_content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
        padding-top: 10vh;
    }

    .quote-business_choose-plans_content:last-child {
        margin-right: 0;
    }
}

.quote-business_choose-plans_content h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_content h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.quote-business_choose-plans_content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
}

.quote-business_choose-plans_content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.quote-business_choose-plans_content .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    color: #ffffff;
    text-transform: uppercase;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin: 20px 0 40px 0;
}

@media screen and (min-width: 1024px) {
    .quote-business_choose-plans_content .cta {
        margin: 60px 0 0 0;
    }
}

@media screen and (min-width: 1024px) {
    .quote-business_choose-plans_plan-holder {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 57.35098%;
        margin-right: 0;
        margin-left: 8.5298%;
    }

    .quote-business_choose-plans_plan-holder:last-child {
        margin-right: 0;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.quote-business_choose-plans_plan-list input[type=radio] + label {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 10px 0;
    padding: 0;
    transition: all 0.1s linear;
    box-shadow: 0 0 0 0 transparent;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        margin: 15px 0;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label:before, .quote-business_choose-plans_plan-list input[type=radio] + label:after {
    display: none;
}

.quote-business_choose-plans_plan-list input[type=radio] + label .price-holder {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    background: #002466;
    padding: 20px;
    transition: all 0.2s linear;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .price-holder {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 50px;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .price-holder .price {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .price-holder .price {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (max-width: 767px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .price-holder .price {
        margin-right: 8px;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .price-holder .unit {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
}

.quote-business_choose-plans_plan-list input[type=radio] + label .price-holder .unit p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .price-holder .unit {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .price-holder .unit {
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        letter-spacing: 0px;
        line-height: 1.66667;
        color: #ffffff;
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .price-holder .unit {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder {
    background: #ffffff;
    padding: 20px;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder {
        padding: 50px;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .type {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .type {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .type {
        margin-bottom: 18px;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder h3 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.52px;
    line-height: 1.07692;
    color: #0E141A;
    margin-bottom: 6px;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder h3 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder p {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder p {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder p {
        margin-bottom: 18px;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas {
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas {
        margin-top: 32px;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #d3135a;
    color: #d3135a;
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a:hover, .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a._hover,
a:hover .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a {
    text-decoration: none;
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a:hover, .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a._hover,
a:hover .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a {
    background-color: rgba(211, 19, 89, 0.2);
}

@media screen and (max-width: 767px) {
    .quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a {
        -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
        align-self: stretch;
    }
}

.quote-business_choose-plans_plan-list input[type=radio] + label .desc-holder .ctas a:hover {
    cursor: pointer;
}

.quote-business_choose-plans_plan-list input[type=radio] + label:hover {
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.025);
    -ms-transform: scale(1.025);
    transform: scale(1.025);
    position: relative;
    z-index: 1;
}

.quote-business_choose-plans_plan-list input[type=radio]:checked + label .price-holder,
.quote-business_choose-plans_plan-list input[type=radio]:focus + label .price-holder {
    background: #d3135a;
}

.quote-business_choose-plans_plan-template {
    display: none;
}

.quote-business_choose-plans_terms {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    margin: 14px 0 40px 0;
    opacity: 0.6;
    text-align: right;
}

@media screen and (min-width: 768px) {
    .quote-business_choose-plans_terms {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.quote-business_request-plans {
    min-height: 100vh;
    display: none;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.quote-business_request-plans_inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .quote-business_request-plans_inner {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.quote-business_request-plans_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .quote-business_request-plans_content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
    }

    .quote-business_request-plans_content:last-child {
        margin-right: 0;
    }
}

.quote-business_request-plans_content h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .quote-business_request-plans_content h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.quote-business_request-plans_content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
    margin-bottom: 20px;
}

.quote-business_request-plans_content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .quote-business_request-plans_content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.quote-business_request-plans_form {
    padding-bottom: 100px;
}

@media screen and (min-width: 1024px) {
    .quote-business_request-plans_form {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 57.35098%;
        margin-right: 0;
        margin-left: 8.5298%;
    }

    .quote-business_request-plans_form:last-child {
        margin-right: 0;
    }
}

.quote-business_request-plans_form button {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
}

.quote-business_request-plans_form button:hover, .quote-business_request-plans_form button._hover,
a:hover .quote-business_request-plans_form button {
    text-decoration: none;
}

.quote-business_request-plans_form button:hover, .quote-business_request-plans_form button._hover,
a:hover .quote-business_request-plans_form button {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

.quote-business_request-plans_confirmation {
    display: none;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .quote-business_request-plans_confirmation {
        float: left;
        display: block;
        margin-right: 2.35765%;
        margin-top: 20px;
        /*width: 31.76157%;*/
        display: none;
    }

    .quote-business_request-plans_confirmation:last-child {
        margin-right: 0;
    }
}

.quote-business_request-plans_confirmation h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .quote-business_request-plans_confirmation h2 {
        font-size: 60px;
        letter-spacing: -1.2px;
        line-height: 1.08333;
    }
}

.quote-business_request-plans_confirmation p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    margin-bottom: 20px;
}

.quote-business_request-plans_confirmation p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .quote-business_request-plans_confirmation p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.quote-business_request-plans_confirmation a {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.28px;
    line-height: 1;
    padding-top: 32px;
    padding-bottom: 32px;
    width: 100%;
}

.quote-business_request-plans_confirmation a:hover, .quote-business_request-plans_confirmation a._hover,
a:hover .quote-business_request-plans_confirmation a {
    text-decoration: none;
}

.quote-business_request-plans_confirmation a:hover, .quote-business_request-plans_confirmation a._hover,
a:hover .quote-business_request-plans_confirmation a {
    background-color: rgba(255, 255, 255, 0.2);
}

.quote-business--color .quote-business_header_content span {
    color: #ffffff;
}

.quote-business--color .quote-business_header_content h1 {
    color: #ffffff;
}

.quote-business--color .quote-business_header_content .input-holder input {
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
}

.quote-business--color .quote-business_header_content .input-holder input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
    opacity: 0.4;
}

.quote-business--color .quote-business_header_content .input-holder input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
    opacity: 0.4;
}

.quote-business--color .quote-business_header_content .input-holder input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
    opacity: 0.4;
}

.quote-business--color .quote-business_header_content .input-holder input:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
    opacity: 0.4;
}

.quote-business--color .quote-business_header_content .input-holder input:invalid + .cta {
    color: #ffffff;
}

.registration {
    transition: all 0.8s linear;
    background: #002466;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .registration_section {
        padding: 100px 0;
    }
}

.registration_choose-plans {
    min-height: 100vh;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 100px 0 0 0;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans {
        padding: 200px 0 100px 0;
    }
}

.registration_choose-plans_inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .registration_choose-plans_inner {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.registration_choose-plans_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .registration_choose-plans_content {
        padding: 0 2.35765%;
        text-align: center;
    }
}

@media screen and (min-width: 1024px) {
    .registration_choose-plans_content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
    }

    .registration_choose-plans_content:last-child {
        margin-right: 0;
    }
}

.registration_choose-plans_content h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_content h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_content h2 {
        margin-bottom: 5px;
    }
}

.registration_choose-plans_content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
}

.registration_choose-plans_content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.registration_choose-plans_content p.address {
    font-size: 18px;
    letter-spacing: 0.36px;
    line-height: 1.66667;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_content p.address {
        font-size: 24px;
        letter-spacing: 0.48px;
        line-height: 1.25;
    }
}

.registration_choose-plans_content .ctas {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (max-width: 767px) {
    .registration_choose-plans_content .ctas {
        margin-bottom: 50px;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_content .ctas {
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        -ms-grid-row-align: flex-start;
        align-items: flex-start;
        margin-bottom: 130px;
    }
}

.registration_choose-plans_content .ctas .ctaPrimary {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
}

.registration_choose-plans_content .ctas .ctaPrimary:hover, .registration_choose-plans_content .ctas .ctaPrimary._hover,
a:hover .registration_choose-plans_content .ctas .ctaPrimary {
    text-decoration: none;
}

.registration_choose-plans_content .ctas .ctaPrimary:hover, .registration_choose-plans_content .ctas .ctaPrimary._hover,
a:hover .registration_choose-plans_content .ctas .ctaPrimary {
    background-color: rgba(255, 255, 255, 0.2);
}

.registration_choose-plans_content .ctas .ctaSecondary {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    color: #ffffff;
    display: inline-block;
    padding: 13px 40px 14px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_content .ctas .ctaSecondary {
        padding-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .registration_choose-plans_content .included {
        margin-bottom: 30px;
    }
}

.registration_choose-plans_content .included h3 {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_content .included h3 {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

.registration_choose-plans_content .included li {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
    margin: 20px 0;
    text-align: left;
    text-indent: -38px;
    padding-left: 38px;
}

.registration_choose-plans_content .included li p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_content .included li {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.registration_choose-plans_content .included li:before {
    font-size: 28px;
    margin-right: 10px;
    vertical-align: sub;
}

@media screen and (min-width: 1024px) {
    .registration_choose-plans_plan-holder {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 57.35098%;
        margin-right: 0;
        margin-left: 8.5298%;
    }

    .registration_choose-plans_plan-holder:last-child {
        margin-right: 0;
    }
}

.registration_choose-plans_plan-list input[type=radio] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.registration_choose-plans_plan-list label {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 10px 0;
    transition: all 0.1s linear;
    box-shadow: 0 0 0 0 transparent;
    padding: 0 !important;
}

.registration_choose-plans_plan-list label:before, .registration_choose-plans_plan-list label:after {
    display: none !important;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        margin: 15px 0;
    }
}

.registration_choose-plans_plan-list label:before {
    content: '';
}

.registration_choose-plans_plan-list label .price-holder {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    background: #002466;
    padding: 20px;
    transition: all 0.2s linear;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .price-holder {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 50px;
    }
}

.registration_choose-plans_plan-list label .price-holder .price {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .price-holder .price {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (max-width: 767px) {
    .registration_choose-plans_plan-list label .price-holder .price {
        margin-right: 8px;
    }
}

.registration_choose-plans_plan-list label .price-holder .unit {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
}

.registration_choose-plans_plan-list label .price-holder .unit p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .price-holder .unit {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .price-holder .unit {
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        letter-spacing: 0px;
        line-height: 1.66667;
        color: #ffffff;
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .registration_choose-plans_plan-list label .price-holder .unit {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.registration_choose-plans_plan-list label .desc-holder {
    background: #ffffff;
    padding: 20px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .desc-holder {
        padding: 50px;
    }
}

.registration_choose-plans_plan-list label .desc-holder .type {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .desc-holder .type {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .desc-holder .type {
        margin-bottom: 18px;
    }
}

.registration_choose-plans_plan-list label .desc-holder h3 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.52px;
    line-height: 1.07692;
    color: #0E141A;
    margin-bottom: 6px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .desc-holder h3 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

.registration_choose-plans_plan-list label .desc-holder p {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .desc-holder p {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .desc-holder p {
        margin-bottom: 18px;
    }
}

.registration_choose-plans_plan-list label .desc-holder .ctas {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .registration_choose-plans_plan-list label .desc-holder .ctas {
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_plan-list label .desc-holder .ctas {
        margin-top: 32px;
    }
}

.registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #d3135a;
    color: #d3135a;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary:hover, .registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary._hover,
a:hover .registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary {
    text-decoration: none;
}

.registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary:hover, .registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary._hover,
a:hover .registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary {
    background-color: rgba(211, 19, 89, 0.2);
}

@media screen and (max-width: 767px) {
    .registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary {
        -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
        align-self: stretch;
    }
}

.registration_choose-plans_plan-list label .desc-holder .ctas .ctaPrimary:hover {
    cursor: pointer;
}

.registration_choose-plans_plan-list label .desc-holder .ctas .ctaSecondary {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    color: #d3135a;
    display: inline-block;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 13px 40px 14px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .registration_choose-plans_plan-list label .desc-holder .ctas .ctaSecondary {
        display: block;
    }
}

.registration_choose-plans_plan-list label .desc-holder .ctas .ctaSecondary:hover {
    cursor: pointer;
}

.registration_choose-plans_plan-list label:hover {
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.025);
    -ms-transform: scale(1.025);
    transform: scale(1.025);
    position: relative;
    z-index: 1;
}

.registration_choose-plans_plan-list input[type=radio]:checked + label .price-holder,
.registration_choose-plans_plan-list input[type=radio]:focus + label .price-holder {
    background: #d3135a;
}

.registration_choose-plans_terms {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    margin-top: 14px;
    opacity: 0.6;
    text-align: right;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_terms {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.registration_choose-plans_calc-link {
    margin-bottom: 40px;
    text-align: right;
}

.registration_choose-plans_calc-link .link {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    opacity: 0.6;
    text-decoration: underline;
    text-transform: none;
}

@media screen and (min-width: 768px) {
    .registration_choose-plans_calc-link .link {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.registration_choose-extras {
    display: none;
    min-height: 100vh;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.registration_choose-extras_inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .registration_choose-extras_inner {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.registration_choose-extras_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .registration_choose-extras_content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
    }

    .registration_choose-extras_content:last-child {
        margin-right: 0;
    }
}

.registration_choose-extras_content h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_content h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.registration_choose-extras_content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
    margin-bottom: 20px;
}

.registration_choose-extras_content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 1024px) {
    .registration_choose-extras_extra-holder {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 57.35098%;
        margin-right: 0;
        margin-left: 8.5298%;
    }

    .registration_choose-extras_extra-holder:last-child {
        margin-right: 0;
    }
}

.registration_choose-extras_extra-holder .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
    margin-top: 40px;
}

.registration_choose-extras_extra-holder .cta:hover, .registration_choose-extras_extra-holder .cta._hover,
a:hover .registration_choose-extras_extra-holder .cta {
    text-decoration: none;
}

.registration_choose-extras_extra-holder .cta:hover, .registration_choose-extras_extra-holder .cta._hover,
a:hover .registration_choose-extras_extra-holder .cta {
    background-color: rgba(255, 255, 255, 0.2);
}

.registration_choose-extras_extra-list input[type=checkbox] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.registration_choose-extras_extra-list label {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 10px 0;
    transition: all 0.1s linear;
    box-shadow: 0 0 0 0 transparent;
    padding: 0 !important;
}

.registration_choose-extras_extra-list label:before, .registration_choose-extras_extra-list label:after {
    display: none !important;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label {
        margin: 15px 0;
    }
}

.registration_choose-extras_extra-list label .price-holder {
    background: #f4f4f4;
    padding: 20px;
    transition: all 0.2s linear;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .price-holder {
        -webkit-align-items: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 25px 40px;
    }
}

.registration_choose-extras_extra-list label .price-holder h3 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    margin-bottom: 0;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .price-holder h3 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

@media screen and (max-width: 767px) {
    .registration_choose-extras_extra-list label .price-holder h3 {
        font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 26px;
        letter-spacing: -0.52px;
        line-height: 1.07692;
        color: #0E141A;
    }
}

@media screen and (max-width: 767px) and (min-width: 768px) {
    .registration_choose-extras_extra-list label .price-holder h3 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

.registration_choose-extras_extra-list label .price-holder .price {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    margin-right: 8px;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .price-holder .price {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.registration_choose-extras_extra-list label .price-holder .unit {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #0E141A;
}

.registration_choose-extras_extra-list label .price-holder .unit p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .price-holder .unit {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .price-holder .unit {
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        letter-spacing: 0px;
        line-height: 1.66667;
        color: #0E141A;
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .registration_choose-extras_extra-list label .price-holder .unit {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.registration_choose-extras_extra-list label .desc-holder {
    background: #ffffff;
    padding: 20px;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .desc-holder {
        padding: 30px 40px;
    }
}

.registration_choose-extras_extra-list label .desc-holder .type {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .desc-holder .type {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .desc-holder .type {
        margin-bottom: 18px;
    }
}

.registration_choose-extras_extra-list label .desc-holder p {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0E141A;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .desc-holder p {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .desc-holder p {
        margin-bottom: 18px;
    }
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list label .desc-holder .ctas {
        margin-top: 16px;
    }
}

.registration_choose-extras_extra-list label .desc-holder .ctas .ctaPrimary {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    color: #d3135a;
    display: inline-block;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 13px 40px 0 0;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.registration_choose-extras_extra-list label .desc-holder .ctas .ctaPrimary:before {
    display: block;
    font-family: 'icomoon';
    content: "\e949";
    font-style: normal;
    font-weight: normal;
}

@media screen and (max-width: 767px) {
    .registration_choose-extras_extra-list label .desc-holder .ctas .ctaPrimary {
        display: block;
    }
}

.registration_choose-extras_extra-list label .desc-holder .ctas .ctaPrimary:before {
    display: inline-block;
    margin-right: 1em;
}

.registration_choose-extras_extra-list label .desc-holder .ctas .ctaPrimary:hover {
    cursor: pointer;
}

.registration_choose-extras_extra-list label:hover {
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.025);
    -ms-transform: scale(1.025);
    transform: scale(1.025);
    position: relative;
    z-index: 1;
}

.registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder,
.registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder {
    background: #d3135a;
}

.registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder h3,
.registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder h3 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder h3,
    .registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder h3 {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

@media screen and (max-width: 767px) {
    .registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder h3,
    .registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder h3 {
        font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 26px;
        letter-spacing: -0.52px;
        line-height: 1.07692;
        color: #ffffff;
    }
}

@media screen and (max-width: 767px) and (min-width: 768px) {
    .registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder h3,
    .registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder h3 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

.registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder .price,
.registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder .price {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder .price,
    .registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder .price {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder .unit,
.registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder .unit {
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder .unit,
    .registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder .unit {
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        letter-spacing: 0px;
        line-height: 1.66667;
        color: #ffffff;
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .registration_choose-extras_extra-list input[type=checkbox]:checked + label .price-holder .unit,
    .registration_choose-extras_extra-list input[type=checkbox]:focus + label .price-holder .unit {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.registration_choose-extras_extra-list input[type=checkbox]:checked + label .desc-holder .ctas .ctaPrimary:before,
.registration_choose-extras_extra-list input[type=checkbox]:focus + label .desc-holder .ctas .ctaPrimary:before {
    display: block;
    font-family: 'icomoon';
    content: "\e90d";
    font-style: normal;
    font-weight: normal;
}

.registration_choose-extras_extra-list input[type=checkbox]:checked + label .desc-holder .ctas .ctaPrimary:before,
.registration_choose-extras_extra-list input[type=checkbox]:focus + label .desc-holder .ctas .ctaPrimary:before {
    display: inline-block;
    margin-right: 1em;
}

.registration_request-plans {
    min-height: 100vh;
    display: none;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.registration_request-plans_inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .registration_request-plans_inner {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.registration_request-plans_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .registration_request-plans_content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
    }

    .registration_request-plans_content:last-child {
        margin-right: 0;
    }
}

.registration_request-plans_content h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #ffffff;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .registration_request-plans_content h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.registration_request-plans_content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    color: #ffffff;
    margin-bottom: 20px;
}

.registration_request-plans_content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .registration_request-plans_content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 1024px) {
    .registration_request-plans_form {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 57.35098%;
        margin-right: 0;
        margin-left: 8.5298%;
    }

    .registration_request-plans_form:last-child {
        margin-right: 0;
    }
}

.registration_request-plans_form button {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
}

.registration_request-plans_form button:hover, .registration_request-plans_form button._hover,
a:hover .registration_request-plans_form button {
    text-decoration: none;
}

.registration_request-plans_form button:hover, .registration_request-plans_form button._hover,
a:hover .registration_request-plans_form button {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

.registration-overlay {
    background: #000000;
    color: #fff;
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    transition: all .4s ease-in-out;
    z-index: 999;
}

.registration-overlay.active {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.registration-overlay__header {
    z-index: 1;
    width: 100%;
}

.registration-overlay__header .btn-close {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .registration-overlay__header .btn-close {
        height: 21px;
        width: 21px;
    }
}

.registration-overlay__main {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.registration-overlay__main::after {
    clear: both;
    content: "";
    display: table;
}

.registration-overlay__main p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .registration-overlay__main {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 768px) {
    .registration-overlay__main {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

@media screen and (max-width: 767px) {
    .registration-overlay__col:first-child .registration-overlay__text {
        text-align: center;
    }
}

@media screen and (min-width: 768px) {
    .registration-overlay__col {
        width: 50%;
        float: left;
        padding: 0 30px;
    }

    .registration-overlay__col::after {
        clear: both;
        content: "";
        display: table;
    }

    .registration-overlay__col:first-child {
        padding-left: 0;
    }

    .registration-overlay__col:last-child {
        padding-right: 0;
    }

    .registration-overlay__col:last-child .registration-overlay__text {
        float: right;
    }
}

.registration-overlay__title {
    color: #fff;
    margin-bottom: 20px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #fff;
}

@media screen and (min-width: 768px) {
    .registration-overlay__title {
        font-size: 60px;
        letter-spacing: -1.2px;
        line-height: 1.08333;
    }
}

@media screen and (min-width: 768px) {
    .registration-overlay__title {
        margin-bottom: 40px;
    }
}

.registration-overlay__details {
    border-bottom: 1px solid #333;
    padding: 20px 0 10px;
    margin: 0;
}

.registration-overlay__details:last-of-type {
    border: none;
}

.registration-overlay__details dd {
    margin: 0 0 10px;
}

.registration-overlay__details dt {
    color: #fff;
    opacity: 0.5;
    font-size: 16px;
}

.registration-overlay__info-title {
    color: #fff;
    opacity: 0.5;
    margin-bottom: 0;
}

.registration-overlay__text {
    width: 100%;
    max-width: 500px;
}

.registration-overlay p.registration-overlay__quote-builder-cta {
    margin: 0;
    color: #d3135a;
}

.related-content {
    padding: 0 15px;
    background: #f4f4f4;
}

@media screen and (min-width: 768px) {
    .related-content {
        padding: 0 30px;
    }
}

.related-content--gallery {
    background-color: #EFF2F7;
}

.related-content--gallery .related-content_inner {
    border-top: 0;
}

.related-content_inner {
    margin: auto;
    max-width: 1080px;
    padding: 40px 0 30px;
}

@media screen and (min-width: 768px) {
    .related-content_inner {
        padding: 50px 0 77px;
    }
}

.related-content_heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.52px;
    line-height: 1.07692;
    color: #0E141A;
    margin-bottom: 48px;
}

@media screen and (min-width: 768px) {
    .related-content_heading {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

.related-content_card-wrap {
    display: block;
    margin: 0px auto;
    max-width: 1340px;
}

@media screen and (min-width: 768px) {
    .related-content_card-wrap {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}

@media screen and (min-width: 1024px) {
    .related-content_card-wrap {
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.related-content_card-wrap .related-content-card {
    display: block;
    margin: 0px auto 30px auto;
}

@media screen and (min-width: 768px) {
    .related-content_card-wrap .related-content-card {
        margin: 0px 0px 50px 0px;
    }
}

@media screen and (min-width: 1024px) {
    .related-content_card-wrap .related-content-card {
        max-width: 30%;
    }
}

.related-content_card-wrap .related-content-card:nth-child(n+3) {
    display: none;
}

@media screen and (min-width: 1024px) {
    .related-content_card-wrap .related-content-card:nth-child(n+3) {
        display: block;
    }
}

.related-content_cta {
    text-align: center;
}

.related-content--most-popular .related-content_inner {
    max-width: 1374px;
}

@media screen and (min-width: 1024px) {
    .related-content--most-popular .related-content_inner {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 768px) {
    .related-content--most-popular .related-content-card {
        margin-right: 20px;
    }
}

@media screen and (min-width: 1024px) {
    .related-content--most-popular .related-content-card {
        max-width: 50%;
        margin-right: 30px;
    }
}

.related-content--most-popular .related-content__cards {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (min-width: 1024px) {
    .related-content--most-popular .most-popular {
        width: 33%;
        margin-left: 20px;
    }
}

.most-popular li {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dddddd;
}

.most-popular__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: -0.72px;
    line-height: 1.33333;
}

@media screen and (min-width: 768px) {
    .most-popular__title {
        font-size: 24px;
        letter-spacing: -0.96px;
        line-height: 1.25;
    }
}

@media screen and (min-width: 1024px) {
    .most-popular__title {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.16667;
    }
}

.most-popular a:hover {
    text-decoration: none;
}

.most-popular a:hover .most-popular__title {
    text-decoration: underline;
}

.most-popular .text--date {
    color: #667790;
    display: inline-block;
}

.most-popular .text--date:before {
    content: "|";
    display: inline-block;
    padding-right: 12px;
}

.renewable-sources {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.renewable-sources p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .renewable-sources {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.renewable-sources__left .renewable-sources__inner, .renewable-sources__right .renewable-sources__inner {
    margin: 0 auto;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .renewable-sources__left, .renewable-sources__right {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.renewable-sources__left {
    padding: 0 15px;
    background: #fff;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .renewable-sources__left {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources__left {
        padding: 0 30px;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources__left {
        background: #0B563D;
        color: #fff;
    }
}

@media screen and (min-width: 1280px) {
    .renewable-sources__left .renewable-sources__inner {
        padding-right: 180px;
    }
}

.renewable-sources__right {
    background: #fff;
}

@media screen and (min-width: 1024px) {
    .renewable-sources__right .renewable-sources__inner {
        padding-left: 70px;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .renewable-sources__left, .renewable-sources__right {
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .renewable-sources__left .renewable-sources__inner {
        margin-right: 0;
    }

    .renewable-sources__right .renewable-sources__inner {
        margin-left: 0;
    }
}

.renewable-sources__inner {
    padding: 0 15px;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .renewable-sources__inner {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources__inner {
        padding: 0 30px;
    }
}

@media screen and (min-width: 768px) {
    .renewable-sources__inner {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources__inner {
        max-width: 658px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.renewable-sources__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0B563D;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .renewable-sources__title {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources__title {
        color: #fff;
    }
}

@media screen and (min-width: 768px) {
    .renewable-sources_inner-row {
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 -15px;
    }
}

.renewable-sources_content {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .renewable-sources_content {
        margin: 0;
        padding: 15px;
        width: 50%;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources_content {
        margin: 0;
        padding: 15px;
        width: calc(200% / 3);
    }
}

.renewable-sources_content-inner {
    background: #ffffff;
    height: 100%;
    padding: 20px;
}

@media screen and (min-width: 1024px) {
    .renewable-sources_content-inner {
        padding: 60px;
    }
}

.renewable-sources_text h2 {
    margin-bottom: 20px;
}

.renewable-sources_text p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 1.4375;
    margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .renewable-sources_data {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 40px;
    }
}

.renewable-sources_graph {
    padding: 40px 0;
    max-width: 350px;
    height: 350px;
    margin: 0 auto;
}

.renewable-sources_graph #renewable-graph {
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 1024px) {
    .renewable-sources_graph {
        height: 600px;
        max-width: 600px;
    }
}

.renewable-sources_key {
    position: static;
    display: none;
}

.renewable-sources_key .key {
    position: absolute;
}

.renewable-sources_key .key:after {
    content: "";
    width: 2px;
    height: 16px;
    background: #0E141A;
    position: absolute;
}

.renewable-sources_key .key--renewable {
    bottom: 20px;
    right: 0;
}

.renewable-sources_key .key--renewable:after {
    top: -20px;
    -webkit-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    transform: rotate(-35deg);
    left: 20%;
}

.renewable-sources_key .key--non-renewable {
    top: 20px;
    left: 0;
}

.renewable-sources_key .key--non-renewable:after {
    bottom: -20px;
    -webkit-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    transform: rotate(-35deg);
    right: 40%;
}

@media screen and (min-width: 1024px) {
    .renewable-sources_key .key:after {
        height: 40px;
    }

    .renewable-sources_key .key--renewable:after {
        top: -50px;
        -webkit-transform: rotate(-35deg);
        -ms-transform: rotate(-35deg);
        transform: rotate(-35deg);
        left: 20%;
    }

    .renewable-sources_key .key--non-renewable:after {
        bottom: -50px;
        -webkit-transform: rotate(-35deg);
        -ms-transform: rotate(-35deg);
        transform: rotate(-35deg);
        right: 40%;
    }
}

.renewable-sources .c3-chart-arc path {
    stroke: #0B563D;
}

.renewable-sources_legend dl dt {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    position: absolute;
    text-transform: uppercase;
    color: #0E141A;
}

.renewable-sources_legend dl dd {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    margin: 0;
    text-align: right;
    text-transform: uppercase;
    color: #0E141A;
}

.renewable-sources_legend dl dd .track {
    background: #dddddd;
    display: block;
    height: 10px;
    margin: 4px 0 18px 0;
}

.renewable-sources_legend dl dd .track .value {
    background: #0B563D;
    display: block;
    height: 10px;
    transition: width 1.2s ease;
    width: 0;
}

@media screen and (min-width: 1024px) {
    .renewable-sources_legend {
        width: 95%;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources_legend dl dt, .renewable-sources_legend dl dd {
        color: #fff;
    }

    .renewable-sources_legend dl dd .track {
        background: #77ca7b;
        background: rgba(255, 255, 255, 0.2);
    }

    .renewable-sources_legend dl dd .track .value {
        background: #fff;
    }
}

.renewable-sources_promo {
    margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
    .renewable-sources_promo {
        margin: 0;
        max-width: none;
        padding: 15px;
        width: 50%;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources_promo {
        width: calc(100% / 3);
    }
}

.renewable-sources_promo-inner {
    background-color: #0da036;
    background-image: linear-gradient(#0da036 20%, #6dc34b 90%);
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    min-height: 540px;
    height: 100%;
    padding: 380px 140px 20px 20px;
}

.renewable-sources_promo-inner h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.22727;
    color: #ffffff;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .renewable-sources_promo-inner h2 {
        font-size: 28px;
        letter-spacing: -0.56px;
        line-height: 1.28571;
    }
}

.renewable-sources_promo-inner .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
}

.renewable-sources_promo-inner .cta:hover, .renewable-sources_promo-inner .cta._hover,
a:hover .renewable-sources_promo-inner .cta {
    text-decoration: none;
}

.renewable-sources_promo-inner .cta:hover, .renewable-sources_promo-inner .cta._hover,
a:hover .renewable-sources_promo-inner .cta {
    background-color: rgba(255, 255, 255, 0.2);
}

.renewable-sources_promo-inner:before {
    content: '';
    display: block;
    position: absolute;
    height: calc(100% + 36px);
    width: 100%;
    /*background: url("/placeholder/img/renewable/windmill.png");*/
    background-repeat: no-repeat;
    background-position: top right;
    top: -36px;
    right: 0;
}

@media screen and (min-width: 768px) {
    .renewable-sources_promo-inner {
        padding: 380px 140px 60px 40px;
    }
}

.save-quote {
    background: #000000;
    color: #fff;
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    transition: all .4s ease-in-out;
    z-index: 999;
}

.save-quote__header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 15px;
}

@media screen and (min-width: 768px) {
    .save-quote__header {
        padding: 25px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .save-quote__header {
        padding: 23px 30px;
    }
}

.save-quote__logo {
    max-width: 60px;
}

@media screen and (min-width: 768px) {
    .save-quote__logo {
        max-width: 109px;
    }
}

.save-quote__logo a {
    display: block;
}

.save-quote__logo img {
    width: 100%;
}

.save-quote__btns {
    margin-left: auto;
    -webkit-flex-grow: 1000;
    -ms-flex-positive: 1000;
    flex-grow: 1000;
    text-align: right;
}

@media screen and (min-width: 1024px) {
    .save-quote__btns {
        margin-left: 20px;
    }
}

.save-quote__btn {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
}

@media screen and (min-width: 768px) {
    .save-quote__btn {
        margin-left: 30px;
    }
}

.save-quote__btn-close {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .save-quote__btn-close {
        height: 21px;
        width: 21px;
    }
}

.save-quote__inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.save-quote__inner::after {
    clear: both;
    content: "";
    display: table;
}

.save-quote__content {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .save-quote__content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%;
        margin-left: 17.05961%;
    }

    .save-quote__content:last-child {
        margin-right: 0;
    }
}

@media screen and (min-width: 1024px) {
    .save-quote__content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-left: 25.58941%;
    }

    .save-quote__content:last-child {
        margin-right: 0;
    }
}

.save-quote__content h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

.save-quote__content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    margin-bottom: 30px;
}

.save-quote__content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .save-quote__content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.save-quote__content label {
    display: none;
}

.save-quote__content button {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
}

.save-quote__content button:hover, .save-quote__content button._hover,
a:hover .save-quote__content button {
    text-decoration: none;
}

.save-quote__content button:hover, .save-quote__content button._hover,
a:hover .save-quote__content button {
    background-color: rgba(255, 255, 255, 0.2);
}

body.save-quote-open .save-quote {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.savings-calculator {
    padding: 50px 0;
    text-align: center;
}

@media screen and (min-width: 1024px) {
    .savings-calculator {
        text-align: left;
    }
}

@media screen and (min-width: 1024px) {
    .savings-calculator {
        padding: 130px 0;
    }
}

@media screen and (min-width: 1024px) {
    .savings-calculator__tab-content {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media screen and (min-width: 1024px) {
    .savings-calculator .col1, .savings-calculator .col3 {
        width: 30%;
    }

    .savings-calculator .col2 {
        width: 40%;
        overflow: hidden;
    }
}

.savings-calculator__title {
    text-align: center;
    margin-bottom: 30px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .savings-calculator__title {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.savings-calculator__heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.52px;
    line-height: 1.07692;
    color: #0E141A;
    color: #0B563D;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .savings-calculator__heading {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

.savings-calculator p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    margin-bottom: 20px;
}

.savings-calculator p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .savings-calculator p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 1024px) {
    .savings-calculator p {
        margin-bottom: 50px;
    }
}

.savings-calculator__subheading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    color: #999999;
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    .savings-calculator__subheading {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.savings-calculator__savings {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    margin-bottom: 20px;
    color: #0B563D;
}

.savings-calculator__savings p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .savings-calculator__savings {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.savings-calculator__savings .savings {
    display: block;
    margin: 20px 0;
    font-size: 80px;
    letter-spacing: -3.2px;
    line-height: 0.5625;
}

.savings-calculator__savings .small {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0B563D;
}

@media screen and (min-width: 768px) {
    .savings-calculator__savings .small {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.savings-calculator .cta-1 {
    display: none;
}

.savings-calculator .cta-2 {
    display: inline-block;
}

.savings-calculator__graphics {
    width: 100px;
    margin-bottom: 30px;
    margin: 0 auto 30px;
    left: -10px;
    display: none;
    -webkit-transform: translate(0, 60px);
    -ms-transform: translate(0, 60px);
    transform: translate(0, 60px);
    transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.savings-calculator.in-view .savings-calculator__graphics {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    display: block;
}

.savings-calculator__graphic {
    position: absolute;
    width: 100%;
    top: 0;
}

.savings-calculator__graphic img {
    width: 100%;
    height: auto;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
}

.savings-calculator .graphic-0 {
    position: relative;
}

.savings-calculator .graphic-0 {
    z-index: 10;
    left: 0%;
}

.savings-calculator .graphic-0 img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.savings-calculator .graphic-1 {
    z-index: 9;
    left: 15%;
}

.savings-calculator .graphic-1 img {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.savings-calculator .graphic-2 {
    z-index: 8;
    left: 30%;
}

.savings-calculator .graphic-2 img {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.savings-calculator .graphic-3 {
    z-index: 7;
    left: 45%;
}

.savings-calculator .graphic-3 img {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
}

@media screen and (min-width: 768px) {
    .savings-calculator .range-slider {
        margin: 40px 0;
    }
}

.savings-calculator .range-slider input[type="range"]::-webkit-slider-thumb {
    height: 60px;
    width: 60px;
    background: #0B563D;
}

.savings-calculator .range-slider input[type="range"]::-moz-range-thumb {
    height: 60px;
    width: 60px;
    background: #0B563D;
}

.savings-calculator .range-slider input[type="range"]::-ms-thumb {
    height: 60px;
    width: 60px;
    background: #0B563D;
}

.savings-calculator .range-slider input[type="range"]::-webkit-slider-runnable-track {
    height: 60px;
}

.savings-calculator .range-slider input[type="range"]::-moz-range-track {
    height: 60px;
}

.savings-calculator .range-slider input[type="range"]::-ms-track {
    height: 60px;
}

.savings-calculator__tabs {
    text-align: center;
    margin-bottom: 30px;
}

.savings-calculator__tabs li {
    display: inline;
}

.savings-calculator__tabs li span {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: 4.16667;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    background: #0B563D;
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    border-radius: 15px;
}

.savings-calculator__tabs li span:after {
    content: "";
    width: 20px;
    height: 20px;
    border: 10px solid transparent;
    border-top: 10px solid #0B563D;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    bottom: -20px;
}

@media screen and (min-width: 768px) {
    .savings-calculator__savings .savings {
        margin-top: 10px;
        font-size: 80px;
        letter-spacing: -3.2px;
        line-height: 1.0625;
    }
}

@media screen and (min-width: 1024px) {
    .savings-calculator {
        text-align: left;
    }

    .savings-calculator__graphics {
        width: auto;
        max-width: 70%;
        margin: 0 auto;
        left: 0;
    }

    .savings-calculator .cta-1 {
        display: inline-block;
    }

    .savings-calculator .cta-2 {
        display: none;
    }

    .savings-calculator .range-slider {
        margin: 60px 0;
    }
}

@media screen and (min-width: 1280px) {
    .savings-calculator__savings .savings {
        font-size: 100px;
        letter-spacing: -4px;
        line-height: 1;
    }
}

.three-col-carousel {
    background: #f4f4f4;
    padding: 30px 0;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.three-col-carousel p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .three-col-carousel {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.three-col-carousel__header {
    text-align: center;
    margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
    .three-col-carousel__header {
        margin-bottom: 60px;
    }
}

.three-col-carousel .container {
    padding: 0;
}

.three-col-carousel__pagination {
    text-align: center;
}

.three-col-carousel__pagination .swiper-pagination-bullet {
    margin: 0 5px;
}

.three-col-carousel__pagination .swiper-pagination-bullet-active {
    background: #d3135a;
}

@media screen and (min-width: 768px) {
    .three-col-carousel__pagination {
        display: none;
    }
}

.three-col-carousel .swiper-slide {
    text-align: center;
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .three-col-carousel .swiper-slide {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .three-col-carousel .swiper-slide {
        padding: 0 30px;
    }
}

@media screen and (min-width: 1024px) {
    .three-col-carousel .swiper-slide {
        padding: 0 60px;
    }
}

.three-col-carousel .icon {
    font-size: 70px;
    margin-bottom: 10px;
    display: inline-block;
}

.three-col-carousel .icon.green {
    color: #0B563D;
}

.three-col-carousel .icon.red {
    color: #d3135a;
}

.three-col-carousel .icon.blue {
    color: #002466;
}

.three-col-carousel .icon.sky {
    color: #002466;
}

.three-col-carousel .icon.orange {
    color: #0152E8;
}

.three-col-carousel .icon.pink {
    color: #d3135a;
}

.three-col-carousel .eyebrow {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .three-col-carousel .eyebrow {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

.three-col-carousel p {
    color: #0E141A;
}

.three-col-carousel__heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .three-col-carousel__heading {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.three-col-carousel .btn-cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #0E141A;
    color: #0E141A;
}

.three-col-carousel .btn-cta:hover, .three-col-carousel .btn-cta._hover,
a:hover .three-col-carousel .btn-cta {
    text-decoration: none;
}

.three-col-carousel .btn-cta:hover, .three-col-carousel .btn-cta._hover,
a:hover .three-col-carousel .btn-cta {
    background-color: rgba(34, 34, 34, 0.2);
}

.three-col-carousel .link {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    text-transform: uppercase;
    display: inline-block;
    padding: 17px 40px 17px;
}

.three-col-carousel .link:hover {
    text-decoration: underline;
}

.vertical-tabs {
    background: #EFF2F7;
}

.vertical-tabs__nav__inner {
    padding: 100px 0;
    background: #EFF2F7;
}

.vertical-tabs__nav .eyebrow {
    margin-bottom: 20px;
}

.vertical-tabs__nav .link {
    color: #d3135a;
}

.vertical-tabs__nav ul {
    margin-bottom: 20px;
}

.vertical-tabs__nav li > a {
    display: block;
    padding: 15px 0;
    padding-right: 80px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
}

.vertical-tabs__nav li a:after {
    display: block;
    font-family: 'icomoon';
    content: "\e905";
    font-style: normal;
    font-weight: normal;
}

.vertical-tabs__nav li a:after {
    color: #d3135a;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-size: 14px;
}

.vertical-tabs__content {
    display: none;
}

@media screen and (min-width: 1024px) {
    .vertical-tabs {
        min-height: 100vh;
        background: #fff;
    }

    .vertical-tabs:before {
        content: "";
        position: absolute;
        z-index: 0;
        width: 33%;
        height: 100%;
        background: #EFF2F7;
        top: 0;
    }

    .vertical-tabs__nav {
        text-align: right;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        /*height: 100vh;*/
        height:100%;
    }

    .vertical-tabs__nav .container, .vertical-tabs__nav__inner {
        height: 100vh;
    }

    .vertical-tabs__nav__inner {
        width: 480px;
        float: left;
        z-index: 1;
        overflow-y: auto;
    }

    .vertical-tabs__nav .eyebrow {
        margin-right: 70px;
    }

    .vertical-tabs__nav li {
        padding: 0 70px 0 30px;
    }

    .vertical-tabs__nav li.active {
        background: #fff;
    }

    .vertical-tabs__nav li a {
        padding: 20px 0;
    }

    .vertical-tabs__nav li a:after {
        display: none;
    }

    .vertical-tabs__nav .link {
        margin-right: 70px;
    }

    .vertical-tabs__nav.fixed {
        position: fixed;
        top: 0;
    }

    .vertical-tabs__nav.scrolled-past {
        position: absolute;
        top: auto;
        bottom: 0;
    }

    .vertical-tabs__content {
        display: block;
        background: #fff;
        margin-left: 500px;
        float: right;
        padding: 0 30px;
    }

    .vertical-tabs__content__inner {
        background: #fff;
    }
}

.video {
    height: 0;
    padding-top: 56.25%;
    margin: 20px 0;
}

.video__wrapper {
    height: 0;
    padding-top: 56.25%;
}

.video__wrapper, .video__overlay, .video iframe {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.video iframe {
    height: 100%;
}

@media screen and (min-width: 1024px) {
    .video--sticky {
        margin: 0;
        z-index: 1 !important;
        height: 0;
        padding-top: 56.25%;
    }

    .video--sticky .video__wrapper {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .video--sticky.static .video__wrapper {
        position: absolute;
    }
}

.video__overlay {
    z-index: 1;
    height: 100%;
}

.ios .video__overlay, .android .video__overlay {
    display: none;
}

.video__overlay:before {
    background: rgba(0, 0, 0, 0.4);
    content: '';
    cursor: pointer;
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.video__overlay:after {
    /*background-image: url("/img/video-play-button-hover.png");*/
    background: no-repeat center center;
    background-size: 50%;
    content: '';
    cursor: pointer;
    display: block;
    height: 88px;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 88px;
    z-index: 3;
}

@media screen and (min-width: 1024px) {
    .video__overlay:after {
        background-size: 100%;
    }
}

.video__overlay:hover:after {
    /*background-image: url("/img/video-play-button-hover.png");*/
}

.video__overlay.hide {
    display: none;
    -webkit-transform: translate3d(0);
    transform: translate3d(0);
    transition: opacity 0.5s;
    z-index: 0;
}

.video__overlay img {
    width: 100%;
    height: auto;
}

#main .module {
    z-index: 2;
}

.video-scroller {
    overflow: hidden;
}

.video-scroller__title {
    text-align: center;
    padding: 60px 0;
    max-width: 640px;
    margin: 0 auto;
}

.video-scroller__video {
    display: none;
}

.video-scroller__video video {
    display: none;
}

.video-scroller__image {
    width: 100%;
    height: auto;
}

.video-scroller__content {
    text-align: center;
}

.video-scroller .eyebrow {
    margin-bottom: 40px;
}

.video-scroller__copy {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    padding: 0 20px;
}

.video-scroller__copy p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .video-scroller__copy {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.video-scroller__copy p {
    font-size: 26px;
    line-height: 32px;
}

.video-scroller__copy p strong {
    font-weight: normal;
}

.color-blue .video-scroller__copy p strong {
    color: #002466;
}

.color-green .video-scroller__copy p strong {
    color: #0B563D;
}

.color-orange .video-scroller__copy p strong {
    color: #0152E8;
}

@media screen and (min-width: 1024px) {
    .video-scroller__copy {
        font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 15px;
        letter-spacing: 0.3px;
        line-height: 1.46667;
        padding: 0;
    }

    .video-scroller__copy p {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 1024px) and (min-width: 768px) {
    .video-scroller__copy {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 1024px) {
    .video-scroller__copy p {
        font-size: 30px;
        line-height: 45px;
    }

    .video-scroller__title {
        padding: 170px 0 0;
        z-index: 1;
    }

    .video-scroller__container {
        min-height: 100vh;
        position: static;
    }

    .video-scroller__video {
        width: 540px;
        position: absolute;
        top: 0;
        display: block;
        top: 50vh;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    .video-scroller__video.fixed {
        position: fixed;
    }

    .video-scroller__video.absolute-bottom {
        position: absolute;
        bottom: 0;
        top: auto;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .video-scroller__video video {
        width: 100%;
        height: auto;
        display: block;
    }

    .video-scroller__image {
        display: none;
    }

    .video-scroller__content {
        margin-left: 50%;
        padding-left: 30px;
        text-align: left;
        padding-bottom: 0;
        padding-top: 100px;
    }

    .video-scroller__item {
        height: 70vh;
        min-height: 400px;
        padding-top: 240px;
        padding-bottom: 240px;
    }

    .video-scroller__item:last-child {
        min-height: 0;
        height: 55vh;
    }
}

@media screen and (min-width: 1280px) {
    .video-scroller__video {
        width: 800px;
    }

    .video-scroller__content {
        margin-left: 800px;
    }
}

.article-author {
    max-width: 1024px;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 50px;
}

.article-author h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .article-author h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (min-width: 768px) {
    .article-author {
        margin-left: 25px;
        margin-right: 25px;
    }
}

@media screen and (min-width: 1084px), print {
    .article-author {
        margin-left: auto;
        margin-right: auto;
    }
}

.article-author:before {
    content: "";
    width: auto;
    height: 100%;
    width: 100%;
    left: 4px;
    top: 4px;
    background-color: rgba(0, 0, 0, 0.06);
    position: absolute;
    z-index: 0;
}

.article-author__inner {
    border: 3px solid #dddddd;
    padding: 30px;
    min-height: 310px;
    background: #fff;
}

.article-author__image-col {
    width: 250px;
    margin: 0 auto 30px;
    z-index: 1;
}

@media screen and (min-width: 768px), print {
    .article-author__image-col {
        position: absolute;
        top: 30px;
    }
}

.article-author__text-col {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0.36px;
    line-height: 1.66667;
}

@media screen and (min-width: 768px), print {
    .article-author__text-col {
        padding-left: 320px;
    }
}

.article-author__subheading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.25;
    color: #999999;
    margin-bottom: 5px;
}

.article-author__heading {
    /*@include univers(300);
        @include font-size-tracking(30, -40, 35);*/
    margin-bottom: 30px;
}

.article-author__bio {
    color: #999999;
}

.article-author__bio p {
    margin-bottom: 30px;
}

.article-author__link {
    color: #d3135a;
    text-decoration: underline;
}

.tabs {
    max-width: 1010px;
}

.tabs h2 {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .tabs h2 {
        margin-bottom: 60px;
    }
}

.tabs .list-content {
    padding: 0;
}

.tabs .swiper-container {
    margin: 0;
}

.tabs .swiper-slide {
    width: auto;
}

.tabs__labels {
    display: inline-block;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media screen and (min-width: 1024px) {
    .tabs__labels {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.tabs__label-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    margin: 0 auto;
}

.tabs__label-wrapper:before {
    content: "";
    box-sizing: content-box;
    width: 100%;
    padding: 0 5px;
    left: -5px;
    position: absolute;
    height: 100%;
    top: 5px;
    background: #dddddd;
    z-index: 0;
}

.tabs__label, .tabs__btn-prev, .tabs__btn-next {
    display: block;
    height: 78px;
    line-height: 78px;
    background: #f4f4f4;
    padding: 0 24px;
    border-right: 1px solid #dddddd;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.tabs__label:hover, .tabs__btn-prev:hover, .tabs__btn-next:hover {
    background: #e5e5e5;
}

.ios .tabs__label:hover, .ios .tabs__btn-prev:hover, .ios .tabs__btn-next:hover {
    background: #f4f4f4;
}

.tabs__label.active, .tabs__btn-prev.active, .tabs__btn-next.active {
    background: #d3135a;
    color: #fff;
}

.tabs .swiper-slide:last-child .tabs__label, .tabs .swiper-slide:last-child .tabs__btn-prev, .tabs .swiper-slide:last-child .tabs__btn-next {
    border-right: none;
}

.tabs__btn-prev, .tabs__btn-next {
    padding: 0 12px;
    cursor: pointer;
    display: inline-block;
    color: #d3135a;
}

.tabs__btn-prev.swiper-button-disabled, .tabs__btn-next.swiper-button-disabled {
    background: #fcfcfc;
    cursor: default;
    color: #667790;
}

.tabs__btn-next {
    border-left: 1px solid #dddddd;
    border-right: none !important;
}

.tabs__tab {
    padding-top: 20px;
}

.contact {
    margin: 0;
}

@media screen and (min-width: 768px) {
    .contact_wrap {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .contact_wrap .contact_carousel_wrap {
        width: 50%;
    }

    .contact_wrap .subscribe {
        width: 50%;
    }
}

@media screen and (min-width: 1024px) {
    .contact_wrap {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .contact_wrap .contact_carousel_wrap {
        display: none;
    }

    .contact_wrap .contact_carousel,
    .contact_wrap .contact_no_carousel {
        width: 66.666%;
    }

    .contact_wrap .subscribe {
        width: 33.333%;
    }
}

@media screen and (max-width: 767px) {
    .contact {
        margin-top: 0;
        margin-bottom: 0;
        padding: 0 15px;
    }
}

.disclaimer + .contact .contact_inner,
.related-content--gallery + .contact .contact_inner,
.hub + .contact .contact_inner {
    border-top: none;
}

.contact_inner {
    border-top: 1px solid #cecece;
    display: block;
    margin: 0px auto;
    max-width: 1080px;
    padding-bottom: 35px;
}

@media screen and (min-width: 768px) {
    .contact_inner {
        padding: 15px 0px 75px;
    }
}

.contact_header {
    padding: 60px 0 10px;
}

@media screen and (max-width: 767px) {
    .contact_header {
        padding: 45px 0 0;
    }
}

.contact_wrapper {
    padding-top: 42px;
    display: block;
    float: left;
    padding-top: 60px;
    vertical-align: top;
    width: 50%;
}

@media screen and (min-width: 1024px) {
    .contact_wrapper {
        width: 50%;
    }
}

.contact_heading {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: -0.14px;
    line-height: 1;
    margin-bottom: 30px;
}

.contact_carousel {
    overflow: hidden;
    padding-bottom: 100px;
}

@media screen and (min-width: 1024px) {
    .contact_carousel {
        display: none;
    }
}

.contact_carousel--loading {
    visibility: hidden;
}

.contact_carousel .slick-slide {
    outline: none;
}

.contact_carousel .slick-slider {
    margin-bottom: 30px;
}

.contact_carousel .slick-dots {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

.contact_carousel .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.contact_carousel .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: white;
    border: 3px solid rgba(211, 19, 89, 0.7);
    border-radius: 100px;
    outline: none;
    background: transparent;
}

.contact_carousel .slick-dots li button:hover,
.contact_carousel .slick-dots li button:focus {
    outline: none;
}

.contact_carousel .slick-dots li button:hover:before,
.contact_carousel .slick-dots li button:focus:before {
    display: block;
    border-radius: 100px;
    border: 3px solid transparent;
}

.contact_carousel .slick-dots li button:before {
    font-size: 0;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.contact_carousel .slick-dots li.slick-active button {
    background-color: #d3135a;
}

.contact_carousel .slick-dots li.slick-active button:active {
    -webkit-tap-highlight-color: transparent;
}

.contact_no_carousel {
    display: none;
}

@media screen and (min-width: 1024px) {
    .contact_no_carousel {
        display: block;
    }
}

.contact_email, .contact_phone {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1;
}

.contact_name {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1;
}

.contact_name + .contact_name {
    margin-top: 7px;
}

.contact_name strong {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.contact_email {
    margin-top: 36px;
}

.contact_email + .contact_email {
    margin-top: 9px;
}

.contact_email strong {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-right: 5px;
}

.contact_email a {
    color: #d3135a;
    text-decoration: underline;
}

.contact_phone {
    margin-top: 12px;
}

.contact_phone + .contact_phone {
    margin-top: 9px;
}

@media screen and (min-width: 768px) {
    .contact_phone {
        margin-top: 30px;
    }
}

.contact_phone strong {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-right: 5px;
}

.dotcom-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

.dotcom-header__main {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 15px 0 15px;
}

@media screen and (min-width: 768px) {
    .dotcom-header__main {
        padding: 25px 25px 0;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-header__main {
        padding: 23px 30px 0;
    }
}

.dotcom-header__logo {
    max-width: 60px;
}

@media screen and (min-width: 768px) {
    .dotcom-header__logo {
        max-width: 109px;
    }
}

.dotcom-header__logo a {
    display: block;
}

.dotcom-header__logo img {
    width: 100%;
}

@media screen and (max-width:767px){
  .dotcom-header__logo img.isdesktop{
    display:none !important;
  }
}

@media screen and (min-width:768px){
  .dotcom-header__logo img.ismobile{
    display:none!important;
  }
}


.dotcom-header__btns {
    margin-left: auto;
}

@media screen and (min-width: 1024px) {
    .dotcom-header__btns {
        margin-left: 20px;
    }
}

.dotcom-header__btn {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
}

@media screen and (min-width: 768px) {
    .dotcom-header__btn {
        margin-left: 30px;
    }
}

.dotcom-header__btn__text {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    display: none;
    color: #ffffff;
    padding-right: 20px;
    position: relative;
    top: -7px;
}

@media screen and (min-width: 768px) {
    .dotcom-header__btn__text {
        text-transform: uppercase;
        display: inline-block;
    }
}

.dotcom-header__btn .icon-search-small {
    font-size: 19px;
    color: #fff;
}

@media screen and (min-width: 768px) {
    .dotcom-header__btn .icon-search-small {
        font-size: 28px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-header__btn .icon-search-small {
        font-size: 22px;
    }
}

.dotcom-header__btn.btn-menu {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .dotcom-header__btn.btn-menu {
        height: 24px;
        width: 32px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-header__btn.btn-menu {
        height: 19px;
        width: 22px;
    }
}

.dotcom-header__btn.btn-search-close {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .dotcom-header__btn.btn-search-close {
        height: 24px;
        width: 32px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-header__btn.btn-search-close {
        height: 21px;
        width: 21px;
    }
}

.dotcom-header__btn.btn-search-close {
    display: none;
}

.dotcom-header__links {
    display: none;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 1024px) {
    .dotcom-header__links {
        display: block;
    }
}

.dotcom-header__links li {
    display: inline;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.33333;
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 14px;
}

.dotcom-header__links a {
    display: inline-block;
    color: #fff;
    padding: 5px;
}

.dotcom-header__links a:hover {
    text-decoration: underline;
}

.page-search .dotcom-header .btn-search-open {
    display: none;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__article {
        display: none;
        -webkit-transform: translate(0, 10px);
        -ms-transform: translate(0, 10px);
        transform: translate(0, 10px);
        transition: 0.3s opacity, 0.5s -webkit-transform ease-out;
        transition: 0.3s opacity, 0.5s transform ease-out;
        transition: 0.3s opacity, 0.5s transform ease-out, 0.5s -webkit-transform ease-out;
    }

    .dotcom-megamenu__article:nth-of-type(0) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(1) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(2) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(3) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(4) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(5) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(6) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(7) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(8) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(9) {
        transition-delay: 0s;
    }
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__nav .dotcom-megamenu__nav__body{
        display: none !important;
    }
    .menu-open .dotcom-megamenu__nav .dotcom-megamenu__nav__body{
        display: block !important;
    }
    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li {
        transition: 0.1s opacity, 0.2s -webkit-transform ease-out;
        transition: 0.1s opacity, 0.2s transform ease-out;
        transition: 0.1s opacity, 0.2s transform ease-out, 0.2s -webkit-transform ease-out;
        -webkit-transform: translate(0, 10px);
        -ms-transform: translate(0, 10px);
        transform: translate(0, 10px);
        display: none;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(0) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(1) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(2) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(3) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(4) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(5) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(6) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(7) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(8) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(9) {
        transition-delay: 0s;
    }
}

.dotcom-megamenu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10001;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    transition: -webkit-transform 0s ease-in-out 0.7s;
    transition: transform 0s ease-in-out 0.7s;
    transition: transform 0s ease-in-out 0.7s, -webkit-transform 0s ease-in-out 0.7s;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu {
       display: none;
    }
    .menu-open .dotcom-megamenu {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.menu-open .dotcom-megamenu {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0s;
    transition: transform 0s;
    transition: transform 0s, -webkit-transform 0s;
}

.menu-open .dotcom-megamenu .dotcom-megamenu__nav {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.menu-open .dotcom-megamenu .dotcom-megamenu__main {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: all 0.7s ease-in-out 0s;
    display: block;
}

@media screen and (min-width: 768px) {
    .menu-open .dotcom-megamenu .dotcom-megamenu__article {
        display: block;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(0) {
        transition-delay: 0.5s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(1) {
        transition-delay: 0.75s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(2) {
        transition-delay: 1s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(3) {
        transition-delay: 1.25s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(4) {
        transition-delay: 1.5s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(5) {
        transition-delay: 1.75s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(6) {
        transition-delay: 2s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(7) {
        transition-delay: 2.25s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(8) {
        transition-delay: 2.5s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(9) {
        transition-delay: 2.75s;
    }
}

@media screen and (min-width: 768px) {
    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li {
        display: block;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(0) {
        transition-delay: 0.4s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(1) {
        transition-delay: 0.5s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(2) {
        transition-delay: 0.6s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(3) {
        transition-delay: 0.7s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(4) {
        transition-delay: 0.8s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(5) {
        transition-delay: 0.9s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(6) {
        transition-delay: 1s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(7) {
        transition-delay: 1.1s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(8) {
        transition-delay: 1.2s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(9) {
        transition-delay: 1.3s;
    }
}

.dotcom-megamenu__nav {
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #d3135a;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__nav {
        width: 340px;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        background-color: #d3135a;
        transition: -webkit-transform 0.4s ease-in-out 0s;
        transition: transform 0.4s ease-in-out 0s;
        transition: transform 0.4s ease-in-out 0s, -webkit-transform 0.4s ease-in-out 0s;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__nav {
        width: 400px;
    }
}

.dotcom-megamenu__main {
    background: #f4f4f4;
    -webkit-transform: translate(calc(100% + 400px), 0);
    -ms-transform: translate(calc(100% + 400px), 0);
    transform: translate(calc(100% + 400px), 0);
    transition: all 0.4s ease-in-out;
    display: none;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__main {
        display: block;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
}

.menu-open .dotcom-megamenu__main__body {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.dotcom-megamenu__main__body {
    display: none;
}

.dotcom-megamenu__navSecondary {
    display: none;
}

@media screen and (min-width: 1280px) {
    .dotcom-megamenu__navSecondary {
        display: block;
        min-width: 260px;
    }
}

.dotcom-megamenu__lang-links {
    top: -4px;
}

.dotcom-megamenu__lang-links li {
    display: inline-block;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1.53846;
    margin-right: 20px;
}

.dotcom-megamenu__lang-links li a {
    color: #fff;
}

.dotcom-megamenu__lang-links li a:hover {
    text-decoration: none;
}

.dotcom-megamenu__lang-links li.selected:after, .dotcom-megamenu__lang-links li:hover:after {
    content: "";
    width: 100%;
    height: 4px;
    background: #fff;
    position: absolute;
    bottom: -6px;
    left: -2px;
    box-sizing: content-box;
    padding: 0 2px;
}

.dotcom-megamenu__main {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.dotcom-megamenu__main__header {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 64px;
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__main__header {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__main__header {
        padding: 0 30px;
    }
}

@media screen and (max-width: 768px -1) {
    .dotcom-megamenu__main__header {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__main__header {
        height: 84px;
    }
}

.dotcom-megamenu__main__header__logo {
    display: block;
    width: 120px;
}

.dotcom-megamenu__main__header__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.dotcom-megamenu__nav__header {
    background: #e2175c;
    position: absolute;
    top: 0;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 64px;
    padding: 0 15px;
    z-index: 9999999;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__nav__header {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__nav__header {
        padding: 0 30px;
    }
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__nav__header {
        height: 84px;
    }
}

.dotcom-megamenu__nav .btn-close {
    top: 2px;
    height: 17px;
    width: 24px;
    vertical-align: middle;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__nav .btn-close {
        width: 32px;
        height: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__nav .btn-close {
        width: 21px;
        height: 21px;
    }
}

.dotcom-megamenu__nav__body {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 64px 0 0;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__nav__body {
        padding: 84px 0 0;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 767px) {
    .dotcom-megamenu__nav__body {
        background: #f4f4f4;
    }
}

@media screen and (min-width: 1280px) {
    .dotcom-megamenu__nav .secondaryMenu {
        display: none;
    }
}

.dotcom-megamenu__accordian {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.dotcom-megamenu__nav__body .dotcom-megamenu__accordian {
    background-color: #d3135a;
}

.dotcom-megamenu__accordian__header {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.36364;
    padding: 0 15px;
    border-top: 1px solid #d90d55;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__accordian__header {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__accordian__header {
        padding: 0 30px;
    }
}

.dotcom-megamenu__accordian__header:before, .dotcom-megamenu__accordian__header:after {
    right: 27px;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__accordian__header:before, .dotcom-megamenu__accordian__header:after {
        right: 37px;
    }
}

.dotcom-megamenu__accordian__header:before {
    content: "";
    background: #a41242;
    width: 16px;
    height: 2px;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    margin-right: -7px;
}

.dotcom-megamenu__accordian__header:after {
    content: "";
    background: #a41242;
    width: 2px;
    height: 16px;
    position: absolute;
    top: 50%;
    margin-top: -8px;
}

@media screen and (min-width: 1280px) {
    .dotcom-megamenu__accordian__header {
        cursor: default;
    }

    .dotcom-megamenu__accordian__header:before, .dotcom-megamenu__accordian__header:after {
        display: none;
    }
}

.dotcom-megamenu__accordian:last-child {
    border-bottom: 1px solid #d90d55;
}

.dotcom-megamenu__accordian__body {
    display: none;
    padding: 10px 0 20px;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__accordian__body {
        padding: 10px 0 40px;
    }
}

.dotcom-megamenu__accordian__header.open:after {
    display: none;
}

@media screen and (max-width: 768px -1) {
    .dotcom-megamenu__accordian.primaryMenu .dotcom-megamenu__accordian__header {
        display: none;
    }

    .dotcom-megamenu__accordian.primaryMenu .dotcom-megamenu__accordian__body {
        padding: 30px 0;
    }
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__accordian.primaryMenu {
        -webkit-order: 999;
        -ms-flex-order: 999;
        order: 999;
    }

    .dotcom-megamenu__accordian:last-child {
        border-bottom: none;
    }
}

.dotcom-megamenu__navSecondary .dotcom-megamenu__accordian .dotcom-megamenu__accordian__header,.megamenu__navSecondary .dotcom-megamenu__accordian .dotcom-megamenu__accordian__header {
    border: none;
    cursor: default;
    color: #0E141A;
}

.dotcom-megamenu__navSecondary .dotcom-megamenu__accordian .dotcom-megamenu__accordian__header:before, .dotcom-megamenu__navSecondary .dotcom-megamenu__accordian .dotcom-megamenu__accordian__header:after {
    display: none;
}

.dotcom-megamenu__navSecondary .dotcom-megamenu__accordian .dotcom-megamenu__accordian__body {
    padding-top: 0;
}

.dotcom-megamenu__links {
    margin-bottom: 30px;
}

.dotcom-megamenu__links:last-child {
    margin-bottom: 0;
}

.dotcom-megamenu__links a {
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__links a {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__links a {
        padding: 0 30px;
    }
}

.dotcom-megamenu__links a:hover {
    text-decoration: underline;
}

.dotcom-megamenu__links__heading {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1.53846;
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__links__heading {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__links__heading {
        padding: 0 30px;
    }
}

.dotcom-megamenu__links li {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.33333;
    margin-bottom: 36px;
}

.dotcom-megamenu__links li:last-child {
    margin-bottom: 0;
}

.dotcom-megamenu__links li.selected a:before {
    content: "";
    width: 0.22em;
    height: 1.1em;
    box-sizing: content-box;
    padding: 0.05em 0;
    background: #fff;
    position: absolute;
    top: 0.05em;
    left: 0;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__links li.selected a:before {
        left: 10px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__links li.selected a:before {
        left: 14px;
    }
}

.dotcom-megamenu__links li.selected .dotcom-megamenu__links__heading:before {
    font-size: 18px;
    top: 0em;
}

.dotcom-megamenu__links div li {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.dotcom-megamenu__links .dotcom-megamenu__submenu {
    margin-top: 12px;
}

.dotcom-megamenu__links .dotcom-megamenu__submenu li {
    margin-bottom: 12px;
}

.dotcom-megamenu__links .dotcom-megamenu__submenu li:last-child {
    margin: 0;
}

@media screen and (max-width: 768px -1) {
    a.dotcom-megamenu__links__heading {
        font-size: 26px;
        letter-spacing: 0px;
        line-height: 1.30769;
        text-transform: none;
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .selected a.dotcom-megamenu__links__heading:before {
        font-size: 26px !important;
    }

    a.dotcom-megamenu__links__heading + .dotcom-megamenu__submenu {
        display: none;
    }
}

.dotcom-megamenu__news {
    padding: 25px 40px 0;
    margin: 0 auto;
    width: 100%;
    max-width: 832px;
}

.dotcom-megamenu__news__inner {
    margin: 0 auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.dotcom-megamenu__news__mobile {
    background: #f4f4f4;
    padding: 40px 15px;
}

.dotcom-megamenu__news__mobile .dotcom-megamenu__article {
    height: 100%;
}

.dotcom-megamenu__news__mobile .swiper-container {
    padding-bottom: 40px;
}

.dotcom-megamenu__news__mobile .swiper-wrapper {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.dotcom-megamenu__news__mobile .swiper-slide {
    height: auto;
}
.dotcom-megamenu__news__mobile .swiper-slide:not(.swiper-slide-active) *{
    display: none;
}

.dotcom-megamenu__news__mobile .swiper-pagination-bullet-active {
    background: #d3135a;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__news__mobile {
        display: none;
    }
}

.dotcom-search-form {
    color: #fff;
    width: 100%;
    z-index: 10000;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    position: absolute;
    transition: all .4s ease-in-out;
    overflow: hidden;
    max-height: 100vh;
    visibility: hidden;
    background: #d3135a;
}

.dotcom-search-form__header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 15px;
}

@media screen and (min-width: 768px) {
    .dotcom-search-form__header {
        padding: 25px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-search-form__header {
        padding: 23px 30px;
    }
}

.dotcom-search-form__logo {
    max-width: 60px;
}

@media screen and (min-width: 768px) {
    .dotcom-search-form__logo {
        max-width: 120px;
    }
}

.dotcom-search-form__logo a {
    display: block;
}

.dotcom-search-form__logo img {
    width: 100%;
}

.dotcom-search-form__btns {
    margin-left: auto;
    -webkit-flex-grow: 1000;
    -ms-flex-positive: 1000;
    flex-grow: 1000;
    text-align: right;
}

@media screen and (min-width: 1024px) {
    .dotcom-search-form__btns {
        margin-left: 20px;
    }
}

.dotcom-search-form__btn {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
}

@media screen and (min-width: 768px) {
    .dotcom-search-form__btn {
        margin-left: 30px;
    }
}

.dotcom-search-form__btn-close {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .dotcom-search-form__btn-close {
        height: 21px;
        width: 21px;
    }
}

.dotcom-search-form__inner {
    padding: 60px 0 60px;
    max-height: 100vh;
    overflow: hidden;
}

@media screen and (max-height: 400px) {
    .dotcom-search-form__inner {
        padding: 30px 0 60px;
    }

    .dotcom-search-open .dotcom-search-form__inner {
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }
}

.dotcom-search-form form {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .dotcom-search-form__content {
        margin-top: 40px;
        padding-left: 65px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-search-form__content {
        margin-top: 60px;
        padding-left: 90px;
    }
}

.dotcom-search-form__content ul {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 2;
}

.page-search .dotcom-search-form__content {
    margin-top: 0;
}

.dotcom-search-form__heading {
    color: #01194b;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.52px;
    line-height: 2.07692;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .dotcom-search-form {
        padding: 0 0 100px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-search-form {
        padding: 0 0 90px;
    }
}

body.search-open .dotcom-search-form {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.dotcom-search-form__input {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 36px;
    letter-spacing: -1.44px;
    line-height: 2.22222;
    color: #fff;
    padding: 0;
    border: none;
    outline: none;
    width: 100%;
}

.dotcom-search-form .dotcom-search-form__input {
    background: #d3135a;
}

.dotcom-search-form .dotcom-search-form__input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
}

.dotcom-search-form .dotcom-search-form__input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
}

.dotcom-search-form .dotcom-search-form__input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
}

.dotcom-search-form .dotcom-search-form__input:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
}

.dotcom-search-form__input__wrap {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (min-width: 768px) {
    .dotcom-search-form__input {
        font-size: 60px;
        letter-spacing: -2.4px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-search-form__input {
        font-size: 80px;
        letter-spacing: -3.2px;
        line-height: 1;
    }
}

.dotcom-search-form__submit {
    font-size: 29px;
    letter-spacing: 0.029px;
    line-height: 4.31034%;
    top: 0.07em;
}

.dotcom-search-form__submit__wrap {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    margin-right: 20px;
}

@media screen and (min-width: 768px) {
    .dotcom-search-form__submit {
        font-size: 45px;
        letter-spacing: 0.045px;
        line-height: 2.77778%;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-search-form__submit {
        font-size: 60px;
        letter-spacing: 0.06px;
        line-height: 2.08333%;
    }

    .dotcom-search-form__submit__wrap {
        margin-right: 30px;
    }
}

.page-search .dotcom-search-form {
    position: static !important;
    top: 0 !important;
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    visibility: visible !important;
    z-index: 1;
    background: #d3135a;
}

.page-search .dotcom-search-form__logo, .page-search .dotcom-search-form__btns {
    visibility: hidden;
}

.page-search .dotcom-search-form__content {
    margin-top: 0;
}

.home-hero__title-cursor {
    width: 30px;
    height: 0;
    position: absolute;
}

.home-hero__title-cursor:before {
    content: "";
    position: absolute;
    background: #fff;
    height: 0;
    width: 100%;
    padding-top: 310%;
}

.home-hero {
    height: 100vh;
    min-height: 440px;
    position: relative;
    visibility: hidden;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (min-width: 1024px) {
    .home-hero__content__inner {
        width: 100%;
    }

    .home-hero__title-container {
        height: 200px;
        width: 730px;
        margin-left: -60px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 767px) {
    .home-hero__title-container {
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    .home-hero__title-mask {
        overflow: hidden;
        height: 200px;
        position: absolute;
        right: 0;
        width: 0;
        transition: opacity 0.4s, width 0.1s 0.6s;
        display: none;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@media screen and (min-width: 1024px) and (max-width: 767px) {
    .home-hero__title-mask {
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    .home-hero .swiper-slide-active .home-hero__title-mask {
        width: 100%;
        transition: width 1s 0.2s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s 0.2s;
        display: block;
    }

    .home-hero__title-wrap {
        position: absolute;
        right: 0;
        width: 730px;
        padding-left: 60px;
    }
}

.home-hero .swiper-container, .home-hero .swiper-wrapper, .home-hero .swiper-slide {
    height: 100%;
}

.home-hero .swiper-slide {
    overflow: hidden;
}

.home-hero .swiper-container {
    position: absolute;
    top: 0;
    width: 100%;
}

.home-hero__video {
    display: none;
}

.home-hero__content {
    color: #fff;
    margin: 0 30px;
    height: 100%;
}

.home-hero__content .text--uppercase-heading {
    color: #fff;
}

.home-hero__content .text--page-heading {
    margin: 20px 0 30px;
    font-size: 35px;
    min-height: 80px;
}

@media screen and (min-width: 768px) {
    .home-hero__content .text--page-heading {
        font-size: 58px;
        line-height: 64px;
    }
}

@media screen and (min-width: 1024px) {
    .home-hero__content .text--page-heading {
        font-size: 64px;
        line-height: 68px;
    }
}

.home-hero__content .btn-cta {
    color: #fff;
    border-color: #fff;
    margin-top: 0;
}

.home-hero__title-cursor {
    width: 21px;
    left: -30px;
    top: 7px;
}

@media screen and (min-width: 768px) {
    .home-hero__title-cursor {
        left: -50px;
        top: 8px;
        width: 36px;
    }
}

@media screen and (min-width: 1024px) {
    .home-hero__title-cursor {
        width: 40px;
        top: 28px;
        left: 0;
    }
}

.home-hero__related__articles {
    margin-top: 20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.home-hero__related__article {
    width: 50%;
    padding: 0 10px;
}

@media screen and (min-width: 768px) {
    .home-hero__related__article {
        padding: 0 40px;
    }
}

.home-hero__related__article:first-child {
    padding-left: 0;
}

.home-hero__related__article:last-child {
    padding-right: 0;
}

.home-hero__related__article .text--date {
    margin-bottom: 10px;
    color: #fff;
}

.home-hero__related__article__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    color: #fff;
}

@media screen and (min-width: 768px) {
    .home-hero__related__article__title {
        font-size: 18px;
    }
}

.home-hero__content__inner {
    position: absolute;
    top: 15%;
}

.home-hero__related {
    position: absolute;
    bottom: 13%;
}

@media screen and (min-width: 768px) {
    .home-hero__related {
        bottom: 16%;
    }
}

@media screen and (max-height: 480px) {
    .home-hero__related {
        bottom: 20px;
    }
}

@media screen and (min-width: 768px) {
    .home-hero__content__inner {
        top: 20%;
    }
}

@media screen and (min-width: 1024px) {
    .home-hero__content__inner {
        position: relative;
        top: 38%;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        padding-left: 30px;
    }

    .home-hero__related {
        position: absolute;
        bottom: 120px;
    }
}

@media screen and (min-width: 1024px) and (min-height: 768px) {
    .home-hero__related {
        bottom: 22%;
    }
}

@media screen and (min-width: 768px) {
    .home-hero__content {
        margin: 0 50px;
    }
}

@media screen and (min-width: 1024px) {
    .home-hero__video {
        display: block;
        position: absolute;
        min-width: 100%;
        min-height: 100%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .home-hero__video__wrap {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 50%;
        top: 50%;
    }

    .home-hero__content {
        padding: 0 40px;
        max-width: 1370px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero__content::after {
        clear: both;
        content: "";
        display: table;
    }

    .home-hero__content__inner {
        max-width: 700px;
    }

    .home-hero__related {
        max-width: 500px;
        padding-left: 30px;
    }

    .home-hero__related__article {
        padding-right: 40px;
    }
}

.home-hero__bg {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    overflow: hidden;
    display: none;
}

@media screen and (min-width: 1024px) {
    .home-hero__bg {
        box-sizing: content-box;
        padding-bottom: 500px;
        position: fixed;
    }
}

.home-hero__bg__bg--black {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
}

.home-hero__bg:first-child {
    display: block;
}

.home-hero__bg__image {
    height: 70%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    overflow: hidden;
    transition: -webkit-transform 5s ease-in-out;
    transition: transform 5s ease-in-out;
    transition: transform 5s ease-in-out, -webkit-transform 5s ease-in-out;
}

.home-hero__bg__image img {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /* Preserve aspet ratio */
    min-width: 100%;
    min-height: 100%;
}

@media screen and (min-width: 1024px) {
    .home-hero__bg__image {
        height: 80%;
    }
}

.home-hero__bg__image.zoom {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.home-hero__svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    overflow: hidden;
}

.home-hero__svg__tablet {
    display: none;
}

.home-hero__svg__desktop {
    visibility: hidden;
    overflow: hidden;
    width: 2560px;
    height: 2560px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -1280px;
    margin-top: -1280px;
    -webkit-transform-origin: 53% 55%;
    -ms-transform-origin: 53% 55%;
    transform-origin: 53% 55%;
    -webkit-transform: scale(4.5) translate(20.4%, -10%) rotate(-60deg);
    -ms-transform: scale(4.5) translate(20.4%, -10%) rotate(-60deg);
    transform: scale(4.5) translate(20.4%, -10%) rotate(-60deg);
}

@media screen and (min-width: 1300px) {
    .home-hero__svg__desktop {
        -webkit-transform: scale(6) translate(21%, -8%) rotate(-60deg);
        -ms-transform: scale(6) translate(21%, -8%) rotate(-60deg);
        transform: scale(6) translate(21%, -8%) rotate(-60deg);
    }
}

@media screen and (min-width: 1800px) {
    .home-hero__svg__desktop {
        -webkit-transform: scale(7) translate(21.8%, -8%) rotate(-60deg);
        -ms-transform: scale(7) translate(21.8%, -8%) rotate(-60deg);
        transform: scale(7) translate(21.8%, -8%) rotate(-60deg);
    }
}

.home-hero__svg__mobile {
    display: block;
    width: 100%;
    height: 24px;
}

.home-hero__svg__mobile-tablet-wrap {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.home-hero__svg__block {
    height: 36vh;
    min-height: 130px;
    margin-top: -1px;
}

@media screen and (min-width: 768px) {
    .home-hero__svg__block {
        height: 30vh;
    }
}

@media screen and (min-width: 768px) {
    .home-hero__svg__mobile {
        display: none;
    }

    .home-hero__svg__tablet {
        display: block;
        width: 100%;
        height: 110px;
    }
}

@media screen and (min-width: 1024px) {
    .home-hero__svg__mobile-tablet-wrap {
        display: none;
    }

    .home-hero__svg__desktop.ready {
        visibility: visible;
    }
}

.page-hub .list-content_inner {
    max-width: 1080px;
}

.page-hub .list-item {
    padding: 0;
}

.page-hub .list-item:last-child {
    border-bottom: 0;
}

.page-hub .list-item--press:first-child {
    padding-top: 20px;
}

.page-hub .list-item--press:last-child {
    padding-bottom: 20px;
}

.hub {
    background-color: #EFF2F7;
}

.hub.bg-white {
    background: #fff;
}

.hub_group {
    padding: 100px 0 80px;
}

@media screen and (max-width: 767px) {
    .hub_group {
        margin: auto;
    }
}

.hub_header {
    text-align: center;
    margin: -4px auto 35px;
}

.hub_header_inner {
    max-width: 1258px;
    margin: 0 auto;
}

.hub_header_inner h2 {
    margin-bottom: 35px;
}

.hub_inner {
    margin: auto;
    max-width: 1278px;
    box-sizing: content-box;
    font-size: 0;
    padding: 0 10px;
}

.hub_group + .hub_group {
    padding-top: 0;
}

.hub_group--header-left {
    max-width: 1298px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 10px;
    padding-left: 20px;
}

.hub_group--header-left::after {
    clear: both;
    content: "";
    display: table;
}

.hub_group--header-left .hub_header {
    float: left;
    width: 30%;
    text-align: left;
}

.hub_group--header-left .hub_inner {
    text-align: left;
    padding: 0;
    float: right;
    width: 70%;
}

@media screen and (max-width: 1318px) and (min-width: 768px) {
    .hub .text--tile-description {
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: 1.75;
    }
}

@media (max-width: 1318px) {
    .hub_inner {
        max-width: 776px;
        text-align: left;
    }

    .hub_header {
        max-width: 1104px;
    }

    .hub_group--header-left {
        max-width: 1124px;
    }

    .hub_group--header-left_inner {
        text-align: right;
        max-width: 1104px;
    }

    .hub_group + .hub_group:before {
        max-width: 1084px;
    }
}

@media (max-width: 1123px) {
    .hub_header {
        max-width: 1134px;
        padding: 0 25px;
        margin-left: auto;
        margin-right: auto;
        float: none !important;
    }

    .hub_header-links--tablet-two-column {
        max-width: 766px;
    }

    .hub_group--header-left {
        max-width: 1134px;
        padding-left: 0;
    }

    .hub_group--header-left .hub_header,
    .hub_group--header-left .hub_inner {
        width: 100%;
    }

    .hub_group--header-left .hub_header {
        max-width: 766px;
        text-align: left;
    }

    .hub_group--header-left .hub_inner {
        max-width: 764px;
        float: none;
        text-align: left;
        padding-left: 25px;
        left: -10px;
    }

    .hub_header {
        max-width: 766px;
    }

    .hub_inner {
        box-sizing: border-box;
        text-align: left;
        padding: 0 15px;
    }

    .hub_group + .hub_group:before {
        margin-left: 25px;
        margin-right: 25px;
    }
}

@media screen and (max-width: 767px) {
    .hub_group {
        padding: 30px 0;
    }

    .hub_header {
        padding: 0 15px;
    }

    .hub_inner {
        max-width: 400px !important;
        padding: 0 15px;
        margin: 0 auto;
    }

    .hub_group + .hub_group {
        padding-top: 0;
    }

    .hub_group + .hub_group:before {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 50px;
    }
}

.hub_header p {
    margin-top: 12px;
    color: #666666;
}

.hub_header p + ul {
    margin-top: 30px;
}

.hub_header ul {
    margin-top: 16px;
}

.hub_header a:after {
    display: block;
    font-family: 'icomoon';
    content: "\e905";
    font-style: normal;
    font-weight: normal;
}

.hub_header a:after {
    display: inline-block;
    padding-left: 10px;
    font-size: 12px;
    color: #d3135a;
}

.hub_header a:hover {
    text-decoration: underline;
}

.hub_cta {
    margin-top: 60px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .hub_header {
        margin-bottom: 25px;
    }

    .hub_header:after {
        content: '';
        display: block;
        height: 1px;
        background-color: #ddd;
        margin-top: 30px;
    }

    .hub_header ul {
        margin-top: 20px;
    }

    .hub_header li {
        width: 100% !important;
        padding-left: 0 !important;
    }

    .hub_header li + li {
        padding-top: 5px;
    }

    .hub_header p {
        font-size: 15px;
        margin-top: 16px;
    }

    .hub_header p + ul {
        margin-top: 16px;
    }

    .hub_header a {
        font-size: 18px;
    }

    .hub_cta {
        margin-top: 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 1318px) {
    .page-hub .toggle-content_header,
    .page-hub .list-content,
    .page-hub .contact {
        max-width: 1144px;
        padding-left: 30px;
        padding-right: 30px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 767px) {
    .page-hub .toggle-content_header,
    .page-hub .list-content,
    .page-hub .contact {
        padding: 30px 15px;
    }
}

.hub_header--bg {
    margin-bottom: -50px;
    max-width: none !important;
}

.hub_header--bg .hub_header_inner {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media screen and (min-width: 768px) {
    .hub_header--bg {
        margin-bottom: -80px;
    }

    .hub_header--bg .hub_header_inner {
        padding-top: 80px;
        padding-bottom: 130px;
    }
}

.hub_header--bg .text--page-subheading, .hub_header--bg .text--list-description {
    color: #fff;
}

.hub_header--bg.color-scheme--green {
    background-color: #0B563D;
}

.hub_header--bg.color-scheme--green h2 {
    color: #fff;
}

.hub_header--bg.color-scheme--blue {
    background-color: #002466;
}

.hub_header--bg.color-scheme--blue h2 {
    color: #fff;
}

.hub_header--bg.color-scheme--blue {
    background-color: #002466;
}

.hub_header--bg.color-scheme--blue h2 {
    color: #0E141A;
}

.hub_header--bg.color-scheme--pink, .hub_header--bg.color-scheme--red {
    background-color: #d3135a;
}

.hub_header--bg.color-scheme--pink h2, .hub_header--bg.color-scheme--red h2 {
    color: #fff;
}

.hub_header--bg.color-scheme--forest {
    background-color: #0f955a;
}

.hub_header--bg.color-scheme--forest h2 {
    color: #fff;
}

.hub_header--bg.color-scheme--orange {
    background-color: #0152E8;
}

.hub_header--bg.color-scheme--orange h2 {
    color: #fff;
}

.hub-secondary-nav {
    height: 58px;
    font-size: 0;
}

.hub-secondary-nav_inner {
    transition: 0.3s all ease-in-out;
    background-color: rgba(255, 255, 255, 0.98);
    text-align: center;
    width: 100%;
    border-bottom: 5px solid #dedede;
    box-sizing: content-box;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.hub-secondary-nav ul {
    white-space: nowrap;
}

.hub-secondary-nav_list-item {
    display: inline-block;
}

.hub-secondary-nav_list-item:first-child {
    margin-left: 0px;
}

.hub-secondary-nav_list-item a {
    font-size: 14px;
}

.hub-secondary-nav_list-item a.active {
    color: white;
    background-color: #d3135a;
}

@media screen and (min-width: 1024px) {
    .hub-secondary-nav_list-item a:hover {
        color: white;
        background-color: #d3135a;
    }
}

.hub-secondary-nav a:hover {
    text-decoration: none;
}

.hub-secondary-nav_anchor-link {
    height: 58px;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1;
    color: #000000;
    text-transform: uppercase;
    padding: 22px 15px;
    display: block;
    cursor: pointer;
}

.activate-sticky-nav .hub-secondary-nav_inner {
    position: fixed;
    top: 0px;
    z-index: 10000;
}

@media only screen and (max-width: 768px) and (orientation: landscape) {
    .activate-sticky-nav .hub-secondary-nav_inner {
        position: static !important;
    }
}

.activate-sticky-nav .hub-secondary-nav_inner.hub-secondary-nav_inner--header-sticky {
    top: 61px;
}

@media screen and (min-width: 768px) {
    .activate-sticky-nav .hub-secondary-nav_inner.hub-secondary-nav_inner--header-sticky {
        top: 101px;
    }
}

@media only screen and (max-width: 768px) and (orientation: landscape) {
    .activate-sticky-nav .hub-secondary-nav_inner.hub-secondary-nav_inner--header-sticky {
        top: 0 !important;
    }
}

.hero-cta {
    border-color: #ffffff;
    color: #ffffff;
    margin-top: 50px;
}

.hero-cta:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.image-hero {
    background-color: none;
}

.image-hero_inner {
    margin-top: 47px;
    max-width: 1280px;
}

.image-hero_detail {
    display: none;
}

@media screen and (min-width: 768px) {
    .image-hero_detail {
        display: block;
        max-width: 60%;
        margin-left: auto;
        margin-right: auto;
    }
}

.image-hero {
    background-size: cover;
    background-position: top right;
    box-sizing: inherit;
    padding: 87px 0;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .image-hero {
        padding: 180px 0 170px;
    }
}

.image-hero--reduce-padding {
    padding: 110px 0 56px;
}

@media screen and (min-width: 768px) {
    .image-hero--reduce-padding {
        padding-bottom: 100px;
    }
}

@media screen and (min-width: 1024px) {
    .image-hero--reduce-padding {
        padding-bottom: 170px;
    }
}

.image-hero_inner {
    float: left;
    display: block;
    width: 76.76824%;
    float: none;
    margin-left: auto;
    margin-right: auto;
    min-width: 250px;
    position: relative;
    text-align: center;
}

.image-hero_inner:last-child {
    width: 74.41059%;
}

@media screen and (min-width: 768px) {
    .image-hero_inner {
        float: left;
        display: block;
        width: 85.29804%;
        float: none;
    }

    .image-hero_inner:last-child {
        width: 82.94039%;
    }
}

.image-hero_top {
    padding-top: 15px;
}

.image-hero_top::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (min-width: 768px) {
    .image-hero_top {
        padding-top: 12px;
    }
}

.image-hero_arrow {
    display: none;
}

@media screen and (min-width: 768px) {
    .image-hero_arrow {
        top: 0px;
        left: 50%;
        display: block;
        position: absolute;
        width: 26px;
        margin-left: -12px;
        font-size: 18px;
        z-index: 3000;
        height: 80px;
        background-color: #ffffff;
    }

    .image-hero_arrow:before {
        display: block;
        font-family: 'icomoon';
        content: "\e900";
        font-style: normal;
        font-weight: normal;
        -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .image-hero_arrow:before {
        top: 12px;
        margin-left: -10px;
        position: absolute;
        left: 50%;
    }
}

.image-hero_breadcrumbs {
    display: none;
    padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .image-hero_breadcrumbs {
        display: block;
        margin: 0px auto;
        padding-bottom: 15px;
    }
}

.image-hero_breadcrumbs > ul {
    display: inline-block;
}

.image-hero_date {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    letter-spacing: -0.24px;
    line-height: 1;
    color: #ffffff;
    margin-top: 40px;
}

@media screen and (min-width: 768px) {
    .image-hero_date {
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: 1;
        margin-top: 50px;
    }
}

.image-hero_detail {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #ffffff;
    font-size: 22px;
    margin-top: 50px;
}

.investor-panels__left .investor-panels__inner, .investor-panels__right .investor-panels__inner {
    margin: 0 auto;
}

.investor-panels__left {
    background: #f4f4f4;
}

@media screen and (min-width: 1024px) {
    .investor-panels__left .investor-panels__inner {
        padding-right: 70px;
    }
}

.investor-panels__right {
    background: #0E141A;
    color: #fff;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
}

.investor-panels__right .text--page-subheading {
    color: #fff;
    line-height: 150%;
    margin-bottom: 50px;
}

.investor-panels__right p {
    margin-bottom: 40px;
}

@media screen and (min-width: 1024px) {
    .investor-panels__right .investor-panels__inner {
        padding-left: 70px;
    }
}

@media screen and (min-width: 1024px) {
    .investor-panels {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .investor-panels__left, .investor-panels__right {
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .investor-panels__left .investor-panels__inner {
        margin-right: 0;
    }

    .investor-panels__right .investor-panels__inner {
        margin-left: 0;
    }
}

.investor-panels__inner {
    padding: 0 15px;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .investor-panels__inner {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .investor-panels__inner {
        padding: 0 30px;
    }
}

@media screen and (min-width: 768px) {
    .investor-panels__inner {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (min-width: 1024px) {
    .investor-panels__inner {
        max-width: 658px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.investor-panels .list-content {
    padding: 0;
}

.investor-panels .list-content_cta {
    text-align: left;
}

.investor-panels__links {
    font-size: 24px;
}

.investor-panels__links li {
    margin-bottom: 12px;
}

.investor-panels__links li a:hover {
    text-decoration: underline;
}

.investor-panels__links li a:after {
    content: "";
    position: absolute;
    /*background-image: url(/img/select-arrow.png);*/
    background-size: 11px 7px;
    width: 11px;
    height: 7px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: 50%;
    margin-top: -3.5px;
    right: -20px;
}

.map {
    overflow: hidden;
    margin-bottom: 80px;
    margin-top: 80px;
}

@media screen and (min-width: 768px) {
    .map {
        margin-bottom: 120px;
    }
}

.map__google-map-container {
    width: 100%;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: all 0.4s ease-in-out;
    display: none;
}

@media screen and (min-width: 768px) {
    .map__google-map-container {
        display: block;
        height: 400px;
    }
}

@media screen and (min-width: 900px) {
    .map__google-map-container {
        height: 640px;
    }
}

@media screen and (min-width: 1500px) {
    .map__google-map-container {
        height: 1100px;
        max-height: 80vh;
    }
}

.map__google-map {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
}

.map__google-map.gradient-blue[style] {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4eb777+0,40b7e1+100 */
    background: #0347d5 !important;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #0347d5 0%, #002466 100%) !important;
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0347d5', endColorstr='#002466', GradientType=0) !important;
    /* IE6-9 */
}

.map__google-map.gradient-green[style] {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4eb777+0,40b7e1+100 */
    background: #008c5a !important;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #008c5a 0%, #0B563D 100%) !important;
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#008c5a', endColorstr='#0B563D', GradientType=0) !important;
    /* IE6-9 */
}

.map__google-map.gradient-pink[style] {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4eb777+0,40b7e1+100 */
    background: #d3135a !important;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #d3135a 0%, #FFC0CB 100%) !important;
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#139fb0', endColorstr='#d3135a', GradientType=0) !important;
    /* IE6-9 */
}

.map__google-map .gm-style-iw {
    text-align: center;
}

.map__mobile-container {
    width: 100%;
    background: no-repeat center top;
    background-size: cover;
    padding: 70px 15px 140px;
}

@media screen and (min-width: 768px) {
    .map__mobile-container {
        display: none;
    }
}

.map__static-img {
    max-width: 100%;
    display: block;
    margin: auto;
}

.map .select-wrap {
    box-shadow: 3px 3px 0px 0px rgba(130, 130, 130, 0.2);
    width: 280px;
    background-position: 94% 50%;
}

.map .select-wrap select {
    width: 100%;
}

.map__select-container {
    text-align: center;
}

.map__heading {
    text-align: center;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .map__heading {
        margin-bottom: 50px;
    }
}

@media screen and (min-width: 1024px) {
    .map__heading {
        padding: 0;
    }
}

.map__cta {
    color: #000;
}

.map__cta__wrap {
    text-align: center;
    margin-top: 40px;
}

.map__card {
    background: #fff;
    margin: 0 15px 30px;
    box-shadow: 5px 5px 0px 0px rgba(130, 130, 130, 0.15);
}

.map__card__inner {
    margin-top: -80px;
}

.map__card__img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (min-width: 768px) {
    .map__card {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 380px;
        z-index: 1;
        -webkit-transform: translate(-110%, 0);
        -ms-transform: translate(-110%, 0);
        transform: translate(-110%, 0);
        transition: -webkit-transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
        margin: 0;
        box-shadow: none;
    }

    .map__card__inner {
        margin-top: 0;
    }

    .map__card__img {
        display: none;
    }
}

@media screen and (min-width: 900px) {
    .map__card__img {
        display: block;
    }
}

.map__card__inner {
    display: none;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.map__card__content {
    text-align: left;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.71429;
    padding: 30px 15px;
    border: 1px solid #dddddd;
    border-top: none;
}

@media screen and (min-width: 768px) {
    .map__card__content {
        border: none;
        padding: 30px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .map__card__content {
        padding: 30px 30px;
    }
}

.map__card__content h1, .map__card__content h2, .map__card__content h3, .map__card__content h4, .map__card__content h5, .map__card__content h6 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1;
    margin-bottom: 30px;
}

.map__card__content a {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
}

.map__card__content p {
    margin-bottom: 30px;
}

.map__card__content ul {
    margin: 30px 0;
}

.map__card__content li {
    margin-bottom: 10px;
}

.map__card__content .icon {
    color: #d3135a;
    margin-right: 18px;
}

.map__card .btn-close {
    display: none;
    background: #d3135a;
    color: #fff;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 55px;
    border-radius: 50%;
    font-size: 20px;
    text-indent: -3px;
    box-shadow: 5px 0px 0px 0px rgba(130, 130, 130, 0.3);
    position: absolute;
    right: 0;
    top: 50%;
    margin-right: -25px;
    margin-top: -25px;
}

@media screen and (min-width: 768px) {
    .map__card .btn-close {
        display: block;
    }
}

.map.cardVisible .map__card {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.map.offsetMap .map__google-map-container {
    -webkit-transform: translate(200px, 0);
    -ms-transform: translate(200px, 0);
    transform: translate(200px, 0);
}

.org-content_container {
    margin: 28px auto;
    max-width: 960px;
    padding: 0 0 60px 0;
    text-align: center;
    font-size: 0;
}

@media screen and (min-width: 1290px) {
    .org-content_container {
        max-width: 1260px;
    }
}

.org-content_inner {
    margin: 0 auto;
    padding: 0px 15px;
    max-width: 430px;
    text-align: left;
}

@media screen and (min-width: 768px) {
    .org-content_inner {
        max-width: none;
        padding: 0px;
    }
}

.presentation {
    padding: 0 15px;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .presentation {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .presentation {
        padding: 0 30px;
    }
}

.presentation__inner {
    max-width: 800px;
    margin: 0 auto;
}

.presentation .swiper-container {
    border: 2px solid #dddddd;
    border-bottom: none;
}

.presentation .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.presentation__controls {
    background: #d3135a;
    padding: 10px;
    color: #fff;
    text-align: center;
}

.presentation__controls button {
    vertical-align: middle;
    padding: 10px;
    font-size: 24px;
    top: 3px;
}

.presentation__pagination {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    margin: 0 50px;
    width: auto;
    bottom: auto;
}

.presentation__btn-first .icon-chevron-left,
.presentation__btn-first .icon-chevron-right, .presentation__btn-last .icon-chevron-left,
.presentation__btn-last .icon-chevron-right {
    display: inline-block;
}

.presentation__btn-first .icon-chevron-left:first-child,
.presentation__btn-first .icon-chevron-right:first-child, .presentation__btn-last .icon-chevron-left:first-child,
.presentation__btn-last .icon-chevron-right:first-child {
    margin-right: -10px;
}

.presentation__btn-first {
    float: left;
}

.presentation__btn-last {
    float: right;
}

.presentation__heading {
    margin-bottom: 30px;
    padding-right: 100px;
}

.presentation__download {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #d3135a;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -0.6em;
}

.presentation__download .icon-download {
    margin-right: 5px;
}

.stock-market {
    background: #0E141A;
    color: #fff;
}

.stock-market__left .stock-market__inner, .stock-market__right .stock-market__inner {
    margin: 0 auto;
}

.stock-market__left {
    background: #0E141A;
}

.stock-market__right {
    background: #fff;
}

.stock-market__right .stock-market__inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .stock-market {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .stock-market__left, .stock-market__right {
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .stock-market__left .stock-market__inner {
        margin-right: 0;
    }

    .stock-market__right .stock-market__inner {
        margin-left: 0;
    }
}

.stock-market__inner {
    padding: 0 15px;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .stock-market__inner {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .stock-market__inner {
        padding: 0 30px;
    }
}

@media screen and (min-width: 768px) {
    .stock-market__inner {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (min-width: 1024px) {
    .stock-market__inner {
        max-width: 658px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.stock-market .text--page-subheading {
    color: #fff;
    margin-bottom: 10px;
}

.stock-market__shareprices {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 20px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.stock-market__shareprices .shareprice {
    min-width: 160px;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
    .stock-market__shareprices {
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .stock-market__shareprices .shareprice {
        width: 33%;
    }
}

.stock-market__updated {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #999999;
}

.stock-market__cta-wrap {
    margin-top: 20px;
    text-align: left;
}

.subscribe__header {
    margin: 60px 0 0;
    padding-bottom: 0px;
}

@media screen and (max-width: 767px) {
    .subscribe__header {
        padding: 45px 0 0;
    }
}

@media screen and (min-width: 768px) {
    .subscribe__header {
        padding-left: 30px;
        border-left: 1px solid #dddddd;
    }
}

.subscribe__content {
    padding-top: 65px;
    padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .subscribe__content {
        border-left: 1px solid #dddddd;
        padding-left: 30px;
    }
}

.subscribe p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.16667;
}

.subscribe .form-row {
    margin-top: 30px;
}

.subscribe .submit-container {
    position: relative;
}

.subscribe label {
    margin: 0 20px 0 5px;
    display: inline-block;
}

.subscribe .btn-submit {
    position: absolute;
    right: 0;
    top: 0;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.subscribe .textinput {
    width: 100%;
    border: 2px solid #dddddd;
    height: 53px;
    margin-bottom: 10px;
    padding-left: 10px;
    outline: none;
}

.subscribe-panel {
    background: #0347d5;
    color: #fff;
}

.subscribe-panel__header {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    padding: 20px 60px;
    text-align: center;
}

.subscribe-panel .error {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 10px;
}

.subscribe-panel__content {
    padding: 0 20px 20px;
}

.subscribe-panel__form {
    max-width: 440px;
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.subscribe-panel__form input {
    width: 100%;
    padding: 0 10px;
    height: 53px;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #000;
    outline: none;
    border: 2px solid #dddddd;
    border-radius: 0;
    -webkit-appearance: none;
    margin-bottom: 10px;
    background: #fff;
}

@media screen and (max-width: 767px) {
    .subscribe-panel__form button {
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    .subscribe-panel__form button {
        position: absolute;
        top: 0;
        right: 0;
    }
}

.text-columns {
    padding: 0 15px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
}

@media screen and (min-width: 768px) {
    .text-columns {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .text-columns {
        padding: 0 30px;
    }
}

.text-columns h2 {
    margin-bottom: 35px;
}

.text-columns .col {
    padding-top: 40px;
    margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .text-columns {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .text-columns .col {
        padding-top: 50px;
        padding-bottom: 50px;
        margin-bottom: 0;
        padding-left: 30px;
    }

    .text-columns .col:before {
        content: "";
        position: absolute;
        top: 50px;
        bottom: 50px;
        width: 1px;
        left: 0;
        background: #dddddd;
    }

    .text-columns .col:first-child {
        padding-left: 0;
        padding-right: 30px;
        border: none;
    }

    .text-columns .col:first-child:before {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .text-columns .col {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.text-columns .text--page-subheading, .text-columns p {
    margin-bottom: 40px;
}

.text-columns__links a {
    color: #000;
    text-decoration: none;
}

.text-columns__links a:after {
    display: block;
    font-family: 'icomoon';
    content: "\e905";
    font-style: normal;
    font-weight: normal;
}

.text-columns__links a:hover {
    text-decoration: underline;
}

.text-columns__links a:after {
    display: inline-block;
    padding-left: 10px;
    font-size: 12px;
    color: #d3135a;
}

.toggle-content {
    padding: 80px 0;
}

@media screen and (max-width: 767px) {
    .toggle-content {
        padding: 30px 0;
    }
}

.toggle-content_header {
    max-width: 1140px;
    padding: 0 30px;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .toggle-content_header {
        padding: 0 15px;
    }
}

.toggle-content_header h2 {
    display: inline;
    color: #cecece;
    transition: all 100ms linear;
}

.toggle-content_header a {
    display: inline-block;
}

.toggle-content_header a._active h2, .toggle-content_header a:hover h2 {
    color: #000000;
}

.toggle-content_header a._active {
    pointer-events: none;
}

.toggle-content_header a + a:before {
    content: '';
    height: 36px;
    width: 1px;
    background-color: #cecece;
    display: inline-block;
    margin: 0 10px 0 14px;
    position: relative;
    top: 6px;
}

.component.accordian-table {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
    margin: 0 auto;
}

.component.accordian-table::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (max-width: 767px) {
    .component.accordian-table {
        display: none;
    }
}

.component.accordian-table .accordian-table_ct {
    margin: 60px 30px 0px;
}

.component.accordian-table .accordian-table_inner h3 {
    font-size: 30px;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #111111;
    margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
    .component.accordian-table .accordian-table_inner h3 {
        padding-left: 35px;
        padding-right: 35px;
    }
}

.component.accordian-table .accordian-table_inner table {
    width: 100%;
    border: 3px #dddddd solid;
    margin-bottom: 100px;
}

.component.accordian-table .accordian-table_inner th, .component.accordian-table .accordian-table_inner td {
    padding-left: 30px;
    text-align: left;
    border-right: 1px #e5e5e5 solid;
    border-left: 1px #e5e5e5 solid;
}

.component.accordian-table .accordian-table_inner th:first-child, .component.accordian-table .accordian-table_inner td:first-child {
    border-left: none;
}

.component.accordian-table .accordian-table_inner th:last-child, .component.accordian-table .accordian-table_inner td:last-child {
    border-right: none;
}

.component.accordian-table .accordian-table_inner th {
    font-size: 16px;
    height: 60px;
    line-height: 60px;
    background-color: #fcfcfc;
    border-bottom: 1px #e5e5e5 solid;
}

.component.accordian-table .accordian-table_inner td {
    font-size: 18px;
    vertical-align: bottom;
}

.component.accordian-table .accordian-table_inner tr {
    height: 50px;
    font-weight: lighter;
}

.component.accordian-table .accordian-table_inner tr:first-child {
    font-weight: bold;
}

.component.accordian-table .accordian-table_inner tr:last-child {
    height: 90px;
}

.component.accordian-table .accordian-table_inner tr:last-child td {
    padding-bottom: 40px;
}

.carousel {
    display: inline-block;
    position: relative;
    margin-bottom: 70px;
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .carousel {
        margin-bottom: 0px;
        overflow: hidden;
    }
}

.carousel_wrap {
    font-size: 0px;
    overflow: hidden;
}

.carousel_control-wrap {
    position: static;
}

.carousel_arrow-wrap {
    position: static;
}

.carousel_arrow {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1000;
    width: 20px;
    height: 50px;
    top: 50%;
    outline: none;
}

.carousel_arrow:before {
    font-size: 8px;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .carousel_arrow {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        font-size: 21px;
        width: 75px;
        height: 70px;
        top: 100%;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

    .carousel_arrow:before {
        font-size: 18px;
    }
}

@media screen and (min-width: 1024px) {
    .carousel_arrow {
        display: block;
        top: auto;
        bottom: 0px;
    }
}

.carousel_prev {
    left: 0px;
}

.carousel_prev:before {
    display: block;
    font-family: 'icomoon';
    content: "\e900";
    font-style: normal;
    font-weight: normal;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
    .carousel_prev {
        left: auto;
        right: 75px;
    }
}

.carousel_next {
    right: 0px;
}

.carousel_next:before {
    display: block;
    font-family: 'icomoon';
    content: "\e900";
    font-style: normal;
    font-weight: normal;
}

@media screen and (min-width: 768px) {
    .carousel_next {
        right: 0px;
    }
}

.carousel_prev {
    left: 0px;
}

.carousel_prev:before {
    display: block;
    font-family: 'icomoon';
    content: "\e900";
    font-style: normal;
    font-weight: normal;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
    .carousel_prev {
        left: auto;
        right: 75px;
    }
}

.carousel_meta-wrap {
    position: absolute;
    top: 100%;
    min-height: 40px;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.ie11 .carousel_meta-wrap {
    height: 40px;
}

@media screen and (min-width: 768px) {
    .carousel_meta-wrap {
        min-height: 70px;
    }

    .ie11 .carousel_meta-wrap {
        height: 70px;
    }
}

@media screen and (min-width: 1024px) {
    .carousel_meta-wrap {
        max-width: 740px;
        right: 0px;
        bottom: 0px;
        top: auto;
        z-index: 1000;
        width: 100%;
    }
}

.carousel_count-wrap {
    width: 40px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .carousel_count-wrap {
        width: 70px;
    }
}

.carousel_count {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 11px;
    letter-spacing: 1.98px;
    line-height: 1;
}

@media screen and (min-width: 768px) {
    .carousel_count {
        font-size: 15px;
        letter-spacing: 2.7px;
        line-height: 1.46667;
    }
}

.carousel_caption-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0px 5px;
}

@media screen and (min-width: 768px) {
    .carousel_caption-wrap {
        padding: 0px 170px 0px 20px;
        text-align: right;
        max-width: 760px;
        margin-left: auto;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        -ms-grid-row-align: flex-end;
        align-items: flex-end;
    }

    .ie11 .carousel_caption-wrap {
        overflow: hidden;
        display: block;
        max-width: inherit;
    }
}

.carousel_caption {
    padding: 5px 0;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 11px;
    letter-spacing: -0.33px;
    line-height: 1.27273;
}

.ie11 .carousel_caption {
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
    .carousel_caption {
        font-size: 15px;
        letter-spacing: -0.3px;
        line-height: 1.2;
    }

    .ie11 .carousel_caption {
        left: 10px;
        right: 170px;
    }
}

.carousel_item {
    width: 100%;
    display: inline-block;
}

.carousel_item_wrap {
    width: 100%;
}

.carousel_item_wrap img {
    width: 100%;
    height: auto;
}

.carousel_wrap--single ~ * .carousel_prev {
    display: none;
}

.carousel_wrap--single ~ * .carousel_next {
    display: none;
}

.carousel_wrap--single ~ * .carousel_count-wrap {
    display: none;
}

.carousel_wrap--single ~ * .carousel_caption-wrap {
    padding-right: 60px;
    padding-left: 60px;
}

.carousel_arrow {
    background-color: #d3135a;
}

.carousel_meta-wrap {
    background-color: #d3135a;
}

.carousel_count-wrap {
    color: #ffffff;
    background-color: #000000;
}

.carousel_caption {
    color: #ffffff;
}

@media screen and (min-width: 1024px) {
    .carousel.carousel--no-caption .carousel_meta-wrap {
        width: 220px;
    }
}

.carousel.carousel--no-caption .carousel_caption {
    font-size: 0px !important;
}

.carousel.carousel--no-caption .carousel_wrap--single ~ * .carousel_meta-wrap {
    display: none;
}

.full-bleed-image {
    width: 100%;
    display: inline-block;
    position: relative;
    font-size: 0px;
}

.full-bleed-image_image {
    width: 100%;
}

.full-bleed-image_caption-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: right;
    height: 40px;
}

@media screen and (min-width: 768px) {
    .full-bleed-image_caption-wrap {
        text-align: right;
        max-width: 570px;
        margin-left: auto;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        -ms-grid-row-align: flex-end;
        align-items: flex-end;
        height: 70px;
    }
}

@media screen and (min-width: 768px) {
    .full-bleed-image_caption-wrap {
        position: absolute;
        z-index: 1000;
        bottom: 0px;
        right: 0px;
        width: 570px;
    }
}

.full-bleed-image_caption {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 11px;
    letter-spacing: -0.33px;
    line-height: 1.27273;
    padding-right: 30px;
    max-width: 300px;
    margin-left: auto;
}

@media screen and (min-width: 768px) {
    .full-bleed-image_caption {
        font-size: 15px;
        letter-spacing: -0.3px;
        line-height: 1.2;
        max-width: 520px;
    }
}

.full-bleed-image_caption-wrap {
    color: #ffffff;
    background-color: #d3135a;
}

.full-bleed-image_caption {
    color: #ffffff;
}

.full-bleed-image.full-bleed-image--no-caption .full-bleed-image_caption-wrap {
    display: none;
}

.list-item {
    border-bottom: 1px solid #dddddd;
}

.list-item::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (min-width: 1024px) {
    .list-item {
        padding: 0 30px;
    }
}

.list-item--press .list-item_text-wrapper {
    width: calc(100% - 290px);
    max-width: 680px;
    float: left;
    padding: 30px 0;
}

@media screen and (max-width: 767px) {
    .list-item--press .list-item_text-wrapper {
        padding: 22px 0;
        width: 100%;
    }
}

.list-item--news .list-item_text-wrapper {
    padding: 25px 0;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .list-item--news .list-item_text-wrapper {
        float: left;
        padding: 47px 0 47px 0;
    }
}

@media screen and (min-width: 768px) {
    .list-item--news .list-item_image-wrapper + .list-item_text-wrapper {
        width: 60.72423%;
    }
}

.list-item_image-wrapper {
    display: none;
}

@media screen and (min-width: 768px) {
    .list-item_image-wrapper {
        float: left;
        padding: 50px 0;
        width: 34.81894%;
        display: block;
        margin-right: 30px;
    }
}

@media screen and (min-width: 1024px) {
    .list-item_image-wrapper {
        width: 27.88462%;
    }
}

.list-item_image-wrapper img {
    display: block;
    width: 100%;
}

.list-item_file-wrapper {
    width: 290px;
    float: right;
    padding: 35px 0;
    text-align: right;
}

@media screen and (max-width: 767px) {
    .list-item_file-wrapper {
        display: none;
    }
}

.list-item_badge {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    display: inline-block;
    padding: 4px 7px 2px;
    border-radius: 2px;
    font-size: 12px;
    color: #fff;
    background-color: #0B563D;
    text-transform: uppercase;
    margin-right: 8px;
    position: relative;
    top: -1px;
}

.list-item_category, .list-item_file-size, .list-item_file-type {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    color: #666666;
}

@media screen and (max-width: 767px) {
    .list-item_category, .list-item_file-size, .list-item_file-type {
        font-size: 11px;
    }
}

.list-item_date {
    margin-right: 8px;
}

.list-item_date:before {
    content: "|";
    display: inline-block;
    padding-right: 8px;
}

.list-item_date:first-child:before {
    display: none;
}

.list-item_category:hover {
    text-decoration: underline;
}

.list-item_title {
    margin-top: 5px;
}

@media screen and (max-width: 767px) {
    .list-item_title {
        margin-top: 8px;
    }
}

.list-item_title a:hover {
    text-decoration: underline;
}

.list-item_description {
    margin-top: 14px;
}

@media screen and (max-width: 767px) {
    .list-item_description {
        display: none;
    }
}

.list-item_file-type {
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 12px;
}

.list-item .btn-cta {
    margin-left: 18px;
}

.investor-panels .list-item_file-wrapper {
    width: 200px;
}

.investor-panels .list-item .list-item_text-wrapper {
    width: calc(100% - 200px);
}

@media screen and (max-width: 767px) {
    .investor-panels .list-item .list-item_text-wrapper {
        width: 100%;
    }
}

.investor-panels .list-item .list-item_file-type {
    display: none;
}

.dotcom-megamenu__article {
    background: #fff;
    color: #666;
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.dotcom-megamenu__article p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__article {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.dotcom-megamenu__article:after {
    content: "";
    background: #002466;
    position: absolute;
    height: 10px;
    width: 100%;
    bottom: -11px;
    left: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ios .dotcom-megamenu__article:after {
    display: none;
}

@media screen and (max-width: 767px) {
    .dotcom-megamenu__article {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__article {
        width: calc(50% - 10px);
    }

    .dotcom-megamenu__article--large {
        width: 100%;
    }
}

.dotcom-megamenu__article__img {
    height: 0;
    padding-top: 51%;
    overflow: hidden;
    border: 3px solid #fff;
    border-bottom: none;
}

.dotcom-megamenu__article__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.dotcom-megamenu__article__img + .dotcom-megamenu__article__content {
    height: auto;
}

.dotcom-megamenu__article .icon-video {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #d3135a;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    padding-top: 0.05em;
    padding-left: 0.1em;
}

.dotcom-megamenu__article__content {
    padding: 30px 20px 20px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dotcom-megamenu__article__topic {
    color: #002466;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.24px;
    line-height: 1.5;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 10px;
}

.dotcom-megamenu__article__topic .icon-link-external {
    font-size: 10px;
    margin-left: 10px;
}

.dotcom-megamenu__article__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 1.25;
    color: #000;
    margin-bottom: 5px;
    margin-top: 16px;
}

.dotcom-megamenu__article__copy p {
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__article--large .dotcom-megamenu__article__title {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.2;
    }
}

@media screen and (min-width: 768px) {
    .megamenu__article--large .dotcom-megamenu__article__title {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.2;
    }
}

@media screen and (max-width: 767px) {
    .dotcom-megamenu__article--large .dotcom-megamenu__article__copy {
        display: none;
    }
}

.dotcom-megamenu__article a:hover {
    text-decoration: none;
}

.dotcom-megamenu__article:hover:after {
    -webkit-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.dotcom-megamenu__article:hover .dotcom-megamenu__article__content {
    -webkit-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.dotcom-megamenu__article--tweet {
    padding: 30px 20px 10px;
}

.dotcom-megamenu__article--tweet:after {
    display: none;
}

.dotcom-megamenu__article--tweet .icon-twitter {
    color: #002466;
    font-size: 24px;
    margin-bottom: 6px;
}

.dotcom-megamenu__article--tweet .tweet__meta {
    text-align: center;
    margin-bottom: 20px;
}

.dotcom-megamenu__article--tweet .tweet__username {
    font-size: 18px;
    margin-bottom: -8px;
}

.dotcom-megamenu__article--tweet .tweet__text {
    margin-bottom: 20px;
}

.dotcom-megamenu__article--tweet .tweet__text a {
    color: #002466;
}

.dotcom-megamenu__article--tweet .tweet__text a:hover {
    text-decoration: underline;
}

.dotcom-megamenu__article--tweet time {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    color: #aaa;
}

.megamenu__article {
    background: #fff;
    color: #666;
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.megamenu__article p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .megamenu__article {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.megamenu__article:after {
    content: "";
    background: #002466;
    position: absolute;
    height: 10px;
    width: 100%;
    bottom: -11px;
    left: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ios .megamenu__article:after {
    display: none;
}

@media screen and (max-width: 767px) {
    .megamenu__article {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__article {
        width: calc(50% - 10px);
    }

    .megamenu__article--large {
        width: 100%;
    }
}

.megamenu__article__img {
    height: 0;
    padding-top: 51%;
    overflow: hidden;
    border: 3px solid #fff;
    border-bottom: none;
}

.megamenu__article__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.megamenu__article__img + .megamenu__article__content {
    height: auto;
}

.megamenu__article .icon-video {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #d3135a;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    padding-top: 0.05em;
    padding-left: 0.1em;
}

.megamenu__article__content {
    padding: 30px 20px 20px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.megamenu__article__topic {
    color: #002466;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.24px;
    line-height: 1.5;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 10px;
}

.megamenu__article__topic .icon-link-external {
    font-size: 10px;
    margin-left: 10px;
}

.megamenu__article__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 1.25;
    color: #000;
    margin-bottom: 5px;
    margin-top: 16px;
}

.megamenu__article__copy p {
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .megamenu__article--large .megamenu__article__title {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.2;
    }
}

@media screen and (max-width: 767px) {
    .megamenu__article--large .megamenu__article__copy {
        display: none;
    }
}

.megamenu__article a:hover {
    text-decoration: none;
}

.megamenu__article:hover:after {
    -webkit-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.megamenu__article:hover .megamenu__article__content {
    -webkit-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.megamenu__article--tweet {
    padding: 30px 20px 10px;
}

.megamenu__article--tweet:after {
    display: none;
}

.megamenu__article--tweet .icon-twitter {
    color: #41b9e6;
    font-size: 24px;
    margin-bottom: 6px;
}

.megamenu__article--tweet .tweet__meta {
    text-align: center;
    margin-bottom: 20px;
}

.megamenu__article--tweet .tweet__username {
    font-size: 18px;
    margin-bottom: -8px;
}

.megamenu__article--tweet .tweet__text {
    margin-bottom: 20px;
}

.megamenu__article--tweet .tweet__text a {
    color: #002466;
}

.megamenu__article--tweet .tweet__text a:hover {
    text-decoration: underline;
}

.megamenu__article--tweet time {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    color: #667790;
}

.pagination {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #999999;
    font-size: 15px;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .pagination {
        padding: 80px 0;
    }
}

@media screen and (min-width: 1024px) {
    .pagination {
        font-size: 12px;
    }
}

.pagination_prev {
    float: left;
    margin-right: 20px;
    margin-left: 20px;
}

.pagination_prev:before {
    display: block;
    font-family: 'icomoon';
    content: "\e906";
    font-style: normal;
    font-weight: normal;
}

.pagination_next {
    float: right;
    margin-left: 20px;
    margin-right: 20px;
}

.pagination_next:after {
    display: block;
    font-family: 'icomoon';
    content: "\e905";
    font-style: normal;
    font-weight: normal;
}

.pagination_prev, .pagination_next {
    color: #d3135a;
    display: inline-block;
    letter-spacing: 1px;
    position: relative;
    top: 6px;
}

@media screen and (min-width: 1024px) {
    .pagination_prev:hover, .pagination_next:hover {
        text-decoration: underline;
    }
}

.pagination_prev.hidden, .pagination_next.hidden {
    display: none;
}

.pagination_prev.disabled, .pagination_next.disabled {
    cursor: default;
    color: #999999;
    text-decoration: none !important;
    opacity: 0.5;
}

@media screen and (min-width: 1024px) {
    .pagination_prev, .pagination_next {
        float: inherit;
        padding-top: 6px;
        top: 0;
    }
}

.pagination_prev:before, .pagination_next:after {
    display: inline-block;
    font-size: 11px;
    text-decoration: none !important;
    letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
    .pagination_prev:before, .pagination_next:after {
        position: relative;
        top: 1px;
    }
}

.pagination_prev:before {
    padding-right: 3px;
}

.pagination_next:after {
    padding-left: 3px;
}

.pagination_num {
    display: inline-block;
    padding: 6px 0;
    min-width: 38px;
}

@media screen and (min-width: 1024px) {
    .pagination_num:hover {
        color: #000000;
        text-decoration: none;
    }
}

.pagination_num + .pagination_num {
    border-left: 1px solid #999999;
}

@media screen and (min-width: 1024px) {
    .pagination_num {
        min-width: 34px;
    }
}

.pagination .active {
    border: 2px solid #000000;
    color: #000000;
    min-width: 34px;
    pointer-events: none;
}

.pagination .active + .pagination_num {
    border-left: none;
}

.pagination .active + .pagination_ellipsis {
    margin-left: 10px;
}

@media screen and (min-width: 1024px) {
    .pagination .active {
        min-width: 30px;
    }
}

.pagination_ellipsis + .active {
    margin-left: 10px;
}

.pagination_total {
    display: none;
}

@media screen and (max-width: 767px) {
    .pagination {
        margin: 28px 0;
    }

    .pagination_num, .pagination_ellipsis {
        display: none;
    }

    .pagination .active {
        padding: 0;
        display: inline-block;
        border: none;
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        min-width: inherit;
    }

    .pagination_total {
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        display: inline-block;
    }

    .pagination_total:before {
        content: "/";
        margin-left: 5px;
        padding-right: 5px;
    }

    .pagination_prev, .pagination_next {
        top: 1px;
    }
}

.product-item {
    height: 100%;
    min-height: 480px;
    text-align: center;
    display: block;
    background: #fff;
    overflow: hidden;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.product-item p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .product-item {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.product-item:after {
    content: "";
    background: #002466;
    height: 10px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
    transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-item__inner {
    height: 100%;
    background: #fff;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-item:hover {
    text-decoration: none;
}

.product-item:hover:after {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.product-item:hover .product-item__inner {
    -webkit-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.product-item__image {
    margin: 20px 0;
}

.product-item__image img {
    max-width: 100%;
}

.product-item__details {
    margin: 20px 0;
}

.product-item__details h1, .product-item__details h2, .product-item__details h3, .product-item__details h4, .product-item__details h5, .product-item__details h6 {
    margin: 0 auto 20px;
    max-width: 320px;
}

.product-item__heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .product-item__heading {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.product-item__price {
    color: #0E141A;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.33333;
    display: block;
}

.product-item__price--old {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #999999;
    text-decoration: line-through;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.5;
}

.product-item__price--discount {
    color: #0B563D;
}

.product-item__discount {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.72px;
    line-height: 1.5;
    color: #fff;
    background: #0B563D;
    padding: 5px 10px;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    right: 0;
    font-weight: bold;
    z-index: 1;
}

.product-item__description {
    display: none;
}

@media screen and (min-width: 768px) {
    .product-grid__no-carousel .product-grid__product--large .product-item .product-item__inner {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 40px 0;
    }

    .product-grid__no-carousel .product-grid__product--large .product-item .product-item__details,
    .product-grid__no-carousel .product-grid__product--large .product-item .product-item__image {
        width: 50%;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .product-grid__no-carousel .product-grid__product--large .product-item .product-item__details {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        padding: 0 50px;
    }

    .product-grid__no-carousel .product-grid__product--large .product-item .product-item__image {
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }

    .product-grid__no-carousel .product-grid__product--large .product-item__description {
        display: block;
    }
}

.product-plan {
    background: #fff;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.product-plan__heading {
    background: #002466;
    padding: 20px;
    text-align: center;
    height: 120px;
    display: table;
    width: 100%;
}

.product-plan__heading h1, .product-plan__heading h2, .product-plan__heading h3, .product-plan__heading h4, .product-plan__heading h5, .product-plan__heading h6 {
    display: table-cell;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 28px;
    letter-spacing: 0px;
    line-height: 1.21429;
    color: #fff;
    text-align: center;
    vertical-align: middle;
}

.product-plan__main {
    text-align: center;
    padding: 20px 30px 40px;
}

.product-plan__price {
    margin: 20px 0;
}

.product-plan__price .value {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 60px;
    letter-spacing: -2.4px;
    line-height: 1.16667;
}

.product-plan__description {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: 0px;
    line-height: 1.23077;
    margin: 40px auto;
}

.product-plan__list {
    text-align: left;
    max-width: 270px;
    margin: 40px auto 40px;
}

.product-plan .btn-cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
}

.product-plan .btn-cta:hover, .product-plan .btn-cta._hover,
a:hover .product-plan .btn-cta {
    text-decoration: none;
}

.product-plan .btn-cta:hover, .product-plan .btn-cta._hover,
a:hover .product-plan .btn-cta {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

.pull-quote {
    padding-left: 25px;
}

@media screen and (min-width: 768px) {
    .pull-quote {
        padding-left: 65px;
    }
}

.pull-quote:before {
    background-color: #d3135a;
    content: '';
    height: 100%;
    display: block;
    width: 30px;
    position: absolute;
    left: 0px;
    top: 0px;
}

@media screen and (min-width: 768px) {
    .pull-quote:before {
        width: 60px;
    }
}

.pull-quote_inner {
    padding: 20px 25px;
}

@media screen and (min-width: 768px) {
    .pull-quote_inner {
        padding: 38px 50px 34px;
    }
}

@media screen and (min-width: 1024px) {
    .pull-quote_inner {
        padding-right: 25%;
    }
}

.pull-quote_quote {
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .pull-quote_quote {
        margin-bottom: 22px;
    }
}

.related-content-card {
    width: 100%;
    /*max-width: 340px;*/
    overflow: hidden;
}

.related-content-card_wrap {
    padding-top: 140%;
}

.related-content-card_inner {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
}

.related-content-card_color {
    z-index: 1000;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    transition: all 0.5s ease-in-out;
    height: 10px;
    width: 100%;
    display: block;
    background-color: #002466;
}

@media screen and (min-width: 768px) {
    .related-content-card_color {
        height: 15px;
    }
}

.related-content-card_title-wrap {
    z-index: 1001;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 90%;
    padding-left: 30px;
}

.related-content-card_title {
    position: absolute;
    transition: all 0.5s ease-in-out;
    color: #ffffff;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.36364;
}

@media screen and (min-width: 768px) {
    .related-content-card_title {
        font-size: 26px;
        letter-spacing: -0.52px;
        line-height: 1.53846;
    }
}

.related-content-card_copy {
    display: none;
    transition: 0.4s opacity 0s;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.5;
    position: absolute;
    bottom: 20px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.related-content-card_image {
    width: 100%;
    display: block;
}

.related-content-card:hover .related-content-card_color, .related-content-card:active .related-content-card_color, .related-content-card.no-image .related-content-card_color {
    height: 100%;
}

.related-content-card:hover .related-content-card_title, .related-content-card:active .related-content-card_title {
    bottom: 66% !important;
}

.related-content-card:hover .related-content-card_copy, .related-content-card:active .related-content-card_copy {
    display: block;
    transition: 0.4s opacity 0.4s;
}

@media screen and (max-width: 1024px) {
    .related-content-card_wrap {
        padding-top: 130%;
    }

    .related-content-card .related-content-card_color {
        height: 100%;
    }

    .related-content-card.no-image .related-content-card_title {
        bottom: 66% !important;
    }

    .related-content-card .related-content-card_copy {
        display: block;
        transition: 0.4s opacity 0.4s;
    }

    .related-content-card_image, .related-content-card_color {
        z-index: 1;
    }
}

@media screen and (max-width: 768px) {
    .related-content-card_wrap {
        padding-top: 115%;
    }
}

.rich-text {
    margin-bottom: 60px;
}

.rich-text .rich-text_inner h1, .rich-text .rich-text_inner h2, .rich-text .rich-text_inner h3, .rich-text .rich-text_inner h4, .rich-text .rich-text_inner h5, .rich-text .rich-text_inner h6 {
    margin-bottom: 24px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.52px;
    line-height: 1.07692;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .rich-text .rich-text_inner h1, .rich-text .rich-text_inner h2, .rich-text .rich-text_inner h3, .rich-text .rich-text_inner h4, .rich-text .rich-text_inner h5, .rich-text .rich-text_inner h6 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

@media screen and (min-width: 768px) {
    .rich-text .rich-text_inner h1, .rich-text .rich-text_inner h2, .rich-text .rich-text_inner h3, .rich-text .rich-text_inner h4, .rich-text .rich-text_inner h5, .rich-text .rich-text_inner h6 {
        margin-bottom: 35px;
    }
}

.rich-text .rich-text_inner p {
    margin-bottom: 23px;
}

.rich-text .rich-text_inner p:last-child {
    margin-bottom: 0px !important;
}

@media screen and (min-width: 768px) {
    .rich-text .rich-text_inner p {
        margin-bottom: 28px;
    }
}

.rich-text .rich-text_inner ul:last-child, .rich-text .rich-text_inner li:last-child {
    margin-bottom: 0px !important;
}

@media screen and (min-width: 1024px) {
    .rich-text--social .rich-text_inner {
        display: inline-block;
        width: 87%;
    }
}

.rich-text--social .share-links {
    margin-bottom: 33px;
}

@media screen and (min-width: 768px) {
    .rich-text--social .share-links {
        margin-bottom: 53px;
    }
}

@media screen and (min-width: 1024px) {
    .rich-text--social .share-links {
        padding-top: 7px;
        vertical-align: top;
        display: inline-block;
        width: 13%;
        float: left;
        margin-bottom: 0;
    }

    .rich-text--social .share-links > ul {
        text-align: center;
    }
}

.rich-text--social .rich-text_heading {
    margin-top: 0px;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .rich-text--social .rich-text_heading {
        margin-bottom: 40px;
    }
}

.rich-text--social .rich-text_text {
    margin-bottom: 23px;
}

@media screen and (min-width: 768px) {
    .rich-text--social .rich-text_text {
        margin-bottom: 36px;
    }
}

.share-links {
    font-size: 0px;
}

.share-links_list {
    text-align: center;
    padding: 0px;
}

.share-links_list-item {
    display: inline-block;
}

@media screen and (min-width: 1024px) {
    .share-links_list-item {
        display: block;
    }
}

.share-links_list-item:first-child > a {
    border-left: 1px solid #000000;
}

@media screen and (min-width: 1024px) {
    .share-links_list-item:first-child > a {
        border-left-width: 2px;
        border-top: 2px solid #000000;
    }
}

.share-links_link {
    border: 1px solid #000000;
    border-left: 0px;
    display: inline-block;
    width: auto;
    transition: all 100ms linear;
}

@media screen and (min-width: 1024px) {
    .share-links_link {
        border: 2px solid #000000;
        border-top: 0px;
    }
}

.share-links_link:hover {
    background-color: #000;
    color: #fff;
}

.share-links_link:before {
    font-size: 22px;
    height: 39px;
    width: 39px;
    line-height: 39px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .share-links_link:before {
        font-size: 25px;
        height: 50px;
        width: 50px;
        line-height: 50px;
    }
}

.share-links_fb:before {
    display: block;
    font-family: 'icomoon';
    content: "\e901";
    font-style: normal;
    font-weight: normal;
}

.share-links_twitter:before {
    display: block;
    font-family: 'icomoon';
    content: "\e904";
    font-style: normal;
    font-weight: normal;
}

.share-links_print:before {
    display: block;
    font-family: 'icomoon';
    content: "\e903";
    font-style: normal;
    font-weight: normal;
}

.share-links_email:before {
    display: block;
    font-family: 'icomoon';
    content: "\e902";
    font-style: normal;
    font-weight: normal;
}

.svg-bg-animation {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

.svg-bg-animation .svg {
    display: none;
}

.svg-bg-animation .rectangles {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1.9) rotate(-40deg);
    -ms-transform: translate(-50%, -50%) scale(1.9) rotate(-40deg);
    transform: translate(-50%, -50%) scale(1.9) rotate(-40deg);
}

.svg-bg-animation .rectangles svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.svg-bg-animation .rectangles svg .rect1 {
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
}

.svg-bg-animation .rectangles svg .rect2 {
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
}

.svg-bg-animation .rectangles.animate .rect1 {
    -webkit-animation: slide-right 9s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slide-right 9s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svg-bg-animation .rectangles.animate .rect2 {
    -webkit-animation: slide-left 9s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slide-left 9s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svg-bg-animation .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: scale(1.3) translate(-50%, -40%);
    -ms-transform: scale(1.3) translate(-50%, -40%);
    transform: scale(1.3) translate(-50%, -40%);
    width: 100%;
    height: 100%;
}

.svg-bg-animation .circle svg {
    width: 100%;
    height: 100%;
}

.svg-bg-animation .circle.animate svg {
    -webkit-animation: spin 6s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: spin 6s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svg-bg-animation .arcs {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: scale(2.5) translate(-15%, 5%) rotate(-20deg);
    -ms-transform: scale(2.5) translate(-15%, 5%) rotate(-20deg);
    transform: scale(2.5) translate(-15%, 5%) rotate(-20deg);
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1023px) {
    .svg-bg-animation .arcs {
        -webkit-transform: scale(2.5) translate(-5%, 10%) rotate(-20deg);
        -ms-transform: scale(2.5) translate(-5%, 10%) rotate(-20deg);
        transform: scale(2.5) translate(-5%, 10%) rotate(-20deg);
    }
}

@media screen and (max-width: 767px) {
    .svg-bg-animation .arcs {
        -webkit-transform: scale(2.5) translate(3%, 18%) rotate(-20deg);
        -ms-transform: scale(2.5) translate(3%, 18%) rotate(-20deg);
        transform: scale(2.5) translate(3%, 18%) rotate(-20deg);
    }
}

.svg-bg-animation .arcs svg {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.svg-bg-animation .arcs .arc1 {
    -webkit-transform-origin: 30% center;
    -ms-transform-origin: 30% center;
    transform-origin: 30% center;
}

.svg-bg-animation .arcs .arc2 {
    -webkit-transform-origin: 70% center;
    -ms-transform-origin: 70% center;
    transform-origin: 70% center;
}

.svg-bg-animation .arcs.animate .arc1 {
    -webkit-animation: arc 6s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: arc 6s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svg-bg-animation .arcs.animate .arc2 {
    -webkit-animation: arc 6s forwards;
    animation: arc 6s forwards;
}

@-webkit-keyframes slide-right {
    0% {
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }
    35% {
        -webkit-transform: translate(25%, 0);
        transform: translate(25%, 0);
    }
    100% {
        -webkit-transform: translate(200%, 0);
        transform: translate(200%, 0);
    }
}

@keyframes slide-right {
    0% {
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }
    35% {
        -webkit-transform: translate(25%, 0);
        transform: translate(25%, 0);
    }
    100% {
        -webkit-transform: translate(200%, 0);
        transform: translate(200%, 0);
    }
}

@-webkit-keyframes slide-left {
    0% {
        -webkit-transform: translate(100%, 0);
        transform: translate(100%, 0);
    }
    35% {
        -webkit-transform: translate(-25%, 0);
        transform: translate(-25%, 0);
    }
    100% {
        -webkit-transform: translate(-200%, 0);
        transform: translate(-200%, 0);
    }
}

@keyframes slide-left {
    0% {
        -webkit-transform: translate(100%, 0);
        transform: translate(100%, 0);
    }
    35% {
        -webkit-transform: translate(-25%, 0);
        transform: translate(-25%, 0);
    }
    100% {
        -webkit-transform: translate(-200%, 0);
        transform: translate(-200%, 0);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
    65% {
        -webkit-transform: rotate(70deg);
        transform: rotate(70deg);
    }
    100% {
        -webkit-transform: rotate(250deg);
        transform: rotate(250deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
    65% {
        -webkit-transform: rotate(70deg);
        transform: rotate(70deg);
    }
    100% {
        -webkit-transform: rotate(250deg);
        transform: rotate(250deg);
    }
}

@-webkit-keyframes arc {
    0% {
        -webkit-transform: rotate(-100deg);
        transform: rotate(-100deg);
    }
    65% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

@keyframes arc {
    0% {
        -webkit-transform: rotate(-100deg);
        transform: rotate(-100deg);
    }
    65% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

.tags li {
    display: inline;
    line-height: 40px;
}

.tag {
    background: #0B563D;
    color: #fff;
    display: inline-block;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.3px;
    line-height: 1.58333;
    text-transform: uppercase;
    margin-right: 15px;
    padding: 2px 10px 3px;
    border-radius: 3px;
    cursor: pointer;
}

.tag--sky {
    background: #002466;
}

.tag--transparent {
    background: none;
    color: #002466;
    padding-left: 0;
    padding-right: 0;
}

.tile {
    text-decoration: none;
    background-color: #fff;
    margin: 0 10px 20px;
    display: inline-block;
    box-sizing: border-box;
}

.tile--large {
    width: 832px;
}

.tile--large .tile_inner {
    padding-bottom: 406px;
}

@media screen and (max-width: 767px) {
    .tile--large img {
        margin-top: -25%;
    }
}

.tile--small {
    width: 406px;
}

.tile--small .tile_inner {
    padding-bottom: 100%;
}

.tile_inner {
    border: 1px solid #fff;
    height: 0;
    position: relative;
    overflow: hidden;
}

.tile--cta .tile_inner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-left: 50px;
    padding-right: 50px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tile--cta .tile_inner:after {
    display: none;
}

.tile--cta .tile_content-wrapper {
    width: 100% !important;
    transition: none;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: 0 !important;
}

@media screen and (min-width: 768px) {
    .tile--cta .tile_content-wrapper {
        height: 100% !important;
    }
}

.tile--cta .tile_header + .btn-cta {
    margin-top: 30px;
}

@media (max-width: 1318px) {
    .tile--large {
        width: 716px;
    }

    .tile--large .tile_inner {
        padding-bottom: 348px;
    }

    .tile--small {
        width: 348px;
    }
}

@media (max-width: 1123px) {
    .tile--large + .tile--small:last-child {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .tile {
        margin: 0 0 15px;
    }

    .tile--small {
        width: 100%;
        display: inline-block !important;
    }

    .tile--small .tile_inner {
        padding-bottom: 80%;
    }

    .tile--large {
        width: 100%;
    }

    .tile--large .tile_inner {
        padding-bottom: 200%;
    }
}

a.tile:hover .tile_inner:after {
    height: 2.46305%;
}

a.tile:hover .tile_content-wrapper {
    bottom: 2.46305%;
}

.tile_inner:after {
    content: '';
    height: 0px;
    background-color: #002466;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    transition: all 180ms ease-out;
}

.tile--large .tile_content-wrapper,
.tile--large .tile_inner:after {
    width: 50%;
    right: 0;
}

.tile--large .tile_image-wrapper {
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.tile--small .tile_image-wrapper {
    height: 0;
    overflow: hidden;
    padding-bottom: 42.5%;
    position: relative;
}

.tile--small .tile_image-wrapper img {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.tile_content-wrapper {
    font-size: 18px;
    color: #000;
    text-align: left;
    position: absolute;
    bottom: 0;
    padding: 38px 30px;
    box-sizing: border-box;
    transition: all 180ms ease-out;
    width: 100%;
}

@media (max-width: 1318px) {
    .tile_content-wrapper {
        padding: 0 25px 30px;
    }
}

.tile_topic {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #002466;
    display: inline-block;
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tile_new {
    float: right;
}

.tile_description {
    margin-top: 15px;
}

.tile_issue {
    margin-bottom: 15px;
}

.tile_issue span + span:before {
    content: '|';
    display: inline-block;
    padding: 0 8px;
    color: #cecece;
}

.tile .btn-cta {
    margin-top: 15px;
}

.tile_cta-description {
    display: block;
    width: 160px;
    text-align: center;
    margin-top: 10px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    color: #666666;
}

.tile img {
    display: block;
    min-width: 100%;
    min-height: 100%;
}

@media screen and (max-width: 767px) {
    .tile--large .tile_image-wrapper {
        position: static;
        height: 0;
        padding-bottom: 42.5%;
        overflow: hidden;
        width: 100% !important;
    }

    .tile_inner {
        height: auto;
        padding-bottom: 0 !important;
    }

    .tile_inner:after {
        content: none;
    }

    .tile_content-wrapper {
        position: static;
        width: 100% !important;
        bottom: 0 !important;
        padding: 20px 20px 25px;
        min-height: 80px;
    }

    .tile_description {
        display: none;
    }

    .tile_issue {
        margin-bottom: 9px;
    }

    .tile_cta-description {
        text-align: left;
    }
}

.video-player {
    padding: 0px 15px;
    margin-bottom: 74px;
}

@media screen and (min-width: 768px) {
    .video-player {
        padding: 0px 30px;
    }
}

@media screen and (min-width: 1024px) {
    .video-player {
        display: block;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
        padding: 0px;
    }
}

.video-player_inner {
    background: black;
    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    .video-player_inner {
        margin: 0px 13%;
    }
}

.video-player_video-wrapper {
    width: 100%;
    display: inline-block;
}

.video-player_overlay {
    height: 100%;
    overflow: hidden;
    position: absolute;
    width: 100%;
    cursor: pointer;
    z-index: 1;
}

.video-player_overlay:after {
    /*background-image: url("/img/video-play-button-hover.png");*/
    background: no-repeat center center;
    background-size: 100%;
    content: '';
    cursor: pointer;
    display: block;
    height: 44px;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 44px;
    z-index: 3;
}

@media screen and (min-width: 1024px) {
    .video-player_overlay:after {
        width: 88px;
        height: 88px;
    }
}

.video-player_overlay:hover:after {
    background-color: rgba(255, 255, 255, 0.4);
}

.video-player_video {
    width: 100%;
}

.video-player_control-wrapper {
    height: 65px;
    background-color: black;
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: -65px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    transition: bottom 0.3s ease-in-out;
    z-index: 100;
}

.video-player_play-pause {
    color: white;
    font-size: 24px;
    width: 63px;
    height: 65px;
    height: 100%;
    border-right: 2px solid #333;
    transition: background-color 0.2s ease-in-out;
}

.video-player_play-pause:before {
    display: block;
    font-family: 'icomoon';
    content: "\e915";
    font-style: normal;
    font-weight: normal;
}

.video-player_play-pause:hover {
    background-color: #d3135a;
}

.video-player_timer-wrapper {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.32px;
    line-height: 1;
    color: white;
    border-right: 2px solid #333;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0px 17px;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.video-player_timer-divider {
    margin: 0px 5px;
}

.video-player_progress-wrapper {
    border-right: 2px solid #333;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.video-player_progress-scrubber {
    width: 90%;
    height: 6px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-size: auto;
    background-image: none;
}

.video-player_progress-scrubber::-webkit-progress-bar {
    background: gray;
}

.video-player_progress-scrubber::-webkit-progress-value {
    background: white;
}

.video-player_volume-wrapper {
    border-right: 2px solid #333;
    width: 65px;
}

.video-player_volume-wrapper:hover .video-player_volume-button {
    background-color: #d3135a;
}

.video-player_volume-wrapper:hover .video-player_volume-slider-wrapper {
    height: 160px;
}

.video-player_volume-button {
    color: white;
    font-size: 24px;
    width: 63px;
    height: 65px;
    transition: background-color 0.2s ease-in-out;
}

.video-player_volume-button:before {
    display: block;
    font-family: 'icomoon';
    content: "\e911";
    font-style: normal;
    font-weight: normal;
}

.video-player_volume-slider-wrapper {
    position: absolute;
    bottom: 65px;
    height: 0px;
    background: #e50d5a;
    width: 63px;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
}

.video-player_volume-slider {
    position: absolute;
    left: 50%;
    margin: 0 auto;
    margin-left: -2px;
    height: 120px;
    margin-top: 20px;
    width: 6px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    outline: none;
}

.video-player_volume-slider .ui-slider-range-min {
    height: 120px;
    width: 8px;
    margin-left: -1px;
    position: absolute;
    background: #ffb6d1;
    border: none;
    outline: none;
    bottom: 0px;
}

.video-player_volume-slider .ui-slider-handle {
    width: 18px;
    height: 8px;
    background: white;
    position: absolute;
    margin-left: -6px;
    margin-bottom: -5px;
    cursor: pointer;
    outline: none;
    border: none;
}

.video-player_full-screen {
    color: white;
    font-size: 24px;
    width: 63px;
    height: 65px;
    transition: background-color 0.2s ease-in-out;
}

.video-player_full-screen:before {
    display: block;
    font-family: 'icomoon';
    content: "\e913";
    font-style: normal;
    font-weight: normal;
}

.video-player_full-screen:hover {
    background-color: #d3135a;
}

.video-player--playing .video-player_play-pause:before {
    display: block;
    font-family: 'icomoon';
    content: "\e912";
    font-style: normal;
    font-weight: normal;
}

.video-player--volume-active .video-player_volume-slider-wrapper {
    height: 160px;
}

.video-player--volume-active .video-player_volume-button {
    background-color: #d3135a;
}

.video-player--volume-muted .video-player_volume-button:before {
    display: block;
    font-family: 'icomoon';
    content: "\e90c";
    font-style: normal;
    font-weight: normal;
}

.video-player--on-device .video-player_progress-wrapper {
    border-right: none;
}

.video-player--on-device .video-player_volume-wrapper {
    display: none;
}

.video-player--on-device .video-player_full-screen {
    display: none;
}

@media screen and (max-width: 767px) {
    .video-player--on-device .video-player_progress-wrapper {
        border-right: none;
    }

    .video-player--on-device .video-player_control-wrapper {
        display: none;
    }

    .video-player--on-device .video-player_overlay {
        display: none !important;
    }
}

.video-player_inner:hover .video-player_control-wrapper {
    bottom: 0px;
}

.youtube-player {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.youtube-player .overlay, .youtube-player .video {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.youtube-player iframe {
    width: 100%;
    height: 100%;
}

.youtube-player .overlay {
    height: 100%;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.youtube-player .overlay:before {
    background: rgba(0, 0, 0, 0.4);
    content: '';
    cursor: pointer;
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.youtube-player .overlay:after {
    /*background-image: url("/img/video-play-button-hover.png");*/
    background: no-repeat center center;
    background-size: 50%;
    content: '';
    cursor: pointer;
    display: block;
    height: 88px;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 88px;
    z-index: 3;
}

@media screen and (min-width: 1024px) {
    .youtube-player .overlay:after {
        background-size: 100%;
    }
}

.youtube-player .overlay:hover:after {
    /*background-image: url("/img/video-play-button-hover.png");*/
}

.youtube-player .overlay.hide {
    display: none;
    -webkit-transform: translate3d(0);
    transform: translate3d(0);
    transition: opacity 0.5s;
    z-index: 0;
}

.youtube-player .overlay img {
    min-height: 100%;
    min-width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.article-content .youtube-player {
    display: block;
    padding: 0 15px;
    margin: 0 auto 70px;
    max-width: 1280px;
}

@media screen and (min-width: 768px) {
    .article-content .youtube-player {
        padding: 0 30px;
    }
}

.article-content .youtube-player .overlay {
    width: auto;
    left: 15px;
    right: 15px;
}

@media screen and (min-width: 768px) {
    .article-content .youtube-player .overlay {
        left: 30px;
        right: 30px;
    }
}

@media screen and (min-width: 1024px) {
    .article-content .youtube-player .overlay {
        left: 13%;
        right: 13%;
    }
}

@media screen and (min-width: 1024px) {
    .article-content .youtube-player .video {
        padding: 0px 13%;
    }
}

.component.accordian-meetings {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin: 0 auto;
}

.component.accordian-meetings::after {
    clear: both;
    content: "";
    display: table;
}

.component.accordian-meetings .accordian-meetings_ct {
    margin: 60px 30px 0px;
}

.component.accordian-meetings .accordian-meetings_inner {
    margin-bottom: 100px;
}

@media screen and (min-width: 1024px) {
    .component.accordian-meetings .accordian-meetings_inner {
        padding-left: 35px;
        padding-right: 35px;
    }
}

.component.accordian-meetings .accordian-meetings_inner h3 {
    font-size: 30px;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #111111;
    margin-bottom: 30px;
}

.component.accordian-meetings .accordian-meetings_inner p {
    font-size: 22px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    margin-bottom: 55px;
}

.component.accordian-meetings .accordian-meetings_inner a {
    font-size: 22px;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #d3135a;
}

.component.accordian-meetings .accordian-meetings_inner a:before {
    content: '\e903';
    font-family: 'icomoon';
    margin-right: 22px;
    font-weight: lighter;
}

.component.author-callout {
    margin: 0 auto;
    margin-top: 10px;
    text-align: center;
    color: #fff;
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
}

.component.author-callout a {
    color: rgba(0, 0, 0, 0.5);
}

.component.author-callout a:hover {
    text-decoration: underline;
}

.breadcrumbs.component::after {
    clear: both;
    content: "";
    display: table;
}

.breadcrumbs_item {
    display: inline;
    float: left;
    margin-left: 10px;
    padding-left: 15px;
    position: relative;
}

.breadcrumbs_item a[role="link"]:hover{
    text-decoration:none;
}

.breadcrumbs_item:after {
    content: '';
    display: block;
    position: absolute;
    content: '/';
    left: 0;
    top: 0;
    color: #000000;
}

.breadcrumbs_item:first-child {
    margin: 0;
    padding: 0;
}

.breadcrumbs_item:first-child:after {
    display: none;
}

.org-group_name {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
    /*font-size: 22px;
        margin: 0 0px 54px 0px;*/
    padding-top: 24px;
}

@media screen and (min-width: 768px) {
    .org-group_name {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (max-width: 767px) {
    .org-group:not(:first-child) .org-group_name {
        border-top: 2px solid #ddd;
        margin-top: 10px;
        padding-top: 20px;
    }
}

@media screen and (min-width: 768px) {
    .org-group:not(:first-child) .org-group_name {
        padding-top: 48px;
    }
}

@media screen and (max-width: 767px) {
    .org-group_name {
        margin-bottom: 20px;
        cursor: pointer;
    }
}

@media screen and (min-width: 768px) {
    .org-group_name {
        margin: 0px 2% 36px 2%;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .org-group_name:after {
        content: '\e907';
        font-family: 'icomoon';
        color: #d3135a;
        font-size: 15px;
        top: 30px;
        right: 22px;
        position: absolute;
    }
}

@media screen and (max-width: 767px) {
    .org-group_name.open:after {
        content: '\e908';
    }
}

.org-group_wrap {
    background-color: #f4f4f4;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .org-group_wrap {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .org-group_wrap {
        display: block !important;
    }
}

@media screen and (min-width: 768px) {
    .org-person_image {
        width: 50%;
    }
}

.org-person_image img {
    display: block;
    width: 100%;
}

.org-person_tile {
    text-decoration: none;
    color: #ffffff;
    margin: 0 auto 30px auto;
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    vertical-align: top;
}

@media screen and (min-width: 768px) {
    .org-person_tile_inner {
        width: 50%;
        position: absolute;
        top: 0;
        left: 50%;
        height: 100%;
    }
}

.org-person_tile_inner:after {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: '';
    border: 20px solid;
    position: absolute;
    top: -20px;
    left: 50%;
}

.org-group_wrap--pink .org-person_tile_inner:after {
    border-color: transparent transparent #d3135a transparent;
}

.org-group_wrap--green .org-person_tile_inner:after {
    border-color: transparent transparent #0B563D transparent;
}

.org-group_wrap--orange .org-person_tile_inner:after {
    border-color: transparent transparent #0152E8 transparent;
}

.org-group_wrap--sky .org-person_tile_inner:after {
    border-color: transparent transparent #002466 transparent;
}

.org-group_wrap--forest .org-person_tile_inner:after {
    border-color: transparent transparent #0f955a transparent;
}

@media screen and (min-width: 768px) {
    .org-person_tile_inner:after {
        -webkit-transform: translate(-50%, -50%) rotate(270deg);
        -ms-transform: translate(-50%, -50%) rotate(270deg);
        transform: translate(-50%, -50%) rotate(270deg);
        top: 50%;
        left: -20px;
    }
}

@media screen and (min-width: 768px) {
    .org-person_tile {
        margin: 0;
    }

    .org-person_tile:nth-of-type(even) .org-person_image {
        left: 50%;
    }

    .org-person_tile:nth-of-type(even) .org-person_tile_inner {
        left: 0;
    }

    .org-person_tile:nth-of-type(even) .org-person_tile_inner:after {
        -webkit-transform: translate(50%, -50%) rotate(90deg);
        -ms-transform: translate(50%, -50%) rotate(90deg);
        transform: translate(50%, -50%) rotate(90deg);
        top: 50%;
        left: auto;
        right: -20px;
    }
}

@media screen and (min-width: 1024px) {
    .org-group_wrap--tile .org-person_tile {
        width: 640px;
        height: 320px;
        float: left;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+1) .org-person_image {
        left: 0;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+1) .org-person_tile_inner:after {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        top: -20px;
        left: 50%;
        right: auto;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+1):last-of-type .org-person_tile_inner {
        left: 50%;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+2) .org-person_image {
        left: 50%;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+2) .org-person_tile_inner:after {
        -webkit-transform: translate(50%, -50%) rotate(90deg);
        -ms-transform: translate(50%, -50%) rotate(90deg);
        transform: translate(50%, -50%) rotate(90deg);
        top: 50%;
        left: auto;
        right: -20px;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+2) .org-person_tile_inner {
        left: 0;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+3) .org-person_image {
        left: 0;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+3) .org-person_tile_inner {
        left: 50%;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+3) .org-person_tile_inner:after, .org-group_wrap--tile .org-person_tile:nth-of-type(3n+1):last-of-type .org-person_tile_inner:after {
        -webkit-transform: translate(-50%, -50%) rotate(270deg);
        -ms-transform: translate(-50%, -50%) rotate(270deg);
        transform: translate(-50%, -50%) rotate(270deg);
        top: 50%;
        left: -20px;
        right: auto;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+1):not(:last-of-type) {
        width: 320px;
        height: 640px;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+1):not(:last-of-type) .org-person_image {
        width: 100%;
        height: 50%;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+1):not(:last-of-type) .org-person_tile_inner {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 0;
        height: 50%;
    }

    .org-group_wrap--split .org-person_tile {
        width: 640px;
        height: 320px;
        float: left;
    }

    .org-group_wrap--split .org-person_tile:nth-of-type(even) {
        margin-left: 320px;
    }

    .org-group_wrap--split .org-person_tile:nth-of-type(even) .org-person_image {
        left: 0;
    }

    .org-group_wrap--split .org-person_tile:nth-of-type(even) .org-person_tile_inner {
        left: 50%;
    }

    .org-group_wrap--split .org-person_tile:nth-of-type(even) .org-person_tile_inner:after {
        -webkit-transform: translate(-50%, -50%) rotate(270deg);
        -ms-transform: translate(-50%, -50%) rotate(270deg);
        transform: translate(-50%, -50%) rotate(270deg);
        top: 50%;
        left: -20px;
        right: auto;
    }
}

@media screen and (min-width: 1290px) {
    .org-group_wrap--tile .org-person_tile {
        width: 840px;
        height: 420px;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+1):not(:last-of-type) {
        width: 420px;
        height: 840px;
    }

    .org-group_wrap--split .org-person_tile {
        width: 840px;
        height: 420px;
    }

    .org-group_wrap--split .org-person_tile:nth-of-type(even) {
        margin-left: 420px;
    }
}

.org-person_tile_content {
    transition: all 100ms linear;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    height: auto;
    padding: 33px 25px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .org-person_tile_content {
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        position: absolute;
        padding: 0 25px;
        top: 50%;
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    .org-person_tile_content {
        -webkit-transform: translateY(-50%) translateY(32px);
        -ms-transform: translateY(-50%) translateY(32px);
        transform: translateY(-50%) translateY(32px);
    }

    .org-person_tile:hover .org-person_tile_content {
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.org-person_tile_content_name {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 26px;
    font-spacing: -0.6px;
    line-height: 28px;
}

.org-person_tile_content_position {
    margin: 10px 0px 0px 0px;
    font-size: 18px;
    line-height: 20px;
}

.org-person_tile_content_cta {
    display: none;
}

@media screen and (min-width: 768px) {
    .org-person_tile_content_cta {
        margin-top: 16px;
        border-color: transparent;
        color: transparent;
        display: inline-block;
        padding: 12px 20px;
    }

    .org-person_tile_content_cta:hover {
        background-color: rgba(0, 0, 0, 0.25);
    }

    .org-person_tile:hover .org-person_tile_content_cta {
        border-color: #ffffff;
        color: #ffffff;
    }
}

.org-group_wrap--pink .org-person_tile {
    background-color: #d3135a;
}

.org-group_wrap--green .org-person_tile {
    background-color: #0B563D;
}

.org-group_wrap--orange .org-person_tile {
    background-color: #0152E8;
}

.org-group_wrap--sky .org-person_tile {
    background-color: #002466;
}

.org-group_wrap--forest .org-person_tile {
    background-color: #0f955a;
}

.shareprice {
    color: #fff;
}

.shareprice__value {
    font-size: 33px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.shareprice__change {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
}

.shareprice__change--down {
    color: #d3135a;
}

.shareprice__change--down .percent:after {
    content: '\25bc';
}

.shareprice__change--up {
    color: #0B563D;
}

.shareprice__change--up .percent:after {
    content: '\25b2';
}

@media screen and (min-width: 480px) {
    .shareprice__change {
        font-size: 18px;
    }
}

.stock-graph__buttons {
    text-align: right;
    margin-bottom: 20px;
}

.stock-graph__buttons button {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-left: 10px;
    font-size: 14px;
    padding: 10px;
    color: #000;
}

.stock-graph__buttons button.active {
    color: #d3135a;
}

.stock-graph__chart .tick text {
    fill: #999999;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 12px;
}

.stock-graph__chart .c3-axis-y path,
.stock-graph__chart .c3-axis-y .tick line {
    visibility: hidden;
}

.stock-graph__chart .c3-axis path,
.stock-graph__chart .tick line {
    stroke: #dddddd;
}

.stock-graph__chart .c3-circles circle {
    visibility: hidden;
}

.stock-graph__chart .c3-circles circle._expanded_ {
    visibility: visible;
}

.stock-graph__chart .c3-line {
    stroke-width: 3px;
}

.stock-graph__chart.one_year .c3-line {
    stroke-width: 2px;
}

.stock-graph__chart.five_years .c3-line {
    stroke-width: 1px;
}

.stock-graph__chart .c3-grid line {
    stroke: #dddddd;
    stroke-dasharray: 0 0;
}

.stock-graph__chart .c3-legend-item {
    cursor: default;
}

.stock-graph__chart .c3-legend-item text {
    cursor: default;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
}

.stock-graph__chart .c3-legend-item rect {
    cursor: default;
}

.stock-graph__tooltip {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.stock-graph__tooltip__heading {
    font-size: 14px;
    margin-bottom: 5px;
}

.stock-graph__tooltip__value {
    font-size: 18px;
    display: inline-block;
    margin-right: 5px;
}

.stock-graph__tooltip__date {
    display: inline;
    font-size: 14px;
    color: #999999;
}

/* endinject */
@media print {
    .module.search-form, .module.global-header, .module.global-megamenu, .module.filter, .module.related-content, .module.footer, .module.presentation, .module.subscribe {
        display: none !important;
    }

    *, *:before, *:after {
        background-color: #fff !important;
        color: #000 !important;
        border: none !important;
    }

    section {
        page-break-inside: avoid;
    }

    img {
        width: auto !important;
        max-width: 100vw;
        height: auto !important;
    }

    a {
        text-decoration: underline !important;
    }

    .module.hero {
        padding: 0;
        margin-bottom: 30px;
    }

    .module.hero:last-of-type {
        display: none;
    }

    .module.hero:first-of-type {
        display: block !important;
    }

    .module.article-content {
        padding-bottom: 0;
    }

    .component.share-links, .component.tags, .component.youtube-player, .component.video-player {
        display: none;
    }

    .article-carousel {
        max-width: 100%;
    }

    .article-carousel .carousel_control-wrap {
        display: none;
    }

    .component.accordian-table tr, .component.accordian-table th, .component.accordian-table td {
        padding: 0 !important;
    }

    .component.accordian-table table {
        margin-bottom: 40px !important;
    }

    .module.article-author {
        page-break-inside: avoid;
        margin-bottom: 0;
    }

    .carousel {
        margin: 0;
    }

    .component.rich-text,
    .component.pull-quote {
        margin-bottom: 30px;
    }
}


@media screen and (min-width: 1024px) {
    .related-content--most-popular .related-content_inner {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 768px) {
    .related-content--most-popular .related-content-card {
        margin-right: 20px;
    }
}

@media screen and (min-width: 1024px) {
    .related-content--most-popular .related-content-card {
        max-width: 50%;
        margin-right: 30px;
    }
}

.related-content--most-popular .related-content__cards {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (min-width: 1024px) {
    .related-content--most-popular .most-popular {
        width: 33%;
        margin-left: 20px;
    }
}

.most-popular li {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dddddd;
}

.most-popular__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: -0.72px;
    line-height: 1.33333;
}

@media screen and (min-width: 768px) {
    .most-popular__title {
        font-size: 24px;
        letter-spacing: -0.96px;
        line-height: 1.25;
    }
}

@media screen and (min-width: 1024px) {
    .most-popular__title {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.16667;
    }
}

.most-popular a:hover {
    text-decoration: none;
}

.most-popular a:hover .most-popular__title {
    text-decoration: underline;
}

.most-popular .text--date {
    color: #667790;
    display: inline-block;
}

.most-popular .text--date:before {
    content: "|";
    display: inline-block;
    padding-right: 12px;
}

.renewable-sources {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.renewable-sources p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .renewable-sources {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.renewable-sources__left .renewable-sources__inner, .renewable-sources__right .renewable-sources__inner {
    margin: 0 auto;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .renewable-sources__left, .renewable-sources__right {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.renewable-sources__left {
    padding: 0 15px;
    background: #fff;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .renewable-sources__left {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources__left {
        padding: 0 30px;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources__left {
        background: #0B563D;
        color: #fff;
    }
}

@media screen and (min-width: 1280px) {
    .renewable-sources__left .renewable-sources__inner {
        padding-right: 180px;
    }
}

.renewable-sources__right {
    background: #fff;
}

@media screen and (min-width: 1024px) {
    .renewable-sources__right .renewable-sources__inner {
        padding-left: 70px;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .renewable-sources__left, .renewable-sources__right {
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .renewable-sources__left .renewable-sources__inner {
        margin-right: 0;
    }

    .renewable-sources__right .renewable-sources__inner {
        margin-left: 0;
    }
}

.renewable-sources__inner {
    padding: 0 15px;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .renewable-sources__inner {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources__inner {
        padding: 0 30px;
    }
}

@media screen and (min-width: 768px) {
    .renewable-sources__inner {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources__inner {
        max-width: 658px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.renewable-sources__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0B563D;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .renewable-sources__title {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources__title {
        color: #fff;
    }
}

@media screen and (min-width: 768px) {
    .renewable-sources_inner-row {
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 -15px;
    }
}

.renewable-sources_content {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .renewable-sources_content {
        margin: 0;
        padding: 15px;
        width: 50%;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources_content {
        margin: 0;
        padding: 15px;
        width: calc(200% / 3);
    }
}

.renewable-sources_content-inner {
    background: #ffffff;
    height: 100%;
    padding: 20px;
}

@media screen and (min-width: 1024px) {
    .renewable-sources_content-inner {
        padding: 60px;
    }
}

.renewable-sources_text h2 {
    margin-bottom: 20px;
}

.renewable-sources_text p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 1.4375;
    margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .renewable-sources_data {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 40px;
    }
}

.renewable-sources_graph {
    padding: 40px 0;
    max-width: 350px;
    height: 350px;
    margin: 0 auto;
}

.renewable-sources_graph #renewable-graph {
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 1024px) {
    .renewable-sources_graph {
        height: 600px;
        max-width: 600px;
    }
}

.renewable-sources_key {
    position: static;
    display: none;
}

.renewable-sources_key .key {
    position: absolute;
}

.renewable-sources_key .key:after {
    content: "";
    width: 2px;
    height: 16px;
    background: #0E141A;
    position: absolute;
}

.renewable-sources_key .key--renewable {
    bottom: 20px;
    right: 0;
}

.renewable-sources_key .key--renewable:after {
    top: -20px;
    -webkit-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    transform: rotate(-35deg);
    left: 20%;
}

.renewable-sources_key .key--non-renewable {
    top: 20px;
    left: 0;
}

.renewable-sources_key .key--non-renewable:after {
    bottom: -20px;
    -webkit-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    transform: rotate(-35deg);
    right: 40%;
}

@media screen and (min-width: 1024px) {
    .renewable-sources_key .key:after {
        height: 40px;
    }

    .renewable-sources_key .key--renewable:after {
        top: -50px;
        -webkit-transform: rotate(-35deg);
        -ms-transform: rotate(-35deg);
        transform: rotate(-35deg);
        left: 20%;
    }

    .renewable-sources_key .key--non-renewable:after {
        bottom: -50px;
        -webkit-transform: rotate(-35deg);
        -ms-transform: rotate(-35deg);
        transform: rotate(-35deg);
        right: 40%;
    }
}

.renewable-sources .c3-chart-arc path {
    stroke: #0B563D;
}

.renewable-sources_legend dl dt {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    position: absolute;
    text-transform: uppercase;
    color: #0E141A;
}

.renewable-sources_legend dl dd {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.66667;
    margin: 0;
    text-align: right;
    text-transform: uppercase;
    color: #0E141A;
}

.renewable-sources_legend dl dd .track {
    background: #dddddd;
    display: block;
    height: 10px;
    margin: 4px 0 18px 0;
}

.renewable-sources_legend dl dd .track .value {
    background: #0B563D;
    display: block;
    height: 10px;
    transition: width 1.2s ease;
    width: 0;
}

@media screen and (min-width: 1024px) {
    .renewable-sources_legend {
        width: 95%;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources_legend dl dt, .renewable-sources_legend dl dd {
        color: #fff;
    }

    .renewable-sources_legend dl dd .track {
        background: #77ca7b;
        background: rgba(255, 255, 255, 0.2);
    }

    .renewable-sources_legend dl dd .track .value {
        background: #fff;
    }
}

.renewable-sources_promo {
    margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
    .renewable-sources_promo {
        margin: 0;
        max-width: none;
        padding: 15px;
        width: 50%;
    }
}

@media screen and (min-width: 1024px) {
    .renewable-sources_promo {
        width: calc(100% / 3);
    }
}

.renewable-sources_promo-inner {
    background-color: #0da036;
    background-image: linear-gradient(#0da036 20%, #6dc34b 90%);
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    min-height: 540px;
    height: 100%;
    padding: 380px 140px 20px 20px;
}

.renewable-sources_promo-inner h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.22727;
    color: #ffffff;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .renewable-sources_promo-inner h2 {
        font-size: 28px;
        letter-spacing: -0.56px;
        line-height: 1.28571;
    }
}

.renewable-sources_promo-inner .cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
}

.renewable-sources_promo-inner .cta:hover, .renewable-sources_promo-inner .cta._hover,
a:hover .renewable-sources_promo-inner .cta {
    text-decoration: none;
}

.renewable-sources_promo-inner .cta:hover, .renewable-sources_promo-inner .cta._hover,
a:hover .renewable-sources_promo-inner .cta {
    background-color: rgba(255, 255, 255, 0.2);
}

.renewable-sources_promo-inner:before {
    content: '';
    display: block;
    position: absolute;
    height: calc(100% + 36px);
    width: 100%;
    /*background: url("/placeholder/img/renewable/windmill.png");*/
    background-repeat: no-repeat;
    background-position: top right;
    top: -36px;
    right: 0;
}

@media screen and (min-width: 768px) {
    .renewable-sources_promo-inner {
        padding: 380px 140px 60px 40px;
    }
}

.save-quote {
    background: #000000;
    color: #fff;
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    transition: all .4s ease-in-out;
    z-index: 999;
}

.save-quote__header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 15px;
}

@media screen and (min-width: 768px) {
    .save-quote__header {
        padding: 25px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .save-quote__header {
        padding: 23px 30px;
    }
}

.save-quote__logo {
    max-width: 60px;
}

@media screen and (min-width: 768px) {
    .save-quote__logo {
        max-width: 109px;
    }
}

.save-quote__logo a {
    display: block;
}

.save-quote__logo img {
    width: 100%;
}

.save-quote__btns {
    margin-left: auto;
    -webkit-flex-grow: 1000;
    -ms-flex-positive: 1000;
    flex-grow: 1000;
    text-align: right;
}

@media screen and (min-width: 1024px) {
    .save-quote__btns {
        margin-left: 20px;
    }
}

.save-quote__btn {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
}

@media screen and (min-width: 768px) {
    .save-quote__btn {
        margin-left: 30px;
    }
}

.save-quote__btn-close {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .save-quote__btn-close {
        height: 21px;
        width: 21px;
    }
}

.save-quote__inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.save-quote__inner::after {
    clear: both;
    content: "";
    display: table;
}

.save-quote__content {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .save-quote__content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%;
        margin-left: 17.05961%;
    }

    .save-quote__content:last-child {
        margin-right: 0;
    }
}

@media screen and (min-width: 1024px) {
    .save-quote__content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-left: 25.58941%;
    }

    .save-quote__content:last-child {
        margin-right: 0;
    }
}

.save-quote__content h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

.save-quote__content p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    margin-bottom: 30px;
}

.save-quote__content p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .save-quote__content p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.save-quote__content label {
    display: none;
}

.save-quote__content button {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #ffffff;
    color: #ffffff;
}

.save-quote__content button:hover, .save-quote__content button._hover,
a:hover .save-quote__content button {
    text-decoration: none;
}

.save-quote__content button:hover, .save-quote__content button._hover,
a:hover .save-quote__content button {
    background-color: rgba(255, 255, 255, 0.2);
}

body.save-quote-open .save-quote {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.savings-calculator {
    padding: 50px 0;
    text-align: center;
}

@media screen and (min-width: 1024px) {
    .savings-calculator {
        text-align: left;
    }
}

@media screen and (min-width: 1024px) {
    .savings-calculator {
        padding: 130px 0;
    }
}

@media screen and (min-width: 1024px) {
    .savings-calculator__tab-content {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media screen and (min-width: 1024px) {
    .savings-calculator .col1, .savings-calculator .col3 {
        width: 30%;
    }

    .savings-calculator .col2 {
        width: 40%;
        overflow: hidden;
    }
}

.savings-calculator__title {
    text-align: center;
    margin-bottom: 30px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .savings-calculator__title {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

.savings-calculator__heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.52px;
    line-height: 1.07692;
    color: #0E141A;
    color: #0B563D;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .savings-calculator__heading {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

.savings-calculator p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    margin-bottom: 20px;
}

.savings-calculator p p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .savings-calculator p {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 1024px) {
    .savings-calculator p {
        margin-bottom: 50px;
    }
}

.savings-calculator__subheading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    color: #999999;
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    .savings-calculator__subheading {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.savings-calculator__savings {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    margin-bottom: 20px;
    color: #0B563D;
}

.savings-calculator__savings p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .savings-calculator__savings {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.savings-calculator__savings .savings {
    display: block;
    margin: 20px 0;
    font-size: 80px;
    letter-spacing: -3.2px;
    line-height: 0.5625;
}

.savings-calculator__savings .small {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.66667;
    color: #0B563D;
}

@media screen and (min-width: 768px) {
    .savings-calculator__savings .small {
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 1.66667;
    }
}

.savings-calculator .cta-1 {
    display: none;
}

.savings-calculator .cta-2 {
    display: inline-block;
}

.savings-calculator__graphics {
    width: 100px;
    margin-bottom: 30px;
    margin: 0 auto 30px;
    left: -10px;
    display: none;
    -webkit-transform: translate(0, 60px);
    -ms-transform: translate(0, 60px);
    transform: translate(0, 60px);
    transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.savings-calculator.in-view .savings-calculator__graphics {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    display: block;
}

.savings-calculator__graphic {
    position: absolute;
    width: 100%;
    top: 0;
}

.savings-calculator__graphic img {
    width: 100%;
    height: auto;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
}

.savings-calculator .graphic-0 {
    position: relative;
}

.savings-calculator .graphic-0 {
    z-index: 10;
    left: 0%;
}

.savings-calculator .graphic-0 img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.savings-calculator .graphic-1 {
    z-index: 9;
    left: 15%;
}

.savings-calculator .graphic-1 img {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.savings-calculator .graphic-2 {
    z-index: 8;
    left: 30%;
}

.savings-calculator .graphic-2 img {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.savings-calculator .graphic-3 {
    z-index: 7;
    left: 45%;
}

.savings-calculator .graphic-3 img {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
}

@media screen and (min-width: 768px) {
    .savings-calculator .range-slider {
        margin: 40px 0;
    }
}

.savings-calculator .range-slider input[type="range"]::-webkit-slider-thumb {
    height: 60px;
    width: 60px;
    background: #0B563D;
}

.savings-calculator .range-slider input[type="range"]::-moz-range-thumb {
    height: 60px;
    width: 60px;
    background: #0B563D;
}

.savings-calculator .range-slider input[type="range"]::-ms-thumb {
    height: 60px;
    width: 60px;
    background: #0B563D;
}

.savings-calculator .range-slider input[type="range"]::-webkit-slider-runnable-track {
    height: 60px;
}

.savings-calculator .range-slider input[type="range"]::-moz-range-track {
    height: 60px;
}

.savings-calculator .range-slider input[type="range"]::-ms-track {
    height: 60px;
}

.savings-calculator__tabs {
    text-align: center;
    margin-bottom: 30px;
}

.savings-calculator__tabs li {
    display: inline;
}

.savings-calculator__tabs li span {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: 4.16667;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    background: #0B563D;
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    border-radius: 15px;
}

.savings-calculator__tabs li span:after {
    content: "";
    width: 20px;
    height: 20px;
    border: 10px solid transparent;
    border-top: 10px solid #0B563D;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    bottom: -20px;
}

@media screen and (min-width: 768px) {
    .savings-calculator__savings .savings {
        margin-top: 10px;
        font-size: 80px;
        letter-spacing: -3.2px;
        line-height: 1.0625;
    }
}

@media screen and (min-width: 1024px) {
    .savings-calculator {
        text-align: left;
    }

    .savings-calculator__graphics {
        width: auto;
        max-width: 70%;
        margin: 0 auto;
        left: 0;
    }

    .savings-calculator .cta-1 {
        display: inline-block;
    }

    .savings-calculator .cta-2 {
        display: none;
    }

    .savings-calculator .range-slider {
        margin: 60px 0;
    }
}

@media screen and (min-width: 1280px) {
    .savings-calculator__savings .savings {
        font-size: 100px;
        letter-spacing: -4px;
        line-height: 1;
    }
}

.three-col-carousel {
    background: #f4f4f4;
    padding: 30px 0;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.three-col-carousel p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .three-col-carousel {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.three-col-carousel__header {
    text-align: center;
    margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
    .three-col-carousel__header {
        margin-bottom: 60px;
    }
}

.three-col-carousel .container {
    padding: 0;
}

.three-col-carousel__pagination {
    text-align: center;
}

.three-col-carousel__pagination .swiper-pagination-bullet {
    margin: 0 5px;
}

.three-col-carousel__pagination .swiper-pagination-bullet-active {
    background: #d3135a;
}

@media screen and (min-width: 768px) {
    .three-col-carousel__pagination {
        display: none;
    }
}

.three-col-carousel .swiper-slide {
    text-align: center;
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .three-col-carousel .swiper-slide {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .three-col-carousel .swiper-slide {
        padding: 0 30px;
    }
}

@media screen and (min-width: 1024px) {
    .three-col-carousel .swiper-slide {
        padding: 0 60px;
    }
}

.three-col-carousel .icon {
    font-size: 70px;
    margin-bottom: 10px;
    display: inline-block;
}

.three-col-carousel .icon.green {
    color: #0B563D;
}

.three-col-carousel .icon.red {
    color: #d3135a;
}

.three-col-carousel .icon.blue {
    color: #002466;
}

.three-col-carousel .icon.sky {
    color: #002466;
}

.three-col-carousel .icon.orange {
    color: #0152E8;
}

.three-col-carousel .icon.pink {
    color: #d3135a;
}

.three-col-carousel .eyebrow {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #0E141A;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .three-col-carousel .eyebrow {
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 1.33333;
    }
}

.three-col-carousel p {
    color: #0E141A;
}

.three-col-carousel__heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .three-col-carousel__heading {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.three-col-carousel .btn-cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    border-color: #0E141A;
    color: #0E141A;
}

.three-col-carousel .btn-cta:hover, .three-col-carousel .btn-cta._hover,
a:hover .three-col-carousel .btn-cta {
    text-decoration: none;
}

.three-col-carousel .btn-cta:hover, .three-col-carousel .btn-cta._hover,
a:hover .three-col-carousel .btn-cta {
    background-color: rgba(34, 34, 34, 0.2);
}

.three-col-carousel .link {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    text-transform: uppercase;
    display: inline-block;
    padding: 17px 40px 17px;
}

.three-col-carousel .link:hover {
    text-decoration: underline;
}

.vertical-tabs {
    background: #EFF2F7;
}

.vertical-tabs__nav__inner {
    padding: 100px 0;
    background: #EFF2F7;
}

.vertical-tabs__nav .eyebrow {
    margin-bottom: 20px;
}

.vertical-tabs__nav .link {
    color: #d3135a;
}

.vertical-tabs__nav ul {
    margin-bottom: 20px;
}

.vertical-tabs__nav li > a {
    display: block;
    padding: 15px 0;
    padding-right: 80px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
}

.vertical-tabs__nav li a:after {
    display: block;
    font-family: 'icomoon';
    content: "\e905";
    font-style: normal;
    font-weight: normal;
}

.vertical-tabs__nav li a:after {
    color: #d3135a;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-size: 14px;
}

.vertical-tabs__content {
    display: none;
}

@media screen and (min-width: 1024px) {
    .vertical-tabs {
        min-height: 100vh;
        background: #fff;
    }

    .vertical-tabs:before {
        content: "";
        position: absolute;
        z-index: 0;
        width: 33%;
        height: 100%;
        background: #EFF2F7;
        top: 0;
    }

    .vertical-tabs__nav {
        text-align: right;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        /*height: 100vh;*/
        height:100%;
    }

    .vertical-tabs__nav .container, .vertical-tabs__nav__inner {
        height: 100vh;
    }

    .vertical-tabs__nav__inner {
        width: 480px;
        float: left;
        z-index: 1;
        overflow-y: auto;
    }

    .vertical-tabs__nav .eyebrow {
        margin-right: 70px;
    }

    .vertical-tabs__nav li {
        padding: 0 70px 0 30px;
    }

    .vertical-tabs__nav li.active {
        background: #fff;
    }

    .vertical-tabs__nav li a {
        padding: 20px 0;
    }

    .vertical-tabs__nav li a:after {
        display: none;
    }

    .vertical-tabs__nav .link {
        margin-right: 70px;
    }

    .vertical-tabs__nav.fixed {
        position: fixed;
        top: 0;
    }

    .vertical-tabs__nav.scrolled-past {
        position: absolute;
        top: auto;
        bottom: 0;
    }

    .vertical-tabs__content {
        display: block;
        background: #fff;
        margin-left: 500px;
        float: right;
        padding: 0 30px;
    }

    .vertical-tabs__content__inner {
        background: #fff;
    }
}

.video {
    height: 0;
    padding-top: 56.25%;
    margin: 20px 0;
}

.video__wrapper {
    height: 0;
    padding-top: 56.25%;
}

.video__wrapper, .video__overlay, .video iframe {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.video iframe {
    height: 100%;
}

@media screen and (min-width: 1024px) {
    .video--sticky {
        margin: 0;
        z-index: 1 !important;
        height: 0;
        padding-top: 56.25%;
    }

    .video--sticky .video__wrapper {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .video--sticky.static .video__wrapper {
        position: absolute;
    }
}

.video__overlay {
    z-index: 1;
    height: 100%;
}

.ios .video__overlay, .android .video__overlay {
    display: none;
}

.video__overlay:before {
    background: rgba(0, 0, 0, 0.4);
    content: '';
    cursor: pointer;
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.video__overlay:after {
    /*background-image: url("/img/video-play-button-hover.png");*/
    background: no-repeat center center;
    background-size: 50%;
    content: '';
    cursor: pointer;
    display: block;
    height: 88px;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 88px;
    z-index: 3;
}

@media screen and (min-width: 1024px) {
    .video__overlay:after {
        background-size: 100%;
    }
}

.video__overlay:hover:after {
    /*background-image: url("/img/video-play-button-hover.png");*/
}

.video__overlay.hide {
    display: none;
    -webkit-transform: translate3d(0);
    transform: translate3d(0);
    transition: opacity 0.5s;
    z-index: 0;
}

.video__overlay img {
    width: 100%;
    height: auto;
}

#main .module {
    z-index: 2;
}

.video-scroller {
    overflow: hidden;
}

.video-scroller__title {
    text-align: center;
    padding: 60px 0;
    max-width: 640px;
    margin: 0 auto;
}

.video-scroller__video {
    display: none;
}

.video-scroller__video video {
    display: none;
}

.video-scroller__image {
    width: 100%;
    height: auto;
}

.video-scroller__content {
    text-align: center;
}

.video-scroller .eyebrow {
    margin-bottom: 40px;
}

.video-scroller__copy {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
    padding: 0 20px;
}

.video-scroller__copy p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .video-scroller__copy {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.video-scroller__copy p {
    font-size: 26px;
    line-height: 32px;
}

.video-scroller__copy p strong {
    font-weight: normal;
}

.color-blue .video-scroller__copy p strong {
    color: #002466;
}

.color-green .video-scroller__copy p strong {
    color: #0B563D;
}

.color-orange .video-scroller__copy p strong {
    color: #0152E8;
}

@media screen and (min-width: 1024px) {
    .video-scroller__copy {
        font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 15px;
        letter-spacing: 0.3px;
        line-height: 1.46667;
        padding: 0;
    }

    .video-scroller__copy p {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 1024px) and (min-width: 768px) {
    .video-scroller__copy {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

@media screen and (min-width: 1024px) {
    .video-scroller__copy p {
        font-size: 30px;
        line-height: 45px;
    }

    .video-scroller__title {
        padding: 170px 0 0;
        z-index: 1;
    }

    .video-scroller__container {
        min-height: 100vh;
        position: static;
    }

    .video-scroller__video {
        width: 540px;
        position: absolute;
        top: 0;
        display: block;
        top: 50vh;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    .video-scroller__video.fixed {
        position: fixed;
    }

    .video-scroller__video.absolute-bottom {
        position: absolute;
        bottom: 0;
        top: auto;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .video-scroller__video video {
        width: 100%;
        height: auto;
        display: block;
    }

    .video-scroller__image {
        display: none;
    }

    .video-scroller__content {
        margin-left: 50%;
        padding-left: 30px;
        text-align: left;
        padding-bottom: 0;
        padding-top: 100px;
    }

    .video-scroller__item {
        height: 70vh;
        min-height: 400px;
        padding-top: 240px;
        padding-bottom: 240px;
    }

    .video-scroller__item:last-child {
        min-height: 0;
        height: 55vh;
    }
}

@media screen and (min-width: 1280px) {
    .video-scroller__video {
        width: 800px;
    }

    .video-scroller__content {
        margin-left: 800px;
    }
}

.article-author {
    max-width: 1024px;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 50px;
}

.article-author h2 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .article-author h2 {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (min-width: 768px) {
    .article-author {
        margin-left: 25px;
        margin-right: 25px;
    }
}

@media screen and (min-width: 1084px), print {
    .article-author {
        margin-left: auto;
        margin-right: auto;
    }
}

.article-author:before {
    content: "";
    width: auto;
    height: 100%;
    width: 100%;
    left: 4px;
    top: 4px;
    background-color: rgba(0, 0, 0, 0.06);
    position: absolute;
    z-index: 0;
}

.article-author__inner {
    border: 3px solid #dddddd;
    padding: 30px;
    min-height: 310px;
    background: #fff;
}

.article-author__image-col {
    width: 250px;
    margin: 0 auto 30px;
    z-index: 1;
}

@media screen and (min-width: 768px), print {
    .article-author__image-col {
        position: absolute;
        top: 30px;
    }
}

.article-author__text-col {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0.36px;
    line-height: 1.66667;
}

@media screen and (min-width: 768px), print {
    .article-author__text-col {
        padding-left: 320px;
    }
}

.article-author__subheading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.25;
    color: #999999;
    margin-bottom: 5px;
}

.article-author__heading {
    /*@include univers(300);
        @include font-size-tracking(30, -40, 35);*/
    margin-bottom: 30px;
}

.article-author__bio {
    color: #999999;
}

.article-author__bio p {
    margin-bottom: 30px;
}

.article-author__link {
    color: #d3135a;
    text-decoration: underline;
}

.tabs {
    max-width: 1010px;
}

.tabs h2 {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .tabs h2 {
        margin-bottom: 60px;
    }
}

.tabs .list-content {
    padding: 0;
}

.tabs .swiper-container {
    margin: 0;
}

.tabs .swiper-slide {
    width: auto;
}

.tabs__labels {
    display: inline-block;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media screen and (min-width: 1024px) {
    .tabs__labels {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.tabs__label-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    margin: 0 auto;
}

.tabs__label-wrapper:before {
    content: "";
    box-sizing: content-box;
    width: 100%;
    padding: 0 5px;
    left: -5px;
    position: absolute;
    height: 100%;
    top: 5px;
    background: #dddddd;
    z-index: 0;
}

.tabs__label, .tabs__btn-prev, .tabs__btn-next {
    display: block;
    height: 78px;
    line-height: 78px;
    background: #f4f4f4;
    padding: 0 24px;
    border-right: 1px solid #dddddd;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.tabs__label:hover, .tabs__btn-prev:hover, .tabs__btn-next:hover {
    background: #e5e5e5;
}

.ios .tabs__label:hover, .ios .tabs__btn-prev:hover, .ios .tabs__btn-next:hover {
    background: #f4f4f4;
}

.tabs__label.active, .tabs__btn-prev.active, .tabs__btn-next.active {
    background: #d3135a;
    color: #fff;
}

.tabs .swiper-slide:last-child .tabs__label, .tabs .swiper-slide:last-child .tabs__btn-prev, .tabs .swiper-slide:last-child .tabs__btn-next {
    border-right: none;
}

.tabs__btn-prev, .tabs__btn-next {
    padding: 0 12px;
    cursor: pointer;
    display: inline-block;
    color: #d3135a;
}

.tabs__btn-prev.swiper-button-disabled, .tabs__btn-next.swiper-button-disabled {
    background: #fcfcfc;
    cursor: default;
    color: #667790;
}

.tabs__btn-next {
    border-left: 1px solid #dddddd;
    border-right: none !important;
}

.tabs__tab {
    padding-top: 20px;
}

.contact {
    margin: 0;
}

@media screen and (min-width: 768px) {
    .contact_wrap {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .contact_wrap .contact_carousel_wrap {
        width: 50%;
    }

    .contact_wrap .subscribe {
        width: 50%;
    }
}

@media screen and (min-width: 1024px) {
    .contact_wrap {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .contact_wrap .contact_carousel_wrap {
        display: none;
    }

    .contact_wrap .contact_carousel,
    .contact_wrap .contact_no_carousel {
        width: 66.666%;
    }

    .contact_wrap .subscribe {
        width: 33.333%;
    }
}

@media screen and (max-width: 767px) {
    .contact {
        margin-top: 0;
        margin-bottom: 0;
        padding: 0 15px;
    }
}

.disclaimer + .contact .contact_inner,
.related-content--gallery + .contact .contact_inner,
.hub + .contact .contact_inner {
    border-top: none;
}

.contact_inner {
    border-top: 1px solid #cecece;
    display: block;
    margin: 0px auto;
    max-width: 1080px;
    padding-bottom: 35px;
}

@media screen and (min-width: 768px) {
    .contact_inner {
        padding: 15px 0px 75px;
    }
}

.contact_header {
    padding: 60px 0 10px;
}

@media screen and (max-width: 767px) {
    .contact_header {
        padding: 45px 0 0;
    }
}

.contact_wrapper {
    padding-top: 42px;
    display: block;
    float: left;
    padding-top: 60px;
    vertical-align: top;
    width: 50%;
}

@media screen and (min-width: 1024px) {
    .contact_wrapper {
        width: 50%;
    }
}

.contact_heading {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: -0.14px;
    line-height: 1;
    margin-bottom: 30px;
}

.contact_carousel {
    overflow: hidden;
    padding-bottom: 100px;
}

@media screen and (min-width: 1024px) {
    .contact_carousel {
        display: none;
    }
}

.contact_carousel--loading {
    visibility: hidden;
}

.contact_carousel .slick-slide {
    outline: none;
}

.contact_carousel .slick-slider {
    margin-bottom: 30px;
}

.contact_carousel .slick-dots {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

.contact_carousel .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.contact_carousel .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: white;
    border: 3px solid rgba(211, 19, 89, 0.7);
    border-radius: 100px;
    outline: none;
    background: transparent;
}

.contact_carousel .slick-dots li button:hover,
.contact_carousel .slick-dots li button:focus {
    outline: none;
}

.contact_carousel .slick-dots li button:hover:before,
.contact_carousel .slick-dots li button:focus:before {
    display: block;
    border-radius: 100px;
    border: 3px solid transparent;
}

.contact_carousel .slick-dots li button:before {
    font-size: 0;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.contact_carousel .slick-dots li.slick-active button {
    background-color: #d3135a;
}

.contact_carousel .slick-dots li.slick-active button:active {
    -webkit-tap-highlight-color: transparent;
}

.contact_no_carousel {
    display: none;
}

@media screen and (min-width: 1024px) {
    .contact_no_carousel {
        display: block;
    }
}

.contact_email, .contact_phone {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1;
}

.contact_name {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1;
}

.contact_name + .contact_name {
    margin-top: 7px;
}

.contact_name strong {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.contact_email {
    margin-top: 36px;
}

.contact_email + .contact_email {
    margin-top: 9px;
}

.contact_email strong {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-right: 5px;
}

.contact_email a {
    color: #d3135a;
    text-decoration: underline;
}

.contact_phone {
    margin-top: 12px;
}

.contact_phone + .contact_phone {
    margin-top: 9px;
}

@media screen and (min-width: 768px) {
    .contact_phone {
        margin-top: 30px;
    }
}

.contact_phone strong {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-right: 5px;
}

.dotcom-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

.dotcom-header__main {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 15px 0 15px;
}

@media screen and (min-width: 768px) {
    .dotcom-header__main {
        padding: 25px 25px 0;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-header__main {
        padding: 23px 30px 0;
    }
}

.dotcom-header__logo {
    max-width: 60px;
}

@media screen and (min-width: 768px) {
    .dotcom-header__logo {
        max-width: 109px;
    }
}

.dotcom-header__logo a {
    display: block;
}

.dotcom-header__logo img {
    width: 100%;
    vertical-align: initial;
}

.dotcom-header__btns {
    margin-left: auto;
}

@media screen and (min-width: 1024px) {
    .dotcom-header__btns {
        margin-left: 20px;
    }
}

.dotcom-header__btn {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
}

@media screen and (min-width: 768px) {
    .dotcom-header__btn {
        margin-left: 30px;
    }
}

.dotcom-header__btn__text {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    display: none;
    color: #ffffff;
    padding-right: 20px;
    position: relative;
    top: -7px;
}

@media screen and (min-width: 768px) {
    .dotcom-header__btn__text {
        text-transform: uppercase;
        display: inline-block;
    }
}

.dotcom-header__btn .icon-search-small {
    font-size: 19px;
    color: #fff;
}

@media screen and (min-width: 768px) {
    .dotcom-header__btn .icon-search-small {
        font-size: 28px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-header__btn .icon-search-small {
        font-size: 22px;
    }
}

.dotcom-header__btn.btn-menu {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .dotcom-header__btn.btn-menu {
        height: 24px;
        width: 32px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-header__btn.btn-menu {
        height: 19px;
        width: 22px;
    }
}

.dotcom-header__btn.btn-search-close {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .dotcom-header__btn.btn-search-close {
        height: 24px;
        width: 32px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-header__btn.btn-search-close {
        height: 21px;
        width: 21px;
    }
}

.dotcom-header__btn.btn-search-close {
    display: none;
}

.dotcom-header__links {
    display: none;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 1024px) {
    .dotcom-header__links {
        display: block;
    }
}

.dotcom-header__links li {
    display: inline;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.33333;
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 14px;
}

.dotcom-header__links a {
    display: inline-block;
    color: #fff;
    padding: 5px;
}

.dotcom-header__links a:hover {
    text-decoration: underline;
}

.page-search .dotcom-header .btn-search-open {
    display: none;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__article {
        display: none;
        -webkit-transform: translate(0, 10px);
        -ms-transform: translate(0, 10px);
        transform: translate(0, 10px);
        transition: 0.3s opacity, 0.5s -webkit-transform ease-out;
        transition: 0.3s opacity, 0.5s transform ease-out;
        transition: 0.3s opacity, 0.5s transform ease-out, 0.5s -webkit-transform ease-out;
    }

    .dotcom-megamenu__article:nth-of-type(0) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(1) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(2) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(3) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(4) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(5) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(6) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(7) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(8) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__article:nth-of-type(9) {
        transition-delay: 0s;
    }
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li {
        transition: 0.1s opacity, 0.2s -webkit-transform ease-out;
        transition: 0.1s opacity, 0.2s transform ease-out;
        transition: 0.1s opacity, 0.2s transform ease-out, 0.2s -webkit-transform ease-out;
        -webkit-transform: translate(0, 10px);
        -ms-transform: translate(0, 10px);
        transform: translate(0, 10px);
        display: none;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(0) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(1) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(2) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(3) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(4) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(5) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(6) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(7) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(8) {
        transition-delay: 0s;
    }

    .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(9) {
        transition-delay: 0s;
    }
}

.dotcom-megamenu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10001;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    transition: -webkit-transform 0s ease-in-out 0.7s;
    transition: transform 0s ease-in-out 0.7s;
    transition: transform 0s ease-in-out 0.7s, -webkit-transform 0s ease-in-out 0.7s;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.menu-open .dotcom-megamenu {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0s;
    transition: transform 0s;
    transition: transform 0s, -webkit-transform 0s;
}

.menu-open .dotcom-megamenu .dotcom-megamenu__nav {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.menu-open .dotcom-megamenu .dotcom-megamenu__main {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: all 0.7s ease-in-out 0s;
    display: block;
}

@media screen and (min-width: 768px) {
    .menu-open .dotcom-megamenu .dotcom-megamenu__article {
        display: block;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(0) {
        transition-delay: 0.5s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(1) {
        transition-delay: 0.75s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(2) {
        transition-delay: 1s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(3) {
        transition-delay: 1.25s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(4) {
        transition-delay: 1.5s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(5) {
        transition-delay: 1.75s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(6) {
        transition-delay: 2s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(7) {
        transition-delay: 2.25s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(8) {
        transition-delay: 2.5s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__article:nth-of-type(9) {
        transition-delay: 2.75s;
    }
}

@media screen and (min-width: 768px) {
    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li {
        display: block;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(0) {
        transition-delay: 0.4s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(1) {
        transition-delay: 0.5s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(2) {
        transition-delay: 0.6s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(3) {
        transition-delay: 0.7s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(4) {
        transition-delay: 0.8s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(5) {
        transition-delay: 0.9s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(6) {
        transition-delay: 1s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(7) {
        transition-delay: 1.1s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(8) {
        transition-delay: 1.2s;
    }

    .menu-open .dotcom-megamenu .dotcom-megamenu__nav .dotcom-megamenu__nav__body li:nth-of-type(9) {
        transition-delay: 1.3s;
    }
}

.dotcom-megamenu__nav {
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #d3135a;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__nav {
        width: 340px;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        background-color: #d3135a;
        transition: -webkit-transform 0.4s ease-in-out 0s;
        transition: transform 0.4s ease-in-out 0s;
        transition: transform 0.4s ease-in-out 0s, -webkit-transform 0.4s ease-in-out 0s;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__nav {
        width: 400px;
    }
}

.dotcom-megamenu__main {
    background: #EFF2F7;
    -webkit-transform: translate(calc(100% + 400px), 0);
    -ms-transform: translate(calc(100% + 400px), 0);
    transform: translate(calc(100% + 400px), 0);
    transition: all 0.4s ease-in-out;
    display: none;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__main {
        display: none;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .menu-open .dotcom-megamenu__main {
        display: none;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
}

.dotcom-megamenu__main__body {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.dotcom-megamenu__navSecondary {
    display: none;
}

@media screen and (min-width: 1280px) {
    .dotcom-megamenu__navSecondary {
        display: block;
        min-width: 260px;
    }
}

.dotcom-megamenu__lang-links {
    top: -4px;
}

.dotcom-megamenu__lang-links li {
    display: inline-block;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1.53846;
    margin-right: 20px;
}

.dotcom-megamenu__lang-links li a {
    color: #fff;
}

.dotcom-megamenu__lang-links li a:hover {
    text-decoration: none;
}

.dotcom-megamenu__lang-links li.selected:after, .dotcom-megamenu__lang-links li:hover:after {
    content: "";
    width: 100%;
    height: 4px;
    background: #fff;
    position: absolute;
    bottom: -6px;
    left: -2px;
    box-sizing: content-box;
    padding: 0 2px;
}

.dotcom-megamenu__main {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.dotcom-megamenu__main__header {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 64px;
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__main__header {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__main__header {
        padding: 0 30px;
    }
}

@media screen and (max-width: 768px -1) {
    .dotcom-megamenu__main__header {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__main__header {
        height: 84px;
    }
}

.dotcom-megamenu__main__header__logo {
    display: block;
    width: 120px;
}

.dotcom-megamenu__main__header__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.dotcom-megamenu__nav__header {
    background: #e2175c;
    position: absolute;
    top: 0;
    width: 100%;
    display: none;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 64px;
    padding: 0 15px;
    z-index: 9999999;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

@media screen and (min-width: 768px) {
    .menu-open .dotcom-megamenu__nav__header{
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .dotcom-megamenu__nav__header {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__nav__header {
        padding: 0 30px;
    }
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__nav__header {
        height: 84px;
    }
}
@media screen and (max-width: 767px) {
    body:not(.menu-open) .dotcom-megamenu__nav *{
        display: none;
    }
    .menu-open .dotcom-megamenu__nav__header{
        display: flex !important;
    }
    .menu-open .dotcom-megamenu__nav__header .dotcom-megamenu__lang-links {
        display: flex !important;
    }
     .search-block:not(.search-open){
        display:none;
    }
}

.dotcom-megamenu__nav .btn-close {
    top: 2px;
    height: 17px;
    width: 24px;
    vertical-align: middle;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__nav .btn-close {
        width: 32px;
        height: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__nav .btn-close {
        width: 21px;
        height: 21px;
    }
}

.dotcom-megamenu__nav__body {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 64px 0 0;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__nav__body {
        padding: 84px 0 0;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 767px) {
    .dotcom-megamenu__nav__body {
        background: #f4f4f4;
    }
}

@media screen and (min-width: 1280px) {
    .dotcom-megamenu__nav .secondaryMenu {
        display: none;
    }
}

.dotcom-megamenu__accordian {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.dotcom-megamenu__nav__body .dotcom-megamenu__accordian {
    background-color: #d3135a;
}

.dotcom-megamenu__accordian__header {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.36364;
    padding: 0 15px;
    border-top: 1px solid #d90d55;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__accordian__header {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__accordian__header {
        padding: 0 30px;
    }
}

.dotcom-megamenu__accordian__header:before, .dotcom-megamenu__accordian__header:after {
    right: 27px;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__accordian__header:before, .dotcom-megamenu__accordian__header:after {
        right: 37px;
    }
}

.dotcom-megamenu__accordian__header:before {
    content: "";
    background: #a41242;
    width: 16px;
    height: 2px;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    margin-right: -7px;
}

.dotcom-megamenu__accordian__header:after {
    content: "";
    background: #a41242;
    width: 2px;
    height: 16px;
    position: absolute;
    top: 50%;
    margin-top: -8px;
}

@media screen and (min-width: 1280px) {
    .dotcom-megamenu__accordian__header {
        cursor: default;
    }

    .dotcom-megamenu__accordian__header:before, .dotcom-megamenu__accordian__header:after {
        display: none;
    }
}

.dotcom-megamenu__accordian:last-child {
    border-bottom: 1px solid #d90d55;
}

.dotcom-megamenu__accordian__body {
    display: none;
    padding: 10px 0 20px;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__accordian__body {
        padding: 10px 0 40px;
    }
}

.dotcom-megamenu__accordian__header.open:after {
    display: none;
}

@media screen and (max-width: 768px -1) {
    .dotcom-megamenu__accordian.primaryMenu .dotcom-megamenu__accordian__header {
        display: none;
    }

    .dotcom-megamenu__accordian.primaryMenu .dotcom-megamenu__accordian__body {
        padding: 30px 0;
    }
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__accordian.primaryMenu {
        -webkit-order: 999;
        -ms-flex-order: 999;
        order: 999;
    }

    .dotcom-megamenu__accordian:last-child {
        border-bottom: none;
    }
}

.dotcom-megamenu__navSecondary .dotcom-megamenu__accordian .dotcom-megamenu__accordian__header,.megamenu__navSecondary .dotcom-megamenu__accordian .dotcom-megamenu__accordian__header {
    border: none;
    cursor: default;
    color: #0E141A;
}

.dotcom-megamenu__navSecondary .dotcom-megamenu__accordian .dotcom-megamenu__accordian__header:before, .dotcom-megamenu__navSecondary .dotcom-megamenu__accordian .dotcom-megamenu__accordian__header:after {
    display: none;
}

.dotcom-megamenu__navSecondary .dotcom-megamenu__accordian .dotcom-megamenu__accordian__body {
    padding-top: 0;
}

.dotcom-megamenu__links {
    margin-bottom: 30px;
}

.dotcom-megamenu__links:last-child {
    margin-bottom: 0;
}

.dotcom-megamenu__links a {
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__links a {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__links a {
        padding: 0 30px;
    }
}

.dotcom-megamenu__links a:hover {
    text-decoration: underline;
}

.dotcom-megamenu__links__heading {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1.53846;
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__links__heading {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__links__heading {
        padding: 0 30px;
    }
}

.dotcom-megamenu__links li {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.33333;
    margin-bottom: 36px;
}

.dotcom-megamenu__links li:last-child {
    margin-bottom: 0;
}

.dotcom-megamenu__links li.selected a:before {
    content: "";
    width: 0.22em;
    height: 1.1em;
    box-sizing: content-box;
    padding: 0.05em 0;
    background: #fff;
    position: absolute;
    top: 0.05em;
    left: 0;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__links li.selected a:before {
        left: 10px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__links li.selected a:before {
        left: 14px;
    }
}

.dotcom-megamenu__links li.selected .dotcom-megamenu__links__heading:before {
    font-size: 18px;
    top: 0em;
}

.dotcom-megamenu__links div li {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.dotcom-megamenu__links .dotcom-megamenu__submenu {
    margin-top: 12px;
}

.dotcom-megamenu__links .dotcom-megamenu__submenu li {
    margin-bottom: 12px;
}

.dotcom-megamenu__links .dotcom-megamenu__submenu li:last-child {
    margin: 0;
}

@media screen and (max-width: 768px -1) {
    a.dotcom-megamenu__links__heading {
        font-size: 26px;
        letter-spacing: 0px;
        line-height: 1.30769;
        text-transform: none;
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .selected a.dotcom-megamenu__links__heading:before {
        font-size: 26px !important;
    }

    a.dotcom-megamenu__links__heading + .dotcom-megamenu__submenu {
        display: none;
    }
}

.dotcom-megamenu__news {
    padding: 25px 40px 0;
    margin: 0 auto;
    width: 100%;
    max-width: 832px;
}

.dotcom-megamenu__news__inner {
    margin: 0 auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.dotcom-megamenu__news__mobile {
    background: #f4f4f4;
    padding: 40px 15px;
}

.dotcom-megamenu__news__mobile .dotcom-megamenu__article {
    height: 100%;
}

.dotcom-megamenu__news__mobile .swiper-container {
    padding-bottom: 40px;
}

.dotcom-megamenu__news__mobile .swiper-wrapper {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.dotcom-megamenu__news__mobile .swiper-slide {
    height: auto;
}

.dotcom-megamenu__news__mobile .swiper-pagination-bullet-active {
    background: #d3135a;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__news__mobile {
        display: none;
    }
}

.dotcom-search-form {
    color: #fff;
    width: 100%;
    z-index: 10000;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    position: absolute;
    transition: all .4s ease-in-out;
    overflow: hidden;
    max-height: 100vh;
    visibility: hidden;
    background: #d3135a;
}

.dotcom-search-form__header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 15px;
}

@media screen and (min-width: 768px) {
    .dotcom-search-form__header {
        padding: 25px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-search-form__header {
        padding: 23px 30px;
    }
}

.dotcom-search-form__logo {
    max-width: 60px;
}

@media screen and (min-width: 768px) {
    .dotcom-search-form__logo {
        max-width: 120px;
    }
}

.dotcom-search-form__logo a {
    display: block;
}

.dotcom-search-form__logo img {
    width: 100%;
}

.dotcom-search-form__btns {
    margin-left: auto;
    -webkit-flex-grow: 1000;
    -ms-flex-positive: 1000;
    flex-grow: 1000;
    text-align: right;
}

@media screen and (min-width: 1024px) {
    .dotcom-search-form__btns {
        margin-left: 20px;
    }
}

.dotcom-search-form__btn {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
}

@media screen and (min-width: 768px) {
    .dotcom-search-form__btn {
        margin-left: 30px;
    }
}

.dotcom-search-form__btn-close {
    height: 17px;
    width: 24px;
    top: 1px;
}

@media screen and (min-width: 768px) {
    .dotcom-search-form__btn-close {
        height: 21px;
        width: 21px;
    }
}

.dotcom-search-form__inner {
    padding: 60px 0 60px;
    max-height: 100vh;
    overflow: hidden;
}

@media screen and (max-height: 400px) {
    .dotcom-search-form__inner {
        padding: 30px 0 60px;
    }

    .dotcom-search-open .dotcom-search-form__inner {
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }
}

.dotcom-search-form form {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .dotcom-search-form__content {
        margin-top: 40px;
        padding-left: 65px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-search-form__content {
        margin-top: 60px;
        padding-left: 90px;
    }
}

.dotcom-search-form__content ul {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 2;
}

.page-search .dotcom-search-form__content {
    margin-top: 0;
}

.dotcom-search-form__heading {
    color: #01194b;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.52px;
    line-height: 2.07692;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .dotcom-search-form {
        padding: 0 0 100px;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-search-form {
        padding: 0 0 90px;
    }
}

body.search-open .dotcom-search-form {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.dotcom-search-form__input {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 36px;
    letter-spacing: -1.44px;
    line-height: 2.22222;
    color: #fff;
    padding: 0;
    border: none;
    outline: none;
    width: 100%;
}

.dotcom-search-form .dotcom-search-form__input {
    background: #d3135a;
}

.dotcom-search-form .dotcom-search-form__input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
}

.dotcom-search-form .dotcom-search-form__input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
}

.dotcom-search-form .dotcom-search-form__input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
}

.dotcom-search-form .dotcom-search-form__input:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
}

.dotcom-search-form__input__wrap {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (min-width: 768px) {
    .dotcom-search-form__input {
        font-size: 60px;
        letter-spacing: -2.4px;
        line-height: 1.33333;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-search-form__input {
        font-size: 80px;
        letter-spacing: -3.2px;
        line-height: 1;
    }
}

.dotcom-search-form__submit {
    font-size: 29px;
    letter-spacing: 0.029px;
    line-height: 4.31034%;
    top: 0.07em;
}

.dotcom-search-form__submit__wrap {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    margin-right: 20px;
}

@media screen and (min-width: 768px) {
    .dotcom-search-form__submit {
        font-size: 45px;
        letter-spacing: 0.045px;
        line-height: 2.77778%;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-search-form__submit {
        font-size: 60px;
        letter-spacing: 0.06px;
        line-height: 2.08333%;
    }

    .dotcom-search-form__submit__wrap {
        margin-right: 30px;
    }
}

.page-search .dotcom-search-form {
    position: static !important;
    top: 0 !important;
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    visibility: visible !important;
    z-index: 1;
    background: #d3135a;
}

.page-search .dotcom-search-form__logo, .page-search .dotcom-search-form__btns {
    visibility: hidden;
}

.page-search .dotcom-search-form__content {
    margin-top: 0;
}

.home-hero__title-cursor {
    width: 30px;
    height: 0;
    position: absolute;
}

.home-hero__title-cursor:before {
    content: "";
    position: absolute;
    background: #fff;
    height: 0;
    width: 100%;
    padding-top: 310%;
}

.home-hero {
    height: 100vh;
    min-height: 440px;
    position: relative;
    visibility: hidden;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (min-width: 1024px) {
    .home-hero__content__inner {
        width: 100%;
    }

    .home-hero__title-container {
        height: 200px;
        width: 730px;
        margin-left: -60px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 767px) {
    .home-hero__title-container {
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    .home-hero__title-mask {
        overflow: hidden;
        height: 200px;
        position: absolute;
        right: 0;
        width: 0;
        transition: opacity 0.4s, width 0.1s 0.6s;
        display: none;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@media screen and (min-width: 1024px) and (max-width: 767px) {
    .home-hero__title-mask {
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    .home-hero .swiper-slide-active .home-hero__title-mask {
        width: 100%;
        transition: width 1s 0.2s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s 0.2s;
        display: block;
    }

    .home-hero__title-wrap {
        position: absolute;
        right: 0;
        width: 730px;
        padding-left: 60px;
    }
}

.home-hero .swiper-container, .home-hero .swiper-wrapper, .home-hero .swiper-slide {
    height: 100%;
}

.home-hero .swiper-slide {
    overflow: hidden;
}

.home-hero .swiper-container {
    position: absolute;
    top: 0;
    width: 100%;
}

.home-hero__video {
    display: none;
}

.home-hero__content {
    color: #fff;
    margin: 0 30px;
    height: 100%;
}

.home-hero__content .text--uppercase-heading {
    color: #fff;
}

.home-hero__content .text--page-heading {
    margin: 20px 0 30px;
    font-size: 35px;
    min-height: 80px;
}

@media screen and (min-width: 768px) {
    .home-hero__content .text--page-heading {
        font-size: 58px;
        line-height: 64px;
    }
}

@media screen and (min-width: 1024px) {
    .home-hero__content .text--page-heading {
        font-size: 64px;
        line-height: 68px;
    }
}

.home-hero__content .btn-cta {
    color: #fff;
    border-color: #fff;
    margin-top: 0;
}

.home-hero__title-cursor {
    width: 21px;
    left: -30px;
    top: 7px;
}

@media screen and (min-width: 768px) {
    .home-hero__title-cursor {
        left: -50px;
        top: 8px;
        width: 36px;
    }
}

@media screen and (min-width: 1024px) {
    .home-hero__title-cursor {
        width: 40px;
        top: 28px;
        left: 0;
    }
}

.home-hero__related__articles {
    margin-top: 20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.home-hero__related__article {
    width: 50%;
    padding: 0 10px;
}

@media screen and (min-width: 768px) {
    .home-hero__related__article {
        padding: 0 40px;
    }
}

.home-hero__related__article:first-child {
    padding-left: 0;
}

.home-hero__related__article:last-child {
    padding-right: 0;
}

.home-hero__related__article .text--date {
    margin-bottom: 10px;
    color: #fff;
}

.home-hero__related__article__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    color: #fff;
}

@media screen and (min-width: 768px) {
    .home-hero__related__article__title {
        font-size: 18px;
    }
}

.home-hero__content__inner {
    position: absolute;
    top: 15%;
}

.home-hero__related {
    position: absolute;
    bottom: 13%;
}

@media screen and (min-width: 768px) {
    .home-hero__related {
        bottom: 16%;
    }
}

@media screen and (max-height: 480px) {
    .home-hero__related {
        bottom: 20px;
    }
}

@media screen and (min-width: 768px) {
    .home-hero__content__inner {
        top: 20%;
    }
}

@media screen and (min-width: 1024px) {
    .home-hero__content__inner {
        position: relative;
        top: 38%;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        padding-left: 30px;
    }

    .home-hero__related {
        position: absolute;
        bottom: 120px;
    }
}

@media screen and (min-width: 1024px) and (min-height: 768px) {
    .home-hero__related {
        bottom: 22%;
    }
}

@media screen and (min-width: 768px) {
    .home-hero__content {
        margin: 0 50px;
    }
}

@media screen and (min-width: 1024px) {
    .home-hero__video {
        display: block;
        position: absolute;
        min-width: 100%;
        min-height: 100%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .home-hero__video__wrap {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 50%;
        top: 50%;
    }

    .home-hero__content {
        padding: 0 40px;
        max-width: 1370px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero__content::after {
        clear: both;
        content: "";
        display: table;
    }

    .home-hero__content__inner {
        max-width: 700px;
    }

    .home-hero__related {
        max-width: 500px;
        padding-left: 30px;
    }

    .home-hero__related__article {
        padding-right: 40px;
    }
}

.home-hero__bg {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    overflow: hidden;
    display: none;
}

@media screen and (min-width: 1024px) {
    .home-hero__bg {
        box-sizing: content-box;
        padding-bottom: 500px;
        position: fixed;
    }
}

.home-hero__bg__bg--black {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
}

.home-hero__bg:first-child {
    display: block;
}

.home-hero__bg__image {
    height: 70%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    overflow: hidden;
    transition: -webkit-transform 5s ease-in-out;
    transition: transform 5s ease-in-out;
    transition: transform 5s ease-in-out, -webkit-transform 5s ease-in-out;
}

.home-hero__bg__image img {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /* Preserve aspet ratio */
    min-width: 100%;
    min-height: 100%;
}

@media screen and (min-width: 1024px) {
    .home-hero__bg__image {
        height: 80%;
    }
}

.home-hero__bg__image.zoom {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.home-hero__svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    overflow: hidden;
}

.home-hero__svg__tablet {
    display: none;
}

.home-hero__svg__desktop {
    visibility: hidden;
    overflow: hidden;
    width: 2560px;
    height: 2560px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -1280px;
    margin-top: -1280px;
    -webkit-transform-origin: 53% 55%;
    -ms-transform-origin: 53% 55%;
    transform-origin: 53% 55%;
    -webkit-transform: scale(4.5) translate(20.4%, -10%) rotate(-60deg);
    -ms-transform: scale(4.5) translate(20.4%, -10%) rotate(-60deg);
    transform: scale(4.5) translate(20.4%, -10%) rotate(-60deg);
}

@media screen and (min-width: 1300px) {
    .home-hero__svg__desktop {
        -webkit-transform: scale(6) translate(21%, -8%) rotate(-60deg);
        -ms-transform: scale(6) translate(21%, -8%) rotate(-60deg);
        transform: scale(6) translate(21%, -8%) rotate(-60deg);
    }
}

@media screen and (min-width: 1800px) {
    .home-hero__svg__desktop {
        -webkit-transform: scale(7) translate(21.8%, -8%) rotate(-60deg);
        -ms-transform: scale(7) translate(21.8%, -8%) rotate(-60deg);
        transform: scale(7) translate(21.8%, -8%) rotate(-60deg);
    }
}

.home-hero__svg__mobile {
    display: block;
    width: 100%;
    height: 24px;
}

.home-hero__svg__mobile-tablet-wrap {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.home-hero__svg__block {
    height: 36vh;
    min-height: 130px;
    margin-top: -1px;
}

@media screen and (min-width: 768px) {
    .home-hero__svg__block {
        height: 30vh;
    }
}

@media screen and (min-width: 768px) {
    .home-hero__svg__mobile {
        display: none;
    }

    .home-hero__svg__tablet {
        display: block;
        width: 100%;
        height: 110px;
    }
}

@media screen and (min-width: 1024px) {
    .home-hero__svg__mobile-tablet-wrap {
        display: none;
    }

    .home-hero__svg__desktop.ready {
        visibility: visible;
    }
}

.page-hub .list-content_inner {
    max-width: 1080px;
}

.page-hub .list-item {
    padding: 0;
}

.page-hub .list-item:last-child {
    border-bottom: 0;
}

.page-hub .list-item--press:first-child {
    padding-top: 20px;
}

.page-hub .list-item--press:last-child {
    padding-bottom: 20px;
}

.hub {
    background-color: #EFF2F7;
}

.hub.bg-white {
    background: #fff;
}

.hub_group {
    padding: 100px 0 80px;
}

@media screen and (max-width: 767px) {
    .hub_group {
        margin: auto;
    }
}

.hub_header {
    text-align: center;
    margin: -4px auto 35px;
}

.hub_header_inner {
    max-width: 1258px;
    margin: 0 auto;
}

.hub_header_inner h2 {
    margin-bottom: 35px;
}

.hub_inner {
    margin: auto;
    max-width: 1278px;
    box-sizing: content-box;
    font-size: 0;
    padding: 0 10px;
}

.hub_group + .hub_group {
    padding-top: 0;
}

.hub_group--header-left {
    max-width: 1298px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 10px;
    padding-left: 20px;
}

.hub_group--header-left::after {
    clear: both;
    content: "";
    display: table;
}

.hub_group--header-left .hub_header {
    float: left;
    width: 30%;
    text-align: left;
}

.hub_group--header-left .hub_inner {
    text-align: left;
    padding: 0;
    float: right;
    width: 70%;
}

@media screen and (max-width: 1318px) and (min-width: 768px) {
    .hub .text--tile-description {
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: 1.75;
    }
}

@media (max-width: 1318px) {
    .hub_inner {
        max-width: 776px;
        text-align: left;
    }

    .hub_header {
        max-width: 1104px;
    }

    .hub_group--header-left {
        max-width: 1124px;
    }

    .hub_group--header-left_inner {
        text-align: right;
        max-width: 1104px;
    }

    .hub_group + .hub_group:before {
        max-width: 1084px;
    }
}

@media (max-width: 1123px) {
    .hub_header {
        max-width: 1134px;
        padding: 0 25px;
        margin-left: auto;
        margin-right: auto;
        float: none !important;
    }

    .hub_header-links--tablet-two-column {
        max-width: 766px;
    }

    .hub_group--header-left {
        max-width: 1134px;
        padding-left: 0;
    }

    .hub_group--header-left .hub_header,
    .hub_group--header-left .hub_inner {
        width: 100%;
    }

    .hub_group--header-left .hub_header {
        max-width: 766px;
        text-align: left;
    }

    .hub_group--header-left .hub_inner {
        max-width: 764px;
        float: none;
        text-align: left;
        padding-left: 25px;
        left: -10px;
    }

    .hub_header {
        max-width: 766px;
    }

    .hub_inner {
        box-sizing: border-box;
        text-align: left;
        padding: 0 15px;
    }

    .hub_group + .hub_group:before {
        margin-left: 25px;
        margin-right: 25px;
    }
}

@media screen and (max-width: 767px) {
    .hub_group {
        padding: 30px 0;
    }

    .hub_header {
        padding: 0 15px;
    }

    .hub_inner {
        max-width: 400px !important;
        padding: 0 15px;
        margin: 0 auto;
    }

    .hub_group + .hub_group {
        padding-top: 0;
    }

    .hub_group + .hub_group:before {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 50px;
    }
}

.hub_header p {
    margin-top: 12px;
    color: #666666;
}

.hub_header p + ul {
    margin-top: 30px;
}

.hub_header ul {
    margin-top: 16px;
}

.hub_header a:after {
    display: block;
    font-family: 'icomoon';
    content: "\e905";
    font-style: normal;
    font-weight: normal;
}

.hub_header a:after {
    display: inline-block;
    padding-left: 10px;
    font-size: 12px;
    color: #d3135a;
}

.hub_header a:hover {
    text-decoration: underline;
}

.hub_cta {
    margin-top: 60px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .hub_header {
        margin-bottom: 25px;
    }

    .hub_header:after {
        content: '';
        display: block;
        height: 1px;
        background-color: #ddd;
        margin-top: 30px;
    }

    .hub_header ul {
        margin-top: 20px;
    }

    .hub_header li {
        width: 100% !important;
        padding-left: 0 !important;
    }

    .hub_header li + li {
        padding-top: 5px;
    }

    .hub_header p {
        font-size: 15px;
        margin-top: 16px;
    }

    .hub_header p + ul {
        margin-top: 16px;
    }

    .hub_header a {
        font-size: 18px;
    }

    .hub_cta {
        margin-top: 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 1318px) {
    .page-hub .toggle-content_header,
    .page-hub .list-content,
    .page-hub .contact {
        max-width: 1144px;
        padding-left: 30px;
        padding-right: 30px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 767px) {
    .page-hub .toggle-content_header,
    .page-hub .list-content,
    .page-hub .contact {
        padding: 30px 15px;
    }
}

.hub_header--bg {
    margin-bottom: -50px;
    max-width: none !important;
}

.hub_header--bg .hub_header_inner {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media screen and (min-width: 768px) {
    .hub_header--bg {
        margin-bottom: -80px;
    }

    .hub_header--bg .hub_header_inner {
        padding-top: 80px;
        padding-bottom: 130px;
    }
}

.hub_header--bg .text--page-subheading, .hub_header--bg .text--list-description {
    color: #fff;
}

.hub_header--bg.color-scheme--green {
    background-color: #0B563D;
}

.hub_header--bg.color-scheme--green h2 {
    color: #fff;
}

.hub_header--bg.color-scheme--blue {
    background-color: #002466;
}

.hub_header--bg.color-scheme--blue h2 {
    color: #fff;
}

.hub_header--bg.color-scheme--blue {
    background-color: #002466;
}

.hub_header--bg.color-scheme--blue h2 {
    color: #0E141A;
}

.hub_header--bg.color-scheme--pink, .hub_header--bg.color-scheme--red {
    background-color: #d3135a;
}

.hub_header--bg.color-scheme--pink h2, .hub_header--bg.color-scheme--red h2 {
    color: #fff;
}

.hub_header--bg.color-scheme--forest {
    background-color: #0f955a;
}

.hub_header--bg.color-scheme--forest h2 {
    color: #fff;
}

.hub_header--bg.color-scheme--orange {
    background-color: #0152E8;
}

.hub_header--bg.color-scheme--orange h2 {
    color: #fff;
}

.hub-secondary-nav {
    height: 58px;
    font-size: 0;
}

.hub-secondary-nav_inner {
    transition: 0.3s all ease-in-out;
    background-color: rgba(255, 255, 255, 0.98);
    text-align: center;
    width: 100%;
    border-bottom: 5px solid #dedede;
    box-sizing: content-box;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.hub-secondary-nav ul {
    white-space: nowrap;
}

.hub-secondary-nav_list-item {
    display: inline-block;
}

.hub-secondary-nav_list-item:first-child {
    margin-left: 0px;
}

.hub-secondary-nav_list-item a {
    font-size: 14px;
}

.hub-secondary-nav_list-item a.active {
    color: white;
    background-color: #d3135a;
}

@media screen and (min-width: 1024px) {
    .hub-secondary-nav_list-item a:hover {
        color: white;
        background-color: #d3135a;
    }
}

.hub-secondary-nav a:hover {
    text-decoration: none;
}

.hub-secondary-nav_anchor-link {
    height: 58px;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1;
    color: #000000;
    text-transform: uppercase;
    padding: 22px 15px;
    display: block;
    cursor: pointer;
}

.activate-sticky-nav .hub-secondary-nav_inner {
    position: fixed;
    top: 0px;
    z-index: 10000;
}

@media only screen and (max-width: 768px) and (orientation: landscape) {
    .activate-sticky-nav .hub-secondary-nav_inner {
        position: static !important;
    }
}

.activate-sticky-nav .hub-secondary-nav_inner.hub-secondary-nav_inner--header-sticky {
    top: 61px;
}

@media screen and (min-width: 768px) {
    .activate-sticky-nav .hub-secondary-nav_inner.hub-secondary-nav_inner--header-sticky {
        top: 101px;
    }
}

@media only screen and (max-width: 768px) and (orientation: landscape) {
    .activate-sticky-nav .hub-secondary-nav_inner.hub-secondary-nav_inner--header-sticky {
        top: 0 !important;
    }
}

.hero-cta {
    border-color: #ffffff;
    color: #ffffff;
    margin-top: 50px;
}

.hero-cta:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.image-hero {
    background-color: none;
}

.image-hero_inner {
    margin-top: 47px;
    max-width: 1280px;
}

.image-hero_detail {
    display: none;
}

@media screen and (min-width: 768px) {
    .image-hero_detail {
        display: block;
        max-width: 60%;
        margin-left: auto;
        margin-right: auto;
    }
}

.image-hero {
    background-size: cover;
    background-position: top right;
    box-sizing: inherit;
    padding: 87px 0;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .image-hero {
        padding: 180px 0 170px;
    }
}

.image-hero--reduce-padding {
    padding: 110px 0 56px;
}

@media screen and (min-width: 768px) {
    .image-hero--reduce-padding {
        padding-bottom: 100px;
    }
}

@media screen and (min-width: 1024px) {
    .image-hero--reduce-padding {
        padding-bottom: 170px;
    }
}

.image-hero_inner {
    float: left;
    display: block;
    width: 76.76824%;
    float: none;
    margin-left: auto;
    margin-right: auto;
    min-width: 250px;
    position: relative;
    text-align: center;
}

.image-hero_inner:last-child {
    width: 74.41059%;
}

@media screen and (min-width: 768px) {
    .image-hero_inner {
        float: left;
        display: block;
        width: 85.29804%;
        float: none;
    }

    .image-hero_inner:last-child {
        width: 82.94039%;
    }
}

.image-hero_top {
    padding-top: 15px;
}

.image-hero_top::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (min-width: 768px) {
    .image-hero_top {
        padding-top: 12px;
    }
}

.image-hero_arrow {
    display: none;
}

@media screen and (min-width: 768px) {
    .image-hero_arrow {
        top: 0px;
        left: 50%;
        display: block;
        position: absolute;
        width: 26px;
        margin-left: -12px;
        font-size: 18px;
        z-index: 3000;
        height: 80px;
        background-color: #ffffff;
    }

    .image-hero_arrow:before {
        display: block;
        font-family: 'icomoon';
        content: "\e900";
        font-style: normal;
        font-weight: normal;
        -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .image-hero_arrow:before {
        top: 12px;
        margin-left: -10px;
        position: absolute;
        left: 50%;
    }
}

.image-hero_breadcrumbs {
    display: none;
    padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .image-hero_breadcrumbs {
        display: block;
        margin: 0px auto;
        padding-bottom: 15px;
    }
}

.image-hero_breadcrumbs > ul {
    display: inline-block;
}

.image-hero_date {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    letter-spacing: -0.24px;
    line-height: 1;
    color: #ffffff;
    margin-top: 40px;
}

@media screen and (min-width: 768px) {
    .image-hero_date {
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: 1;
        margin-top: 50px;
    }
}

.image-hero_detail {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #ffffff;
    font-size: 22px;
    margin-top: 50px;
}

.investor-panels__left .investor-panels__inner, .investor-panels__right .investor-panels__inner {
    margin: 0 auto;
}

.investor-panels__left {
    background: #f4f4f4;
}

@media screen and (min-width: 1024px) {
    .investor-panels__left .investor-panels__inner {
        padding-right: 70px;
    }
}

.investor-panels__right {
    background: #0E141A;
    color: #fff;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
}

.investor-panels__right .text--page-subheading {
    color: #fff;
    line-height: 150%;
    margin-bottom: 50px;
}

.investor-panels__right p {
    margin-bottom: 40px;
}

@media screen and (min-width: 1024px) {
    .investor-panels__right .investor-panels__inner {
        padding-left: 70px;
    }
}

@media screen and (min-width: 1024px) {
    .investor-panels {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .investor-panels__left, .investor-panels__right {
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .investor-panels__left .investor-panels__inner {
        margin-right: 0;
    }

    .investor-panels__right .investor-panels__inner {
        margin-left: 0;
    }
}

.investor-panels__inner {
    padding: 0 15px;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .investor-panels__inner {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .investor-panels__inner {
        padding: 0 30px;
    }
}

@media screen and (min-width: 768px) {
    .investor-panels__inner {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (min-width: 1024px) {
    .investor-panels__inner {
        max-width: 658px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.investor-panels .list-content {
    padding: 0;
}

.investor-panels .list-content_cta {
    text-align: left;
}

.investor-panels__links {
    font-size: 24px;
}

.investor-panels__links li {
    margin-bottom: 12px;
}

.investor-panels__links li a:hover {
    text-decoration: underline;
}

.investor-panels__links li a:after {
    content: "";
    position: absolute;
    /*background-image: url(/img/select-arrow.png);*/
    background-size: 11px 7px;
    width: 11px;
    height: 7px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: 50%;
    margin-top: -3.5px;
    right: -20px;
}

.map {
    overflow: hidden;
    margin-bottom: 80px;
    margin-top: 80px;
}

@media screen and (min-width: 768px) {
    .map {
        margin-bottom: 120px;
    }
}

.map__google-map-container {
    width: 100%;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: all 0.4s ease-in-out;
    display: none;
}

@media screen and (min-width: 768px) {
    .map__google-map-container {
        display: block;
        height: 400px;
    }
}

@media screen and (min-width: 900px) {
    .map__google-map-container {
        height: 640px;
    }
}

@media screen and (min-width: 1500px) {
    .map__google-map-container {
        height: 1100px;
        max-height: 80vh;
    }
}

.map__google-map {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
}

.map__google-map.gradient-blue[style] {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4eb777+0,40b7e1+100 */
    background: #0347d5 !important;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #0347d5 0%, #002466 100%) !important;
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0347d5', endColorstr='#002466', GradientType=0) !important;
    /* IE6-9 */
}

.map__google-map.gradient-green[style] {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4eb777+0,40b7e1+100 */
    background: #008c5a !important;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #008c5a 0%, #0B563D 100%) !important;
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#008c5a', endColorstr='#0B563D', GradientType=0) !important;
    /* IE6-9 */
}

.map__google-map.gradient-pink[style] {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4eb777+0,40b7e1+100 */
    background: #d3135a !important;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #d3135a 0%, #FFC0CB 100%) !important;
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#139fb0', endColorstr='#d3135a', GradientType=0) !important;
    /* IE6-9 */
}

.map__google-map .gm-style-iw {
    text-align: center;
}

.map__mobile-container {
    width: 100%;
    background: no-repeat center top;
    background-size: cover;
    padding: 70px 15px 140px;
}

@media screen and (min-width: 768px) {
    .map__mobile-container {
        display: none;
    }
}

.map__static-img {
    max-width: 100%;
    display: block;
    margin: auto;
}

.map .select-wrap {
    box-shadow: 3px 3px 0px 0px rgba(130, 130, 130, 0.2);
    width: 280px;
    background-position: 94% 50%;
}

.map .select-wrap select {
    width: 100%;
}

.map__select-container {
    text-align: center;
}

.map__heading {
    text-align: center;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .map__heading {
        margin-bottom: 50px;
    }
}

@media screen and (min-width: 1024px) {
    .map__heading {
        padding: 0;
    }
}

.map__cta {
    color: #000;
}

.map__cta__wrap {
    text-align: center;
    margin-top: 40px;
}

.map__card {
    background: #fff;
    margin: 0 15px 30px;
    box-shadow: 5px 5px 0px 0px rgba(130, 130, 130, 0.15);
}

.map__card__inner {
    margin-top: -80px;
}

.map__card__img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (min-width: 768px) {
    .map__card {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 380px;
        z-index: 1;
        -webkit-transform: translate(-110%, 0);
        -ms-transform: translate(-110%, 0);
        transform: translate(-110%, 0);
        transition: -webkit-transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
        margin: 0;
        box-shadow: none;
    }

    .map__card__inner {
        margin-top: 0;
    }

    .map__card__img {
        display: none;
    }
}

@media screen and (min-width: 900px) {
    .map__card__img {
        display: block;
    }
}

.map__card__inner {
    display: none;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.map__card__content {
    text-align: left;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.71429;
    padding: 30px 15px;
    border: 1px solid #dddddd;
    border-top: none;
}

@media screen and (min-width: 768px) {
    .map__card__content {
        border: none;
        padding: 30px 25px;
    }
}

@media screen and (min-width: 1024px) {
    .map__card__content {
        padding: 30px 30px;
    }
}

.map__card__content h1, .map__card__content h2, .map__card__content h3, .map__card__content h4, .map__card__content h5, .map__card__content h6 {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1;
    margin-bottom: 30px;
}

.map__card__content a {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
}

.map__card__content p {
    margin-bottom: 30px;
}

.map__card__content ul {
    margin: 30px 0;
}

.map__card__content li {
    margin-bottom: 10px;
}

.map__card__content .icon {
    color: #d3135a;
    margin-right: 18px;
}

.map__card .btn-close {
    display: none;
    background: #d3135a;
    color: #fff;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 55px;
    border-radius: 50%;
    font-size: 20px;
    text-indent: -3px;
    box-shadow: 5px 0px 0px 0px rgba(130, 130, 130, 0.3);
    position: absolute;
    right: 0;
    top: 50%;
    margin-right: -25px;
    margin-top: -25px;
}

@media screen and (min-width: 768px) {
    .map__card .btn-close {
        display: block;
    }
}

.map.cardVisible .map__card {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.map.offsetMap .map__google-map-container {
    -webkit-transform: translate(200px, 0);
    -ms-transform: translate(200px, 0);
    transform: translate(200px, 0);
}

.org-content_container {
    margin: 28px auto;
    max-width: 960px;
    padding: 0 0 60px 0;
    text-align: center;
    font-size: 0;
}

@media screen and (min-width: 1290px) {
    .org-content_container {
        max-width: 1260px;
    }
}

.org-content_inner {
    margin: 0 auto;
    padding: 0px 15px;
    max-width: 430px;
    text-align: left;
}

@media screen and (min-width: 768px) {
    .org-content_inner {
        max-width: none;
        padding: 0px;
    }
}

.presentation {
    padding: 0 15px;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .presentation {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .presentation {
        padding: 0 30px;
    }
}

.presentation__inner {
    max-width: 800px;
    margin: 0 auto;
}

.presentation .swiper-container {
    border: 2px solid #dddddd;
    border-bottom: none;
}

.presentation .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.presentation__controls {
    background: #d3135a;
    padding: 10px;
    color: #fff;
    text-align: center;
}

.presentation__controls button {
    vertical-align: middle;
    padding: 10px;
    font-size: 24px;
    top: 3px;
}

.presentation__pagination {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    margin: 0 50px;
    width: auto;
    bottom: auto;
}

.presentation__btn-first .icon-chevron-left,
.presentation__btn-first .icon-chevron-right, .presentation__btn-last .icon-chevron-left,
.presentation__btn-last .icon-chevron-right {
    display: inline-block;
}

.presentation__btn-first .icon-chevron-left:first-child,
.presentation__btn-first .icon-chevron-right:first-child, .presentation__btn-last .icon-chevron-left:first-child,
.presentation__btn-last .icon-chevron-right:first-child {
    margin-right: -10px;
}

.presentation__btn-first {
    float: left;
}

.presentation__btn-last {
    float: right;
}

.presentation__heading {
    margin-bottom: 30px;
    padding-right: 100px;
}

.presentation__download {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #d3135a;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -0.6em;
}

.presentation__download .icon-download {
    margin-right: 5px;
}

.stock-market {
    background: #0E141A;
    color: #fff;
}

.stock-market__left .stock-market__inner, .stock-market__right .stock-market__inner {
    margin: 0 auto;
}

.stock-market__left {
    background: #0E141A;
}

.stock-market__right {
    background: #fff;
}

.stock-market__right .stock-market__inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .stock-market {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .stock-market__left, .stock-market__right {
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .stock-market__left .stock-market__inner {
        margin-right: 0;
    }

    .stock-market__right .stock-market__inner {
        margin-left: 0;
    }
}

.stock-market__inner {
    padding: 0 15px;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .stock-market__inner {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .stock-market__inner {
        padding: 0 30px;
    }
}

@media screen and (min-width: 768px) {
    .stock-market__inner {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (min-width: 1024px) {
    .stock-market__inner {
        max-width: 658px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.stock-market .text--page-subheading {
    color: #fff;
    margin-bottom: 10px;
}

.stock-market__shareprices {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 20px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.stock-market__shareprices .shareprice {
    min-width: 160px;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
    .stock-market__shareprices {
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .stock-market__shareprices .shareprice {
        width: 33%;
    }
}

.stock-market__updated {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #999999;
}

.stock-market__cta-wrap {
    margin-top: 20px;
    text-align: left;
}

.subscribe__header {
    margin: 60px 0 0;
    padding-bottom: 0px;
}

@media screen and (max-width: 767px) {
    .subscribe__header {
        padding: 45px 0 0;
    }
}

@media screen and (min-width: 768px) {
    .subscribe__header {
        padding-left: 30px;
        border-left: 1px solid #dddddd;
    }
}

.subscribe__content {
    padding-top: 65px;
    padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .subscribe__content {
        border-left: 1px solid #dddddd;
        padding-left: 30px;
    }
}

.subscribe p {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.16667;
}

.subscribe .form-row {
    margin-top: 30px;
}

.subscribe .submit-container {
    position: relative;
}

.subscribe label {
    margin: 0 20px 0 5px;
    display: inline-block;
}

.subscribe .btn-submit {
    position: absolute;
    right: 0;
    top: 0;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.subscribe .textinput {
    width: 100%;
    border: 2px solid #dddddd;
    height: 53px;
    margin-bottom: 10px;
    padding-left: 10px;
    outline: none;
}

.subscribe-panel {
    background: #0347d5;
    color: #fff;
}

.subscribe-panel__header {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    padding: 20px 60px;
    text-align: center;
}

.subscribe-panel .error {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 10px;
}

.subscribe-panel__content {
    padding: 0 20px 20px;
}

.subscribe-panel__form {
    max-width: 440px;
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.subscribe-panel__form input {
    width: 100%;
    padding: 0 10px;
    height: 53px;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #000;
    outline: none;
    border: 2px solid #dddddd;
    border-radius: 0;
    -webkit-appearance: none;
    margin-bottom: 10px;
    background: #fff;
}

@media screen and (max-width: 767px) {
    .subscribe-panel__form button {
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    .subscribe-panel__form button {
        position: absolute;
        top: 0;
        right: 0;
    }
}

.text-columns {
    padding: 0 15px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
}

@media screen and (min-width: 768px) {
    .text-columns {
        padding: 0 25px;
    }
}

@media screen and (min-width: 1024px) {
    .text-columns {
        padding: 0 30px;
    }
}

.text-columns h2 {
    margin-bottom: 35px;
}

.text-columns .col {
    padding-top: 40px;
    margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .text-columns {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .text-columns .col {
        padding-top: 50px;
        padding-bottom: 50px;
        margin-bottom: 0;
        padding-left: 30px;
    }

    .text-columns .col:before {
        content: "";
        position: absolute;
        top: 50px;
        bottom: 50px;
        width: 1px;
        left: 0;
        background: #dddddd;
    }

    .text-columns .col:first-child {
        padding-left: 0;
        padding-right: 30px;
        border: none;
    }

    .text-columns .col:first-child:before {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .text-columns .col {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.text-columns .text--page-subheading, .text-columns p {
    margin-bottom: 40px;
}

.text-columns__links a {
    color: #000;
    text-decoration: none;
}

.text-columns__links a:after {
    display: block;
    font-family: 'icomoon';
    content: "\e905";
    font-style: normal;
    font-weight: normal;
}

.text-columns__links a:hover {
    text-decoration: underline;
}

.text-columns__links a:after {
    display: inline-block;
    padding-left: 10px;
    font-size: 12px;
    color: #d3135a;
}

.toggle-content {
    padding: 80px 0;
}

@media screen and (max-width: 767px) {
    .toggle-content {
        padding: 30px 0;
    }
}

.toggle-content_header {
    max-width: 1140px;
    padding: 0 30px;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .toggle-content_header {
        padding: 0 15px;
    }
}

.toggle-content_header h2 {
    display: inline;
    color: #cecece;
    transition: all 100ms linear;
}

.toggle-content_header a {
    display: inline-block;
}

.toggle-content_header a._active h2, .toggle-content_header a:hover h2 {
    color: #000000;
}

.toggle-content_header a._active {
    pointer-events: none;
}

.toggle-content_header a + a:before {
    content: '';
    height: 36px;
    width: 1px;
    background-color: #cecece;
    display: inline-block;
    margin: 0 10px 0 14px;
    position: relative;
    top: 6px;
}

.component.accordian-table {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
    margin: 0 auto;
}

.component.accordian-table::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (max-width: 767px) {
    .component.accordian-table {
        display: none;
    }
}

.component.accordian-table .accordian-table_ct {
    margin: 60px 30px 0px;
}

.component.accordian-table .accordian-table_inner h3 {
    font-size: 30px;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #111111;
    margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
    .component.accordian-table .accordian-table_inner h3 {
        padding-left: 35px;
        padding-right: 35px;
    }
}

.component.accordian-table .accordian-table_inner table {
    width: 100%;
    border: 3px #dddddd solid;
    margin-bottom: 100px;
}

.component.accordian-table .accordian-table_inner th, .component.accordian-table .accordian-table_inner td {
    padding-left: 30px;
    text-align: left;
    border-right: 1px #e5e5e5 solid;
    border-left: 1px #e5e5e5 solid;
}

.component.accordian-table .accordian-table_inner th:first-child, .component.accordian-table .accordian-table_inner td:first-child {
    border-left: none;
}

.component.accordian-table .accordian-table_inner th:last-child, .component.accordian-table .accordian-table_inner td:last-child {
    border-right: none;
}

.component.accordian-table .accordian-table_inner th {
    font-size: 16px;
    height: 60px;
    line-height: 60px;
    background-color: #fcfcfc;
    border-bottom: 1px #e5e5e5 solid;
}

.component.accordian-table .accordian-table_inner td {
    font-size: 18px;
    vertical-align: bottom;
}

.component.accordian-table .accordian-table_inner tr {
    height: 50px;
    font-weight: lighter;
}

.component.accordian-table .accordian-table_inner tr:first-child {
    font-weight: bold;
}

.component.accordian-table .accordian-table_inner tr:last-child {
    height: 90px;
}

.component.accordian-table .accordian-table_inner tr:last-child td {
    padding-bottom: 40px;
}

.carousel {
    display: inline-block;
    position: relative;
    margin-bottom: 70px;
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .carousel {
        margin-bottom: 0px;
        overflow: hidden;
    }
}

.carousel_wrap {
    font-size: 0px;
    overflow: hidden;
}

.carousel_control-wrap {
    position: static;
}

.carousel_arrow-wrap {
    position: static;
}

.carousel_arrow {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1000;
    width: 20px;
    height: 50px;
    top: 50%;
    outline: none;
}

.carousel_arrow:before {
    font-size: 8px;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .carousel_arrow {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        font-size: 21px;
        width: 75px;
        height: 70px;
        top: 100%;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

    .carousel_arrow:before {
        font-size: 18px;
    }
}

@media screen and (min-width: 1024px) {
    .carousel_arrow {
        display: block;
        top: auto;
        bottom: 0px;
    }
}

.carousel_prev {
    left: 0px;
}

.carousel_prev:before {
    display: block;
    font-family: 'icomoon';
    content: "\e900";
    font-style: normal;
    font-weight: normal;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
    .carousel_prev {
        left: auto;
        right: 75px;
    }
}

.carousel_next {
    right: 0px;
}

.carousel_next:before {
    display: block;
    font-family: 'icomoon';
    content: "\e900";
    font-style: normal;
    font-weight: normal;
}

@media screen and (min-width: 768px) {
    .carousel_next {
        right: 0px;
    }
}

.carousel_prev {
    left: 0px;
}

.carousel_prev:before {
    display: block;
    font-family: 'icomoon';
    content: "\e900";
    font-style: normal;
    font-weight: normal;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
    .carousel_prev {
        left: auto;
        right: 75px;
    }
}

.carousel_meta-wrap {
    position: absolute;
    top: 100%;
    min-height: 40px;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.ie11 .carousel_meta-wrap {
    height: 40px;
}

@media screen and (min-width: 768px) {
    .carousel_meta-wrap {
        min-height: 70px;
    }

    .ie11 .carousel_meta-wrap {
        height: 70px;
    }
}

@media screen and (min-width: 1024px) {
    .carousel_meta-wrap {
        max-width: 740px;
        right: 0px;
        bottom: 0px;
        top: auto;
        z-index: 1000;
        width: 100%;
    }
}

.carousel_count-wrap {
    width: 40px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .carousel_count-wrap {
        width: 70px;
    }
}

.carousel_count {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 11px;
    letter-spacing: 1.98px;
    line-height: 1;
}

@media screen and (min-width: 768px) {
    .carousel_count {
        font-size: 15px;
        letter-spacing: 2.7px;
        line-height: 1.46667;
    }
}

.carousel_caption-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0px 5px;
}

@media screen and (min-width: 768px) {
    .carousel_caption-wrap {
        padding: 0px 170px 0px 20px;
        text-align: right;
        max-width: 760px;
        margin-left: auto;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        -ms-grid-row-align: flex-end;
        align-items: flex-end;
    }

    .ie11 .carousel_caption-wrap {
        overflow: hidden;
        display: block;
        max-width: inherit;
    }
}

.carousel_caption {
    padding: 5px 0;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 11px;
    letter-spacing: -0.33px;
    line-height: 1.27273;
}

.ie11 .carousel_caption {
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
    .carousel_caption {
        font-size: 15px;
        letter-spacing: -0.3px;
        line-height: 1.2;
    }

    .ie11 .carousel_caption {
        left: 10px;
        right: 170px;
    }
}

.carousel_item {
    width: 100%;
    display: inline-block;
}

.carousel_item_wrap {
    width: 100%;
}

.carousel_item_wrap img {
    width: 100%;
    height: auto;
}

.carousel_wrap--single ~ * .carousel_prev {
    display: none;
}

.carousel_wrap--single ~ * .carousel_next {
    display: none;
}

.carousel_wrap--single ~ * .carousel_count-wrap {
    display: none;
}

.carousel_wrap--single ~ * .carousel_caption-wrap {
    padding-right: 60px;
    padding-left: 60px;
}

.carousel_arrow {
    background-color: #d3135a;
}

.carousel_meta-wrap {
    background-color: #d3135a;
}

.carousel_count-wrap {
    color: #ffffff;
    background-color: #000000;
}

.carousel_caption {
    color: #ffffff;
}

@media screen and (min-width: 1024px) {
    .carousel.carousel--no-caption .carousel_meta-wrap {
        width: 220px;
    }
}

.carousel.carousel--no-caption .carousel_caption {
    font-size: 0px !important;
}

.carousel.carousel--no-caption .carousel_wrap--single ~ * .carousel_meta-wrap {
    display: none;
}

.full-bleed-image {
    width: 100%;
    display: inline-block;
    position: relative;
    font-size: 0px;
}

.full-bleed-image_image {
    width: 100%;
}

.full-bleed-image_caption-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: right;
    height: 40px;
}

@media screen and (min-width: 768px) {
    .full-bleed-image_caption-wrap {
        text-align: right;
        max-width: 570px;
        margin-left: auto;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        -ms-grid-row-align: flex-end;
        align-items: flex-end;
        height: 70px;
    }
}

@media screen and (min-width: 768px) {
    .full-bleed-image_caption-wrap {
        position: absolute;
        z-index: 1000;
        bottom: 0px;
        right: 0px;
        width: 570px;
    }
}

.full-bleed-image_caption {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 11px;
    letter-spacing: -0.33px;
    line-height: 1.27273;
    padding-right: 30px;
    max-width: 300px;
    margin-left: auto;
}

@media screen and (min-width: 768px) {
    .full-bleed-image_caption {
        font-size: 15px;
        letter-spacing: -0.3px;
        line-height: 1.2;
        max-width: 520px;
    }
}

.full-bleed-image_caption-wrap {
    color: #ffffff;
    background-color: #d3135a;
}

.full-bleed-image_caption {
    color: #ffffff;
}

.full-bleed-image.full-bleed-image--no-caption .full-bleed-image_caption-wrap {
    display: none;
}

.list-item {
    border-bottom: 1px solid #dddddd;
}

.list-item::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (min-width: 1024px) {
    .list-item {
        padding: 0 30px;
    }
}

.list-item--press .list-item_text-wrapper {
    width: calc(100% - 290px);
    max-width: 680px;
    float: left;
    padding: 30px 0;
}

@media screen and (max-width: 767px) {
    .list-item--press .list-item_text-wrapper {
        padding: 22px 0;
        width: 100%;
    }
}

.list-item--news .list-item_text-wrapper {
    padding: 25px 0;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .list-item--news .list-item_text-wrapper {
        float: left;
        padding: 47px 0 47px 0;
    }
}

@media screen and (min-width: 768px) {
    .list-item--news .list-item_image-wrapper + .list-item_text-wrapper {
        width: 60.72423%;
    }
}

.list-item_image-wrapper {
    display: none;
}

@media screen and (min-width: 768px) {
    .list-item_image-wrapper {
        float: left;
        padding: 50px 0;
        width: 34.81894%;
        display: block;
        margin-right: 30px;
    }
}

@media screen and (min-width: 1024px) {
    .list-item_image-wrapper {
        width: 27.88462%;
    }
}

.list-item_image-wrapper img {
    display: block;
    width: 100%;
}

.list-item_file-wrapper {
    width: 290px;
    float: right;
    padding: 35px 0;
    text-align: right;
}

@media screen and (max-width: 767px) {
    .list-item_file-wrapper {
        display: none;
    }
}

.list-item_badge {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    display: inline-block;
    padding: 4px 7px 2px;
    border-radius: 2px;
    font-size: 12px;
    color: #fff;
    background-color: #0B563D;
    text-transform: uppercase;
    margin-right: 8px;
    position: relative;
    top: -1px;
}

.list-item_category, .list-item_file-size, .list-item_file-type {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    color: #666666;
}

@media screen and (max-width: 767px) {
    .list-item_category, .list-item_file-size, .list-item_file-type {
        font-size: 11px;
    }
}

.list-item_date {
    margin-right: 8px;
}

.list-item_date:before {
    content: "|";
    display: inline-block;
    padding-right: 8px;
}

.list-item_date:first-child:before {
    display: none;
}

.list-item_category:hover {
    text-decoration: underline;
}

.list-item_title {
    margin-top: 5px;
}

@media screen and (max-width: 767px) {
    .list-item_title {
        margin-top: 8px;
    }
}

.list-item_title a:hover {
    text-decoration: underline;
}

.list-item_description {
    margin-top: 14px;
}

@media screen and (max-width: 767px) {
    .list-item_description {
        display: none;
    }
}

.list-item_file-type {
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 12px;
}

.list-item .btn-cta {
    margin-left: 18px;
}

.investor-panels .list-item_file-wrapper {
    width: 200px;
}

.investor-panels .list-item .list-item_text-wrapper {
    width: calc(100% - 200px);
}

@media screen and (max-width: 767px) {
    .investor-panels .list-item .list-item_text-wrapper {
        width: 100%;
    }
}

.investor-panels .list-item .list-item_file-type {
    display: none;
}

.dotcom-megamenu__article {
    background: #fff;
    color: #666;
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.dotcom-megamenu__article p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__article {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.dotcom-megamenu__article:after {
    content: "";
    background: #002466;
    position: absolute;
    height: 10px;
    width: 100%;
    bottom: -11px;
    left: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ios .dotcom-megamenu__article:after {
    display: none;
}

@media screen and (max-width: 767px) {
    .dotcom-megamenu__article {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1024px) {
    .dotcom-megamenu__article {
        width: calc(50% - 10px);
    }

    .dotcom-megamenu__article--large {
        width: 100%;
    }
}

.dotcom-megamenu__article__img {
    height: 0;
    padding-top: 51%;
    overflow: hidden;
    border: 3px solid #fff;
    border-bottom: none;
}

.dotcom-megamenu__article__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.dotcom-megamenu__article__img + .dotcom-megamenu__article__content {
    height: auto;
}

.dotcom-megamenu__article .icon-video {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #d3135a;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    padding-top: 0.05em;
    padding-left: 0.1em;
}

.dotcom-megamenu__article__content {
    padding: 30px 20px 20px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dotcom-megamenu__article__topic {
    color: #002466;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.24px;
    line-height: 1.5;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 10px;
}

.dotcom-megamenu__article__topic .icon-link-external {
    font-size: 10px;
    margin-left: 10px;
}

.dotcom-megamenu__article__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 1.25;
    color: #000;
    margin-bottom: 5px;
    margin-top: 16px;
}

.dotcom-megamenu__article__copy p {
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .dotcom-megamenu__article--large .dotcom-megamenu__article__title {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.2;
    }
}

@media screen and (min-width: 768px) {
    .megamenu__article--large .dotcom-megamenu__article__title {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.2;
    }
}

@media screen and (max-width: 767px) {
    .dotcom-megamenu__article--large .dotcom-megamenu__article__copy {
        display: none;
    }
}

.dotcom-megamenu__article a:hover {
    text-decoration: none;
}

.dotcom-megamenu__article:hover:after {
    -webkit-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.dotcom-megamenu__article:hover .dotcom-megamenu__article__content {
    -webkit-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.dotcom-megamenu__article--tweet {
    padding: 30px 20px 10px;
}

.dotcom-megamenu__article--tweet:after {
    display: none;
}

.dotcom-megamenu__article--tweet .icon-twitter {
    color: #002466;
    font-size: 24px;
    margin-bottom: 6px;
}

.dotcom-megamenu__article--tweet .tweet__meta {
    text-align: center;
    margin-bottom: 20px;
}

.dotcom-megamenu__article--tweet .tweet__username {
    font-size: 18px;
    margin-bottom: -8px;
}

.dotcom-megamenu__article--tweet .tweet__text {
    margin-bottom: 20px;
}

.dotcom-megamenu__article--tweet .tweet__text a {
    color: #002466;
}

.dotcom-megamenu__article--tweet .tweet__text a:hover {
    text-decoration: underline;
}

.dotcom-megamenu__article--tweet time {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    color: #aaa;
}

.megamenu__article {
    background: #fff;
    color: #666;
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.megamenu__article p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .megamenu__article {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.megamenu__article:after {
    content: "";
    background: #002466;
    position: absolute;
    height: 10px;
    width: 100%;
    bottom: -11px;
    left: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ios .megamenu__article:after {
    display: none;
}

@media screen and (max-width: 767px) {
    .megamenu__article {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1024px) {
    .megamenu__article {
        width: calc(50% - 10px);
    }

    .megamenu__article--large {
        width: 100%;
    }
}

.megamenu__article__img {
    height: 0;
    padding-top: 51%;
    overflow: hidden;
    border: 3px solid #fff;
    border-bottom: none;
}

.megamenu__article__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.megamenu__article__img + .megamenu__article__content {
    height: auto;
}

.megamenu__article .icon-video {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #d3135a;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    padding-top: 0.05em;
    padding-left: 0.1em;
}

.megamenu__article__content {
    padding: 30px 20px 20px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.megamenu__article__topic {
    color: #002466;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.24px;
    line-height: 1.5;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 10px;
}

.megamenu__article__topic .icon-link-external {
    font-size: 10px;
    margin-left: 10px;
}

.megamenu__article__title {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 1.25;
    color: #000;
    margin-bottom: 5px;
    margin-top: 16px;
}

.megamenu__article__copy p {
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .megamenu__article--large .megamenu__article__title {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.2;
    }
}

@media screen and (max-width: 767px) {
    .megamenu__article--large .megamenu__article__copy {
        display: none;
    }
}

.megamenu__article a:hover {
    text-decoration: none;
}

.megamenu__article:hover:after {
    -webkit-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.megamenu__article:hover .megamenu__article__content {
    -webkit-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.megamenu__article--tweet {
    padding: 30px 20px 10px;
}

.megamenu__article--tweet:after {
    display: none;
}

.megamenu__article--tweet .icon-twitter {
    color: #41b9e6;
    font-size: 24px;
    margin-bottom: 6px;
}

.megamenu__article--tweet .tweet__meta {
    text-align: center;
    margin-bottom: 20px;
}

.megamenu__article--tweet .tweet__username {
    font-size: 18px;
    margin-bottom: -8px;
}

.megamenu__article--tweet .tweet__text {
    margin-bottom: 20px;
}

.megamenu__article--tweet .tweet__text a {
    color: #002466;
}

.megamenu__article--tweet .tweet__text a:hover {
    text-decoration: underline;
}

.megamenu__article--tweet time {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    color: #667790;
}

.pagination {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #999999;
    font-size: 15px;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .pagination {
        padding: 80px 0;
    }
}

@media screen and (min-width: 1024px) {
    .pagination {
        font-size: 12px;
    }
}

.pagination_prev {
    float: left;
    margin-right: 20px;
    margin-left: 20px;
}

.pagination_prev:before {
    display: block;
    font-family: 'icomoon';
    content: "\e906";
    font-style: normal;
    font-weight: normal;
}

.pagination_next {
    float: right;
    margin-left: 20px;
    margin-right: 20px;
}

.pagination_next:after {
    display: block;
    font-family: 'icomoon';
    content: "\e905";
    font-style: normal;
    font-weight: normal;
}

.pagination_prev, .pagination_next {
    color: #d3135a;
    display: inline-block;
    letter-spacing: 1px;
    position: relative;
    top: 6px;
}

@media screen and (min-width: 1024px) {
    .pagination_prev:hover, .pagination_next:hover {
        text-decoration: underline;
    }
}

.pagination_prev.hidden, .pagination_next.hidden {
    display: none;
}

.pagination_prev.disabled, .pagination_next.disabled {
    cursor: default;
    color: #999999;
    text-decoration: none !important;
    opacity: 0.5;
}

@media screen and (min-width: 1024px) {
    .pagination_prev, .pagination_next {
        float: inherit;
        padding-top: 6px;
        top: 0;
    }
}

.pagination_prev:before, .pagination_next:after {
    display: inline-block;
    font-size: 11px;
    text-decoration: none !important;
    letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
    .pagination_prev:before, .pagination_next:after {
        position: relative;
        top: 1px;
    }
}

.pagination_prev:before {
    padding-right: 3px;
}

.pagination_next:after {
    padding-left: 3px;
}

.pagination_num {
    display: inline-block;
    padding: 6px 0;
    min-width: 38px;
}

@media screen and (min-width: 1024px) {
    .pagination_num:hover {
        color: #000000;
        text-decoration: none;
    }
}

.pagination_num + .pagination_num {
    border-left: 1px solid #999999;
}

@media screen and (min-width: 1024px) {
    .pagination_num {
        min-width: 34px;
    }
}

.pagination .active {
    border: 2px solid #000000;
    color: #000000;
    min-width: 34px;
    pointer-events: none;
}

.pagination .active + .pagination_num {
    border-left: none;
}

.pagination .active + .pagination_ellipsis {
    margin-left: 10px;
}

@media screen and (min-width: 1024px) {
    .pagination .active {
        min-width: 30px;
    }
}

.pagination_ellipsis + .active {
    margin-left: 10px;
}

.pagination_total {
    display: none;
}

@media screen and (max-width: 767px) {
    .pagination {
        margin: 28px 0;
    }

    .pagination_num, .pagination_ellipsis {
        display: none;
    }

    .pagination .active {
        padding: 0;
        display: inline-block;
        border: none;
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        min-width: inherit;
    }

    .pagination_total {
        font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        display: inline-block;
    }

    .pagination_total:before {
        content: "/";
        margin-left: 5px;
        padding-right: 5px;
    }

    .pagination_prev, .pagination_next {
        top: 1px;
    }
}

.product-item {
    height: 100%;
    min-height: 480px;
    text-align: center;
    display: block;
    background: #fff;
    overflow: hidden;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.46667;
}

.product-item p {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .product-item {
        font-size: 18px;
        letter-spacing: 0.36px;
        line-height: 1.66667;
    }
}

.product-item:after {
    content: "";
    background: #002466;
    height: 10px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
    transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-item__inner {
    height: 100%;
    background: #fff;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-item:hover {
    text-decoration: none;
}

.product-item:hover:after {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.product-item:hover .product-item__inner {
    -webkit-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.product-item__image {
    margin: 20px 0;
}

.product-item__image img {
    max-width: 100%;
}

.product-item__details {
    margin: 20px 0;
}

.product-item__details h1, .product-item__details h2, .product-item__details h3, .product-item__details h4, .product-item__details h5, .product-item__details h6 {
    margin: 0 auto 20px;
    max-width: 320px;
}

.product-item__heading {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.27273;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .product-item__heading {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.16667;
    }
}

.product-item__price {
    color: #0E141A;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.33333;
    display: block;
}

.product-item__price--old {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #999999;
    text-decoration: line-through;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.5;
}

.product-item__price--discount {
    color: #0B563D;
}

.product-item__discount {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.72px;
    line-height: 1.5;
    color: #fff;
    background: #0B563D;
    padding: 5px 10px;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    right: 0;
    font-weight: bold;
    z-index: 1;
}

.product-item__description {
    display: none;
}

@media screen and (min-width: 768px) {
    .product-grid__no-carousel .product-grid__product--large .product-item .product-item__inner {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 40px 0;
    }

    .product-grid__no-carousel .product-grid__product--large .product-item .product-item__details,
    .product-grid__no-carousel .product-grid__product--large .product-item .product-item__image {
        width: 50%;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .product-grid__no-carousel .product-grid__product--large .product-item .product-item__details {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        padding: 0 50px;
    }

    .product-grid__no-carousel .product-grid__product--large .product-item .product-item__image {
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }

    .product-grid__no-carousel .product-grid__product--large .product-item__description {
        display: block;
    }
}

.product-plan {
    background: #fff;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.product-plan__heading {
    background: #002466;
    padding: 20px;
    text-align: center;
    height: 120px;
    display: table;
    width: 100%;
}

.product-plan__heading h1, .product-plan__heading h2, .product-plan__heading h3, .product-plan__heading h4, .product-plan__heading h5, .product-plan__heading h6 {
    display: table-cell;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 28px;
    letter-spacing: 0px;
    line-height: 1.21429;
    color: #fff;
    text-align: center;
    vertical-align: middle;
}

.product-plan__main {
    text-align: center;
    padding: 20px 30px 40px;
}

.product-plan__price {
    margin: 20px 0;
}

.product-plan__price .value {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 60px;
    letter-spacing: -2.4px;
    line-height: 1.16667;
}

.product-plan__description {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: 0px;
    line-height: 1.23077;
    margin: 40px auto;
}

.product-plan__list {
    text-align: left;
    max-width: 270px;
    margin: 40px auto 40px;
}

.product-plan .btn-cta {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 100ms linear;
    display: inline-block;
    font-size: 12px;
    min-width: 160px;
    padding: 17px 40px 17px;
    text-align: center;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1.33333;
    background-color: #d3135a;
    border-color: #d3135a;
    color: #ffffff;
}

.product-plan .btn-cta:hover, .product-plan .btn-cta._hover,
a:hover .product-plan .btn-cta {
    text-decoration: none;
}

.product-plan .btn-cta:hover, .product-plan .btn-cta._hover,
a:hover .product-plan .btn-cta {
    background-color: #ffffff;
    border-color: #d3135a;
    color: #d3135a;
}

.pull-quote {
    padding-left: 25px;
}

@media screen and (min-width: 768px) {
    .pull-quote {
        padding-left: 65px;
    }
}

.pull-quote:before {
    background-color: #d3135a;
    content: '';
    height: 100%;
    display: block;
    width: 30px;
    position: absolute;
    left: 0px;
    top: 0px;
}

@media screen and (min-width: 768px) {
    .pull-quote:before {
        width: 60px;
    }
}

.pull-quote_inner {
    padding: 20px 25px;
}

@media screen and (min-width: 768px) {
    .pull-quote_inner {
        padding: 38px 50px 34px;
    }
}

@media screen and (min-width: 1024px) {
    .pull-quote_inner {
        padding-right: 25%;
    }
}

.pull-quote_quote {
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .pull-quote_quote {
        margin-bottom: 22px;
    }
}

.related-content-card {
    width: 100%;
    /*max-width: 340px;*/
    overflow: hidden;
}

.related-content-card_wrap {
    padding-top: 140%;
}

.related-content-card_inner {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
}

.related-content-card_color {
    z-index: 1000;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    transition: all 0.5s ease-in-out;
    height: 10px;
    width: 100%;
    display: block;
    background-color: #002466;
}

@media screen and (min-width: 768px) {
    .related-content-card_color {
        height: 15px;
    }
}

.related-content-card_title-wrap {
    z-index: 1001;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 90%;
    padding-left: 30px;
}

.related-content-card_title {
    position: absolute;
    transition: all 0.5s ease-in-out;
    color: #ffffff;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.36364;
}

@media screen and (min-width: 768px) {
    .related-content-card_title {
        font-size: 26px;
        letter-spacing: -0.52px;
        line-height: 1.53846;
    }
}

.related-content-card_copy {
    display: none;
    transition: 0.4s opacity 0s;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.5;
    position: absolute;
    bottom: 20px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.related-content-card_image {
    width: 100%;
    display: block;
}

.related-content-card:hover .related-content-card_color, .related-content-card:active .related-content-card_color, .related-content-card.no-image .related-content-card_color {
    height: 100%;
}

.related-content-card:hover .related-content-card_title, .related-content-card:active .related-content-card_title {
    bottom: 66% !important;
}

.related-content-card:hover .related-content-card_copy, .related-content-card:active .related-content-card_copy {
    display: block;
    transition: 0.4s opacity 0.4s;
}

@media screen and (max-width: 1024px) {
    .related-content-card_wrap {
        padding-top: 130%;
    }

    .related-content-card .related-content-card_color {
        height: 100%;
    }

    .related-content-card.no-image .related-content-card_title {
        bottom: 66% !important;
    }

    .related-content-card .related-content-card_copy {
        display: block;
        transition: 0.4s opacity 0.4s;
    }

    .related-content-card_image, .related-content-card_color {
        z-index: 1;
    }
}

@media screen and (max-width: 768px) {
    .related-content-card_wrap {
        padding-top: 115%;
    }
}

.rich-text {
    margin-bottom: 60px;
}

.rich-text .rich-text_inner h1, .rich-text .rich-text_inner h2, .rich-text .rich-text_inner h3, .rich-text .rich-text_inner h4, .rich-text .rich-text_inner h5, .rich-text .rich-text_inner h6 {
    margin-bottom: 24px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.52px;
    line-height: 1.07692;
    color: #0E141A;
}

@media screen and (min-width: 768px) {
    .rich-text .rich-text_inner h1, .rich-text .rich-text_inner h2, .rich-text .rich-text_inner h3, .rich-text .rich-text_inner h4, .rich-text .rich-text_inner h5, .rich-text .rich-text_inner h6 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 1.125;
    }
}

@media screen and (min-width: 768px) {
    .rich-text .rich-text_inner h1, .rich-text .rich-text_inner h2, .rich-text .rich-text_inner h3, .rich-text .rich-text_inner h4, .rich-text .rich-text_inner h5, .rich-text .rich-text_inner h6 {
        margin-bottom: 35px;
    }
}

.rich-text .rich-text_inner p {
    margin-bottom: 23px;
}

.rich-text .rich-text_inner p:last-child {
    margin-bottom: 0px !important;
}

@media screen and (min-width: 768px) {
    .rich-text .rich-text_inner p {
        margin-bottom: 28px;
    }
}

.rich-text .rich-text_inner ul:last-child, .rich-text .rich-text_inner li:last-child {
    margin-bottom: 0px !important;
}

@media screen and (min-width: 1024px) {
    .rich-text--social .rich-text_inner {
        display: inline-block;
        width: 87%;
    }
}

.rich-text--social .share-links {
    margin-bottom: 33px;
}

@media screen and (min-width: 768px) {
    .rich-text--social .share-links {
        margin-bottom: 53px;
    }
}

@media screen and (min-width: 1024px) {
    .rich-text--social .share-links {
        padding-top: 7px;
        vertical-align: top;
        display: inline-block;
        width: 13%;
        float: left;
        margin-bottom: 0;
    }

    .rich-text--social .share-links > ul {
        text-align: center;
    }
}

.rich-text--social .rich-text_heading {
    margin-top: 0px;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .rich-text--social .rich-text_heading {
        margin-bottom: 40px;
    }
}

.rich-text--social .rich-text_text {
    margin-bottom: 23px;
}

@media screen and (min-width: 768px) {
    .rich-text--social .rich-text_text {
        margin-bottom: 36px;
    }
}

.share-links {
    font-size: 0px;
}

.share-links_list {
    text-align: center;
    padding: 0px;
}

.share-links_list-item {
    display: inline-block;
}

@media screen and (min-width: 1024px) {
    .share-links_list-item {
        display: block;
    }
}

.share-links_list-item:first-child > a {
    border-left: 1px solid #000000;
}

@media screen and (min-width: 1024px) {
    .share-links_list-item:first-child > a {
        border-left-width: 2px;
        border-top: 2px solid #000000;
    }
}

.share-links_link {
    border: 1px solid #000000;
    border-left: 0px;
    display: inline-block;
    width: auto;
    transition: all 100ms linear;
}

@media screen and (min-width: 1024px) {
    .share-links_link {
        border: 2px solid #000000;
        border-top: 0px;
    }
}

.share-links_link:hover {
    background-color: #000;
    color: #fff;
}

.share-links_link:before {
    font-size: 22px;
    height: 39px;
    width: 39px;
    line-height: 39px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .share-links_link:before {
        font-size: 25px;
        height: 50px;
        width: 50px;
        line-height: 50px;
    }
}

.share-links_fb:before {
    display: block;
    font-family: 'icomoon';
    content: "\e901";
    font-style: normal;
    font-weight: normal;
}

.share-links_twitter:before {
    display: block;
    font-family: 'icomoon';
    content: "\e904";
    font-style: normal;
    font-weight: normal;
}

.share-links_print:before {
    display: block;
    font-family: 'icomoon';
    content: "\e903";
    font-style: normal;
    font-weight: normal;
}

.share-links_email:before {
    display: block;
    font-family: 'icomoon';
    content: "\e902";
    font-style: normal;
    font-weight: normal;
}

.svg-bg-animation {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

.svg-bg-animation .svg {
    display: none;
}

.svg-bg-animation .rectangles {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1.9) rotate(-40deg);
    -ms-transform: translate(-50%, -50%) scale(1.9) rotate(-40deg);
    transform: translate(-50%, -50%) scale(1.9) rotate(-40deg);
}

.svg-bg-animation .rectangles svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.svg-bg-animation .rectangles svg .rect1 {
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
}

.svg-bg-animation .rectangles svg .rect2 {
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
}

.svg-bg-animation .rectangles.animate .rect1 {
    -webkit-animation: slide-right 9s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slide-right 9s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svg-bg-animation .rectangles.animate .rect2 {
    -webkit-animation: slide-left 9s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slide-left 9s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svg-bg-animation .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: scale(1.3) translate(-50%, -40%);
    -ms-transform: scale(1.3) translate(-50%, -40%);
    transform: scale(1.3) translate(-50%, -40%);
    width: 100%;
    height: 100%;
}

.svg-bg-animation .circle svg {
    width: 100%;
    height: 100%;
}

.svg-bg-animation .circle.animate svg {
    -webkit-animation: spin 6s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: spin 6s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svg-bg-animation .arcs {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: scale(2.5) translate(-15%, 5%) rotate(-20deg);
    -ms-transform: scale(2.5) translate(-15%, 5%) rotate(-20deg);
    transform: scale(2.5) translate(-15%, 5%) rotate(-20deg);
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1023px) {
    .svg-bg-animation .arcs {
        -webkit-transform: scale(2.5) translate(-5%, 10%) rotate(-20deg);
        -ms-transform: scale(2.5) translate(-5%, 10%) rotate(-20deg);
        transform: scale(2.5) translate(-5%, 10%) rotate(-20deg);
    }
}

@media screen and (max-width: 767px) {
    .svg-bg-animation .arcs {
        -webkit-transform: scale(2.5) translate(3%, 18%) rotate(-20deg);
        -ms-transform: scale(2.5) translate(3%, 18%) rotate(-20deg);
        transform: scale(2.5) translate(3%, 18%) rotate(-20deg);
    }
}

.svg-bg-animation .arcs svg {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.svg-bg-animation .arcs .arc1 {
    -webkit-transform-origin: 30% center;
    -ms-transform-origin: 30% center;
    transform-origin: 30% center;
}

.svg-bg-animation .arcs .arc2 {
    -webkit-transform-origin: 70% center;
    -ms-transform-origin: 70% center;
    transform-origin: 70% center;
}

.svg-bg-animation .arcs.animate .arc1 {
    -webkit-animation: arc 6s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: arc 6s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svg-bg-animation .arcs.animate .arc2 {
    -webkit-animation: arc 6s forwards;
    animation: arc 6s forwards;
}

@-webkit-keyframes slide-right {
    0% {
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }
    35% {
        -webkit-transform: translate(25%, 0);
        transform: translate(25%, 0);
    }
    100% {
        -webkit-transform: translate(200%, 0);
        transform: translate(200%, 0);
    }
}

@keyframes slide-right {
    0% {
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }
    35% {
        -webkit-transform: translate(25%, 0);
        transform: translate(25%, 0);
    }
    100% {
        -webkit-transform: translate(200%, 0);
        transform: translate(200%, 0);
    }
}

@-webkit-keyframes slide-left {
    0% {
        -webkit-transform: translate(100%, 0);
        transform: translate(100%, 0);
    }
    35% {
        -webkit-transform: translate(-25%, 0);
        transform: translate(-25%, 0);
    }
    100% {
        -webkit-transform: translate(-200%, 0);
        transform: translate(-200%, 0);
    }
}

@keyframes slide-left {
    0% {
        -webkit-transform: translate(100%, 0);
        transform: translate(100%, 0);
    }
    35% {
        -webkit-transform: translate(-25%, 0);
        transform: translate(-25%, 0);
    }
    100% {
        -webkit-transform: translate(-200%, 0);
        transform: translate(-200%, 0);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
    65% {
        -webkit-transform: rotate(70deg);
        transform: rotate(70deg);
    }
    100% {
        -webkit-transform: rotate(250deg);
        transform: rotate(250deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
    65% {
        -webkit-transform: rotate(70deg);
        transform: rotate(70deg);
    }
    100% {
        -webkit-transform: rotate(250deg);
        transform: rotate(250deg);
    }
}

@-webkit-keyframes arc {
    0% {
        -webkit-transform: rotate(-100deg);
        transform: rotate(-100deg);
    }
    65% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

@keyframes arc {
    0% {
        -webkit-transform: rotate(-100deg);
        transform: rotate(-100deg);
    }
    65% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

.tags li {
    display: inline;
    line-height: 40px;
}

.tag {
    background: #0B563D;
    color: #fff;
    display: inline-block;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.3px;
    line-height: 1.58333;
    text-transform: uppercase;
    margin-right: 15px;
    padding: 2px 10px 3px;
    border-radius: 3px;
    cursor: pointer;
}

.tag--sky {
    background: #002466;
}

.tag--transparent {
    background: none;
    color: #002466;
    padding-left: 0;
    padding-right: 0;
}

.tile {
    text-decoration: none;
    background-color: #fff;
    margin: 0 10px 20px;
    display: inline-block;
    box-sizing: border-box;
}

.tile--large {
    width: 832px;
}

.tile--large .tile_inner {
    padding-bottom: 406px;
}

@media screen and (max-width: 767px) {
    .tile--large img {
        margin-top: -25%;
    }
}

.tile--small {
    width: 406px;
}

.tile--small .tile_inner {
    padding-bottom: 100%;
}

.tile_inner {
    border: 1px solid #fff;
    height: 0;
    position: relative;
    overflow: hidden;
}

.tile--cta .tile_inner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-left: 50px;
    padding-right: 50px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tile--cta .tile_inner:after {
    display: none;
}

.tile--cta .tile_content-wrapper {
    width: 100% !important;
    transition: none;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: 0 !important;
}

@media screen and (min-width: 768px) {
    .tile--cta .tile_content-wrapper {
        height: 100% !important;
    }
}

.tile--cta .tile_header + .btn-cta {
    margin-top: 30px;
}

@media (max-width: 1318px) {
    .tile--large {
        width: 716px;
    }

    .tile--large .tile_inner {
        padding-bottom: 348px;
    }

    .tile--small {
        width: 348px;
    }
}

@media (max-width: 1123px) {
    .tile--large + .tile--small:last-child {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .tile {
        margin: 0 0 15px;
    }

    .tile--small {
        width: 100%;
        display: inline-block !important;
    }

    .tile--small .tile_inner {
        padding-bottom: 80%;
    }

    .tile--large {
        width: 100%;
    }

    .tile--large .tile_inner {
        padding-bottom: 200%;
    }
}

a.tile:hover .tile_inner:after {
    height: 2.46305%;
}

a.tile:hover .tile_content-wrapper {
    bottom: 2.46305%;
}

.tile_inner:after {
    content: '';
    height: 0px;
    background-color: #002466;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    transition: all 180ms ease-out;
}

.tile--large .tile_content-wrapper,
.tile--large .tile_inner:after {
    width: 50%;
    right: 0;
}

.tile--large .tile_image-wrapper {
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.tile--small .tile_image-wrapper {
    height: 0;
    overflow: hidden;
    padding-bottom: 42.5%;
    position: relative;
}

.tile--small .tile_image-wrapper img {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.tile_content-wrapper {
    font-size: 18px;
    color: #000;
    text-align: left;
    position: absolute;
    bottom: 0;
    padding: 38px 30px;
    box-sizing: border-box;
    transition: all 180ms ease-out;
    width: 100%;
}

@media (max-width: 1318px) {
    .tile_content-wrapper {
        padding: 0 25px 30px;
    }
}

.tile_topic {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #002466;
    display: inline-block;
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tile_new {
    float: right;
}

.tile_description {
    margin-top: 15px;
}

.tile_issue {
    margin-bottom: 15px;
}

.tile_issue span + span:before {
    content: '|';
    display: inline-block;
    padding: 0 8px;
    color: #cecece;
}

.tile .btn-cta {
    margin-top: 15px;
}

.tile_cta-description {
    display: block;
    width: 160px;
    text-align: center;
    margin-top: 10px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    color: #666666;
}

.tile img {
    display: block;
    min-width: 100%;
    min-height: 100%;
}

@media screen and (max-width: 767px) {
    .tile--large .tile_image-wrapper {
        position: static;
        height: 0;
        padding-bottom: 42.5%;
        overflow: hidden;
        width: 100% !important;
    }

    .tile_inner {
        height: auto;
        padding-bottom: 0 !important;
    }

    .tile_inner:after {
        content: none;
    }

    .tile_content-wrapper {
        position: static;
        width: 100% !important;
        bottom: 0 !important;
        padding: 20px 20px 25px;
        min-height: 80px;
    }

    .tile_description {
        display: none;
    }

    .tile_issue {
        margin-bottom: 9px;
    }

    .tile_cta-description {
        text-align: left;
    }
}

.video-player {
    padding: 0px 15px;
    margin-bottom: 74px;
}

@media screen and (min-width: 768px) {
    .video-player {
        padding: 0px 30px;
    }
}

@media screen and (min-width: 1024px) {
    .video-player {
        display: block;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
        padding: 0px;
    }
}

.video-player_inner {
    background: black;
    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    .video-player_inner {
        margin: 0px 13%;
    }
}

.video-player_video-wrapper {
    width: 100%;
    display: inline-block;
}

.video-player_overlay {
    height: 100%;
    overflow: hidden;
    position: absolute;
    width: 100%;
    cursor: pointer;
    z-index: 1;
}

.video-player_overlay:after {
    /*background-image: url("/img/video-play-button-hover.png");*/
    background: no-repeat center center;
    background-size: 100%;
    content: '';
    cursor: pointer;
    display: block;
    height: 44px;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 44px;
    z-index: 3;
}

@media screen and (min-width: 1024px) {
    .video-player_overlay:after {
        width: 88px;
        height: 88px;
    }
}

.video-player_overlay:hover:after {
    background-color: rgba(255, 255, 255, 0.4);
}

.video-player_video {
    width: 100%;
}

.video-player_control-wrapper {
    height: 65px;
    background-color: black;
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: -65px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    transition: bottom 0.3s ease-in-out;
    z-index: 100;
}

.video-player_play-pause {
    color: white;
    font-size: 24px;
    width: 63px;
    height: 65px;
    height: 100%;
    border-right: 2px solid #333;
    transition: background-color 0.2s ease-in-out;
}

.video-player_play-pause:before {
    display: block;
    font-family: 'icomoon';
    content: "\e915";
    font-style: normal;
    font-weight: normal;
}

.video-player_play-pause:hover {
    background-color: #d3135a;
}

.video-player_timer-wrapper {
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.32px;
    line-height: 1;
    color: white;
    border-right: 2px solid #333;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0px 17px;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.video-player_timer-divider {
    margin: 0px 5px;
}

.video-player_progress-wrapper {
    border-right: 2px solid #333;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.video-player_progress-scrubber {
    width: 90%;
    height: 6px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-size: auto;
    background-image: none;
}

.video-player_progress-scrubber::-webkit-progress-bar {
    background: gray;
}

.video-player_progress-scrubber::-webkit-progress-value {
    background: white;
}

.video-player_volume-wrapper {
    border-right: 2px solid #333;
    width: 65px;
}

.video-player_volume-wrapper:hover .video-player_volume-button {
    background-color: #d3135a;
}

.video-player_volume-wrapper:hover .video-player_volume-slider-wrapper {
    height: 160px;
}

.video-player_volume-button {
    color: white;
    font-size: 24px;
    width: 63px;
    height: 65px;
    transition: background-color 0.2s ease-in-out;
}

.video-player_volume-button:before {
    display: block;
    font-family: 'icomoon';
    content: "\e911";
    font-style: normal;
    font-weight: normal;
}

.video-player_volume-slider-wrapper {
    position: absolute;
    bottom: 65px;
    height: 0px;
    background: #e50d5a;
    width: 63px;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
}

.video-player_volume-slider {
    position: absolute;
    left: 50%;
    margin: 0 auto;
    margin-left: -2px;
    height: 120px;
    margin-top: 20px;
    width: 6px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    outline: none;
}

.video-player_volume-slider .ui-slider-range-min {
    height: 120px;
    width: 8px;
    margin-left: -1px;
    position: absolute;
    background: #ffb6d1;
    border: none;
    outline: none;
    bottom: 0px;
}

.video-player_volume-slider .ui-slider-handle {
    width: 18px;
    height: 8px;
    background: white;
    position: absolute;
    margin-left: -6px;
    margin-bottom: -5px;
    cursor: pointer;
    outline: none;
    border: none;
}

.video-player_full-screen {
    color: white;
    font-size: 24px;
    width: 63px;
    height: 65px;
    transition: background-color 0.2s ease-in-out;
}

.video-player_full-screen:before {
    display: block;
    font-family: 'icomoon';
    content: "\e913";
    font-style: normal;
    font-weight: normal;
}

.video-player_full-screen:hover {
    background-color: #d3135a;
}

.video-player--playing .video-player_play-pause:before {
    display: block;
    font-family: 'icomoon';
    content: "\e912";
    font-style: normal;
    font-weight: normal;
}

.video-player--volume-active .video-player_volume-slider-wrapper {
    height: 160px;
}

.video-player--volume-active .video-player_volume-button {
    background-color: #d3135a;
}

.video-player--volume-muted .video-player_volume-button:before {
    display: block;
    font-family: 'icomoon';
    content: "\e90c";
    font-style: normal;
    font-weight: normal;
}

.video-player--on-device .video-player_progress-wrapper {
    border-right: none;
}

.video-player--on-device .video-player_volume-wrapper {
    display: none;
}

.video-player--on-device .video-player_full-screen {
    display: none;
}

@media screen and (max-width: 767px) {
    .video-player--on-device .video-player_progress-wrapper {
        border-right: none;
    }

    .video-player--on-device .video-player_control-wrapper {
        display: none;
    }

    .video-player--on-device .video-player_overlay {
        display: none !important;
    }
}

.video-player_inner:hover .video-player_control-wrapper {
    bottom: 0px;
}

.youtube-player {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.youtube-player .overlay, .youtube-player .video {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.youtube-player iframe {
    width: 100%;
    height: 100%;
}

.youtube-player .overlay {
    height: 100%;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.youtube-player .overlay:before {
    background: rgba(0, 0, 0, 0.4);
    content: '';
    cursor: pointer;
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.youtube-player .overlay:after {
    /*background-image: url("/img/video-play-button-hover.png");*/
    background: no-repeat center center;
    background-size: 50%;
    content: '';
    cursor: pointer;
    display: block;
    height: 88px;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 88px;
    z-index: 3;
}

@media screen and (min-width: 1024px) {
    .youtube-player .overlay:after {
        background-size: 100%;
    }
}

.youtube-player .overlay:hover:after {
    /*background-image: url("/img/video-play-button-hover.png");*/
}

.youtube-player .overlay.hide {
    display: none;
    -webkit-transform: translate3d(0);
    transform: translate3d(0);
    transition: opacity 0.5s;
    z-index: 0;
}

.youtube-player .overlay img {
    min-height: 100%;
    min-width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.article-content .youtube-player {
    display: block;
    padding: 0 15px;
    margin: 0 auto 70px;
    max-width: 1280px;
}

@media screen and (min-width: 768px) {
    .article-content .youtube-player {
        padding: 0 30px;
    }
}

.article-content .youtube-player .overlay {
    width: auto;
    left: 15px;
    right: 15px;
}

@media screen and (min-width: 768px) {
    .article-content .youtube-player .overlay {
        left: 30px;
        right: 30px;
    }
}

@media screen and (min-width: 1024px) {
    .article-content .youtube-player .overlay {
        left: 13%;
        right: 13%;
    }
}

@media screen and (min-width: 1024px) {
    .article-content .youtube-player .video {
        padding: 0px 13%;
    }
}

.component.accordian-meetings {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin: 0 auto;
}

.component.accordian-meetings::after {
    clear: both;
    content: "";
    display: table;
}

.component.accordian-meetings .accordian-meetings_ct {
    margin: 60px 30px 0px;
}

.component.accordian-meetings .accordian-meetings_inner {
    margin-bottom: 100px;
}

@media screen and (min-width: 1024px) {
    .component.accordian-meetings .accordian-meetings_inner {
        padding-left: 35px;
        padding-right: 35px;
    }
}

.component.accordian-meetings .accordian-meetings_inner h3 {
    font-size: 30px;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #111111;
    margin-bottom: 30px;
}

.component.accordian-meetings .accordian-meetings_inner p {
    font-size: 22px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    margin-bottom: 55px;
}

.component.accordian-meetings .accordian-meetings_inner a {
    font-size: 22px;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #d3135a;
}

.component.accordian-meetings .accordian-meetings_inner a:before {
    content: '\e903';
    font-family: 'icomoon';
    margin-right: 22px;
    font-weight: lighter;
}

.component.author-callout {
    margin: 0 auto;
    margin-top: 10px;
    text-align: center;
    color: #fff;
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
    font-style: normal;
}

.component.author-callout a {
    color: rgba(0, 0, 0, 0.5);
}

.component.author-callout a:hover {
    text-decoration: underline;
}

.breadcrumbs.component::after {
    clear: both;
    content: "";
    display: table;
}

.breadcrumbs_item {
    display: inline;
    float: left;
    margin-left: 10px;
    padding-left: 15px;
    position: relative;
}

.breadcrumbs_item:after {
    content: '';
    display: block;
    position: absolute;
    content: '/';
    left: 0;
    top: 0;
    color: #000000;
}

.breadcrumbs_item:first-child {
    margin: 0;
    padding: 0;
}

.breadcrumbs_item:first-child:after {
    display: none;
}

.org-group_name {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.16667;
    color: #0E141A;
    /*font-size: 22px;
        margin: 0 0px 54px 0px;*/
    padding-top: 24px;
}

@media screen and (min-width: 768px) {
    .org-group_name {
        font-size: 50px;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}

@media screen and (max-width: 767px) {
    .org-group:not(:first-child) .org-group_name {
        border-top: 2px solid #ddd;
        margin-top: 10px;
        padding-top: 20px;
    }
}

@media screen and (min-width: 768px) {
    .org-group:not(:first-child) .org-group_name {
        padding-top: 48px;
    }
}

@media screen and (max-width: 767px) {
    .org-group_name {
        margin-bottom: 20px;
        cursor: pointer;
    }
}

@media screen and (min-width: 768px) {
    .org-group_name {
        margin: 0px 2% 36px 2%;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .org-group_name:after {
        content: '\e907';
        font-family: 'icomoon';
        color: #d3135a;
        font-size: 15px;
        top: 30px;
        right: 22px;
        position: absolute;
    }
}

@media screen and (max-width: 767px) {
    .org-group_name.open:after {
        content: '\e908';
    }
}

.org-group_wrap {
    background-color: #f4f4f4;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .org-group_wrap {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .org-group_wrap {
        display: block !important;
    }
}

@media screen and (min-width: 768px) {
    .org-person_image {
        width: 50%;
    }
}

.org-person_image img {
    display: block;
    width: 100%;
}

.org-person_tile {
    text-decoration: none;
    color: #ffffff;
    margin: 0 auto 30px auto;
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    vertical-align: top;
}

@media screen and (min-width: 768px) {
    .org-person_tile_inner {
        width: 50%;
        position: absolute;
        top: 0;
        left: 50%;
        height: 100%;
    }
}

.org-person_tile_inner:after {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: '';
    border: 20px solid;
    position: absolute;
    top: -20px;
    left: 50%;
}

.org-group_wrap--pink .org-person_tile_inner:after {
    border-color: transparent transparent #d3135a transparent;
}

.org-group_wrap--green .org-person_tile_inner:after {
    border-color: transparent transparent #0B563D transparent;
}

.org-group_wrap--orange .org-person_tile_inner:after {
    border-color: transparent transparent #0152E8 transparent;
}

.org-group_wrap--sky .org-person_tile_inner:after {
    border-color: transparent transparent #002466 transparent;
}

.org-group_wrap--forest .org-person_tile_inner:after {
    border-color: transparent transparent #0f955a transparent;
}

@media screen and (min-width: 768px) {
    .org-person_tile_inner:after {
        -webkit-transform: translate(-50%, -50%) rotate(270deg);
        -ms-transform: translate(-50%, -50%) rotate(270deg);
        transform: translate(-50%, -50%) rotate(270deg);
        top: 50%;
        left: -20px;
    }
}

@media screen and (min-width: 768px) {
    .org-person_tile {
        margin: 0;
    }

    .org-person_tile:nth-of-type(even) .org-person_image {
        left: 50%;
    }

    .org-person_tile:nth-of-type(even) .org-person_tile_inner {
        left: 0;
    }

    .org-person_tile:nth-of-type(even) .org-person_tile_inner:after {
        -webkit-transform: translate(50%, -50%) rotate(90deg);
        -ms-transform: translate(50%, -50%) rotate(90deg);
        transform: translate(50%, -50%) rotate(90deg);
        top: 50%;
        left: auto;
        right: -20px;
    }
}

@media screen and (min-width: 1024px) {
    .org-group_wrap--tile .org-person_tile {
        width: 640px;
        height: 320px;
        float: left;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+1) .org-person_image {
        left: 0;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+1) .org-person_tile_inner:after {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        top: -20px;
        left: 50%;
        right: auto;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+1):last-of-type .org-person_tile_inner {
        left: 50%;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+2) .org-person_image {
        left: 50%;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+2) .org-person_tile_inner:after {
        -webkit-transform: translate(50%, -50%) rotate(90deg);
        -ms-transform: translate(50%, -50%) rotate(90deg);
        transform: translate(50%, -50%) rotate(90deg);
        top: 50%;
        left: auto;
        right: -20px;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+2) .org-person_tile_inner {
        left: 0;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+3) .org-person_image {
        left: 0;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+3) .org-person_tile_inner {
        left: 50%;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+3) .org-person_tile_inner:after, .org-group_wrap--tile .org-person_tile:nth-of-type(3n+1):last-of-type .org-person_tile_inner:after {
        -webkit-transform: translate(-50%, -50%) rotate(270deg);
        -ms-transform: translate(-50%, -50%) rotate(270deg);
        transform: translate(-50%, -50%) rotate(270deg);
        top: 50%;
        left: -20px;
        right: auto;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+1):not(:last-of-type) {
        width: 320px;
        height: 640px;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+1):not(:last-of-type) .org-person_image {
        width: 100%;
        height: 50%;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+1):not(:last-of-type) .org-person_tile_inner {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 0;
        height: 50%;
    }

    .org-group_wrap--split .org-person_tile {
        width: 640px;
        height: 320px;
        float: left;
    }

    .org-group_wrap--split .org-person_tile:nth-of-type(even) {
        margin-left: 320px;
    }

    .org-group_wrap--split .org-person_tile:nth-of-type(even) .org-person_image {
        left: 0;
    }

    .org-group_wrap--split .org-person_tile:nth-of-type(even) .org-person_tile_inner {
        left: 50%;
    }

    .org-group_wrap--split .org-person_tile:nth-of-type(even) .org-person_tile_inner:after {
        -webkit-transform: translate(-50%, -50%) rotate(270deg);
        -ms-transform: translate(-50%, -50%) rotate(270deg);
        transform: translate(-50%, -50%) rotate(270deg);
        top: 50%;
        left: -20px;
        right: auto;
    }
}

@media screen and (min-width: 1290px) {
    .org-group_wrap--tile .org-person_tile {
        width: 840px;
        height: 420px;
    }

    .org-group_wrap--tile .org-person_tile:nth-of-type(3n+1):not(:last-of-type) {
        width: 420px;
        height: 840px;
    }

    .org-group_wrap--split .org-person_tile {
        width: 840px;
        height: 420px;
    }

    .org-group_wrap--split .org-person_tile:nth-of-type(even) {
        margin-left: 420px;
    }
}

.org-person_tile_content {
    transition: all 100ms linear;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    height: auto;
    padding: 33px 25px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .org-person_tile_content {
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        position: absolute;
        padding: 0 25px;
        top: 50%;
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    .org-person_tile_content {
        -webkit-transform: translateY(-50%) translateY(32px);
        -ms-transform: translateY(-50%) translateY(32px);
        transform: translateY(-50%) translateY(32px);
    }

    .org-person_tile:hover .org-person_tile_content {
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.org-person_tile_content_name {
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 26px;
    font-spacing: -0.6px;
    line-height: 28px;
}

.org-person_tile_content_position {
    margin: 10px 0px 0px 0px;
    font-size: 18px;
    line-height: 20px;
}

.org-person_tile_content_cta {
    display: none;
}

@media screen and (min-width: 768px) {
    .org-person_tile_content_cta {
        margin-top: 16px;
        border-color: transparent;
        color: transparent;
        display: inline-block;
        padding: 12px 20px;
    }

    .org-person_tile_content_cta:hover {
        background-color: rgba(0, 0, 0, 0.25);
    }

    .org-person_tile:hover .org-person_tile_content_cta {
        border-color: #ffffff;
        color: #ffffff;
    }
}

.org-group_wrap--pink .org-person_tile {
    background-color: #d3135a;
}

.org-group_wrap--green .org-person_tile {
    background-color: #0B563D;
}

.org-group_wrap--orange .org-person_tile {
    background-color: #0152E8;
}

.org-group_wrap--sky .org-person_tile {
    background-color: #002466;
}

.org-group_wrap--forest .org-person_tile {
    background-color: #0f955a;
}

.shareprice {
    color: #fff;
}

.shareprice__value {
    font-size: 33px;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.shareprice__change {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
}

.shareprice__change--down {
    color: #d3135a;
}

.shareprice__change--down .percent:after {
    content: '\25bc';
}

.shareprice__change--up {
    color: #0B563D;
}

.shareprice__change--up .percent:after {
    content: '\25b2';
}

@media screen and (min-width: 480px) {
    .shareprice__change {
        font-size: 18px;
    }
}

.stock-graph__buttons {
    text-align: right;
    margin-bottom: 20px;
}

.stock-graph__buttons button {
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-left: 10px;
    font-size: 14px;
    padding: 10px;
    color: #000;
}

.stock-graph__buttons button.active {
    color: #d3135a;
}

.stock-graph__chart .tick text {
    fill: #999999;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 12px;
}

.stock-graph__chart .c3-axis-y path,
.stock-graph__chart .c3-axis-y .tick line {
    visibility: hidden;
}

.stock-graph__chart .c3-axis path,
.stock-graph__chart .tick line {
    stroke: #dddddd;
}

.stock-graph__chart .c3-circles circle {
    visibility: hidden;
}

.stock-graph__chart .c3-circles circle._expanded_ {
    visibility: visible;
}

.stock-graph__chart .c3-line {
    stroke-width: 3px;
}

.stock-graph__chart.one_year .c3-line {
    stroke-width: 2px;
}

.stock-graph__chart.five_years .c3-line {
    stroke-width: 1px;
}

.stock-graph__chart .c3-grid line {
    stroke: #dddddd;
    stroke-dasharray: 0 0;
}

.stock-graph__chart .c3-legend-item {
    cursor: default;
}

.stock-graph__chart .c3-legend-item text {
    cursor: default;
    font-family: "RoobertLight", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
}

.stock-graph__chart .c3-legend-item rect {
    cursor: default;
}

.stock-graph__tooltip {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    font-family:"Roobert", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.stock-graph__tooltip__heading {
    font-size: 14px;
    margin-bottom: 5px;
}

.stock-graph__tooltip__value {
    font-size: 18px;
    display: inline-block;
    margin-right: 5px;
}

.stock-graph__tooltip__date {
    display: inline;
    font-size: 14px;
    color: #999999;
}

/* endinject */
@media print {
    .module.search-form, .module.global-header, .module.global-megamenu, .module.filter, .module.related-content, .module.footer, .module.presentation, .module.subscribe {
        display: none !important;
    }

    *, *:before, *:after {
        background-color: #fff !important;
        color: #000 !important;
        border: none !important;
    }

    section {
        page-break-inside: avoid;
    }

    img {
        width: auto !important;
        max-width: 100vw;
        height: auto !important;
    }

    a {
        text-decoration: underline !important;
    }

    .module.hero {
        padding: 0;
        margin-bottom: 30px;
    }

    .module.hero:last-of-type {
        display: none;
    }

    .module.hero:first-of-type {
        display: block !important;
    }

    .module.article-content {
        padding-bottom: 0;
    }

    .component.share-links, .component.tags, .component.youtube-player, .component.video-player {
        display: none;
    }

    .article-carousel {
        max-width: 100%;
    }

    .article-carousel .carousel_control-wrap {
        display: none;
    }

    .component.accordian-table tr, .component.accordian-table th, .component.accordian-table td {
        padding: 0 !important;
    }

    .component.accordian-table table {
        margin-bottom: 40px !important;
    }

    .module.article-author {
        page-break-inside: avoid;
        margin-bottom: 0;
    }

    .carousel {
        margin: 0;
    }

    .component.rich-text,
    .component.pull-quote {
        margin-bottom: 30px;
    }
}

/* remove spinner in type number on firefox */
input[type=number] {
    -moz-appearance:textfield;
}

.skip-link {
    position: absolute;
    background-color: white;
    color: #D3135A;
    top: -80px;
    left: 0;
    padding: 10px 15px 8px 15px;
    font-family: "RoobertBold", Calibri, Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    letter-spacing: 0px;
    font-size: 12px;
    font-weight: 700;
}

.skip-link:focus {
    position: absolute;
    left: 19px;
    top: 90px;
}
@media screen and (max-width: 1024px){
    .skip-link{
        display: none;
    }
}
img.ValueChat_starStyle__2ItBJ[src='/etc.clientlibs/enel-comm-common/clientlibs/clientlib-react/resources/static/media/star-off-web.a62cf544.svg']{
    filter: invert(47%) sepia(12%) saturate(909%) hue-rotate(176deg) brightness(93%) contrast(84%);
}

/* verifica-chi-ti-ha-chiamato New UI */
#main.new-ui {
    background-color: #f7f8fb;
}

#main.new-ui .divider {
    background-color: #C2CDDD;
    width: 90%;
    height: 1px;
    margin: auto;
} 

#main.new-ui .hero-detail {
    background-color: #f7f8fb;
    padding-top: 86px !important;
    padding-bottom: 86px !important;
}

#main.new-ui .hero-detail .image-hero_breadcrumbs.module--initialized {
    padding-bottom: 126px;
    padding-left: 120px;
    text-align: left;
}

#main.new-ui .hero-detail .image-hero_breadcrumbs.module--initialized .breadcrumbs_link {
    color: #272C34 !important;
    font-family: 'Roobert';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0;
    text-transform: none;
}

#main.new-ui .hero-detail .image-hero_breadcrumbs.module--initialized li:last-child span {
    font-weight: 700;
    font-size: 16px;
    text-transform: none;
} 

#main.new-ui .hero-detail .image-hero_title {
    color: #131416 !important;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 67px;
    letter-spacing: 0.4px;
    padding-bottom: 4px;
}

#main.new-ui .hero-detail .image-hero_detail.text--detail {
    color: #272C34 !important;
    font-family: 'Roobert';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0;
    margin: 0 auto;
}

#main.new-ui .anchor.home-plan_container.article-container.module--initialized {
    background-color: #f7f8fb;
    margin-top: 128px;
    width: 60%;
}

#main.new-ui .content-container.content-container-custom .anchor.home-plan_container.article-container.module--initialized {
    background-color: #f7f8fb;
    margin-top: 0;
    width: 100%;
}

#main.new-ui .article-container.module--initialized h2 {
    font-size: 32px;
}

#main.new-ui .article-container.module--initialized ul,
#main.new-ui .article-container.module--initialized p {
    font-size: 16px;
}

#main.new-ui .article-container.module--initialized li {
    list-style: disc inside;
}

#main.new-ui .content-container.content-container-custom {
    padding: 80px 0 128px;
}

#main.new-ui .content-container.content-container-custom .article-container.module--initialized {
    padding: 0 120px 0 !important;
}

@media(max-width: 1024px) {
    #main.new-ui .hero-detail .image-hero_breadcrumbs.module--initialized {
        padding-left: 60px;
        padding-bottom: 60px;
        margin: 0; 
    }

    #main.new-ui .hero-detail .image-hero_title {
        font-size: 40px !important;
    }

    #main.new-ui .content-container.content-container-custom {
        padding: 0;
    }

    #main.new-ui .anchor.home-plan_container.article-container.module--initialized {
        margin-top: 60px;
    }

    #main.new-ui .content-container.content-container-custom .anchor.home-plan_container.article-container.module--initialized {
        padding: 0 !important;
        width: 80%;
    }

    #main.new-ui .categories.parbase {
        padding: 0 !important;
    }
}

@media(max-width: 834px) {
    #main.new-ui .content-container.content-container-custom {
        padding: 0;
    }

    #main.new-ui .anchor.home-plan_container.article-container.module--initialized {
        width: 80%;
    }

    #main.new-ui .content-container.content-container-custom .anchor.home-plan_container.article-container.module--initialized {
        width: 70%;
    }
}

@media(max-width: 767px) {
    #main.new-ui .hero-detail .image-hero_breadcrumbs.module--initialized {
        padding-bottom: 38px;
        padding-left: 16px;
    }
    
    #main.new-ui .hero-detail .breadcrumbs_item span {
        font-size: 16px;
        line-height: 16px;
    }

    #main.new-ui .image-hero-wrapper.image-hero .image-hero_breadcrumbs .text--breadcrumb {
        padding: 0;
        margin: 0;
    }

    #main.new-ui .hero-detail .image-hero_title {
        font-size: 32px;
        line-height: 40px;
    }

    #main.new-ui .hero-detail .image-hero_detail.text--detail {
        font-size: 16px;
        line-height: 24px;
    }

    #main.new-ui .hero-detail {
        padding-bottom: 38px !important;
    }

    #main.new-ui .anchor.home-plan_container.article-container.module--initialized, 
    #main.new-ui .content-container.content-container-custom .anchor.home-plan_container.article-container.module--initialized {
        width: 100%;
        padding: 38px 32px 0 !important;
        margin: 0;
    }

    #main.new-ui .content-container.content-container-custom .anchor.home-plan_container.article-container.module--initialized {
        padding-top: 0 !important;
    }

    #main.new-ui .article-container.module--initialized h2 {
        font-size: 20px;
        line-height: 30px;
    }

    #main.new-ui .article-container.module--initialized p {
        font-size: 16px;
        line-height: 24px;
    }
}