@charset "UTF-8";
/*
Theme Name: EdChoice
Theme URI:
Description: Custom theme for EdChoice
Author: Joe Blackburn
Version: 1.0
Tags: custom
*/
/* =============================================================================
   Adapted from HTML5 Boilerplate CSS: h5bp.com/css
   ========================================================================== */
@keyframes spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* !Global Styles - - - - - */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: 3px;
}

.sans {
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
}

.serif {
  font-family: Georgia, Times, serif;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.blue {
  color: #0092BC;
}

.dk-blue {
  color: #005973;
}

.mid-blue {
  color: #6BC0D8;
}

.mid-blue50 {
  color: rgba(107, 192, 216, 0.5);
}

.lt-blue {
  color: #E6F4F8;
}

.purple {
  color: #6B3077;
}

.lt-purple {
  color: #F0EAF1;
}

.pink {
  color: #E10098;
}

.lt-pink {
  color: #FCE6F5;
}

.gold {
  color: #FCBD00;
}

.yellow {
  color: #FCBD00;
}

.lt-gold {
  color: #FEFAEE;
}

.orange {
  color: #FF6900;
}

.lt-orange {
  color: #FFF0E6;
}

.grey {
  color: #BABBBD;
}

.dk-grey {
  color: #212529;
}

.lt-grey {
  color: #f3f3f3;
}

.green {
  color: #8BBC23;
}

.lt-green {
  color: #eaf2da;
}

.red {
  color: #ED1C24;
}

.lt-red {
  color: #f7d7d6;
}

.white-bg {
  background: #fff;
}

.black-bg {
  background: #000;
}

.blue-bg {
  background: #0092BC;
}

.dk-blue-bg {
  background: #005973;
}

.mid-blue-bg {
  background: #6BC0D8;
}

.mid-blue50-bg {
  background: rgba(107, 192, 216, 0.5);
}

.lt-blue-bg {
  background: #E6F4F8;
}

.purple-bg {
  background: #6B3077;
}

.lt-purple-bg {
  background: #F0EAF1;
}

.pink-bg {
  background: #E10098;
}

.lt-pink-bg {
  background: #FCE6F5;
}

.gold-bg {
  background: #FCBD00;
}

.yellow-bg {
  background: #FCBD00;
}

.lt-gold-bg {
  background: #FEFAEE;
}

.orange-bg {
  background: #FF6900;
}

.lt-orange-bg {
  background: #FFF0E6;
}

.grey-bg {
  background: #BABBBD;
}

.dk-grey-bg {
  background: #212529;
}

.lt-grey-bg {
  background: #f3f3f3;
}

.green-bg {
  background: #8BBC23;
}

.lt-green-bg {
  background: #eaf2da;
}

.red-bg {
  background: #ED1C24;
}

.lt-red-bg {
  background: #f7d7d6;
}

.italic {
  font-style: italic;
}

.normal {
  font-weight: normal;
}

.bold {
  font-weight: bold;
}

.light {
  font-weight: 300;
}

.semi {
  font-weight: 600;
}

.xbold {
  font-weight: 800;
}

.center {
  text-align: center;
}

.upper {
  text-transform: uppercase;
}

.lower {
  text-transform: lowercase;
}

.space {
  letter-spacing: 0.05em;
}

.xspace {
  letter-spacing: 0.1em;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

.plain a, a.plain {
  text-decoration: none;
}

a {
  color: #0092BC;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}

a:hover {
  color: #E10098;
}

.rel {
  position: relative;
}

ul.clean {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.inline {
  display: inline-block;
}

ul.inline > li {
  display: inline;
  float: left;
}

ul.ilb > li,
.ilb {
  display: inline-block;
  vertical-align: top;
}

ul.ilb {
  display: block;
}

li.vmiddle,
.vmiddle {
  vertical-align: middle;
}

li.vbottom,
.vbottom {
  vertical-align: bottom;
}

.reverse {
  direction: rtl;
}

.dfix {
  direction: ltr;
}

img.full {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

img.fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}

.cover {
  background: url(images/trans.png) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
}

.grid.row {
  grid-auto-rows: 1fr;
}

.grid.grid2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.grid4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.grid5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.over {
  position: relative;
  z-index: 20;
}

.swap {
  grid-auto-flow: column;
  direction: rtl;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.overflow {
  overflow: hidden;
}

.rounded {
  border-radius: 6px;
}

.text-shadow {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.black-fade {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.blue-fade {
  background: linear-gradient(0deg, rgba(0, 146, 188, 0.6) 0%, rgba(0, 146, 188, 0) 100%);
}

.orange-fade {
  background: linear-gradient(0deg, rgba(255, 105, 0, 0.6) 0%, rgba(255, 105, 0, 0) 100%);
}

.gold-fade {
  background: linear-gradient(0deg, rgba(252, 189, 0, 0.6) 0%, rgba(252, 189, 0, 0) 100%);
}

.pink-fade {
  background: linear-gradient(0deg, rgba(225, 0, 152, 0.6) 0%, rgba(225, 0, 152, 0) 100%);
}

.purple-fade {
  background: linear-gradient(0deg, rgba(107, 48, 119, 0.6) 0%, rgba(107, 48, 119, 0) 100%);
}

/* !Font Size Functions - - - - - */
/* !Page Defaults - - - - - */
.text {
  line-height: 1.5em;
  font-size: 1rem;
}

.text.small-text {
  font-size: 0.875rem;
}

.text.large-text {
  font-size: 1.125rem;
  line-height: 1.7em;
}

.text p,
.text section.post-block {
  margin: 15px 0;
}

.text a {
  color: #0092BC;
  text-decoration: underline;
}

.text a:hover {
  color: #E10098;
}

.text.white a {
  color: #fff;
  text-decoration: underline;
}

.text.white a:hover {
  color: #FCBD00;
}

.header-text p:first-child,
.text p:first-child,
.text section.post-block:first-child {
  margin-top: 0;
}

.header-text p:last-child,
.text p:last-child,
.text section.post-block:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: normal;
}

.text img {
  display: block;
  margin: 10px auto;
  width: auto;
  height: auto;
  max-width: 100%;
}

.text img.alignleft,
.text .alignleft {
  float: left;
  margin: 0 30px 30px 0;
  display: inline-block;
}

.text img.alignright,
.text .alignright {
  float: right;
  margin: 0 0 30px 30px;
  display: inline-block;
}

.text ul {
  margin: 25px 0;
  list-style: none;
  padding: 0 0 0 20px;
}

.text ul li {
  position: relative;
  margin: 0;
  line-height: 1.3em;
  padding: 0 0 0 20px;
}

.text ul li + li {
  margin-top: 5px;
}

.text ul li:before {
  content: "•";
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}

.text h1,
.text h2,
.text h3,
.text h4,
.text h5 {
  margin: 30px 0 10px 0;
  font-weight: bold;
  color: #212529;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  line-height: 1.3em;
}

.text h1 {
  font-size: 2.5rem;
  font-family: Georgia, Times, serif;
}

.text h2 {
  font-size: 2rem;
  font-family: Georgia, Times, serif;
}

.header-block .text h2 {
  color: #0092BC;
}

.text h3 {
  font-size: 1.75rem;
}

.text h4 {
  font-size: 1.375rem;
}

.text h5 {
  font-size: 1.125rem;
}

.text.white h1,
.text.white h2,
.text.white h3,
.text.white h4,
.text.white h5 {
  color: #fff;
}

.text h1:first-child,
.text h2:first-child,
.text h3:first-child,
.text h4:first-child,
.text h5:first-child,
.text ul:first-child {
  margin-top: 0;
}

.text h1:last-child,
.text h2:last-child,
.text h3:last-child,
.text h4:last-child,
.text h5:last-child,
.text ul:last-child {
  margin-bottom: 0;
}

.text blockquote {
  margin: 30px 0;
  padding: 10px 0 10px 30px;
  border-left: 2px solid #6B3077;
  color: #212529;
  font-size: 1.125rem;
  line-height: 1.5em;
  text-align: left;
  font-family: Georgia, Times, serif;
  font-weight: 600;
}

.text.white blockquote {
  color: #fff;
}

section {
  scroll-margin-top: 80px;
}

/* !Body - - - - - */
html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-size: 16px;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  color: #212529;
  line-height: 1.6em;
  background: #005973;
}

section {
  scroll-margin-top: 150px;
}

#container {
  background: #fff;
  padding-top: 100px;
}

.inner {
  padding: 0 30px;
  max-width: 820px;
  display: block;
  margin: 0 auto;
}

.inner.mid {
  max-width: 1020px;
}

.inner.wide {
  max-width: 1210px;
}

.max {
  max-width: 1440px;
  display: block;
  margin: 0 auto;
}

.inner.max {
  max-width: 1500px;
}

.page-block + .page-block {
  margin-top: 80px;
}

.page-block.bg,
.block-pad,
.block-pad-top {
  padding: 80px 0;
}

.page-block.bg.small-block-pad,
.small-block-pad {
  padding: 60px 0;
}

.big-block-pad,
.page-block.bg.big-block-pad {
  padding: 100px 0;
}

.page-block.bg + .page-block.bg {
  margin-top: 0;
}

.page-block:last-child {
  padding-bottom: 80px;
}

.page-block:first-child {
  padding-top: 80px;
}

#main > .page-block:first-child.bg {
  margin-top: 0;
}

.block-pad-top {
  padding-top: 80px;
}

.block-pad-bottom {
  padding-bottom: 80px;
}

.big-block-pad:first-child,
.page-block.bg.big-block-pad:first-child {
  padding-top: 100px;
}

.big-block-pad:last-child,
.page-block.bg.big-block-pad:last-child {
  padding-bottom: 100px;
}

.page-block.bg.no-pad {
  padding: 0;
}

.page-block.margin-check:last-child {
  padding-bottom: 0;
}

/* !Headlines - - - - - */
.headline60,
.headline36 {
  font-family: Georgia, Times, serif;
  font-weight: bold;
  line-height: 1.2em;
}

.headline60 {
  font-size: 3.75rem;
}

.headline36 {
  font-size: 2.25rem;
}

.subhead28,
.subhead22,
.subhead18,
.subhead16 {
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  font-weight: bold;
  line-height: 1.2em;
}

.subhead28 {
  font-size: 1.75rem;
}

.subhead22 {
  font-size: 1.375rem;
}

.subhead18 {
  font-size: 1.125rem;
}

.subhead16 {
  font-size: 1rem;
}

/* !Buttons - - - - - */
.button,
input.gform_button {
  display: inline-block;
  background: #0092BC;
  color: #fff;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  font-weight: bold;
  padding: 9px 20px 12px 20px;
  font-size: 1.125rem;
  line-height: 1.3em;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 6px;
  transition: all 0.35s ease-in-out;
}

.button:hover,
input.gform_button:hover {
  color: #fff;
  background: #6B3077;
}

.button.pink-bg,
.theme-pink .button {
  background: #E10098;
  color: #fff;
}

.button.orange-bg,
.theme-orange .button {
  background: #FF6900;
  color: #fff;
}

.button.gold-bg,
.theme-gold .button,
.button.yellow-bg,
.theme-yellow .button {
  background: #FCBD00;
  color: #fff;
}

.button.purple-bg,
.theme-purple .button {
  background: #6B3077;
  color: #fff;
}

.button.green-bg,
.theme-green .button {
  background: #8BBC23;
  color: #fff;
}

.button.red-bg,
.theme-red .button {
  background: #ED1C24;
  color: #fff;
}

.button.purple-bg,
.theme-purple.button,
.button.pink-bg:hover,
.theme-pink .button:hover,
.button.orange-bg:hover,
.theme-orange .button:hover,
.button.gold-bg:hover,
.theme-gold .button:hover,
.button.yellow-bg:hover,
.theme-yellow .button:hover,
.button.green-bg:hover,
.theme-green .button:hover,
.button.red-bg:hover,
.theme-red .button:hover {
  background: #6B3077;
  color: #fff;
}

.button.purple-bg:hover,
.theme-purple .button:hover {
  background: #0092BC;
  color: #fff;
}

.button.outline {
  border: 1px solid #0092BC;
  color: #6B3077;
  background: rgba(107, 48, 119, 0);
}

.button.outline:hover {
  background: #6b3077;
  border-color: #6B3077;
  color: #fff;
}

.button.outline.white {
  color: #fff;
  background: rgba(255, 255, 255, 0);
  border-color: #fff;
}

.button.outline.white:hover {
  color: #fff;
  background: #E10098;
  border-color: #E10098;
}

.button.outline.white.white-hover:hover {
  background: #fff;
  color: #0092BC;
  border-color: #fff;
}

.button.outline.white.purple-hover:hover {
  background: #6B3077;
  color: #fff;
  border-color: #6B3077;
}

.text-link {
  display: inline-block;
  color: #0092BC;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.3em;
  cursor: pointer;
  position: relative;
}

.text-link:after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -3px;
  left: 0;
  background: #0092BC;
  transition: all 0.35s ease-in-out;
}

.text-link:hover:after {
  width: 100%;
  background: #6B3077;
}

.text-link:hover {
  color: #6B3077;
}

.text-link.white {
  color: #fff;
}

.text-link.white:hover {
  color: rgba(255, 255, 255, 0.5);
}

.text-link.white:after,
.text-link.white:hover:after {
  background: #fff;
}

/* !Spacing - - - - - */
.headline36 + .subhead28 {
  margin-top: 10px;
}

.subhead16 + .subhead28,
.subhead16 + .headline60 {
  margin-top: 15px;
}

* + .button,
* + .text,
* + .pod-section,
* + .text-link,
* + .bottom-button {
  margin-top: 30px;
}

.haedline60 + .text {
  margin-top: 40px;
}

/* !Image Hover - - - - - */
a > div.image-hover,
a.image-hover {
  position: relative;
  display: block;
}

a > div.image-hover:before,
a.image-hover:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 89, 115, 0);
  transition: all 0.35s ease-in-out;
}

