/*****SHARED STYLES*****/
.cl-left {
    float: left;
    margin-right: 40px;
    margin-bottom: 20px;
}
.cl-right {
    float: right;
    margin-left: 40px;
    margin-bottom: 20px;
}
.cl-bg-red {
    background-color: #f1242f;
}
.cl-bg-black {
    background-color: #000000;
}
.cl-bg-dark-grey {
    background-color: #3a3a3a;
}
.cl-bg-grey {
    background-color: #8a8a8a;
}
.cl-bg-light-grey {
    background-color: #cccccc;
}
.cl-bg-super-light-grey {
    background-color: #e9e9e9;
}
.cl-text-black {
    color: #000000;
}
.cl-text-dark-grey {
    color: #3a3a3a;
}
.cl-text-grey {
    color: #8a8a8a;
}
.cl-text-red {
    color: #f1242f;
}
.cl-text-white {
    color: #ffffff;
}

.cl-font-regular {
    font-family: "soleto", sans-serif;
    font-weight: 400;
}
.cl-font-medium {
    font-family: "soleto", sans-serif;
    font-weight: 500;
}
.cl-font-bold {
    font-family: "soleto", sans-serif;
    font-weight: 700;
}

.cl-text-uppercase {
    text-transform: uppercase;
}

.cl-standard-text h1,
.cl-blog-text h1 {
    font-family: "soleto", sans-serif;
    font-weight: 500;
    font-size: 52px;
    line-height: 1.5em;
}
.cl-standard-text h2,
.cl-blog-text h2 {
    font-family: "soleto", sans-serif;
    line-height: 1.5em;
    margin-bottom: 20px;
    font-weight: 600;
}
.cl-standard-text h2 {
    font-size: 32px;
}
.cl-blog-text h2 {
    font-size: 25px;
}
.cl-standard-text h3,
.cl-blog-text h3 {
    font-family: "soleto", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 10px;
}
.cl-standard-text h4,
.cl-blog-text h4,
.cl-blog-text h6 {
    font-family: "soleto", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25em;
    margin-top: 30px;
    margin-bottom: 10px;
}
.cl-standard-text h5,
.cl-blog-text h5 {
    font-family: "soleto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25em;
}
.cl-standard-text h6 {
    font-family: "soleto", sans-serif;
    font-weight: 300;
    font-size: 11px;
    line-height: 1.25em;
}
.cl-standard-text a,
.cl-blog-text a {
    color: #f1242f;
    text-decoration: none;
}
.cl-standard-text a:hover,
.cl-blog-text a:hover {
    text-decoration: underline;
}
.cl-standard-text .invert,
.cl-blog-text .invert {
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    background: #000000;
    padding: 5px;
    float: left;
}
.cl-standard-text a.invert,
.cl-blog-text a.invert {
    color: white;
    text-decoration: none;
}
.cl-standard-text a.invert:hover,
.cl-blog-text a.invert:hover {
    color: #f1242f;
    text-decoration: none;
}
.cl-standard-text p {
    font-family: "soleto", sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 16px;
}
.cl-blog-text p {
    font-family: "soleto", sans-serif;
    font-weight: 400;
    line-height: 1.75em;
    font-size: 17px;
    margin-bottom: 20px;
}
.cl-blog-text .btn {
    margin-bottom: 44px;
}
.cl-standard-text strong,
.cl-standard-text b,
.cl-blog-text strong,
.cl-blog-text b {
    font-weight: 700;
}
.cl-standard-text em,
.cl-standard-text i,
.cl-blog-text em,
.cl-blog-text i {
    font-style: italic;
}
.cl-standard-text i.fa,
.cl-blog-text i.fa {
    font-style: normal;
}
.cl-standard-text ul,
.cl-standard-text ol {
    font-family: "soleto", sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 16px;
    margin-left: 30px;
    margin-bottom: 20px;
}
.event-content-description > ul {
    margin-bottom: 20px;
}
.cl-blog-text ul,
.cl-blog-text ol {
    font-family: "soleto", sans-serif;
    font-weight: 400;
    line-height: 1.75em;
    font-size: 17px;
    margin-left: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.cl-standard-text li {
    padding-left: 12px;
    margin-bottom: 20px;
    line-height: 1.5em;
}
.cl-blog-text li {
    padding-left: 12px;
    margin-bottom: 20px;
    line-height: 1.75em;
}
.cl-standard-text li:last-of-type,
.cl-blog-text li:last-of-type {
    margin-bottom: 0;
}
.cl-standard-text ul li,
.cl-blog-text ul li {
    list-style-type: square;
}
.cl-standard-text ol li,
.cl-blog-text ol li {
    list-style-type: decimal;
}
.cl-standard-text hr,
.cl-blog-text hr {
    border: none;
    border-top: 1px solid #bebebe;
    margin: 45px 0;
}
.cl-standard-text code,
.cl-blog-text code,
.cl-standard-text pre,
.cl-blog-text pre {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
    font-family: "Courier New", Courier, monospace;
    background: #fff;
    padding: 20px;
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}
.cl-standard-text p code,
.cl-blog-text p code,
.cl-standard-text p pre,
.cl-blog-text p pre {
    margin-bottom: 0;
}

.cl-standard-text code.small,
.cl-blog-text code.small,
.cl-standard-text pre.small,
.cl-blog-text pre.small {
    font-size: 12px;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}


.cl-play-button-container {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}
.cl-play-button {
    display: table;
    width: 100%;
    height: 100%;
}
.cl-play-button-link {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.cl-play-button .cl-play-button-circle {
    display: block;
    margin: auto;
    width: 74px;
    height: 74px;
    border-radius: 37px;
    background: black;
    opacity: 0.6;
    text-align: center;
    line-height: 74px;
}
.cl-play-button .cl-play-button-circle .fa-play {
    color: #aeaeae;
    font-size: 23px;
    position: relative;
    top: 3px;
    left: 3px;
}


.cl-loader {
    position: relative;
    margin: 0 auto;
    width: 50px;
}
.cl-loader:before {
    content: '';
    display: block;
    padding-top: 100%;
}
.cl-loader .circular {
    animation: cl-loader-rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.cl-loader .circular .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: cl-loader-dash 1.5s ease-in-out infinite, cl-loader-color 6s ease-in-out infinite;
    stroke-linecap: square;
}
.cl-label {
    display: block;
    float: left;
    width: 100%;
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 10px;
}
.cl-input {
    display: block;
    float: left;
    width: 100%;
    height: 65px;
    line-height: 65px;
    border: 1px solid #f3f3f3;
    padding: 0 15px;
    font-size: 21px;
}
.cl-input:focus {
    outline: none;
    border: 1px solid #c2c2c2;
}
.cl-select-container {
    display: block;
    float: left;
    width: 100%;
    height: 65px;
    border-radius: 0;
    overflow: hidden;
    background: #ffffff;
    position: relative;
}
.cl-select-container-clicker {
    color: #f1242f;
    font-size: 29px;
    position: absolute;
    right: 0;
    display: block;
    width: 50px;
    text-align: center;
    height: 100%;
    line-height: 65px;
    background: white;
    z-index: 10001;
}
.cl-select {
    width: 100%;
    height: 65px;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    color: #9f9f9f;
    position: relative;
    z-index: 40000;
    font-size: 21px;
    padding: 0 15px;
}
.cl-select:focus {
    outline: none;
    border: 1px solid #c2c2c2;
}
.cl-select  option:first-child {
    color: #9f9f9f;
}
.cl-select  option {
    color: #000;
}
.cl-textarea {
    width: 100%;
    height: 160px;
    padding: 15px;
    border: none;
}
.cl-textarea:focus {
    outline: none;
    border: 1px solid #c2c2c2;
}
.cl-checkbox {
    position: absolute;
    z-index: -1000;
    left: -1000px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}
label.cl-checkbox-label {
    background-image:url(../images/checkbox.png);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.cl-checkbox + label.cl-checkbox-label {
    padding-left: 38px;
    height: 28px;
    display: inline-block;
    line-height: 28px;
    background-repeat: no-repeat;
    background-position: 0 0;
    font-size: 18px;
    vertical-align: middle;
    cursor: pointer;
}
.cl-checkbox:checked + label.cl-checkbox-label {
    background-position: 0 -28px;
}
.cl-button {
    display: block;
    float: left;
    height: 65px;
    line-height: 65px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    border: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding: 0 20px;
    text-decoration: none;
    border-radius: 0;
    box-shadow: 0px 10px 31px 0px rgba(0,0,0,0.25);
}
.cl-button-primary,
a.cl-button-primary {
    background: #f1242f;
    color: white;
}
.cl-button-primary:hover,
a.cl-button-primary:hover,
.cl-button-primary:focus,
a.cl-button-primary:focus {
    background: #cd1017;
    text-decoration: none;
    color: white;
}
.cl-button-secondary,
a.cl-button-secondary {
    background: #e9e9e9;
    color: #949494;
}
.cl-button-secondary:hover,
a.cl-button-secondary:hover,
.cl-button-secondary:focus,
a.cl-button-secondary:focus{
    color: #f1242f;
    text-decoration: none;
}
.cl-button-yellow,
a.cl-button-yellow {
    background: #f7ba00;
    color: white;
}
.cl-button-yellow:hover,
a.cl-button-yellow:hover,
.cl-button-yellow:focus,
a.cl-button-yellow:focus{
    background: #dea700;
    text-decoration: none;
    color: white;
}
.cl-button-gray,
a.cl-button-gray {
    background: #E9E9E9;
    color: #949494;
}
.cl-button-gray:hover,
a.cl-button-gray:hover,
.cl-button-gray:focus,
a.cl-button-gray:focus{
    background: #d4d3d3;
    text-decoration: none;
    color: #949494;
}
.cl-button-full-width {
    display: block;
    width: 100%;
}
* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    min-width: 320px;
    background: #f3f3f3;
    width: 100%;
}
img {
    -ms-interpolation-mode: bicubic;
}
.video-container {
    position:relative;
    padding-bottom:56.25%;
    margin-top:30px;
    height:0;
    overflow:hidden;
}
.video-container iframe, .video-container object, .video-container embed {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.navigation-shade-container {
    display: none;
}
.mobile-navigation-container {
    display: none;
}
/* Prevent flash of animated content on page load (wow.js - solution found here: https://github.com/matthieua/WOW/issues/33) */
.wow {
    visibility: hidden;
}
.header-container {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 100000000;
    transform: translateY(0px);
    transition: 300ms ease-in-out;
}
.header-background {
    background: url(../images/header-container-bg.png) no-repeat center top;
}
.page-container {
    padding-top: 150px;
    transition: padding 0.25s ease;
}
.page-container .header-container {
    position: fixed;
    top: 0;
}
.header-container * {
    font-family: "soleto", sans-serif;
    line-height: 1.25em;
}
.header-container .fa {
    font-family: FontAwesome;
}
.header {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 1200px;
    height: 150px;
}
.header .utility-container {
    display: block;
    width: 100%;
    height: 50px;
}
.header .utility {
    display: block;
    width: 100%;
    height: 50px;
    background: white;
}
.header .utility .header-one-container {
    display: block;
    float: left;
}
.header .utility .header-one {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 15px;
    color: #8a8a8a;
    padding: 0;
    background: none;
    font-weight: 400;
}
.header .utility .header-one sup {
    font-size: 10px;
    vertical-align: super;
}

.header .utility .demographics-container {
    display: block;
    float: right;
    background: black;
}
.header .utility .demographics {
    display: block;
    width: 100%;
    font-size: 12px;
}
.header .utility .demographics .demographics-item {
    display: block;
    float: left;
    height: 50px;
    line-height: 50px;
    margin-right: 20px;
}
.header .utility .demographics .demographics-item:last-of-type {
    margin-right: 0;
}
.header .utility .demographics .demographics-link {
    color: #aeaeae;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
}
.header .utility .demographics .demographics-link:hover {
    color: #fe1211;
}
.header .utility .demographics .demographics-item {
    display: block;
    float: left;
    position: relative;
    margin: 0;
}
.header .utility .demographics > .demographics-item > a {
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 50px;
}
.header .utility .demographics > .demographics-item:hover > a {
    color: #F1242F;
}
.header .utility .demographics > .demographics-item > a[href="#"] {
    pointer-events: none;
}
.header .utility .demographics > .demographics-item > a[href="#"]:hover,
.header .utility .demographics > .demographics-item:hover > a[href="#"] {
    background-color: #ABABAB;
    color: black;
}
.header .utility .demographics .demographics-item>.sub-menu {
    display: none;
    background-color: black;
    position: absolute;
    left: 0;
    z-index: 100;
}
.header .utility .demographics .demographics-item>.sub-menu .demographics-item {
    opacity: 0;
    transform: translateY(20px);
    transition: 0ms all;
}
.header .utility .demographics .demographics-item>.sub-menu .demographics-item.fade-in {
    opacity: 1;
    transform: translateY(0px);
    transition: 400ms all;
}
.header .utility .demographics .demographics-item>.sub-menu .demographics-item {
    display: block;
    float: left;
    width: 100%;
    height: auto;
    padding-left: 0;
}
.header .utility .demographics .demographics-item>.sub-menu .demographics-item a {
    display: block;
    float: left;
    width: 100%;
    height: auto;
    padding: 20px 20px 0 20px;
    line-height: 1.25em;
    color: black;
    white-space: nowrap;
}
.header .utility .demographics .demographics-item>.sub-menu .demographics-item:last-child a {
    padding-bottom: 20px;
}
.header .utility .demographics .demographics-item>.sub-menu .demographics-item a:hover {
    color: #F1242F;
}
.header .utility .demographics .demographics-item>.sub-menu {
    background-color: #ABABAB;
}
.header .utility .demographics .demographics-item>.sub-menu a {
    color: black;
}
.header .utility .join-container {
    display: block;
    float: right;
    padding-right: 30px;
}
.header .utility .join {
    display: block;
    width: 100%;
    font-size: 12px;
}
.header .utility .join .join-item {
    display: block;
    float: left;
    height: 50px;
    line-height: 50px;
    margin-right: 20px;
}
.header .utility .join .join-item:last-of-type {
    margin-right: 0;
}
.header .utility .join .join-link {
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
}
.header .utility .join .join-link:hover {
    color: #fe1211;
}

.header .subheader-container {
    display: block;
    float: left;
    width: 100%;
    height: 100px;
    background: black;
}
.header .subheader {
    display: block;
    float: left;
    width: 100%;
    height: 100px;
}
.header .subheader .navigation-button-container {
    display: none;
}
.header .subheader .logo-container {
    display: block;
    float: left;
    width: 165px;
    height: 100px;
}
.header .subheader .logo {
    display: block;
    height: 100px;
}
.header .subheader .navigation-container {
    display: block;
    float: left;
    width: 830px;
    height: 100px;
}
.header .subheader #nav-header {
    display: block;
    float: left;
    height: 100px;
}
.header .subheader #nav-header .menu-item {
    display: block;
    float: left;
    height: 100px;
    padding-left: 35px;
    position: relative;
}
@media(min-width: 768px) {
    .header .subheader #nav-header .menu-item.mobile-only {
        display: none;
    }
}
.header .subheader #nav-header .menu-item:last-of-type {
    padding-right: 0;
}
.header .subheader #nav-header .menu-item a {
    display: block;
    float: left;
    height: 100px;
    line-height: 100px;
    color: #ababab;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    backface-visibility: hidden;
}
.header .subheader #nav-header .menu-item a:hover,
.header .subheader #nav-header .menu-item.current a {
    color: #fe1211;
}
.header .subheader #nav-header .menu-item>.sub-menu {
    display: none;
    width: 250px;
    background: black;
    padding: 0 35px 15px 35px;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 100;
}
.header .subheader #nav-header .menu-item>.sub-menu .menu-item{
    opacity: 0;
    transform: translateY(20px);
    transition: 0ms all;
}
.header .subheader #nav-header .menu-item>.sub-menu .menu-item.fade-in{
    opacity: 1;
    transform: translateY(0px);
    transition: 400ms all;
}
.header .subheader #nav-header .menu-item>.sub-menu .menu-item {
    display: block;
    float: left;
    width: 100%;
    height: auto;
    padding-left: 0;
}
.header .subheader #nav-header .menu-item>.sub-menu .menu-item a {
    display: block;
    float: left;
    width: 100%;
    height: auto;
    padding: 0 0 20px 0;
    line-height: 1.25em;
    color: #ababab;
}
.header .subheader #nav-header .menu-item>.sub-menu .menu-item a:hover {
    color: #fe1211;
}

