/*
 * Table of Contents:
 *
 * STRUCTURE
 *   101 BASE STYLES
 *   102 HEADER 
 *   103 FOOTER 
 *   104 MAIN NAV 
 * INTERIOR 
 *   201 PAGE LINKS
 *   202 CONTENT
 *   203 PAGE HEADER
 *   204 CONTACT FORM
 * REGIONS 
 *   301 INTERIOR BOTTOM
 * BLOCKS
 *   401 DID YOU KNOW
 *   402 FACT
 *   403 RESOURCES
 *   404 COMPARE PLANS
 *   405 HOMEPAGE HERO
 *   406 HOMEPAGE SLIDER
 * HOMEPAGE
 *   501 LINKS
 *   502 GENERAL
 *   503 SOCIAL LINKS
 *   504 QUOTE
 *   505 RESOURCES
 *   506 BLOG
 *   507 STAY INFORMED
 * MODULES
 *   601 FAQs
 */

/* 101 STRUCTURE: BASE STYLES */

body, html {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
	color: #000;
}

p, h1, h2, h3, h4, h5, h6, ul, ol {
    margin: 0;
    padding: 1em 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #000;
    font-weight: 700;
}

section {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 1em;
    max-width: 1128px;
    width: 100%;
}

/* 102 STRUCTURE: HEADER */

.header {
    position: relative;
}

header {
    align-items: flex-end;
    box-sizing: border-box;
    display: flex;
    margin: 0 auto;
    padding: 4em 1em 1em;
    position: relative;
    max-width: 1128px;
    width: 100%;
}

header #searchbar input {
    background: #ddd;
    border: none;
    color: #999;
    padding: 8px 10px;
    position: absolute;
    right: 0;
    top: 1em;
    width: 250px;
}

#logo {
    border-right: solid 1px #a6a6a6;
    padding-right: 2em;
    margin-right: 2em;
}

#logo img {
    height: 50px;
    width: auto;
}

.secondary-logo {
    margin-bottom: 4px;
    text-decoration: none;
}
.secondary-logo img {
    height: 40px;
    width: auto;
}

.secondary-logo.get {
    margin-right: 2em;
}

.secondary-logo.da {
    margin-bottom: 6px;
}

.header-actions {
    display: inline-flex;
    flex-grow: 1;
    justify-content: flex-end;
}

.header-actions a {
    color: #4d4d4d;
    display: inline-flex;
    font-weight: 500;
    height: 30px;
    line-height: 30px;
    margin-left: .5em;
    text-decoration: none;
}

.header-actions a:before {
    background: url(../img/sprite-header-icons.png) no-repeat 0 0;
    content: "";
    display: inline-block;
    margin-right: .5em;
    height: 30px;
    width: 30px;
}

.header-actions a:nth-child(2):before {
    background-position: -31px 0;
}

.header-actions a:nth-child(3):before {
    background-position: -60px 0;
}

.header-actions a:nth-child(4):before {
    background-position: -90px 0;
}

@media(max-width:1128px) {
    header #searchbar input {
        right: 1em;
    }
}

@media(max-width: 1030px) {
    #logo {
        padding-right: 1em;
        margin-right: 1em;
    }

    #logo img {
        height: 50px;
    }

    .secondary-logo {
        margin-right: 1em;
    }

    .header-actions a {
        font-size: .85em;
    }
}

@media(max-width:936px) {
    #logo img {
        height: 40px;
    }

    .secondary-logo {
        margin-bottom: 0;
    }

    .secondary-logo.da {
        margin-bottom: 2px;
    }

    .header-actions a {
        font-size: .75em;
    }
}

@media(max-width:878px) {
    #logo {
        border: none;
        padding-bottom: 1em;
    }

    header {
        display: block;
        text-align: center;
    }

    .header-actions {
        padding-top: 2em;
        width: 100%;
        justify-content: center;
    }
}

@media(max-width: 693px) {
    header #searchbar {
        margin-top: 1em;
    }

    header #searchbar input {
        position: static;
    }
}

@media(max-width: 477px) {
    #logo {
        padding-right: .5em;
        margin-right: .5em;
    }

    #logo img {
        height: 35px;
    }

    .secondary-logo {
        height: 25px;
    }

    .header-actions {
        flex-flow: column;
    }
}

/* 103 STRUCTURE: FOOTER */

footer {
    background: #666;
    text-align: center;
}

footer .logos {
    display: flex;
    padding: 2em 0;
    justify-content: center;
}

#logo-footer {
    display: inline-block;
    margin-right: 20px;
}

.social-links {
    display: inline-block;
	background:#666666;
}

.social-links a.social {
    background: url(../img/sprite-footer-logos.png) no-repeat 0 0;
    display: inline-block;
    height: 26px;
    margin-right: .5em;
    text-indent: -9999px;
    width: 26px;
	color:#ffffff;
}

.social-links a.social.instagram {
    background-position: -50px 0;
}

.social-links a.social.twitter {
    background-position: -100px 0;
}

.social-links a.social.linkedin {
    background-position: -150px 0;
}

