/* //////////////////////////  GLOBAL  //////////////////////////// */
* {
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
}

a, a:hover {
	text-decoration: none;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.btn-primary, a.btn-primary {
	display: inline-block;
	position: relative;
	font-family: 'Montserrat';
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	line-height: 14px;
	color: #FFF;
	background: #c02a47;
	padding: 15px 45px 15px 30px;
	border-radius: 8px;
}

.btn-primary:after, a.btn-primary:after {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	box-shadow: 1.8px 1.8px;
	transform: rotate(-45deg);
	top: calc( 50% - 4px );
	right: 30px;
	transition: 0.3s all;
}

.btn-primary:hover, a.btn-primary:hover {
	color: #FFF;
}

.btn-primary:hover:after, a.btn-primary:hover:after {
	right: 28px;
}

.btn-secondary, a.btn-secondary {
	position: relative;
	font-family: 'Montserrat';
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	line-height: 26px;
	transform: translateY(5px);
	transition: 0.6s all;
	color: #c02a47;
	display: inline-block;
}

.btn-secondary:after, a.btn-secondary:after {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	box-shadow: 1.8px 1.8px;
	transform: rotate(-45deg);
	top: 9px;
	margin: 0 0 0 6px;
	transition: 0.3s all;
}

.btn-secondary:hover:after, a.btn-secondary:hover:after {
	margin: 0 0 0 8px;
}

/* //////////////////////////  TOOLBAR  //////////////////////////// */
.header-toolbar {
	position: relative;
	background: #1a274a;
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 0 40px;
}

.header-toolbar-inner {
	max-width: 1400px;
	width: 100%;
	margin: 0;
	height: 38px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
}

#header-toolbar-links {
	display: flex;
	justify-content: center;
	width: 100%;
}

#header-toolbar-carousel {
	display: none;
	width: 100%;
}

.toolbar-item {
	position: relative;
	color: #FFF;
	display: flex;
	align-items: center;
	padding: 8px 17px;
	justify-content: center;
	text-decoration: none;
}

a.toolbar-item:first-of-type {
	padding-left: 0;
}

a.toolbar-item:last-of-type {
	padding-right: 0;
}

.toolbar-item:after {
	content: '';
	position: absolute;
	right: 0;
	top: 12px;
	height: calc( 100% - 24px );
	width: 1px;
	background: #FFF;
	opacity: 0.4;
}

.toolbar-item:last-child:after {
	display: none;
}

.toolbar-item-icon {
	width: 22px;
	display: flex;
	align-items: center;
	margin: 0 10px 0 0;
}

.toolbar-item-icon img {
	max-width: 100%;
	height: auto;
}

.toolbar-item-label {
	font-family: 'Montserrat';
	font-weight: 600;
	text-transform: uppercase;
	font-size: 10px;
	line-height: 22px;
	opacity: 0.9;
}

a.toolbar-item:hover .toolbar-item-label {
	opacity: 1;
	color: #FFF;
}

#header-toolbar-swiper {
	overflow: hidden;
}

#header-toolbar-carousel .swiper-button-prev {
	display: none;
}

#header-toolbar-carousel .swiper-button-next {
	width: 60px;
	display: block;
	height: 41px;
	right: 0;
	background: transparent;
}

#header-toolbar-carousel .swiper-button-next:after {
	content: '';
	width: 8px;
	height: 8px;
	transform: rotate(45deg);
	position: absolute;
	top: 16px;
	left: 14px;
	border-right: 2px solid #FFF;
	border-top: 2px solid #FFF;
	box-shadow: 4px -4px 0 #1a274a, 6px -6px 0 #FFF, 10px -10px 0 #1a274a, 12px -12px 0 #FFF;
	opacity: 0.7;
}

#header-toolbar-carousel .swiper-button-next:hover:after {
	opacity: 1;
}

/* //////////////////////////  ADA TOOLS  //////////////////////////// */
.header-ada-tools {
	position: absolute;
	top: 0;
	right: 0;
}



#ada-dark-mode {
	display: flex;
	align-items: center;
	color: #FFF;
	font-family: 'Montserrat';
	font-weight: 500;
	text-transform: uppercase;
	font-size: 11px;
	line-height: 12px;
	opacity: 0.9;
	line-height: 38px;
	cursor: pointer;
	padding: 0 20px;
	user-select: none;
	width: 138px;
}

#ada-dark-mode:hover {
	opacity: 1;
}

#ada-dark-mode .ada-dark-mode-icon {
	position: relative;
	width: 12px;
	height: 12px;
	box-shadow: inset 0 0 0 1.5px #FFF;
	display: block;
	border-radius: 10px;
	margin: -2px 10px 0 0;
	overflow: hidden;
}

#ada-dark-mode .ada-dark-mode-icon:before {
	content: '';
	position: absolute;
	width: 12px;
	height: 12px;
	background: #FFF;
	left: 6px;
	opacity: 0.7;
	transition: 0.3s all;
}

body.dark-mode #ada-dark-mode .ada-dark-mode-icon:before {
	left: -6px;
}

body.dark-mode .senator-card .senator-info-name {
	color: #b3c3ee;
}

/* //////////////////////////  HEADER  //////////////////////////// */
#header-wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transition: 0.4s box-shadow, 0.4s background, 0.4s transform;
	background: #FFF;
	box-shadow: 0 0px 0 #c02a47, 0 0 50px rgb(26 39 74 / 0%);
}

#header-wrap.headroom--top {
	position: relative;
}

#header-wrap.headroom--not-top {
	background: rgb(255 255 255 / 90%);
	backdrop-filter: blur(10px);
	box-shadow: 0 0px 0 #c02a47, 0 0 50px rgb(26 39 74 / 40%);
}

#header-wrap.slideUp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(-100%);
	box-shadow: 0 6px 0 #c02a47, 0 0 50px rgb(26 39 74 / 40%);
}

#header-wrap #header-progress {
	position: absolute;
	left: 0;
	width: 0%;
	height: 0px;
	background: #e76e85;
	transition: 0.4s height;
}

#header-wrap.slideUp #header-progress {
	height: 6px;
}

#header-wrap.slideUp #menu-main-navigation > li > .sub-menu,
#header-wrap.slideUp #menu-main-navigation > li:hover > .sub-menu {
	display: none;
}

#header-lower {
	position: relative;
	background: transparent;
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 0 40px;
}