a:hover > div.image-hover:before,
a.image-hover:hover:before {
  background: rgba(0, 89, 115, 0.3);
}

/* !Header - - - - - */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  z-index: 100500;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

a.logo {
  width: 160px;
  display: block;
}

.mega-nav {
  position: fixed;
  top: 100px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  height: auto;
  z-index: 100100;
  background: #005973;
  padding: 55px 0;
  color: #0092BC;
  transition: all 0.15s ease-in-out;
}

li:hover .mega-nav {
  visibility: visible;
  opacity: 1;
}

ul.nav {
  align-items: center;
  justify-content: flex-end;
}

ul.nav li,
a.search-toggle {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

ul.nav li.has-button {
  padding-left: 25px;
}

a.main {
  font-size: 1.125rem;
  line-height: 100px;
  padding: 0 12px;
  display: block;
  color: #6B3077;
  font-weight: bold;
}

a.main:hover,
a.main.active {
  color: #0092BC;
}

a.search-toggle svg {
  display: block;
  width: 30px;
  height: auto;
}

a.search-toggle path {
  fill: #212529;
  transition: all 0.35s ease-in-out;
}

a.search-toggle:hover path {
  fill: rgba(33, 37, 41, 0.6);
}

a.state-toggle {
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 100200;
  background: #0092BC;
  border-bottom-left-radius: 6px;
  color: #fff;
  padding: 10px 20px 12px 20px;
  font-size: 1.125rem;
  line-height: 1.3em;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  width: 250px;
  font-weight: bold;
}

a.state-toggle:hover {
  background: #005973;
}

a.state-toggle svg {
  position: relative;
  top: 1px;
}

.search-wrap {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: auto;
  padding: 45px 0;
  background: #f3f3f3;
  transform: translate(0, -100%);
  z-index: 100300;
  opacity: 0;
  transition: all 0.35s ease-in-out;
}

.search-active .search-wrap {
  transform: translate(0, 0);
  opacity: 1;
}

ul.subnav a,
.state-link {
  display: block;
  font-size: 1rem;
  color: #fff;
  line-height: 1.4em;
  font-weight: bold;
}

ul.subnav a.active,
ul.subnav a:hover {
  color: #6BC0D8;
}

a.state-link:hover {
  color: #005973;
}

ul.subnav li + li {
  margin-top: 10px;
}

.subhead16 + ul.subnav {
  margin-top: 10px;
}

.mega-nav-grid {
  display: grid;
  grid-template-columns: 290px 3fr;
  gap: 50px;
}

.mega-nav-right {
  columns: 3;
  column-gap: 30px;
  margin-top: -15px;
}

.nav-section {
  break-inside: avoid;
  padding: 15px 0;
}

.state-nav {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  height: auto;
  padding: 45px 0;
  transform: translate(0, -100%);
  z-index: 100300;
  background: #0092BC;
  opacity: 0;
  transition: all 0.35s ease-in-out;
}

.state-active .state-nav {
  transform: translate(0, 0);
  opacity: 1;
  top: 100px;
}

ul.state-nav-list {
  columns: 5;
  column-gap: 30px;
  margin-top: -8px;
}

.state-link {
  padding: 8px 0;
  display: block;
}

.state-link.inactive-state {
  color: #005973;
}

.state-nav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: end;
}

.state-nav-grid.has-button {
  grid-template-columns: 1fr 250px;
}

a.state-close {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 100;
  cursor: pointer;
}

a.state-close polygon {
  transition: all 0.35s ease-in-out;
}

a.state-close:hover polygon {
  fill: #6BC0D8;
}

ul.big-links a {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.3em;
  font-weight: bold;
}

ul.big-links a:hover {
  color: #6BC0D8;
}

ul.big-links li + li {
  margin-top: 10px;
}

* + ul.big-links {
  margin-top: 10px;
}

/* !Header Slideshow - - - - - */
.header-screen {
  padding: 80px 0 50px 0;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
  min-height: 720px;
}

.hide-overlay .header-screen {
  background: none;
}

.header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header-screen-content {
  padding: 0 70px;
  display: flex;
  width: 100%;
}

.header-max {
  max-width: calc(50% - 70px);
}

.header-screen-content.flex-center {
  justify-content: center;
  text-align: center;
}

.header-screen-content.flex-right {
  justify-content: flex-end;
}

button.slick-prev,
button.slick-next {
  width: 60px;
  height: 46px;
  position: absolute;
  top: 50%;
  text-indent: -9999px;
  border: none;
  z-index: 100;
  transform: translate(0, -50%);
  transition: all 0.35s ease-in-out;
}

.header-image-wrap button.slick-prev,
.header-image-wrap button.slick-next {
  display: none;
}

button.slick-prev {
  left: 0;
  background: url(images/slide-arrow-left.svg) no-repeat center;
}

button.slick-next {
  right: 0;
  background: url(images/slide-arrow-right.svg) no-repeat center;
}

button.slick-prev:hover,
button.slick-next:hover {
  opacity: 0.5;
}

ul.slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0 30px 20px 30px;
  z-index: 100;
}

ul.slick-dots li {
  width: 12px;
  height: 12px;
  border-radius: 120%;
  text-indent: -9999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid #0092BC;
  transition: all 0.35s ease-in-out;
}

ul.slick-dots li.slick-active {
  background: rgba(255, 255, 255, 0.7);
  border-color: #fff;
}

/* !Form Fields - - - - - */
.gfield {
  margin: 0;
  clear: both;
}

.gfield_error.gfield {
  margin-bottom: 20px;
}

input.medium,
input.large,
input.small,
select,
textarea,
.ginput_complex input,
.ginput_product_price_wrapper input[type=text],
.gfield--type-product input[type=number],
input.datepicker,
input#dt-search-0,
div.dt-container select.dt-input {
  background: #f3f3f3;
  border-radius: 0;
  height: 50px;
  font-size: 1rem;
  line-height: 1.3em;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  color: #005973;
  padding: 5px 15px 10px 15px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  font-style: normal;
}

.signup-form input.large {
  height: 44px;
}

select,
div.dt-container select.dt-input {
  background: url(images/select-arrow.svg) no-repeat right 15px center #f3f3f3;
  padding-right: 52px;
}

.dark-form input.medium,
.dark-form input.large,
.dark-form input.small,
.dark-form select,
.dark-form textarea,
.dark-form .ginput_complex input,
.dark-form .ginput_product_price_wrapper input[type=text],
.dark-form .gfield--type-product input[type=number],
.dark-form input.datepicker {
  background-color: #fff;
}

textarea {
  resize: none;
  height: 150px;
  padding: 20px;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #005973;
  transition: all 0.35s ease-in-out;
}

:-moz-placeholder { /* Firefox 18- */
  opacity: 1;
  color: #005973;
  transition: all 0.35s ease-in-out;
}