footer ul {
    line-height: 1.5em;
    padding: 0 1em;
}

footer ul li {
    color: #fff;
    display: inline;
}

footer ul li:after {
    content: " | ";
}

footer ul li:last-child:after {
    content: "";
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

footer ul li a:hover {
    text-decoration: underline;
}

#copyright {
    color: #fff;
    padding: 1em 1em 2em;
}

/* 104 STRUCTURE: MAIN NAV */

.header nav {
    background: #22873B;
    height: 40px;
}

.header nav ul:not(.contextual-links) {
    display: flex;
    padding: 0;
    justify-content: center;
}

.header nav ul:not(.contextual-links) li {
    list-style: none;
    position: relative;
}

.header nav li a {
    color: #fff;
    display: block;
    font-weight: 600;
    font-size: 13px;
    padding: 1em 2em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.header nav li a.get {
    background: #1962ad;
}

.header nav li a.da {
    background: #4fb360; 
}

.header nav ul:not(.contextual-links) li a.is-active {
    color: #8cc63f;
}

.header nav > ul:not(.contextual-links) > li > a.is-active {
    color: #fff;
}

.header nav > ul:not(.contextual-links) > li > a:hover {
    background: #8cc63f;
}

.header nav ul:not(.contextual-links) li ul {
    background: #666;
    box-shadow: 0 5px 7px rgba(0,0,0,.2);
    display: none;
    flex-flow: column;
    position: absolute;
    top: 40px;
    z-index: 10;
}

.header nav ul:not(.contextual-links) > li.open > ul {
    display: flex;
}


.header nav ul:not(.contextual-links) li ul li {
    border-bottom: solid 1px #333;
}

.header nav ul:not(.contextual-links) li ul li:last-child {
    border-bottom: none;
}

.header nav ul:not(.contextual-links) li ul li a {
    transition: background .3s;
}

.header nav ul:not(.contextual-links) li ul li a:hover {
    background: rgb(34, 25, 25);
}


.header nav ul:not(.contextual-links) li:hover ul li ul {
    display: none;
}

.header nav ul:not(.contextual-links) li:hover ul li:hover ul {
    display: flex;
}

.header nav ul:not(.contextual-links) li ul li ul {
    left: 100%;
    top: 0px;
}

#mobile-nav-toggle {
    bottom: 3px;
    cursor: pointer;
    display: none;
    height: 30px;
    left: 5px;
    position: absolute;
    width: 30px;
    z-index: 10;
}

#mobile-nav-toggle span {
    background: #fff;
    display: block;
    margin-bottom: 5px;
    height: 5px;
}

#mobile-nav-close {
    cursor: pointer;
    display: none;
    height: 30px;
    position: absolute;
    top: 5px;
    right: 20px;
    width: 30px;
    z-index: 11;
}

#mobile-nav-close span {
    transform-origin: center center;
    left: 50%;
    top: 50%;
    position: absolute;
    width: 100%;
}

#mobile-nav-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

#mobile-nav-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

#mobile-nav-close span {
    background: #fff;
    display: block;
    height: 5px;
}

@media(max-width:1000px) {
    body.mobile-open {
        overflow: hidden;
    }

    body.mobile-open #mobile-nav-close {
        display: block;
    }

    #mobile-nav-toggle {
        display: block;
    }

    .header nav > ul:not(.contextual-links) {
        display: none;
        overflow-y: scroll;
        z-index: 10;
    }

    .header nav ul:not(.contextual-links) li ul {
        box-shadow: none;
    }

    .mobile-open .header {
        position: initial;
    }

    .mobile-open #block-mainnavigation.contextual-region {
        position: static;
    }

    .mobile-open .header nav > ul:not(.contextual-links) {
        background: rgba(0,0,0,.8);
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .mobile-open .header nav > ul:not(.contextual-links) li ul li ul li a {
        padding-left: 4em;
    }

    .mobile-open .header nav > ul:not(.contextual-links) ul ul,
    .mobile-open .header nav > ul:not(.contextual-links) ul {
        position: static;
        display: block!important;
        border-top: solid 1px #333;
    }

    .mobile-open #mobile-nav-toggle {
        display: none;
    }
}

/* 201 INTERIOR: PAGE LINKS */

#block-interiorpagelinks ul:not(.contextual-links) {
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
    margin: 0;
    padding: 1em 0;
    width: 100%;
}

#block-interiorpagelinks ul:not(.contextual-links) li {
    background: none;
    flex-grow: 1;
    padding: 0 10px 0 0;
}

#block-interiorpagelinks ul:not(.contextual-links) li:last-child {
    padding-right: 0;
}

#block-interiorpagelinks ul:not(.contextual-links) li a {
    background: #808080;
    box-sizing: border-box;
    color: #fff;
    display: inline-block;
    font-size: .9em;
    font-weight: 500;
    padding: 4px; 
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .3s;
    width: 100%;
}

#block-interiorpagelinks ul:not(.contextual-links) li a:hover {
    background: #666;
}

@media(max-width: 680px) {
    #block-interiorpagelinks ul:not(.contextual-links) {
        display: inherit;
    }

    #block-interiorpagelinks ul:not(.contextual-links) li {
        padding: 0;
        margin-bottom: .5em;
        width: 100%;
    }
}

