@charset "utf-8";
/* CSS Document */

* {
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-size: 1em;
    color: #73767e;
    overflow-x: hidden;
}

h1, .h1 {
    font-size: 48px;
    font-weight: 400;
	line-height: 58px;
}

h2, .h2 {
    font-size: 44px;
    font-weight: 400;
    line-height: 54px;
}

h3, .h3 {
    font-size: 36px;
    font-weight: 400;
}

.white-bg h3 {
    color: #0033ff;
}

h4, .h4 {
    font-size: 22px;
    font-weight: 400;
}

h5, .h5 {
    font-size: 18px;
    font-weight: 400;
}

.white-bg h5 {
    color: #0033ff;
}

b, strong {
    font-weight: 700;
}

p {
    font-size: 18px;
    line-height: 29px;
    padding-bottom: 0px;
}

a {
    color: #0033ff;
    text-decoration: underline;
}

blockquote {
    padding: 15px 0px 15px 15px;
    margin: 0 0 20px -15px;
    font-size: 18px;
    border-left: 3px solid #0033ff;
    line-height: 27px;
    font-style: italic;
}

.white-bg ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    padding: 15px 0;
}

.white-bg li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    padding-bottom: 20px;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

.white-bg li::before {
    content: "";
    display: block;
    height: 9px;
    width: 9px;
    background: #d3e7e6;
    border-radius: 25px;
    position: absolute;
    left: 0;
    top: 9px;
}

.white-bg ol li::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    background: none;
    border-radius: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.white-bg ol li ul li::before {
    content: "";
    display: block;
    height: 9px;
    width: 9px;
    background: #d3e7e6;
    border-radius: 25px;
    position: absolute;
    left: 0;
    top: 9px;
}

.white-bg ol li {
    list-style: unset;
    padding-left: 10px;
}

.white-bg ol li ol {
    padding-top: 15px;
}

.white-bg ol li ol li {
    list-style: lower-alpha;
    padding-left: 25px;
}

.nopadding {
    padding: 0;
}

.nomargin {
    margin: 0;
}

.btn {
    text-decoration: none;
}

.btn-dk-blue, #gdpr-cookie-accept {
    display: inline-block;
    color: #fff;
    background: #0033ff;
    padding: 11px 30px;
    border-radius: 32px;
    position: relative;
    font-size: 20px;
    border: 1px solid #0033ff;
    text-decoration: none;
}

.btn-dk-blue:hover, .btn-dk-blue:focus, #gdpr-cookie-accept:hover, #gdpr-cookie-accept:focus   {
    background: #fff;
    color: #0033ff;
    border: 1px solid #0033ff;
}

.btn-white, .btn-float {
    display: inline-block;
    color: #0033ff;
    background: #fff;
    padding: 11px 30px;
    border-radius: 32px;
    position: relative;
    font-size: 20px;
    border: 1px solid #fff;
    -webkit-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    -moz-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    text-decoration: none;
}

.btn-float {
    position: absolute;
    right: 50%;
    margin-right: -650px;
    margin-top: -100px;
    z-index: 1500;
}

.btn-white:hover, .btn-white:focus {
    background: #0033ff;
    color: #fff;
    border: 1px solid #0033ff;
}

.btn-lt-blue {
    display: inline-block;
    color: #03f ;
    background: #fff ;
    padding: 11px 30px;
    border-radius: 2em;
    position: relative;
    font-size: 20px;
    border: 2px solid #03f;
    font-weight: 700;
    text-decoration: none;
}	

.btn-lt-blue:hover, .btn-lt-blue:focus {
    display: inline-block;
    color: #fff;
    background: #03f;
    border: 2px solid #03f;
}

a.btn-underline {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

    a.btn-underline::after {
        content: "";
        height: 2px;
        width: 100%;
        background-color: #0033ff;
        display: block;
        position: relative;
        bottom: -4px;
        -ms-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -moz-transform-origin: left center;
        -ms-transform-origin: left center;
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transition: -webkit-transform .15s cubic-bezier(.694,0,.335,1);
        transition: -webkit-transform .15s cubic-bezier(.694,0,.335,1);
        -o-transition: transform .15s cubic-bezier(.694,0,.335,1);
        transition: transform .15s cubic-bezier(.694,0,.335,1);
        transition: transform .52s cubic-bezier(.694,0,.335,1),-webkit-transform .15s cubic-bezier(.694,0,.335,1);
    }

.btn-underline:hover::after {
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    -webkit-transform-origin: right center;
    transform-origin: right center;
}

.padding-20 {
    padding: 20px 0;
}

.padding-30 {
    padding: 30px 0;
}

.padding-50 {
    padding: 50px 0;
}

header {
    padding: 36px 0 36px;
    border-bottom: 1px solid #eeeeee;
    width: 100%;
    background: #fff;
    top: 0;
    position: fixed;
    z-index: 9;
}
header.scrolled {
    top: -131px;
}
.alert-wrapper ~ header {
    top: 41px;
}
.alert-wrapper ~ header.scrolled {
    top: -172px;
}
.alert-wrapper.hidden ~ header {
    top: 0;
}
.alert-wrapper.hidden ~ header.scrolled {
    top: -172px;
}
.alert-wrapper ~ header.up {
    top: 0;
}
.sub-header {
    margin-top:124px;
}

.nav-down {
    position: fixed;
    top: 0;
}

.nav-up {
    top: -135px;
    position: fixed;
}

.logo-wrapper {
    display: inline-block;
}

.logo-wrapper img {
    vertical-align: inherit;
}

/*  Navigation  */
.main-nav {
    display: inline-block;
}

.main-nav .navbar-default {
    background-color: transparent;
    border-color: transparent;
    margin: 0;
    border: 0;
}

.main-nav .navbar-default .navbar-collapse, .main-nav .navbar-default .navbar-form {
    border-color: transparent;
}

.navbar-nav > li:after {
    content: "";
    display: block;
    height: 2px;
    background-color: #ffffff;
    width: 0;
    margin: auto;
    opacity: 0;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

.navbar-nav > li:hover:after {
    width: 86%;
    opacity: 1;
}

.navbar-default .navbar-nav > li > a {
    color: #686157;
    font-size: 20px;
    padding: 15px 10px;
    text-decoration: none;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #686157;
    background-color: transparent;
}
.navbar-default .navbar-nav > .active:after {
    width: 86%;
    opacity: 1;
}

/*  Aux Navigation  */
.aux-nav {
    float: right;
    text-align: right;
}

.policy-btn {
    display: inline-block;
}

.nav-dropdown {
    display: inline-block;
    padding-left: 6px;
    position: relative;
}

.nav-dropdown ul {
    display: none;
    text-align: left;
    display: block;
    position: absolute;
    z-index: 9;
    background: #0033ff;
    color: #fff;
    top: 27px;
    padding: 0 22px;
    width: 166px;
    border-radius: 0 0 30px 30px;
}

.aux-nav .btn-dk-blue {
    top: -3px;
}

.nav-dropdown .btn-dk-blue {
    padding: 7px 65px 7px 27px;
    z-index: 10;
    border: 5px solid #fff;
    background-image: url('../img/blue-arrow-down.png');
    background-repeat: no-repeat;
    background-position: 90% 50%;
    background-color: #fff;
    color: #0033ff;
    -webkit-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    -moz-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
}

.nav-dropdown .btn-dk-blue:hover {
    background-image: url('../img/blue-arrow.png');
    background-repeat: no-repeat;
    background-position: 90% 50%;
    border: 5px solid #0033ff;
}

.nav-dropdown li {
    list-style: none;
    overflow: hidden;
    height: 0;
    -webkit-transition: height 200ms ease-in;
    -moz-transition: height 200ms ease-in;
    -o-transition: height 200ms ease-in;
    transition: height 200ms ease-in;
}

.nav-dropdown li a {
    color: #fff;
    text-decoration: none;
}

.nav-dropdown:hover li {
    height: 36px;
}

.nav-dropdown:hover li:first-child {
    padding-top: 34px;
    height: 72px;
}

/*  Alert Message  */
.alert-wrapper {
    padding: 0 15px;
}

.alert-wrapper.red {
    background: #cc4747;
    color: #fff;
}

.alert-wrapper .alert-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 6px 28px;
    text-align: center;
}

.alert-container p {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    margin: 0;
    padding-bottom: 0px;
}

.alert-container a {
    color: #fff;
    text-decoration: underline;
}

.alert-container .btn-white {
    padding: 3px 40px;
    font-weight: 700;
}

#contrast-close {
    font-size: 22px;
    color: #fff;
    opacity: 1;
    background: transparent;
    border-radius: 50px;
    width: 28px;
    height: 28px;
    position: absolute;
    float: right;
    top: 5px;
    border: 2px solid #fff;
    right: 11px;
}