::-moz-placeholder { /* Firefox 19+ */
  opacity: 1;
  color: #005973;
  transition: all 0.35s ease-in-out;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #005973;
  transition: all 0.35s ease-in-out;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus:-moz-placeholder { /* Firefox 18- */
  color: transparent;
}

:focus::-moz-placeholder { /* Firefox 19+ */
  color: transparent;
}

:focus:-ms-input-placeholder {
  color: transparent;
}

.gform_validation_container {
  display: none !important;
}

.gfield_label,
.ginput_complex label,
.ginput_container_creditcard legend,
.gfield--type-choice legend {
  color: #6B3077;
  font-size: 0.875rem;
  padding-bottom: 10px;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  font-weight: bold;
  line-height: 1.3em;
  display: block;
}

.gform_submission_error {
  padding-bottom: 20px;
  color: #FF6900 !important;
  font-size: 1.25rem;
  line-height: 1.4em;
  font-weight: bold;
  padding-bottom: 30px;
}

.validation_message,
.gfield_validation_message,
.gfield_description,
.gfield--type-html {
  padding-top: 15px;
  color: #212529;
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1.4em;
  clear: both;
}

.validation_message,
.gfield_validation_message,
.gform_validation_errors a {
  color: #FF6900;
}

.gform_validation_errors a:hover {
  color: #6B3077;
}

.gform_confirmation_message {
  color: #212529;
  font-size: 1.25rem;
  line-height: 1.4em;
}

#gform_confirmation_message_4 {
  color: #6B3077;
  font-size: 1.5rem;
  text-align: center;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

.gfield_radio,
.gfield_checkbox,
.gfield--type-consent {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  display: inline-block;
  width: 100%;
}

.gfield--type-consent legend {
  display: none;
}

fieldset.gfield--type-choice {
  clear: both;
}

fieldset.gfield--type-choice legend {
  padding-top: 20px;
}

.gfield_radio .gchoice,
.gfield_checkbox .gchoice,
.gfield--type-consent {
  text-align: left;
  width: 50%;
  padding: 0 25px 0 0;
  margin: 15px 0 0 0;
  position: relative;
  vertical-align: top;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.gfield--type-consent {
  width: 100%;
  margin-bottom: 20px;
}

.gfield_radio label,
.gfield_checkbox label,
.gfield--type-consent label {
  font-size: 0.875rem;
  width: calc(100% - 40px);
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  color: #212529;
  font-weight: bold;
}

.dark-form .gfield_radio label,
.dark-form .gfield_checkbox label,
.dark-form .gfield--type-consent label {
  color: #fff;
}

.gfield_radio input,
.gfield_checkbox input,
.gfield--type-consent input {
  width: 30px;
  height: 30px;
  border: 5px solid #f3f3f3;
  background: #f3f3f3;
  border-radius: 120%;
  -webkit-appearance: none;
}

.dark-form .gfield_radio input,
.dark-form .gfield_checkbox input,
.dark-form .gfield--type-consent input {
  border-color: #fff;
  background-color: #fff;
}

.gfield_checkbox input,
.gfield--type-consent input {
  border-radius: 0;
}

.woocommerce-terms-and-conditions-wrapper input[type=checkbox] {
  top: 1px;
}

.woocommerce-form-login__rememberme,
.remember_me label {
  position: relative;
  padding-left: 40px;
  top: 0;
}

.remember_me label {
  margin-top: 20px;
}

.woocommerce input#rememberme {
  padding: 0;
  margin: 0;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme,
#loginform .sensei-login-submit a {
  display: inline-block;
  margin-top: 10px;
  margin-left: 20px;
}

.gfield_radio input:checked {
  background: #6B3077;
}

.gfield_checkbox input:checked,
.offset input[type=checkbox],
.woocommerce input#rememberme:checked,
.woocommerce-terms-and-conditions-wrapper input[type=checkbox]:checked,
.remember_me input[type=checkbox]:checked,
.gfield--type-consent input:checked {
  background: url(images/check.svg) no-repeat center #f3f3f3;
}

.dark-form .gfield_checkbox input:checked,
.dark-form .offset input[type=checkbox],
.dark-form .woocommerce input#rememberme:checked,
.dark-form .woocommerce-terms-and-conditions-wrapper input[type=checkbox]:checked,
.dark-form .remember_me input[type=checkbox]:checked,
.dark-form .gfield--type-consent input:checked {
  background-color: #6B3077;
}

.gfield:first-child .gsection_title {
  margin-top: 0;
}

.gform_fields {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.gfield {
  flex-basis: 100%;
}

.gfield--width-half {
  flex-basis: calc(50% - 10px);
}

.ginput_complex {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.gfield--type-time .ginput_complex {
  gap: 10px;
}

.hour_minute_colon {
  width: 3px;
  position: relative;
  top: 46px;
}

.screen-reader-text {
  display: none;
}

.gfield--type-time .ginput_container {
  flex-basis: calc(33.33% - 11px);
}

.ginput_complex.ginput_container_address span:nth-child(1),
.ginput_complex.ginput_container_address span:nth-child(2) {
  flex-basis: 100%;
}

.ginput_complex.ginput_container_address span:nth-child(3) {
  flex-basis: 40%;
}

.ginput_complex.ginput_container_address span:nth-child(4) {
  flex-basis: calc(30% - 20px);
}

.ginput_complex.ginput_container_address span:nth-child(5) {
  flex-basis: calc(30% - 20px);
}

.ginput_complex.ginput_container_address span:nth-child(6) {
  flex-basis: 100%;
}

.gfield_description:last-child {
  margin-top: 5px;
}

legend + .gfield_description {
  margin-top: 0;
}

.gform_wrapper {
  text-align: left;
}

.gform_ajax_spinner {
  margin: 20px auto 0 auto;
  border: 4px solid rgba(0, 89, 115, 0.2);
  border-left: 4px solid #005973;
  animation: spinner 1.1s infinite linear;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.dark-form .gform_ajax_spinner {
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid #fff;
}

/* !Fields - - - - - */
.gfield_required_text,
.gfield--input-type-consent legend {
  display: none !important;
}

.gfield_required {
  color: #FF6900;
  padding-left: 2px;
}

h3.gsection_title,
.text h3.gsection_title {
  font-family: Georgia, Times, serif;
  font-weight: bold;
  border-bottom: 1px solid #BABBBD;
  color: #212529;
  font-size: 1.5rem;
  padding-bottom: 10px;
  line-height: 1.3em;
  margin: 50px 0 30px 0;
}

.gfield:first-child .gsection_title {
  margin-top: 0;
}

.ginput_complex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ginput_complex.ginput_container_address span:nth-child(1),
.ginput_complex.ginput_container_address span:nth-child(2) {
  flex-basis: 100%;
}

.ginput_complex.ginput_container_address span:nth-child(3) {
  flex-basis: 40%;
}

.ginput_complex.ginput_container_address span:nth-child(4) {
  flex-basis: calc(30% - 20px);
}

.ginput_complex.ginput_container_address span:nth-child(5) {
  flex-basis: calc(30% - 20px);
}

.ginput_complex.ginput_container_address span:nth-child(6) {
  flex-basis: 100%;
}

.gfield_description:last-child {
  margin-top: 5px;
}

legend + .gfield_description {
  margin-top: 0;
}

.text .gform_wrapper {
  margin-top: 40px;
}

.text .gform_wrapper:first-child {
  margin-top: 0;
}

.gform_drop_area {
  border: 1px dashed #BABBBD;
  padding: 40px 20px;
  margin: 5px 0;
  text-align: center;
}

.gform_drop_instructions {
  display: block;
  margin-bottom: 15px;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#extensions_message {
  display: block;
  margin-top: 3px;
}

.ginput_preview {
  font-size: 0.9375rem;
  line-height: 16px;
  margin-bottom: 8px;
}

.ginput_preview button {
  width: 16px;
  height: 16px;
  z-index: 9;
  margin-right: 5px;
  position: relative;
  top: 1px;
  display: inline-block;
  border: none;
  padding: 0;
  text-indent: -9999px;
  background: url(images/cancel.svg) no-repeat;
}

.gform_footer img {
  display: block;
  margin: 30px auto 0 auto;
  width: 24px;
  height: 24px;
  clear: both;
}

.ginput_product_price_wrapper {
  font-size: 1rem;
  line-height: 1.4em;
  margin-bottom: 10px;
  border: none;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  margin: 0;
  font-weight: bold;
}

.ginput_product_price_wrapper .gform-field-label {
  margin-bottom: 5px;
}

.ginput_product_price_wrapper input[type=text] {
  font-size: 1rem;
  line-height: 1.4em;
  border: none;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  margin: 0;
}

.gfield--type-product input[type=number] {
  margin-left: 10px;
  max-width: 90px;
  display: inline-block;
  vertical-align: middle;
  margin-top: 10px;
}

.gfield--type-product .ginput_quantity_label {
  display: inline-block;
  vertical-align: middle;
  margin: 10px 0 0 0 !important;
}

.gfield--type-total {
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  color: #212529;
  margin: 40px 0;
}

.gfield--type-total .gfield_label {
  font-size: 1.875rem;
  line-height: 1.3em;
  font-weight: bold;
  display: inline-block;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  vertical-align: top;
  padding: 0 15px 0 0;
  color: #6B3077;
  position: relative;
  top: 1px;
  text-transform: capitalize;
}

.ginput_container_total {
  font-weight: bold;
  display: inline-block;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  vertical-align: top;
}

input.ginput_total {
  border: none;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  font-size: 1.875rem;
  line-height: 1.3em;
  font-weight: bold;
  color: #212529;
  background: none;
  padding: 0;
}

.ginput_container_creditcard {
  max-width: 475px;
}

.ginput_container_creditcard span {
  display: block;
  width: 100%;
  float: none;
}

.ginput_container_creditcard span + span {
  margin-top: 20px;
}

.ginput_cardinfo_left {
  margin-bottom: 20px;
}

.gform_card_icon_container,
.ginput_container_creditcard span.ginput_card_security_code_icon {
  display: none;
}

.gform_footer {
  padding-top: 20px;
}

.signup-form .gform_footer {
  padding: 0;
}

html #gform_4 .gfield--type-tax {
  position: absolute;
  top: 0;
  left: -9999px;
  z-index: -10;
}

.gfield_radio,
.gfield_checkbox,
.gfield--type-consent,
.ginput_container_consent {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  align-items: flex-start;
}

.ginput_container_consent {
  gap: 10px;
}

.gfield_radio .gchoice,
.gfield_checkbox .gchoice {
  width: 33.33%;
}

#gform_fields_4 .gfield--type-radio legend.gform-field-label,
.gfield--type-stripe > label {
  font-size: 1.75rem;
}

.gfield--type-address > legend {
  font-size: 1.375rem;
}

#gform_fields_4 .gfield_radio label,
#gform_fields_4 .ginput_container_consent label {
  font-size: 1.125rem;
}

.ginput_container_creditcard {
  max-width: 100%;
  display: block;
}

#gfield_description_4_17 {
  padding-bottom: 30px;
}

/* html #gform_4 fieldset .gfield_radio input.gfield-choice-input,
{
background-color: #fff;
width: 30px;
height: 30px;
border-radius: 15px;
position: relative;
top: -1px;
transition: background 0.15s ease, border 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
border: 1px solid rgb(230, 230, 230);
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02);
-moz-appearance: none;
-webkit-appearance: none;
outline: 3px solid #fff;
outline-offset: -4px;
}

html #gform_4 fieldset .gfield_radio input.gfield-choice-input:checked,
{ background: $purple;} */
.gform_required_legend {
  display: none;
}

/* !Datepicker - - - - - */
.ui-datepicker {
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -9999px;
  left: -9999px;
  transform: translate(0, 15px);
  width: 280px;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  border-radius: none;
  font-weight: bold;
}

.ui-datepicker-title {
  padding: 10px 0;
}

table.ui-datepicker-calendar td {
  padding: 4px 5px;
  text-align: center;
  color: #f3f3f3;
}

table.ui-datepicker-calendar th {
  color: #212529;
}

.ui-datepicker-title select {
  width: calc(50% - 8px);
  margin: 0 0 0 8px;
  background-color: #f3f3f3;
  color: #212529;
  font-size: 0.8125rem;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  font-weight: 600;
  height: 40px;
  text-transform: uppercase;
  border-radius: 0 !important;
  padding: 0 25px 0 10px;
}

.ui-datepicker-title select:first-child {
  margin: 0 8px 0 0;
}

a.ui-datepicker-prev {
  width: 50%;
  padding: 0 5px 3px 18px;
  line-height: 20px;
  font-weight: bold;
  background: url(images/small-arrow-left.svg) no-repeat left 3px;
  display: inline-block;
  text-transform: uppercase;
  color: #212529;
}

a.ui-datepicker-next {
  width: 50%;
  padding: 0 18px 3px 5px;
  text-align: right;
  line-height: 20px;
  font-weight: bold;
  background: url(images/small-arrow-right.svg) no-repeat right 3px;
  display: inline-block;
  text-transform: uppercase;
  color: #212529;
}

a.ui-datepicker-prev:hover,
a.ui-datepicker-next:hover {
  color: #6B3077;
}

a.ui-datepicker-prev span {
  padding-left: 10px;
  background: #fff;
  margin-left: -8px;
}

a.ui-datepicker-next span {
  padding-right: 10px;
  background: #fff;
  margin-right: -8px;
}

.ui-datepicker-calendar {
  width: 100%;
}

table.ui-datepicker-calendar td a {
  color: rgba(33, 37, 41, 0.5);
  display: block;
}

table.ui-datepicker-calendar td.ui-datepicker-today a,
table.ui-datepicker-calendar td a:hover {
  color: #6B3077;
}

.ginput_container_date span,
.gfield--type-date .screen-reader-text {
  display: none;
}

.stripe_validation_error {
  padding-bottom: 15px;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.4em;
}

/* !Hide Captcha Badge - - - - - */
.grecaptcha-logo,
.grecaptcha-badge,
.gfield--type-captcha {
  visibility: hidden !important;
}

/* !Footer - - - - - */
footer {
  background: #005973;
}

.footer-top {
  padding: 40px 0;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 60px;
}

.footer-top-right {
  padding-top: 10px;
}

.signup-form-wrap {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.signup-form .gfield_label {
  display: none;
}

.signup-form input[type=submit] {
  background: #E10098;
}

.signup-form input[type=submit]:hover {
  background: #6B3077;
  color: #fff;
}

.footer-middle-grid {
  gap: 30px;
}

ul.footer-links a,
a.bold-link {
  display: block;
  color: #6BC0D8;
}

ul.footer-links a:hover,
a.bold-link:hover {
  color: #fff;
}

ul.footer-links li + li,
a.bold-link + a.bold-link {
  margin-top: 10px;
}

.subhead16 + ul.footer-links {
  margin-top: 10px;
}

.footer-bottom {
  padding: 30px 0;
}

.footer-middle {
  padding-top: 40px 0;
}

.footer-bottom-grid {
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

ul.small-footer-nav {
  font-size: 1rem;
  color: #fff;
}

ul.small-footer-nav li {
  display: flex;
}

ul.small-footer-nav a {
  color: #fff;
  display: inline-block;
}

ul.small-footer-nav a:hover {
  color: #6BC0D8;
}

.footer-sep {
  padding: 0 10px;
}

ul.social {
  gap: 20px;
  align-items: center;
}

ul.social a {
  display: block;
}

ul.social circle {
  fill: #fff;
  transition: all 0.35s ease-in-out;
}

ul.social path {
  fill: #6B3077;
  transition: all 0.35s ease-in-out;
}

ul.social a:hover circle {
  fill: #E10098;
}

ul.social a:hover path {
  fill: #fff;
}

a.bold-link {
  font-weight: bold;
}

/* !Center Text - - - - - */
.center-image,
.box-image {
  max-width: 360px;
  margin: 0 auto 40px auto;
}

.center-image img.full,
.box-image img.full {
  width: auto;
  height: auto;
  max-width: 100%;
}

/* !Form Block - - - - - */
* + .page-form {
  margin-top: 40px;
}

/* !Center Media - - - - - */
* + .center-media {
  margin-top: 40px;
}

a.video-play {
  display: block;
  position: relative;
}

a.video-play:after {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(images/play-button.svg) no-repeat center;
  background-size: 100% auto;
  transition: all 0.35s ease-in-out;
}

a.video-play:hover:after {
  opacity: 0.7;
}

/* !History - - - - - */
.offset-grid {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 40px;
}

.side-image + .side-image {
  margin-top: 15px;
}

/* !Text Slider - - - - - */
.slide-top {
  margin-bottom: 40px;
}

.slider-wrap {
  padding: 0 10px;
  max-width: 1210px;
  margin: 0 auto;
  display: block;
}

.slider-wrap button.slick-prev,
.slider-wrap button.slick-next {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  text-indent: -9999px;
  border: none;
  z-index: 100;
  transform: translate(0, -50%);
  transition: all 0.35s ease-in-out;
}

.slider-wrap button.slick-prev {
  left: 10px;
  background: url(images/arrow-left.svg) no-repeat center;
}

.slider-wrap button.slick-next {
  right: 10px;
  background: url(images/arrow-right.svg) no-repeat center;
}

.slider-wrap button.slick-prev:hover,
.slider-wrap button.slick-next:hover {
  opacity: 0.5;
}

/* !Signup Bar - - - - - */
.page-block.signup-bar.bg,
.page-block.donate-bar.bg {
  padding: 50px 0;
}

.signup-bar .signup-form-wrap {
  justify-content: center;
}

.signup-bar-wrap {
  flex-direction: column;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.signup-bar .signup-form-left {
  text-align: center;
}

.signup-form-right {
  width: 100%;
  max-width: 1000px;
}

footer .signup-form-right {
  max-width: 800px;
}

.signup-form .gform_fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 120px;
  gap: 15px;
}

#field_3_5 .charleft,
#field_1_4 .charleft {
  display: none;
}

/* !Donate Bar - - - - - */
.donate-bar-wrap {
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.donate-bar-image {
  max-width: 180px;
}

.donate-bar-headline {
  max-width: calc(100% - 210px);
}

/* !Jobs - - - - - */
ul.job-list li + li {
  margin-top: 50px;
}

ul.job-list * + .subhead22 {
  margin-top: 5px;
}

a.job-link {
  display: block;
  color: #6B3077;
}

a.job-link:hover {
  color: #0092BC;
}

/* !Stats - - - - - */
* + .stats-bottom,
* + .icon-boxes-bottom {
  margin-top: 50px;
}

.stat-box {
  padding: 30px 50px;
  text-align: center;
  background: #f3f3f3;
}

.paeg-block.lt-grey-bg .stat-box {
  background: #fff;
}

.stats-grid {
  gap: 25px;
}

.stats-grid + .stats-grid {
  margin-top: 25px;
}

/* !Icon Columns - - - - - */
.box-icon {
  max-width: 105px;
  margin: 0 auto 30px auto;
}

ul.icon-cols {
  gap: 25px;
}

.icon-box {
  height: 100%;
}

/* !Accordion - - - - - */
.acc-toggle {
  padding: 30px 50px 30px 0;
  display: block;
  position: relative;
}

.acc-toggle:hover {
  color: #0092BC;
}

.acc-toggle:before {
  content: "";
  width: 16px;
  height: 2px;
  position: absolute;
  top: 40px;
  right: 5px;
  margin-top: -1px;
  background: #0092BC;
  z-index: 1;
}

.acc-toggle:after {
  content: "";
  width: 2px;
  height: 16px;
  position: absolute;
  top: 40px;
  right: 12px;
  margin-top: -8px;
  background: #0092BC;
  z-index: 2;
  transition: all 0.35s ease-in-out;
}

.acc-toggle.ui-state-active:after {
  opacity: 0;
}

.acc-content {
  padding: 10px 0 40px 0;
}

.acc-item + .acc-item {
  border-top: 1px solid #BABBBD;
}

.acc-wrap {
  margin-top: 20px;
}

/* !Team Block - - - - - */
* + ul.team-grid {
  margin-top: 50px;
}

ul.team-grid {
  gap: 40px 0;
  padding: 0 17px;
  width: calc(100% + 60px);
  margin-left: -30px;
  justify-content: center;
}

ul.team-grid li {
  width: 20%;
  padding: 0 13px;
}

.team-image {
  margin-bottom: 30px;
}

.team-title {
  margin-top: 5px;
}

a.team-link,
a.team-link:hover {
  color: #212529;
}

.team-creds {
  margin-top: 5px;
}

/* !Box Grid - - - - - */
.box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.box-grid-item,
.box-grid-image {
  display: block;
  height: 100%;
}

.box-text,
.icon-box {
  padding: 50px;
  text-align: center;
}

.box-screen {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
}

/* !Feed + Feature - - - - - */
.feed-cols {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 40px;
}

.feed-grid {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
}

ul.feed-list li + li,
.feed-feature + .feed-feature {
  margin-top: 40px;
}

.feed-headline {
  margin-bottom: 30px;
}

.feed-screen .feed-headline {
  margin-bottom: 0;
}

* + .text.excerpt {
  margin-top: 15px;
}

.feed-grid-title a {
  display: block;
}

.feed-grid-title a:hover {
  color: #6B3077;
}

.feed-screen {
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding: 50px;
  text-align: center;
}

/* !Blog Landing - - - - - */
.featured-post-title a {
  display: block;
  color: #6B3077;
}

.featured-post-title a:hover {
  color: #0092BC;
}

.featurd-post-image {
  margin-bottom: 35px;
}

a.read-more {
  display: block;
  margin-top: 45px;
}

.cats-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.cats-left {
  grid-column: 1/2;
}

.cats-right {
  grid-column: 2/4;
}

ul.post-grid {
  gap: 60px 30px;
}

.grid-post-image {
  margin-bottom: 25px;
}

.grid-post-image > a > img.full {
  aspect-ratio: 575/288;
  object-fit: cover;
}

.grid-post-image > a.pod-image > img.full {
  aspect-ratio: 1/1;
}

#searchform input.search-button {
  width: 50px;
  height: 50px;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: url(images/search-icon.svg) no-repeat center;
  background-size: 20px auto;
  text-indent: -9999px;
  transition: all 0.35s ease-in-out;
}

#searchform input.medium {
  padding-right: 65px;
}

#searchform input.search-button:hover {
  opacity: 0.5;
}