/* 202 INTERIOR: CONTENT */

section {
    line-height: 1.5em;
}

section a {
    color: #0a55a3;
    font-weight: 700;
    transition: color .3s;
}

#get section a  {
    color: #1962ad;
}

#da section a  {
    color: #4fb360;
}

section a:hover {
    color: #000;
}

section h1 {
    color: #666;
    display: flex;
    width: auto;
    font-size: 26px;
}

section h2 {
    color: #666;
    display: flex;
    width: auto;
}

#get section h2,
#get section h3,
#get section h4,
#get section h5,
#get section h6  {
    color: #1962ad;
}

#da section h2,
#da section h3,
#da section h4,
#da section h5,
#da section h6  {
    color: #4fb360;
}

section h2:after {
    background: #ccc;
    content: '';
    display: inline-block;
    height: 8px;
    margin-top: 9px;
    margin-left: .5em;
    flex-grow: 1;
}

section h3 {
    font-weight: 600;
}

section ul li {
    background: url(../img/bullet.png) no-repeat 5px 8px;
    list-style: none;
    padding: 0 0 1em 2em;   
}

.video-embed-field-responsive-video {
    margin-bottom: 1em;
}

/* 203 INTERIOR: PAGE HEADER */

#banner {
    background-image: url(../img/default-header.jpg);
    background-position: top center;
    background-size: cover;
    height: 169px;
    position: relative;
}

#banner-inner {
    padding: 0;
    max-width: 1128px;
    width: 100%;
    margin: 0 auto;
}

#banner h1 {
    background: #808080;
    bottom: 0;
    color: #fff;
    display: inline-block;
    padding: .25em  1em .25em .5em;
    position: absolute;
    width: auto;
}

#banner h1:before {
    background: #808080;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1000px;
    width: 1000px;
}

#get #banner h1,
#get #banner h1:before {
    background: #1962ad;
}

#da #banner h1,
#da #banner h1:before {
    background: #4fb360;
}

/* 204 INTERIOR: CONTACT FORM */

.hidden-field {
    display: none;
}

.contact-form {
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
}

.contact-form label {
    display: block;
    font-size: .9em;
    padding-bottom: .25em;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    background: #f2f2f2;
    border: none;
    box-sizing: border-box;
    display: block;
    padding: 5px 10px;
    margin-bottom: 1.25em;
    width: 100%;
}

.contact-form textarea {
    height: 100px;
}

.contact-form input[type="submit"] {
    background: #1957a0;
    border: none;
    color: #fff;
    padding: 5px 1.5em;
    font-size: 1em;
    font-weight: 600;
}

.contact-form p {
    font-weight: 400;
}

.contact-form #success-message {
    display: none;
    color: #119900;
    font-weight: 700;
}

.contact-form #error-message {
    display: none;
    color: #990000;
}

.contact-form input.error,
.contact-form textarea.error,
.contact-form select.error {
    background-color: #f2dede;
}

.contact-form label {
    margin-top: 2em;
    margin-bottom: .5em;
    font-size: 1.1em;
}

.contact-form label.error {
    color: #990000;
}

.contact-form input[disabled] {
    opacity: .5;
}

/* 301 REGION: INTERIOR BOTTOM */

#interior_bottom {
    padding-bottom: 3em;
    padding-top: 3em;
}

#interior_bottom > div {
	display: block;
	/*
	Change Mark to display 'Did you know' boxes first, then COVID notice box on each page. Replace the above display code with the below to place them side by side again
	display: flex;
    align-items: flex-start;*/
}

#interior_bottom > div > div {
    margin-right: 2em;
    margin-bottom: 2em;
}

#interior_bottom > div > div:last-child {
    margin-right: 0;
}

@media(max-width: 768px) {
    #interior_bottom > div {
        flex-wrap: wrap;
    }
}

@media(max-width: 680px) {
    #interior_bottom > div > div {
        box-sizing: border-box;
        margin-right: 0;
        width: 100%;
    }
}

/* 401 BLOCK: DID YOU KNOW */

.didyouknow {
    background: #22873B;
    box-sizing: border-box;
    display: inline-block;
    flex-grow: 0;
    flex-shrink: 0; 
    height: 303px;
    overflow: hidden;
    padding: 1.5em;
    position: relative;
    width: 334px;
}

.didyouknow:after {
    content: "";
    display: block;
    position: absolute;
}

.didyouknow.didyouknow_normal:after {
    background: url(../img/didyouknow.png);
    bottom: -10px;
    height: 187px;
    opacity: .2;
    right: -10px;
    width: 114px;
}

.didyouknow.didyouknow_hootie_thumbs:after,
.didyouknow.didyouknow_hootie_shrug:after,
.didyouknow.didyouknow_hootie_fist:after {
    bottom: 0;
    height: 150px;
    right: 0;
    width: 150px;
}

.didyouknow.didyouknow_hootie_fist:after {
    background: url(../img/hootie-fist.png);
}