.header .subheader .social-container {
    display: block;
    float: right;
    height: 100px;
}
.header .subheader .social {
    display: block;
    width: 100%;
    height: 100px;
}
.header .subheader .social .social-item {
    display: block;
    float: left;
    height: 100px;
    line-height: 100px;
    margin-right: 20px;
    position: relative;
}
@media(max-width: 1180px) {
    .header .subheader .social .social-item:last-of-type {
        margin-right: 0;
    }
}
.header .subheader .social .social-link {
    color: #aeaeae;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
}
.header .subheader .social .social-link:hover,
.header .subheader .social .social-link.current {
    color: #fe1211;
}
.header .subheader .social .social-menu {
    display: none;
    float: left;
    width: 385px;
    padding: 0 35px 35px 35px;
    background: black;
    position: absolute;
    left: -303px;
    top: 100px;
    z-index: 15000;
}
.header .subheader .social .social-menu .social-header-container {
    display: block;
    float: left;
    width: 100px;
}
.header .subheader .social .social-menu .social-header {
    display: block;
    float: left;
    font-size: 18px;
    color: #ababab;
    padding: 0;
    background: none;
    margin: 0;
    text-align: center;
    line-height: 50px;
}
.header .subheader .social .social-menu .social-list {
    display: block;
    float: left;
    width: 215px;
    height: 50px;
}
.header .subheader .social .social-menu .social-list .social-list-item {
    display: block;
    float: left;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #f3f3f3;
    margin-right: 5px;
}
.header .subheader .social .social-menu .social-list .social-list-item:last-of-type {
    margin-right: 0;
}
.header .subheader .social .social-menu .social-list .social-list-item .social-link {
    display: block;
    float: left;
    width: 100%;
    height: 100%;
    line-height: 50px;
    color: #000000;
    font-size: 20px;
}
.header .subheader .social .social-menu .social-list .social-list-item.linkedin .social-link:hover {
    background: #0077B5;
    color: #f3f3f3;
}
.header .subheader .social .social-menu .social-list .social-list-item.twitter .social-link:hover {
    background: #57CDFF;
    color: #f3f3f3;
}
.header .subheader .social .social-menu .social-list .social-list-item.youtube .social-link:hover {
    background: #CC181E;
    color: #f3f3f3;
}
.header .subheader .social .social-menu .social-list .social-list-item.facebook .social-link:hover {
    background: #4867AA;
    color: #f3f3f3;
}
.header .subheader .social .search-form-container {
    display: none;
    width: 100vw;
    max-width: 1200px;
    height: 100%;
    background-color: black;
    padding-left: 20px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 30000;
}
.header .subheader .social .search-form {
    display: flex;
    align-items: center;
    float: left;
    width: 100%;
    height: 100px;
}
.header .subheader .social .search-form .fa-search {
    font-size: 18px;
    color: #ababab;
}
.header .subheader .social .search-form .search-form-text {
    display: block;
    float: left;
    width: 100%;
    height: 50px;
    border: none;
    padding-left: 15px;
    font-size: 18px;
    line-height: 50px;
    background-color: transparent;
    color: white;
}
.header .subheader .social .search-form .search-form-text:focus {
    outline: none;
}
.header .subheader .social .search-form .search-form-button {
    display: block;
    float: left;
    width: auto;
    height: 40px;
    padding: 0 10px;
    background: #fe1211;
    color: white;
    line-height: 40px;
    border: none;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    transition: opacity .2s;
}
.header .subheader .social .search-form .search-form-button:focus,
.header .subheader .social .search-form .search-form-button:hover {
    background-color: #cd1017;
}
.header .subheader .social .search-form .has-text + .search-form-button {
    opacity: 1;
}
.header .subheader .social .search-form .search-form-close {
    margin-right: -7px;
    background-color: transparent;
    border: 0;
    font-size: 20px;
    color: #ababab;
    cursor: pointer;
}
.header .subheader .social .search-form .search-form-close:focus,
.header .subheader .social .search-form .search-form-close:hover {
    color: #F1242F;
}
.footer-container {
    display: block;
    float: left;
    width: 100%;
    background: black;
}
.footer-container * {
    font-family: "soleto", sans-serif;
    line-height: 1.25em;
}
.footer-container .fa {
    font-family: FontAwesome;
}
.footer {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 1050px;
    background: black;
}
.footer .specifications-container {
    padding-top: 65px;
    padding-bottom: 65px;
}
.footer .specifications-heading {
    font-size: 18px;
    font-weight: 700;
    color: #ababab;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    display: block;
}
.footer .specifications-list-container {
    text-align: center;
}
.footer .specifications-list {
    list-style: none;
    padding: 0 100px;
}
.footer .specifications-list .specification-item {
    display: inline-block;
    background: #1e1e1e;
    margin-right: 10px;
    margin-bottom: 10px;
}
.footer .specifications-list .specification-link {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #ababab;
    text-decoration: none;
    text-transform: uppercase;
    padding: 20px;
}
.footer .specifications-list .specification-link:hover {
    color: #fe1211;
}