ul.featured-nav {
  gap: 15px;
  align-items: center;
}

* + ul.featured-nav {
  margin-top: 35px;
}

ul.featured-nav polygon {
  transition: all 0.35s ease-in-out;
}

ul.featured-nav a:hover polygon {
  fill: #0092BC;
}

/* !Single Post - - - - - */
.post-meta {
  margin: 45px 0;
}

.post-author a {
  color: #0092BC;
  text-decoration: underline;
}

.post-author a:hover {
  color: #6B3077;
}

.post-date {
  margin-top: 8px;
}

li.small-grid-post .small-feed-image {
  margin-bottom: 15px;
}

li.small-grid-post .small-feed-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 2/1;
}

.author-block {
  margin-top: 55px;
}

.author-block + .author-block {
  margin-top: 25px;
}

.author-grid {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 30px;
  grid-auto-rows: auto;
}

.author-box-title {
  margin-top: 8px;
}

.author-content * + .text {
  margin-top: 30px;
}

.author-content {
  position: relative;
}

.author-content:before {
  content: "";
  width: 50px;
  height: 1px;
  border-top: 1px solid #BABBBD;
  margin-top: 40px;
  padding-bottom: 25px;
  display: block;
}

.author-image {
  border-radius: 120%;
  overflow: hidden;
  display: block;
}

ul.post-sidebar li + li {
  margin-top: 40px;
}

/* !Single Jobs - - - - - */
.apply-button {
  margin: 30px 0;
}

/* !Single Team - - - - - */
.bio-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 30px;
}

.bio-social a circle {
  fill: #6B3077;
}

.bio-social a path {
  fill: #fff;
}

.bio-social a:hover circle {
  fill: #E10098;
}

ul.bio-social {
  margin-top: 15px;
}

.bio-title {
  margin-top: 5px;
}

.bio-content {
  margin-top: 50px;
}

.bio-content .text h2,
.bio-content .text h3 {
  color: #6B3077;
}

a.email {
  display: block;
  margin-top: 15px;
  color: #0092BC;
}

a.email:hover {
  color: #6B3077;
}

/* !Search Results - - - - - */
ol.search-list {
  margin: 50px 0;
  padding-left: 20px;
}

ol.search-list li + li {
  margin-top: 40px;
}

ol.search-list .post-title + .text {
  margin-top: 10px;
}

ol.search-list .post-title {
  position: relative;
  top: 2px;
}

ol.search-list .post-title a {
  color: #0092BC;
}

ol.search-list .post-title a:hover {
  color: #6B3077;
}

ol.search-list li::marker {
  font-weight: bold;
  color: #0092BC;
  left: -5px;
}

.searchwp-highlight {
  background: none;
  color: inherit;
}

/* !Post Search - - - - - */
.blog-search-top {
  margin-bottom: 50px;
}

.search-block-grid .no-results {
  margin-top: 40px;
}

.search-cats-bar {
  margin-bottom: 50px;
}

/* !Research Landing - - - - - */
a.research-grid-link {
  display: block;
}

.research-grid-image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: relative;
}

.research-grid-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease-in-out;
}

a:hover .research-grid-image {
  opacity: 0.5;
}

ul.res-grid {
  gap: 30px;
}

.res-cats-bar-grid {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 10px;
  align-items: center;
}

.res-cats-right {
  gap: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 250px;
}

.research-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  text-align: center;
  visibility: hidden;
}

/* !Single Research - - - - - */
.research-content-grid {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 50px;
}

.single-res-image {
  display: flex;
  justify-content: center;
}

.single-res-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

.res-authors a {
  text-decoration: underline;
  color: #6B3077;
}

.res-authors a:hover {
  color: #0092BC;
}

.res-subhead,
.res-authors {
  margin-top: 10px;
}

* + .add-list-wrap {
  margin-top: 45px;
}

* + ul.add-list {
  margin-top: 10px;
}

ul.add-list li + li {
  margin-top: 15px;
}

ul.add-list a {
  display: block;
  text-decoration: underline;
  color: #212529;
}

ul.add-list a:hover {
  color: #0092BC;
}