#header-inner {
	position: relative;
	max-width: 1400px;
	width: 100%;
	margin: 0;
	padding: 6px 0;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}

#header-left {
	width: 340px;
}

#src-logo-color {
	display: block;
}

#src-logo-white {
	display: none;
}

body.dark-mode #src-logo-color {
	display: none;
}

body.dark-mode #src-logo-white {
	display: block;
}

#header-right {
	width: calc(100% - 340px);
	padding: 0 0 0 40px;
	display: flex;
	align-items: center;
	opacity: 1;
	transition: 0.4s all;
}

#header-menu {
	width: calc( 100% - 40px );
}

#header-menu #menu-main-navigation {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
}

#menu-main-navigation > .menu-item {
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	text-align: center;
}

#menu-main-navigation > .menu-item > a {
	display: block;
	color: #1a274a;
	text-transform: uppercase;
	font-family: 'Montserrat';
	font-size: 15px;
	line-height: 18px;
	font-weight: 600;
	padding: 42px 20px;
	transition: 0.4s padding;
}

#header-wrap.headroom--not-top #menu-main-navigation > .menu-item > a {
	padding-top: 20px;
	padding-bottom: 20px;
}

#menu-main-navigation > .menu-item:focus > a,
#menu-main-navigation > .menu-item:hover > a {
	color: #FFF;
}

#menu-main-navigation > .menu-item > a:after {
	content: '';
	position: absolute;
	top: 32px;
	left: 0;
	width: 100%;
	height: calc( 100% - 64px );
	background: #232d6b;
	z-index: -1;
	border-radius: 5px;
	opacity: 0;
	transform: translateY(-4px) rotateX(0deg);
	transition: 0.3s all;
}

#header-wrap.headroom--not-top #menu-main-navigation > .menu-item > a:after {
	top: 14px;
	height: calc( 100% - 28px );
}

#menu-main-navigation > .menu-item:focus > a:after,
#menu-main-navigation > .menu-item:hover > a:after {
	opacity: 1;
	transform: translateY(0px) rotateX(0deg);
}

#menu-main-navigation > li.menu-item-has-children > a {
	padding-right: 40px;
}

#menu-main-navigation > li.menu-item-has-children:after {
	content: '';
	position: absolute;
	top: calc( 50% - 10px );
	right: 20px;
	width: 9px;
	height: 9px;
	box-shadow: 2.2px 2.2px 0 #1a274a;
	transform: rotate(45deg);
	transition: 0.4s top;
}

#menu-main-navigation > li.menu-item-has-children:hover:after,
#menu-main-navigation > li.menu-item-has-children:focus:after {
	box-shadow: 2.2px 2.2px 0 #FFFFFF;
}

#header-menu #menu-main-navigation > li > .sub-menu {
	position: absolute;
	display: none;
	background: #101936;
	background: linear-gradient(0deg, rgb(16 25 54 / 90%), #101936);
	backdrop-filter: blur(4px);
	padding: 30px 60px;
	border-radius: 14px;
	list-style: none;
	top: 102px;
	opacity: 0;
	transition: 0.4s all;
	width: 100vw;
	max-width: 380px;
	text-align: left;
}

#header-wrap.headroom--not-top #header-menu #menu-main-navigation > li > .sub-menu {
	top: 58px;
}

#header-menu #menu-main-navigation > li > .sub-menu:before {
	content: '';
	width: 30px;
	height: 30px;
	position: absolute;
	background: #101936;
	top: 0;
	left: 100px;
	transform: rotate(45deg);
	transition: 0.4s all;
}

#header-menu #menu-main-navigation > li:hover > .sub-menu {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

#header-menu #menu-main-navigation > li.show-dropdown > .sub-menu {
	opacity: 1;
	padding: 30px 40px;
	max-height: 800px;
	overflow: visible;
}

#header-menu #menu-main-navigation > li.show-dropdown > .sub-menu:before {
	top: -15px;
}

#header-wrap.headroom--not-top #header-menu #menu-main-navigation > li.show-dropdown > .sub-menu:before {
	top: -2px;
}

#header-menu #menu-main-navigation .sub-menu > .menu-item > a {
	color: #dae3f3;
	font-family: 'roboto';
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	padding: 8px 10px;
	display: block;
}

#header-menu #menu-main-navigation .sub-menu > .menu-item:hover > a,
#header-menu #menu-main-navigation .sub-menu > .menu-item:focus > a {
	opacity: 1;
}

/* ///////////  CUSTOM DROP DOWN MENU WIDTHS  /////////// */
#header-menu #menu-main-navigation > li.menu-item-27 .sub-menu {
	width: 100vw;
	max-width: 750px;
	left: calc( -50% + 30px );
	padding: 25px 55px;
}

#header-search {
	display: none;
	width: calc(100% - 340px);
	padding: 0 0 0 40px;
	align-items: center;
	height: 102px;
	opacity: 0;
	transition: 0.4s all;
}

#header-wrap.headroom--not-top #header-search {
	height: 65px;
}

#site-search {
	width: calc( 100% - 40px );
}

#header-search-close {
	position: relative;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

#header-search-close:before {
	content: '+';
	transform: rotate(45deg);
	position: absolute;
	font-size: 46px;
	font-family: 'Montserrat';
	font-weight: 300;
	top: 8px;
	left: 8px;
}

#header-search-toggle {
	width: 40px;
	height: 40px;
	background: url(images/search-dark.png) center center no-repeat;
	background-size: 40%;
	cursor: pointer;
}

#header-wrap.search-1 #header-right {
	position: absolute;
	left: 340px;
}

#header-wrap.search-2 #header-right {
	opacity: 0;
}

#header-wrap.search-3 #header-right {
	display: none;
}

#header-wrap.search-1 #header-search {
	display: flex;
}

#header-wrap.search-2 #header-search {
	opacity: 1;
}

#site-search .form-group,
#mobile-nav-search .form-group {
	display: flex;
	align-items: center;
}

#site-search-input,
#nav-search-input {
	width: 100%;
	margin: 0 -40px 0 0;
	font-family: 'Roboto';
	font-size: 16px;
	border-radius: 4px;
	padding: 8px 20px 10px 20px;
	border: 1px solid rgb(26 39 74 / 30%);
	transition: 0.3s all;
	outline: 0;
}

#site-search-input:focus,
#nav-search-input:focus {
	border: 1px solid rgb(26 39 74 / 40%);
	box-shadow: 0 0 5px rgb(27 40 75 / 15%);
}

