@import "https://fonts.googleapis.com/css?family=Lato:400,300,300italic,700,700italic,400italic,900,900italic";

* {
    box-sizing: border-box;
}

body {
    font-family: 'Lato';
    font-weight: 400;
}

header, footer {
    background: #ddd none repeat scroll 0 0;
    padding: 100px 100px 150px;
    position: relative;
}

body > header, body > footer {
    background: #007cc3 none repeat scroll 0 0;
    color: #fff;
}

.version {
    font-size: 7vh;
    position: absolute;
    right: 100px;
    text-align: right;
    top: 100px;
    width: 40%;
}

    .version > span {
        display: block;
        font-size: 1.3vh;
        letter-spacing: 5px;
        text-transform: uppercase;
    }

.clear {
    clear: both;
}

h1 {
    font-size: 45px;
    margin: 0;
}

h2 {
    font-size: 28px;
    margin: 0;
}

h3 {
    font-size: 22px;
}

p {
    line-height: 1.4;
}

.larger {
    font-size: 18px;
}

blockquote {
    border-left: 5px solid #ccc;
    font-size: 18px;
    font-style: italic;
    margin-left: 40px;
    padding-left: 20px;
}

a {
    color: #007cc3;
    text-decoration: none !important;
}

    a.hover, a:hover {
        color: #ff5722;
        text-decoration: none !important;
    }

    a.visited {
        color: #2a3137;
        text-decoration: none;
    }

    a:focus {
        outline: 0 none;
    }

/*Buttons*/

button {
    border: 0 none;
}

.button {
    background: #007cc3 none repeat scroll 0 0;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    padding: 10px 40px;
    text-decoration: none;
    margin: 5px;
}

    .button.button-large {
        padding: 15px 60px;
        font-size: 20px;
    }

    .button:hover, button:hover {
        transform: translate;
    }

    .button:hover {
        background: #0369a4;
        text-decoration: none;
        color: #fff;
    }

.secondary-button {
    background: #ff5722;
}

    .secondary-button:hover {
        background: #f2450e;
        text-decoration: none;
    }

.tertiary-button {
    background: #ffb922;
    color: #000;
}

    .tertiary-button:hover {
        background: #f6ac0e;
        text-decoration: none;
    }

.btn {
    border: none;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    display: inline-block;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .btn:after {
        content: '';
        position: absolute;
        z-index: -1;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

.btn-2 {
    box-shadow: 0 4px #2d4059;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.btn-2a:hover {
    box-shadow: 0 2px #2d4059;
    top: 1px;
}

.btn-2a:active {
    box-shadow: 0 0 #2d4059;
    top: 3px;
}

.btn-2.secondary-button {
    box-shadow: 0 4px #e04312;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.btn-2a.secondary-button:hover {
    box-shadow: 0 2px #e04312;
    top: 1px;
}

.btn-2a.secondary-button:active {
    box-shadow: 0 0 #e04312;
    top: 3px;
}

.btn-2.tertiary-button {
    box-shadow: 0 4px #e5a00d;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.btn-2a.tertiary-button:hover {
    box-shadow: 0 2px #e5a00d;
    top: 1px;
}

.btn-2a.tertiary-button:active {
    box-shadow: 0 0 #e5a00d;
    top: 3px;
}

/*Forms*/

.pure-form input[type="text"]:hover,
.pure-form input[type="password"]:hover,
.pure-form input[type="email"]:hover,
.pure-form input[type="url"]:hover,
.pure-form input[type="date"]:hover,
.pure-form input[type="month"]:hover,
.pure-form input[type="time"]:hover,
.pure-form input[type="datetime"]:hover,
.pure-form input[type="datetime-local"]:hover,
.pure-form input[type="week"]:hover,
.pure-form input[type="number"]:hover,
.pure-form input[type="search"]:hover,
.pure-form input[type="tel"]:hover,
.pure-form input[type="color"]:hover,
.pure-form select:hover,
.pure-form textarea:hover {
    outline: 0;
    border-color: #007cc3;
}

.pure-form input[type="text"]:focus,
.pure-form input[type="password"]:focus,
.pure-form input[type="email"]:focus,
.pure-form input[type="url"]:focus,
.pure-form input[type="date"]:focus,
.pure-form input[type="month"]:focus,
.pure-form input[type="time"]:focus,
.pure-form input[type="datetime"]:focus,
.pure-form input[type="datetime-local"]:focus,
.pure-form input[type="week"]:focus,
.pure-form input[type="number"]:focus,
.pure-form input[type="search"]:focus,
.pure-form input[type="tel"]:focus,
.pure-form input[type="color"]:focus,
.pure-form select:focus,
.pure-form textarea:focus {
    outline: 0;
    border-color: #007cc3;
    box-shadow: 0px 0px 5px #2ba6ed;
}

    .pure-form input:focus:invalid,
    .pure-form textarea:focus:invalid,
    .pure-form select:focus:invalid {
        color: red;
        border-color: red;
    }

.pure-form input[type="file"]:focus:invalid:focus,
.pure-form input[type="radio"]:focus:invalid:focus,
.pure-form input[type="checkbox"]:focus:invalid:focus {
    outline-color: red;
}

.error-container, .ErrorLabel, .error-label {
    color: red;
    display: block;
    font-size: 13px;
    font-style: italic;
    margin: 3px 0;
}

.pure-form span {
    display: block;
    text-align: left;
}
/*Lists*/

.body-content ul {
    list-style: none outside none;
}

.body-content ol li ol li::before {
    content: counter(li,upper-alpha);
}

.body-content ul li::before {
    background: #007cc3 none repeat scroll 0 0;
    content: "";
    height: 10px;
    left: -18px;
    position: absolute;
    top: 7px;
    width: 10px;
    border-radius: 20px;
}

.body-content li {
    position: relative;
    line-height: 1.6;
    padding-left: 10px;
}

.body-content ul li ul li::before {
    background: #ccc none repeat scroll 0 0;
    content: "";
    height: 8px;
    left: -18px;
    position: absolute;
    top: 7px;
    width: 8px;
    border-radius: 20px;
}

.body-content ul li ul {
    margin-left: -10px;
}

    .body-content ul li ul li {
        padding-left: 0;
    }

.body-content ol {
    counter-reset: li;
    list-style: none outside none;
}

    .body-content ol li:before {
        content: counter(li);
        counter-increment: li;
        color: #333;
        font-weight: bold;
        font-size: 16px;
        color: #777;
        height: 20px;
        text-align: center;
        width: 20px;
        position: absolute;
        left: -21px;
        top: 0px;
    }

#container header {
    background: transparent;
    padding: 0;
}

#container header {
    padding: 15px;
    display: table;
    width: 100%;
}

footer {
    text-align: center;
}

.buttons li {
    width: auto;
    padding: 0;
}

header .logo {
    display: table-cell;
    width: 30%;
    vertical-align: middle;
}

    header .logo img {
        height: 118px;
        max-height: 100%;
        width: auto;
    }

header .right {
    display: table-cell;
    width: 70%;
    text-align: right;
    vertical-align: middle;
    padding: 15px;
}

.right div {
    display: inline-block;
    margin: 0px 10px;
}

.menu-btn, .search-btn {
    font-size: 18px;
    font-weight: bold;
    background: #eee;
    border-radius: 5px;
    padding: 5px 10px;
    vertical-align: middle;
    cursor: pointer;
}

section {
    padding: 40px 100px;
}

.search-btn i,
.menu-btn i {
    font-size: 28px;
    position: relative;
}

.search-btn:hover,
.menu-btn:hover {
    color: #007cc3;
}

.menu-btn i {
    margin-right: 10px;
}

nav.pushy {
    background: #2a3137;
    width: 250px;
    color: #888;
}

    nav.pushy ul {
        margin: 0;
        padding: 0;
        list-style: none outside none;
    }

    nav.pushy li {
        border-top: 1px solid #000;
    }

    nav.pushy a {
        color: #ccc;
    }

        nav.pushy a:hover {
            background: #363f47;
        }

    nav.pushy ul:first-child {
        margin: 0;
    }

    nav.pushy > ul > li:last-child {
        border-bottom: 1px solid #000;
    }

nav li.pushy-submenu.pushy-submenu-open {
    background: #363f47;
}

    nav li.pushy-submenu.pushy-submenu-open > a {
        color: #fff;
    }

nav .pushy-submenu li a {
    padding-left: 40px;
    color: #ccc;
}

nav.pushy-right {
    -webkit-transform: translate3d(250px, 0, 0);
    -ms-transform: translate3d(250px, 0, 0);
    transform: translate3d(250px, 0, 0);
}

nav.pushy-open-right #container,
nav.pushy-open-right .push {
    -webkit-transform: translate3d(-250px, 0, 0);
    -ms-transform: translate3d(-250px, 0, 0);
    transform: translate3d(-250px, 0, 0);
}

.intro-block {
    text-align: center;
    background-size: cover;
    background-position: center center;
    position: relative;
}

    .intro-block:after {
        content: '';
        width: 100%;
        height: 100%;
        background: rgba(42,49,55,0.7);
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 1;
    }

    .intro-block > * {
        z-index: 2;
        position: relative;
        color: #fff;
    }

    .intro-block h1, .intro-block p {
        text-shadow: 2px 2px 2px rgba(45,64,89,1);
    }

p {
    max-width: 800px;
    margin: 1em auto;
}

    p.larger {
        margin: 1.5em auto;
    }

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

.buttons {
    max-width: 1200px;
    margin: 0 auto;
}

    .buttons ul {
        list-style: outside none none;
        margin: 0;
        padding: 0;
    }

    .buttons li {
        display: inline-block;
        vertical-align: middle;
    }

.text-block ul {
    margin: 0 auto;
    max-width: 700px;
    text-align: left;
    width: 100%;
}

.text-block .buttons ul {
    text-align: center;
    max-width: 100%;
}

.text-block .buttons li,
.intro-block .buttons li {
    margin: 10px;
}

.promo-slider img {
    display: none;
}

.promo-slider li {
    height: 50vh;
    display: table;
    width: 100%;
}

.promo-slider {
    list-style: none outside none;
    margin: 0;
    padding: 0;
}

    .promo-slider li > div {
        width: 50%;
        display: table-cell;
        height: 100%;
        vertical-align: middle;
    }

        .promo-slider li > div.slider-img {
            width: 33%;
        }

        .promo-slider li > div.slider-info {
            width: 67%;
        }

.slider-info > p {
    max-width: 100%;
}

#container .bx-wrapper {
    margin: 0;
}

.slider-info {
    padding: 50px 90px;
    background: #2a3137;
    color: #fff;
    font-size: 120%;
}

    .slider-info.white-bg {
        background: #fff;
        color: #000;
    }

    .slider-info h3 {
        color: #007cc3;
        font-size: 45px;
        margin-top: 0;
    }

    .slider-info a {
        color: #ffb922;
    }