/*  Home Page  */
.hero-home h1 {
    color: #0033ff;
    font-weight: 900;
}

.hero-content {
    padding: 0 0 4.16em;
}

.hero-content.btn-lt-blue {
    font-size: 28px;
}

.hero-image {
    float: left;
    width: 50%;
    position: relative;
}

.hero-image img {
    padding-top: 40px;
	padding-left: 20px;
	padding-right:20px;
    position: absolute;
    /*right: -125px;*/
	
}

.hero-content:after {
    clear: both;
}

.hero-content p {
    padding-top: 0px;
    padding-bottom: 12px;
}

.lt-blue-bg {
    background-color: #d3e7e6;
    padding: 70px 0;
}

.lt-blue-bg.no-pad.col-2-flex {
    padding: 0;
}

.lt-blue-bg.watermark {
    background-color: #d3e7e6;
    background-image: url('../img/lt-blue-watermark.png');
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 200px 0 100px;
}

.lt-blue-bg h2 {
    color: #0033ff;
}

.heading-mod h2 {
    font-size: 60px;
    line-height: 68px;
}

.heading-mod p {
    font-size: 19px;
    line-height: 28px;
}

.video-wrap {
    padding-top: 120px;
}

.video-wrap img {
    left: -167px;
    position: relative;
}
#video-modal .modal-content {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background-color: transparent;
}
#video-modal .modal-header {
    padding: 15px;
    border-bottom: none;
}
#video-modal button.close {
    padding: 0;
    cursor: pointer;
    background: #fff;
    border: 0;
    -webkit-appearance: none;
    opacity: 1;
    color: #0033ff;
    font-size: 26px;
    width: 30px;
    border-radius: 20px;
    height: 30px;
}
#video-link {
    cursor: pointer;
}

.list-cta {
    padding-left: 15%;
}

.list-cta h3 {
    padding-bottom: 15px;
    padding-top: 10px;
}

.list-cta ul {
    padding: 0;
}

.list-cta li {
    list-style: none;
    font-size: 24px;
    padding-bottom: 35px;
}

.list-cta li strong {
    display: block;
    font-size: 28px;
}

.list-cta .btn-white {
    font-size: 26px;
    font-weight: 700;
}

.dk-blue-bg {
    background: #0033ff;
}

.dk-blue-bg h3 {
    color: #fff;
}

.logo-section {
    text-align: center;
    padding: 55px 0 50px;
}

.logo-section ul {
    padding: 0;
    display: table;
    width: 100%;
    padding-top: 54px;
}

.logo-section li {
    list-style: none;
    display: table-cell;
}

.logo-section li:first-child {
    text-align: left;
}

.logo-section li:last-child {
    text-align: right;
}

.white-bg {
    padding: 50px 0;
}

.white-bg img {
    max-width: 100%;
}

.cta-2col {
    padding: 100px 0;
}
.tab-content .cta-2col {
    padding: 0;
}

.white-bg h2 {
    color: #0033ff;
}

.cta-2col .heading-mod h2 {
    padding-bottom: 15px;
    margin-top: 0;
}

.cta-2col .heading-mod p {
    font-size: 18px;
    line-height: 29px;
    padding-bottom: 30px;
}

.cta-2col .left-col .btn-lt-blue {
    padding: 16px 50px;
    font-size: 26px;
}

.cta-2col .left-col {
    float: left;
    width: 50%;
}

.cta-2col .right-col {
    padding-left: 8%;
    float: right;
    width: 50%;
}

.icon-grid ul {
    padding: 0;
    -webkit-column-count: auto;
    -moz-column-count: auto;
    column-count: auto;
}

.icon-grid li {
    list-style: none;
    float: left;
    width: 33%;
    min-height: 158px;
    text-align: center;
    margin-bottom: 73px;
    padding: 0;
}

.icon-grid li:before {
    display: none;
}

.area-grid ul {
    padding: 0;
    text-align: center;
    -webkit-column-count: auto;
    -moz-column-count: auto;
    column-count: auto;
}

.area-grid li {
    list-style: none;
    display: inline-block;
    width: 19%;
    text-align: center;
    margin: 0 auto 30px;
    padding: 0;
}

.area-grid li:before {
    display: none;
}

.area-grid li a {
    text-align: center;
    padding: 21px 21px;
    background: #fff;
    -webkit-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    -moz-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    border-radius: 50px;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    width: 74px;
    height: 74px;
    text-align: center;
    text-decoration: none;
}