#site-search button,
#mobile-nav-search button {
	position: relative;
	width: 40px;
	height: 40px;
	background: url(images/search-dark.png) center center no-repeat;
	background-size: 40%;
	cursor: pointer;
	border: 0;
	left: -5px;
	padding: 0;
}

#mobile-nav-search button:after {
	display: none;
}

#site-search button span,
#mobile-nav-search button span {
	opacity: 0;
	font-size: 0;
}

#senator-dropdown-list {
	display: none;
}

.sub-menu .menu-item {
	width: 100%;
}

.sub-menu li.senator-menu-item {
	width: 33.3%;
}

.menu-senator-photo {
	display: inline-block;
	width: 32px;
	height: 32px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 50px;
	margin: 2px 12px 2px 0;
	vertical-align: middle;
	box-shadow: 0 0 0 1.5px #c0c6d4;
}

li.senator-menu-item:focus .menu-senator-photo,
li.senator-menu-item:hover .menu-senator-photo {
	box-shadow: 0 0 0 1.5px #ffffff;
}

li.mega_menu.menu-item-4237 ul.sub-menu:before {
	right: 180px;
	left: auto !important;
}

#header-menu #menu-main-navigation > li > .sub-menu > li > .sub-menu {
	list-style: none;
	padding: 10px 0;
	margin: 0 0 10px;
	background: linear-gradient(0deg, rgba(255,255,255,0.08), rgba(255,255,255,0.12));
	width: 100%;
	border-radius: 6px;
}

#header-menu #menu-main-navigation .sub-menu .sub-menu > .menu-item > a {
	font-size: 14px;
	padding: 2px 20px;
}

#header-menu li.mega_menu>ul.sub-menu {
	display: block;
	width: 675px !important;
	max-width: none !important;
	left: -364px !important;
	padding: 25px 40px !important;
}

#header-menu li.mega_menu>ul.sub-menu>li.menu-item {
	width: 100%;
	display: block !important;
	float: none;
	position: relative;
}

#header-menu li.mega_menu>ul.sub-menu>li.menu-item-has-children {
	display: block !important;
	width: 39% !important;
	vertical-align: top;
	float: left !important;
	margin-right: 6%;
}

/* //////////////////////  FOOTER  ////////////////////// */
#footer-wrapper {
	position: relative;
	padding: 40px 0 0;
}

#footer-upper {
	position: relative;
	background: transparent;
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 0 40px;
}

#footer-toolbar {
	position: relative;
	max-width: 1400px;
	width: 100%;
	margin: 0 0 35px;
	padding: 6px 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

#footer-toolbar-links {
	display: flex;
	justify-content: center;
	background: #ebebeb;
	border-radius: 8px;
	padding: 8px 12px;
}

#footer-toolbar .toolbar-item {
	color: #222;
	padding: 12px 18px;
}

#footer-toolbar .toolbar-item-icon {
	filter: invert(1) contrast(0.5);
}

#footer-toolbar .toolbar-item:after {
	background: #999;
}

#footer-toolbar .toolbar-item:hover {
	color: #000;
}

#footer-toolbar a.toolbar-item:hover .toolbar-item-label {
	color: #000;
}

#footer-toolbar .toolbar-item:hover .toolbar-item-icon {
	filter: invert(1) contrast(1);
}

#footer-lower {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 0 40px;
	background: #1a274a;
	color: #FFF;
}

#footer-inner {
	position: relative;
	max-width: 1400px;
	width: 100%;
	padding: 80px 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

#footer-lower .footer-left {
	width: 300px;
	font-family: 'Roboto';
	font-weight: 400;
	font-size: 12px;
	line-height: 20px;
	padding: 8px 0;
}

#footer-lower .footer-left .mobile-logo {
	display: block;
	margin: 0 0 10px;
}

#mobile-nav-mailing-address {
	font-family: 'Roboto';
	font-weight: 400;
	font-size: 12px;
	line-height: 20px;
}

#mobile-nav-mailing-address h4 {
	font-family: 'Montserrat';
	color: #FFF;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0 0 5px;
}

#footer-lower .footer-right {
	width: 240px;
	padding: 8px 0;
	font-size: 11px;
	line-height: 16px;
}

.footer-right #mobile-nav-mailing-address p {
	font-size: 12px;
	line-height: 1.8em;
}

.footer-center {
	width: calc(100% - 540px);
	padding: 0 80px;
}

.footer-columns {
	display: flex;
	justify-content: space-between;
}

.footer-column {
	display: flex;
	flex-direction: column;
}

.footer-column-link {
	color: #FFF;
	font-family: 'Roboto';
	font-weight: 400;
	font-size: 12px;
	padding: 4px 0;
	opacity: 0.8;
}

.footer-column-link:hover {
	opacity: 1;
}

#footer-social {
	display: flex;
	justify-content: flex-start;
	margin: 0 0 30px;
}

#mobile-nav-site-social {
	display: flex;
	justify-content: flex-start;
}

.social-media {
	width: 26px;
	height: 26px;
	font-size: 0;
	margin: 0 15px 0 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
	opacity: 0.85;
	transition: 0.3s all;
}

.social-media:hover {
	opacity: 1;
}

.social-media.facebook {
	background-image: url(images/social-facebook.png);
}

.social-media.x {
	background-image: url(images/social-x.png);
}

.social-media.instagram {
	background-image: url(images/social-instagram.png);
}

.social-media.youtube {
	background-image: url(images/social-youtube.png);
}

#footer-wrapper .btn-primary, #footer-wrapper a.btn-primary {
	color: #c02a47;
	background: #FFF;
}

.swiper-pagination {
	width: 100%;
	bottom: 0;
}

.swiper-pagination-bullet {
	background: #000;
	opacity: 0.2;
}


.swiper-pagination-bullet-active {
	background: #2a3471 !important;
	opacity: 1;
}

body.dark-mode .swiper-pagination-bullet {
	background: #fff;
	opacity: 0.4;
}

.swiper-pagination-bullet {
	margin: 0 4px;
}

body.dark-mode .swiper-pagination-bullet-active {
	background: #fff !important;
	opacity: 1;
}

body.dark-mode #carousel-swiper-left .slide-inner {
	background: #131722;
}











/* //////////////////////////  DARK MODE  //////////////////////////// */
body.dark-mode,
body.dark-mode #header-wrap,
body.dark-mode #main-content,
body.dark-mode #footer-wrapper {
	background: #131722;
}

