/*!
 * Bootstrap v3.0.2 by @fat and @mdo
 * Copyright 2013 Twitter, Inc.
 * Licensed under http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world by @mdo and @fat.
 */


/*!
 * Bootstrap v3.0.2 by @fat and @mdo
 * Copyright 2013 Twitter, Inc.
 * Licensed under http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world by @mdo and @fat.
 */

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Oswald&display=swap');
:root {
  --primary-color: #061f47;
  --secondary-color: #0d3d63;
  --third-color: #2a83bd;
  --accent-color: #ebb86f;
  --dark-color: #262626;
  --light-color: #fafafa;
  --head-font: 'Montserrat', sans-serif;
  --body-font: 'Montserrat', sans-serif;
  --accent-font: 'Montserrat', sans-serif;
  --head-weight: 700;
  --body-weight: 400;
}

html,
body {
  background: var(--light-color);
  font-family: var(--body-font);
  font-size: 14px;
  width: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

.container-fluid {
  padding-right: 0px;
  padding-left: 0px;
  margin-right: auto;
  margin-left: auto;
}

/* Highlight Banner */
#block-block-17 {
  background-color: #eee; /* Add image background if requested */
  background: url() center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  border-radius: 2px;
}

#block-block-17::before { /* Remove if image not needed */
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 0.5;
}

#block-block-17 h2 {
   position: relative;
   color: #fff;
   padding: 60px 6%;
   z-index: 100;
}

#block-block-17 a {
   color: #fff;
}

@media screen and (min-width: 768px) {
.container .jumbotron, .container-fluid .jumbotron {
    background: transparent;
    margin: 0px auto 40px;
    padding: 0px 32px 0px 12px;
    }	
}
@media (max-width: 767px) {
.container .jumbotron, .container-fluid .jumbotron {
	background: transparent;
    padding: 0px 16px;
    }	
}


/* Typography */

h1 {
  font-family: var(--accent-font);
  font-size: 36px;
  letter-spacing: 0px;
  line-height: 48px;
  font-weight: var(--head-weight);
  text-transform: uppercase;
  margin: 0px auto 16px;
}

h2 {
  font-family: var(--head-font);
  font-size: 28px;
  letter-spacing: 0px;
  font-weight: var(--head-weight);
  text-transform: uppercase;
}

h3 {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: var(--body-weight);
  letter-spacing: 0px;
  text-transform: capitalize;
  line-height: 1.6;
}

h4 {
  font-family: var(--head-font);
  font-size: 16px;
  font-weight: var(--head-weight);
  text-transform: uppercase;
}

h2.block-title:after,
h2.block-title-tweet:after,
h2.block-title-sm:after,
h2.block-title-md:after {
  content: '';
  display: block;
  position: relative;
  background-color: var(--third-color);
  height: 4px;
  width: 128px;
  margin: 12px 0px 16px;
}

h2.block-title-tweet:after {
  width: 72%;
}

h2.block-title-sm:after {
  width: 40%;
}

h2.block-title-md:after {
  width: 42%;
}

h2.block-title:before {
  right: 0.5em;
  margin-left: -50%;
}

p {
  font-size: 14px;
  line-height: 2;
}

a {
  font-family: var(--body-font);
  color: #da7a03;
  text-transform: none;
}

a:hover {
  text-decoration: none;
}

.container-fluid {
  padding: 0;
}

.anchor {
  display: block;
  position: relative;
  top: -260px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .container {
    width: auto;
  }
}

@media (max-width: 767px) {
  .anchor {
    display: block;
    position: relative;
    top: -160px;
  }
}


/* Button */