.area-grid li a:hover {
    background: #0033ff;
    color: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.testimonial-slider {
    background-image: url('../img/white-watermark.png');
    background-repeat: no-repeat;
    padding-top: 100px;
    background-position: 0% 100%;
}

.dk-blue-bg h2 {
    color: #fff
}

.slide-content {
    padding-top: 50px;
}

.slick-slide .test-img img {
    display: block;
    position: relative;
    bottom: -20px;
}

.slide-controls .slick-track {
    min-width: 448px;
}

.slick-prev::before, .slick-next::before {
    position: absolute;
    content: "";
    padding: 8px;
    box-shadow: 1px -1px 0 1px #fff inset;
    border: solid transparent;
    border-width: 0 0 2rem 2rem;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.slick-next::before {
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}

.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev {
    left: -100px;
}

.slick-next {
    right: -100px;
}


.testimonial-slider h3 {
    font-weight: normal;
    line-height: 30px;
    padding-bottom: 21px;
    font-size: 24px;
}

.testimonial-slider p {
    font-size: 19px;
    line-height: 28px;
    color: #fff;
}

.testimonial-slider p span {
    color: #59b7b1;
}

.slide-container {
    position: relative;
}

.slide-controls {
    background: #fff;
    position: absolute;
    bottom: 0;
}

.slide-controls .control-item {
    list-style: none;
    display: inline-block;
    padding: 15px;
    position: relative;
    cursor: pointer;
}

.slide-controls .control-item::after {
    content: "";
    display: block;
    height: 2px;
    background-color: #59b7b1;
    width: 0;
    margin: auto;
    opacity: 0;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    transition: all 0.15s linear;
    bottom: -13px;
    position: relative;
}

.slide-controls .control-item:hover:after, .slide-controls .slick-current .control-item:after {
    width: 65%;
    opacity: 1;
}

.slide-controls-container .slick-slide {
    width: auto !important;
    float: none;
    display: inline-block;
}

.testimonial-single-item {
    text-align: center;
    margin-top: -50px;
    padding-bottom: 30px;
}

.testimonial-single-item h3 {
    padding: 0;
}

.testimonial-single-item h3 p {
    padding: 0;
    margin: 0;
}
.news-container {
    display: flex;
    flex-wrap: wrap;
}
.news-item {
    border: 1px solid #ebebeb;
    position: relative;
    width: 30%;
    margin: 0 15px 30px;
}
.news-grid h2 {
    font-size: 48px;
    line-height: 58px;
    font-weight: 900;
    text-align: center;
    padding-bottom: 50px;
}

.news-grid-img {
    min-height: 230px;
}



.news-item:hover {
    -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 57, 114, 0.2);
    -moz-box-shadow: 0px 0px 40px 0px rgba(0, 57, 114, 0.2);
    box-shadow: 0px 0px 40px 0px rgba(0, 57, 114, 0.2);
    margin-top: -10px;
}

.news-item img {
    max-width: 100%;
    position: relative;
}

.news-content {
    padding: 30px 20px 50px;
}

.meta-content {
    color: #cbad7c;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
}

.news-content h3 a {
    color: #0033ff;
    font-size: 32px;
    line-height: 48px;
    margin-top: 10px;
}

.news-content p {
    font-size: 24px;
    line-height: 38px;
}

.news-content a {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.news-link {
    text-align: center;
    padding-top: 100px;
}


/*  State Template  */
.col-2-flex {
    display: flex;
    align-items: center;
    max-width: 1440px;
    margin: auto;
}

.white-bg .col-2-flex {
    padding: 25px 0;
}
/*.subpage-banner .col-2-flex {
    background-image: url('../img/header-base.png');
    background-repeat: no-repeat;
}*/

.subpage-banner {
    background-image: url('../img/header_watermark.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.subpage-banner.dark-blue {
    background-color: #0033ff;
}

.subpage-banner.light-blue {
    background-color: #59b7b1;
}

.flex-left {
    width: 51%;
}

.flex-content {
    max-width: 639px;
    padding-left: 153px;
}

.banner-content {
    padding: 60px 0 40px;
}

.col-2-flex img {
    max-width: 100%;
}

.lt-blue-bg .flex-content p {
    line-height: 27px;
    font-size: 18px;
    color: #0033ff;
    padding: 10px 0 24px;
}

.subpage-banner h1 {
    color: #fff;
    font-weight: 700;
    font-size: 68px;
    line-height: 80px;
    margin-top: 0;
    margin-bottom: 15px;
}

.subpage-banner p {
    font-size: 24px;
    color: #fff;
    line-height: 36px;
}

.subpage-banner .btn-white {
    margin-top: 23px;
    font-size: 16px;
    font-weight: 600;
}
.banner-nav .flex-right {
    background-color: #e2e2e2;
    width: 49%;
}
.banner-nav-menu {
    text-align: right;
    padding: 40px 143px 40px 0;
}
.banner-nav-menu h2 {
    font-size: 22px;
    color: #0033ff;
}
.banner-nav-menu li {
    list-style: none;
}

.banner-nav-menu li a {
    color: #686158;
    font-size: 18px;
    padding-bottom: 30px;
    display: inline-block;
    text-decoration:none;
}
.banner-nav-menu li a::after {
    content: "";
    display: block;
    height: 2px;
    background-color: #686157;
    width: 100%;
    margin: auto;
    opacity: 1;
    position: relative;
    bottom: -8px;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    transition: all 0.15s linear;
}
.heading-2col {
    padding: 25px 0;
}

.heading-2col h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 64px;
    padding-right: 8%;
    margin-top: 0px;
}

.heading-2col p {
    font-size: 18px;
    line-height: 27px;
    color: #686158;
    padding-bottom: 15px;
}

.product-grid {
    padding-top: 25px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.product-item {
    flex-basis: 30%;
    text-align: center;
    padding: 86px 0px 0;
    margin: 15px 15px;
    -moz-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    -webkit-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    height: 340px;
    text-decoration: none;
}

.product-item:hover {
    text-decoration: none;
}

.product-item p {
    max-width: 225px;
    margin: auto;
}

.product-item:hover {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.full-width-cta h2 {
    font-size: 68px;
    color: #0033ff;
}

.full-width-img {
    text-align: center;
    margin: 50px 0;
}

.full-width-img img {
    max-width: 100%;
}

.full-width-cta ul {
    padding: 0;
    -moz-column-count: 2;
    -ms-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
}

.full-width-cta li {
    list-style: none;
    position: relative;
    padding-left: 36px;
    padding-bottom: 15px;
    display: inline-block;
}

.full-width-cta li::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 25px;
    background-color: #d3e7e6;
    position: absolute;
    top: 6px;
    left: 0;
}

.sub-heading h2 {
    font-size: 48px;
    line-height: 64px;
    padding-bottom: 10px;
    margin-top: 0px;
}

.sub-heading p {
    padding-bottom: 10px;
}

.left-image-cta, .right-image-cta {
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.left-image, .right-content, .right-image, .left-content {
    width: 50%;
}

.left-image img {
    position: relative;
    left: -150px;
}

.right-content {
    padding-left: 10%;
}

.right-image {
    order: 2;
}

.right-image img {
    left: 15px;
    position: relative;
}

.left-image-cta h3, .right-image-cta h3 {
    color: #0033ff;
    font-size: 36px;
    line-height: 48px;
}

.left-image-cta ul, .right-image-cta ul {
    padding: 0;
}

.left-image-cta li, .right-image-cta li {
    list-style: none;
    position: relative;
    padding-left: 36px;
    padding-bottom: 24px;
}

.left-image-cta li:before, .right-image-cta li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 25px;
    background-color: #d3e7e6;
    position: absolute;
    top: 6px;
    left: 0;
}

.select-state {
    background: #fff;
    padding: 80px 0;
}

.select-state .agent-fields {
    width: 100%;
}

.icon-list {
    padding-bottom: 40px;
}

.icon-list img {
    padding-right: 20px;
}

.icon-list a {
    font-size: 18px;
    position: relative;
    text-decoration: none;
}

.icon-list a:hover {
    text-decoration: none;
}

.icon-list a::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #0033ff;
    bottom: -7px;
    left: 0;
}

.heading-col {
    width: 50%;
    padding-left: 6%;
    padding-top: 100px;
}

.btn-col {
    text-align: right;
    padding-right: 6%;
    width: 50%;
    padding-top: 100px;
}

.heading-col h2 {
    margin: 0;
    font-size: 36px;
}

.btn-col .btn-white {
    font-size: 16px;
    font-weight: 600;
}

/*   Form Elements   */
label {
    display: inline-block;
    font-size: 18px;
    color: #0033ff;
    padding-bottom: 15px;
    font-weight: 700;
}

input.form-control {
    border: 1px solid #d9e1e2;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;



    width: 100%;
    border-radius: 0;
}

textarea.form-control {
    border: 1px solid #d9e1e2;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    min-height: 200px;
    border-radius: 0;
}

input:focus, textarea:focus {
    border: 2px solid #0033ff;
    -webkit-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    -moz-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
}

select.form-control {
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    -moz-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    background-image: url('../img/grey-arrow-down.png');
    background-position: 94% 50%;
    background-repeat: no-repeat;
    width: 100%;
    height: 50px;
    padding: 0 20px;
}

select::-ms-expand {
    display: none;
}

.checkbox strong, .radio strong {
    display: block;
}

.control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 18px;
}

.control.control--checkbox.checkbox-inline {
    display: inline-block;
    padding-left: 29px;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: transparent;
    border: 1px solid #f2f2f2;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.control input:checked ~ .control__indicator {
    background: transparent;
    border: 2px solid #0033ff;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.control__indicator::after {
    content: '';
    position: absolute;
    display: none;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.control--checkbox .control__indicator::after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #0033ff;
    border-width: 0 2px 2px 0;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.control input:checked ~ .control__indicator::after {
    display: block;
}

.control.control--radio.radio-inline {
    display: inline;
    padding-left: 29px;
}

.control--radio .control__indicator {
    border-radius: 50%;
}

.control--radio .control__indicator::after {
    left: 4px;
    top: 4px;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: #0033ff;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.control input:checked ~ .control__indicator {
    background: #fff;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.sf-fieldWrp {
    padding-bottom: 40px;
}

.btn-group {
    display: inline-block;
    padding-right: 10px;
}

/*  Agent Search  */
#zip-search, .get-coverage {
    background-image: url('../img/header-base.png');
    background-repeat: no-repeat;
    height: 680px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background-size: cover;
}

#zip-search .container {
    margin-top: -60px;
}