.didyouknow.didyouknow_hootie_shrug:after {
    background: url(../img/hootie-shrug.png);
}

.didyouknow.didyouknow_hootie_thumbs:after {
    background: url(../img/hootie-thumbs.png);
}

.didyouknow h3 {
    color: #d9e021;
    font-size: 2em;
    font-weight: 600;
    padding-top: 0;
    padding-bottom: .5em;
}

.didyouknow p {
    color: #fff;
    font-size: 1.3em;
    font-weight: 500;
    line-height: 1.3em;
    padding-right: 3em;
}

.didyouknow a {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.didyouknow .learnmore {
    bottom: 1em;
    color: #ffffff;
    position: absolute;
    text-transform: uppercase;
    text-decoration: none;
}

.didyouknow.didyouknow_normal .learnmore {
    right: 1.25em;
}

.didyouknow.didyouknow_hootie_thumbs .learnmore,
.didyouknow.didyouknow_hootie_shrug .learnmore,
.didyouknow.didyouknow_hootie_fist .learnmore {
    left: 1.25em;
}

/* 402 BLOCK: FACT */

.fact {
    background: #3eb3e5;
    box-sizing: border-box;
    display: inline-block;
    flex-grow: 0;
    flex-shrink: 0; 
    height: 303px;
    overflow: hidden;
    padding: 1.5em;
    position: relative;
    width: 334px;
}

.fact h3 {
    color: #fff;
    font-size: 2em;
    font-weight: 600;
    padding-top: 0;
    padding-bottom: .5em;
}

.fact p {
    color: #fff;
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.3em;
}

.fact a {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.fact .learnmore {
    bottom: 1em;
    color: #d9e021;
    position: absolute;
    right: 1.25em;
    text-transform: uppercase;
    text-decoration: none;
}

/* 403 BLOCK: RESOURCES */

.resources {
    align-self: flex-end;
    background: #f0f7ef;
    color: #4d4d4d;
    flex-grow: 1;
    padding: 1.5em;
}

.resources h3 {
    color: #37a34d;
    font-size: 1.5em;
    font-weight: 600px;
    padding-bottom: .5em;
    padding-top: 0;
}

.resources a {
    color: #4d4d4d;
}

/* 404 BLOCK: COMPARE PLANS */

.compare {
    display: flex;
}

.compare .plan{
    box-sizing: border-box;
    width: 50%;
}

.compare .plan.plan1 {
    padding-right: 1em;
}

.compare .plan.plan2 {
    padding-left: 1em;
}

.compare .logo {
    display: block;
    height: 75px;
    margin: 0 auto;
    width: auto;
}

.compare .title {
    font-size: 1.5em; 
    text-align: center;
}

.compare .plan.plan1 .title {
    color: #4fb360;   
}

.compare .plan.plan2 .title {
    color: #1962ad;
}

.compare .subtitle {
    box-sizing: border-box;
    color: #fff;
    font-size: 1.25em;
    padding: 30px 44px;
    height: 105px;
    line-height: 1.5em;
    text-align: center;
}

.compare .plan.plan1 .subtitle {
    background: #4fb360;   
}

.compare .plan.plan2 .subtitle {
    background: #1962ad;
}

.compare .plan-content {
    padding: 50px 80px 35px;
}

.compare .plan.plan1 .plan-content {
    background: #f0f7ef;
}

.compare .plan.plan2 .plan-content {
    background: #e1ebf7;
}

.compare ul li {
    background: none;
    padding-bottom: 2em;
    position: relative;
}

.compare ul li:before {
    content: "";
    display: block;
    height: 15px;
    left: 0;
    margin-right: .5em;
    position: absolute;
    top: 2px;
    width: 15px;
}

.compare .plan.plan1 ul li:before {
    background: #4fb360;
}

.compare .plan.plan2 ul li:before {
    background: #1962ad;
}


.compare a.btn {
    color: #fff;
    display: block;
    font-size: 1.1em;
    font-weight: 500;
    margin: 2em auto 0;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 245px;
}

.compare .plan.plan1 a.btn {
    background: #4fb360;
}

.compare .plan.plan2 a.btn {
    background: #1962ad;
}

@media(max-width: 680px) {
    .compare {
        display: block;
    }

    .compare .plan {
        margin: 2em auto 0;
        width: 80%;
    }

    .compare .plan.plan1 {
        margin-right: auto;
    }

    .compare .subtitle {
        height: auto;
        padding: 1em;
    }

    .compare .plan-content {
        padding: 2em 2.5em;
    }
}

@media(max-width: 500px) {
    .compare .plan {
        width: 100%;
    }
}

/* 405 BLOCK: HOMEPAGE HERO */

#hero {
    background-color: #e6e8ea;
    background-position: top center;
    background-size:cover;
    height: 510px;
    margin-bottom: 2em;
}

#hero-inner {
    flex-direction: column;
    box-sizing: border-box;
    display: flex;
    height: 510px;
    justify-content: flex-end;
    margin: 0 auto;
    max-width: 1128px;
    padding: 0 1em;
    width: 100%;
}