.btn-primary,
.readmore a,
.pager li > a, 
.pager li > span {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #fff !important;
  font-weight: var(--head-weight);
  text-align: center;
  margin-top: 20px;
  padding: 12px;
  border: 0px solid transparent;
  border-radius: 2px;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.btn-primary:hover,
.readmore a:hover,
.pager li > a:hover, 
.pager li > span:hover {
  background-color: var(--accent-color) !important;
  color: #fff;
  text-decoration: none;
  border-color: var(--accent-color) !important;
}

.btn-custom {
  padding: 12px 10px;
  font-weight: 600 !important;
}

.btn-secondary {
  display: inline-block;
  background: var(--accent-color);
  color: #205ba0;
  padding: 12px;
  margin: 0px 0px 20px;
  border: 4px solid transparent;
  border-radius: 2px;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0);
  color: #fff;
  font-weight: 400;
  border-bottom: 4px solid var(--accent-color) !important;
}

.btn-misc {
  display: inline-block;
  position: relative;
  background-color: rgba(32, 91, 160, 0.8);
  color: #fff;
  text-align: center;
  margin: 20px auto 0px;
  padding: 12px;
  border: solid 3px transparent;
  border-radius: 2px;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.btn-misc:hover {
  background: rgba(255, 255, 255, 0);
  color: #205ba0;
  font-weight: 600;
  border: solid 3px #205ba0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}


/* Flexbox */

.row.is-flex {
  display: flex;
  flex-wrap: wrap;
}

.row.is-flex>[class*='col-'] {
  display: flex;
  flex-direction: column;
}

.row.is-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row.is-flex>[class*='col-'] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .row.is-flex .col-md-8,
  .row.is-flex .col-md-4 {
  width: 100%;
}
}

/*Container Resets */

.main-container {
  max-width: 1650px;
  margin: 0px auto;
  padding: 160px 60px 60px;
}

.not-front .main-container {
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  color: #4a4a4a;
  margin-bottom: 45px;
  margin-top: 130px;
  max-width: 1250px;
  padding: 25px;
}

.row {
  margin-right: 0!important;
  margin-left: 0!important;
}

a {
  color: #0083D6;
}

h2 {
  font-size: 20px;
  margin-bottom: 0;
}

span.date-display-single {
  font-size: 12px;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-primary {
  color: #022f66;
}

.btn-primary {
  color: #022f66;
}

div.view-node-gallery-gallery-item-views .node h2 {
  display: none;
}

.photo-gal-title {
  margin: 25px;
}

.flexslider {
  margin: 0;
}

.flex-control-nav {
  display: none;
}

@media (max-width: 767px) {
.main-container {
    margin: 0px auto;
    padding: 120px 16px 20px;
}
}



/* Top Bar */
.orange-cta {
  width: 100%;
  height: auto;
  background: var(--accent-color);
  margin: 0px auto;
  padding: 0px;
}

.contact-cta {
  float: left;
  width: 60%;
  margin: 0 auto;
  padding: 12px;
}

.contact-cta h3 {
  display: inline-block;
  margin: 0px auto;
  padding-left: 12px;
  font-size: 12px;
  font-weight: var(--head-weight);
}

.social-cta {
  float: right;
  padding: 12px;
}

.social-cta a {
  padding: 0px 12px;
}

.contact-cta a,
.social-cta a {
  color: #fff;
}

.contact-cta a:hover,
.social-cta a:hover {
  color: #f1f1f1;
}

@media (max-width: 767px) {
  .social-cta {
    display: none;
  }
  .contact-cta {
    width: 100%;
    text-align: center;
  }
}


/*Navigation */
.navbar {
  border: none;
  margin-bottom: 0!important;
}

.navbar-btn {
  margin: 24px 0;
}

.navbar-header {
  width: 20%;
}

.navbar .logo img {
  width: 380px;
  margin-left: 48px;
}

.navbar.container {
  margin-top: 0;
  max-width: 1500px!important;
}

.navbar-default {
  background: var(--primary-color);
  background: linear-gradient(180deg, #061f47, #0d3d63);
}

.navbar-collapse {
  padding-left: 0;
  padding-right: 0;
}

.navbar-default .navbar-nav>.active>a:active,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
  background-color: transparent;
  border-bottom: 3px solid #F7C028;
  color: var(--accent-color);
}

.navbar-nav {
  padding: 0px 48px;
  float: right;
}

.navbar-default .navbar-nav > .active > a {
	color: #fff;
	background-color: transparent;
	border-bottom: 3px solid #F7C028;
}

.navbar-default .navbar-nav>li>a {
  color: #fff;
  padding: 44px 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.navbar-default .navbar-nav>li>a:active,
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
  color: var(--accent-color);
}

.navbar .nav>li {
  padding-right: 5px;
  padding-left: 5px;
}

.dropdown-menu li {
  text-align: left;
}

.dropdown-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 0px;
    background-color: var(--secondary-color);
    border: none;
    box-shadow: none!important;
}

.dropdown-menu li a {
  color: #fff;
}

  .dropdown:hover .dropdown-menu {
    /* Make Navigation Toggle on Desktop Hover */
    display: block;
  }

@media (min-width: 1200px) and (max-width: 1399px) {
.navbar .logo img {
    width: 300px;
    float: left;
  }
.navbar-default .navbar-nav>li>a {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 40px 8px;
}
}

@media (min-width: 992px) and (max-width: 1199px) {
.navbar .logo img {
    width: 240px;
    float: left;
  }
.navbar-default .navbar-nav>li>a {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 32px 4px;
}
}



@media (min-width: 768px) and (max-width: 991px) {
	.navbar-nav {
    width: 100%;
    padding: 0px 48px;
    float: right;
}
  .navbar-nav>li>a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar .logo img {
    width: 320px;
    float: left;
  }
  .navbar-default .navbar-nav>li>a {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 32px 4px;
}
}

@media (max-width: 767px) {
  .sub-menu {
    display: none;
  }
.navbar .logo img {
    width: 220px;
    float: left;
  }
  .navbar-header {
    width: 100%;
  }
  .navbar-nav {
    padding: 40px 0px;
  	text-align: center;
    float: none;
  }
  .navbar-toggle {
    margin-right: 0;
    margin-top: 28px;
  }
  .navbar-default .navbar-nav>li>a {
  	width: 280px;
    font-size: 16px;
    margin: 0px auto;
    padding: 20px 12px;
  }
  .navbar-default .navbar-nav > .active > a {
    color: #fff;
    background-color: #F7C028;
    border-bottom: 0px solid #F7C028;
    border-radius: 4px;
}

.navbar-default .navbar-nav > .open > a, 
.navbar-default .navbar-nav > .open > a:hover, 
.navbar-default .navbar-nav > .open > a:focus {
    color: #555;
    background-color: #e7e7e7;
    border-radius: 4px;
}
.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    max-height: 100%;
    height: 100vh;
}
.navbar-nav .open .dropdown-menu {
    position: relative;
    }
    .dropdown-menu li {
    text-align: center;
    margin: 16px;
}
  .dropdown-menu a {
    color: #fff!important;
  }
  .dropdown-menu>li>a:focus {
    background-color: rgba(0, 84, 138, 0.93);
    color: #fff!important;
  }
  .dropdown-menu>li>a:hover {
    text-decoration: underline!important;
  }
  .navbar-default .navbar-nav .open .dropdown-menu>.active>a,
  .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover {
    background-color: transparent;
   	color: #F7C028 !important;
    font-weight: bold;
    text-decoration: none;
  }
}