.agent-heading .row {
    display: flex;
    align-items: center;
}

.agent-heading h1 {
    font-size: 68px;
    line-height: 120px;
    color: #fff;
}

.agent-heading p {
    font-size: 24px;
    line-height: 36px;
    color: #fff;
}

.zip-search-form, .zip-search-form form {
    display: flex;
    align-items: flex-end;
    background: #fff;
    padding: 30px 30px 40px;
}
.state-form select {
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    -moz-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    background-image: url('../img/grey-arrow-down.png');
    background-position: 94% 50%;
    background-repeat: no-repeat;
    width: 100%;
    height: 50px;
    padding: 0 20px;
}
.state-form label {
    display: block;
}
.agent-fields {
    float: left;
    padding-right: 15px;
}

.agent-fields select, .agent-fields input {
    height: 52px;
    border-radius: 0;
}

.agent-fields input {
    border: 1px solid #d9e1e2;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.agent-fields select {
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    -moz-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    background-image: url('../img/grey-arrow-down.png');
    background-position: 94% 50%;
    background-repeat: no-repeat;
}

.agent-fields.agent-state {
    width: 25%;
}

.agent-fields.agent-city {
    width: 25%;
}

.agent-fields.agent-zip {
    width: 18%;
}

.agent-fields.agent-radius {
    width: 16%;
}

.agent-fields.zip-search-button {
    width: 16%;
    padding-right: 0;
}

.agent-fields.zip-search-button input {
    width: 100%;
    border-radius: 32px;
    border: 1px solid #0033ff;
}

.tab-content .agent-fields {
    float: left;
    padding-right: 0;
    width: 100%;
}

.agent-results {
    padding: 100px 0;
}

.agent-results h2 {
    color: #0033ff;
    text-align: center;
}

.agent-item {
    padding: 54px 0 24px;
    border-bottom: 1px solid #ebebeb;
    display: flex;
    align-items: flex-start;
}

.premiere-agent {
    color: #bf9a5e;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 5px
}

.agent-info span {
    color: #0033ff;
    font-size: 24px;
    line-height: 36px;
    display: block;
}

.agent-info span.agent-distance, .agent-info span.agent-web {
    display: inline-block;
    padding-right: 30px;
}

.agent-info span.agent-distance {
    font-size: 18px;
    color: #686158
}

.agent-info span.agent-web {
    font-size: 18px;
    color: #0863a6;
}

.agent-location {
    font-size: 18px;
    color: #0863a6;
    position: relative;
    padding-left: 62px;
}

.agent-location::before {
    content: "";
    display: block;
    background-image: url('../img/ico_location.png');
    background-repeat: no-repeat;
    position: absolute;
    left: 30px;
    top: 3px;
    width: 18px;
    height: 24px;
}

.agent-location p {
    padding-bottom: 0;
}

.agent-phone {
    position: relative;
    padding-left: 35px;
}

.agent-phone:before {
    content: "";
    display: block;
    background-image: url('../img/ico_phone.png');
    background-repeat: no-repeat;
    position: absolute;
    left: -2px;
    top: 3px;
    width: 25px;
    height: 25px;
}

.agent-phone a {
    font-size: 18px;
    color: #686158
}

.zip-search-form.state-form form {
    width: 100%;
}

.zip-search-form.state-form .agent-fields {
    width: 77.667%;
    padding-right: 30px;
}

.zip-search-form.state-form .zip-search-button {
    width: 19%;
    padding-right: 0;
    padding-left: 19px;
}

.get-coverage {
    height: 600px;
}

.get-coverage.coverage-images {
    height: 861px;
    padding-top: 40px;
    display: block;
}

.get-coverage h2, .get-coverage p {
    color: #fff;
}

.get-coverage-form {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 30px 30px 40px;
    text-align: center;
}

.coverage-column {
    width: 26%;
}

.coverage-column-last {
    width: 20%;
}

.accordion {
    background-color: transparent;
    color: #0033ff;
    cursor: pointer;
    padding: 18px;
    padding-right: 38px;
    width: 100%;
    text-align: left;
    border: 1px solid #ebebeb;
    outline: none;
    transition: 0.15s;
    border-bottom: none;
    font-size: 18px;
    font-weight: 700;
    background-image: url('../img/grey-arrow-down.png');
    background-repeat: no-repeat;
    background-position: 97% 48%;
}

.image-container {
    display: flex;
    height: 331px;
    padding-top: 50px;
    position: relative;
}

.coverage-images__image1 {
    width: 25%;
    position: relative;
}

.coverage-images__image1 img {
    max-width: 150px;
    border-radius: 100px;
    position: absolute;
    bottom: 0;
}

.coverage-images__image2 {
    width: 25%;
    position: relative;
}

.coverage-images__image2 img {
    max-width: 190px;
    border-radius: 300px;
    position: absolute;
    top: 15px;
}

.coverage-images__image3 {
    width: 33%;
    text-align: center;
    position: relative;
}

.coverage-images__image3 img {
    max-width: 300px;
    border-radius: 350px;
}

.coverage-images__image4 {
    width: 19%;
    position: relative;
}

