.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

html {
    background: #fff;
    font-size: 16px;
    overflow-x: hidden;
    width: 100vw
}

body {
    overflow-x: hidden;
    width: 100vw;
    color: #000437
}

a:hover {
    color: #f3b237;
    text-decoration: none
}

header {
    position: fixed;
    width: 100%;
    height: 80px;
    background-color: #fff;
    display: table;
    padding: 0 20px;
    z-index: 99
}

.header {
    border: #004e96;
    border-width: 6px;
    border-style: solid
}

@media (min-width:992px) {
    .header {
        border-width: 16px;
    }
}

@media (min-width:768px) {
    header {
        position: relative
    }
}

@media (min-width:992px) {
    header {
        height: 128px
    }
}

header .vertical-align {
    display: table-cell;
    vertical-align: middle
}

    header .vertical-align .header-logo {
        /*max-width: 211px;*/
        width: 50%;
        padding: 0;
        margin: 0
    }

@media (min-width:425px) {
    header .vertical-align .header-logo {
        width: auto
    }
}

header .quick-links {
    display: none
}

@media (min-width:768px) {
    header .quick-links {
        display: inline
    }
}

header .mobile-hamburger {
    display: inline;
    cursor: pointer
}

@media (min-width:768px) {
    header .mobile-hamburger {
        display: none
    }
}

header .mobile-hamburger .open-menu.hide-display {
    display: none
}

header .mobile-hamburger .close-menu.hide-display {
    display: none
}

header a {
    color: #004e96;
    padding: 0
}

@media (min-width:768px) {
    header a {
        padding: 0 15px;
        cursor: pointer;
    }
}

header a.active {
    color: #f3b237
}

header a:hover {
    color: #f3b237;
    text-decoration: none
}

header a img {
    padding: 0 5px;
    margin-bottom: 5px
}

.search {
    display: none
}

@media (min-width:768px) {
    .search {
        display: inline
    }
}

.search.mobile {
    text-align: center;
    display: block;
    margin: 10px;
    padding: 0 10px;
    border-radius: 20px;
    background-color: #fff;
    border: solid 1px #004e96
}

@media (min-width:768px) {
    .search.mobile {
        display: none
    }
}

.search.mobile input {
    width: 95%
}

.search.mobile button {
    border-radius: 20px;
    border: solid 1px #fff;
    margin-left: -40px;
    background: white;
    outline: none;
    border: none;
    padding: 5px 0 5px 10px;
}

.search input {
    border: none;
    padding: 5px 30px 5px 10px
}

@media (min-width:768px) {
    .search input {
        border-radius: 20px;
        background-color: #fff;
        border: solid 2px #004e96
    }
}

.search input:focus {
    outline: 0
}

.search button {
    border-radius: 20px;
    border: solid 1px #fff;
    margin-left: -40px;
    background: #fff;
    outline: 0;
    border: none;
    padding: 5px 0 0px 10px
}


nav .menu {
    background: #fff;
    height: 100vh;
    position: fixed;
    z-index: 1;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: none;
    margin-top: 80px
}