/* Home Page */
#flexslider-1 {
  border: none;
  margin-bottom: 40px;
}

h2.block-title {
  color: var(--secondary-color);
  font-size: 20px;
  border-bottom: 0px;
}

h2.block-title:after {
  background-color: rgba(74, 144, 226, 0.23);
  content: "";
  height: 4px;
  position: relative;
  vertical-align: top;
}

.front-container-block {
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  padding: 5px 25px 35px 25px;
  margin-bottom: 30px;
}

.newsblock .videoblock {
  min-height: 965px;
}

h2.sidebar-title {
  border-bottom: 1px solid #eee;
  color: #686868;
  font-size: 20px;
  font-weight: normal;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

span.field-content a {
  font-size: 14px;
  line-height: 14px;
}

.video-title {
  line-height: 15px;
  padding-bottom: 35px;
}

.field-content p {
  padding-bottom: 25px;
}


/* Front Page */
.view-display-id-block_4 .views-row.views-row-1 h2:first-child {
    display: inline;
    position: relative;
    top: 16px;
    right: 12px;
    background: #fff;
    color: var(--secondary-color);
    width: 100%;
    padding: 12px;
}

.view-highlight {
    background: #fff;
    margin: 20px auto;
    padding: 0px 20px;  
}

.views-field-field-header-image {
    display: block;
    width: 100%;
    max-height: 540px;
    overflow: hidden;	
}

.views-field-field-header-image img {
  width: 100%;
}

.teaser-wrapper {
  background: #fff;
  padding: 12px;
}

#block-views-news-block-1 {
  padding: 0px 60px;
}