.res-share {
  margin-top: 45px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.res-share-label {
  font-size: 0.75rem;
  line-height: 1.3em;
  color: #0092BC;
  font-weight: bold;
  position: relative;
  top: -2px;
}

ul.share-list {
  gap: 10px;
  align-items: center;
}

ul.share-list svg,
l.share-list a {
  width: 28px;
  height: 28px;
  display: block;
}

ul.share-list path {
  fill: #fff;
}

ul.share-list circle {
  fill: #6B3077;
  transition: all 0.35s ease-in-out;
}

ul.share-list a:hover circle {
  fill: #E10098;
}

/* !Contact Header - - - - - */
* + .contact-info {
  margin-top: 45px;
}

.contact-info-section + .contact-info-section {
  margin-top: 30px;
}

.contact-info a {
  display: block;
  color: #212529;
}

.contact-info .subhead16 + a {
  margin-top: 10px;
}

.contact-info a:hover {
  color: #6B3077;
}

/* !Links - - - - - */
* + ul.links-list {
  margin-top: 45px;
}

ul.links-list {
  gap: 20px;
}

/* !Data Table - - - - - */
.data-table-wrap {
  display: flex;
}

#data thead,
#data tbody {
  background: #fff;
}

#data th:nth-child(1),
#data td:nth-child(1),
#data th:nth-child(2),
#data td:nth-child(2) {
  position: sticky;
  position: -webkit-sticky;
  left: 0px;
  z-index: 1001;
  background: #fff;
}

#data th:nth-child(2),
#data td:nth-child(2) {
  left: 49px;
}

#data th:nth-child(1),
#data th:nth-child(2) {
  background: #eaeaeb;
}

#data tr:nth-child(odd) td:nth-child(1),
#data tr:nth-child(odd) td:nth-child(2) {
  background: #f9f9f9;
}

.data-left {
  width: 260px;
}

.data-right {
  width: calc(100% - 260px);
  padding-left: 40px;
}

body div.dtsp-panesContainer div.dtsp-searchPanes {
  flex-direction: column;
  gap: 20px;
}

body div.dtsp-searchPane {
  max-width: none;
  width: 100%;
}

body div.dtsp-panesContainer div.dtsp-searchPanes div.dtsp-searchPane {
  margin-top: 0 !important;
}

.table-wrap {
  overflow: scroll;
  overflow-y: hidden;
  padding: 0 2px 20px 0;
}

.table-wrap::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.table-wrap::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background: rgba(107, 48, 119, 0.2);
  border-radius: 8px;
}

.table-wrap::-webkit-scrollbar-thumb {
  border-radius: 8px;
  -webkit-box-shadow: none;
  background: #6B3077;
}

body .dtsp-searchButtonCont,
body div.dtsp-panesContainer div.dtsp-title,
body .dt-search label {
  display: none;
}

.dash-choice #data td,
.dash-choice #data th {
  min-width: 100px;
}

.dash-choice #data td:nth-child(1),
.dash-choice #data th:nth-child(1) {
  min-width: 50px;
}

.dash-choice #data td:nth-child(2),
.dash-choice #data th:nth-child(2) {
  min-width: 130px;
}

.dash-choice #data td:nth-child(7),
.dash-choice #data th:nth-child(7),
.dash-choice #data td:nth-child(8),
.dash-choice #data th:nth-child(8),
.dash-choice #data td:nth-child(9),
.dash-choice #data th:nth-child(9),
.dash-choice #data td:nth-child(10),
.dash-choice #data th:nth-child(10),
.dash-choice #data td:nth-child(11),
.dash-choice #data th:nth-child(11),
.dash-choice #data td:nth-child(12),
.dash-choice #data th:nth-child(12),
.dash-choice #data td:nth-child(13),
.dash-choice #data th:nth-child(13) {
  min-width: 185px;
}

.dash-choice #data td:nth-child(3),
.dash-choice #data th:nth-child(3) {
  min-width: 260px;
}

.dash-choice #data td:nth-child(4),
.dash-choice #data th:nth-child(4) {
  min-width: 340px;
}

body table#data > thead > tr > th,
body table#data > tbody > tr > td {
  padding: 10px 15px;
  border: none;
  border-color: #BABBBD;
  border-left: 1px solid #BABBBD;
  outline: none;
}

body table#data > thead,
body table#data > tbody > tr {
  border-bottom: 1px solid #BABBBD;
}

body table#data > thead > tr > th {
  background: rgba(186, 187, 189, 0.3);
  padding: 10px 15px;
}

body table#data {
  border-color: #BABBBD;
  border-top: 1px solid #BABBBD;
  border-right: 1px solid #BABBBD;
}

body table#data thead > tr > th.dt-orderable-asc,
body table#data thead > tr > th.dt-orderable-desc,
body table#data thead > tr > th.dt-ordering-asc,
body table#data thead > tr > th.dt-ordering-desc,
body table#data thead > tr > td.dt-orderable-asc,
body table#data thead > tr > td.dt-orderable-desc,
body table#data thead > tr > td.dt-ordering-asc,
body table#data thead > tr > td.dt-ordering-desc {
  padding-right: 35px;
}

body table#data > thead > tr > th:first-child {
  padding-right: 10px;
  padding-left: 10px;
}

div.dtsp-panesContainer button.dtsp-clearAll,
div.dtsp-panesContainer button.dtsp-collapseAll,
div.dtsp-panesContainer button.dtsp-showAll {
  float: none;
}

.dtsp-titleRow,
body div.dt-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body .dtsp-titleRow button,
body div.dtsp-panesContainer button.dtsp-clearAll,
body div.dtsp-panesContainer button.dtsp-collapseAll,
body div.dtsp-panesContainer button.dtsp-showAll,
body div.dt-buttons > .dt-button,
body div.dt-buttons > div.dt-button-split .dt-button,
body div.dt-buttons > .dt-button:hover:not(.disabled),
body div.dt-buttons > div.dt-button-split .dt-button:hover:not(.disabled) {
  background: #f3f3f3;
  color: #212529;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  font-weight: bold;
  padding: 8px 12px 9px 12px;
  font-size: 0.8125rem;
  line-height: 1.3em;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 6px;
  transition: all 0.35s ease-in-out;
}

body div.dt-buttons > .dt-button {
  margin: 0;
}

body div.dtsp-panesContainer button.dtsp-clearAll {
  background: #6B3077;
  color: #fff;
}

body .dtsp-titleRow button:hover,
body div.dtsp-panesContainer button.dtsp-clearAll:hover,
body div.dtsp-panesContainer button.dtsp-collapseAll:hover,
body div.dtsp-panesContainer button.dtsp-showAll:hover,
body div.dt-buttons > .dt-button:hover,
body div.dt-buttons > div.dt-button-split .dt-button:hover,
body div.dt-buttons > .dt-button:hover:not(.disabled),
body div.dt-buttons > div.dt-button-split .dt-button:hover:not(.disabled) {
  background: #0092BC;
  color: #fff;
  border-radius: 6px;
}

.data-left .subhead28 {
  margin-bottom: 20px;
}

* + .dtsp-searchPanes {
  margin-top: 20px;
}

body table#data thead > tr > th.dt-orderable-asc:hover,
body table#data thead > tr > th.dt-orderable-desc:hover,
body table#data thead > tr > td.dt-orderable-asc:hover,
body table#data thead > tr > td.dt-orderable-desc:hover {
  outline-color: rgba(107, 48, 119, 0.3);
}

body table#data thead > tr > th.dt-orderable-asc span.dt-column-order:before,
body table#data thead > tr > th.dt-ordering-asc span.dt-column-order:before,
body table#data thead > tr > td.dt-orderable-asc span.dt-column-order:before,
body table#data thead > tr > td.dt-ordering-asc span.dt-column-order:before {
  bottom: calc(50% + 1px);
}

body table#data thead > tr > th.dt-orderable-asc span.dt-column-order:after,
body table#data thead > tr > th.dt-ordering-asc span.dt-column-order:after,
body table#data thead > tr > td.dt-orderable-asc span.dt-column-order:after,
body table#data thead > tr > td.dt-ordering-asc span.dt-column-order:after {
  top: calc(50% + 1px);
}

body div.dt-container div.dt-layout-row {
  margin: 0;
}

body div.dt-container div.dt-layout-row + div.dt-layout-row {
  margin-top: 30px;
}

input#dt-search-0 {
  padding: 8px 35px 10px 15px;
  width: 250px;
  height: auto;
  background: url(images/search-icon.svg) no-repeat right 10px center #f3f3f3;
  background-size: 18px auto;
  box-sizing: border-box;
}

body table#data thead > tr > th.dt-ordering-asc span.dt-column-order:before,
body table#data thead > tr > th.dt-ordering-desc span.dt-column-order:after,
body table#data thead > tr > td.dt-ordering-asc span.dt-column-order:before,
body table#data thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  opacity: 1;
  color: #6B3077;
}

body table#data > tbody > tr.selected > *,
body table#data.stripe > tbody > tr:nth-child(odd).selected > *,
body table#data.display > tbody > tr:nth-child(odd).selected > *,
body table#data.order-column > tbody tr.selected > .sorting_1,
body table#data.order-column > tbody tr.selected > .sorting_2,
body table#data.order-column > tbody tr.selected > .sorting_3,
body table#data.display > tbody tr.selected > .sorting_1,
body table#data.display > tbody tr.selected > .sorting_2,
body table#data.display > tbody tr.selected > .sorting_3,
body table#data.hover > tbody > tr.selected:hover > *,
body table#data.display > tbody > tr.selected:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(107, 48, 119, 0.2) !important;
  color: #212529;
  border-color: #BABBBD !important;
}

body table#data input.dt-select-checkbox {
  width: 15px;
  height: 15px;
  border: 1px solid #6B3077;
  z-index: 1;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
}

body table#data input.dt-select-checkbox:checked:after {
  content: "";
  width: 18px;
  height: 14px;
  background: url(images/check.svg) no-repeat center;
  z-index: 1;
  margin: 0;
  position: relative;
  bottom: 2px;
  left: 1px;
  z-index: 1;
}

body table#data input.dt-select-checkbox:indeterminate:after {
  display: none;
}

body .dt-paging nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

body div.dt-container .dt-paging .dt-paging-button {
  color: #6B3077 !important;
  background: transparent;
  border: none !important;
  background-color: none !important;
  border: 0;
  outline: 0;
  border-radius: 0;
  padding: 0;
  width: 36px;
  height: 36px;
  padding-bottom: 2px;
  margin: 0;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  outline: none !important;
}

body div.dt-container .dt-paging .dt-paging-button.current,
body div.dt-container .dt-paging .dt-paging-button.current:hover,
body div.dt-container .dt-paging .dt-paging-button.current,
body div.dt-container .dt-paging button.dt-paging-button.current:active,
body div.dt-container .dt-paging button.dt-paging-button.current:active:hover,
body div.dt-container .dt-paging button.dt-paging-button:active:hover {
  background: #6B3077;
  color: #fff !important;
  opacity: 1 !important;
}

body div.dt-container .dt-paging button.dt-paging-button:active {
  outline: none !important;
  box-shadow: none !important;
}

body div.dt-container .dt-paging .dt-paging-button:hover {
  background-color: rgba(107, 48, 119, 0.2) !important;
  color: #6B3077 !important;
  background-image: none;
}