#hero-inner h2 {
    color: #fff;
    font-size: 2.75em;
    padding-bottom: .25em;
    padding-top: 0;
    text-shadow: 2px 2px 3px rgba(0,0,0,.5);
    width: 75%;
	background: rgb(102,102,102,.8);
	padding-left: 5px;
	padding-right:5px;
}

#hero-buttons {
    display: flex;
    position: relative;
    top: 2em;
    width: 100%;
}

#hero-buttons a {
    background: #1962ad;
    color: #fff;
    display: block;
    font-size: 1.4em;
    font-weight: 700;
    flex-grow: 1;
    letter-spacing: 1px;
    padding: .5em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .3s;
    z-index: 1;
}

#hero-buttons a:hover {
    background: #165697;
}

#hero-buttons span {
    display: block;
    font-size: .7em;
    font-weight: 300;
    letter-spacing: none;
    text-transform: none;
}

#hero-buttons a:first-child {
    margin-right: 1em;
}

@media(max-width: 680px) {
    #hero,
    #hero-inner {
        height: 350px;
    } 

    #hero-inner h2 {
        font-size: 2.25em;
        width: 100%;
    }
}

@media(max-width: 450px) {
    #hero-inner h2 {
        font-size: 2em;
    }

    #hero-buttons a {
        font-size: 1em;
        letter-spacing: none;
    }

    #hero-buttons a:first-child {
        margin-right: .5em;
    }
}

/* 406 BLOCK: HOMEPAGE SLIDER */

#homepage-slider {
    height: 510px;
    margin-bottom: 2em;
    position: relative;
}

#homepage-slider-inner {
    flex-direction: column;
    box-sizing: border-box;
    display: flex;
    height: 510px;
    justify-content: flex-end;
    margin: 0 auto;
    max-width: 1128px;
    padding: 0 1em;
    width: 100%;
}

#homepage-slider-slides {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.homepage-slider-slide {
    background-color: #e6e8ea;
    background-position: top center;
    background-size:cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: 1s opacity;
}

.homepage-slider-slide.video {
    background-color: #000;
}

.homepage-slider-slide.video .video-bg {
    background-position: center center;
    background-size: cover;
    filter: blur(1.5rem);
    opacity: .5;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.homepage-slider-slide.video .video-container {
    overflow: hidden;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    visibility: hidden;
}

.homepage-slider-slide.video .video-container.playing {
    visibility: visible;
}

.homepage-slider-slide.video iframe,
.homepage-slider-slide.video video {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
}

.video .vol {
    cursor: pointer;
    display: block;
    height: 30px;
    width: 30px;
    position: absolute;
    bottom: 9%;
    left: 10px;
    mask-image: url(../img/vol-off.svg);
    mask-size: 100% 100%;
    -webkit-mask-image: url(../img/vol-off.svg);
    -webkit-mask-size: 100% 100%;
    background-color: #22873B;
    z-index: 4;
}

.video .vol.on {
    mask-image: url(../img/vol-on.svg);
    mask-size: 100% 100%;
    -webkit-mask-image: url(../img/vol-on.svg);
    -webkit-mask-size: 100% 100%;
}

.homepage-slider-slide.active a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.homepage-slider-slide.active {
    opacity: 1;
}

#homepage-slider-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    top: 20px;
    z-index: 2;
}

.homepage-slider-nav-item {
    background: #fff;
    border-radius: 100%;
    border: solid 1px #000;
    cursor: pointer;
    display: block;
    height: 10px;
    margin: 0 .25em;
    width: 10px;
}

.homepage-slider-nav-item.active {
    background: #8cc63f;
}

.homepage-slider-slide-inner {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
    height: 510px;
    margin: 0 auto;
    max-width: 1128px;
    padding: 0 1em 65px;
    width: 100%;
}

.homepage-slider-slide h2 {
    color: #fff;
    font-size: 2.75em;
    padding-bottom: .25em;
    padding-top: 0;
    text-shadow: 2px 2px 3px rgba(0,0,0,.5);
    width: 75%;
	background: rgb(102,102,102,.8);
	padding-left: 5px;
    padding-right:5px;
}

#homepage-slider-buttons {
    display: flex;
    position: relative;
    top: 2em;
    width: 100%;
    z-index: 3;
}

#homepage-slider-buttons a {
    background: #1962ad;
    color: #fff;
    display: block;
    font-size: 1.4em;
    font-weight: 700;
    flex-grow: 1;
    letter-spacing: 1px;
    padding: .5em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .3s;
    width: 50%;
    z-index: 1;
}

#homepage-slider-buttons a:hover {
    background: #165697;
}

#homepage-slider-buttons span {
    display: block;
    font-size: .7em;
    font-weight: 300;
    letter-spacing: none;
    text-transform: none;
}

#homepage-slider-buttons a:first-child {
    margin-right: 1em;
}

@media(max-width: 680px) {
    #homepage-slider-inner,
    .homepage-slider-slide-inner,
    #homepage-slider,
    #homepage-slider-inner {
        height: 350px;
    } 

    .homepage-slider-slide h2 {
        font-size: 2.25em;
        width: 100%;
    }
}