.view-display-id-block_1 .views-field-field-news-category,
.region-content-bottom .node-news .type {
    color: var(--accent-color);
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: capitalize !important;
}

.teaser-wrapper h3 a,
#page-bottom h2 a,
.comm-block {
  color: var(--secondary-color);
  margin: 28px auto 20px;
  font-size: 18px;
  font-weight: var(--head-weight);
  text-transform: capitalize;
  letter-spacing: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.teaser-wrapper h3 a:hover,
.node-border h2 a:hover {
  color: var(--accent-color);
}

.bg-help h2,
.node-border h2 {
  margin-bottom: 20px;
}

.node-border {
	width: 50%;
}

.node-border {
	border-bottom: 0px solid #e2e2e3 !important;
    padding-bottom: 12px !important;	
}

.region-sidebar-first {
  margin: 0px auto 60px;
  padding: 0px 20px;
}

.region-sidebar-second {
  margin: 20px auto 40px;
  padding: 0px 20px;
}

.region-sidebar-first,
#block-block-15,
.front-help-button {
  height: 100%;
}

.bg-help {
  display: table;
  background: #2a83bd;
  background: var(--third-color);  
  color: #fff;
  width: 100%;
  height: 32%;
  margin-bottom: 20px;
  padding: 10px 20px 0px;
  border-radius: 2px;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.bg-help h2,
.bg-help a {
  color: #fff;
}

.bg-help:hover {
  background: var(--accent-color);
}

#block-bean-resources-0 {
  padding: 0px 20px;
}

@media (min-width: 1600px) {
#block-views-news-block-4,
#block-block-16 {
	height: 100%;
	overflow: hidden;
}
.bg-help h2, .node-border h2 {
	font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.node-border h2 {
	height: 60px;
}
.node-border p:last-child {
    height: 120px;
    margin-bottom: 0;
}
}

@media (min-width: 1400px) and (max-width: 1599px) {
.bg-help {
		padding: 0px 20px;
}
.bg-help h2 {
	font-size: 16px;
	margin-bottom: 12px;
}
.bg-help-p {
	font-size: 10px;
}
#block-views-news-block-4,
#block-block-16 {
	height: 100%;
	overflow: hidden;
}
.node-border h2 {
	height: 60px;
}
.node-border p:last-child {
    height: 120px;
    margin-bottom: 0;
}
}

@media (min-width: 1200px) and (max-width: 1399px) {
.bg-help h2, .node-border h2 {
	font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.node-border h2 {
	height: 60px;
}
.node-border p:last-child {
    height: 120px;
    margin-bottom: 0;
}
	.bg-help-p {
	font-size: 10px;
}
.views-field-field-header-image {
    display: block;
    width: 100%;
    max-height: 440px;
    overflow: hidden;	
}
#block-views-news-block-4,
#block-block-16 {
	height: 100%;
	overflow: hidden;
}
}

@media (min-width: 992px) and (max-width: 1199px) {
.bg-help {
  width: 48%;
  padding: 20px 20px 40px;
  margin: 1%;
  float: left;
}
.bg-help:last-child {
	width: 98%;
}
.views-field-field-header-image {
    display: block;
    width: 100%;
    height: 340px;
    overflow: hidden;	
}
#block-views-news-block-4,
#block-block-16 {
	height: 100%;
	overflow: hidden;
}
.node-border {
    width: 100%;
}
}