.slider-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.slider-left, .slider-right {
    padding: 0;
}

    .slider-left .bx-wrapper .bx-controls .bx-pager {
        bottom: 6px;
        left: 33%;
        width: 67%;
        color: #fff;
    }

    .slider-right .bx-wrapper .bx-controls .bx-pager {
        bottom: 6px;
        right: 33%;
        width: 67%;
        color: #fff;
    }

.bx-wrapper .bx-controls .bx-pager.bx-default-pager a {
    background: rgba(0,124,195,0.5);
    width: 12px;
    height: 12px;
    border-radius: 20px;
}

    .bx-wrapper .bx-controls .bx-pager.bx-default-pager a.active {
        background: rgba(0,124,195,1);
    }

.right-column .bx-wrapper .bx-pager {
    padding: 0;
}

.icon-subnav {
    text-align: center;
    padding: 40px 100px;
}

    .icon-subnav ul {
        margin: 50px auto 0;
        padding: 0;
        list-style: none outside none;
        max-width: 1200px;
        text-align: center;
    }

    .icon-subnav li {
        width: 18%;
        display: inline-block;
        vertical-align: top;
        padding: 25px;
    }

        .icon-subnav li i {
            font-size: 56px;
            width: 100px;
            height: auto;
            text-align: center;
            display: inline-block;
            vertical-align: middle;
            color: #007cc3;
        }

    .icon-subnav a {
        color: #2a3137;
        display: block;
    }

        .icon-subnav a:hover {
            color: #ff5722;
            text-decoration: none;
        }

            .icon-subnav a:hover i {
                color: #ff5722;
                text-decoration: none;
            }

.updates-bar {
    padding: 40px 100px;
}

.news-tabs, .blog-list, .social-media {
    width: 33%;
    padding-right: 20px;
    float: left;
}

.blog-list {
    padding: 0 10px;
}

    .blog-list .blog-author {
        color: #000;
        font-weight: bold;
    }

.social-media {
    padding: 0 0 0 20px;
}

.news-tabs a,
.blog-list a {
    display: block;
}

    .news-tabs a:hover,
    .blog-list a:hover {
        text-decoration: none;
    }

        .news-tabs a:hover h3,
        .news-tabs a:hover h4,
        .blog-list a:hover h3,
        .blog-list a:hover h4 {
            text-decoration: none;
        }

.news-tabs ul.tab-nav,
.help-tabs ul.tab-nav {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ccc;
}

    .news-tabs ul.tab-nav a,
    .help-tabs ul.tab-nav a {
        color: #666;
        display: block;
        outline: 0 none;
    }

        .news-tabs ul.tab-nav a:hover,
        .help-tabs ul.tab-nav a:hover {
            color: #333;
        }

    .news-tabs li,
    .help-tabs ul.tab-nav li {
        display: inline-block;
        padding: 10px 15px;
        border: 1px solid #ccc;
        position: relative;
        top: 1px;
    }

div.ui-tabs-panel {
    padding: 20px 15px;
}

.news-tabs li.ui-tabs-active,
.help-tabs ul.tab-nav li.ui-tabs-active {
    border-bottom-color: #fff;
}

.lead-item img {
    width: 100%;
    height: auto;
}

.news-tabs h3,
.news-tabs h4,
.blog-list h3,
.blog-list h4 {
    margin-bottom: 0;
    text-decoration: none;
}

.news-tabs p,
.blog-list p {
    margin-top: 0;
    color: #777;
    font-size: 14px;
}

.lead-item {
    border-bottom: 1px solid #ccc;
}

.news-tabs .ui-tabs-panel ul,
.blog-list ul {
    padding: 0;
    margin: 0;
}

.blog-list ul {
    padding: 0 15px;
}

    .news-tabs .ui-tabs-panel ul li,
    .blog-list ul li {
        display: block;
        border: 0 none;
        padding: 0;
        border-bottom: 1px solid #ccc;
    }

.update-title {
    padding: 11px 15px;
    border-bottom: 1px solid #ccc;
}

.blog-list .lead-item {
    padding: 20px 0px 0px;
    margin: 0px 15px;
}

.twitter-timeline {
    width: 100% !important;
}

#container footer {
    padding: 40px 100px;
    background: #2a3137;
    color: #fff;
}

    #container footer a {
        color: #ffb922;
    }

        #container footer a:hover {
            color: #007cc3;
        }

.footer-col {
    width: 25%;
    float: left;
    text-align: left;
}

.footer-col-middle {
    width: 50%;
    text-align: right;
}

.footer-col-right {
    text-align: right;
}

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

.footer-col ul li {
    display: block;
    line-height: 1.6;
}

.footer-col img {
    max-width: 100px;
    height: auto;
}

.social-icons {
    text-align: right;
    margin: 20px 0;
    font-size: 25px;
}

#container footer .social-icons a {
    color: #fff;
}

    #container footer .social-icons a:hover {
        color: #007cc3;
        text-decoration: none;
    }

.partner-strip {
    background: #000;
    height: auto;
    text-align: center;
    padding: 10px 0;
}

    .partner-strip ul {
        margin: 0;
        padding: 0;
        list-style: none outside none;
    }

    .partner-strip li {
        width: 10%;
        display: inline-block;
        max-width: 110px;
        padding: 10px;
    }

    .partner-strip img {
        max-width: 100%;
        height: auto;
        opacity: 0.3;
    }

    .partner-strip a:hover img {
        opacity: 0.5;
    }

.cookie-notice {
    background: #2a3137;
    padding: 7px 10px;
    font-size: 13px;
    color: #fff;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding-right: 40px;
}

    .cookie-notice a {
        color: #ffb922;
    }

span.cookie-close {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 24px;
    color: #fff;
    opacity: 0.5;
    cursor: pointer;
}

.fixed-tab {
    position: fixed;
    right: -3px;
    top: 30%;
    z-index: 1000;
    background: #ffb922;
    border-radius: 5px 5px 0 0;
    transform: rotate(-90deg);
    transform-origin: bottom right;
}

    .fixed-tab a {
        display: block;
        padding: 12px 18px 15px;
        color: #000;
    }

    .fixed-tab:hover {
        right: 0;
    }