body.dark-mode {
	color:#ddd;
}

body.dark-mode .search-results-item .post-card-meta {
	color:#a7acbb;
}

.dark-mode #et-boc .et-l--post article p.post-meta,
.dark-mode #et-boc .et-l--post article p.post-meta a {
	color: #868997 !important;
}

.dark-mode #main-content p a,
.dark-mode #main-content .et_pb_blurb a,
.dark-mode #main-content ul li a {
	color: #f92d55;
}

.dark-mode #header-menu-toggle-1 {
	background: #ddd;
	box-shadow: 0 10px #ddd, 0 20px #ddd;
}

.dark-mode .et_pb_post_content_0_tb_body h2,
.dark-mode .et_pb_post_content_0_tb_body h3,
.dark-mode .et_pb_post_content_0_tb_body h4,
.dark-mode .et_pb_post_content_0_tb_body h5 {
	color: #ddd !important;
}

.dark-mode .et_pb_title_meta_container span.published {
	color: #a7acbb;
}

body.dark-mode header .et_pb_section {
	background: transparent;
}

body.dark-mode #header-wrap.headroom--not-top {
	background: hsl(224deg 28.3% 10.39% / 80%);
}

body.dark-mode #menu-main-navigation > .menu-item > a {
	color: #FFF;
}

body.dark-mode #menu-main-navigation > li.menu-item-has-children:after {
	box-shadow: 2.2px 2.2px 0 #FFFFFF;
}

body.dark-mode #header-search-toggle, 
body.dark-mode #site-search button {
	filter: contrast(5) invert(1) grayscale(1);
}

body.dark-mode #menu-main-navigation > .menu-item > a:after {
	background: #FFF;
}

body.dark-mode 

body.dark-mode #menu-main-navigation > .menu-item:focus > a,
body.dark-mode #menu-main-navigation > .menu-item:hover > a {
	color: #2d3344;
}

body.dark-mode #menu-main-navigation > li.menu-item-has-children:hover:after, 
body.dark-mode #menu-main-navigation > li.menu-item-has-children:focus:after {
	box-shadow: 2.2px 2.2px 0 #2d3344;
}

body.dark-mode #header-menu #menu-main-navigation > li > .sub-menu {
	background: #2d3344;
}

body.dark-mode #header-menu #menu-main-navigation > li > .sub-menu:before {
	background: #2d3344;
}

body.dark-mode #header-search-close {
	color: #FFF;
}

body.dark-mode #site-search-input {
	background: #19233c;
	color: #FFF;
	border: 1px solid rgba(255,255,255,0.3);
}

body.dark-mode #site-search-input::placeholder {
	color: rgba(255,255,255,0.7);
}

body.dark-mode #header-wrap.slideUp {
	box-shadow: 0 6px 0 #5db6f8, 0 0 50px rgb(26 39 74 / 40%);
}

body.dark-mode #header-wrap #header-progress {
	background: #b3d8f3;
}

body.dark-mode #footer-toolbar-links {
	background: #242736;
}

body.dark-mode #footer-toolbar-links .toolbar-item-icon,
body.dark-mode #footer-toolbar-links .toolbar-item:hover .toolbar-item-icon {
	filter: invert(0);
}

body.dark-mode #footer-toolbar-links .toolbar-item-label,
body.dark-mode #footer-toolbar-links a.toolbar-item:hover .toolbar-item-label {
	color: #FFF;
}

body.dark-mode #footer-lower {
	background: #181e2c;
}

body.dark-mode .et_pb_section {
	background: transparent;
}

.dark-mode #et-boc .et-l--post h2.entry-title a, .dark-mode #et-boc .et-l--post article .post-content p {
    color: #ddd !important;
}

.dark-mode .senator-card .senator-info {
	background: rgb(24 30 44 / 85%);
	box-shadow: inset 0 0 0 2px #b3c3ee, inset 0 0 0 1px rgb(34 34 34 / 15%);
	border-radius: 14px;
}

.dark-mode .senator-card .senator-info .senator-info-secondary {
	color: #eee;
}

.dark-mode .senator-card .senator-info .senator-info-bio {
	color: #fff;
}

.dark-mode a.news-pagination-item {
	color: #f92d55;
}

.dark-mode .news-pagination-item.spacer {
	color: #acb1bf;
}

.dark-mode .et_pb_text h2,
.dark-mode .et_pb_text h3,
.dark-mode .et_pb_text h4,
.dark-mode .et_pb_text h5 {
	color: #eee !important;
}

.dark-mode .senators-table .contact-senator-heading div {
	color: #c3cade;
}

.dark-mode .senator-list .senator-finder .senators-table div {
	color: #ddd;
}

.dark-mode .senator-social a {
	filter: brightness(100);
	opacity: .5;
}

.dark-mode .senators-table .contact-senator-row:nth-child(even) {
	background: #1c202b;
}

body.dark-mode p,
body.dark-mode .senator-info-secondary,
body.dark-mode .senators-carousel-header h2,
body.dark-mode .post-card-content,
body.dark-mode .post-card-title,
body.dark-mode .home-news-header h2 {
	color: #ddd;
}

body.dark-mode .post-card-date,
body.dark-mode .post-card-author {
	color: #868997;
}

.dark-mode #et-boc .et-l--post article p.post-meta,
.dark-mode #et-boc .et-l--post article p.post-meta a,
.dark-mode #et-boc article p.post-meta span.published {
	color: #868997 !important;
}

body.dark-mode #news-quick-menu-toggle {
	color: #c2cce7;
}

body.dark-mode #news-quick-menu-toggle .quick-menu-icon:before {
	background: #c2cce7;
}

body.dark-mode h1,
body.dark-mode .heading-title .et_pb_text_inner {
	color: #f92d55;
}

body.dark-mode .senator-card .senator-info-title {
	color: #f92d55;
}

.dark-mode #main-content p a {
	color: #f92d55;
}

.dark-mode .et_pb_post_content_0_tb_body h2 {
	color: #ddd !important;
}

.dark-mode .et_pb_title_meta_container span.published {
	color: #a7acbb;
}

body.dark-mode a.btn-secondary,
body.dark-mode .btn-secondary,
body.dark-mode #et-boc .post-content a {
	color: #f92d55 !important; 
}

body.dark-mode #page-container #et-boc .av-blog article h2.entry-title a {
	color: #ddd !important;
}