.footer .utility-container {
    display: block;
    float: left;
    width: 60%;
}
.footer .utility {
    display: block;
    float: left;
    width: 100%;
    margin-bottom: 45px;
}
.footer .utility .nav-footer {
    display: block;
    float: left;
    width: 33.3333333%;
}
.footer .utility .menu-item-has-children {
    margin-bottom: 35px;
    float: none;
    width: 100%;
}
.footer .utility .menu-item-has-children h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.footer .utility .menu-item-has-children h6 a {
    color: #ababab;
    text-decoration: none;
}
.footer .utility .menu-item-has-children h6 a:hover {
    color: #fe1211;
}
.footer .utility .menu-item-has-children ul {
    float: none;
    width: 100%;
}
.footer .utility .menu-item-has-children .menu-item {
    font-size: 16px;
    margin-bottom: 5px;
}
.footer .utility .menu-item-has-children .menu-item a {
    font-size: 16px;
    color: #ababab;
    text-decoration: none;
}
.footer .utility .menu-item-has-children .menu-item a:hover {
    color: #fe1211;
}

.footer .summary-container {
    display: block;
    float: left;
    width: 40%;
}
.footer .summary {
    display: block;
    width: 100%;
}
.footer .summary .company-container {
    display: block;
    width: 100%;
}
.footer .summary .company {
    display: block;
    width: 100%;
}
.footer .summary .company .logo-container {
    display: block;
    width: 100%;
}
.footer .summary .company .logo {
    display: block;
    height: 31px;
}