body.search-open {
    overflow: hidden;
}
/* Overlay style */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.9);
    z-index: 2000;
}

    /* Overlay closing cross */
    .overlay .overlay-close {
        width: 80px;
        height: 80px;
        position: absolute;
        right: 20px;
        top: 20px;
        overflow: hidden;
        border: none;
        outline: none;
        z-index: 100;
        background: transparent;
    }

        .overlay .overlay-close i {
            font-size: 36px;
            color: #666;
        }

    /* Menu style */
    .overlay nav {
        text-align: center;
        position: relative;
        top: 50%;
        height: 60%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .overlay ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: inline-block;
        height: 100%;
        position: relative;
    }

        .overlay ul li {
            display: block;
            height: 20%;
            height: calc(100% / 5);
            min-height: 54px;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

            .overlay ul li a {
                font-size: 54px;
                font-weight: 300;
                display: block;
                color: #fff;
                -webkit-transition: color 0.2s;
                transition: color 0.2s;
            }

                .overlay ul li a:hover,
                .overlay ul li a:focus {
                    color: #f0f0f0;
                }

/* Effects */
.overlay-scale {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
    transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
}

    .overlay-scale.open {
        visibility: visible;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
        transition: transform 0.4s, opacity 0.4s;
    }

body.search-open .ui-autocomplete {
    z-index: 10000;
}

@media screen and (max-height: 30.5em) {
    .overlay nav {
        height: 70%;
        font-size: 34px;
    }

    .overlay ul li {
        min-height: 34px;
    }
}

.heading-block {
    text-align: center;
}

.grid-with-panels, .subnav-grid {
    text-align: center;
    padding: 60px 100px;
}

    .grid-with-panels ul, .subnav-grid ul {
        max-width: 1200px;
        margin: 50px auto 0;
        padding: 0;
        list-style: none outside none;
        position: relative;
    }

    .grid-with-panels .panel {
        display: none;
        width: 417%;
        background: #eee;
        margin-top: 15px;
        position: relative;
        border-radius: 5px;
        padding: 20px 25px;
    }

        .grid-with-panels .panel img {
            width: 25%;
            float: right;
            margin: 1em 0 1em 1em;
        }

    .grid-with-panels li:nth-of-type(4n+2) .panel {
        left: -105%;
    }

    .grid-with-panels li:nth-of-type(4n+3) .panel {
        left: -211%;
    }

    .grid-with-panels li:nth-of-type(4n+4) .panel {
        left: -317%;
    }

.panel p {
    max-width: 100%;
}

.panel *:first-child {
    margin-top: 0;
}

.grid-with-panels ul, .subnav-grid ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.grid-with-panels li, .subnav-grid li {
    width: 24%;
    display: flex;
    margin-bottom: 15px;
    padding: 0 9px;
    flex-direction: column;
}

.nav-item {
    text-align: left;
    background: #007cc3;
    height: 260px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    position: relative;
}

    .nav-item:hover, li.open .nav-item {
        background: #0369a4;
    }

.grid-with-panels .nav-item::after {
    content: '';
    background: #007cc3;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    margin-left: -10px;
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -moz-transition: bottom linear 0.2s;
    -webkit-transition: bottom linear 0.2s;
    transition: bottom linear 0.2s;
    z-index: 2;
}

.grid-with-panels li.open .nav-item::after {
    bottom: -10px;
    background: #0369a4;
}

.grid-with-panels .nav-item:hover::after {
    background: #0369a4;
}

.nav-item h2, .nav-item p {
    margin: 0;
    position: relative;
    z-index: 3;
}

.button-bar {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}

    .button-bar:after {
        content: '';
        width: 100%;
        height: 100%;
        background: rgba(42,49,55,0.7);
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 1;
    }

    .button-bar > * {
        z-index: 2;
        position: relative;
        color: #fff;
    }

    .button-bar ul {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        list-style: none outside none;
        padding: 0;
    }

    .button-bar li {
        display: inline-block;
        margin: 10px;
        vertical-align: middle;
    }

.membership-types {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.membership-block {
    width: 30%;
    text-align: center;
    display: inline-block;
    margin: 0 1.5% 40px;
    vertical-align: middle;
}

.block-info > *:first-child {
    margin-top: 0;
}

.block-info {
    background: #eee;
    padding: 20px 25px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    border-radius: 5px;
}

    .block-info::after {
        content: '';
        background: #eee;
        width: 20px;
        height: 20px;
        position: absolute;
        bottom: -10px;
        left: 50%;
        margin-left: -10px;
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .block-info li {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .block-info ul {
        margin-bottom: 25px;
        text-align: left;
    }

.subnav-thumbnails {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 100px;
}

.subnav-thumbnails-flexwrap {
    display: flex;
    flex-wrap: wrap;
}

.subnav-thumb-item {
    display: inline-block;
    width: 22.5%;
    background: #eee;
    vertical-align: middle;
    margin: 0 1% 40px;
}

img.subnav-thumb {
    max-width: 100%;
    height: auto;
    flex: 0 0 auto;
    object-fit: scale-down;
}

.subnav-item-info {
    padding: 20px 25px;
    text-align: center;
}

.listing {
    max-width: 1400px;
    margin: 0 auto;
}

img.listing-thumb {
    max-width: 200px;
    height: auto;
    float: left;
    margin-right: 25px;
}

.list-item-info {
    overflow: hidden;
}

    .list-item-info h3, .list-item-info h4 {
        margin: 0;
    }

    .list-item-info p {
        max-width: 100%;
    }

p.date {
    margin: 0;
    color: #666;
    font-style: italic;
}

.list-item {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.listing > h2 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 16px;
}

.pagination ul {
    margin: 0;
    padding: 0;
    list-style: none outside none;
}

.pagination {
    text-align: right;
}

    .pagination li {
        display: inline-block !important;
        margin: 0 5px;
        border: 0 none !important;
    }

.accordion {
    max-width: 1400px;
    margin: 0 auto;
}

    .accordion > h3,
    .accordion div.acc-header {
        background: #eee;
        padding: 20px 70px 20px 25px;
        cursor: pointer;
        position: relative;
    }

    .accordion .acc-header {
        border-radius: 5px;
        margin-bottom: 20px;
    }

        .accordion .acc-header h3 {
            color: #007cc3;
            font-size: 22px;
            font-weight: 700;
        }

        .accordion .acc-header img {
            max-width: 160px;
            margin-right: 40px;
            float: left;
        }

        .accordion > h3::after,
        .accordion .acc-header::after {
            content: '\f055';
            font-family: 'FontAwesome';
            position: absolute;
            right: 25px;
            top: 50%;
            margin-top: -18px;
            font-size: 32px;
            color: #000;
        }

        .accordion > h3.ui-state-active::after,
        .accordion .acc-header.ui-state-active::after {
            content: '\f056';
        }

        .accordion > h3:hover, .accordion .acc-header h3:hover {
            color: #007cc3;
        }

        .accordion > h3:active, .accordion > h3:focus, .accordion .acc-header:active, .accordion .acc-header:focus {
            outline: 0 none;
            border: 0 none;
        }

    .accordion div {
        padding: 20px 25px;
    }

    .accordion.accordion-with-logos {
        max-width: 1000px;
    }

.acc-header > p {
    font-size: 18px;
    margin: 0;
}

.acc-header > h3 {
    margin: 0 0 5px;
    padding: 0;
}

.accordion.accordion-with-logos div {
    padding-top: 0;
}

.accordion.accordion-with-logos .acc-header {
    padding: 50px 80px 50px 25px;
}

.two-col-layout, .two-col-layout-eca {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
}

    .two-col-layout section, .two-col-layout-eca section {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

        .two-col-layout section.left-column, .two-col-layout-eca section.left-column {
            width: 67%;
            float: left;
            padding: 0;
        }

    .two-col-layout aside.right-column, .two-col-layout-eca aside.right-column {
        width: 29%;
        float: right;
    }

.breadcrumb, .search-results-count {
    background: #eee;
    padding: 3px 0;
    font-size: 14px;
}

.search-results-count {
    padding: 3px 30px;
}

    .search-results-count .pagination {
        float: right;
        margin: 0;
    }

.search-results-result {
    float: left;
}

.breadcrumb ul {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    list-style: none outside none;
}

.breadcrumb li {
    display: inline-block;
    margin: 0;
    padding: 0 5px;
}

    .breadcrumb li:before {
        content: '\f101';
        font-family: 'FontAwesome';
        margin-right: 10px;
    }

    .breadcrumb li:first-of-type:before {
        content: '';
        margin: 0;
    }

    .breadcrumb li:first-of-type {
        padding: 0;
    }

.body-content p {
    max-width: 100%;
    line-height: 1.6;
    margin: 1.25em auto;
}

.body-content h2, .text-block h2 {
    color: #007cc3;
}

.body-content h3 {
    color: #2a3137;
}

blockquote {
    line-height: 1.6;
}

.left-column img.listing-thumb {
    max-width: 120px;
}

.left-column .subnav-thumb-item {
    width: 30%;
}

.left-column .grid-with-panels li, .left-column .subnav-grid li {
    width: 32%;
}

.left-column .grid-with-panels ul, .left-column .subnav-grid ul {
    justify-content: flex-start;
}

.left-column .grid-with-panels .panel {
    width: 315%;
}

.left-column .grid-with-panels li:nth-of-type(4n+2) .panel,
.left-column .thumbnail-grid-with-panels.grid-with-panels li:nth-of-type(4n+2) .panel {
    left: 0;
}

.left-column .grid-with-panels li:nth-of-type(4n+3) .panel,
.left-column .thumbnail-grid-with-panels.grid-with-panels li:nth-of-type(4n+3) .panel {
    left: 0;
}

.left-column .grid-with-panels li:nth-of-type(4n+4) .panel,
.left-column .thumbnail-grid-with-panels.grid-with-panels li:nth-of-type(4n+4) .panel {
    left: 0;
}

.left-column .grid-with-panels li:nth-of-type(3n+2) .panel,
.left-column .thumbnail-grid-with-panels.grid-with-panels li:nth-of-type(3n+2) .panel {
    left: -108%;
}

.left-column .grid-with-panels li:nth-of-type(3n+3) .panel,
.left-column .thumbnail-grid-with-panels.grid-with-panels li:nth-of-type(3n+3) .panel {
    left: -215%;
}

.right-column > section, .right-column > div {
    padding-top: 30px;
}

.right-column section:first-of-type {
    padding-top: 60px;
}

.right-column .button-bar {
    background-color: transparent !important;
    background-image: none;
}

    .right-column .button-bar:after {
        display: none;
    }

    .right-column .button-bar li {
        display: block;
    }

    .right-column .button-bar a.button {
        width: 100%;
    }

.right-column .subnav-grid li {
    width: 100%;
}

.right-column .subnav-grid ul {
    margin: 0;
}

.right-column .subnav-thumb-item {
    width: 100%;
    margin: 0;
}

.right-column .listing h2 {
    font-size: 20px;
    margin-bottom: 0;
}

.right-column img.listing-thumb {
    max-width: 100px;
}

.right-column img.listing-thumb {
    max-width: 100px;
    margin-right: 15px;
}

.right-column h2 {
    font-size: 20px;
}

.right-column h3 {
    font-size: 18px;
}

.right-column p.date, .right-column p.tel {
    font-size: 13px;
}

.right-column .list-item {
    margin: 0;
    padding: 15px 0;
}

.right-column .news-tabs {
    width: 100%;
    float: none;
    padding-right: 0;
}

.right-column .blog-list {
    width: 100%;
    float: none;
    padding: 30px 0 0;
}

.right-column .social-media {
    width: 100%;
    float: none;
    padding: 30px 0 0 0;
}

.right-column .news-tabs h3, .right-column .news-tabs h4, .right-column .blog-list h3, .right-column .blog-list h4 {
    margin-top: 10px;
}

.right-column .news-tabs p.date, .right-column .blog-list p.date {
    margin-bottom: 10px;
}

.right-column div.ui-tabs-panel {
    padding: 20px 15px 0;
}

.right-column .promo-slider li > div {
    width: 100%;
    display: inline-block;
    height: auto;
    vertical-align: middle;
}

.right-column .slider-right .bx-wrapper .bx-controls .bx-pager,
.right-column .slider-left .bx-wrapper .bx-controls .bx-pager {
    width: 100%;
    right: 0;
    left: 0;
}

.right-column .slider-info {
    padding: 20px;
    font-size: 80%;
}

    .right-column .slider-info h3 {
        margin-top: 0;
    }

.right-column .promo-slider li {
    height: auto;
}

.right-column .promo-slider .slider-info {
    height: auto;
}

.right-column .promo-slider .slider-img {
    height: 200px;
}

.right-column .related-links h4 {
    margin: 0;
    padding-left: 15px;
}

.news-tabs.full-width-tabs,
.help-tabs.full-width-tabs {
    max-width: 1400px;
    width: 100%;
    float: none;
    padding-right: 0;
    padding-top: 60px;
}

.news-tabs .listing {
    padding: 0;
}

    .news-tabs .listing p {
        font-size: 100%;
    }

.regional-office-info div {
    text-align: center;
    background: #007cc3;
    color: #fff;
    padding: 20px 5px;
}

.regional-office-info a {
    color: #fff;
}

.regional-office-map {
    position: relative;
    padding-bottom: 75% !important;
    height: 0;
    overflow: hidden;
    margin-top: 30px;
}

    .regional-office-map iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
    }

section.downloads, section.case-studies {
    background: #eee;
    text-align: center;
}

    section.downloads h1, section.case-studies h1 {
        margin-bottom: 50px;
    }

.grid-sizer {
    width: 23%;
}

.gutter-sizer {
    width: 2.65%;
}

figure.grid-item {
    margin: 0 0 40px;
    width: 23%;
    background: #fff;
    padding: 20px 25px 30px;
    box-shadow: 1px 1px 1px #ccc;
    text-align: center;
}

div.bar {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

section.pub-items {
    padding: 60px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.grid-item h3 {
    margin-top: 5px;
    text-align: left;
    margin-bottom: 0;
}

.grid-item span {
    font-size: 13px;
}

span.file-size {
    display: block;
    margin: 0 0 20px;
    text-align: left;
    color: #777;
    font-style: italic;
}

img.doc-cover {
    float: left;
    max-width: 100px;
    margin-right: 20px;
}

.doc-info span {
    color: #666;
    font-style: italic;
    display: block;
    margin-bottom: 5px;
}

.grid-item a.button {
    margin: 0 auto;
}

.doc-info {
    text-align: left;
    padding-bottom: 15px;
}

section.blog-items {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

section.blog-home {
    background: #eee;
}

figure.grid-item.blog-post {
    padding: 0;
}

.blog-info {
    text-align: center;
    padding: 25px;
}

    .blog-info h3 {
        text-align: center;
    }

.grid-item.blog-post a p {
    color: #000;
}

.grid-item.blog-post a .date {
    color: #666;
}

img.blog-cover {
    max-width: 100%;
    height: auto;
}

.blog-header img, .body-content img {
    max-width: 100%;
    height: auto;
}

.blog-header h1 {
    margin: 20px 0;
}

.post-info {
    background: #eee;
    padding: 15px;
}

    .post-info p {
        margin-top: 0;
    }

        .post-info p:last-child {
            margin-bottom: 0;
        }

.body-content.blog-content {
    padding-top: 30px;
    padding-bottom: 30px;
}

.right-column .update-title {
    font-size: 20px;
    font-weight: bold;
    padding-left: 0;
}

.blog-home.more-posts h1 {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 20px;
    margin-bottom: 50px;
}

section.sharethis {
    background: #eee;
    padding: 20px 25px 17px;
    text-align: right;
}

.right-column .sharethis {
    margin-top: 30px;
    text-align: center;
}

.sharethis h2 {
    text-align: left;
    float: left;
    color: #777;
}

.right-column .sharethis h2 {
    float: none;
    margin-bottom: 15px;
    text-align: center;
}

section.contact-block {
    padding: 0;
    display: table;
    width: 100%;
}

.contact-left {
    width: 50%;
    background: #eee;
    display: table-cell;
}

.contact-right {
    background: #2a3137;
    display: table-cell;
    width: 50%;
}

.contact-block > div {
    padding: 60px 100px;
}

.contact-block h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contacts-list {
    width: 100%;
    padding-top: 20px;
}

.contact {
    float: left;
    width: 50%;
    display: inline-block;
}

    .contact h4 {
        margin-bottom: 0;
    }

    .contact span {
        font-size: 32px;
        font-weight: bold;
        color: #007cc3;
    }

input[type="text"].email-extra {
    display: none !important;
}

.form-left {
    display: inline-block;
    width: 49%;
    padding-right: 10px;
}

.form-right {
    display: inline-block;
    width: 49%;
    padding-left: 10px;
}

.contact-block .pure-form legend {
    color: #fff;
}

.contact-block label {
    color: #ccc;
    font-size: 13px;
}

.contact-right h2 {
    color: #fff;
}

.contact-right input, .contact-right textarea {
    width: 100%;
}

.contact-right div {
    vertical-align: top;
    text-align: center;
}

.contact-block label {
    text-align: left;
}

#contact-text {
    height: 110px;
    margin-bottom: 10px;
}

section.welcome-block {
    padding: 0;
    width: 100%;
    display: flex;
    align-items: stretch;
    flex-direction: row;
    align-content: stretch;
}

.welcome-panel {
    width: 50%;
    float: left;
    display: flex;
    vertical-align: middle;
    flex-direction: column;
    justify-content: center;
    background: #2a3137;
    color: #fff;
    padding: 60px 100px;
}

    .welcome-panel a {
        color: #fff;
    }

.welcome-promo {
    float: left;
    width: 50%;
    display: inline-block;
    vertical-align: middle;
}

    .welcome-promo img {
        width: 100%;
        display: block;
        height: auto;
    }

ul.myeca-slider {
    padding: 0;
    margin: 0;
}

.welcome-promo .bx-pager {
    bottom: 10px !important;
}

.welcome-checkboxes ul {
    margin: 0;
    padding: 0;
    list-style: none outside none;
}

.welcome-checkboxes li {
    position: relative;
    float: left;
    width: 50%;
    font-size: 20px;
    margin-bottom: 20px;
}

    .welcome-checkboxes li:before {
        content: '\f10c';
        font-family: 'FontAwesome';
        font-size: 26px;
        margin-right: 10px;
        top: 2px;
        position: relative;
        color: #ffb922;
    }

    .welcome-checkboxes li.completed:before {
        content: '\f05d';
    }

section.myeca-tabs {
    padding: 0;
    background: #eee;
    text-align: right;
}

.myeca-tabs ul {
    margin: 0;
    padding: 0;
    list-style: none outside none;
}

.myeca-tabs li {
    display: inline-block;
    background: #007cc3;
    color: #fff;
}

.myeca-tabs a {
    padding: 15px 20px;
    display: block;
    color: #fff;
}

.myeca-tabs li:hover {
    background: #0369a4;
}

.case-studies .grid-item h3 {
    margin-bottom: 20px;
}

.case-studies a p {
    color: #000;
}

.case-studies figure.grid-item {
    height: 350px;
}

section.news-events-listings {
    max-width: 1400px;
    margin: 0 auto;
}

.news-events-listings .news-tabs.full-width-tabs {
    padding-top: 0;
}

.ne-filters {
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

    .ne-filters label {
        margin-right: 10px;
    }

    .ne-filters select {
        margin-right: 20px;
    }

.help-tabs.full-width-tabs {
    margin: 0 auto;
    max-width: 1200px;
    padding-top: 0;
}

.help-tabs .grid-with-panels {
    padding: 0;
}

.heading-block + section {
    padding-top: 0;
}

.help-panel-left {
    width: 50%;
    float: left;
    text-align: left;
}

.help-panel-right {
    width: 50%;
    float: right;
    background: #ddd;
    border-radius: 5px;
    padding: 15px 25px;
    text-align: left;
}

.help-panel-left label {
    margin-top: 15px;
}

.help-panel-left select {
    width: 90%;
}

.help-tabs .contact-block > div {
    width: 100%;
    display: block !important;
}

.help-tabs .contact-left {
    text-align: center;
}

/*new css 24/6*/

.blocker {
    z-index: 9999;
}

.modal {
    width: 100%;
    max-width: 700px;
    text-align: center;
}

    .modal h3 {
        color: #007cc3;
        margin-bottom: 0;
    }

    .modal label {
        text-align: left;
        margin-right: 20px;
        margin-top: 20px;
    }

.newsletter-first {
    padding: 20px 0;
}

.modal > div:not(.newsletter-first) {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px 0;
}

.modal input[type="text"],
.modal input[type="password"],
.modal input[type="email"],
.modal input[type="url"],
.modal input[type="date"],
.modal input[type="month"],
.modal input[type="time"],
.modal input[type="datetime"],
.modal input[type="datetime-local"],
.modal input[type="week"],
.modal input[type="number"],
.modal input[type="search"],
.modal input[type="tel"],
.modal input[type="color"],
.modal select,
.modal textarea {
    width: 100%;
}

.modal .newsletter-first input[type="text"] {
    width: 60%;
}

.modal textarea {
    min-height: 200px;
}

.modal input.button {
    margin-top: 20px;
}

.popup-box.modal {
    max-width: 500px;
}

    .popup-box.modal h2 {
        margin-bottom: 20px;
        color: #007cc3;
    }

.popup-box img {
    max-width: 100%;
    height: auto;
}

.popup-text {
    max-width: 100% !important;
    padding: 10px 0 !important;
}

.popup-box .btn {
    margin-bottom: 30px;
}

section.intro-block, section.text-block {
    position: relative;
}

    section.intro-block > img, section.text-block > img {
        position: absolute;
        top: 20px;
        right: 20px;
        max-width: 200px;
    }

.fixed-tab.tab-top {
    top: 10%;
}

.fixed-tab.dark-tab {
    background: #2a3137;
    top: 10%;
}

.fixed-tab.blue-tab {
    background: #007cc3;
}

    .fixed-tab.blue-tab a,
    .fixed-tab.dark-tab a {
        color: #fff;
    }

.detailed-subnav .subnav-thumb-item {
    width: 30%;
    margin: 50px 1.5% 0;
    padding: 15px 25px;
    border-radius: 5px;
}

.detailed-subnav img.subnav-thumb {
    max-width: 40%;
    float: left;
    margin-right: 20px;
}

.detailed-subnav .subnav-item-info {
    padding: 0;
    text-align: left;
    overflow: hidden;
}

    .detailed-subnav .subnav-item-info > *:first-child {
        margin-top: 0;
    }

.detailed-subnav h2 {
    text-align: left;
    margin: 5px 0 10px;
}

.detailed-subnav a.button {
    margin: 20px 0 15px;
}

.forgot-pw {
    display: block;
    text-align: left;
}

section.region-image-map {
    max-width: 1400px;
    margin: 0 auto;
}

.regions-map {
    width: 50%;
    float: left;
    padding: 0 100px;
    margin-left: 10%;
}

.region-links {
    width: 30%;
    float: right;
    padding: 0;
    margin-right: 10%;
}

.regions-map img, .regions-map map {
    max-width: 100%;
    height: auto;
}

.find-a-member-container,
.search-overlay-container {
    max-width: 1200px;
    width: 100%;
    margin: 100px auto 0;
    padding: 40px;
    background: rgba(255,255,255,0.8);
    box-shadow: 3px 3px 3px rgba(0,0,0,0.05);
}

    .find-a-member-container h2,
    .search-overlay-container h2 {
        margin: 0 0 20px;
    }

    .find-a-member-container .adv-toggle {
        display: block;
        margin: 20px 0;
        cursor: pointer;
    }

        .find-a-member-container .adv-toggle:after {
            content: '\f107';
            font-family: 'FontAwesome';
            font-size: 24px;
            font-weight: bold;
            color: #007cc3;
            position: relative;
            top: 3px;
            left: 5px;
        }

        .find-a-member-container .adv-toggle.open:after {
            content: '\f106';
        }

    .find-a-member-container input[type="text"] {
        width: 50%;
        margin-right: 20px;
    }

    .search-overlay-container input[type="search"] {
        width: 100%;
        margin-bottom: 30px;
    }

    .find-a-member-container label,
    .search-overlay-container label {
        margin: 0 20px 0 0;
    }

    .find-a-member-container button,
    .search-overlay-container button {
        margin: 0 50px;
        float: right;
    }

.find-a-member-overlay .form-row + .form-row {
    margin-top: 10px;
}

    .find-a-member-overlay .form-row + .form-row label {
        display: inline-block;
        width: 60px;
    }

.two-col-form-list {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
}

.advanced-search-panel > div {
    margin-bottom: 30px;
}

.two-col-form-list legend {
    -webkit-column-span: all;
    column-span: all;
    margin-bottom: 10px;
}

.overlay .pure-checkbox, .overlay .pure-radio {
    margin: 0.5em 0;
    display: inline-block;
}

.two-col-form-list .pure-checkbox, .two-col-form-list .pure-radio {
    width: 100%;
}

.member-results {
    margin: 0 auto;
    max-width: 1400px;
}

    .member-results .member-card {
        border: 1px solid #f0f0f0;
        border-radius: 5px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
        padding: 30px;
        position: relative;
        margin-bottom: 40px;
    }

.member-card > img {
    height: auto;
    max-width: 200px;
    position: absolute;
    right: 30px;
    top: 30px;
}

.member-detail {
    width: calc(100% - 250px);
}

    .member-detail > p {
        margin: 1em 0;
        max-width: 100%;
        text-align: left;
    }

.member-card-actions {
    margin: 0;
    padding: 1em 0 0;
    text-align: right;
}

.member-content {
    padding-top: 0;
}

p.distance {
    font-style: italic;
    color: #777;
    margin-top: 0;
}

.member-content .pure-form {
    background: #eee;
    border-radius: 5px;
    padding: 20px 30px;
    margin-top: 30px;
}

.member-content legend {
    font-size: 22px;
    margin-bottom: 20px;
}

.member-logo {
    margin: 0 auto;
    max-width: 250px;
    width: 100%;
    height: auto;
}

.address {
    font-size: 20px;
    margin-bottom: 5px;
}

.map-link a:before {
    content: '\f041';
    font-family: 'FontAwesome';
    color: #007cc3;
    font-size: 24px;
    margin-right: 10px;
}

.member-site a:before {
    content: '\f0c1';
    font-family: 'FontAwesome';
    color: #007cc3;
    font-size: 24px;
    margin-right: 10px;
}

section.member-details {
    padding-top: 0 !important;
    text-align: center;
}

.member-details img {
    margin-bottom: 20px;
}

.member-details p {
    margin-top: 0;
    color: #fff;
}

.member-details h3, .member-details h4, .member-details h5 {
    margin-bottom: 0;
    font-size: 1.125em;
    color: #fff;
}

.member-details .button {
    text-align: center;
}

.member-details div {
    padding: 15px 20px 30px;
    text-align: center;
    background: #007cc3;
    border-radius: 5px;
}

section.member-logo-strip {
    max-width: 1400px;
    padding-top: 0;
    margin: 0 auto;
}

.member-logo-strip ul {
    margin: 0;
    padding: 0;
    list-style: none outside none;
    text-align: center;
}

.member-logo-strip li {
    display: inline-block;
    max-width: 12%;
    padding: 10px;
    vertical-align: middle;
}

.member-logo-strip img {
    max-width: 100%;
    height: auto;
}

section.search-results-filters {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.search-item-type {
    float: left;
    text-align: center;
    width: 50px;
}

.search-item-info {
    float: left;
    margin-left: 30px;
}

.search-item-type span {
    display: block;
    font-size: 12px;
    color: #888;
    font-style: italic;
    margin-top: 3px;
}

.search-item-type i {
    font-size: 36px;
    color: #2a3137;
}

section.search-results-list {
    max-width: 1400px;
    margin: 0 auto;
}

.search-item-info h3 {
    margin-top: 0;
}

.search-item-info {
    padding-bottom: 35px;
    width: calc(100% - 80px);
}

article.search-result-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 35px;
}

.search-item-info p {
    max-width: 100%;
    margin: 0;
}

section.search-results-filters {
    padding: 25px 40px 30px;
    background: #f0f0f0;
    border-radius: 5px;
}

.cs-quote-box div {
    text-align: center;
    background: #2a3137;
    color: #fff;
    padding: 20px 5px;
    border-radius: 5px;
}

.event-info div {
    background: #eee;
    color: #000;
    text-align: left;
    padding: 20px 30px;
    border-radius: 5px;
}

.event-map {
    margin-top: 60px;
}

.event-info + .body-content {
    padding-top: 30px;
}

.event-type {
    display: inline-block;
    background: #007cc3;
    color: #fff;
    font-style: italic;
    padding: 2px 5px;
    font-size: 13px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.event-time {
    font-weight: bold;
    font-size: 18px;
    color: #2a3137;
}

.event-price {
    font-weight: bold;
    font-size: 26px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

/* updated login and register */

.modal.login-box {
    max-width: 900px;
    padding: 30px;
}

.modal > div.login-wrapper {
    max-width: 100%;
    padding: 0;
    display: table;
}

.modal div.login-overlay-left,
.modal div.login-overlay-right {
    width: 50%;
    display: table-cell;
    padding: 20px 30px 20px 0;
    border-right: 1px solid #ccc;
}

.modal div.login-overlay-right {
    border: 0 none;
    padding: 20px 0 20px 30px;
}

    .modal div.login-overlay-right p,
    .modal div.login-overlay-right ul {
        text-align: left;
    }

div.search-results-count {
    background: #fff none repeat scroll 0 0;
    font-size: 20px;
    margin: 0 auto 5px;
    max-width: 1200px;
}

.search-results-list .pagination {
    font-size: 18px;
}

@media screen and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /*IE10+ CSS styles go here */
    .thumbnail-grid-with-panels .nav-item,
    .thumbnail-grid-with-panels li {
        display: inline-block !important;
    }

    .thumbnail-grid-with-panels ul {
        display: block;
    }

    .thumbnail-grid-with-panels .nav-item {
        width: 100%;
    }

    .thumbnail-grid-with-panels li {
        vertical-align: top;
    }
}

ul.bizForm-ProgressIndicator {
    list-style: none outside none;
}

    ul.bizForm-ProgressIndicator li {
        background-color: #007cc3;
        margin: 10px;
        float: left;
        padding: 20px;
        color: #fff;
    }

        ul.bizForm-ProgressIndicator li.active {
            border: 2px solid #ffb922;
        }

/*carousel styles 16/06 */

.multi-carousel {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.carousel-item {
    border-radius: 6px;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 250px;
}

.carousel-caption .page-type-label {
    font-size: 12px;
    background: rgba(255,255,255,0.7);
    padding: 3px 6px;
    border-radius: 5px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    left: 15px;
    color: #000;
}

.carousel-caption h3 {
    font-weight: normal;
    color: #fff;
    font-size: 24px;
    margin: 0;
}

.carousel-caption .item-category {
    max-width: none;
    color: #007cc3;
    font-size: 16px;
    margin: 0;
}

.carousel-caption {
    padding: 15px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.8+100 */
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); /* IE6-9 */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-end;
    transition: background 0.2s linear;
}

.carousel-item a:hover .carousel-caption {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.5+100 */
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=0 ); /* IE6-9 */
}

.owl-theme .owl-dots .owl-dot span {
    background: #7fbde1;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #007cc3;
}

.owl-theme .owl-nav [class*="owl-"],
.owl-theme .owl-nav [class*="owl-"]:hover {
    color: transparent;
    background: transparent;
    font-size: 1px;
    position: absolute;
    top: 33%;
}

.owl-theme .owl-nav .owl-prev:after {
    content: '\f053';
    font-family: 'FontAwesome';
    color: #b7b6b6;
    opacity: 0.6;
    font-size: 36px;
}

.owl-theme .owl-nav .owl-next:before {
    content: '\f054';
    font-family: 'FontAwesome';
    color: #b7b6b6;
    opacity: 0.6;
    font-size: 36px;
}

.owl-theme .owl-nav [class*="owl-"]:hover::before,
.owl-theme .owl-nav [class*="owl-"]:hover::after {
    opacity: 1;
}

.owl-prev {
    left: -60px;
}

.owl-next {
    right: -60px;
}

.carousel-caption * {
    max-width: 100%;
}

/*countdown timer*/

.countdown-timer {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-color: #2a3137;
    position: relative;
    color: #fff;
    text-align: center;
    padding-bottom: 100px;
}

    .countdown-timer:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: #2a3137;
        opacity: 0.7;
    }

    .countdown-timer h1 {
        color: #fff;
        text-align: center;
        position: relative;
        margin-bottom: 30px;
    }

.countdown-slider {
    margin: 0;
    padding: 0;
}

    .countdown-slider li {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

.countdown-timer li > div div:nth-child(7) div span {
    font-size: 80% !important;
    opacity: 0.6 !important;
}

.countdown-timer .bx-wrapper .bx-pager,
.countdown-timer .bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: -60px;
    width: 100%;
}

.countdown-timer .bx-wrapper .bx-controls-direction a {
    color: transparent;
    text-indent: 0 !important;
    top: 67% !important;
    z-index: 9999;
    width: 0;
}

.countdown-timer .bx-wrapper .bx-prev {
    left: 0px;
}

.countdown-timer .bx-wrapper .bx-next {
    right: 0px;
}

.countdown-timer .bx-wrapper .bx-prev::after {
    position: absolute;
    left: 0px;
}

.countdown-timer .bx-wrapper .bx-next::before {
    position: absolute;
    right: 0px;
}

.countdown-timer .bx-wrapper .bx-prev::after {
    content: '\f053';
    font-family: 'FontAwesome';
    color: #b7b6b6;
    opacity: 0.6;
    font-size: 36px;
}

.countdown-timer .bx-wrapper .bx-next::before {
    content: '\f054';
    font-family: 'FontAwesome';
    color: #b7b6b6;
    opacity: 0.6;
    font-size: 36px;
}

.countdown-timer .bx-wrapper .bx-prev:hover::after,
.countdown-timer .bx-wrapper .bx-next:hover::before {
    opacity: 1;
}

.countdown-timer.ct-nobg-light {
    background-color: #eee;
}

    .countdown-timer.ct-nobg-light::before {
        content: none;
        color: #444;
    }

    .countdown-timer.ct-nobg-light h1 {
        color: #000;
    }

.ct-nobg-light .bx-wrapper .bx-controls .bx-pager.bx-default-pager a {
    background: rgba(0,0,0,0.2);
}

    .ct-nobg-light .bx-wrapper .bx-controls .bx-pager.bx-default-pager a.active {
        background: black;
    }

.left-column .countdown-timer:first-child,
.right-column .countdown-timer:first-child {
    margin-top: 30px;
}

.left-column .countdown-timer {
    padding: 30px 40px !important;
    margin-bottom: 30px;
}

    .left-column .countdown-timer h1 {
        font-size: 28px;
    }

    .left-column .countdown-timer li > div {
        width: 100% !important;
        max-width: 500px;
        height: 100px !important;
        column-count: 4;
    }

        .left-column .countdown-timer li > div > div {
            width: 100% !important;
            text-align: center;
            height: 50px !important;
            line-height: 50px !important;
            vertical-align: top !important;
        }

            .left-column .countdown-timer li > div > div:nth-of-type(2n+2) {
                height: 30px !important;
            }

            .left-column .countdown-timer li > div > div > div {
                width: 100% !important;
                height: 50px !important;
                line-height: 50px !important;
                vertical-align: top !important;
            }

        .left-column .countdown-timer li > div div {
            position: static !important;
            display: inline-block;
        }

            .left-column .countdown-timer li > div div div span {
                font-size: 30px !important;
                line-height: 50px !important;
                vertical-align: top !important;
            }
            /*numbers*/
            .left-column .countdown-timer li > div div:nth-child(7) div span {
                font-size: 24px !important;
            }

            .left-column .countdown-timer li > div div span {
                font-size: 12px !important;
                vertical-align: top !important;
                line-height: 30px !important;
            }
    /*labels*/
    .left-column .countdown-timer .bx-wrapper .bx-prev::after {
        position: absolute;
        left: -10px;
        font-size: 30px;
        top: 0;
    }

    .left-column .countdown-timer .bx-wrapper .bx-next::before {
        position: absolute;
        right: -10px;
        font-size: 30px;
    }

    .left-column .countdown-timer .bx-wrapper .bx-controls-direction a {
        top: 40%;
    }

    .left-column .countdown-timer .bx-wrapper .bx-pager, .countdown-timer .bx-wrapper .bx-controls-auto {
        bottom: -10px;
    }

.right-column .countdown-timer {
    padding: 30px 40px !important;
    margin-bottom: 30px;
}

    .right-column .countdown-timer h1 {
        font-size: 20px;
    }

    .right-column .countdown-timer li > div {
        width: 100% !important;
        height: 95px !important;
        column-count: 4;
    }

        .right-column .countdown-timer li > div > div {
            width: 100% !important;
            text-align: center;
            height: 50px !important;
            line-height: 50px !important;
            vertical-align: top !important;
        }

            .right-column .countdown-timer li > div > div:nth-of-type(2n+2) {
                height: 30px !important;
                line-height: 30px !important;
            }

            .right-column .countdown-timer li > div > div > div {
                width: 100% !important;
                height: 50px !important;
                line-height: 50px !important;
                vertical-align: top !important;
            }

        .right-column .countdown-timer li > div div {
            position: static !important;
            display: inline-block;
        }

            .right-column .countdown-timer li > div div div span {
                font-size: 20px !important;
                line-height: 50px !important;
                vertical-align: top !important;
            }
            /*numbers*/
            .right-column .countdown-timer li > div div:nth-child(7) div span {
                font-size: 16px !important;
            }

            .right-column .countdown-timer li > div div span {
                font-size: 10px !important;
                vertical-align: top !important;
                line-height: 30px !important;
            }
    /*labels*/
    .right-column .countdown-timer .bx-wrapper .bx-prev::after {
        position: absolute;
        left: -30px;
        font-size: 30px;
        top: 0;
    }

    .right-column .countdown-timer .bx-wrapper .bx-next::before {
        position: absolute;
        right: -30px;
        font-size: 30px;
    }

    .right-column .countdown-timer .bx-wrapper .bx-controls-direction a {
        top: 50%;
    }

    .right-column .countdown-timer .bx-wrapper .bx-pager, .countdown-timer .bx-wrapper .bx-controls-auto {
        bottom: -10px;
    }

@media (max-width: 991px) {
    .left-column .countdown-timer li > div {
        max-width: none;
    }

    .left-column .countdown-timer .bx-wrapper .bx-prev::after {
        left: -30px;
    }

    .left-column .countdown-timer .bx-wrapper .bx-next::before {
        right: -30px;
    }

    .right-column .countdown-timer li > div {
        width: 100% !important;
        height: 200px !important;
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .right-column .countdown-timer h1 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .countdown-timer {
        padding: 30px 40px !important;
    }

        .countdown-timer h1 {
            font-size: 28px;
        }

        .countdown-timer li > div {
            width: 100% !important;
            height: 100px !important;
            column-count: 4;
        }

            .countdown-timer li > div > div {
                width: 100% !important;
                text-align: center;
                height: 50px !important;
                line-height: 50px !important;
                vertical-align: top !important;
            }

                .countdown-timer li > div > div:nth-of-type(2n+2) {
                    height: 30px !important;
                }

                .countdown-timer li > div > div > div {
                    width: 100% !important;
                    height: 50px !important;
                    line-height: 50px !important;
                    vertical-align: top !important;
                }

            .countdown-timer li > div div {
                position: static !important;
                display: inline-block;
            }

                .countdown-timer li > div div div span {
                    font-size: 30px !important;
                    line-height: 50px !important;
                    vertical-align: top !important;
                }
                /*numbers*/
                .countdown-timer li > div div:nth-child(7) div span {
                    font-size: 24px !important;
                }

                .countdown-timer li > div div span {
                    font-size: 12px !important;
                    vertical-align: top !important;
                    line-height: 30px !important;
                }
        /*labels*/
        .countdown-timer .bx-wrapper .bx-prev::after {
            position: absolute;
            left: -30px;
            font-size: 30px;
        }

        .countdown-timer .bx-wrapper .bx-next::before {
            position: absolute;
            right: -30px;
            font-size: 30px;
        }

        .countdown-timer .bx-wrapper .bx-controls-direction a {
            top: 50%;
        }

        .countdown-timer .bx-wrapper .bx-pager, .countdown-timer .bx-wrapper .bx-controls-auto {
            bottom: -10px;
        }

    .right-column .countdown-timer h1 {
        font-size: 20px;
    }

    .right-column .countdown-timer li > div {
        width: 100% !important;
        height: 350px !important;
        column-count: 1;
    }
}

@media (max-width: 600px) {
    .right-column .countdown-timer h1 {
        font-size: 28px;
    }

    .right-column .countdown-timer li > div {
        width: 100% !important;
        height: 100px !important;
        column-count: 4;
    }

        .right-column .countdown-timer li > div div div span {
            font-size: 30px !important;
        }
        /*numbers*/
        .right-column .countdown-timer li > div div:nth-child(7) div span {
            font-size: 24px !important;
        }

        .right-column .countdown-timer li > div div span {
            font-size: 12px !important;
        }
}

@media (max-width: 480px) {
    .countdown-timer li > div div div span,
    .right-column .countdown-timer li > div div div span,
    .left-column .countdown-timer li > div div div span {
        font-size: 20px !important;
    }

    .countdown-timer li > div div:nth-child(7) div span,
    .left-column .countdown-timer li > div div:nth-child(7) div span,
    .right-column .countdown-timer li > div div:nth-child(7) div span {
        font-size: 16px !important;
    }

    .countdown-timer li > div div span,
    .right-column .countdown-timer li > div div span,
    .left-column .countdown-timer li > div div span {
        font-size: 10px !important;
    }
}

@media (max-width: 400px) {
    .left-column .countdown-timer li > div,
    .right-column .countdown-timer li > div {
        width: 100% !important;
        height: 200px !important;
        column-count: 2;
    }

    .left-column .countdown-timer h1,
    .right-column .countdown-timer h1 {
        font-size: 20px;
    }
}

/*new slider*/

.fw-slider-left li .fw-image-hover:hover {
    cursor: pointer;
}

.full-width-slider {
    padding: 0 !important;
    position: relative;
    /*height: 33vw;*/
    overflow: hidden;
    margin: 30px 0;
}

.slider-text {
    visibility: hidden;
}

    .slider-text.active-slide {
        visibility: visible;
    }

.full-width-slider ul {
    margin: 0;
}

.full-width-slider .fw-slider-left .slider-text {
    position: absolute;
    bottom: 5vw;
    left: 4vw;
    padding: 40px;
    color: #fff;
    max-width: 40%;
}

.full-width-slider .fw-slider-right .slider-text {
    position: absolute;
    bottom: 5vw;
    right: 4vw;
    padding: 40px;
    color: #fff;
    max-width: 40%;
}

.full-width-slider .fw-slider-dark .slider-text {
    background: rgba(42,49,55,0.75);
}

.full-width-slider .fw-slider-blue .slider-text {
    background: rgba(0,124,195,0.75);
}

.full-width-slider .fw-slider-white .slider-text {
    background: rgba(255,255,255,0.75);
    color: #000;
}

.full-width-slider .slider-text h2 {
    font-size: 45px;
}

.full-width-slider .slider-text p {
    font-size: 19px;
}

.full-width-slider .slider-text.text-right {
    text-align: right;
}

.full-width-slider .bx-wrapper .bx-controls-direction a {
    color: transparent;
    text-indent: 0 !important;
    top: 50% !important;
    z-index: 9999;
}

.full-width-slider .bx-wrapper .bx-prev {
    left: 20px;
    background: none;
}

.full-width-slider .bx-wrapper .bx-next {
    right: 20px;
    background: none;
}

.full-width-slider .bx-wrapper .bx-prev::after {
    position: absolute;
    left: 0px;
}

.full-width-slider .bx-wrapper .bx-next::before {
    position: absolute;
    right: 0px;
}

.full-width-slider .bx-wrapper .bx-pager {
    bottom: 20px;
}

.full-width-slider .bx-wrapper .bx-prev::after {
    content: '\f053';
    font-family: 'FontAwesome';
    color: #b7b6b6;
    opacity: 0.6;
    font-size: 36px;
}

.full-width-slider .bx-wrapper .bx-next::before {
    content: '\f054';
    font-family: 'FontAwesome';
    color: #b7b6b6;
    opacity: 0.6;
    font-size: 36px;
}

.full-width-slider .bx-wrapper .bx-prev:hover::after,
.full-width-slider .bx-wrapper .bx-next:hover::before {
    opacity: 1;
}

.slider-text .button + .button {
    margin-left: 10px;
}

/* New Partner Strip*/

.partner-strip {
    background: #fff;
    height: auto;
    text-align: center;
    padding: 10px 100px;
}

    .partner-strip div.partner-carousel {
        height: 140px;
    }

        .partner-strip div.partner-carousel div.owl-item {
            width: auto;
            max-height: 90px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .partner-strip div.partner-carousel div.owl-item a {
                display: block;
                max-height: 90px;
            }

            .partner-strip div.partner-carousel div.owl-item img {
                filter: grayscale(1);
                opacity: 0.6;
                display: inline;
                max-height: 90px;
                width: auto !important;
                max-width: 120px !important;
            }

            .partner-strip div.partner-carousel div.owl-item a:hover img {
                opacity: 0.8;
            }

    .partner-strip .owl-stage-outer, .partner-strip .owl-stage, .partner-strip .owl-item {
        height: 100% !important;
    }

    .partner-strip .owl-carousel .owl-stage-outer {
        padding-top: 50px;
    }

/*align heading and carousel*/
.partner-strip-heading {
    margin: 0;
    width: 130px;
    font-size: 18px;
    text-align: left;
    padding-top: 50px;
    color: #2a3137;
}

.partner-strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

    .partner-strip div.partner-carousel {
        width: calc(100% - 140px);
    }

    /* Tooltip container */
    .partner-strip .tooltip {
        position: relative;
        display: inline-block;
    }

        /* Tooltip text */
        .partner-strip .tooltip .tooltiptext {
            visibility: hidden;
            width: 120px;
            background-color: #007cc3;
            color: #fff;
            text-align: center;
            padding: 5px 0;
            border-radius: 6px;
            opacity: 0;
            transition: opacity 1s;
            /* Position the tooltip text - see examples below! */
            position: absolute;
            z-index: 1;
            width: 140px;
            bottom: calc(100% + 10px);
            left: 50%;
            margin-left: -70px; /* Use half of the width (120/2 = 60), to center the tooltip */
            font-size: 11px;
        }

        /* Show the tooltip text when you mouse over the tooltip container */
        .partner-strip .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }

        .partner-strip .tooltip .tooltiptext::after {
            content: " ";
            position: absolute;
            top: 100%; /* At the bottom of the tooltip */
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #007cc3 transparent transparent transparent;
        }

@media (max-width: 1600px) {
    .full-width-slider .fw-slider-left .slider-text {
        left: 5vw;
        padding: 25px;
        max-width: 50%;
    }

    .full-width-slider .fw-slider-right .slider-text {
        right: 5vw;
        padding: 25px;
        max-width: 50%;
    }

    .full-width-slider .slider-text h2 {
        font-size: 42px;
    }

    .full-width-slider .slider-text p {
        font-size: 17px;
    }
}

@media (max-width: 1024px) {
    .full-width-slider .fw-slider-left .slider-text {
        left: 6vw;
        padding: 20px;
        max-width: 40%;
    }

    .full-width-slider .fw-slider-right .slider-text {
        right: 6vw;
        padding: 20px;
        max-width: 40%;
    }

    .full-width-slider .slider-text h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .full-width-slider .bx-wrapper .bx-prev::after,
    .full-width-slider .bx-wrapper .bx-next::before {
        font-size: 24px;
    }

    .full-width-slider .bx-wrapper .bx-pager {
        display: none;
    }

    .full-width-slider .bx-wrapper .bx-controls .bx-pager.bx-default-pager a {
        width: 10px;
        height: 10px;
    }

    .full-width-slider .fw-slider-right .slider-text,
    .full-width-slider .fw-slider-left .slider-text {
        font-size: 70%;
        max-width: 50%;
        bottom: 5vw;
    }

        .full-width-slider .fw-slider-right .slider-text h2,
        .full-width-slider .fw-slider-left .slider-text h2 {
            font-size: 24px;
        }

        .full-width-slider .fw-slider-right .slider-text .button,
        .full-width-slider .fw-slider-left .slider-text .button {
            padding: 8px 15px;
        }

    .full-width-slider .bx-wrapper .bx-prev {
        left: 10px;
        background: none;
    }

    .full-width-slider .bx-wrapper .bx-next {
        right: 10px;
        background: none;
    }

    .full-width-slider .slider-text p {
        display: none;
    }
}

@media (max-width: 767px) {
    .full-width-slider .fw-slider-right .slider-text,
    .full-width-slider .fw-slider-left .slider-text {
        font-size: 70%;
        max-width: 50%;
        padding: 20px;
        bottom: 0;
        top: 0;
    }

    .full-width-slider .fw-slider-right .slider-text {
        right: 0;
        padding-right: 40px;
    }

    .full-width-slider .fw-slider-left .slider-text {
        left: 0;
        padding-left: 40px;
    }

    .full-width-slider .slider-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

        .full-width-slider .slider-text.text-right {
            align-items: flex-end;
        }

    .full-width-slider .fw-slider-right .slider-text h2,
    .full-width-slider .fw-slider-left .slider-text h2 {
        font-size: 20px;
    }
}

@media (max-width: 500px) {
    .full-width-slider .fw-slider-right .slider-text h2,
    .full-width-slider .fw-slider-left .slider-text h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .full-width-slider .fw-slider-right .slider-text,
    .full-width-slider .fw-slider-left .slider-text {
        max-width: 60%;
    }

    .full-width-slider .slider-text .button {
        background: transparent;
        padding: 0 !important;
        box-shadow: none;
    }

    .full-width-slider .fw-slider-dark .slider-text .button {
        color: #ff5722;
    }

    .full-width-slider .fw-slider-blue .slider-text .button {
        color: #ffb922;
    }

    .full-width-slider .fw-slider-white .slider-text .button {
        color: #007cc3;
    }
}

/*video on section block css*/

.intro-block .video-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
}

.intro-block video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS styles go here */
    .intro-block video {
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
        position: absolute;
        top: -25%;
    }
}

/*podcast styling ECA-412*/

.podcast-archive-listing .subnav-thumb-item {
    flex-basis: 30%;
    margin: 0 5% 40px 0;
    display: block;
    text-align: left;
}

    .podcast-archive-listing .subnav-thumb-item:nth-of-type(3n+4) {
        margin-right: 0;
    }

.right-column .podcast-archive-listing .subnav-thumb-item {
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 20px;
}

.subnav-thumbnails.podcast-archive-listing {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.podcast-archive-listing .subnav-item-info {
    text-align: left;
}

    .podcast-archive-listing .subnav-item-info h2 {
        font-size: 20px;
        color: #333;
    }

    .podcast-archive-listing .subnav-item-info p {
        font-size: 14px;
    }

.right-column .subnav-thumbnails.podcast-archive-listing > h3 {
    margin-top: 0;
}

.podcast-archive-listing .podcast-thumb {
    position: relative;
    display: block;
}

.podcast-archive-listing i {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 56px;
    color: #fff;
    background: #007cc3;
    border-radius: 100px;
    width: 46px;
    height: 46px;
    line-height: 46px;
}

.podcast-archive-listing a:hover i {
    color: #fff;
    background: #ff5722;
}

.podcast-type {
    display: inline-block;
    background: #ffb922;
    color: #000;
    font-style: italic;
    padding: 2px 5px;
    font-size: 13px;
    border-radius: 5px;
    margin-bottom: 15px;
    float: right;
}

.body-content .podcast-type {
    float: none;
}

.featured-podcast-info .podcast-type {
    display: inline-block;
    background: #ffb922;
    color: #000;
    font-style: italic;
    padding: 2px 5px;
    font-size: 13px;
    border-radius: 5px;
    margin-bottom: 15px;
    float: left;
}

.featured-podcast-thumb {
    width: 22vw;
}

.podcast-listing-featured-podcast {
    flex-basis: 100%;
    margin-bottom: 40px;
    background: #eee;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    padding: 20px 30px;
}

.featured-podcast-info {
    width: calc(100% - 22vw);
    text-align: left;
    padding-left: 30px;
    padding-top: 20px;
    position: relative;
}

    .featured-podcast-info h2 {
        margin: 10px 0;
        font-size: 42px;
        color: #000;
    }

    .featured-podcast-info h3 {
        margin: 5px 0 15px;
        font-size: 20px;
        color: #007cc3;
    }

    .featured-podcast-info span {
        font-size: 12px;
        background: #007cc3;
        color: #fff;
        padding: 3px 5px;
        border-radius: 5px;
    }

.latest-episode a {
    border-top: 2px solid #ccc;
    padding-top: 15px;
    width: 100%;
    display: flex;
    color: #000;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

.podcast-archive-listing .featured-podcast-info i {
    font-size: 72px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    bottom: 0;
    right: 0;
}

.latest-episode a:hover h4 {
    color: #007cc3;
}

.latest-episode a:hover i {
    font-size: 56px;
    color: #007cc3;
    margin-right: 15px;
    background: transparent;
}

.latest-episode div {
    flex-basis: calc(100% - 80px);
}

.latest-episode h4 {
    margin: 5px 0;
    font-size: 18px;
}

.podcast-player-container {
    padding-top: 60px;
}

section.intro-block.image-block img {
    position: static;
    max-width: 100%;
    height: auto;
    display: block;
}

section.intro-block.image-block {
    padding: 0;
}

/*podlove player*/
.podlovewebplayer_wrapper {
    border: 0 solid #0369a4 !important;
    background: #0369a4 !important;
    font-family: 'Lato', Arial, sans-serif !important;
}

    .podlovewebplayer_wrapper * {
        font-family: 'Lato', Arial, sans-serif !important;
    }

    .podlovewebplayer_wrapper .podlovewebplayer_controlbox {
        background: #2a3137 !important;
        border-left: 3px #2a3137 solid !important;
        border-right: 3px #2a3137 solid !important;
    }

    .podlovewebplayer_wrapper .podlovewebplayer_top, .podlovewebplayer_wrapper .podlovewebplayer_meta,
    .podlovewebplayer_wrapper .mejs-container .mejs-controls {
        background: #0369a4 !important;
    }

.podlovewebplayer_meta .coverart {
    display: none !important;
}

.podlovewebplayer_meta .subtitle {
    margin-left: 0 !important;
}

.podlovewebplayer_meta h3.episodetitle {
    padding-top: 20px !important;
    font-size: 18px !important;
}

@media only screen and (max-width: 768px) {
    .podcast-archive-listing .subnav-thumb-item {
        flex-basis: 47.5%;
    }

        .podcast-archive-listing .subnav-thumb-item:nth-of-type(3n+4) {
            margin-right: 5%;
        }

        .podcast-archive-listing .subnav-thumb-item:nth-of-type(2n+3) {
            margin-right: 0 !important;
        }

    .featured-podcast-thumb {
        display: none;
    }

    .featured-podcast-info {
        width: 100%;
        padding: 0;
    }

        .featured-podcast-info h2 {
            font-size: 28px;
        }

        .featured-podcast-info h3 {
            font-size: 16px;
        }
}

@media only screen and (max-width: 480px) {
    .podcast-archive-listing .subnav-thumb-item {
        flex-basis: 100%;
        border-right: 0 none;
    }

    .podcast-archive-listing .subnav-thumb-item {
        margin-right: 0 !important;
    }
}

/*double column layout*/

#container.eca-microsite .double-column-layout,
.double-column-layout {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    padding: 30px 0;
}

#container.eca-microsite .double-column-layout-col,
.double-column-layout-col {
    width: 46%;
}

    #container.eca-microsite .double-column-layout-col > * + *,
    .double-column-layout-col > * + * {
        margin-top: 40px;
    }

#container.eca-microsite .video-container,
.video-container {
    position: relative;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

    .embed-responsive::before {
        display: block;
        content: "";
        padding-top: 56.25%;
    }

    .embed-responsive .embed-responsive-item,
    .embed-responsive embed,
    .embed-responsive iframe,
    .embed-responsive object,
    .embed-responsive video {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

#container.eca-microsite img,
.double-column-layout img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 768px) {
    #container.eca-microsite .double-column-layout,
    .double-column-layout {
        flex-direction: column;
    }

    #container.eca-microsite .double-column-layout-col,
    .double-column-layout-col {
        width: 100%;
        padding-bottom: 30px;
    }
}

.microsite-carousel .carousel-caption h4 {
    color: #fff;
    text-align: center;
    text-shadow: 0 0 2px rgba(0,0,0,0.8);
    font-size: 18px;
    padding: 0 30px;
    margin: 0;
}

.microsite-carousel .carousel-caption {
    justify-content: center;
}

.microsite-carousel .owl-item {
    padding: 25px 10px;
}

    .microsite-carousel .owl-item.center {
        padding: 0;
    }

        .microsite-carousel .owl-item.center .carousel-item {
            min-height: 300px;
        }

.microsite-carousel.owl-theme .owl-nav [class*="owl-"], .microsite-carousel.owl-theme .owl-nav [class*="owl-"]:hover {
    top: 42%;
}

/*image gallery*/
section.image-gallery h2 {
    text-align: center;
    margin-bottom: 40px;
}

.left-column section.image-gallery h2 {
    margin-bottom: 20px;
}

.right-column section.image-gallery h2 {
    margin-bottom: 0;
}

.gallery-item-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}

.right-column section.gallery-item-list {
    padding-top: 0;
}

.image-gallery-item {
    width: 23%;
    display: inline-block;
    background: #eee;
    padding: 20px;
    margin: 10px 1%;
}

.left-column .image-gallery-item {
    width: 31%;
}

.right-column .image-gallery-item {
    width: 100%;
    margin: 10px 0;
}

.image-gallery-image {
    width: 100%;
    height: 200px;
}

.image-gallery-item img {
    height: 200px;
    width: 100%;
    object-fit: contain;
    display: block;
}

.image-gallery-item a {
    display: block;
}

.image-gallery-caption {
    text-align: center;
    padding-top: 20px;
}

    .image-gallery-caption p {
        margin: 0;
    }

.featherlight .featherlight-content {
    border-radius: 8px;
    box-shadow: 0 0 10px #000;
    overflow: visible;
}

.featherlight .featherlight-close-icon {
    color: transparent;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAABGdBTUEAANjr9RwUqgAAACBjSFJNAABtmAAAc44AAPJxAACDbAAAg7sAANTIAAAx7AAAGbyeiMU/AAAG7ElEQVR42mJkwA8YoZjBwcGB6fPnz4w/fvxg/PnzJ2N6ejoLFxcX47Rp036B5Dk4OP7z8vL+P3DgwD+o3v9QjBUABBALHguZoJhZXV2dVUNDgxNIcwEtZnn27Nl/ZmZmQRYWFmag5c90dHQY5OXl/z98+PDn1atXv79+/foPUN9fIP4HxRgOAAggRhyWMoOwqKgoq6GhIZe3t7eYrq6uHBDb8/Pz27Gysloga/jz588FYGicPn/+/OapU6deOnXq1GdgqPwCOuA31AF/0S0HCCB0xAQNBU4FBQWB0NBQublz59oADV37Hw28ePHi74MHD/6ii3/8+HEFMGQUgQ6WEhQU5AeZBTWTCdkigABC9ylIAZeMjIxQTEyMysaNG/3+/v37AGTgr1+//s2cOfOXm5vbN6Caz8jY1NT0a29v76/v37//g6q9sHfv3khjY2M5YAgJgsyEmg0PYYAAQreUk4+PT8jd3V1l1apVgUAzfoIM2rlz5x9gHH5BtxAdA9PB1zNnzvyB+R6oLxoopgC1nBPZcoAAgiFQnLIDMb+enp5iV1eXBzDeHoI0z58//xcwIX0mZCkMg9S2trb+hFk+ffr0QCkpKVmQ2VA7QHYxAgQQzLesQMwjIiIilZWVZfPu3bstMJ+SYikyBmUzkBnA9HEMyNcCYgmQHVC7mAACCJagOEBBbGdnp7lgwYJEkIavX7/+BcY1SvAaGRl9tba2xohjMTGxL8nJyT+AWQsuxsbG9vnp06e/QWYdPHiwHmiWKlBcCGQXyNcAAQSzmBuoSQqYim3u37+/EKR48uTJv5ANB+bVr7Dga2xs/AkTV1JS+gq0AJyoQIkPWU9aWtoPkPibN2/2A/l6QCwJ9TULQADB4hcY//xKXl5eHt++fbsAUmxhYYHiM1DiAsr9R7ZcVVUVbikIdHd3/0TWIyws/AWYVsByAgICdkAxRSAWAGI2gACClV7C4uLiOv7+/lEgRZ8+ffqLLd6ABck3ZMuB6uCWrlu37je29HDx4kVwQisvL88FFqkaQDERUHADBBAomBl5eHiYgQmLE1hSgQQZgIUD1lJm69atf4HR8R1YKoH5QIPAWWP9+vV/gOI/gHkeQw+wGAXTwAJJ5t+/f/BUDRBA4NIEKMDMyMjICtQIiniG379/4yza7t69+//Lly8oDrty5co/bJaCAEwcZCkwwTJDLWYCCCCwxcDgY3z16hXDnTt3voP4EhISWA0BFgZMwNqHExh3jMiG1tbWsgHjnA2bHmAeBtdWwOL1MycnJ7wAAQggBmi+kgIW/OaKiorJwOLuFShO0LMSMPF9AUYBSpz6+vqixHlOTs4P9MIEWHaDsxSwYMoE2mEGFJcG5SKAAGJCqjv/AbPUn8ePH98ACQQHB6NUmZqamkzABIgSp5s3bwbHORCA1QDLAWZkPc7OzszA8oHl5cuXVy5duvQBGIXwWgoggGA+FgO6xkBNTS28r69vDrT2+Y1cIMDyJchX6KkXVEmAshd6KB06dAic94EO3AzkBwGxPhCLg8ptgACCZyeQp9jZ2b2AmsuAefM8tnxJCk5ISPgOLTKfAdNEOVDMA2QHLDsBBBC8AAFlbmCLwlZISCg5JSVlJizeQAaQaimoWAUFK0g/sGGwHiiWCMS2yAUIQAAxI7c4gEmeFZi4OJ48ecLMzc39CRiEmgEBASxA/QzA8vYvAxEgNjaWZc2aNezAsprp2LFjp4FpZRdQ+AkQvwLij0AMSoC/AQIIXklAC3AVUBoBxmE8sPXQAiyvN8J8fuPGjR/h4eHf0eMdhkENhOPHj8OT+NGjR88BxZuBOA5kJtRseCUBEECMSI0AdmgBDooDaaDl8sASTSkyMlKzpqZGU1paGlS7MABLrX83b978A6zwwakTmE0YgIkSnHpBfGCV+gxYh98qKSk5CeTeAxVeQPwUiN8AMSjxgdLNX4AAYkRqCLBAXcMHtVwSaLkMMMHJAvOq9IQJE9R8fHxElJWV1bEF8aNHj+7t27fvLTDlXwXGLyhoH0OD+DnU0k/QYAa1QP8BBBAjWsuSFWo5LzRYxKFYAljqiAHzqxCwIBEwMTERBdZeoOYMA7Bl+RFYEbwB5oS3IA9D4/IFEL+E4nfQ6IDFLTgvAwQQI5ZmLRtSsINSuyA0uwlBUyQPMPWD20/AKo8ByP4DTJTfgRgUjB+gFoEc8R6amGDB+wu5mQsQQIxYmrdMUJ+zQTM6NzQEeKGO4UJqOzFADQMZ/A1qCSzBfQXi71ALfyM17sEAIIAY8fQiWKAYFgIwzIbWTv4HjbdfUAf8RPLhH1icojfoAQKIEU8bG9kRyF0aRiz6YP0k5C4LsmUY9TtAADEyEA+IVfufGEUAAQYABejinPr4dLEAAAAASUVORK5CYII=');
    top: -9px;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    right: -12px;
}

.featherlight .featherlight-content iframe {
    width: 800px;
    height: 450px;
    margin: 20px;
}

.featherlight .featherlight-content .caption {
    padding: 15px 15px 0;
    background: #fff;
    bottom: 20px;
    position: relative;
    text-align: center;
}

.PagerControl {
    text-align: center;
}

@media only screen and (max-width:1200px) {
    .image-gallery-item {
        width: 31%;
    }
}

@media only screen and (max-width:1023px) {
    .featherlight .featherlight-content iframe {
        width: 600px;
        height: 350px;
    }
}

@media only screen and (max-width: 767px) {
    .featherlight .featherlight-content iframe {
        width: 500px;
        height: 250px;
    }
}

@media only screen and (max-width: 600px) {
    .gallery-item-list {
        padding: 0 !important;
    }

    .image-gallery-image, .image-gallery-item img {
        height: 145px;
    }

    .featherlight .featherlight-content iframe {
        width: 400px;
        height: 225px;
    }

    .featherlight .featherlight-content .caption {
        background: transparent;
        bottom: 0;
    }
}

@media only screen and (max-width:480px) {
    .image-gallery-item, .left-column .image-gallery-item {
        width: 48%;
        margin: 2px 1%;
        padding: 10px;
    }

        .image-gallery-image, .image-gallery-item img {
            height: 100px;
        }

    .right-column .image-gallery-item {
        margin: 2px 0;
    }

    .right-column section.image-gallery h2 {
        margin-bottom: 15px;
    }

    .image-gallery-caption p {
        font-size: 13px;
    }

    .featherlight .featherlight-content iframe {
        width: 100%;
        height: 240px;
        margin: 0;
    }
}

/*Edge object fit fixes*/

@supports (-ms-accelerator:true) {
    /* IE Edge 12+ CSS */
    .intro-block .video-container {
        overflow: hidden;
    }

    .intro-block video {
        height: auto !important;
        left: 50%;
        object-fit: none;
        top: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
    }
}

@supports (-ms-ime-align:auto) {
    /* IE Edge 16+ CSS */
    .intro-block .video-container {
        overflow: hidden;
    }

    .intro-block video {
        height: auto !important;
        left: 50%;
        object-fit: none;
        top: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
    }
}

.locationsblock {
    display: flex;
    flex-direction: column;
}

.locationsblock-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.locationsblock-inner {
    display: none;
}

    .locationsblock-inner.__active {
        display: block;
    }

.locationsblock-map {
    width: 100%;
    height: 400px;
}

.locationsblock-content {
    position: relative;
    margin: 35px 15px;
}

    .locationsblock-content.__button {
        padding-left: 80px;
    }

.locationsblock-listtitle {
    color: #007cc3;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 2em;
}

.locationsblock-titles {
    margin-top: 20px;
}

.locationsblock-title {
    transition: all 300ms;
    display: flex;
    align-items: center;
    font-weight: bold;
}

    .locationsblock-title.__single {
        margin: 0;
        font-size: 1.6em;
    }

        .locationsblock-title.__single:hover,
        .locationsblock-title.__single:focus {
            color: inherit;
            cursor: default;
        }

    .locationsblock-title:hover,
    .locationsblock-title:focus {
        color: #ff5722;
        cursor: pointer;
    }

    .locationsblock-title:not(:last-child) {
        margin-bottom: 5px;
    }

.locationsblock-img {
    width: 100%;
    display: block;
    height: auto;
    max-width: 100%;
    border: none;
}

.locationsblock-back {
    position: absolute;
    top: 5px;
    left: 0;
}

.roundbuttons-button {
    width: 51px;
    height: 51px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

    .roundbuttons-button.__left {
        padding: 1px 2px 0 0;
        margin-right: 17px;
    }

.ring {
    position: absolute;
    width: 51px;
    height: 51px;
    top: 0;
    left: 0;
    transform: rotate(-135deg);
    transition: all 0.2s cubic-bezier(0.45, 0, 0.14, 1.03);
}

    .ring svg circle {
        stroke-dashoffset: 282%;
        stroke-dasharray: 282%;
        transition: all 0.2s cubic-bezier(0.45, 0, 0.14, 1.03);
    }

    .ring.__faint {
        opacity: 0.31;
    }

        .ring.__faint svg circle {
            stroke-dashoffset: 0%;
        }

.locationsblock-subtitle {
    color: #007cc3;
    opacity: 0.77;
    font-size: 1.1rem;
}

.locationsblock-details {
    margin-top: 30px;
}

.locationsblock-detail {
    opacity: 0.77;
    display: flex;
    align-items: center;
    transition: all 300ms;
}

    .locationsblock-detail:not(:last-child) {
        margin-bottom: 6px;
    }

    .locationsblock-detail span {
        font-weight: bold;
        flex: 0 0 60px;
    }

.locationsblock-button {
    margin-top: 40px;
}

@media(min-width:576px) {
    .locationsblock-content {
        margin: 35px;
    }
}

@media(min-width:768px) {
    .locationsblock-content {
        margin: 65px 60px;
    }

    .locationsblock-titles {
        max-height: 600px;
    }

    .locationsblock-map {
        height: 500px;
    }
}

@media(max-width:992px) {
    .locationsblock-titles {
        overflow-y: scroll;
    }
}

@media(min-width:992px) {
    .locationsblock {
        flex-direction: row;
    }

    .locationsblock-wrap {
        flex: 0 0 566px;
    }

    .locationsblock-content {
        padding-left: 40px;
    }

    .locationsblock-title:not(:last-child) {
        margin-bottom: 10px;
    }

    .locationsblock-button {
        margin-top: 50px;
    }

    .locationsblock-map {
        height: 800px;
    }
}