body.dark-mode .mejs-container .mejs-controls {
	background: #242736;
}

body.dark-mode #et-boc .post-content p {
	color:#ddd !important;
}

body.dark-mode #main-content .btn-primary, body.dark-mode #main-content a.btn-primary {
	color: #FFF;
}

/* //////////////////////////  MOBILE NAV  //////////////////////////// */
#header-menu-toggle {
	position: relative;
	width: 60px;
	height: 60px;
	cursor: pointer;
	display: none;
}

#header-menu-toggle-1 {
	background: #1a274a;
	width: 30px;
	height: 6px;
	border-radius: 3px;
	position: absolute;
	top: 16px;
	left: calc( 50% - 15px );
	box-shadow: 0 10px #1a274a, 0 20px #1a274a;
}

#mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background: rgb(25 35 60 / 90%);
	backdrop-filter: blur(6px);
	color: #FFF;
	display: none;
	opacity: 0;
	transition: 0.4s opacity;
}

#mobile-menu #mobile-menu-inner {
	position: relative;
	overflow-y: auto;
	height: 100%;
	padding: 40px;
}

#mobile-menu.show {
	display: block;
}

#mobile-menu.fade {
	opacity: 1;
}

body.mobile-nav {
	overflow: hidden;
}

#mobile-menu-close {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 80px;
	height: 80px;
	z-index: 20;
}

#mobile-menu-close:before {
	content: '+';
	transform: rotate(45deg);
	position: absolute;
	font-size: 46px;
	font-family: 'Montserrat';
	font-weight: 300;
	top: 28px;
	left: 28px;
}

#mobile-menu #menu-main-navigation-1 {
	position: relative;
	z-index: 10;
	list-style: none;
	padding: 0;
	font-family: 'Montserrat';
	font-weight: 400;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#mobile-menu #menu-main-navigation-1 > li > a {
	color: #FFF;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 0.05em;
	padding: 5px 20px;
}

#mobile-menu #menu-main-navigation-1 > li > ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	list-style: none;
	padding: 0px 20px 20px;
	position: relative;
	z-index: 10;
}

#mobile-menu #menu-main-navigation-1 > li > ul > li > a {
	color: #FFF;
	display: block;
	padding: 8px 0;
}

#mobile-menu a.mobile-logo {
	width: 100%;
	max-width: 400px;
	display: block;
	margin: 20px auto 20px;
	padding: 0 20px;
}

#mobile-nav-search-wrapper {
	text-align: center;
	padding: 20px;
	margin: 20px 0 0;
}

#mobile-menu li.menu-item-27 {
	position: relative;
}

#mobile-nav-senator-toggle {
	position: absolute;
	top: -10px;
	right: 20px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 1000;
	display: none;
}

#mobile-nav-senator-toggle:before {
	content: '';
	position: absolute;
	transform: rotate(45deg);
	box-shadow: 2px 2px #FFF;
	width: 12px;
	height: 12px;
	top: 8px;
	left: 14px;
	transition: 0.3s all;
}

#mobile-menu.senator-active #mobile-nav-senator-toggle:before {
	top: 18px;
	box-shadow: -2px -2px #FFF;
}

#mobile-nav-menu {
	position: relative;
}

#mobile-nav-lower {
	display: flex;
	justify-content: space-between;
	padding: 40px 20px 0;
	align-items: center;
}

#mobile-nav-site-info {
	padding: 0 20px 0 0;
	font-family: 'Montserrat';
	font-size: 13px;
	line-height: 18px;
	font-weight: 400;
}

#mobile-nav-lower .social-media:last-child {
	margin-right: 0;
}

#page-container:before {
	content: '';
	position: absolute;
	background: url(images/flag-bg.webp);
	width: 100%;
	height: 1600px;
	top: 0;
	left: -25%;
	background-size: 1600px;
	background-position: center 0;
	display: none;
}

#footer-wrapper .btn-primary,
#footer-wrapper a.btn-primary,
.et_divi_theme #footer-wrapper .btn-primary,
.et_divi_theme #footer-wrapper a.btn-primary {
	color: #d3d9ec;
	background: #ffffff2e;
}

/* //////////////////////////  POST CARDS  //////////////////////////// */
.post-cards {
	display: flex;
	flex-wrap: wrap;
	column-gap: 42px;
}

.post-card {
	width: calc(33.333% - 28px);
	margin: 0 0 40px;
}

.post-card-image {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 0 30px rgb(0 0 0 / 0%);
	transition: 0.6s all;
}

.post-card:hover .post-card-image {
	box-shadow: 0 0 30px rgb(0 0 0 / 25%);
}

.post-card-image-inner {
	width: 100%;
	height: 250px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: 1s all;
}

.post-card:hover .post-card-image-inner {
	transform: scale(1.03);
}

.post-card-meta {
	padding: 20px 0 10px;
	display: flex;
	justify-content: space-between;
}

.post-card-date, .post-card-author {
	color: #666;
	font-weight: 500;
	line-height: 16px;
}

.entry-content .post-card-title, 
.post-card-title {
	padding: 2px 0 15px;
	font-family: 'Montserrat';
	color: #222;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 26px;
	margin: 0;
}

.post-card-content {
	line-height: 24px;
	font-size: 13px;
	color: #222;
	padding: 5px 0 15px;
	font-weight: 500;
}

.home-news-header {
	position: relative;
	padding: 40px 0;
}

.entry-content .home-news-header h2,
.home-news-header h2 {
	padding: 6px 120px 6px 0;
	font-family: 'Montserrat';
	color: #222;
	font-size: 32px;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 22px;
	margin: 0;
}

.view-more-senators.btn-secondary {
	position: absolute;
	right: 20px;
}

a.footer-column-link:hover {
	color: #FFF;
}

.header-newsletter {
	position: absolute;
	top: 0;
	left: 0;
}

.header-newsletter a {
	color: #FFF;
	font-family: 'Montserrat';
	font-weight: 500;
	text-transform: uppercase;
	font-size: 11px;
	opacity: 0.9;
	line-height: 38px;
	display: block;
	padding: 0 20px;
}

.header-newsletter a:hover {
	color: #FFF;
}

.header-newsletter a:hover {
	opacity: 1;
}

.mobile-recieve-updates {
	margin: 20px 0 -10px 20px;
}

.all-senators .senator-card {
	width: calc( 20% - 17.6px );
	margin: 0 0 30px;
}