@media (min-width: 768px) and (max-width: 991px) {
#block-views-news-block-4,
#block-block-16 {
	height: 612px;
	overflow: hidden;
}
.node-border {
    width: auto;
}
}

@media (max-width: 767px) {
.region-sidebar-first,
.region-sidebar-second,
#block-bean-resources-0 {
  margin: 0px auto 60px;
  padding: 0px;
}
.bg-help h2, .node-border h2 {
	font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
}
	.bg-help-p {
	font-size: 12px;
}
.view-display-id-block_4 .views-row.views-row-1 h2:first-child {
    display: block;
    position: relative;
    top: -8px;
    right: 0px;
    text-align: center;
    background: #fff;
    color: var(--secondary-color);
    width: 100%;
    padding: 12px;
}
#block-views-news-block-1 {
	padding: 0px;
}
.node-border {
    width: auto;
}
}


/* Sub Pages - News Articles*/
.page-header {
  width: 64%;
  margin-top: 20px;
}

.print-icon,
.print-mail {
  display: none;
}
.node-type-news .field-name-body .field-items .field-item p:first-of-type:first-letter {

}
.node-news .field-type-image .field-items .field-item img {
  width: 100%;
}
.field-name-field-publish-date .field-item {
  margin-top: 20px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .page-header {
  	width: 100%;
    text-align: center;
  }
}



/*End Five Column Layout */
.sub-menu {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.region.region-footer ul {
  list-style-type: none;
  font-weight: normal;
  line-height: 22px;
}

hr {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  width: 100%;
}

.col-md-1-5 {
  width: 19%;
  margin-top: 10px;
  padding-left: 0!important;
  padding-right: 20px;
}

.front-news a {
  color: #fff;
}

.region.region-footer h2,
.block-title-pre-footer {
  color: #fff;
  font-size: 24px;
  margin-top: 0!important;
  font-weight: bold;
  margin-bottom: 15px;
  padding-left: 10px;
}

/* Footer */
.before_footer {
  background-color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 25px;
  padding: 0 15px 25px 20px;
  max-width: 1470px;
  width: 100%;
}

.footer {
  background: var(--primary-color);
  background: linear-gradient(0deg, #061f47, #0d3d63);
  border-top: none;
  color: #fff;
  margin-top: 0!important;
  padding: 45px 45px 25px 85px;
}

.footer a {
  color: #fff;
}

.float-right {
  float: right;
  margin-left: 55px;
}

.footerinfo {
  text-align: center;
  padding-top: 10px;
}

@media (max-width: 767px) {
	.footer {
		text-align: center;
		padding: 40px;
	}
}

/* COVID-19 Page */

:root {
  --alert-color: #AA061A;
  --main-bg: #f2fafd;
  --second-bg: #0076BC;
  --main-color: #39A6D7;
}

body.covid-19-resources {
  font-family: 'Nunito Sans', sans-serif;
}

.covid-19-resources #main-page-content {
  background: #fff;
}

.covid-19-resources .region.region-content {
  padding-bottom: 0px;
}

.covid-19-resources h1 {
  font-size: 32px;
}

.covid-19-resources h3 {
  font-size: 24px;
}

.covid-19-resources h4 {
  font-size: 18px;
}

.covid-19-resources h1,
.covid-19-resources h3,
.covid-19-resources h4 {
  font-weight: 400;
  margin: 20px 0px;
}

.col-md-12 {
  padding-left: 0px;
  padding-right: 0px;
}

.et-alert {
  color: #fff;
  margin: auto;
  width: 20%;
  font-size: 16px;
}

.covid-19-resources .alert-warning {
  display: none !important;
}

.alert-warning {
  background-color: #AA061A;
  background-color: var(--alert-color);
  border: 0;
  border-radius: 0;
  color: #fff;
}

.alert-warning a {
  color: #fff;
}

.alert-warning a:hover {
  color: #ddd;
}

.alert {
  text-align: center;
  margin-bottom: 0px;
}

.covid-19-resources .page-header {
  display: none;
}

.et-covid-header-banner img {
  position: relative;
  margin-bottom: 15px;
  z-index: 1;
}

.et-banner-block .col-sm ul {
  float: left;
  width: 50%;
  margin: 0px auto;
}

.blue-bg {
  background-color: #f2fafd;
  background-color: var(--main-bg);
  margin-top: -40px;
  padding: 0 0 24px 48px;
  border: 4px solid #39A6D7;
  border: 4px solid var(--main-color);
}

.blue-bg p {
  font-size: 16px;
  line-height: 28px;
  color: #666666;
}

.blue-bg a {
  color: var(--second-bg);
  font-weight: 700;
}

.ca-covid-db {
	border-top:none!important;
}

.et-banner-block {
  width: 60%;
  float: left;
  margin: 0px 0px 40px;
}

.et-banner-block img {
	padding-bottom: 0!important;
}

.et-hotline {
  float: right;
  border-left: 1px solid #0076BC;
  border-left: 1px solid var(--second-bg);
  padding: 20px 40px 40px;
  text-align: center;
}

.et-news-block {
  padding: 20px 0 45px 15px;
}

.et-news-block-left {
  float: left;
  background: #fff;
  padding: 20px 20px 0 16px;
  z-index: 2;
}

.covid-19-resources .views-row {
  padding: 12px 12px 20px 0px;
  border-bottom: 0px solid #a8a9ad !important;
}

.covid-19-resources .et-news-block .view-content {
  display: inline-block;
}

.et-news-block a {
  color: var(--second-bg);
  font-weight: 700;
}

.et-news-block .view-footer button {
  color: #fff;
  background: orange;
  border-radius: 0px;
}

.et-news-block .view-footer button:hover {
  color: #fff;
  background: #0076BC;
  background: var(--second-bg);
}

.et-news-block-right {
  float: left;
  padding: 20px 40px;
}

.et-news-block-right iframe {
  padding: 20px !important;
  border: 4px solid #39A6D7;
  border: 4px solid var(--main-color) !important;
}

.et-town-hall-block {
  width: 35%;
}

.et-news-row {
  padding: 0px 28px 28px 0px;
  vertical-align: top;
  width: 50%;
}

.et-news-block .view-footer {
  text-align: left;
  margin-bottom: 40px;
}

.view-All-News-Front .field-content iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  min-height: 200px;
}

