/*
Theme Name: The Peoples Bank
Theme URI: http://bramblettgrp.com
Author: Bramblett Group
Author URI: http://bramblettgrp.com
Description: Responsive website theme for The Peoples Bank.
Version: 2.1.2
License: GNU General Public License
License URI: https://www.gnu.org/licenses/gpl.html
*/

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.hidden {
    display: none;
}

.nav-bar {
    height: 4rem;
    width: 100%;
    position: fixed;
    background-color: #1b1e4d;
    top: 46px;
    margin: 0;
    display: block;
    z-index: 50;
}

    .nav-bar::before {
        content: "";
        display: block;
        position: absolute;
        bottom: 100%;
        left: 0;
        background-color: #1b1e4d;
        height: 200px;
        width: 100%;
        z-index: 20;
    }

@media only screen and (min-width: 57rem) {
    .nav-bar {
        height: 9rem;
        position: relative;
        top: auto;
    }

        .nav-bar::before {
            display: none;
        }
}

.nav-bar__logo {
    height: 100%;
    max-width: 200px;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .5rem;
    padding-left: 1rem;
}

.nav-bar__logo-source {
    /*height: 100%;*/
    width: 100%;
}

@media only screen and (min-width: 57rem) {
    .nav-bar__logo {
        -ms-flex-preferred-size: 300px;
        flex-basis: 300px;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 1;
        flex-shrink: 1;
        max-width: none;
        margin: 0 auto;
        width: 100%;
    }
}

.nav-bar__content {
    background-color: #1b1e4d;
    height: 100%;
    width: 100%;
}

@media only screen and (min-width: 57rem) {
    .nav-bar__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 9rem;
        max-width: 70rem;
        margin: 0 auto;
    }
}

.nav-bar__column {
    height: 100%;
}

.nav-bar__column--second {
    height: auto;
}

@media only screen and (min-width: 57rem) {
    .nav-bar__column:first-child {
        margin-right: 1rem;
    }

    .nav-bar__column--second {
        -ms-flex-preferred-size: 300px;
        flex-basis: 300px;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 1;
        flex-shrink: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        margin-right: 0;
        margin-left: auto;
        padding: 1rem;
        -webkit-box-flex: 2;
        -ms-flex-positive: 2;
        flex-grow: 2;
        flex-shrink: 1;
    }
}

.nav-bar__cta {
    display: block;
    /*position: fixed;*/
    top: 64px;
    left: 0;
    width: 100%;
}