@media only screen and (max-width: 1600px) and (min-width: 1320px){
	#header-wrap .toolbar-item .toolbar-item-icon {
		display: none;
	}

	.header-toolbar-inner {
		justify-content: center;
	}
	
	#footer-toolbar .toolbar-item {
		display: flex;
		flex-direction: column;
		max-width: 120px;
		text-align: center;
	}
	
	#footer-toolbar .toolbar-item-icon {
		display: block;
		margin: 0;
	}
	
	#footer-toolbar .toolbar-item-label {
		line-height: 14px;
	}
	
	
	
	
}

@media only screen and (max-width: 1319px) and (min-width: 1024px){
	.toolbar-item-label {
		line-height: 10px;
		padding: 1px 0 0;
	}
	
	.header-toolbar-inner {
		padding: 0 120px;
		display: flex;
		align-items: center;
	}
	
	.toolbar-item {
		text-align: center;
	}
	
	.toolbar-item-label {
		line-height: 12px;
	}
	
	.toolbar-item .toolbar-item-icon {
		display: none;
	}
	
	.toolbar-item:after {
		opacity: 0.3;
	}
	
	#menu-main-navigation > .menu-item > a {
		font-size: 14px;
	}
	
	#header-search {
		width: calc(100% - 260px);
		height: 84px;
	}
	
	#site-search-input {
		font-size: 18px;
	}
	
	#header-left {
		width: 260px;
	}
	
	#header-right {
		width: calc(100% - 260px);
		padding: 0 0 0 20px;
	}
	
	#header-wrap.search-1 #header-right {
		left: 260px;
	}
	
	#footer-toolbar .toolbar-item {
		display: flex;
		flex-direction: column;
		max-width: 120px;
		text-align: center;
	}
	
	#footer-toolbar .toolbar-item-icon {
		display: block;
		margin: 0;
	}
	
	#footer-toolbar .toolbar-item-label {
		line-height: 14px;
	}
	
	.all-senators .senator-card {
		width: calc( 25% - 16.5px );
	}
	
	.footer-center {
		padding: 0 40px;
	}
	
	
	
	
	
	
	
}

@media only screen and (max-width: 1200px) and (min-width: 1024px){
	#menu-main-navigation > .menu-item > a {
		font-size: 13px;
		padding: 28px 15px;
		line-height: 14px;
	}
	
	#menu-main-navigation > .menu-item > a:after {
		top: 18px;
		height: calc( 100% - 36px );
	}
	
	#header-menu #menu-main-navigation > li.show-dropdown > .sub-menu:before {
		top: -5px;
	}
	
	#header-menu #menu-main-navigation > li > .sub-menu:before {
		left: 80px;
	}
	
	#header-menu #menu-main-navigation > li > .sub-menu {
		top: 70px;
	}
	
	#header-menu #menu-main-navigation > li.menu-item-27 .sub-menu {
		max-width: 680px;
	}
	
	#header-menu #menu-main-navigation > li > .sub-menu {
		padding: 20px 40px;
	}
	
	#header-menu #menu-main-navigation > li.show-dropdown > .sub-menu {
		padding: 30px 40px;
	}
	
	#header-wrap.headroom--not-top #header-menu #menu-main-navigation > li > .sub-menu {
		top: 54px;
	}
	
	#footer-lower .footer-left {
		width: 190px;
	}
	
	#footer-lower .footer-right {
		width: 210px;
	}
	
	.footer-center {
		width: calc(100% - 400px);
		padding: 0 40px;
	}
	
	.post-card-image-inner {
		height: 230px;
		background-size: contain;
	}
	
	#news-quick-menu {
		top: 141px;
	}
	
	#news-quick-menu-inner-2 {
		width: 100%;
	}
	
	#news-quick-menu-inner-2:before {
		display: none;
	}
	
	





}

@media only screen and (max-width: 1023px) and (min-width: 768px){
	#header-toolbar-links {
		display: none;
	}
	
	#header-toolbar-carousel {
		display: block;
	}
	
	.header-ada-tools {
		display: none;
	}
	
	#header-left {
		width: 280px;
		padding: 20px 0;
	}

	#header-menu, #header-search-toggle {
		display: none;
	}
	
	#header-right {
		justify-content: flex-end;
	}

	#header-menu-toggle {
		display: block;
	}
	
	#header-wrap.headroom--not-top {
		top: -38px;
	}
	
	#header-wrap.slideUp {
		top: -38px;
		transform: translateY( calc(-100% + 38px) );
	}
	
	#footer-toolbar-links {
		flex-wrap: wrap;
	}
	
	#footer-toolbar .toolbar-item:after {
		display: none;
	}
	
	#footer-inner {
		flex-wrap: wrap;
	}
	
	#footer-lower .footer-left {
		width: 180px;
	}
	
	.footer-center {
		width: calc(100% - 180px);
		padding: 0 0 0 60px;
	}
	
	#footer-lower .footer-right {
		width: 100%;
		padding: 20px 0 8px 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	#footer-social {
		order: 1;
		margin: 0;
	}
	
	.footer-right br {
		display: none;
	}
	
	#mobile-nav-mailing-address {
		width: 240px;
		padding: 0 60px 0 0;
	}
	
	.footer-column {
		padding: 0 20px 0 0;
	}
	
	.footer-column-link {
		line-height: 18px;
		padding: 6px 0;
	}
	
	.layout-carousel {
		display: flex;
		flex-direction: column;
	}
	
	.layout-carousel #carousel-swiper-left {
		width: 100%;
		margin: 0 0 25px;
	}
	
	.layout-carousel #carousel-swiper-right {
		width: 100%;
		display: flex;
		column-gap: 25px;
	}
	
	.layout-carousel #carousel-swiper-right .carousel-swiper {
		width: 50%;
		margin: 0;
	}
	
	.layout-carousel .carousel-slide-secondary .slide-bg {
		height: 150px;
	}
	
	.all-senators .senator-card {
		width: calc( 33.333% - 14.8px );
	}
	
	.senator-card .senator-photo {
		height: 275px;
	}
	
	.post-card {
		width: calc(50% - 21px);
	}
	
	.post-card-image-inner {
		height: 250px;
		background-size: contain;
	}
	
	.post-card-date, .post-card-author {
		font-size: 12px;
	}
	
	.post-card-title {
		font-size: 18px;
		line-height: 24px;
	}
	
	.senators-carousel .senator-card .senator-photo {
		height: 250px;
	}
	
	#news-quick-menu {
		top: 138px;
	}
	
	#news-quick-menu-inner-2 {
		width: 100%;
	}
	
	#news-quick-menu-inner-2:before {
		display: none;
	}
	
	#news-quick-menu .col-1 {
		order: 2;
		width: 100%;
		margin: 0;
	}
	
	#news-quick-menu .col-1 .cat-link {
		width: 48%;
		display: inline-block;
		vertical-align: top;
		padding: 6px 5% 6px 0;
	}
	
	#news-quick-menu .col-1 .cat-link:nth-child(2n+1) {
		padding: 6px 0 6px 5%;
	}
	
	#news-quick-menu .col-2 {
		order: 1;
		width: 100%;
	}
	
	#news-quick-menu .col-3 {
		order: 3;
	}
	
	.header-newsletter {
		display: none;
	}
	
	







}