.coverage-images__image4 img {
    max-width: 150px;
    border-radius: 100px;
    position: absolute;
    bottom: -55px;
    right: 0;
}

.accordion.last {
    border-bottom: 1px solid #ebebeb;
}

.accordion.active {
    background-image: url('../img/grey-arrow.png');
}

button.accordion.active {
    border-bottom: 1px solid #ebebeb;
}

.panel {
    padding: 20px 18px 0;
    background-color: white;
    display: none;
    overflow: hidden;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.panel p {
    padding-bottom: 0;
}

.tab-content .accordion-list {
    width: 91%;
    margin: auto;
}
.lt-blue-bg .accordion {
    background-color: #fff;
    border-color: #0033ff;
}
button.accordion.active {
    border-bottom: 1px solid #0033ff;
}
.tab-content .panel {
    background-color: transparent;
}

.nav-tabs-justified, .nav-tabs.nav-justified {
    border-bottom: 0;
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    padding: 0;
    text-align: center;
}
.nav-justified > li, .nav-tabs.nav-justified > li {
    padding-left: 0;
}

.nav.nav-tabs.nav-justified li::before {
    display: none;
}

.agent-tabs tabs.nav-justified > .active > a, .agent-tabs .nav-tabs.nav-justified > li > a {
    border: 0;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    color: #0033ff;
    display: inline-block;
    margin: auto;
}

.agent-tabs .nav-tabs.nav-justified > .active > a:hover, .agent-tabs .nav-tabs-justified > .active > a:focus, .agent-tabs .nav-tabs.nav-justified > .active > a:focus {
    border: 0;
    border-bottom-color: transparent;
    background-color: transparent;
}

.agent-tabs .nav > li > a:hover, .agent-tabs .nav > li > a:focus {
    text-decoration: none;
    background-color: transparent;
}

.agent-tabs .nav > li > a::after {
    content: "";
    display: block;
    height: 2px;
    background-color: #686157;
    width: 100%;
    margin: auto;
    opacity: 1;
    position: relative;
    bottom: -8px;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

.agent-tabs .nav > li.active > a:after {
    width: 100%;
    opacity: 0;
}
/*  General Subpage Elements  */
.condensed-content {
    padding: 25px 0;
}

.cta-3-col {
    text-align: center;
    padding: 50px 0;
}

.cta-3-col img {
    padding-bottom: 25px;
}

.cta-3-col h4 {
    text-transform: uppercase;
    padding-bottom: 15px;
    font-weight: 900;
}

.cta-fullwidth-bg {
    margin: 0 auto;
    height: 450px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.full-width-content {
    color: #fff;
    padding: 5% 0 9%;
}

.full-width-content h2 {
    color: #fff;
}

.full-width-content p {
    color: #fff;
}

.full-width-content .btn.btn-white {
    padding: 11px 60px;
}

.lt-blue-bg .heading-2col p {
    color: #73767e;
}

.tab-content .block-no-image {
    background: #fff;
    text-align: left;
    padding: 20px 40px 40px;
}
.lt-blue-bg .block-image {
    background: #fff;
    padding: 38px;
}
.block-image img {
    display: inline;
    padding-bottom:18px;
    padding-right:20px;
}
.block-image h4 {
    display: inline;
    font-size: 24px;
    color: #0033ff;
    text-transform: uppercase;
}
.lt-blue-bg .heading-2col .block-image p {
    font-size: 18px;
    color: #686158;
}


.block-with-image {
    background: #fff;
    text-align: left;
}

.block-with-image:hover {
    -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 57, 114, 0.2);
    -moz-box-shadow: 0px 0px 40px 0px rgba(0, 57, 114, 0.2);
    box-shadow: 0px 0px 40px 0px rgba(0, 57, 114, 0.2);
    margin-top: -10px;
}

.block-with-image img {
    max-width: 100%;
}

.block-with-image .content-block {
    padding: 15px 35px 40px;
}

.agent-contact .center-col {
    padding-left: 75px;
}
.agent-contact .right-col {
    padding-left: 35px;
}

.agent-contact h5 {
    font-weight:900;
}
.icon-row {
    padding: 20px 15px;
}
.icon-row img {
    display: inline;
    padding-bottom: 18px;
    padding-right: 20px;
}
.icon-row h4 {
    display: inline;
    font-size: 24px;
    color: #0033ff;
    text-transform: uppercase;
}
.subheading {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #bf9a5e;
}

.block-with-image .content-block h3 {
    font-size: 30px;
    font-weight: 900;
    line-height: 48px;
    color: #0033ff;
    margin-top: 4px;
    margin-bottom: 26px;
}

.content-block a {
    font-size: 24px;
    text-decoration: none;
}
/*  Footer  */
.page-body {
    position: relative;
    min-height: 100vh;
    padding-bottom: 0px;
}
footer {
    background: #686158;
    color: #fff;
    padding: 70px 0 50px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.footer-main {
    padding-bottom: 35px;
}

.footer-logo, .footer-social {
    display: inline-block;
}

.footer-social {
    padding-left: 0px;
}

.footer-social .fab {
    background: #fff;
    color: #0033ff;
    padding: 18px 0px;
    font-size: 20px;
    border-radius: 50px;
    width: 56px;
    height: 56px;
    text-align: center;
    margin-right: 15px;
}

.footer-social a .fab {
    /*color: #fff;*/
}

.footer-social a:hover .fab {
    background: #bf9a5e;
    color: #fff;
}

.footer-nav {
    float: right;
}

.footer-nav ul {
    padding: 0;
}

.footer-nav li {
    list-style: none;
    display: inline-block;
    padding: 15px 0 15px 30px;
}

.footer-nav li a {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
}

.footer-copyright {
    padding-top: 0px;
}

.footer-left, .footer-right {
    display: inline-block;
}

.footer-right {
    float: right;
    position: relative;
    top: -9px;
}

.footer-right p {
    display: inline-block;
    padding-right: 25px;
}
.footer-right a {
    color: #fff;
}



/* Cookie Dialog */
.popup::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 11;
    opacity: .6;
}
#gdpr-cookie-message {
    position: fixed;
    right: 0;
    left: 0;
    width: 481px;
    background-color: #fff;
    padding: 0;
    border-radius: 0px;
    box-shadow: 0 6px 6px rgba(0,0,0,0.25);
    margin-left: 30px;
    z-index: 99999;
    margin: auto;
    top: 28%;
}

#gdpr-cookie-message h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    background-color: #0033ff;
    padding: 20px 15px;
    margin: 0;

}

#gdpr-cookie-message p, #gdpr-cookie-message ul {
    color: #686158;
    padding: 15px;
}

#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: right;
}

#gdpr-cookie-message li {
    width: 49%;
    display: inline-block;
}

#gdpr-cookie-message a {
    color: #0033ff;
    text-decoration: underline;
}







button#gdpr-cookie-advanced {
    display: none;
    background: white;
    color: #21df93;
}

#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}