.et-date-box {
  background-color: orange;
  float: left;
  padding: 5px 25px;
  margin: 5px 15px 25px 0;
  width: 95px;
  text-align: center;
  height: auto;
}

.et-date-box span.date-display-single {
  color: #fff;
  font-size: 18px;
}

.et-dark-blue-bg {
  background-color: #0076BC;
  background-color: var(--second-bg);
  color: #fff;
  padding: 30px 35px 25px 50px;
}

.et-dark-blue-bg h1 {
  text-align: left !important;
}

.et-dark-blue-bg p {
  color: #fff;
	margin-left: 95px;
}

.et-dark-blue-bg a {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
}

blockquote {
  padding: 10px 20px;
  margin: 40px 0 20px;
}

blockquote p {
  font-size: 16px;
}

.et-social {
  float: right;
  background-color: #39A6D7;
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid #fff;
  font-size: 1.5em;
  padding: 35px;
  margin: 35px;
  text-align: center;
}

.state-resources-container {
  background-color: #f2fafd;
  background-color: var(--main-bg);
  padding: 40px;
}

.state-resources-container .col-md-4 {
  margin-bottom: 20px;
}

.state-resources-container h3 {
  padding: 0 0 25px 25px;
}

.state-button {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  background-color: #fff;
  padding: 40px 32px 32px;
  margin: 1%;
  height: 280px;
  text-align: center;
  font-size: 14px;
}

.state-button a {
  color: var(--second-bg);
  font-weight: 700;
}