@media only screen and (max-width: 767px) and (min-width: 480px){
	#header-toolbar-links {
		display: none;
	}
	
	#header-toolbar-carousel {
		display: block;
	}

		#et-boc .av-blog article {
			width: 46% !important;
			max-width: none;
		}
	
	.header-ada-tools {
		display: none;
	}
	
	#header-left {
		width: 280px;
		padding: 20px 0;
	}

	#header-menu, #header-search-toggle {
		display: none;
	}
	
	#header-right {
		justify-content: flex-end;
		width: calc(100% - 280px);
		padding: 0;
	}

	#header-menu-toggle {
		display: block;
		left: 30px;
	}
	
	#header-wrap.headroom--not-top {
		top: -38px;
	}
	
	#header-wrap.slideUp {
		top: -38px;
		transform: translateY( calc(-100% + 38px) );
	}
	
	#footer-toolbar-links {
		flex-wrap: wrap;
		padding: 40px 0 30px;
	}
	
	#footer-toolbar .toolbar-item:nth-child(2n+2):after {
		display: none;
	}
	
	#footer-toolbar .toolbar-item {
		width: 50%;
		padding: 8px 18px;
	}
	
	.toolbar-item:after {
		top: 0;
		height: 100%;
	}
	
	#footer-toolbar .toolbar-item:nth-child(7) {
		width: 100%;
	}
	
	#footer-inner {
		align-items: center;
		flex-direction: column;
	}
	
	#footer-lower .footer-left {
		width: 100%;
		max-width: 300px;
		padding: 0 0 30px;
	}
	
	.footer-center {
		width: 100%;
		max-width: 300px;
		padding: 0;
	}
	
	.footer-columns {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	
	#footer-lower .footer-right {
		width: 100%;
		padding: 10px 0 0;
		max-width: 300px;
	}
	
	.footer-column {
		padding: 0 20px 30px 0;
		width: 50%;
	}
	
	.layout-carousel {
		display: flex;
		flex-direction: column;
	}
	
	.layout-carousel #carousel-swiper-left {
		width: 100%;
		margin: 0 0 25px;
	}
	
	.layout-carousel #carousel-swiper-right {
		width: 100%;
		display: flex;
		column-gap: 25px;
	}
	
	.layout-carousel #carousel-swiper-right .carousel-swiper {
		width: 50%;
		margin: 0;
	}
	
	.layout-carousel .carousel-slide-secondary .slide-bg {
		height: 120px;
	}
	
	.carousel-slide-secondary .title {
		font-size: 14px;
		line-height: 22px;
	}
	
	.layout-carousel .carousel-slide-primary .slide-bg {
		margin: 0;
		height: 100%;
		width: 100%;
	}
	
	.layout-carousel .carousel-slide-primary .slide-content {
		left: 32px;
		width: calc( 100% - 64px );
		padding: 25px 35px 35px;
		height: auto;
	}
	
	.carousel-slide-primary .upper-title {
		font-size: 20px;
		line-height: 26px;
	}
	
	.carousel-slide-primary .title {
		font-size: 24px;
		line-height: 26px;
	}
	
	#carousel-swiper-left .carousel-swiper {
		height: 460px;
	}
	
	.carousel-slide-secondary .upper-title {
		font-size: 12px;
		line-height: 18px;
	}
	
	.all-senators .senator-card {
		width: calc( 50% - 11px );
	}
	
	.senator-card .senator-photo {
		height: 275px;
	}
	
	.senators-carousel .senator-card .senator-photo {
		height: 220px;
	}
	
	.post-card {
		width: calc(50% - 21px);
	}
	
	.post-card-image-inner {
		height: 180px;
		background-size: contain;
	}
	
	.post-card-date, .post-card-author {
		font-size: 12px;
	}
	
	.post-card-title {
		font-size: 18px;
		line-height: 24px;
	}
	
	#news-quick-menu {
		top: 138px;
	}
	
	#news-quick-menu-inner-2 {
		width: 100%;
		padding: 60px 75px;
	}
	
	#news-quick-menu-inner-2:before {
		display: none;
	}
	
	#news-quick-menu .col-1 {
		order: 2;
		width: 100%;
		margin: 0;
	}
	
	#news-quick-menu .col-1 .cat-link {
		width: 48%;
		display: inline-block;
		vertical-align: top;
		padding: 6px 5% 6px 0;
	}
	
	#news-quick-menu .col-1 .cat-link:nth-child(2n+1) {
		padding: 6px 0 6px 5%;
	}
	
	#news-quick-menu .col-2 {
		order: 1;
		width: 100%;
	}
	
	#news-quick-menu .col-3 {
		order: 3;
	}
	
	.header-newsletter {
		display: none;
	}
	
	
	
	
	
	
	
	
	
	
}

@media only screen and (max-width: 699px) and (min-width: 480px){
	#mobile-menu #menu-main-navigation-1 > li > ul > li {
		width: 50%;
	}
	
	#mobile-menu #menu-main-navigation-1 {
		display: flex;
		flex-direction: column;
	}
	
	#mobile-nav-senator-toggle {
		display: block;
	}
	
	#mobile-menu #menu-main-navigation-1 > li > ul {
		display: none;
	}
	
	#mobile-menu.senator-active #menu-main-navigation-1 > li > ul {
		display: flex;
	}
	
	#et-boc .av-blog article {
		width: 100% !important;
		max-width: none;
	}

	#et-boc .et_pb_post_content_0_tb_body h1,
	#et-boc #main-content .et_pb_module.heading-title > div {
		font-size:42px;
	}
	
}