#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}
.sfPageEditor * {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.sfPageEditor header, .sfPageEditor footer {
    position: relative;
}
.sfPageEditor .active {
    background-image: none;
}

.sfPageEditor li:before {
    display: none;
}

.sfPageEditor input {
    border: solid 1px;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: inherit;
    width: inherit;
}

.sfPageEditor label {
    display: inherit;
    font-size: inherit;
    color: #323466;
    padding-bottom: 0;
    font-weight: inherit;
}

.sf-backend-wrp .checkbox.designer-check {
    padding-top: 10px;
}
sfToolboxPane

.sf-backend-wrp .checkbox.designer-check input[type="checkbox"], .sf-backend-wrp .checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px\9;
    width: 90px;
    top: -1px;
}
.sfPageEditor .flex-col {
    width: 50%;
}
.sfPageEditor #gdpr-cookie-message {
    display:none;
}
.sfPageEditor.popup:before {
    display:none;
}
.zeLayoutMode .ZoneEditorMultipage .RadDock.rdCollapsed.zeToolboxItem, .sfPageEditor.zeLayoutMode .RadDock.rdCollapsed.zeToolboxItem {
    height: 93px !important;
    overflow: hidden;
}
.RadDock .rdTable .rdTitleBar .bayshore-layouts {
    padding: 64px 0 0 0px;
    height: 28px;
}
.RadDock .rdTable .rdTitleBar .bayshore-banner-nav {
    background-image: url('../img/admin-images/banner-nav.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-testimonial-slider {
    background-image: url('../img/admin-images/testimonial-slider.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-tabbed-content {
    background-image: url('../img/admin-images/tabbed-content.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-2col-cta{
    background-image: url('../img/admin-images/2col-cta.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-agent-contact-content {
    background-image: url('../img/admin-images/agent-contact-content.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-product-grid {
    background-image: url('../img/admin-images/product-grid.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-dark-bg {
    background-image: url('../img/admin-images/dark-bg.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-white-bg {
    background-image: url('../img/admin-images/white-bg.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-lt-blue-bg {
    background-image: url('../img/admin-images/lt-blue-bg.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-2col-cta-no-button {
    background-image: url('../img/admin-images/2col-cta-no-button.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-footer {
    background-image: url('../img/admin-images/footer.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-header {
    background-image: url('../img/admin-images/header.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-logo-gallery {
    background-image: url('../img/admin-images/logo-gallery.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-icon-list {
    background-image: url('../img/admin-images/icon-list.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-lt-blue-watermark {
    background-image: url('../img/admin-images/lt-blue-watermark.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-cta-3-col {
    background-image: url('../img/admin-images/cta-3-col.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-condensed-content {
    background-image: url('../img/admin-images/condensed-content.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-select-state {
    background-image: url('../img/admin-images/select-state.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-2col-heading {
    background-image: url('../img/admin-images/2col-heading.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-condensed-content {
    background-image: url('../img/admin-images/condensed-content.png') !important;
}

.RadDock .rdTable .rdTitleBar .bayshore-agent-contact {
    background-image: url('../img/admin-images/agent-contact.png') !important;
}

.RadDock .rdTable .rdTitleBar .bayshore-agent-contact-icon {
    background-image: url('../img/admin-images/agent-contact-icon.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-2col-lt-blue {
    background-image: url('../img/admin-images/2col-lt-blue.png') !important;
}
.RadDock .rdTable .rdTitleBar .bayshore-subpage-banner {
    background-image: url('../img/admin-images/subpage-banner.png') !important;
}

.marketing-requests .btn-dk-blue {
    width: 300px;
    margin: 0px auto;
    margin-bottom: 20px;
    display: block;
}

@media screen and (max-width: 1430px) {
    .flex-content {
        padding-left: 128px;
    }
}
@media screen and (max-width: 1300px) {
    .flex-content {
        padding-left: 80px;
    }
}
@media screen and (max-width: 1200px) {
    .navbar-default .navbar-nav > li > a {
        font-size: 16px;
        padding: 15px 7px;
    }

    header .btn-dk-blue {
        font-size: 16px;
        padding: 11px 25px;
    }

    .nav-dropdown .btn-dk-blue {
        padding: 7px 48px 7px 27px;
    }

    .nav-dropdown ul {
        top: 25px;
        width: 136px;
    }

    .nav-dropdown li a {
        color: #fff;
        font-size: 14px;
    }
    .banner-nav-menu {
        padding: 40px 123px 40px 0;
    }

    .hero-image img {
        right: auto;
        position: relative;
        max-width: 125%;
    }

    .slide-content {
        padding-top: 0;
    }

    .slide-content h2 {
        font-size: 62px;
    }

    .testimonial-slider h3 {
        font-weight: normal;
        line-height: 46px;
        padding-bottom: 21px;
        font-size: 28px;
    }

    .slide-controls {
        bottom: 0;
    }

    .slide-controls.slick-slider .slick-track {
        width: auto;
        min-width: 448px;
    }

    .slide-controls li {
        padding: 13px;
    }

    .flex-left {
        width: 65%;
    }

    .flex-content {
        max-width: 639px;
        padding-left: 122px;
        padding-right: 32px;
    }

    .flex-img img {
        max-width: 100%;
    }

    .left-image img, .right-image img {
        max-width: 100%;
    }

    .left-image img {
        position: relative;
        left: 0;
    }

    .btn-float {
        right: 15px;
        margin-right: 0px;
    }
}

@media screen and (max-width:991px) {
    header {
        padding: 17px 0;
        border-bottom: 1px solid #eeeeee;
        -moz-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
        -webkit-box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
        box-shadow: 0px 7px 25px 0px rgba(0, 57, 114, 0.15);
    }
    .sub-header {
        margin-top: 90px;
    }
    .nav-down {
        position: relative;
        top: auto;
    }

    .nav-up {
        top: auto;
        position: relative;
    }

    .main-nav {
        display: inline-block;
        float: right;
    }

    .navbar {
        position: initial;
    }

    .navbar-toggle {
        display: block;
    }

    .collapsing {
        position: initial;
        height: inherit;
        overflow: auto;
        overflow-x: auto;
        -webkit-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: 0.15s;
        transition-duration: 0.15s;
        -webkit-transition-timing-function: linear;
        transition-timing-function: linear;
    }

    .main-nav .navbar-default .navbar-collapse {
        border-color: transparent;
        visibility: visible;
        position: absolute;
        width: 100%;
        background: white;
        top: 92px;
        bottom: 0;

        z-index: 99999;
        height: 1000px !important;
        opacity: 1;
        padding-top: 44px;
        display: block;
        right: -100%;
        -moz-box-shadow: 0px 27px 25px -20px rgba(0, 57, 114, 0.15) inset;
        -webkit-box-shadow: 0px 27px 25px -20px rgba(0, 57, 114, 0.15) inset;
        box-shadow: 0px 27px 25px -20px rgba(0, 57, 114, 0.15) inset;
        overflow-x: hidden;
    }

    .main-nav .navbar-default .navbar-collapse.collasping, .main-nav .navbar-default .navbar-collapse.collapse.in {
        right: 0;
    }

    .collapse.in {
        display: block !important;
    }

    .navbar-nav {
        float: none;
        margin: 0 auto 40px;
        width: 750px;
    }

    .aux-nav.mobile {
        display: block;
        float: none;
        text-align: left;
        width: 750px;
        margin: 0 auto 20px;
    }

    .nav-dropdown.mobile {
        width: 750px;
        margin: auto;
        display: block;
    }

    .nav-dropdown.mobile .btn-dk-blue {
        padding: 0;
        z-index: 10;
        border: none;
        background-image: none;
        background-repeat: no-repeat;
        background-position: 90% 50%;
        background: none;
        color: #0033ff;
        font-size: 18px;
        font-weight: 900;
        text-transform: uppercase;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .nav-dropdown ul {
        text-align: left;
        display: block;
        position: relative;
        z-index: 9;
        background: transparent;
        color: #0033ff;
        top: auto;
        padding: 10px 0 0;
        width: auto;
        border-radius: 0;
        column-count: 2;
    }

    .nav-dropdown li {
        list-style: none;
        overflow: visible;
        height: auto;
    }

    .nav-dropdown:hover li {
        height: auto;
    }

    .nav-dropdown:hover li:first-child {
        padding-top: 0;
        height: auto;
    }

    .nav-dropdown li a {
        color: #696159;
        font-size: 18px;
        line-height: 36px;
    }

    .navbar-nav > li {
        float: none;
    }

    .navbar-default .navbar-toggle {
        border-color: transparent;
        margin-top: 5px;
    }

    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
        background-color: transparent;
    }

    .navbar-toggle .icon-bar {
        display: block;
        width: 25px;
        height: 3px;
        border-radius: 1px;
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #FFF;
    }

    .navbar-toggle .icon-bar + .icon-bar {
        margin-top: 5px;
    }

    .navbar-toggle[aria-expanded="true"] .icon-bar {
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
        margin-top: -3px;
    }

    .navbar-toggle[aria-expanded="true"] .icon-bar:first-child {
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
        margin-top: 0;
    }

    .navbar-toggle[aria-expanded="true"] .icon-bar:last-child {
        display: none;
    }

    .navbar-default .navbar-nav > li > a {
        font-size: 32px;
        padding: 0;
        /*font-weight: 900;*/
        line-height: 78px;
        text-align: left;
    }

    .navbar-nav > li::after {
        display: none;
    }

    .aux-nav {
        display: none;
    }

    .hero-content {
        padding: 0 0 0 0;
    }

    .hero-image {
        float: none;
        width: 100%;
        padding-top: 25px;
    }

    .video-wrap {
        padding: 40px 0;
    }

    .video-wrap img {
        left: auto;
        position: relative;
        max-width: 84%;
        margin: auto;
    }


    .cta-2col {
        padding: 50px 0;




    }
    .banner-nav .col-2-flex {
        display: block;
    }
    .banner-nav .flex-right {
        width: 100%;
        display:block;
    }
    .banner-nav-menu {
        padding: 40px 15px 40px;
        max-width: 750px;
        margin: auto;
        text-align: left;
    }
    .banner-nav-menu ul {
        padding: 0;
    }

    .lt-blue-bg {
        padding: 200px 0;
    }

    .white-bg {
        padding: 50px 0;
    }

    .list-cta {
        padding-left: 0;
    }

    .logo-section {
        text-align: left;
    }

    .logo-section ul {
        display: block;
        padding-top: 30px;
    }

    .logo-section li {
        list-style: none;
        display: inline-block;
        width: 32%;
        padding-bottom: 20px;
    }

    .logo-section li:first-child, .logo-section li:last-child {
        text-align: left;
    }

    .header-wrapper {
        float: none;
        width: 100%;
    }

    .cta-2col .left-col {
        float: left;
        width: 100%;
    }

    .cta-2col .right-col {
        padding-left: 0;
        float: left;
        width: 100%;
    }

    .cta-2col .icon-grid {
        padding-left: 0;
        float: none;
        width: 100%;
    }

    .cta-2col .area-grid {
        padding-left: 0;
        float: none;
        width: 100%;
    }

    .icon-grid li {
        text-align: left;
    }

    .area-grid ul {
        text-align: left;
    }

    .area-grid li {
        text-align: left;
    }

    .testimonial-slider {
        padding: 50px 0 100px;
    }

    .test-img {
        display: none;
    }

    .slide-controls {
        background: transparent;
        position: relative;
        bottom: 0;
    }

    .slide-controls .control-item {
        list-style: none;
        display: inline-block;
        padding: 0px;
        position: relative;
        cursor: pointer;
        color: transparent;
        width: 75px;
    }

    .slide-controls .control-item::after {
        content: "";
        display: block;
        height: 6px;
        background-color: #fff;
        width: 74px;
        margin: auto;
        opacity: 1;
        -webkit-transition: all 0.15s linear;
        -moz-transition: all 0.15s linear;
        transition: all 0.15s linear;
        bottom: -13px;
        position: relative;
    }

    .slide-controls-container .slick-slide {
        width: 81px !important;
        float: none;
        display: inline-block;
        padding-right: 3px;
    }

    .slide-controls .control-item:hover::after, .slide-controls .slick-current .control-item::after {
        width: 74px;
        opacity: 1;
        background-color: #59b7b1;
    }

    .slide-controls .slick-list.draggable {
        overflow: visible;
        padding: 0 !important;
    }

    .news-grid {
        padding-bottom: 50px;
    }

    .flex-left {
        width: 100%;
        padding: 50px 0;
    }

    .flex-content {
        max-width: 750px;
        padding: 0 15px;
        margin: auto;
    }

    .flex-col {
        width: 100%;
        padding-bottom: 30px;
    }

    .col-2-flex.lt-blue-bg {
        display: block;
    }

    .flex-img {
        text-align: center;
    }

    .flex-right {
        display: none;
    }

    .left-image-cta, .right-image-cta {
        display: block;
        align-items: center;
        padding-top: 80px;
    }
    .news-item {
        width: 45%;
        margin: 0 15px 30px;
    }

    .right-content, .left-content {
        padding-left: 10%;
    }

    .product-item {
        flex-basis: 45%;
    }

    .agent-heading h1 {
        line-height: 68px;
    }

    .agent-heading {
        padding-bottom: 40px;
    }

    .get-coverage-form {
        display: block;
    }

    .coverage-images__image1 img {
        max-width: 100px;
        border-radius: 100px;
        bottom: 54px;
    }

    .coverage-images__image2 img {
        max-width: 141px;

    }

    .coverage-images__image3 img {
        max-width: 200px;
        border-radius: 350px;
    }

    .coverage-images__image4 img {
        max-width: 120px;
        border-radius: 100px;
        position: absolute;
        bottom: 10px;
        right: 0;
    }

    .coverage-column, .coverage-column-last {
        width: 50%;
        padding-bottom: 30px;
    }

    .coverage-column-last {
        padding-top: 15px;
    }

    .footer-social {
        padding-left: 25px;
    }

    .footer-nav {
        float: left;
        padding-top: 19px;
    }

    .footer-nav li {
        padding: 15px 30px 15px 0px;
    }

    .footer-right {
        float: left;
        position: relative;
        top: 13px;
    }
    .page-body {
        padding-bottom: 0px;
    }
}

@media screen and (max-width: 768px) {
    .btn-lt-blue {
        font-size: 22px;
    }

    .list-cta .btn-white {
        font-size: 22px;
    }

    .header-wrapper .btn-lt-blue {
        font-size: 22px;
    }
}

@media screen and (max-width: 767px) {
    img {
        max-width: 100%;
    }

    h1, .h1 {
        font-size: 64px;
        /*font-weight: bold;*/
    }

    h2, .h2 {
        font-size: 54px;
        /*font-weight: 900;*/
    }

    header {
        padding: 19px 0px;
        border-bottom: 1px solid #eeeeee;
    }

    .main-nav {
        float: right;
    }

    .aux-nav {
        display: none;
    }

    .nav-dropdown.mobile {
        width: 100%;
    }

    .hero-content {
        padding: 0 0 0 0;
    }

    .hero-content p {
        font-size: 30px;
    }

   /* .hero-image {
        display: none;
    }*/

    .heading-mod p {
        font-size: 24px;
    }

    .lt-blue-bg {
        padding: 126px 0;
    }

    .video-wrap {
        padding-top: 15px;
    }

    .video-wrap img {
        left: auto;
        position: relative;
        max-width: 100%;
    }

    .list-cta {
        padding-left: 0;
    }

    .list-cta li {
        font-size: 22px;
    }

    .logo-section {
        text-align: left;
        padding: 55px 0 50px;
    }

    .logo-section ul {
        display: block;
        padding-top: 25px;
    }

    .logo-section li {
        list-style: none;
        display: inline-block;
        padding-bottom: 25px;
        width: 49%
    }

    .logo-section li:last-child {
        text-align: left;
    }

    .white-bg {
        padding: 25px 0;
    }

    .cta-2col {
        padding: 25px 0;
    }

    .cta-2col .col-sm-6 {
        padding: 0;
    }

    .cta-2col .icon-grid {
        padding-left: 0;
    }

    .icon-grid li img {
        max-width: 100%;
    }

    .cta-2col .area-grid {
        padding-left: 0;
    }

    .area-grid li {
        list-style: none;
        display: inline-block;
        width: 32%;
    }
    .news-item {
        width: 100%;
        margin: 0 15px 30px;
    }
    .news-grid-img {
        min-height: 230px;
        text-align: center;
    }

    .slide-controls.slick-slider .slick-track {
        width: auto !important;
        min-width: 448px;
    }

    .test-img {
        display: none;
    }

    .col-2-flex {
        display: block;
    }

    .col-2-flex img {
        padding-bottom: 15px;
    }

    .heading-col {
        width: 100%;
        padding-left: 0;
        padding-top: 100px;
        text-align: center;
    }

    .btn-col {
        text-align: center;
        padding-right: 0;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 100px;
    }

    .full-width-cta ul {
        padding: 0;
        -moz-column-count: 1;
        -ms-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }

    #zip-search {
        height: 953px;
        background-size: cover;
    }

    .agent-heading .row {
        display: block;
        align-items: center;
    }

    .agent-fields {
        float: none;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .agent-fields.zip-search-button {
        width: 34%;
        padding-right: 0;
    }

    .agent-fields.agent-state, .agent-fields.agent-city, .agent-fields.agent-zip, .agent-fields.agent-radius {
        width: 100%;
    }

    .zip-search-form form {
        display: block;
        padding: 20px 0 0;
    }

    .zip-search-form.state-form .agent-fields {
        width: 100%;
        padding-right: 0px;
    }

    .zip-search-form.state-form .zip-search-button {
        width: 170px;
        padding-right: 0;
        padding-left: 0;
    }

    .zip-search-form {
        display: block;
        margin-bottom: 20px;
    }
    .nav-justified > li, .nav-tabs.nav-justified > li {
        text-align: left;
    }
    .agent-item {
        display: block;
        align-items: center;
        margin: 0 15px;
    }

    .agent-location {
        padding-left: 41px;
        padding-top: 5px;
    }

    .agent-location::before {
        left: 15px;
        top: 8px;
    }

    .agent-phone {
        padding-left: 42px;
        padding-top: 5px;
    }

    .agent-phone::before {
        left: 15px;
        top: 8px;
    }
    .agent-contact .center-col {
        padding-left: 15px;
    }

    .get-coverage {
        height: auto;
        padding-bottom: 30px;
    }

    .get-coverage-form {
        display: block;
    }

    .coverage-column {
        width: 100%;
        padding-bottom: 30px;
    }

    .coverage-column-last {
        padding-top: 0px;
        width: 100%;
    }
    .agent-contact .right-col {
        padding-left: 15px;
    }
    .block-image {
        margin-bottom: 15px;
    }
    .get-coverage.coverage-images {
        height: 600px;
        display: flex;
        padding: 0;
    }

    .image-container {
        display: none;
    }

    .condensed-content {
        padding: 25px 15px;
    }

    .block-no-image {
        margin-bottom: 30px;
    }

    .block-with-image {
        margin-bottom: 30px;
        text-align: center;
    }

    .block-with-image .content-block {
        text-align: left;
    }


    .footer-logo, .footer-social {
        display: block;
    }

    .footer-social {
        padding-left: 0;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer-nav {
        float: none;
        padding-top: 0;
    }

    .footer-nav li {
        list-style: none;
        display: block;
        padding: 15px 0;
    }

    .footer-right {
        float: none;
        position: relative;
        top: -9px;
        text-align: left;
        display: block;
        padding-top: 26px;
    }
    .page-body {
        padding-bottom: 966px;
    }
}

@media screen and (max-width: 625px) {
    .product-item {
        flex-basis: 100%;
    }
    .news-item {
        width: 100%;
        margin: 0 15px 30px;
    }
    .news-grid-img {
        min-height: 230px;
        text-align: center;
    }
}

@media screen and (max-width: 600px) {

    .icon-grid li {
        width: 50%;
    }

    .logo-section li {
        display: block;
        width: 100%;
    }

    .agent-heading {
        padding-top: 90px;
    }

    .agent-fields.zip-search-button {
        width: 100%;
        padding-right: 0;
    }
    .testimonial-slider {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    h1 {
        font-size: 50px;
        line-height: 65px;
    }

    h3 {
        font-size: 30px;
        line-height: 42px;
    }

    a.btn-underline {
        margin-bottom: 10px;
    }

    .cta-3-col {
        padding: 0;
    }

    .subpage-banner h1 {
        font-size: 50px;
        line-height: 65px;
    }

    .heading-mod h2 {
        font-size: 50px;
        line-height: 50px;
    }

    .cta-2col .left-col .btn-lt-blue {
        padding: 16px 30px;
        font-size: 24px;
        margin: 0px auto;
        display: block;
        margin-bottom: 35px;
    }

    .slide-content h2 {
        font-size: 50px;
    }

    .slide-controls .control-item:hover::after, .slide-controls .slick-current .control-item::after {
        width: 50px;
    }

    .slide-controls .control-item::after {
        width: 50px;
    }

    .slide-controls-container .slick-slide {
        width: 60px !important;
    }

    .get-coverage.coverage-images {
        height: auto;
        display: block;
    }
    .left-image, .right-content, .right-image, .left-content {
        width: 100%;
    }
    
}
@media screen and (max-width: 350px) {
    h2, .h2 {
        font-size: 38px;
        /* font-weight: 900; */
        line-height: 44px;
    }
    .full-width-content {
        background: #fff;
        padding: 5% 6% 9%;
        margin: 0 -15px;
    }
}