@media(max-width: 450px) {
    .homepage-slider-slide h2 {
        font-size: 2em;
    }

    #homepage-slider-buttons a {
        font-size: 1em;
        letter-spacing: none;
    }

    #homepage-slider-buttons a:first-child {
        margin-right: .5em;
    }
}

/* 501 HOMEPAGE: LINKS */

#block-homepagelinks {
    background: #e6e8ea;
    margin-top: -2em;
    padding-top: 2em;
}

#block-homepagelinks ul:not(.contextual-links) {
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
    margin: 0 auto;
    padding: 1em;
    max-width: 1128px;
}

#block-homepagelinks ul:not(.contextual-links) li {
    background: none;
    flex-grow: 1;
    list-style: none;
    padding: 0 10px 0 0;
    width: 20%;
}

#block-homepagelinks ul:not(.contextual-links) li:last-child {
    padding-right: 0;
}

#block-homepagelinks ul:not(.contextual-links) li a {
    background: #808080;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 1.4em;
    font-weight: 700;
    height: 65px;
    justify-content: center;
    padding: 0 .5em; 
    text-align: center;
    text-decoration: none;
    transition: color .3s;
    width: 100%;
}

#block-homepagelinks ul:not(.contextual-links) li:nth-child(1) a { background: #0097d6; }
#block-homepagelinks ul:not(.contextual-links) li:nth-child(2) a { background: #93278f; }
#block-homepagelinks ul:not(.contextual-links) li:nth-child(3) a { background: #575391; }
#block-homepagelinks ul:not(.contextual-links) li:nth-child(4) a { background: #22873B; }
#block-homepagelinks ul:not(.contextual-links) li:nth-child(5) a { background: #666666; }

#block-homepagelinks ul:not(.contextual-links) li a:hover {
    color: #000;
}

@media(max-width: 800px) {
    #block-homepagelinks ul:not(.contextual-links) li a {
        font-size: 1em;
        height: 55px;
    }
}

@media(max-width: 680px) {
    #block-homepagelinks ul:not(.contextual-links) {
        display: inherit;
    }

    #block-homepagelinks ul:not(.contextual-links) li a {
        height: 45px;
    }

    #block-homepagelinks ul:not(.contextual-links) li {
        padding: 0;
        margin-bottom: .5em;
        width: 100%;
    }
}

/* 502 HOMEPAGE: GENERAL */

#home {
    background: #e6e8ea;
    padding-bottom: 2em;
}

#home-inner {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 1em;
    max-width: 1128px;
    width: 100%;
}

#home-wrapper h2 {
    display: flex;
    font-size: 1.75em;
    font-weight: 700;
    white-space: nowrap;
}

#home-wrapper h2:before,
#home-wrapper h2:after {
    background: #fff;
    content: "";
    display: block;
    height: 10px;
    position: relative;
    top: 9px;
    width: 100%;
}

#home-wrapper h2:before {
    margin-right: 1em;
}

#home-wrapper h2:after {
    margin-left: 1em;
}

/* 503 HOMEPAGE: SOCIAL LINKS */

#home-social {
    display: flex;
}

#home-social a {
    background: url(../img/sprite-footer-logos.png) no-repeat 0 0 #1962ad;
    background-size: auto 22px;
    background-position: 5px 5px;
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
    height: 33px;
    margin: 0 1em;
    text-indent: -9999px;
    width: 33px;
	color:#FFFFFF;
}

#home-social a.instagram {
    background-position: -35px 5px;
}

#home-social a.twitter {
    background-position: -77px 5px;
}

#home-social a.linkedin {
    background-position: -121px 5px;
}

#home-social:before,
#home-social:after {
    background: #fff;
    content: "";
    display: block;
    height: 10px;
    position: relative;
    top: 9px;
    width: 100%;
}

#home-social:before {
    margin-right: 1em;
}

#home-social:after {
    margin-left: 1em;
}

/* 504 HOMEPAGE: QUOTE */

#home-quote {
    background: #0a54a3;
    padding: 4em 0; 
}

#home-quote p {
    box-sizing: border-box;
    color: #9AD1EF;
    font-size: 1.45em;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5em;
    margin: 0 auto;
    max-width: 700px;
    padding: 0 1em;
    text-align: center;
    width: 100%;
}

/* 505 HOMEPAGE: RESOURCES */

#home-resources {
    background: #1C99CE;
}

#home-resources-inner {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 2em 1em 4em;
    max-width: 1128px;
    width: 100%;
}

#home-wrapper #home-resources h2 {
    color: #fff;
}

#home-wrapper #home-resources h2:before,
#home-wrapper #home-resources h2:after {
    background: #c2d8f0;
}

#home-resource-boxes > div {
    display: flex;
}

a.home-resource {
    display: block;
    margin-right: 1em;
    text-decoration: none;
    width: 100%;
}

.home-resource:last-child {
    margin-right: 0;
}

.home-resource-image {
    background-position: top center;
    background-size: cover;
    height: 135px;
}

.home-resource-title {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 70px;
    justify-content: center;
    padding: 0 2em;
}