@media only screen and (max-width: 479px){
	#header-toolbar-links {
		display: none;
	}

	#et-boc .et_pb_post_content_0_tb_body h1,
	#et-boc #main-content .et_pb_module.heading-title>div {
		font-size: 42px;
	}

	.post-card {
		width:100% !important;
	}

	#et-boc .av-blog article {
		width: 100% !important;
		max-width: none;
	}
	
	#header-toolbar-carousel {
		display: block;
	}
	
	.header-ada-tools {
		display: none;
	}
	
	#header-lower {
		padding: 0 30px;
	}
	
	#header-left {
		width: 220px;
		padding: 20px 0;
	}

	#header-menu, #header-search-toggle {
		display: none;
	}
	
	#header-right {
		justify-content: flex-end;
		width: calc(100% - 220px);
		padding: 0;
	}

	#header-menu-toggle {
		display: block;
		left: 20px;
	}
	
	#header-wrap.headroom--not-top {
		top: -38px;
	}
	
	#header-wrap.slideUp {
		top: -38px;
		transform: translateY( calc(-100% + 38px) );
	}
	
	#mobile-menu #menu-main-navigation-1 {
		display: flex;
		flex-direction: column;
	}
	
	#mobile-menu #menu-main-navigation-1 > li > ul {
		display: flex;
		flex-direction: column;
	}
	
	#mobile-menu #menu-main-navigation-1 > li > ul > li {
		width: 100%;
	}
	
	#mobile-nav-senator-toggle {
		display: block;
	}
	
	#mobile-menu #menu-main-navigation-1 > li > ul {
		display: none;
	}
	
	#mobile-menu.senator-active #menu-main-navigation-1 > li > ul {
		display: flex;
	}
	
	#footer-toolbar-links {
		flex-direction: column;
		align-items: flex-start;
	}
	
	#footer-toolbar .toolbar-item:after {
		display: none;
	}
	
	#footer-upper {
		padding: 0 20px;
	}
	
	#footer-inner {
		align-items: center;
		flex-direction: column;
	}
	
	#footer-lower .footer-left {
		width: 100%;
		max-width: 300px;
		padding: 0 0 30px;
	}
	
	.footer-center {
		width: 100%;
		max-width: 300px;
		padding: 0;
	}
	
	.footer-columns {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	
	#footer-lower .footer-right {
		width: 100%;
		padding: 10px 0 0;
		max-width: 300px;
	}
	
	.footer-column {
		padding: 0 20px 30px 0;
		width: 50%;
	}
	
	#mobile-nav-lower {
		align-items: flex-start;
		flex-direction: column;
	}
	
	#mobile-nav-site-info {
		order: 2;
		padding: 40px 0 0;
	}
	
	#mobile-nav-site-social {
		order: 1;
	}
	
	.layout-carousel {
		display: flex;
		flex-direction: column;
	}
	
	.layout-carousel #carousel-swiper-left {
		width: 100%;
		margin: 0 0 25px;
	}
	
	.layout-carousel #carousel-swiper-right {
		width: 100%;
		display: flex;
		column-gap: 25px;
	}
	
	.layout-carousel #carousel-swiper-right .carousel-swiper {
		width: 50%;
		margin: 0;
	}
	
	.layout-carousel .carousel-slide-secondary .slide-bg {
		height: 120px;
	}
	
	.carousel-slide-secondary .title {
		font-size: 14px;
		line-height: 22px;
	}
	
	.layout-carousel .carousel-slide-primary .slide-bg {
		margin: 0;
		height: 100%;
		width: 100%;
	}
	
	.layout-carousel .carousel-slide-primary .slide-content {
		left: 15px;
		top: 15px;
		width: calc( 100% - 30px );
		padding: 25px 35px 35px;
		height: calc( 100% - 30px );
	}
	
	.carousel-slide-primary .upper-title {
		font-size: 18px;
		line-height: 26px;
	}
	
	.carousel-slide-primary .title {
		font-size: 20px;
		line-height: 24px;
	}
	
	#carousel-swiper-left .carousel-swiper {
		height: 460px;
	}
	
	.carousel-slide-secondary .upper-title {
		font-size: 12px;
		line-height: 18px;
	}
	
	.carousel-swiper[carousel="three"] {
		display: none;
	}
	
	.layout-carousel #carousel-swiper-right .carousel-swiper[carousel="two"] {
		width: 100%;
	}
	
	.carousel-slide-primary .description {
		max-height: 230px;
		overflow: hidden;
		position: relative;
	}
	
	.layout-carousel.one-card .carousel-slide-primary .slide-content {
		left: 15px;
	}
	
	.all-senators .senator-card {
		width: 100%;
	}
	
	.senator-card .senator-photo {
		height: 300px;
	}
	
	.senators-carousel .senator-card .senator-photo {
		height: 220px;
	}
	
	.post-card {
		width: 100%;
	}
	
	.post-card-image-inner {
		height: 280px;
		background-size: contain;
	}
	
	#news-quick-menu {
		top: 138px;
	}
	
	#news-quick-menu-inner-2 {
		width: 100%;
		padding: 50px 55px;
	}
	
	#news-quick-menu-inner-2:before {
		display: none;
	}
	
	#news-quick-menu .col-1 {
		order: 2;
		width: 100%;
		margin: 0;
	}
	
	#news-quick-menu .col-1 .cat-link {
		width: 48%;
		display: inline-block;
		vertical-align: top;
		padding: 6px 5% 6px 0;
	}
	
	#news-quick-menu .col-1 .cat-link:nth-child(2n+1) {
		padding: 6px 0 6px 5%;
	}
	
	#news-quick-menu .col-2 {
		order: 1;
		width: 100%;
	}
	
	#news-quick-menu .col-3 {
		order: 3;
	}
	
	.header-newsletter {
		display: none;
	}
	
	.layout-carousel .carousel-slide-primary .description {
		font-size: 14px;
		line-height: 22px;
	}
	
	.entry-content .home-news-header h2, .home-news-header h2 {
		line-height: 30px;
	}
	
	.senators-carousel-header h2 {
		font-family: 'Montserrat';
		color: #222;
		font-size: 32px;
		font-weight: 600;
		letter-spacing: -0.02em;
		line-height: 22px;
		margin: 0;
		padding: 6px 0;
		text-align: left;
	}
	
	
	
	
	
	
	
	
}