.footer .summary .description-container {
    display: block;
    width: 100%;

}
.footer .summary .description {
    font-size: 13px;
    color: #ababab;
    margin-top: 30px;
    line-height: 1.5em;
}

.footer .summary .social-container {
    display: block;
    width: 100%;
    margin-top: 40px;
}
.footer .summary .social-header-container {
    display: block;
    float: left;
    width: 110px;
}
.footer .summary .social-header{
    display: block;
    float: left;
    width: 100%;
    font-size: 16px;
    color: #ababab;
    font-weight: 700;
    padding: 0;
    background: none;
    margin: 0;
}
.footer .summary .social {
    display: block;
    float: left;
    width: 160px;
    position: relative;
    bottom: 4px;
}
.footer .summary .social .social-item {
    display: block;
    float: left;
    width: 25%;
}
.footer .summary .social .social-item .social-link {
    color: #ababab;
    font-size: 20px;
}
.footer .summary .social .social-item.linkedin .social-link:hover {
    color: #0077B5;
}
.footer .summary .social .social-item.twitter .social-link:hover {
    color: #57CDFF;
}
.footer .summary .social .social-item.youtube .social-link:hover {
    color: #CC181E;
}
.footer .summary .social .social-item.facebook .social-link:hover {
    color: #4867AA;
}