.home-resource-title span {
    color: #fff;
    font-size: 1.25em;
    font-weight: 500;
    text-align: center;
}

@media (max-width:980px) {
    .home-resource-title span {
        font-size: 1em;
    }
}

@media (max-width:650px) {
    #home-resource-boxes > div {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    a.home-resource {
        margin: 0;
        flex: 0 49%;
        margin-bottom: 1em;
    }

    .home-resource-image {
        height: 100px;
    }

    .home-resource-title {
        height: 50px;
    }

    .home-resource-title span {
        font-size: .9em;
    }
}

/* 506 HOMEPAGE: BLOG */

#home-blog {
}

#home-wrapper #home-blog h2 {
    color: #808080;
}

#home-wrapper #home-blog h2:before,
#home-wrapper #home-blog h2:after {
    background: #e9e9e9;
}

#home-blog-inner {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 2em 1em 4em;
    max-width: 1128px;
    width: 100%;
}

#home-blog-posts {
    display: flex;
}

.home-blog-post {
    border-right: solid 2px #e6e6e6;
    box-sizing: border-box;
    padding: 0 4em 1em;
    position: relative;
    min-width: 0;
    max-width: 33.3333%;
}

.home-blog-post:last-child {
    border-right: none;
}

.home-blog-post img {
    display: block;
    width: 100%;
}

.home-blog-post h3 {
    color: #666666;
    font-size: 1.5em;
}

.home-blog-post p {
    color: #666666;
    font-size: 1.25em;
    line-height: 1.2em;
    word-break: break-word;
}

.home-blog-post a {
    bottom: 0;
    color: #4d4d4d;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    right: 3em;
    text-decoration: none;
}

.home-blog-post a:hover {
    color: #000;
}

@media(max-width:850px) {
    .home-blog-post {
        padding: 0 2em 1em;
    }

    .home-blog-post h3 {
        font-size: 1.25em;
        padding-bottom: 0;
    }

    .home-blog-post p {
        font-size: 1.1em;
    }
}

@media(max-width:650px) {
    #home-blog-posts {
        display: inherit;
    }

    #home-blog-inner {
        padding-bottom: 0;
    }

    .home-blog-post {
        border-bottom: solid 2px #e6e6e6;
        border-right: none;
        padding: 0 0 2em;
        margin-bottom: 2em;
        max-width: 100%;
    }

    .home-blog-post a {
        right: 0;
        bottom: 1.5em;
    }

    .home-blog-post:last-child {
        border: none;
        margin-bottom: 0;
        padding-bottom: 1em;
    }
}

/* 507 HOMEPAGE: STAY INFORMED */

#home-stay-informed {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3em;
    margin-top: 1em;
}

#home-stay-informed > div {
    flex-grow: 1;
    max-width: 334px;
    margin-right: 2em;
    width: 100%;
}

#home-stay-informed > div:last-child {
    margin-right: 0;
}

#home-signup {
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 1.5em;
}

#home-signup img {
    align-self: center;
}

#home-signup h3 {
    color: #666;
    line-height: 1.1em;
    padding-left: 3em;
    padding-right: 3em;
    text-align: center;
}

#home-signup label {
    display: block;
    font-size: .9em;
    padding-bottom: .25em;
}

#home-signup input[type="text"],
#home-signup input[type="tel"],
#home-signup input[type="email"] {
    background: #f2f2f2;
    border: none;
    box-sizing: border-box;
    display: block;
    padding: 5px 10px;
    margin-bottom: 1.25em;
    width: 100%;
}

#home-signup input[type="submit"] {
    background: #1957a0;
    border: none;
    color: #fff;
    padding: 5px 1.5em;
    font-size: 1em;
    font-weight: 600;
    align-self: flex-end;
}

#home-signup p {
    font-weight: 400;
}

#home-signup #success-message {
    display: none;
    color: #119900;
    font-weight: 700;
}

#home-signup #error-message {
    display: none;
    color: #990000;
}

#home-signup input[type="text"].error,
#home-signup input[type="tel"].error,
#home-signup input[type="email"].error {
    background-color: #f2dede;
}

#home-signup input[disabled] {
    opacity: .5;
}

#home-ask {
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 1.5em;
}

#home-ask img {
    align-self: center;
}

#home-ask h3 {
    color: #666;
    line-height: 1.1em;
    padding-left: 3em;
    padding-right: 3em;
    text-align: center;
}

.home-ask-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1.5em 0;
}

.home-ask-section img {
    width: 100px;
}

.home-ask-section p {
    font-size: 1.75em;
    font-weight: 700;
    margin-left:auto;
    margin-right:auto;
}

.home-ask-section a {
    color: #666;
    display: block;
    flex-basis: 100%;
    font-size: 1.15em;
    font-weight: 500;
    padding: .25em 1em;
    text-align: center;
    text-decoration: none;
}

#home-ask-get {
    border-bottom: solid 1px #b8b8b8;
    border-top: solid 1px #b8b8b8;
}

#home-ask-get p {
    color: #1957a0;
}

#home-ask-da p {
    color: #22873B;
}

#home-ask-get a {
    background: #DFE8F6;
}