body div.dt-container .dt-paging button.dt-paging-button.first,
body div.dt-container .dt-paging button.dt-paging-button.previous,
body div.dt-container .dt-paging button.dt-paging-button.first.disabled,
body div.dt-container .dt-paging button.dt-paging-button.previous.disabled,
body div.dt-container .dt-paging button.dt-paging-button.last,
body div.dt-container .dt-paging button.dt-paging-button.next,
body div.dt-container .dt-paging button.dt-paging-button.last.disabled,
body div.dt-container .dt-paging button.dt-paging-button.next.disabled {
  background: url(images/extra-small-arrow-left.svg) no-repeat center;
  border: none;
  text-indent: -9999px;
  border: none;
  border-radius: none;
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

body div.dt-container .dt-paging button.dt-paging-button.last,
body div.dt-container .dt-paging button.dt-paging-button.next,
body div.dt-container .dt-paging button.dt-paging-button.last.disabled,
body div.dt-container .dt-paging button.dt-paging-button.next.disabled {
  background-image: url(images/extra-small-arrow-right.svg);
}

body div.dt-container .dt-paging button.dt-paging-button.first,
body div.dt-container .dt-paging button.dt-paging-button.first.disabled {
  background-image: url(images/double-extra-small-arrow-left.svg);
}

body div.dt-container .dt-paging button.dt-paging-button.last,
body div.dt-container .dt-paging button.dt-paging-button.last.disabled {
  background-image: url(images/double-extra-small-arrow-right.svg);
}

body div.dt-container .dt-paging button.dt-paging-button:hover,
body div.dt-container .dt-paging button.dt-paging-button.disabled:hover,
body div.dt-container .dt-paging button.dt-paging-button.disabled:hover,
body div.dt-container .dt-paging button.dt-paging-button.disabled:active:hover,
body div.dt-container .dt-paging button.dt-paging-button.last:hover,
body div.dt-container .dt-paging button.dt-paging-button.next:hover,
body div.dt-container .dt-paging button.dt-paging-button.last.disabled:hover,
body div.dt-container .dt-paging button.dt-paging-button.next.disabled:hover {
  background-color: rgba(107, 48, 119, 0.2);
}

body div.dt-container .dt-paging button.dt-paging-button.first.disabled,
body div.dt-container .dt-paging button.dt-paging-button.previous.disabled,
body div.dt-container .dt-paging button.dt-paging-button.first.disabled:hover,
body div.dt-container .dt-paging button.dt-paging-button.previous.disabled:hover,
body div.dt-container .dt-paging button.dt-paging-button.disabled:active:hover,
body div.dt-container .dt-paging button.dt-paging-button.last.disabled,
body div.dt-container .dt-paging button.dt-paging-button.next.disabled,
body div.dt-container .dt-paging button.dt-paging-button.last.disabled:hover,
body div.dt-container .dt-paging button.dt-paging-button.next.disabled:hover {
  opacity: 0.5;
  background-color: transparent !important;
  cursor: default;
}

body div.dtsp-searchPane div.dtsp-topRow.dtsp-bordered {
  border: 1px solid #BABBBD;
  position: relative;
  padding: 0;
  font-family: "trade-gothic-next", "Trade Gothic", Arial, Verdana, sans-serif;
  color: #212529;
  border-radius: 0;
}

body div.dtsp-searchPane div.dtsp-topRow {
  align-items: center;
}

body div.dtsp-searchPane button.dtsp-paneButton,
body div.dtsp-searchPane button.dtsp-paneButton:hover {
  width: 30px;
  height: 30px;
  opacity: 1;
  padding: 0;
  margin: 0;
  transition: all 0.35s ease-in-out;
}

body div.dtsp-searchPane button.dtsp-paneButton.clearButton {
  background: url(images/clear.svg) no-repeat center;
  text-indent: -9999px;
}

body div.dtsp-topRow button.dtsp-collapseButton span.dtsp-caret {
  position: static;
}

body div.dtsp-searchPane div.dtsp-topRow button > span {
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background: url(images/toggle-arrow-reverse.svg) no-repeat center;
  transform-origin: center;
  position: static;
  display: block;
  overflow: hidden;
}

body div.dtsp-searchPane input.dtsp-paneInputButton:hover,
body div.dtsp-searchPane button.dtsp-paneButton:hover {
  background-color: transparent;
}

body .dtsp-subRow1 {
  width: calc(100% - 60px);
}

body .dtsp-subRow2 {
  width: 60px;
}

body div.dtsp-searchPane div.dt-container:hover,
body div.dtsp-searchPane div.dataTables_wrapper:hover,
body div.dtsp-searchPane div.dt-container,
body div.dtsp-searchPane div.dataTables_wrapper {
  border-color: #BABBBD;
  border-radius: 0;
}

body div.dtsp-searchPane div.dt-container div.dt-scroll,
body div.dtsp-searchPane div.dataTables_wrapper div.dt-scroll {
  margin-top: 0;
}

body div.dtsp-searchPane div.dt-container:hover,
body div.dtsp-searchPane div.dataTables_wrapper:hover {
  background: #f3f3f3;
  border-radius: 0;
}

body div.dtsp-searchPane div.dtsp-topRow {
  border: 1px solid #BABBBD;
  background: #f3f3f3;
  border-radius: 0;
  transition: all 0.35s ease-in-out;
}

body div.dtsp-searchPane div.dtsp-topRow.dtsp-bordered:hover {
  background-color: rgb(230.25, 230.25, 230.25);
}

body div.dtsp-searchPane div.dt-container,
body div.dtsp-searchPane div.dt-container:hover {
  border-top: none !important;
}

body div.dtsp-searchPane div.dt-container div.dt-scroll-body div.dtsp-nameCont span.dtsp-pill,
body div.dtsp-searchPane div.dt-container div.dataTables_scrollBody div.dtsp-nameCont span.dtsp-pill,
body div.dtsp-searchPane div.dataTables_wrapper div.dt-scroll-body div.dtsp-nameCont span.dtsp-pill,
body div.dtsp-searchPane div.dataTables_wrapper div.dataTables_scrollBody div.dtsp-nameCont span.dtsp-pill {
  background: rgba(107, 48, 119, 0.2);
  color: #212529;
  padding: 0 6px;
}

body td.dtsp-nameColumn:hover {
  background: #f3f3f3;
}

body .dtsp-searchPanes table.dataTable > tbody > tr.selected > * {
  box-shadow: inset 0 0 0 9999px #6B3077;
  color: #fff;
}

body div.dtsp-searchPane div.dt-container div.dt-scroll-body tr.selected div.dtsp-nameCont span.dtsp-pill,
body div.dtsp-searchPane div.dt-container div.dataTables_scrollBody tr.selected div.dtsp-nameCont span.dtsp-pill,
body div.dtsp-searchPane div.dataTables_wrapper div.dt-scroll-body tr.selected div.dtsp-nameCont span.dtsp-pill,
body div.dtsp-searchPane div.dataTables_wrapper div.dataTables_scrollBody tr.selected div.dtsp-nameCont span.dtsp-pill {
  background: #fff;
  color: #212529;
}

body div.dtsp-searchPane div.dtsp-topRow div.dtsp-searchCont input.dtsp-search {
  padding: 5px 10px;
  margin: 0;
}

.filter-header {
  display: grid;
  grid-template-columns: 1fr 20px;
  gap: 15px;
  align-items: center;
}

a.filter-title-toggle {
  position: relative;
  top: -2px;
}

a.filter-title-toggle svg {
  width: 100%;
  height: auto;
}

a.filter-title-toggle path {
  fill: #6B3077;
  transition: all 0.35s ease-in-out;
}

a.filter-title-toggle:hover path {
  fill: #0092BC;
}

.filter-text {
  display: none;
  padding-bottom: 30px;
}

.view,
.view label {
  display: flex;
  gap: 15px;
  align-items: center;
}

.view {
  margin-top: 20px;
}

.dt-length {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
}

div.dt-container .dt-length select.dt-input {
  width: 100px;
}

body table.dataTable > tbody > tr > td.select-checkbox:before,
body table.dataTable > tbody > tr > th.select-checkbox:before {
  display: none;
}

#data_wrapper + .text {
  margin-top: 45px;
}

/* !Single Litigation - - - - - */
ul.lit-list li {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lit-section + .lit-section {
  margin-top: 40px;
}

/* !Single State - - - - - */
.state-section {
  padding: 50px 0;
}

.state-section:nth-child(odd),
.page-block.program-text-block:nth-child(even) {
  background: #f3f3f3;
}

.page-block.program-text-block:nth-child(even) {
  padding: 80px 0;
}

ul.program-grid {
  gap: 40px;
}

ul.program-grid:not(:has(li)) {
  display: none;
}

.state-section * + ul.program-grid {
  margin-top: 40px;
}

* + .program-type {
  margin-top: 10px;
}

li.grid-program {
  border-left: 2px solid #0092BC;
  padding-left: 30px;
}

li.grid-program.theme-yellow,
li.grid-program.theme-gold {
  border-color: #FCBD00;
}

li.grid-program.theme-purple {
  border-color: #6B3077;
}

li.grid-program.theme-orange {
  border-color: #FF6900;
}

li.grid-program.theme-green {
  border-color: #8BBC23;
}

li.grid-program.theme-pink {
  border-color: #E10098;
}

li.grid-program.theme-red {
  border-color: #ED1C24;
}

ul.program-grid .program-name a {
  color: #0092BC;
  display: block;
}

li.grid-program.theme-yellow .program-name a,
li.grid-program.theme-gold .program-name a {
  color: #FCBD00;
}

li.grid-program.theme-purple .program-name a {
  color: #6B3077;
}

li.grid-program.theme-orange .program-name a {
  color: #FF6900;
}

li.grid-program.theme-green .program-name a {
  color: #8BBC23;
}

li.grid-program.theme-pink .program-name a {
  color: #E10098;
}

li.grid-program.theme-red .program-name a {
  color: #ED1C24;
}

ul.program-grid .program-name a:hover,
li.grid-program.theme-yellow .program-name a:hover,
li.grid-program.theme-gold .program-name a:hover,
li.grid-program.theme-orange .program-name a:hover,
li.grid-program.theme-green .program-name a:hover,
li.grid-program.theme-pink .program-name a:hover,
li.grid-program.theme-red .program-name a:hover {
  color: #6B3077;
}

li.grid-program.theme-purple .program-name a:hover {
  color: #6B3077;
}

.state-section-grid {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 50px;
  align-items: start;
}

.text div:not([class]) .fluid-width-video-wrapper {
  padding-top: 0 !important;
  position: static !important;
}

/* !Single Program - - - - - */
.program-text span strong {
  color: #000;
}

.program-text span strong em {
  font-style: normal;
}

.program-header ul.lit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 30px;
}

.program-header ul.lit-list li {
  justify-content: center;
  margin-top: 0;
}

.program-header ul.lit-list li + li {
  margin-top: 0;
}

ul.program-stats-grid li {
  padding: 25px 40px;
  text-align: center;
  width: 25%;
}

ul.program-stats-grid {
  width: calc(100% + 80px);
  margin-left: -40px;
  justify-content: center;
}

.program-stat * + .text {
  margin-top: 15px;
}

/* !Map Module - - - - - */
.map-legend {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 280px;
  border: 2px solid #0092BC;
  z-index: 1001;
  padding: 30px 25px;
  background: #fff;
}

ul.program-legend li {
  position: relative;
  padding-left: 25px;
  font-size: 0.875rem;
}

ul.program-legend li + li {
  margin-top: 5px;
}

ul.program-legend li:before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 7px;
  left: 0;
  z-index: 1;
  background: #0092BC;
  border-radius: 120%;
}

ul.program-legend li.theme-pink:before {
  background: #E10098;
}

ul.program-legend li.theme-purple:before {
  background: #6B3077;
}

ul.program-legend li.theme-orange:before {
  background: #FF6900;
}

ul.program-legend li.theme-green:before {
  background: #8BBC23;
}

ul.program-legend li.theme-gold:before {
  background: #FCBD00;
}

.map-graphic-wrap.has-legend {
  padding-left: 230px;
}

.prgoram-label {
  font-size: 1.125rem;
  line-height: 1.3em;
  margin-bottom: 15px;
}

.map-top {
  max-width: 760px;
  margin: 0 auto 40px auto;
}

/* !All Programs Page - - - - - */
* + ul.all-program-grid {
  margin-top: 40px;
}

.no-items,
.clear-filter-wrap {
  display: none;
}

.program-cats-grid {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 10px;
  align-items: center;
}