.nav-bar__cta-btn {
    display: block;
    background-color: #f5831f;
    padding: .7rem 1rem;
    color: #ffffff;
    font-family: "IdealSans-Semibold", "Arial";
    width: auto;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

@media (prefers-reduced-motion) {
    .nav-bar__cta-btn {
        display: block;
        background-color: #f5831f;
        padding: .7rem 1rem;
        color: #ffffff;
        font-family: "IdealSans-Semibold", "Arial";
        width: auto;
        text-align: center;
        text-transform: uppercase;
    }
}

.nav-bar__cta-btn:hover {
    background-color: #ffffff;
    color: #f5831f;
}

@media only screen and (min-width: 57rem) {
    .nav-bar__cta {
        display: block;
        height: 50%;
        padding-right: 1rem;
        position: static;
        top: auto;
        left: auto;
        width: auto;
    }

    .nav-bar__cta-btn {
        display: inline-block;
        background-color: #f5831f;
        padding: .7rem 1rem;
        color: #1b1e4d;
        font-family: "IdealSans-SemiBold", "Arial";
        width: auto;
        text-align: center;
        text-transform: uppercase;
        -webkit-transition: all .2s ease-out;
        transition: all .2s ease-out;
    }

    @media (prefers-reduced-motion) {
        .nav-bar__cta-btn {
            display: inline-block;
            background-color: #f5831f;
            padding: .7rem 1rem;
            color: #1b1e4d;
            font-family: "IdealSans-SemiBold", "Arial";
            width: auto;
            text-align: center;
            text-transform: uppercase;
        }
    }

    .nav-bar__cta-btn:hover {
        background-color: #ffffff;
        color: #1b1e4d;
    }
}

.nav-bar__list {
    position: absolute;
    top: 6rem;
    left: 0;
    height: 400px;
    overflow: auto;
    width: 100%;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: -1;
    color: #ffffff;
    background-color: #1b1e4d;
    padding: .5rem;
    -webkit-transition: -webkit-transform .2s ease-out;
    transition: -webkit-transform .2s ease-out;
    transition: transform .2s ease-out;
    transition: transform .2s ease-out, -webkit-transform .2s ease-out;
    list-style: none;
}

@media (prefers-reduced-motion) {
    .nav-bar__list {
        position: absolute;
        top: 4rem;
        left: 0;
        height: 400px;
        overflow: auto;
        width: 100%;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        z-index: -1;
        color: #ffffff;
        background-color: #1b1e4d;
        padding: .5rem;
        list-style: none;
    }
}

.nav-bar__list--active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

@media only screen and (min-width: 57rem) {
    .nav-bar__list {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        position: relative;
        top: auto;
        left: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        z-index: 0;
        width: auto;
        height: 75%;
        margin-right: 0;
        margin-left: auto;
        padding: 0;
        overflow: visible;
    }
}

@media only screen and (min-width: 57rem) {
    .nav-bar__list-item {
        position: relative;
    }

        .nav-bar__list-item::before {
            content: "";
            display: block;
            position: absolute;
            right: 0;
            top: 50%;
            color: #1b1e4d;
            background-color: #ffffff;
            width: 1px;
            height: 1rem;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }

        .nav-bar__list-item:last-child::before {
            display: none;
        }
}

.nav-bar__list-item--dropdown {
    position: relative;
    font-family: "IdealSans-Book", "Arial";
    color: #ffffff;
    background-color: #1b1e4d;
    cursor: pointer;
    white-space: nowrap;
}

    .nav-bar__list-item--dropdown:hover .nav-bar__dropdown-list,
    .nav-bar__list-item--dropdown:focus-within .nav-bar__dropdown-list {
        display: block;
    }

.nav-bar__dropdown-text {
    padding: 1rem;
    padding-left: .5rem;
    color: #ffffff;
    background-color: #1b1e4d;
    display: block;
}

    .nav-bar__dropdown-text:focus + .nav-bar__dropdown-list {
        display: block;
    }

@media only screen and (min-width: 57rem) {
    .nav-bar__dropdown-text {
        padding: 1rem;
    }
}

.nav-bar__dropdown-text:hover {
    text-decoration: underline;
}

.nav-bar__dropdown-text::after {
    content: "";
    display: inline-block;
    position: relative;
    top: 50%;
    left: auto;
    width: 6px;
    height: 6px;
    border-right: solid 2px #f5831f;
    border-bottom: solid 2px #f5831f;
    -webkit-transform: translateY(-40%) rotate(45deg);
    transform: translateY(-40%) rotate(45deg);
    margin: 0 .5rem;
}

.nav-bar__btn {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 50px;
    height: 50px;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    outline: 0;
    cursor: pointer;
    background-color: #1b1e4d;
    border: none;
}

@media only screen and (min-width: 57rem) {
    .nav-bar__btn {
        display: none;
    }
}

.nav-bar__btn-ui {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
    width: 2rem;
    height: 2px;
    top: 50%;
    left: 50%;
    -webkit-transition: -webkit-transform .2s ease-out;
    transition: -webkit-transform .2s ease-out;
    transition: transform .2s ease-out;
    transition: transform .2s ease-out, -webkit-transform .2s ease-out;
    display: block;
    border-radius: 1px;
    background: #fff;
    position: absolute;
}

@media (prefers-reduced-motion) {
    .nav-bar__btn-ui {
        -webkit-transform: translate(-50%, -50%) rotate(0);
        transform: translate(-50%, -50%) rotate(0);
        width: 2rem;
        height: 2px;
        top: 50%;
        left: 50%;
        display: block;
        border-radius: 1px;
        background: #fff;
        position: absolute;
    }
}

.nav-bar__btn-ui::before {
    -webkit-transform: translateY(-10px) rotate(0);
    transform: translateY(-10px) rotate(0);
}

.nav-bar__btn-ui::after {
    -webkit-transform: translateY(10px) rotate(0);
    transform: translateY(10px) rotate(0);
}

.nav-bar__btn-ui::after,
.nav-bar__btn-ui::before {
    content: "";
    -webkit-transition: -webkit-transform .2s ease-out;
    transition: -webkit-transform .2s ease-out;
    transition: transform .2s ease-out;
    transition: transform .2s ease-out, -webkit-transform .2s ease-out;
    display: block;
    border-radius: 1px;
    background: #fff;
    position: absolute;
    height: 2px;
    width: 100%;
}

@media (prefers-reduced-motion) {
    .nav-bar__btn-ui::after,
    .nav-bar__btn-ui::before {
        content: "";
        display: block;
        border-radius: 1px;
        background: #fff;
        position: absolute;
        height: 2px;
        width: 100%;
    }
}

.nav-bar__btn-ui--active {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

    .nav-bar__btn-ui--active::before,
    .nav-bar__btn-ui--active::after {
        -webkit-transform: translateY(0) rotate(-90deg);
        transform: translateY(0) rotate(-90deg);
    }

.nav-bar__link {
    display: block;
    padding: 1rem;
    padding-left: .5rem;
    font-family: "IdealSans-Book", "Arial";
    color: #ffffff;
    background-color: #1b1e4d;
    position: relative;
    white-space: nowrap;
}

    .nav-bar__link:hover {
        text-decoration: underline;
    }

@media only screen and (min-width: 57rem) {
    .nav-bar__link {
        padding: 1rem;
    }
}

.nav-bar__dropdown-list {
    position: relative;
    top: 100%;
    left: 0;
    width: 110%;
    background-color: #1b1e4d;
    color: #ffffff;
    list-style: none;
    z-index: 10;
    display: block;
}

@media only screen and (min-width: 57rem) {
    .nav-bar__dropdown-list {
        position: absolute;
        display: none;
        padding-top: 1rem;
    }
}

.nav-bar__dropdown-list-link {
    display: block;
    padding: 1rem;
    color: #ffffff;
    background-color: #1b1e4d;
}

    .nav-bar__dropdown-list-link:hover {
        text-decoration: underline;
    }

.header {
    max-width: 70rem;
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding-top: 105px;
}

@media only screen and (min-width: 912px) {
    .header {
        padding-top: 140px;
    }
}

.header__image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    overflow: hidden;
}

@media only screen and (min-width: 900px) {
    .header__image {
        padding-bottom: 538px;
    }
}

.header__image-source {
    position: absolute;
    height: auto;
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media only screen and (min-width: 960px) {
    .header__image-source {
        top: 0;
        transform: translate(-50%, 0);
    }
}

.header__title {
    font-size: 2rem;
    background-color: #f5831f;
    font-family: "IdealSans-Medium", "Arial";
    color: #1b1e4d;
    padding: 1rem;
    margin: 0;
}

@media only screen and (min-width: 57rem) {
    .header__title {
        font-size: 3rem;
    }
}

@media only screen and (min-width: 57rem) {
    .header__title--inset {
        position: absolute;
        bottom: 2rem;
        left: 0;
        font-size: 3rem;
        padding: 2rem;
    }
}

.header__desc {
    background-color: #f5831f;
    color: #fff;
    font-family: "IdealSans-Book", "Arial";
}

.header__desc-content {
    padding: 1rem;
    background-color: #f5831f;
    color: #1b1e4d;
}


/*.header__desc-content p {
    color: #1b1e4d;
}*/

.header__desc-content--font-lg {
    font-size: 1.2rem;
}

.header__desc-content-title {
    font-family: "IdealSans-Semibold", "Arial";
    text-transform: uppercase;
}

.header__desc-content-text {
    font-family: "IdealSans-Book", "Arial";
    color: #fff;
}

    .header__desc-content-text p {
        padding-bottom: 0;
        color: #fff;
    }

@media only screen and (min-width: 700px) {
    .header__desc-content-text p {
        margin-bottom: 1rem;
    }
}

.header__desc-content-column {
    padding: 1rem;
}

.header__desc-content--home {
    background-color: #1b1e4d;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media only screen and (min-width: 700px) {
    .header__desc-content--home {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.header__desc--centered {
    text-align: center;
    color: #ffffff;
}

.header__desc-address {
    display: block;
    padding: 1rem;
    font-style: normal;
    color: #1b1e4d;
}

.section {
    padding: 2rem 1rem 0;
}

.section--no-top-pad {
    padding-top: 0;
}

.section__title {
    font-family: "IdealSans-Medium", "Arial";
    font-size: 2rem;
    text-align: center;
    color: #1b1e4d;
    max-width: 70rem;
    margin: 0 auto;
    display: block;
    padding-bottom: 3rem;
}

@media only screen and (min-width: 50rem) {
    .section__title {
        font-size: 3rem;
    }
}

.section__title--column {
    color: #f5831f;
    display: block;
    padding-left: 0;
    padding-bottom: 1rem;
    text-align: left;
}

@media only screen and (min-width: 50rem) {
    .section__title--column {
        font-size: 2rem;
    }
}

.section__desc {
    font-family: "IdealSans-Semibold", "Arial";
    font-size: 1rem;
    text-align: center;
    color: #231f20;
    max-width: 70rem;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.section__content {
    max-width: 70rem;
    margin: 0 auto;
}

.section__content--two-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    background-color: #1b1e4d;
}

.section__content--gray {
    background-color: #f1f2f2;
}

    .section__content--gray .section__title--column {
        color: #1b1e4d;
    }

.section__content-cta {
    max-width: 150px;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.section__image {
    width: 100%;
    position: relative;
}

.section__image-source {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: 'object-fit: cover; object-position: center;';
}

.section__column {
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    position: relative;
}

.section__column--second {
    padding: 2rem;
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.section__sub-title {
    font-family: "IdealSans-Semibold", "Arial";
    text-transform: uppercase;
    color: #ffffff;
}

.section__sub-text {
    font-family: "IdealSans-Book", "Arial";
    margin-bottom: 1rem;
    color: #ffffff;
}

.map {
    max-width: 70rem;
    margin: 0 auto;
}

.map__container {
    width: 100%;
    height: 0;
    padding-bottom: 250px;
    position: relative;
    overflow: hidden;
}

.map__source {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: auto;
    width: 100%;
}

.inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 57rem;
    margin: 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (min-width: 682px) {
    .inline {
        margin-bottom: 2rem;
    }
}

.inline__image {
    height: 320px;
    -ms-flex-preferred-size: 250px;
    flex-basis: 250px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.inline__image-source {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: 'object-fit: cover; object-position: center;';
}

.inline__image-source--person {
    -o-object-position: top;
    object-position: top;
    font-family: 'object-fit: cover; object-position: top;';
}

@media only screen and (min-width: 682px) {
    .inline__image--second-at-lg {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

.inline__content {
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px;
    background-color: #1b1e4d;
    min-height: 200px;
    color: #ffffff;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding: 2rem;
    text-align: center;
}

@media only screen and (min-width: 682px) {
    .inline__content {
        text-align: left;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

.inline__content--vert-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.inline__content-title {
    font-size: 1.125rem;
    font-family: "IdealSans-Semibold", "Arial";
    margin: 0;
    text-transform: uppercase;
}

.inline__content-text {
    font-family: "IdealSans-Book", "Arial";
    font-size: 1rem;
}

.inline__content-address {
    font-style: normal;
    font-family: "IdealSans-Book", "Arial";
    font-size: 1rem;
    margin-top: 1rem;
}

.inline__content-address--phone {
    color: #ffffff;
}

    .inline__content-address--phone:hover {
        text-decoration: underline;
    }

.inline__content-phone {
    font-style: normal;
    font-family: "IdealSans-Book", "Arial";
    font-size: 1rem;
    padding-top: 1rem;
}

.inline__content-cta {
    display: block;
    width: 150px;
    margin: 0 auto;
    text-align: center;
    margin-top: 1rem;
    color: #ffffff;
}

.inline__bio {
    color: #ffffff;
    font-family: "IdealSans-Book", "Arial";
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.inline__name {
    text-transform: uppercase;
    font-family: "IdealSans-Semibold", "Arial";
}

.vertical-list {
    list-style: none;
    margin-top: 30px;
}

.vertical-list__item {
    margin-bottom: 2rem;
}

    .vertical-list__item:last-child {
        margin-bottom: 0;
    }

.graphic-link {
    background-color: #f5831f;
    padding: 1rem;
}

@media only screen and (min-width: 40rem) {
    .graphic-link {
        background-color: transparent;
        position: relative;
    }
}

.graphic-link__image {
    display: none;
}

.graphic-link__image-source {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: 'object-fit: cover; object-position: center;';
}

@media only screen and (min-width: 40rem) {
    .graphic-link__image {
        display: block;
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: absolute;
        z-index: -1;
    }
}

.graphic-link__content {
    position: relative;
}

@media only screen and (min-width: 40rem) {
    .graphic-link__content {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

.graphic-link__link {
    display: block;
    color: #ffffff;
    display: block;
    position: relative;
}

@media only screen and (min-width: 40rem) {
    .graphic-link__link {
        background-color: transparent;
        z-index: 3;
        height: 0;
        width: 100%;
        padding-bottom: 100%;
    }

        .graphic-link__link::before {
            content: "";
            display: block;
            background-color: rgba(150, 150, 150, 0.5);
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }
}

.graphic-link__title {
    font-family: "IdealSans-Medium", "Arial";
    font-size: 1.625rem;
    position: relative;
    text-align: center;
    padding-right: 10px;
    text-transform: uppercase;
}

@media only screen and (min-width: 40rem) {
    .graphic-link__title {
        min-height: 62px;
    }
}

.graphic-link__title::before {
    content: "";
    display: block;
    height: 10px;
    width: 10px;
    border-right: solid 4px #ffffff;
    border-top: solid 4px #ffffff;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media only screen and (min-width: 40rem) {
    .graphic-link__title {
        z-index: 2;
        padding: 0;
    }

        .graphic-link__title::before {
            display: none;
        }
}

.graphic-link__cta {
    display: none;
}

@media only screen and (min-width: 40rem) {
    .graphic-link__cta {
        display: block;
        width: 150px;
        margin: 0 auto;
        text-align: center;
        margin-top: 1rem;
        position: relative;
        z-index: 2;
    }
}

@media only screen and (min-width: 40rem) {
    .graphic-link {
        padding: 0;
    }
}

.info-card {
    background-color: #f1f2f2;
    padding: 1rem;
}

@media only screen and (min-width: 50rem) {
    .info-card {
        padding: 2rem;
    }
}

.info-card__title {
    color: #1b1e4d;
    font-family: "IdealSans-Medium", "Arial";
    font-size: 2rem;
    padding-bottom: 1rem;
}

.info-card__content {
    color: #231f20;
    font-family: "IdealSans-Book", "Arial";
}

.info-card__content--column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.info-card__content ul {
    list-style: none;
}

    .info-card__content ul > li {
        padding: .5rem;
        padding-left: 1rem;
        position: relative;
    }

.info-card__content ol > li {
    padding: .5rem;
    padding-left: 1rem;
    position: relative;
    margin-left: 15px;
}

.info-card__content ul > li::before {
    content: "-";
    display: inline;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.info-card__image {
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    max-width: 400px;
}

    .info-card__image::before {
        content: "";
        display: block;
        position: relative;
        height: 0;
        width: 100%;
        top: 0;
        left: 0;
        padding-bottom: 100%;
    }

.info-card__image-source {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
}

.info-card__text {
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding: 1rem;
}

.info-card__address {
    font-style: normal;
}

.info-card__address-link {
    color: inherit;
}

    .info-card__address-link:hover {
        text-decoration: underline;
    }

.table {
    border-collapse: collapse;
    margin: 2rem auto;
}

.table__heading {
    padding: 1rem;
}

.table__row {
    border: solid 1px transparent;
}

    .table__row:nth-child(odd) {
        background-color: #ffffff;
    }

.table__data {
    border: solid 1px transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: "IdealSans-Book", "Arial";
    padding: 1rem;
}

    .table__data:first-child {
        max-width: 200px;
    }

    .table__data:not(:first-child) {
        text-align: center;
    }

.table__data--bold {
    padding: 0;
    font-family: "IdealSans-Semibold", "Arial";
}

.definition-list__term {
    font-family: "IdealSans-Semibold", "Arial";
}

.definition-list__definition {
    font-family: "IdealSans-Book", "Arial";
}

.definition-list__disclaimer {
    padding-left: 1rem;
    position: relative;
}

    .definition-list__disclaimer::before {
        content: "-";
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.definition-list__group {
    margin-bottom: 1rem;
}

.legal-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.legal-grid__image {
    -ms-flex-preferred-size: 200px;
    flex-basis: 200px;
    width: 200px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 200px;
    display: block;
}

    .legal-grid__image:hover .legal-grid__image-source {
        transform: translate(-50%, -50%) scale(1.05);
    }

    .legal-grid__image::before {
        content: "";
        display: block;
        height: 0;
        width: 100%;
        padding-bottom: 100%;
    }

.legal-grid__image-source {
    position: absolute;
    padding: 2rem;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    transition: transform .3s ease-out;
}

@media (prefers-reduced-motion) {
    .legal-grid__image-source {
        position: absolute;
        padding: 2rem;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
        height: auto;
    }
}

.bullet-list {
    list-style: none;
}

.bullet-list__item {
    padding: .5rem;
    padding-left: 1rem;
    position: relative;
}

    .bullet-list__item::before {
        content: "-";
        display: inline;
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.horizontal-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

@media only screen and (min-width: 40rem) {
    .horizontal-list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media only screen and (min-width: 980px) {
    .horizontal-list {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

.horizontal-list__item {
    width: 100%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    margin: .5rem 0;
}

@media only screen and (min-width: 40rem) {
    .horizontal-list__item {
        margin: 2rem;
        margin-top: 1rem;
        max-width: none;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -ms-flex-negative: 1;
        flex-shrink: 1;
        -ms-flex-preferred-size: 200px;
        flex-basis: 200px;
    }
}

@media only screen and (min-width: 980px) {
    .horizontal-list__item {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 230px;
        flex-basis: 230px;
    }
}

.btn-link {
    background-color: #f5831f;
    font-family: "IdealSans-Black", "Arial";
    font-size: 1rem;
    padding: .5rem;
    font-size: 1.25rem;
    display: block;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    cursor: pointer;
    color: #1b1e4d;
    text-decoration: underline;
}

@media (prefers-reduced-motion) {
    .btn-link {
        background-color: #f5831f;
        font-family: "IdealSans-Black", "Arial";
        font-size: 1rem;
        padding: .5rem;
        font-size: 1.25rem;
        display: block;
        cursor: pointer;
        color: #1b1e4d;
        text-decoration: underline;
    }
}

.btn-link:hover {
    background-color: #ffffff;
    color: #1b1e4d;
}

.accordion__title {
    background-color: #1b1e4d;
    color: #ffffff;
    font-family: "IdealSans-Medium", "Arial";
    font-size: 1.125rem;
    padding: 1rem;
    cursor: pointer;
    position: relative;
}

    .accordion__title::before,
    .accordion__title::after {
        content: "";
        display: block;
        background-color: #ffffff;
        width: 25px;
        height: 5px;
        position: absolute;
        top: 1.5rem;
        right: 1rem;
        -webkit-transition: -webkit-transform .3s ease-out;
        transition: -webkit-transform .3s ease-out;
        transition: transform .3s ease-out;
        transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    }

@media (prefers-reduced-motion) {
    .accordion__title::before,
    .accordion__title::after {
        content: "";
        display: block;
        background-color: #ffffff;
        width: 25px;
        height: 5px;
        position: absolute;
        top: 1.5rem;
        right: 1rem;
    }
}

.accordion__title::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.accordion__title--active::before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.accordion__group {
    margin-bottom: 2rem;
}

.accordion__content {
    background-color: #f1f2f2;
    color: #231f20;
    font-family: "IdealSans-Book", "Arial";
    font-size: 1rem;
    padding: 1rem;
    display: none;
}

.footer {
    width: 100%;
    background-color: #1b1e4d;
    position: relative;
    padding: 1rem;
    margin-top: 6rem;
}

    .footer::before {
        content: "";
        display: block;
        width: 100%;
        height: 2rem;
        background-color: #f5831f;
        bottom: 100%;
        left: 0;
        position: absolute;
        z-index: 0;
    }

.footer__logo {
    display: block;
    max-width: 250px;
    margin: 1rem auto;
}

.footer__logo-source {
    width: 100%;
    height: auto;
    display: block;
}

.footer__nav {
    display: block;
    list-style: none;
    text-align: center;
    color: #ffffff;
    margin: 2rem 0;
}

@media only screen and (min-width: 40rem) {
    .footer__nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.footer__nav-item {
    display: block;
}

@media only screen and (min-width: 40rem) {
    .footer__nav-item {
        position: relative;
    }

        .footer__nav-item::before {
            content: "";
            display: block;
            position: absolute;
            right: 0;
            top: 50%;
            background-color: #ffffff;
            width: 1px;
            height: 1rem;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }

        .footer__nav-item:last-child::before {
            display: none;
        }
}

.footer__nav-link {
    padding: 1rem;
    color: #ffffff;
    display: block;
    font-family: "IdealSans-Book", "Arial";
}

    .footer__nav-link:hover {
        text-decoration: underline;
    }

.footer__legal-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.footer__legal-icons-item {
    -ms-flex-preferred-size: 150px;
    flex-basis: 150px;
    /*was 180px */
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    height: 50px;
    padding: .5rem;
    position: relative;
}

@media only screen and (min-width: 682px) {
    .footer__legal-icons-item {
        -ms-flex-preferred-size: 275px;
        flex-basis: 275px;
    }
}

.footer__legal-icons-item-link {
    display: block;
    height: 100%;
}

.footer__legal-icons-item-icon {
    display: block;
    width: 100%;
    height: 100%;
}

.news-bar {
    display: block;
    position: relative;
    background-color: #f5831f;
    color: #1b1e4d;
    font-family: "IdealSans-Medium", "Arial";
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    padding: 4px 0;
    z-index: 51;
}

    .news-bar a {
        color: inherit;
    }

        .news-bar a:hover {
            text-decoration: underline;
        }

@media print {
    html {
        margin-top: 0 !important;
    }

    .nav-bar {
        background-color: transparent;
        position: relative;
        margin-bottom: 6rem;
    }

        .nav-bar::before {
            display: none;
        }

    .nav-bar__content {
        background-color: transparent;
    }

    .nav-bar__column--second {
        display: none;
    }

    .nav-bar__logo {
        max-width: 400px;
    }

    .nav-bar__logo-source * {
        fill: #000000 !important;
    }

    .nav-bar__btn {
        display: none;
    }

    .news-bar {
        display: none;
    }

    .header {
        display: none;
    }

    .header--loc-print {
        display: block;
    }

        .header--loc-print .header__image {
            display: none;
        }

        .header--loc-print .header__title {
            color: #000000;
            background-color: transparent;
            padding-left: 0;
        }

        .header--loc-print .header__desc {
            background-color: transparent;
            color: #000000;
            text-align: left;
        }

        .header--loc-print .header__desc-content,
        .header--loc-print .header__desc-address {
            color: #000000;
            padding-left: 0;
        }

    .horizontal-list {
        display: none;
    }

    .section {
        padding: 2rem 2rem;
    }

    .section__content {
        background-color: transparent;
    }

    .section__content--two-column .section__image-source {
        display: none;
    }

    .section__desc {
        text-align: left;
        font-size: 1rem;
        font-weight: normal;
        font-family: "IdealSans-Book", "Arial";
    }

    .section__title {
        color: #000;
        text-align: left;
        font-size: 1.375rem;
        padding-bottom: 2rem;
    }

    .section__column {
        padding: 0;
    }

    .section__sub-title {
        font-size: 1.0625rem;
    }

    .section__sub-text {
        font-size: 1rem;
    }

    .inline {
        margin-left: 0;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        background-color: transparent;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .inline__content {
        background-color: transparent;
        color: #000;
        font-family: "IdealSans-Book", "Arial";
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
        text-align: left;
        padding-top: 0 !important;
    }

    .inline__content-title {
        font-size: 1.375rem;
        text-align: left;
    }

    .inline__content-text {
        font-size: 1rem;
        text-align: left;
    }

    .inline__content-address--phone {
        color: #000000;
    }

    .inline__image--second-at-lg {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }

    .inline__image {
        max-width: 200px !important;
        height: auto !important;
    }

    .inline__image-source {
        width: 100%;
        height: auto;
    }

    .inline__bio {
        color: #000000;
    }

    .footer {
        background: transparent;
        margin-top: 0;
        display: none;
    }

        .footer::before {
            display: none;
        }

    .footer__logo {
        display: none;
    }

    .footer__nav {
        display: none;
    }

    .footer__legal-icons-item-icon {
        background-color: #000000;
        padding: .2px;
        width: auto;
        min-width: 100px;
        min-height: 50px;
        padding: 10px;
    }

    .btn-link {
        display: none;
    }

    .info-card {
        background-color: transparent;
    }

    .info-card__title {
        color: #000000;
    }

    .bullet-list {
        font-size: 1rem;
    }

    .map {
        display: none;
    }

    h1.hidden {
        display: block;
        max-width: 57rem;
        text-align: center;
        font-size: 1.375rem;
        font-family: "IdealSans-Book", "Arial";
        margin: 0 auto;
        margin-bottom: 2rem;
    }

    .accordion__group {
        margin-bottom: 4rem;
    }

    .accordion__title {
        background-color: transparent;
        color: #000000;
        font-size: 1.375rem;
        margin-bottom: .5rem;
        padding: 0 1rem;
    }

    .accordion__content {
        display: block;
        background-color: transparent;
        font-size: 1.125rem;
        padding: 0 1rem;
    }

    .hidden-print {
        display: none;
    }

    h1.hidden-print {
        display: none;
    }
}

.special-bar {
    min-height: 8rem;
    position: relative;
    top: 0;
    left: 0;
    z-index: 51;
    background-color: #fff;
    width: 100%;
    overflow: hidden;
}

@media only screen and (min-width: 57rem) {
    .special-bar {
        min-height: 8rem;
        position: relative;
        top: auto;
    }
}

@media only screen and (min-width: 500px) {
    .special-bar {
        height: 128px;
    }
}

.special-bar__container {
    max-width: 70rem;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 100%;
}

@media only screen and (min-width: 500px) {
    .special-bar__container {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.special-bar__content {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    padding: .5rem 0;
}

@media only screen and (min-width: 500px) {
    .special-bar__content {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }
}

@media only screen and (min-width: 57rem) {
    .special-bar__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        height: 100%;
    }
}

.special-bar__image {
    height: 100%;
    margin-right: 6%;
    height: 9.5rem;
    position: relative;
}

@media only screen and (min-width: 57rem) {
    .special-bar__image {
        margin-right: 4rem;
    }
}

.special-bar__image-source {
    width: auto;
    height: 100%;
    position: relative;
}

@media only screen and (min-width: 57rem) {
    .special-bar__image-source {
        width: auto;
        height: 100%;
        top: 0;
        left: 0;
    }
}

.special-bar__text {
    width: 100%;
    max-width: 300px;
    font-family: "IdealSans-Book", "Arial";
    margin-bottom: .5rem;
    font-size: 14px;
}

@media only screen and (min-width: 57rem) {
    .special-bar__text {
        margin-right: 4rem;
        margin-bottom: 0;
        font-size: 1rem;
    }
}

.special-bar__text--full {
    max-width: none;
}

.special-bar__list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media only screen and (min-width: 57rem) {
    .special-bar__list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.special-bar__item {
    margin-bottom: .5rem;
}

    .special-bar__item:last-child {
        margin-bottom: 0;
    }

@media only screen and (min-width: 57rem) {
    .special-bar__item {
        margin-right: 1rem;
        margin-bottom: 0;
    }

        .special-bar__item:last-child {
            margin-right: 0;
        }
}

.video {
    color: #000;
    text-decoration: none;
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

    .video::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 18px;
        height: 15px;
        background-image: url(resources/images/video-play.png);
        background-size: auto 100%;
        background-repeat: no-repeat;
        z-index: 100;
        border-radius: 10px;
    }

    .video:hover {
        text-decoration: underline;
    }

@media only screen and (min-width: 57rem) {
    .video::before {
        display: none;
    }

    .video:hover {
        text-decoration: none;
    }
}

.video__media {
    display: none;
}

@media only screen and (min-width: 57rem) {
    .video__media {
        display: block;
        height: 6rem;
        position: relative;
        border: solid 1px #000;
        overflow: hidden;
    }

    .video__media-source {
        width: auto;
        height: 100%;
        -webkit-transition: -webkit-transform .3s ease-out;
        transition: -webkit-transform .3s ease-out;
        transition: transform .3s ease-out;
        transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    }

    @media (prefers-reduced-motion) {
        .video__media-source {
            width: auto;
            height: 100%;
        }
    }

    .video__media::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        background-image: url(resources/images/video-play.png);
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 100;
    }
}

.video__text {
    text-align: center;
    font-family: "IdealSans-Book", "Arial";
    line-height: 1;
    font-size: 14px;
}

@media only screen and (min-width: 57rem) {
    .video__text {
        font-size: 1rem;
    }
}

.video:hover .video__media-source {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.lightbox {
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}

.lightbox__content {
    -ms-flex-preferred-size: 500px;
    flex-basis: 500px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    max-width: 100%;
    margin: 0 auto;
}

.lightbox__video {
    position: relative;
    max-width: 74rem;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

    .lightbox__video::before {
        content: "";
        display: block;
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
    }

.lightbox__video-source {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.lightbox__btn {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 3rem;
    right: 3rem;
    background-color: transparent;
    color: transparent;
    font-size: 0;
    border: none;
    cursor: pointer;
}

    .lightbox__btn::before,
    .lightbox__btn::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        background-color: #fff;
        height: 5px;
        width: 25px;
    }

    .lightbox__btn::before {
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .lightbox__btn::after {
        -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        transform: translate(-50%, -50%) rotate(-45deg);
    }

.lightbox--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.nav-bar--anniversary {
    top: 239px;
    position: absolute;
}

@media only screen and (min-width: 443px) {
    .nav-bar--anniversary {
        top: 220px;
    }
}

@media only screen and (min-width: 500px) {
    .nav-bar--anniversary {
        top: 196px;
    }
}

@media only screen and (min-width: 57rem) {
    .nav-bar--anniversary {
        top: auto;
    }
}

.nav-bar__cta {
    /*top: -41px;*/
    height: 54px;
    position: absolute;
}

@media only screen and (min-width: 57rem) {
    .nav-bar__cta {
        top: auto;
        position: static;
    }
}

.nav-bar--scroll {
    position: fixed;
    top: 41px;
}

@media only screen and (min-width: 57rem) {
    .nav-bar--scroll {
        position: relative;
        top: auto;
    }
}

.news-bar {
    height: 46px;
}

@media only screen and (min-width: 443px) {
    .news-bar {
        height: 46px;
    }
}

@media only screen and (max-width:442px) {
    .news-bar {
        position: fixed;
    }
}


/*# sourceMappingURL=special-bar.css.map */


/*# sourceMappingURL=printStyles.css.map */