.et-gov-update {
  margin: auto;
  width: 50%;
}

.et-gov-update img {
  width: 100%;
}

.et-social-images {
  background-color: #f2fafd;
  background-color: var(--main-color);
  padding: 40px;
  margin: 20px 40px 40px
}

.et-social-images img {
  width: 100%;
  padding: 40px;
}

@media (max-width: 991px) {
  .covid-19-resources h1,
  .covid-19-resources h3 {
    text-align: center;
  }
  .et-covid-header-banner {
    margin-bottom: 10px !important;
    text-align: center;
  }
  .et-covid-header-banner img {
    position: relative;
    width: 100%;
    margin: 0px auto 15px;
    z-index: 1;
  }
  .et-covid-header-banner img:first-child {
    width: 80%;
    padding: 40px;
  }
  .blue-bg {
    padding: 0px 0px 48px;
  }
  .et-news-block-left {
    padding: 20px 80px 0;
  }
  .et-news-block .view-footer {
    text-align: center;
  }
  .et-news-block-right {
    padding: 20px 80px 0;
  }
  .et-news-block-right p {
    text-align: center;
  }
  .state-button {
    margin: 0px;
  }
  .state-resources-container .col-md-4 {
    margin-bottom: 0px;
  }
  .et-banner-block {
    width: 100%;
    padding: 0px 10%;
    margin: 0px 0px 40px;
  }
  .et-hotline {
    border-left: none;
    float: none;
    padding: 0px;
  }
  .view-All-News-Front .field-content iframe {
    min-height: 400px;
  }
  .et-social {
    float: none;
    background-color: #0076BC;
    background-color: var(--second-bg);
    margin: 0px auto;
    border: 0px;
  }
}

@media (max-width: 575px) {
  .col-xs-12 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .covid-19-resources h4 {
    text-align: center;
  }
  .et-covid-header-banner img {
    margin: 0px auto 5px;
  }
  .et-covid-header-banner img:first-child {
    width: 100%;
    padding: 12px 40px;
    margin-bottom: 0px;
    border-bottom: 1px solid #39A6D7;
    border-bottom: 1px solid var(--main-color);
  }
  .et-banner-block .col-sm ul {
    float: none;
    width: 100%;
    margin: 0px auto;
  }
  .blue-bg {
    background-color: #f2fafd;
    background-color: var(--main-bg);
    margin-top: -30px;
    padding: 0 48px 20px 48px;
  }
  .blue-bg p:last-child {
    text-align: center;
  }
  .et-banner-block {
    padding: 0px;
  }
  .et-hotline {
    padding: 0px 20px;
  }
  .et-news-block {
    padding: 20px;
  }
  .covid-19-resources .views-row {
    padding: 20px !important;
    text-align: center;
  }
  .et-news-block-right {
    float: none;
    padding: 20px 40px;
    width: 100%;
  }
  .view-All-News-Front .field-content iframe {
    min-height: 280px;
  }
  blockquote {
    margin: 40px 40px 60px;
  }
  .et-banner-block {
    margin-top: 12px;
    margin-bottom: 40px;
  }
  .state-resources-container {
    padding: 40px;
  }
  .state-resources-container h3 {
    padding: 0px;
  }
  .state-button {
    margin: 20px;
    padding: 40px;
  }
  .et-news-block-left {
    margin-bottom: 0px;
    width: 100%;
  }
  .covid-19-resources .views-field-field-publish-date {
    margin-bottom: 40px;
  }
  .et-social.et-img,
  .et-social.et-img .col-sm-6 {
    padding: 0px;
    margin: 0px;
  }
  .et-gov-update img {
    width: 100%;
  }
  .et-dark-blue-bg {
    padding: 0;
  }

.et-dark-blue-bg, .et-banner-block {
	width: 60%;
}
  .et-gov-update {
    width: 100%;
    padding: 10px;
  }
  .et-social-images {
    background-color: transparent;
    padding: 0px;
    margin: 0px auto 0px;
  }
  .et-social-images img {
    padding: 0px;
  }
}