.program-cats-right {
  gap: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.con-cats .program-cats-right {
  grid-template-columns: 1fr;
}

.program-cats-top.con-cats {
  max-width: 400px;
}

ul.all-program-grid {
  width: 100%;
  gap: 40px;
}

.program-state {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 0.875rem;
  line-height: 1.3em;
}

ul.all-program-grid li.hide {
  display: none;
}

.clear-filter-wrap {
  padding-top: 40px;
}

.program-cats-top {
  max-width: 700px;
  margin: 0 auto;
}

/* !Half and Half - - - - - */
.half-grid {
  gap: 40px;
  align-items: center;
}

* + .half-content {
  margin-top: 40px;
}

video {
  width: 100%;
  height: auto;
}

.half-content .subhead18,
.content-pad .subhead18 {
  margin-bottom: 15px;
}

.half-content .subhead18:last-child,
.content-pad .subhead18:last-child {
  margin-bottom: 0;
}

/* !Infogram Module - - - - - */
.block-top:not(:last-child) {
  margin-bottom: 50px;
}

/* !Donate Module - - - - - */
* + .under-images {
  margin-top: 40px;
}

.under-image img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

.under-image {
  text-align: center;
}

/* !Pagination - - - - - */
.post-nav {
  padding: 50px 0 0 0;
}

/* !Chart Tabs - - - - - */
* + .chart-tabs {
  margin-top: 60px;
}

.chart-item + .chart-item {
  margin-top: 15px;
}

.chart-item {
  background: #f3f3f3;
}

a.chart-toggle {
  display: block;
  padding: 30px 70px 30px 30px;
  font-family: Georgia, Times, serif;
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.4em;
  color: #212529;
  position: relative;
}

a.chart-toggle:after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -9px;
  background: url(images/plus.svg) no-repeat center;
  background-size: 100% auto;
  z-index: 1;
  transform-origin: center;
  transition: all 0.35s ease-in-out;
}

a.chart-toggle.ui-state-active:after {
  transform: rotate(45deg);
}

.chart-content {
  border: 2px solid #f3f3f3;
  border-top: none;
  padding: 40px 30px;
  background: #fff;
}

.tab-grid {
  display: flex;
  position: relative;
}

.tab-grid:before {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 299px;
  background: #0092BC;
  z-index: 1;
}

.tab-grid-left {
  height: 100%;
  width: 300px;
  flex-grow: 1;
  position: relative;
  z-index: 10;
}

.tab-grid-right {
  padding-left: 50px;
  width: calc(100% - 300px);
  flex-grow: 1;
}

ul.chart-nav li + li {
  margin-top: 5px;
}

ul.chart-nav li,
.tab-grid a.resp-accordion {
  padding: 10px 30px 10px 0;
  font-size: 1.125rem;
  line-height: 1.3em;
  color: #212529;
  cursor: pointer;
  position: relative;
}

ul.chart-nav li.resp-tab-active,
ul.chart-nav li:hover {
  color: #0092BC;
}

ul.chart-nav li.resp-tab-active,
.tab-grid a.resp-accordion.resp-tab-active {
  font-weight: bold;
}

ul.chart-nav li:before,
.tab-grid a.resp-accordion:before {
  content: "";
  width: 30px;
  height: 30px;
  background: url(images/small-arrow-right-white.svg) no-repeat 11px center #0092BC;
  position: absolute;
  top: 50%;
  right: 0;
  border-radius: 120%;
  transform: translate(50%, -50%);
  z-index: 10;
  opacity: 0;
  transition: all 0.35s ease-in-out;
}

ul.chart-nav li.resp-tab-active:before,
.tab-grid a.resp-accordion:before {
  opacity: 1;
}

.tab-grid a.resp-accordion:before {
  transform: translate(0, -50%) rotate(90deg);
  transform-origin: center;
}

.tab-grid a.resp-accordion.resp-tab-active:before {
  transform: translate(0, -50%) rotate(-90deg);
}

.tab-grid * + a.resp-accordion {
  border-top: 2px solid #f3f3f3;
}

.tab-grid a.resp-accordion {
  padding: 20px 30px 20px 0;
}

.tab-grid a.resp-accordion,
.resp-tab-content {
  display: none;
}

.tab-grid-right .resp-tab-content {
  padding: 0;
}

html iframe {
  width: 100%;
  min-height: auto;
  overflow: visible;
}

/* !Litigation - - - - - */
.grid-box {
  background: #f3f3f3;
  padding: 30px 20px;
}

ul.am-grid {
  flex-wrap: wrap;
  gap: 30px;
}

/* !Other Dashboards - - - - - */
.dash-staff #data td,
.dash-staff #data th {
  min-width: 200px;
}

.dash-staff #data td:nth-child(1),
.dash-staff #data th:nth-child(1) {
  min-width: 50px;
}

.dash-fiscal #data td,
.dash-fiscal #data th {
  min-width: 200px;
}

.dash-fiscal #data td:nth-child(1),
.dash-fiscal #data th:nth-child(1) {
  min-width: 50px;
}

/* !Mobile Nav - - - - - */
.mobile-header-nav {
  display: none;
}

ul.mobile-header-nav-wrap {
  gap: 20px;
}

a.nav-toggle {
  width: 60px;
  height: 60px;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 100800;
  display: none;
}

a.nav-toggle div {
  width: 36px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0092BC;
  text-indent: -9999px;
  transition: all 0.35s ease-in-out;
}

a.nav-toggle.active div {
  background: #fff;
}

a.nav-toggle:before {
  content: "Close";
  position: absolute;
  top: 0;
  right: calc(100% + 5px);
  line-height: 60px;
  font-size: 0.875rem;
  color: #fff;
  z-index: 10;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
}

a.nav-toggle.active:before {
  visibility: visible;
  opacity: 1;
}

a.nav-toggle div:nth-child(1) {
  transform: translate(-50%, -9px);
}

a.nav-toggle div:nth-child(2) {
  transform: translate(-50%, -50%);
}

a.nav-toggle div:nth-child(3) {
  transform: translate(-50%, 7px);
}

a.nav-toggle.active div:nth-child(1) {
  transform: translate(-50%, 0) rotate(-45deg);
}

a.nav-toggle.active div:nth-child(2) {
  opacity: 0;
}

a.nav-toggle.active div:nth-child(3) {
  transform: translate(-50%, 0) rotate(45deg);
}

.nav-col {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 100500;
  overflow: scroll;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.nav-active .nav-col {
  visibility: visible;
  opacity: 1;
}

.nav-col-pad {
  padding: 100px 30px 30px 30px;
  min-height: 100dvh;
}

.mobile-subnav-wrap {
  display: none;
}

a.mobile-link {
  display: block;
  font-size: 1.625rem;
  line-height: 1.3em;
  font-weight: bold;
  color: #fff;
}

a.mobile-link:hover,
a.mobile-link.active {
  color: #6BC0D8;
}

ul.mobile-nav > li + li {
  margin-top: 15px;
}

a.mobile-donate-button {
  margin-top: 10px;
}

a.mobile-link.mobile-sub-toggle {
  padding-right: 30px;
  position: relative;
}

a.mobile-link.mobile-sub-toggle:before {
  content: "";
  width: 14px;
  height: 2px;
  position: absolute;
  top: calc(50% + 2px);
  right: 0;
  z-index: 1;
  background: #fff;
  transform: translate(0, -50%);
}

a.mobile-link.mobile-sub-toggle:after {
  content: "";
  width: 2px;
  height: 14px;
  position: absolute;
  top: calc(50% + 2px);
  right: 6px;
  z-index: 2;
  background: #fff;
  transform: translate(0, -50%);
  transition: all 0.35s ease-in-out;
}

a.mobile-link.mobile-sub-toggle.active:after {
  opacity: 0;
}

.mobile-sub-section {
  padding-top: 20px;
}

ul.mobile-subnav a {
  display: block;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.3em;
  padding: 8px 0;
}

ul.mobile-subnav a:hover,
ul.mobile-subnav a.active {
  color: #6BC0D8;
}

* + ul.mobile-subnav {
  margin-top: 15px;
}

ul.mobile-subnav {
  padding-left: 15px;
  border-left: 2px solid rgba(0, 0, 0, 0.3);
}

/* !Breadcrumbs - - - - - */
#breadcrumbs {
  padding-bottom: 20px;
  font-weight: bold;
  color: #212529;
}

#breadcrumbs a {
  color: #6B3077;
}

#breadcrumbs a:hover {
  color: #212529;
}

#breadcrumbs .sep {
  position: relative;
  top: -1px;
  padding: 0 3px;
}

/* !Content Columns - - - - - */
.content-grid {
  gap: 40px;
}

.content-grid.third-left {
  grid-template-columns: 1fr 2fr;
  align-items: center;
}

.content-grid.third-right {
  grid-template-columns: 2fr 1fr;
  align-items: center;
}

* + .content-pad,
.content-pad + * {
  margin-top: 40px;
}

/* !Accessibility Focus - - - - - */
* :focus-visible,
a:focus-visible,
a.nav-toggle:focus-visible,
input.gform_button:focus-visible {
  outline: 2px solid #FF6900;
  outline-offset: 5px;
}

.orange-bg * :focus-visible,
.orange-bg a:focus-visible,
.orange-bg a.nav-toggle:focus-visible,
.orange-bg input.gform_button:focus-visible,
.pink-bg * :focus-visible,
.pink-bg a:focus-visible,
.pink-bg a.nav-toggle:focus-visible,
.pink-bg input.gform_button:focus-visible {
  outline: 2px solid #005973;
  outline-offset: 5px;
}

input.medium:focus-visible,
input.large:focus-visible,
input.small:focus-visible,
input.search-box:focus-visible,
select:focus-visible,
textarea:focus-visible,
.ginput_complex input:focus-visible,
.ginput_product_price_wrapper input[type=text]:focus-visible,
.gfield--type-product input[type=number]:focus-visible,
input.datepicker:focus-visible,
input[type=text]:focus-visible,
input[type=email]:focus-visible,
input[type=search]:focus-visible {
  outline: 2px solid #6B3077;
  outline-offset: -2px;
}

body input.dtsp-paneInputButton:focus-visible {
  outline: none;
}