@media (min-width:768px) {
    nav .menu {
        display: block;
        height: auto;
        position: relative;
        z-index: 1;
        width: auto;
        margin-top: 0;
        background-image: -webkit-gradient(linear,left top,left bottom,from(#0080da),to(#004e96));
        background-image: -webkit-linear-gradient(top,#0080da,#004e96);
        background-image: linear-gradient(to bottom,#0080da,#004e96)
    }
}

nav .menu.mobile-active {
    display: block
}

nav .menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 20px;
    padding: 0 15px;
    list-style: none;
    margin: 0
}

@supports (-ms-ime-align:auto) {
    nav .menu ul {
        display: -webkit-box;
        display: -ms-flexbox;
    }
}

@media (min-width:768px) {
    nav .menu ul {
        padding: 15px 30px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-evenly;
        font-size: 14px
    }
}

nav .menu ul li {
    font-weight: 700;
    letter-spacing: .3px;
    padding: 10px 0;
    width: 100%;
    border-bottom: solid .5px #0080da
}

@media (min-width:768px) {
    nav .menu ul li {
        border: none;
        width: auto;
        padding: 0
    }
}

nav .menu ul li .active {
    color: #f3b237
}

nav .menu ul li a {
    color: #004e96
}

@media (min-width:768px) {
    nav .menu ul li a {
        color: #fff
    }
}

nav .menu ul li a:hover {
    color: #f3b237;
    text-decoration: none
}

nav .menu .quick-links-mobile {
    display: block;
    text-align: center;
    padding: 30px 0;
    font-weight: 700
}

@media (min-width:768px) {
    nav .menu .quick-links-mobile {
        display: none
    }
}

footer {
    font-size: 12px
}

footer .nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    list-style: none
}

footer .nav ul li {
    color: #004e96
}

footer .copyright {
    color: #004e96;
    text-align: center
}

@media (min-width:992px) {
    footer .copyright {
        text-align: right
    }
}

@media (max-width:768px) {
    footer .copyright {
        margin-bottom: 15px;
    }
}


footer .trademarks-wrapper {
    padding-right: 15px;
    padding-left: 15px;
}

footer .trademarks {
    color: #004e96;
    text-align: left;
}

.flex-direction-nav a, .flex-direction-nav a:before {
    color: rgba(0,0,0,.8);
    text-shadow: 1px 1px 0 rgba(255,255,255,.3)
}

@font-face {
    font-family: flexslider-icon;
    src: url(fonts/flexslider-icon.eot);
    src: url(fonts/flexslider-icon.eot?#iefix) format("embedded-opentype"),url(fonts/flexslider-icon.woff) format("woff"),url(fonts/flexslider-icon.ttf) format("truetype"),url(fonts/flexslider-icon.svg#flexslider-icon) format("svg");
    font-weight: 400;
    font-style: normal
}

.flex-container a:hover, .flex-slider a:hover {
    outline: 0
}

.flex-control-nav, .flex-direction-nav, .slides, .slides > li {
    margin: 0;
    padding: 0;
    list-style: none
}

.flex-pauseplay span {
    text-transform: capitalize
}

.flexslider {
    padding: 0;
    margin: 0 0 60px;
    background: #fff;
    border: 4px solid #fff;
    position: relative;
    zoom: 1;
    border-radius: 4px;
    -webkit-box-shadow: "" 0 1px 4px rgba(0,0,0,.2);
    -o-box-shadow: "" 0 1px 4px rgba(0,0,0,.2);
    box-shadow: "" 0 1px 4px rgba(0,0,0,.2)
}

    .flexslider .slides > li {
        display: none;
        -webkit-backface-visibility: hidden
    }

    .flexslider .slides:after {
        content: "\0020";
        display: block;
        clear: both;
        visibility: hidden;
        line-height: 0;
        height: 0
    }

html[xmlns] .flexslider .slides {
    display: block
}

* html .flexslider .slides {
    height: 1%
}

.no-js .flexslider .slides > li:first-child {
    display: block
}

.flexslider .slides {
    zoom: 1
}

    .flexslider .slides img {
        width: 100%;
        display: block;
        height: auto;
        -moz-user-select: none
    }

.flex-viewport {
    max-height: 2000px;
    -webkit-transition: all 1s ease;
    transition: all 1s ease
}

.loading .flex-viewport {
    max-height: 300px
}

.carousel li {
    margin-right: 5px
}

.flex-direction-nav a {
    text-decoration: none;
    display: block;
    width: 40px;
    height: 40px;
    margin: -20px 0 0;
    position: absolute;
    top: 50%;
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

    .flex-direction-nav a:before {
        font-family: flexslider-icon;
        font-size: 40px;
        display: inline-block;
        content: '\f001'
    }

    .flex-direction-nav a.flex-next:before {
        content: '\f002'
    }

.flex-direction-nav .flex-prev {
    left: -50px
}

.flex-direction-nav .flex-next {
    right: -50px;
    text-align: right
}

.flexslider:hover .flex-direction-nav .flex-prev {
    opacity: .7;
    left: 10px
}

    .flexslider:hover .flex-direction-nav .flex-prev:hover {
        opacity: 1
    }

.flexslider:hover .flex-direction-nav .flex-next {
    opacity: .7;
    right: 10px
}

    .flexslider:hover .flex-direction-nav .flex-next:hover {
        opacity: 1
    }

.flex-direction-nav .flex-disabled {
    opacity: 0 !important;
    filter: alpha(opacity=0);
    cursor: default;
    z-index: -1
}

.flex-pauseplay a {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 5px;
    left: 10px;
    opacity: .8;
    z-index: 10;
    overflow: hidden;
    cursor: pointer;
    color: #000
}

    .flex-pauseplay a:before {
        font-family: flexslider-icon;
        font-size: 20px;
        display: inline-block;
        content: '\f004'
    }

    .flex-pauseplay a:hover {
        opacity: 1
    }

    .flex-pauseplay a.flex-play:before {
        content: '\f003'
    }

.flex-control-nav {
    width: 100%;
    position: absolute;
    bottom: -30px;
    text-align: center
}

    .flex-control-nav li {
        margin: 0 6px;
        display: inline-block;
        zoom: 1
    }

.flex-control-paging li a {
    width: 11px;
    height: 11px;
    display: block;
    background: #666;
    background: rgba(0,0,0,.5);
    cursor: pointer;
    text-indent: -9999px;
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
    -o-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
    box-shadow: inset 0 0 3px rgba(0,0,0,.3);
    border-radius: 20px
}

    .flex-control-paging li a:hover {
        background: #333;
        background: rgba(243,178,55,.7)
    }

    .flex-control-paging li a.flex-active {
        background: #000;
        background: rgba(0,78,150,.9);
        cursor: default
    }

.flex-control-thumbs {
    margin: 5px 0 0;
    position: static;
    overflow: hidden
}

    .flex-control-thumbs li {
        width: 25%;
        float: left;
        margin: 0
    }

    .flex-control-thumbs img {
        width: 100%;
        height: auto;
        display: block;
        opacity: .7;
        cursor: pointer;
        -moz-user-select: none;
        -webkit-transition: all 1s ease;
        transition: all 1s ease
    }

        .flex-control-thumbs img:hover {
            opacity: 1
        }

    .flex-control-thumbs .flex-active {
        opacity: 1;
        cursor: default
    }

@media screen and (max-width:860px) {
    .flex-direction-nav .flex-prev {
        opacity: 1;
        left: 10px
    }

    .flex-direction-nav .flex-next {
        opacity: 1;
        right: 10px
    }
}

.body-container {
    width: 100%;
    max-width: 970px;
    margin: 0 auto
}

.main-container {
    padding: 0 2rem 2rem
}

@media (min-width:992px) {
    .main-container {
        padding: 0 0 2rem
    }
}

.spacer {
    padding: 10px 0
}

@media (min-width:992px) {
    .spacer {
        padding: 30px 0
    }
}

.btn {
    width: 100%;
    padding: 0;
    border-radius: 0;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#0080da),to(#004e96));
    background-image: -webkit-linear-gradient(top,#0080da,#004e96);
    background-image: linear-gradient(to bottom,#0080da,#004e96);
    font-weight: 700
}

    .btn:active {
        background-image: -webkit-gradient(linear,left top,left bottom,from(#0080da),to(#004e96));
        background-image: -webkit-linear-gradient(top,#0080da,#004e96);
        background-image: linear-gradient(to bottom,#0080da,#004e96);
    }

    .btn a {
        color: #fff;
        display: inline-block;
        width: 100%;
        height: 100%;
        padding: 15px 0;
    }

.no-padding {
    padding: 0
}

.clipped {
    margin: 0
}

@media (min-width:992px) {
    .clipped {
        margin: 0 7rem
    }
}

hr {
    border: solid 1px #97a2ad
}

.callout-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

    .callout-cards .col-xs-12 {
        margin-bottom: 20px
    }

    .callout-cards .card {
        height: 100%;
        border: solid .5px #97a2ad;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

        .callout-cards .card.no-border {
            border: none
        }

        .callout-cards .card .card-body {
            padding: 40px 20px
        }

            .callout-cards .card .card-body h4 {
                color: #000437;
                line-height: 1.3;
                word-break: break-word
            }

            .callout-cards .card .card-body hr {
                border: solid 1px #97a2ad;
                width: 111px
            }

            .callout-cards .card .card-body ul {
                display: inline-block;
                padding-left: 10px;
            }

@media (min-width:992px) {
    .callout-cards .card .card-body.download-icon {
        padding-top: 27px
    }

    .callout-cards .card .card-body ul {
        display: block;
        padding-left: 40px;
    }
}

.callout-cards .card .card-body img {
    width: auto
}

@media (min-width:425px) {
    .callout-cards .card .card-body img {
        width: auto
    }
}

.callout-cards .card .card-body img.qrg-img {
    width: 100%
}

@media (min-width:425px) {
    .callout-cards .card .card-body img.qrg-img {
        height: 120px;
        width: auto
    }
}

@media (min-width:992px) {
    .callout-cards .card .card-body img.email-icon {
        padding-top: 25px
    }
}

@media (min-width:425px) {
    .callout-cards .card .card-body img.equipment {
        height: 125px
    }
}

.callout-cards .card .card-body .card-title {
    font-weight: 700;
    color: #0080da;
    padding: 10px 0;
    word-break: break-word;
}

    .callout-cards .card .card-body .card-title.dark-title {
        color: #004e96
    }

.callout-cards .card .card-body .card-text span {
    font-size: 18px;
    font-weight: 700;
    color: #004e96
}

@media (min-width:992px) {
    .callout-cards .card .card-body .card-text {
        padding: 0 30px
    }
}

@media (min-width:992px) {
    .callout-cards {
        padding: 0
    }
}

.testimonial {
    margin: 30px 0 60px
}

    .testimonial p {
        font-size: 18px;
        font-weight: 700;
        color: #004e96;
        margin-bottom: 5px
    }

    .testimonial span {
        font-size: 12px;
        color: #004e96
    }

@media (min-width:992px) {
    .testimonial {
        padding: 20px
    }
}

.giftcard-callout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-bottom: 3rem
}

    .giftcard-callout .copy {
        border: solid .5px #97a2ad;
        height: 100%
    }

        .giftcard-callout .copy p {
            padding-left: 10px;
            display: inline;
            line-height: 50px;
            color: #0080da;
            font-weight: 700
        }

.question {
    text-align: center;
    font-weight: 700;
    border: solid .5px #97a2ad;
    width: 100%;
    margin: 0 auto;
    line-height: normal
}

    .question .q-span {
        font-weight: 400;
        font-size: 12px;
        color: #000437
    }

    .question .white-bg {
        color: #004e96;
        padding: 20px 20px;
        border-bottom: none;
        font-size: 30px
    }

        .question .white-bg ul {
            -webkit-padding-start: 20px;
            padding-inline-start: 20px
        }

            .question .white-bg ul li {
                font-size: 14px;
                color: #000437;
                line-height: 2
            }

@media (min-width:992px) {
    .question .white-bg {
        padding: 20px 60px
    }
}

.question .gold-bg {
    background: #f3b237;
    color: #fff;
    padding: 20px 20px;
    font-size: 24px
}

@media (min-width:992px) {
    .question .gold-bg {
        padding: 20px 60px
    }
}

.heading {
    padding: 90px 0 30px;
    color: #004e96
}

@media (min-width:992px) {
    .heading {
        padding: 60px 0 30px
    }
}

.heading hr {
    border: solid 1px #97a2ad;
    width: 111px
}

.heading h2, .heading h3 {
    font-weight: 700
}

.logo {
    text-align: center;
    padding: 30px;
    margin-bottom: 60px
}

    .logo img {
        width: 80%
    }

@media (min-width:992px) {
    .logo img {
        width: 50%
    }
}

.logo.bg-blue {
    background: #004e96
}

.generic-text {
    margin: 0 0 50px
}

    .generic-text p span {
        font-weight: 700;
        color: #004e96
    }

@media (min-width:992px) {
    .generic-text p span {
        font-size: 18px
    }
}

@media (min-width:992px) {
    .generic-text {
        margin: 0 50px 50px
    }
}

.responsive-table thead {
    font-size: 24px;
    border: solid .5px #f3b237
}

    .responsive-table thead tr.bg-gold {
        background: #f3b237;
        color: #fff
    }

    .responsive-table thead tr th {
        padding: 10px;
        text-align: center
    }

.responsive-table tr {
    display: flex;
    flex-direction: column;
}

@media (min-width:992px) {
    .responsive-table thead tr th.goals {
        width: 380px
    }

    .responsive-table tr {
        display: table-row;
    }
}

.responsive-table tbody tr td {
    border: solid .5px #97a2ad;
    padding: 20px
}

    .responsive-table tbody tr td.goal {
        font-weight: 700;
        text-align: center;
        vertical-align: middle
    }

    .responsive-table tbody tr td ul {
        margin-bottom: 0
    }

.link-list {
    max-width: 300px;
    margin: 0 auto
}

    .link-list .btn {
        margin: 10px 0
    }

@media (min-width:992px) {
    .link-list {
        margin: 0 auto
    }
}

.image-grid {
    text-align: center
}

    .image-grid img {
        width: 100%;
        margin-bottom: 20px
    }

.highlight-list {
    justify-content: center;
}

.highlight-list .highlight {
    color: #000437;
    font-size: 16px;
    font-weight: 700;
    padding: 10px;
    border: solid .5px #97a2ad
}

    .highlight-list .highlight:nth-child(n+2) {
        border-top: none
    }

@media (min-width:992px) {
    .highlight-list .highlight {
        font-size: 24px
    }
}

.flexslider {
    margin: 90px 0
}

    .flexslider .slide-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin: 10px
    }

@media (min-width:992px) {
    .flexslider .slide-container {
        font-size: 24px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        margin: 0 70px
    }
}

.flexslider .slide-container .one-half {
    width: 100%;
    text-align: center
}

@media (min-width:992px) {
    .flexslider .slide-container .one-half {
        width: 50%;
        text-align: left
    }
}

.flexslider .slide-container .one-half h2 {
    color: #004e96;
    font-weight: 700;
    font-size: 15px
}

@media (min-width:992px) {
    .flexslider .slide-container .one-half h2 {
        font-size: 30px
    }
}

.flexslider .slide-container .one-half h3 {
    color: #0080da;
    font-weight: 700;
    font-size: 12px
}

    .flexslider .slide-container .one-half h3 a {
        color: #0080da;
    }

        .flexslider .slide-container .one-half h3 a:hover {
            color: #f3b237;
        }

@media (min-width:992px) {
    .flexslider .slide-container .one-half h3 {
        font-size: 24px
    }
}

.flexslider .flex-control-nav {
    display: block
}

@media (min-width:992px) {
    .flexslider .flex-control-nav {
        display: none
    }
}

.flexslider .flex-direction-nav {
    position: absolute;
    bottom: -35px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    padding-left: 0;
    list-style: none
}

@media (min-width:992px) {
    .flexslider .flex-direction-nav {
        position: absolute;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        bottom: 45%
    }
}

.flexslider .flex-direction-nav .flex-prev {
    position: relative;
    background-repeat: no-repeat;
    text-align: left;
    background: url(/../Content/images/arrow-left.png);
    background-size: contain;
    height: 20px;
    width: 12px;
    font-size: 0
}

@media (min-width:992px) {
    .flexslider .flex-direction-nav .flex-prev {
        height: 47px;
        width: 26px
    }
}

.flexslider .flex-direction-nav .flex-prev:before {
    content: ''
}

.flexslider .flex-direction-nav .flex-next {
    position: relative;
    background-repeat: no-repeat;
    text-align: right;
    background: url(/../Content/images/arrow-right.png);
    background-size: contain;
    height: 20px;
    width: 12px;
    font-size: 0
}

@media (min-width:992px) {
    .flexslider .flex-direction-nav .flex-next {
        height: 47px;
        width: 26px
    }
}

.flexslider .flex-direction-nav .flex-next:before {
    content: ''
}

.bullet-callout {
    margin-bottom: 26px;
    line-height: 26px;
}

@media (min-width:992px) {
    .bullet-callout {
        margin-left: 10rem;
    }
}

.bullet-callout ul {
    list-style: none;
    position: relative;
}

.bullet-callout li:before {
    content: "\2022";
    color: #f3b237;
    position: absolute;
    margin-left: -16px;
    font-size: 26px;
}

.giftcard-now-available {
    display: none;
}

@media (min-width:992px) {
    .giftcard-now-available {
        display: block;
    }
}

.card-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-detail div {
    padding-bottom: 10px;
    max-width: 305px;
    width: 305px;
}

.justify-evenly {
    justify-content: space-evenly;
}

.full-width {
    width: 100% !important;
}

.break-word {
    word-break: break-word;
}