#home-ask-da a {
    background: #e4f1e0;
}


#knowledge-cafe {
    background: #0a54a3;
    color: #fff;
    font-weight: 600; 
    height: 130px;
    margin-bottom: 2em;
    padding: 1.5em;
    position: relative;
}

#knowledge-cafe a {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
}

#knowledge-cafe span {
    display: block;
}

#knowledge-cafe #line1 {
    color: #9AD1EF;
    font-size: 1.8em;
}

#knowledge-cafe #line2 {
    font-size: 1.5em;
}

#knowledge-cafe #line3 {
    font-size: 1.3em;
    font-weight: 400; 
}

#knowledge-cafe:after {
    background: url(../img/knowledgecafe.png);
    bottom: 0;
    content: "";
    display: block;
    height: 113px;
    position: absolute;
    right: 0;
    width: 122px;
}

@media(max-width: 940px) {
    #home-stay-informed {
        flex-wrap: wrap;
        justify-content: center;
    }

    #home-stay-informed > div#home-ask {
        margin-right: 0;
    }

    #home-stay-informed > div#home-info {
        display: flex;
        flex-basis: 100%;
        justify-content: center;
        margin-top: 2em;
        max-width: 100%;
    }

    #knowledge-cafe {
        flex-shrink: 0;
        margin-right: 2em;
        max-width: 334px;
        width: 100%;
    }
}

@media(max-width: 750px) {
    #home-stay-informed {
        flex-flow: column;
    }

    #home-stay-informed > div {
        max-width: 100%;
    }

    #home-signup {
        margin-bottom: 2em;
    }

    #home-info {
        flex-flow: column;
    }

    #knowledge-cafe {
        max-width: 100%;
    }

    #home-info .didyouknow {
        flex-grow: 1;
        width: 100%;
    }
}

/* 601 MODULES: FAQS */

.faq {
    margin-bottom: 1em;
}

.faq-question {
    color: #1957a0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.3em;
    margin-bottom: .5em;
}

.faq-question:after {
    content: "+";
    padding-left: .5em;
}

.faq.faq-open .faq-question:after {
    content: "-";
}

.faq-answer {
    display: none;
}

.faq.faq-open .faq-answer {
    display: block;
}

/* Buttons and links for blue and green */
.green-button {width: auto;
margin: auto;
font-size: 15px;
font-weight: bold;
border-radius: 50px;
color: #fff !important;
padding: 9px 24px;
background: #00783a;
opacity: .9;
transition: opacity .2s ease;
border: none;
outline: none;
}

.green-buttonsm {background: #00783a; color: #fff !important; font-weight: bold; display: inline-block; padding: 5px; text-align: center; text-decoration: none; border-radius: 50px;font-size:12px}
.blue-buttonsm {background: #0a55a3; color: #fff !important; font-weight: bold; display: inline-block; padding: 5px; text-align: center; text-decoration: none; border-radius: 50px; font-size:12px}

/*background: #00783a; color: #fff !important; font-weight: bold; display: inline-block; padding: 5px; text-align: center; text-decoration: none; }*/
.blue-button {width: auto;
margin: auto;
font-size: 15px;
font-weight: bold;
border-radius: 50px;
color: #fff !important;
padding: 9px 24px;
background: #0a55a3;
opacity: .9;
transition: opacity .2s ease;
border: none;
outline: none;
}

/* color: #fff; display: inline-block; padding: 5px; text-align: center; text-decoration: none; background: #0a55a3; } */
section a.blue-link {color: #0a55a3;}
section a.blue-link:hover {color: #000; }
section a.green-link {color: #00783a;}
section a.green-link:hover {color: #000; }
/* end buttons */

/* modifications for the /forms page */
.left {float: left; width: 50%; padding: 6px 2px;}
.right {float: right; width: 50%; padding: 6px 2px; clear:both;}

/* Form input fields */
#searchbar input[type="text"] {
  border: 2px solid #888;
  border-radius: 4px; }
  
#home-signup input[type="text"], input[type="email"], input[type="tel"] {
  border: 2px solid #888 !important;
  border-radius: 4px; }
  
.contact-form input[type="text"] {padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid #888;
  border-radius: 4px; }
  
.contact-form select {padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid #888;
  border-radius: 4px; }
  
.contact-form input[type="email"] {padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid #888;
  border-radius: 4px; }
  
.contact-form textarea {padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid #888;
  border-radius: 4px; }
  

.contact-form input[type="text"]:focus, select:focus, input[type="email"]:focus, textarea:focus {box-shadow: 0 0 5px rgba(10, 85, 163, 1);
  padding: 12px 20px;
  margin: 8px 0px;
  box-sizing: border-box;
  border: 1px solid rgba(10, 85, 163, 1); }

/* Disclaimer Box */
.disclosure-box {max-height: 190px;
overflow: scroll;
border-color: rgba(0,0,0,.08);
background-color:#666;
color: #fff !important;
padding: 30px;
margin:30px}
.disclosure-box h3 {color: #fff}
#block-disclosure h2 {display:none;}

/* Screen Readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