/* !Media Queries - - - - - */
@media only screen and (max-width: 1200px) {
  /* Style adjustments for viewports that meet the condition */
  a.logo {
    width: 130px;
  }
  a.main {
    font-size: 1rem;
    padding: 0 8px;
  }
  ul.nav li.has-button {
    padding-left: 15px;
  }
  a.button.nav-button {
    font-size: 1.0625rem;
    padding: 7px 12px 10px 12px;
  }
  a.search-toggle svg {
    width: 24px;
  }
  .page-block + .page-block {
    margin-top: 60px;
  }
  .page-block.bg,
  .block-pad,
  .block-pad-top {
    padding: 60px 0;
  }
  .page-block.bg.small-block-pad,
  .small-block-pad {
    padding: 50px 0;
  }
  .big-block-pad,
  .page-block.bg.big-block-pad {
    padding: 80px 0;
  }
  .page-block:last-child {
    padding-bottom: 60px;
  }
  .page-block:first-child {
    padding-top: 60px;
  }
  .block-pad-top {
    padding-top: 60px;
  }
  .block-pad-bottom {
    padding-bottom: 60px;
  }
  .big-block-pad:first-child,
  .page-block.bg.big-block-pad:first-child {
    padding-top: 80px;
  }
  .big-block-pad:last-child,
  .page-block.bg.big-block-pad:last-child {
    padding-bottom: 80px;
  }
  .headline60 {
    font-size: 3rem;
  }
  .headline36 {
    font-size: 2rem;
  }
  .subhead28 {
    font-size: 1.625rem;
  }
  a.state-toggle {
    font-size: 1rem;
    height: 40px;
  }
  .box-text,
  .icon-box {
    padding: 30px;
  }
  .map-legend {
    padding: 25px 20px;
    width: 270px;
  }
  .header-screen {
    min-height: 600px;
  }
  .mega-nav-grid {
    grid-template-columns: 250px 3fr;
    gap: 40px;
  }
  ul.big-links a {
    font-size: 1.375rem;
  }
  .content-grid.grid4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 40px;
  }
}
@media only screen and (max-width: 1023px) {
  ul.nav,
  ul.small-footer-nav li.break .footer-sep,
  .tab-grid-left,
  .tab-grid:before {
    display: none;
  }
  .inner {
    padding: 0 25px;
    max-width: 810px;
  }
  .inner.mid {
    max-width: 1010px;
  }
  a.nav-toggle {
    display: block;
  }
  .mobile-header-nav {
    display: flex;
  }
  header,
  .nav-bar {
    height: 80px;
  }
  .nav-bar {
    padding: 0 80px 0 20px;
    justify-content: space-between;
  }
  header .inner {
    padding: 0;
  }
  #container {
    padding-top: 120px;
  }
  .search-wrap,
  a.state-toggle,
  .state-active .state-nav {
    top: 80px;
  }
  a.button.nav-button {
    font-size: 1rem;
    padding: 6px 10px 9px 10px;
  }
  a.logo {
    width: 130px;
  }
  .search-wrap {
    padding: 20px 0;
  }
  .search-wrap .inner {
    padding: 0 20px;
  }
  a.state-toggle {
    width: 100%;
    border-radius: 0;
    justify-content: center;
    font-size: 1rem;
    height: 40px;
  }
  .state-nav-grid,
  .state-nav-grid.has-button {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  a.state-close {
    width: 24px;
    height: 24px;
    top: 15px;
    right: 15px;
  }
  .state-nav {
    height: calc(100dvh - 80px);
    overflow: scroll;
  }
  .state-link {
    padding: 6px 0;
  }
  .page-block + .page-block {
    margin-top: 50px;
  }
  .page-block.bg,
  .block-pad,
  .block-pad-top {
    padding: 50px 0;
  }
  .page-block.bg.small-block-pad,
  .small-block-pad {
    padding: 40px 0;
  }
  .big-block-pad,
  .page-block.bg.big-block-pad {
    padding: 60px 0;
  }
  .page-block:last-child {
    padding-bottom: 50px;
  }
  .page-block:first-child {
    padding-top: 50px;
  }
  .block-pad-top {
    padding-top: 50px;
  }
  .block-pad-bottom {
    padding-bottom: 50px;
  }
  .big-block-pad:first-child,
  .page-block.bg.big-block-pad:first-child {
    padding-top: 60px;
  }
  .big-block-pad:last-child,
  .page-block.bg.big-block-pad:last-child {
    padding-bottom: 60px;
  }
  .headline60 {
    font-size: 2.625rem;
  }
  .headline36 {
    font-size: 1.875rem;
  }
  .subhead28 {
    font-size: 1.5rem;
  }
  .button,
  input.gform_button,
  .text-link {
    font-size: 1rem;
  }
  .donate-bar-wrap,
  .footer-bottom-grid {
    flex-direction: column;
    align-items: center;
  }
  .donate-bar-wrap {
    align-items: center;
    text-align: center;
  }
  .footer-bottom-grid {
    align-items: flex-start;
  }
  .donate-bar-headline {
    max-width: none;
  }
  .footer-middle-grid.grid.grid4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  ul.small-footer-nav li.break {
    flex-basis: 100%;
    padding-top: 30px;
  }
  .footer-bottom-grid {
    gap: 20px;
  }
  .footer-bottom {
    padding-top: 50px;
  }
  .signup-form #field_submit {
    padding-top: 1px;
  }
  .box-text,
  .icon-box {
    padding: 30px 25px;
  }
  .box-screen {
    padding: 25px;
  }
  .box-grid,
  .half-grid.grid.grid2,
  .icon-cols.grid,
  .icon-cols.grid.grid2,
  .icon-cols.grid.grid4,
  .stats-grid.grid.grid2,
  .stats-grid.grid,
  .offset-grid,
  .feed-cols,
  .state-section-grid,
  .content-grid,
  .content-grid.grid2,
  .content-grid.grid4,
  .content-grid.third-left,
  .content-grid.third-right {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 25px;
  }
  .content-grid,
  .content-grid.grid2,
  .content-grid.grid4 {
    gap: 35px;
  }
  .swap {
    grid-auto-flow: row;
    direction: ltr;
  }
  .text h1 {
    font-size: 2.25rem;
  }
  .text h2 {
    font-size: 1.75rem;
  }
  .text h3 {
    font-size: 1.5rem;
  }
  * + .button,
  * + .text,
  * + .pod-section,
  * + .text-link,
  * + .bottom-button {
    margin-top: 25px;
  }
  .haedline60 + .text {
    margin-top: 30px;
  }
  ul.team-grid li {
    width: 25%;
  }
  .subhead22 {
    font-size: 1.125rem;
  }
  .feed-grid-right {
    padding-top: 10px;
  }
  .feed-screen.screen {
    position: relative;
    min-height: 300px;
  }
  .feed-feature-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .feed-feature-image img.full {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  ul.team-grid {
    width: calc(100% + 50px);
    margin-left: -25px;
  }
  .map-graphic-wrap.has-legend {
    padding-left: 0;
  }
  .map-legend {
    width: 100%;
    position: static;
    margin: 30px auto 0 auto;
    max-width: 300px;
  }
  .cats-bar-grid {
    gap: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cats-right {
    grid-column: 2/3;
  }
  .res-cats-right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .res-search {
    grid-column: 1/3;
  }
  .res-cats-bar-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
  }
  .res-filter-label {
    text-align: center;
  }
  .state-section-grid {
    gap: 30px;
  }
  ul.program-stats-grid li {
    width: 50%;
    padding: 25px 12px;
  }
  ul.program-stats-grid {
    width: calc(100% + 50px);
    margin-left: -25px;
  }
  .data-table-wrap {
    flex-direction: column;
  }
  .data-left,
  .data-right {
    width: 100%;
    padding: 0;
  }
  input#dt-search-0 {
    width: 100%;
    margin: 0;
  }
  .dt-search {
    padding-top: 5px;
  }
  body div.dt-container div.dt-layout-row + div.dt-layout-row {
    margin-top: 20px;
  }
  .dt-layout-end {
    padding-top: 10px;
  }
  .header-screen {
    min-height: 0;
    padding: 40px 30px;
    background: #005973;
  }
  .header-slider-block .header-screen {
    padding-bottom: 45px;
  }
  .hide-overlay .header-screen {
    background: #005973;
  }
  .header-screen-content {
    text-align: center;
    padding: 0;
  }
  .header-max {
    max-width: none;
  }
  .header-image {
    display: block;
    height: auto;
    position: static;
  }
  .header-image img.fill {
    display: block;
    object-fit: contain;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .header-screen .text-shadow {
    text-shadow: none;
  }
  .header-image-wrap {
    position: relative;
    z-index: 10;
  }
  .header-image-wrap button.slick-prev,
  .header-image-wrap button.slick-next {
    display: block;
  }
  button.slick-prev {
    background-size: 16px auto;
    background-position: 10px center;
  }
  button.slick-next {
    background-size: 16px auto;
    background-position: right 10px center;
  }
  ul.slick-dots {
    gap: 8px;
    padding-bottom: 12px;
  }
  ul.slick-dots li {
    width: 8px;
    height: 8px;
  }
  .tab-grid {
    display: block;
  }
  .tab-grid-right {
    padding: 0;
    width: 100%;
  }
  .tab-grid a.resp-accordion {
    display: block;
  }
  .tab-grid .resp-tab-content {
    padding: 20px 0 40px 0;
  }
  .chart-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 900px) {
  ul.state-nav-list {
    columns: 4;
  }
  .footer-top-grid,
  ul.all-program-grid.grid,
  ul.post-grid.grid,
  .signup-form .gform_fields {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  ul.post-grid.grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  a.footer-logo {
    max-width: 160px;
    display: block;
  }
  .signup-form-wrap {
    display: block;
  }
  .signup-form {
    width: 100%;
  }
  .page-block.signup-bar .signup-form #field_submit {
    text-align: center;
  }
  .page-block .signup-form-left {
    text-align: center;
  }
  ul.res-grid.grid.grid4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  ul.team-grid li {
    width: 33.33%;
  }
  .slider-wrap button.slick-prev {
    left: 0;
    background-size: 12px auto;
  }
  .slider-wrap button.slick-next {
    right: 0;
    background-size: 12px auto;
  }
  a.video-play:after {
    width: 60px;
    height: 60px;
    background-size: 100% auto;
  }
  .gfield_radio .gchoice,
  .gfield_checkbox .gchoice {
    width: 50%;
  }
  footer * + .signup-form-right {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 768px) {
  /* Style adjustments for viewports that meet the condition */
  .text img.alignleft,
  .text img.alignright,
  .text .alignleft,
  .text .alignright {
    margin: 10px auto;
    float: none;
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .headline60 {
    font-size: 2.375rem;
  }
  .headline36 {
    font-size: 1.75rem;
  }
  .subhead18.team-name {
    font-size: 1rem;
  }
  .team-title {
    font-size: 0.875rem;
  }
  .bio-grid,
  .research-content-grid,
  .program-cats-grid,
  .program-cats-right {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .single-res-image {
    max-width: 400px;
    margin: 0 auto;
  }
  .program-cats-grid,
  .program-cats-right {
    gap: 15px;
  }
  #data {
    font-size: 0.875rem;
    line-height: 1.3em;
  }
  #data th:nth-child(2),
  #data td:nth-child(2) {
    position: static;
  }
}
@media only screen and (max-width: 767px) {
  /* Style adjustments for viewports that meet the condition */
  ul.state-nav-list {
    columns: 3;
  }
  ul.social svg {
    width: 36px;
    height: 36px;
  }
  ul.social {
    gap: 10px;
  }
  ul.small-footer-nav li.copy {
    flex-basis: 100%;
    padding-bottom: 10px;
  }
  ul.small-footer-nav li.copy + li .footer-sep {
    display: none;
  }
  .headline60,
  .text h1 {
    font-size: 2.25rem;
  }
  .gfield--width-half {
    flex-basis: 100%;
  }
  .ginput_complex.ginput_container_address span:nth-child(3) {
    flex-basis: 100%;
  }
  .ginput_complex.ginput_container_address span:nth-child(4) {
    flex-basis: calc(50% - 10px);
  }
  .ginput_complex.ginput_container_address span:nth-child(5) {
    flex-basis: calc(50% - 10px);
  }
  .gfield_radio .gchoice,
  .gfield_checkbox .gchoice,
  .gfield--type-consent {
    width: 100%;
    padding-right: 0;
  }
  .res-cats-right,
  ul.program-grid.grid.grid2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
  }
  .res-search {
    grid-column: auto;
  }
}
@media only screen and (max-width: 600px) {
  /* Style adjustments for viewports that meet the condition */
  ul.state-nav-list {
    columns: 2;
  }
  ul.team-grid li {
    width: 50%;
  }
  .page-block .signup-form .gform_fields,
  .feed-grid,
  ul.post-grid.grid,
  .cats-bar-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .feed-grid {
    gap: 30px;
  }
  .page-block .signup-form #field_submit,
  .page-block .signup-form .gform_footer,
  .page-block .signup-form {
    text-align: center;
  }
  .signup-form .gform_ajax_spinner {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .headline60 {
    font-size: 2rem;
  }
  .cats-bar-grid {
    gap: 25px;
  }
  .cats-right {
    grid-column: auto;
  }
  .subhead28 {
    font-size: 1.25rem;
  }
  .headline36 {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 500px) {
  /* Style adjustments for viewports that meet the condition */
  .feed-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
  }
  .feed-grid-right {
    padding-top: 0;
  }
  ul.program-stats-grid li {
    width: 100%;
  }
}
@media only screen and (max-width: 320px) {
  /* Style adjustments for viewports that meet the condition */
}
/* - - - Non-Semantic Helper Classes - - - */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
}

.ir br {
  display: none;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* - - - Print Styles - - - */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  } /* Black prints faster: h5bp.com/s */
  a, a:visited {
    text-decoration: underline;
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  } /* h5bp.com/t */
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