.footer .summary .copyright-container {
    display: block;
    float: left;
    width: 100%;
    margin-top: 80px;
}
.footer .summary .security {
    float: left;
    height: 96px;
    margin-top: -24px;
    margin-right: 16px;
}
.footer .summary .copyright {
    font-size: 13px;
    font-weight: 500;
    color: #ababab;
    line-height: 1.5em;
}
.footer .summary .copyright .copyright-link {
    color: #ababab;
    text-decoration: none;
}
.footer .summary .copyright .copyright-link:hover {
    color: #fe1211;
}

.sub-footer-container {
    display: block;
    float: left;
    width: 100%;
    height: 129px;
    background: #151515;
}
.sub-footer-container * {
    font-family: "soleto", sans-serif;
    line-height: 1.25em;
}
.sub-footer-container .fa {
    font-family: FontAwesome;
}
.sub-footer {
    display: block;
    margin: auto;
    width: 100%;
    height: 129px;
    max-width: 1200px;
    background: #151515;
}
.sub-footer .project-list-container {
    display: block;
    width: 100%;
    height: 129px;
}
.sub-footer .project-list {
    display: block;
    width: 100%;
    height: 129px;
    text-align: center;
    overflow: hidden;
}
.sub-footer .project-list .project-list-item {
    display: inline-block;
    width: 25%;
    height: 129px;
    -moz-transition: all .15s ease-in-out;
    -webkit-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
.sub-footer .project-list .project-list-item:hover {
    opacity: 0.85;
}
.sub-footer .project-list .project-list-link {
    display: block;
    width: 100%;
    height: 129px;
}
.sub-footer .project-list .project-list-logo {
    display: block;
    margin: auto;
    height: 129px;
}
.share-header {
    padding: 42px 0;
}
.share-header h1 {
    font-size: 50px;
    line-height: 62px;
    font-weight: 500;
    color: #000;
    display: inline-block;
}
.share-header .share-links {
    margin-top: 20px;
    display: inline-block;
    float: right;
}
.share-header .share-links li {
    padding: 0 4px;
    font-size: 21px;
    color: #8A8A8A;
    display: inline-block;
    float: left;
}
.share-header .share-links li a {
    color: #8A8A8A;
    text-decoration: none;
    width: 50px;
    text-align: center;
    display: block;
}
.share-header .share-links li:first-child {
    padding-left: 0;
    padding-right: 46px;
}
.max-width {
    margin: auto;
    max-width: 1280px;
    padding: 0 40px;
    position: relative;
}
.content-max-width {
    margin: auto;
    max-width: 1275px;
    padding: 0 75px;
    position: relative;
}

/* Loader keyframes */
@keyframes cl-loader-rotate {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes cl-loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}
@keyframes cl-loader-color {
    100%,
    0% {
        stroke: #f1242f;
    }
}

/* FadeIn left/right/up/down small keyframes */
@keyframes fadeInLeftSmall {
    0% {
        opacity: 0;
        transform: translate3d(-5%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
.fadeInLeftSmall {
    animation-name: fadeInLeftSmall
}
@keyframes fadeInRightSmall {
    0% {
        opacity: 0;
        transform: translate3d(5%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
.fadeInRightSmall {
    animation-name: fadeInRightSmall
}
@keyframes fadeInUpSmall {
    0% {
        opacity: 0;
        transform: translate3d(0, 5%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
.fadeInUpSmall {
    animation-name: fadeInUpSmall
}
@keyframes fadeInDownSmall {
    0% {
        opacity: 0;
        transform: translate3d(0, -5%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
.fadeInDownSmall {
    animation-name: fadeInDownSmall
}

@media(max-width: 1280px) {
    .header {
        max-width: 1280px;
        padding: 0 40px;
    }
    .footer {
        max-width: 1130px;
        padding: 0 40px;
    }
    .max-width {
        max-width: 1280px;
        padding: 0 40px;
    }
    .content-max-width {
        max-width: 1275px;
        padding: 0 75px;
    }
    .header .subheader .social .search-form-container {
        max-width: none;
        right: -60px;
        padding-left: 40px;
        padding-right: 60px;
    }
}

@media(max-width: 1180px) {
    .header {
        position: relative;
    }
    .header .utility .header-one-container {
        display: none;
    }
    .header .utility .join-container {
        float: left;
    }
    .header .utility .demographics-container {
        padding-right: 100px;
    }
    .header .subheader #nav-header.faded .menu-item a {
        opacity: .25;
        -moz-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }
    .header .subheader .social-container {
        height: 50px;
        position: absolute;
        right: 40px;
        top: 0;
    }
    .header .subheader .social {
        height: 50px;
    }
    .header .subheader .social .social-item {
        height: 50px;
        line-height: 50px;
    }
    .header .subheader .social .search-form-container {
        top: 50px;
        right: -40px;
        height: 100px;
        padding-right: 40px;
    }
    .header .subheader .social .social-menu {
        width: 250px;
        padding: 25px 0 25px 35px;
        top: 50px;
        left: -169px;
    }
    .header .subheader .social .social-menu .social-header-container {
        display: none;
    }
}

@media(max-width: 1100px) {
    .header .subheader .navigation-container {
        width: 735px;
    }
    .header .subheader #nav-header .menu-item {
        padding-left: 21px;
    }
    .footer .utility .menu-item-has-children {
        padding-right: 20px;
    }
}

@media(max-width: 1023px) {
    .page-container {
        padding-top: 200px;
    }
    .page-container.nav--hidden .header-container {
        transform: translateY(-200px);
    }
    .header {
        height: 200px;
    }
    .header .subheader-container {
        height: 150px;
    }
    .header .subheader {
        height: 150px;
    }
    .header .subheader .logo-container {
        width: 100%;
        height: 100px;
    }
    .header .subheader .navigation-container {
        width: 100%;
        height: 50px;
    }
    .header .subheader #nav-header {
        height: 50px;
    }
    .header .subheader #nav-header .menu-item {
        height: 50px;
        padding-left: 15px;
    }
    .header .subheader #nav-header .menu-item:first-of-type {
        padding-left: 0;
    }
    .header .subheader #nav-header .menu-item a {
        height: 50px;
        line-height: 18px;
    }
    .header .subheader #nav-header .menu-item>.sub-menu {
        top: 50px;
    }
    .header .subheader .social .search-form-container {
        height: 150px;
    }
    .share-header .share-links li:first-child {
        padding-right: 18px;
    }
    .share-header .share-links li {
        font-size: 16px;
    }
    .share-header .share-links li a {
        width: 32px;
    }
}

@media(max-width: 1000px) {
    .footer .utility-container {
        width: 100%;
    }
    .footer .summary-container {
        width: 100%;
        padding-bottom: 65px;
    }
}

@media(max-width: 900px) {
    .sub-footer-container,
    .sub-footer,
    .sub-footer .project-list-container,
    .sub-footer .project-list {
        height: auto;
    }
    .sub-footer .project-list .project-list-item {
        width: 32.6%;
        height: 131px;
    }
}

@media(max-width: 767px) {
    body {
        position: relative;
    }
    .page-container .header-container {
        position: absolute;
        top: 0 !important; /* to override js styles */
        transform: translateY(0) !important; /* to override js styles */
    }
    .page-container {
        overflow-x: hidden;
        padding-top: 0;
    }
    .page-container--overflow-visible {
      overflow: visible;
    }
    .page-container .header-container {
        top: 0;
    }
    .navigation-shade-container {
        display: none;
        float: left;
        width: 100%;
        height: 100%;
        background: black;
        opacity: 0;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 20000000;
    }
    .mobile-navigation-container {
        display: block;
        height: 100%;
        width: 270px;
        position: absolute;
        left: -270px;
        top: 0;
        background: black;
        padding: 25px 30px 40px 30px;
        overflow: hidden;
    }
    .mobile-navigation {
        display: block;
        width: 100%;
        position: relative;
        left: -30px;
        opacity: 0;
    }
    .mobile-navigation .core-navigation-container {
        display: block;
        width: 100%;
    }
    .mobile-navigation .core-navigation {
        display: block;
        width: 100%;
        position: relative;
    }
    .mobile-navigation .core-navigation #nav-header-mobile {
        display: block;
        width: 100%;
    }
    .mobile-navigation .menu-item {
        display: block;
        width: 100%;
    }
    .mobile-navigation .menu-item:last-child {
        margin-bottom: 30px;
    }
    .mobile-navigation .menu-item a {
        display: block;
        width: 100%;
        color: #ababab;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        padding: 15px 0;
    }
    .mobile-navigation .back-navigation ~ .menu-item > a[href="#"] {
        pointer-events: none;
    }
    .mobile-navigation .menu-item a:hover {
        color: #fe1211;
    }
    .mobile-navigation .menu-item-has-children {
        position: relative;
    }
    .mobile-navigation .menu-item-has-children:after {
        position: absolute;
        right: 0;
        top: 0;
        font-family: FontAwesome;
        content: "\f105";
        font-size: 22px;
        line-height: 51px;
        color: #ababab;
    }
    .mobile-navigation #nav-header-mobile .menu-item-has-children .sub-menu {
        display: none
    }
    .mobile-navigation .secondary-navigation-container {
        position: absolute;
        left: 270px;
        top: 0;
    }
    .mobile-navigation .secondary-navigation {
        display: none;
        width: 210px;
    }
    .mobile-navigation .secondary-navigation .back-navigation {
        display: block;
        float: left;
        width: 35px;
        height: 100%;
    }
    .mobile-navigation .secondary-navigation .back-navigation .back-navigation-link {
        display: block;
        float: left;
        width: 100%;
        height: 35px;
        color: #fe1211;
        font-size: 22px;
        margin-top: 12px;
    }
    .mobile-navigation .secondary-navigation .menu-item {
        float: left;
        width: 175px;
    }
    .mobile-navigation .secondary-navigation .menu-item-has-children:after {
        display: none;
    }

    .mobile-navigation .demographics-container {
        display: block;
        float: left;
        width: 100%;
        position: relative;
    }
    .mobile-navigation .demographics .demographics-item {
        margin-bottom: 11px;
    }
    .mobile-navigation .demographics .demographics-item .demographics-link {
        color: #ababab;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 12px;
        display: block;
        margin-bottom: 11px;
        line-height: 1.25em;
    }
    .mobile-navigation .join-container {
        display: block;
        float: left;
        width: 100%;
        position: relative;
    }
    .mobile-navigation .join .join-item {
        margin-bottom: 11px;
    }
    .mobile-navigation .join .join-item .join-link {
        color: #ababab;
        text-decoration: none;
        text-transform: uppercase;
        line-height: 1em;
        font-size: 12px;
    }
    .mobile-navigation .social-container {
        display: block;
        float: left;
        width: 100%;
        position: relative;
        margin-top: 30px;
    }
    .mobile-navigation .social .social-header {
        color: #ababab;
        font-size: 12px;
        font-weight: 700;
    }
    .mobile-navigation .social .social-list {
        display: block;
        float: left;
        width: 100%;
        margin-top: 15px;
    }
    .mobile-navigation .social .social-list .social-list-item {
        display: block;
        float: left;
        margin-right: 20px;
        font-size: 22px;
    }
    .mobile-navigation .social .social-list .social-list-item.linkedin .social-link:hover {
        color: #0077B5;
    }
    .mobile-navigation .social .social-list .social-list-item.twitter .social-link:hover {
        color: #57CDFF;
    }
    .mobile-navigation .social .social-list .social-list-item.youtube .social-link:hover {
        color: #CC181E;
    }
    .mobile-navigation .social .social-list .social-list-item.facebook .social-link:hover {
        color: #4867AA;
    }
    .mobile-navigation .social .social-list .social-list-item .social-link {
        color: #ababab;
        text-decoration: none;
    }
    .header-container {
        background: black none;
    }
    .header {
        max-width: none;
        padding: 0;
        height: 50px;
    }
    .header .utility-container {
        display: none;
    }
    .header .subheader-container {
        height: 50px;
    }
    .header .subheader {
        height: 50px;
    }
    .header .subheader .navigation-button-container {
        display: block;
        float: left;
        width: 50px;
        height: 50px;
        text-align: center;
        position: relative;
        z-index: 30000;
    }
    .header .subheader .navigation-button-container .navigation-button-link {
        display: block;
        float: left;
        width: 100%;
        height: 100%;
        line-height: 50px;
        font-size: 16px;
        color: #aeaeae;
    }
    .header .subheader .navigation-button-container .navigation-button-link.open {
        color: #fe1211;
    }
    .header .subheader .logo-container {
        width: 200px;
        height: 50px;
        overflow: hidden;
    }
    .header .subheader .logo {
        height: 80px;
        position: relative;
        top: -15px;
    }
    .header .subheader .navigation-container {
        display: none;
    }
    .header .subheader #nav-header.faded .menu-item a {
        opacity: 1;
    }
    .header .subheader .social-container {
        display: block;
        float: left;
        height: 50px;
        width: 50px;
        right: 0;
    }
    .header .subheader .social {
        height: 50px;
        width: 100%;
    }
    .header .subheader .social .social-item {
        height: 50px;
        line-height: 50px;
        width: 100%;
        text-align: center;
    }
    .header .subheader .social .social-item.share,
    .header .subheader .social .social-item.rss {
        display: none;
    }
    .header .subheader .social .social-link {
        display: block;
        float: left;
        width: 100%;
        height: 100%;
        line-height: 50px;
    }
    .header .subheader .social .search-form-container {
        top: 0;
        right: 0;
        height: 50px;
        padding-right: 20px;
        padding-left: 20px;
    }
    .header .subheader .social .search-form {
        height: 50px;
    }
    .footer .specifications-container {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    .footer .specifications-heading {
        font-size: 14px;
        margin-bottom: 25px;
    }
    .footer .specifications-list {
        padding: 0 40px;
    }
    .footer .specifications-list .specification-link {
        font-size: 12px;
        padding: 10px;
    }
    .footer .specifications-list .specification-item {
        margin-right: -1px;
        margin-bottom: 3px;
    }
    .footer .utility-container {
        display: none;
    }
    .sub-footer .project-list .project-list-item {
        height: 50px;
    }
    .sub-footer .project-list .project-list-link {
        height: 100%;
    }
    .sub-footer .project-list .project-list-logo {
        height: 100%;
    }
    .footer {
        padding: 0 30px;
    }
    .footer .summary .company .logo-container {
        height: 20px;
    }
    .footer .summary .company .logo {
        height: 100%;
    }
    .footer .summary .description {
        margin-top: 20px;
        font-size: 10px;
    }
    .footer .summary .social-container {
        margin-top: 30px;
    }
    .footer .summary .social-header {
        font-size: 14px;
    }
    .footer .summary .copyright-container {
        margin-top: 50px;
    }
    .footer .summary .copyright {
        font-size: 10px;
    }
    .footer .summary .security {
        height: 64px;
        margin-top: -16px;
    }
    .footer .summary-container {
        padding-bottom: 40px;
    }
    .cl-blog-text p {
        font-family: "soleto", sans-serif;
        font-weight: 400;
        line-height: 1.75em;
        font-size: 16px;
        margin-bottom: 20px;
    }
    .cl-blog-text ul,
    .cl-blog-text ol {
        font-family: "soleto", sans-serif;
        font-weight: 400;
        line-height: 1.75em;
        font-size: 16px;
        margin-left: 30px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .content-max-width {
        padding: 0 40px;
    }
    .share-header {
        padding: 0 0 0 15px;
    }
    .share-header h1 {
        font-size: 40px;
        line-height: 40px;
        margin-top: 10px;
    }
    .share-header h1,
    .share-header .share-links {
        display: block;
        float: none;
    }
}

@media(max-width: 600px) {
    .share-header .share-links li {
        float: none;
    }
}

@media(max-width: 480px) {
    .header .subheader .social .search-form .search-form-text {
        font-size: 3.5vw;
    }
}

.cl-top-bottom-spacing {
    padding: 100px 0;
}

@media(max-width: 1130px) {
    .cl-top-bottom-spacing {
        padding: 50px 40px 60px;
    }
}

@media(max-width: 725px) {
    .cl-top-bottom-spacing {
        padding: 50px 25px 60px;
    }
}

/*************************************
COOKIEBOT PLUGIN OVERRIDES (GDPR COMPLIANCE)
**************************************/
#CybotCookiebotDialogPoweredbyLink,
#CybotCookiebotDialogBodyLevelButtonsSelectPane,
#CybotCookiebotDialogBodyContentTitle {
    display: none !important;
}
#CybotCookiebotDialog {
    box-shadow: none !important;
    padding-bottom: 4px !important;
}
#CybotCookiebotDialogBody {
    padding-right: 0 !important;
    max-width: 755px !important;
}
#CybotCookiebotDialogBodyLevelDetailsWrapper {
    border: 1px solid #cccccc !important;
    padding: 2px 0 2px 4px !important;
}
#CybotCookiebotDialogBodyContent {
    padding-left: 0 !important;
    float: left;
    max-width: calc(100% - 200px) !important;
}
#CybotCookiebotDialogBodyLevelButtons {
    margin-left: 0 !important;
    float: right !important;
    margin-right: 10px !important;
}
#CybotCookiebotDialogDetailBody {
    max-width: 755px !important;
}
a#CybotCookiebotDialogBodyLevelButtonAccept {
    background-color: #f1242f !important;
    border: 1px solid #f1242f !important;
}
a#CybotCookiebotDialogBodyLevelButtonAccept:hover {
    background-color: #cd1017 !important;
    border: 1px solid #cd1017 !important;
}
a#CybotCookiebotDialogBodyLevelButtonAccept:focus {
    outline: none !important;
}
#CybotCookiebotDialogBodyLevelButtonsTable,
a#CybotCookiebotDialogBodyLevelButtonAccept {
    margin-top: 12px !important;
}

@media(max-width: 767px) {
    #CybotCookiebotDialogBodyContent {
        max-width: 100% !important;
        float: none !important;
        padding: 12px 30px 5px 30px !important;
    }
    #CybotCookiebotDialogBodyLevelButtons {
        padding: 0 0 12px 30px !important;
        float: left !important;
    }
    #CybotCookiebotDialogBodyLevelButtonAcceptWrapper {
        padding: 0 30px 12px 0 !important;
    }
    #CybotCookiebotDialogDetail {
        padding: 0 30px 5px 30px !important;
    }
}
