@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1536px;
  }
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@-webkit-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}

@-moz-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}

@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}

@-webkit-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}

@-moz-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}

@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}

@-webkit-keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

.slideUp {
  opacity: 0;
  animation: slideUp cubic-bezier(0.19, 1, 0.22, 1) 1;
  animation-fill-mode: forwards;
  animation-duration: 0.25s;
  animation-delay: 0.2s;
}

@keyframes slideUp {
  0% {
    opacity: 0.5;
    transform: translate3d(0, 5%, 0);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.slideUpSmall {
  opacity: 0;
  animation: slideUpSmall cubic-bezier(0.19, 1, 0.22, 1) 1;
  animation-fill-mode: forwards;
  animation-duration: 0.075s;
  animation-delay: 0.05s;
}

@keyframes slideUpSmall {
  0% {
    opacity: 0.5;
    transform: translate3d(0, 25%, 0);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.slideDown {
  opacity: 0;
  animation: slideDown cubic-bezier(0.19, 1, 0.22, 1) 1;
  animation-fill-mode: forwards;
  animation-duration: 0.25s;
  animation-delay: 0.2s;
}

@keyframes slideDown {
  0% {
    opacity: 0.5;
    transform: translate3d(0, -25%, 0);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.slideLeft {
  opacity: 0;
  animation: slideLeft cubic-bezier(0.19, 1, 0.22, 1) 1;
  animation-fill-mode: forwards;
  animation-duration: 0.25s;
  animation-delay: 0.2s;
}

@keyframes slideLeft {
  0% {
    opacity: 0.5;
    transform: translate3d(15%, 0, 0);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.slideRight {
  opacity: 0;
  animation: slideRight cubic-bezier(0.19, 1, 0.22, 1) 1;
  animation-fill-mode: forwards;
  animation-duration: 0.25s;
  animation-delay: 0.2s;
}

@keyframes slideRight {
  0% {
    opacity: 0.5;
    transform: translate3d(-25%, 0, 0);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes modalSlideRight {
  0% {
    opacity: 0;
    transform: translate3d(115%, 0, 0);
  }
  1% {
    opacity: 0.5;
    transform: translate3d(10%, 0, 0);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes modalSlideRightExit {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  40% {
    opacity: 0;
  }
  100% {
    transform: translate3d(115%, 0, 0);
  }
}

.fadeIn {
  opacity: 0;
  animation: fadeIn cubic-bezier(0, 0, 0.2, 1) 1;
  animation-fill-mode: forwards;
  animation-duration: 0.2s;
  animation-delay: 0.2s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeInSlow {
  opacity: 0;
  animation: fadeIn cubic-bezier(0, 0, 0.2, 1) 1;
  animation-fill-mode: forwards;
  animation-duration: 5s;
  animation-delay: 0s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeInFast {
  opacity: 0;
  animation: fadeIn cubic-bezier(0.19, 1, 0.22, 1) 1;
  animation-fill-mode: forwards;
  animation-duration: 0.075s;
  animation-delay: 0s;
}

.scaleIn {
  opacity: 0;
  animation: scaleIn cubic-bezier(0.19, 1, 0.22, 1) 1;
  animation-fill-mode: forwards;
  animation-duration: 0.155s;
  animation-delay: 0.2175s;
}

@keyframes scaleIn {
  0% {
    transform: scale3d(0.975, 0.975, 0.975);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 rgba(141, 72, 160, 0.85);
  }
  100% {
    box-shadow: 0 0 10px 8px transparent;
    border-width: 1px;
  }
}

@keyframes glow-sm {
  0% {
    box-shadow: 0 0 rgba(141, 72, 160, 0.25);
  }
  100% {
    box-shadow: 0 0 10px 7px transparent;
    border-width: 2px;
  }
}

@keyframes grow-and-shrink {
  from {
    opacity: 1;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(0.65);
  }
  to {
    opacity: 1;
    transform: scale(0.5);
  }
}

.panel .panel-heading h3 a:not(.active):before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: .75rem solid transparent;
  border-left: 0.75rem solid #00a2ff;
  border-top: .75rem solid transparent;
  margin: auto;
}

.panel .panel-heading h3 a.active:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -.25rem;
  width: 0;
  height: 0;
  border-left: .75rem solid transparent;
  border-top: 0.75rem solid #00a2ff;
  border-right: .75rem solid transparent;
  margin: auto;
}

.panel .panel-heading .panel-title {
  margin-bottom: 2rem;
}

.panel .panel-heading .panel-title > a {
  padding-left: 1.5rem;
  cursor: pointer;
}

.panel .panel-heading .panel-title > a:hover {
  text-decoration: none;
}

.badge-black {
  fill: #0f212f !important;
  stroke: #0f212f !important;
}

.badge-turquoise2-light {
  fill: #337F94 !important;
  stroke: #337F94 !important;
}

.banner {
  background: #053356;
  position: relative;
}

.banner h2 {
  margin-bottom: 2rem;
}

.banner h2:before {
  height: 2px;
  bottom: -2rem;
}

.banner p {
  margin-bottom: 0 !important;
}

.banner a {
  color: #A3D9FF;
}

.banner a:hover, .banner a:focus, .banner a:active {
  color: #A3D9FF;
  opacity: .75;
  text-decoration: underline;
}

.banner .list-link-arrow a {
  color: #A3D9FF;
}

.banner .list-link-arrow a:hover, .banner .list-link-arrow a:focus, .banner .list-link-arrow a:active {
  color: #A3D9FF;
  opacity: .75;
  text-decoration: underline;
}

.banner-sphere {
  background-image: url("/img/background/sphere-transparent.svg");
  background-image: url("/img/background/sphere-transparent.svg"), linear-gradient(#053356, #031e32);
  background-position-x: right;
  background-position-y: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 25rem;
  padding-left: 2.5rem;
}

.banner-sphere a {
  color: #A3D9FF;
}

.banner-sphere a:hover, .banner-sphere a:focus, .banner-sphere a:active {
  color: #A3D9FF;
  opacity: .75;
  text-decoration: underline;
}

.banner-hero {
  padding-left: 2.5rem;
  min-height: 25rem;
  background-size: cover !important;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .banner-hero {
    padding: 2rem;
  }
}

.banner-hero .container-hero {
  transform: translateY(-2.5rem);
  background-position: 0 0;
  background-size: cover;
}

.banner-hero .container-hero > div {
  height: 35rem;
}

@media screen and (min-width: 768px) {
  .banner-hero .container-hero,
  .banner-hero .container-nav {
    padding-left: 5rem;
  }
}

.banner-hero-details {
  margin-top: 2.5rem;
}

.container-banner {
  color: #fff;
}

.container-banner img {
  width: 100%;
  min-height: 25rem;
  max-height: 30rem;
}

@media screen and (max-width: 767px) {
  .container-banner {
    color: #0f212f;
  }
}

.focus-area-banner {
  padding-left: 0;
}

.focus-area-banner .focus-area-banner-box {
  padding: 1rem;
}

.banner-description {
  min-height: 5.5em;
}

@media screen and (max-width: 900px) {
  .white-text-responsive {
    color: black;
  }
}

.hp-banner-box {
  display: inline-block;
  color: #fff;
  padding-right: 3rem;
  padding-left: 3rem;
}

@media screen and (max-width: 575px) {
  .hp-banner-box {
    color: #fff !important;
    background: rgba(0, 0, 0, 0.6) !important;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .hp-banner-box h5, .hp-banner-box time {
    color: #fff !important;
  }
  .hp-banner-box .btn-pill-purple, .hp-banner-box .btn-pill-alt {
    justify-content: center;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
    opacity: 1 !important;
    text-decoration: none !important;
    color: #fff !important;
  }
  .hp-banner-box .btn-pill-purple, .hp-banner-box .btn-pill-purple:hover, .hp-banner-box .btn-pill-purple:focus, .hp-banner-box .btn-pill-purple:active, .hp-banner-box .btn-pill-alt, .hp-banner-box .btn-pill-alt:hover, .hp-banner-box .btn-pill-alt:focus, .hp-banner-box .btn-pill-alt:active {
    background: url(/img/background/btn-default.svg) center center no-repeat;
    background-size: cover;
    color: #fff;
    font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 700;
    font-size: 0.94rem;
    padding: 1rem 2.5rem;
    border: 0;
  }
  .hp-banner-box .btn-pill-purple:hover, .hp-banner-box .btn-pill-alt:hover {
    background-image: url(/img/background/btn-hover.svg);
  }
  .hp-banner-box .btn-pill-purple:active, .hp-banner-box .btn-pill-alt:active {
    background-image: url(/img/background/btn-focus.svg);
  }
  .hp-banner-box .btn-pill-purple svg, .hp-banner-box .btn-pill-alt svg {
    height: 1.25rem;
    width: 1.25rem;
  }
  .hp-banner-box .btn-pill-purple a, .hp-banner-box .btn-pill-alt a {
    color: #fff !important;
  }
  .hp-banner-box .btn-pill-purple a, .hp-banner-box .btn-pill-purple a:hover, .hp-banner-box .btn-pill-purple a:focus, .hp-banner-box .btn-pill-purple a:active, .hp-banner-box .btn-pill-alt a, .hp-banner-box .btn-pill-alt a:hover, .hp-banner-box .btn-pill-alt a:focus, .hp-banner-box .btn-pill-alt a:active {
    color: #fff !important;
    opacity: 1 !important;
    text-decoration: none !important;
  }
}

.homepage-no-image {
  background-image: url("/img/background/sphere-transparent.svg"), linear-gradient(#053356, #031e32);
  background-position-x: right;
  background-position-y: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 25rem;
  padding-left: 2.5rem;
}

.default-banner {
  background-image: url("/img/background/sphere-transparent.svg"), linear-gradient(#053356, #031e32);
  background-position: right center;
  background-size: unset !important;
}

.breadcrumbs {
  padding: 0;
}

.breadcrumbs, .breadcrumbs li {
  list-style: none;
  display: inline-block;
}

.breadcrumbs, .breadcrumbs a {
  color: #00649E;
  font-weight: 700;
}

.breadcrumbs svg {
  display: inline-block;
  height: 1.5em;
  width: 1.5em;
  fill: #00a2ff;
  margin-right: 0.5rem;
  margin-top: -0.5rem;
}

.skip-to-content-link {
  display: inline-block;
  color: #fff !important;
  background: #00a2ff;
  text-decoration: none !important;
  left: 50%;
  padding: 0.25rem 1rem;
  font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 0.88rem;
  font-weight: 600;
  position: absolute;
  transform: translateY(-100%);
  transition: transform 0.3s;
}

.skip-to-content-link:focus {
  transform: translateY(0%);
}

.btn {
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.btn:focus {
  box-shadow: none;
}

.btn-link {
  text-decoration: none;
}

.btn-print {
  background-color: #ebeced;
  height: 4.5rem;
  width: 4.65rem;
  border: solid 1px transparent;
  position: relative;
  z-index: 1;
  border-radius: 0px;
}

.btn-print:hover, .btn-print:focus, .btn-print:active {
  border-color: #b0b4b8;
}

.btn-print svg {
  fill: #006ca9;
  height: 4.5rem;
  width: 4.5rem;
  padding: 0rem 1.25rem 0rem .5rem;
}

@media print {
  .btn-print {
    visibility: hidden !important;
    display: none !important;
  }
}

.btn-pill {
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  opacity: 1 !important;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 0px;
}

.btn-pill, .btn-pill:hover, .btn-pill:focus, .btn-pill:active {
  background: url(/img/background/btn-default.svg) center center no-repeat;
  background-size: cover;
  color: #fff;
  font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 700;
  font-size: 0.94rem;
  padding: 1rem 2.5rem;
  border: 0;
}

.btn-pill:hover {
  background-image: url(/img/background/btn-hover.svg);
}

.btn-pill:active {
  background-image: url(/img/background/btn-focus.svg);
}

.btn-pill svg {
  height: 1.25rem;
  width: 1.25rem;
}

.btn-pill a {
  color: #fff !important;
}

.btn-pill a, .btn-pill a:hover, .btn-pill a:focus, .btn-pill a:active {
  color: #fff !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

.btn-pill-purple {
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  opacity: 1 !important;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 0px;
}

.btn-pill-purple, .btn-pill-purple:hover, .btn-pill-purple:focus, .btn-pill-purple:active {
  background: url(/img/background/btn-default-purple.svg) center center no-repeat;
  background-size: cover;
  color: #fff;
  font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 700;
  font-size: 0.94rem;
  padding: 1rem 2.5rem;
  border: 0;
}

.btn-pill-purple:hover {
  background-image: url(/img/background/btn-hover-purple.svg);
}

.btn-pill-purple:active {
  background-image: url(/img/background/btn-focus-purple.svg);
}

.btn-pill-purple svg {
  height: 1.25rem;
  width: 1.25rem;
}

.btn-pill-purple a {
  color: #fff !important;
}

.btn-pill-purple a, .btn-pill-purple a:hover, .btn-pill-purple a:focus, .btn-pill-purple a:active {
  color: #fff !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

.btn-pill-alt {
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  opacity: 1 !important;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 0px;
}

.btn-pill-alt, .btn-pill-alt:hover, .btn-pill-alt:focus, .btn-pill-alt:active {
  background: url(/img/background/btn-alt-default.svg) center center no-repeat;
  background-size: cover;
  color: #fff;
  font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 700;
  font-size: 0.94rem;
  padding: 1rem 2.5rem;
  border: 0;
}

.btn-pill-alt:hover {
  background-image: url(/img/background/btn-alt-hover.svg);
}

.btn-pill-alt:active {
  background-image: url(/img/background/btn-alt-focus.svg);
}

.btn-pill-alt a {
  color: #fff !important;
}

.btn-pill-alt a, .btn-pill-alt a:hover, .btn-pill-alt a:focus, .btn-pill-alt a:active {
  color: #fff !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

.btn-link {
  color: #8d48a0;
  font-weight: 700;
  font-size: 0.88rem;
  border: 0;
  padding: 0;
  border-radius: 0px;
}

.btn-link:hover, .btn-link:focus, .btn-link:active {
  color: #8d48a0;
  opacity: 0.75;
}

.btn-link svg {
  fill: currentColor;
  height: 1.75em;
  width: 1.75em;
  vertical-align: -0.5rem;
}

.btn-link-white {
  color: #fff !important;
}

.btn-link-white:hover, .btn-link-white:focus, .btn-link-white:active {
  color: #8d48a0;
  opacity: 0.75;
}

.btn-link-white svg {
  fill: currentColor;
  height: 1.75em;
  width: 1.75em;
  vertical-align: -0.5rem;
}

.btn-link-black {
  color: #0f212f !important;
}

.btn-link-black:hover, .btn-link-black:focus, .btn-link-black:active {
  color: #8d48a0;
  opacity: 0.75;
}

.btn-link-black svg {
  fill: currentColor;
  height: 1.75em;
  width: 1.75em;
  vertical-align: -0.5rem;
}

.btn-link-vertical {
  color: #fff;
  background-color: #2d7284;
  font-weight: 700;
  font-size: 1.25rem;
  border: 0;
  padding: 1rem 2rem;
  text-align: left;
}

.btn-nav.active {
  color: #0f212f;
  background-color: #fff !important;
  outline: none;
}

.btn-nav.active:hover {
  color: #0f212f;
  background-color: #fff !important;
  outline: none;
}

.btn-hover-blue:hover {
  color: #fff;
  background-color: #006AA3 !important;
}

.btn-hover-turquoise:hover {
  color: #fff;
  background-color: #337F94 !important;
}

.homepage-banner-btn {
  width: 16.375rem;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.nav-page-btn {
  float: right;
  z-index: 10;
  position: relative;
}

.nav-page-btn .btn {
  margin-left: 1rem;
}

.search-pager .btn span {
  font-family: ProximaNova !important;
  font-weight: 500 !important;
}

.search-pager .btn .selected {
  font-size: 2.5rem;
  color: black;
}

.copy-email {
  cursor: pointer;
}

.card {
  border-radius: 0;
  background-color: #fff;
  margin: 0;
  border: 0;
}

@media screen and (max-width: 991px) {
  .card {
    max-width: none;
    margin: 1rem 0;
  }
}

@media screen and (max-width: 767px) {
  .card {
    width: 100%;
    margin: 1rem 0;
  }
}

.card.card-shadow {
  box-shadow: 0 1rem 3rem rgba(15, 33, 47, 0.15);
}

.card.card-shadow-sharp {
  box-shadow: 0.4rem 0.4rem 1rem rgba(15, 33, 47, 0.45);
}

.card .h1, .card .h2, .card .h3, .card .h4, .card .h5, .card .h6, .card .h7, .card .h8, .card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
  margin: 0;
}

.card .card-body {
  color: #0f212f;
  padding: 2rem;
  font-size: 1rem;
}

.card .card-body svg {
  display: inline;
  height: 1.5em;
  width: 1.5em;
  margin-right: 0.5rem;
  stroke: #0f212f;
}

.card .card-body .card-title {
  font-size: 1.45rem;
}

.card .card-body .card-title-xl {
  font-size: 1.5rem;
  color: #09111B;
  font-weight: 900;
}

.card .card-body .card-description {
  font-size: 1.2rem;
}

.card .card-body .right-vertical-line {
  padding: 3.8rem 2rem 2rem 2rem;
  border-left: 0.1rem solid rgba(0, 0, 0, 0.15);
}

.card .card-body .right-vertical-line p {
  font-size: 1rem;
  font-weight: 700;
  /*color: #005c8f;*/
  margin: 0;
  line-height: 1.3;
  font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

@media screen and (max-width: 991px) {
  .card .card-body .right-vertical-line {
    padding-top: 1rem;
    padding-bottom: 0;
    padding-right: calc(var(--bs-gutter-x)/ 2);
    padding-left: calc(var(--bs-gutter-x)/ 2);
    border-left: 0;
  }
}

.card .card-body.related-content {
  padding: 1.5rem;
}

.card .card-body.card-vertical {
  padding: 1rem;
}

.card .card-text-lg {
  font-size: 1.25rem;
  font-weight: 600;
}

.card .card-text-md {
  font-size: 1rem;
  font-weight: 600;
}

.card .card-bottom-estcp {
  position: absolute;
  bottom: 0;
  color: white;
  width: 100%;
  background: #612771;
}

.card .card-bottom-serdp {
  position: absolute;
  bottom: 0;
  color: white;
  width: 100%;
  background: #005c8f;
}

.card .card-bottom-white-estcp {
  position: absolute;
  bottom: 0;
  color: #612771;
  width: 100%;
  background: white;
}

.card .card-bottom-white-serdp {
  position: absolute;
  bottom: 0;
  color: #005c8f;
  width: 100%;
  background: white;
}

.card .card-back-details {
  font-size: 1rem;
}

.card .card-footer {
  background-color: transparent;
  padding: 0 1rem;
  border: none;
}

.card .card-footer-project-card {
  background-color: transparent;
  padding-top: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border: none;
}

.card .card-listing-link {
  color: #00649E;
}

.card .card-listing-link:hover, .card .card-listing-link:focus, .card .card-listing-link:active {
  color: #00649E;
  opacity: .75;
  text-decoration: underline;
}

.card a {
  color: #00649E;
}

.card a:hover, .card a:focus, .card a:active {
  color: #00649E;
  opacity: .75;
  text-decoration: underline;
}

.card-listing {
  max-width: 25rem;
  position: relative;
  margin: 0;
}

.card-listing .card-listing-document {
  display: inline-block;
  height: 1.5em;
  width: 1.5em;
  fill: #fff;
  opacity: 0.35;
  margin-right: 0.5rem;
}

@media screen and (max-width: 991px) {
  .card-listing {
    max-width: 100%;
    margin: 2.5rem 0;
  }
}

@media screen and (max-width: 767px) {
  .card-listing {
    width: 100%;
    margin: 2.5rem 0;
  }
}

.card-banner {
  margin: -10rem 2rem 0 0;
}

.card-banner a {
  color: #00649E;
}

.card-banner a:hover, .card-banner a:focus, .card-banner a:active {
  color: #00649E;
  opacity: .75;
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .card-banner {
    width: 100%;
    margin: 2.5rem 0;
  }
}

.card-point-of-contact {
  margin: -10rem 2rem 0 0;
}

@media screen and (max-width: 991px) {
  .card-point-of-contact {
    width: 100%;
    margin: 2.5rem 0;
  }
}

.card-point-of-contact-event {
  margin: -2rem 2rem 0 0;
}

@media screen and (max-width: 991px) {
  .card-point-of-contact-event {
    width: 100%;
    margin: 2.5rem 0;
  }
}

.card-sphere-estcp {
  background-image: url("/img/background/sphere-transparent2.svg");
  background-image: url("/img/background/sphere-transparent2.svg"), linear-gradient(#612771, #491d55);
  background-position-x: right;
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: auto;
  margin: 0 1rem;
}

@media screen and (max-width: 767px) {
  .card-sphere-estcp {
    margin: 1rem 0;
  }
}

.card-sphere-estcp .card-img-project-card-fa {
  max-height: 10em !important;
  margin-bottom: 3em;
}

.card-sphere-estcp .card-img-project-card {
  max-height: 18em !important;
}

.card-sphere-estcp:hover, .card-sphere-estcp:focus, .card-sphere-estcp:active {
  opacity: .75;
  text-decoration: none !important;
}

.card-sphere-estcp a {
  color: #fff;
}

.card-sphere-estcp a:hover, .card-sphere-estcp a:focus, .card-sphere-estcp a:active {
  color: #fff;
}

.card-sphere-serdp {
  background-image: url("/img/background/sphere-transparent2.svg");
  background-image: url("/img/background/sphere-transparent2.svg"), linear-gradient(#005c8f, #004369);
  background-position-x: right;
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: auto;
  margin: 0 1rem;
}

@media screen and (max-width: 767px) {
  .card-sphere-serdp {
    margin: 1rem 0;
  }
  .card-sphere-serdp .card-img-project-card-fa {
    max-height: 10em !important;
    margin-bottom: 3em;
  }
  .card-sphere-serdp .card-img-project-card {
    max-height: 18em !important;
  }
}

.card-sphere-serdp:hover, .card-sphere-serdp:focus, .card-sphere-serdp:active {
  opacity: .75;
  text-decoration: none !important;
}

.card-sphere-serdp .card-img-project-card-fa {
  max-height: 10em !important;
  margin-bottom: 3em;
}

.card-sphere-serdp .card-img-project-card {
  max-height: 18em !important;
}

.card-sphere-serdp a {
  color: #fff;
}

.card-sphere-serdp a:hover, .card-sphere-serdp a:focus, .card-sphere-serdp a:active {
  color: #fff;
}

.card-sphere-alt {
  background-image: url("/img/background/sphere-transparent2.svg");
  background-image: url("/img/background/sphere-transparent2.svg"), linear-gradient(#49545e, #384148);
  background-position-x: right;
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: auto;
  margin: 0 1rem;
}

@media screen and (max-width: 767px) {
  .card-sphere-alt {
    margin: 1rem 0;
  }
  .card-sphere-alt .card-img-project-card-fa {
    max-height: 10em !important;
    margin-bottom: 3em;
  }
  .card-sphere-alt .card-img-project-card {
    max-height: 18em !important;
  }
}

.card-sphere-alt:hover, .card-sphere-alt:focus, .card-sphere-alt:active {
  opacity: .75;
  text-decoration: none !important;
}

.card-sphere-alt a {
  color: #fff;
}

.card-sphere-alt a:hover, .card-sphere-alt a:focus, .card-sphere-alt a:active {
  color: #fff;
}

.card-sphere-blue2-news {
  background-image: url("/img/background/sphere-transparent.svg");
  background-image: url("/img/background/sphere-transparent.svg"), linear-gradient(#27a1fa, #0690f5);
  background-position-x: -70%;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .card-sphere-blue2-news {
    height: 28rem !important;
  }
  .card-sphere-blue2-news .card-img-project-card-fa {
    max-height: 10em !important;
    margin-bottom: 3em;
  }
  .card-sphere-blue2-news .card-img-project-card {
    max-height: 18em !important;
  }
}

@media screen and (max-width: 575px) {
  .card-sphere-blue2-news {
    height: 20rem !important;
  }
}

@media screen and (min-width: 768px) {
  .card-sphere-blue2-news {
    height: 16rem !important;
  }
}

@media screen and (min-width: 992px) {
  .card-sphere-blue2-news {
    height: 22rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .card-sphere-blue2-news {
    height: 24rem !important;
  }
}

@media screen and (min-width: 1400px) {
  .card-sphere-blue2-news {
    height: 26rem !important;
  }
}

.card-image-estcp {
  margin: 0 1rem;
  /*border-bottom: 1rem solid $purple1;*/
}

.card-image-estcp .card-img-top {
  height: 18em;
  width: 100%;
}

.card-image-estcp .card-img-project-card-fa {
  width: 100%;
  max-height: 10em !important;
  margin-bottom: 3em;
}

.card-image-estcp .card-img-project-card {
  max-height: 18em !important;
}

.card-image-estcp:hover, .card-image-estcp:focus, .card-image-estcp:active {
  opacity: .75;
  text-decoration: none !important;
}

.card-image-estcp a {
  color: #0f212f;
}

.card-image-estcp a:hover, .card-image-estcp a:focus, .card-image-estcp a:active {
  color: #0f212f;
}

@media screen and (max-width: 767px) {
  .card-image-estcp {
    width: 100%;
    margin: 1rem 0;
  }
}

.card-image-serdp {
  margin: 0 1rem;
  /*border-bottom: 1rem solid $blue1;*/
}

.card-image-serdp .card-img-top {
  height: 18em;
  width: 100%;
}

.card-image-serdp .card-img-project-card-fa {
  width: 100%;
  max-height: 10em !important;
  margin-bottom: 3em;
}

.card-image-serdp .card-img-project-card {
  max-height: 18em !important;
}

.card-image-serdp:hover, .card-image-serdp:focus, .card-image-serdp:active {
  opacity: .75;
  text-decoration: none !important;
}

.card-image-serdp a {
  color: #0f212f;
}

.card-image-serdp a:hover, .card-image-serdp a:focus, .card-image-serdp a:active {
  color: #0f212f;
}

@media screen and (max-width: 767px) {
  .card-image-serdp {
    width: 100%;
    margin: 1rem 0;
  }
}

.card-image-nav {
  margin: 0 1rem;
  border-bottom: 1rem solid #00a2ff;
}

.card-image-nav .card-img-bottom {
  height: 15em;
  width: 100%;
}

.card-image-nav a {
  color: #0f212f;
}

.card-image-nav a:hover, .card-image-nav a:focus, .card-image-nav a:active {
  color: #005c8f;
}

@media screen and (max-width: 767px) {
  .card-image-nav {
    width: 100%;
    margin: 1rem 0;
  }
}

.card-stats {
  margin: 0 1rem;
  background-color: #30869d;
  color: #fff;
}

.card-stats .card-body {
  padding: 1.5rem;
}

.card-stats .card-text-xl {
  font-size: 3rem;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .card-stats {
    width: 100%;
    margin: 1rem 0;
  }
}

.card-solid {
  margin: 0;
  max-width: 100%;
}

.card-solid .bg-color {
  color: #fff;
}

.card-solid .bg-color a {
  color: #fff;
}

.card-solid .bg-color a:hover, .card-solid .bg-color a:focus, .card-solid .bg-color a:active {
  color: #fff;
  opacity: 0.75;
}

@media screen and (max-width: 767px) {
  .card-solid {
    width: 100%;
    margin: 1rem 0;
  }
}

@media screen and (max-width: 767px) {
  .card-group {
    display: block !important;
  }
}

.card-group .card {
  max-width: none;
}

.card-group .card:first-child {
  margin-left: 0;
}

.card-group .card:last-child {
  margin-right: 0;
}

.card-solid-overlay {
  margin: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  color: #fff;
  background-color: #2d7284;
}

.card-solid-overlay a {
  color: #fff !important;
}

.card-project {
  padding-right: .25em;
  padding-left: .25em;
  line-height: 1.25em;
}

.card-project a:hover, .card-project a:focus, .card-project a:active {
  text-decoration: none;
  opacity: 1;
}

.card-project-overlay {
  margin: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  color: #fff;
}

.card-project-overlay a {
  color: #fff !important;
}

.card-solicitation-overlay {
  margin: 0;
  border-bottom: 1rem solid #fff;
}

.card-solicitation-overlay:hover, .card-solicitation-overlay:focus, .card-solicitation-overlay:active {
  border-bottom: 1rem solid #00a2ff;
}

.card-solicitation-overlay .h4 {
  color: #00649E;
}

.card-solid:hover .card-solid-overlay,
.card-image-estcp:hover .card-project-overlay,
.card-image-serdp:hover .card-project-overlay,
.card-sphere-estcp:hover .card-project-overlay,
.card-sphere-serdp:hover .card-project-overlay {
  opacity: 1;
}

.card-search {
  padding-top: .5rem !important;
  padding-bottom: 1rem !important;
}

.card-news-listing-feature-story {
  padding-left: 3rem !important;
  padding-right: 2rem !important;
}

.card-news-listing {
  line-height: 1.25rem;
}

.card-news-listing h3 {
  font-size: 1.5rem;
}

.card-news-listing h3:not(.sans-underline):before {
  content: '';
  position: absolute;
  width: 3.25rem;
  height: 4px;
  background-color: var(--custom-underline, #27a1fa);
  left: 0;
  bottom: -1rem;
}

@media screen and (min-width: 768px) {
  .card-news-listing img {
    height: 16rem !important;
  }
}

@media screen and (min-width: 992px) {
  .card-news-listing img {
    height: 22rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .card-news-listing img {
    height: 24rem !important;
  }
}

@media screen and (min-width: 1400px) {
  .card-news-listing img {
    height: 26rem !important;
  }
}

.card-news-listing a:hover, .card-news-listing a:focus, .card-news-listing a:active {
  text-decoration: none;
  opacity: 1;
}

.card-news-listing .card-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #005c8fdb;
}

.card-news-listing, left {
  padding-left: 3rem !important;
  padding-right: 2rem !important;
}

.card-news-listing, right {
  padding-left: 2rem !important;
  padding-right: 3rem !important;
}

.card-spotlight-story h3:not(.sans-underline):before {
  background-color: var(--custom-underline, #27a1fa);
}

.clickable-card {
  cursor: pointer;
}

.fa-card-shadow {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.card-hp-about {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.card-hp-about .d-flex {
  align-items: center;
}

.card-hp-about svg {
  fill: #fff;
  stroke: #fff !important;
}

@media screen and (max-width: 767px) {
  .card-hp-about {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}

.card-homepage-focus-area {
  background-clip: content-box;
}

@media screen and (max-width: 767px) {
  .card-homepage-focus-area {
    padding-bottom: 2rem;
  }
}

.card-homepage-focus-area-listing {
  line-height: 1.25rem;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .card-homepage-focus-area-listing {
    padding-bottom: 2rem;
  }
}

.card-homepage-focus-area-listing h3 {
  font-size: 1.5rem;
}

.card-homepage-focus-area-listing h3:not(.sans-underline):before {
  content: '';
  position: absolute;
  width: 3.25rem;
  height: 4px;
  background-color: var(--custom-underline, #27a1fa);
  left: 0;
  bottom: -1rem;
}

.card-homepage-focus-area-listing a:hover, .card-homepage-focus-area-listing a:focus, .card-homepage-focus-area-listing a:active {
  text-decoration: none;
  opacity: 1;
}

.card-homepage-focus-area-listing .card-homepage-focus-area-listing-img {
  position: relative;
  height: 100% !important;
  min-height: 10rem;
  max-height: 14.5rem;
}

@media screen and (max-width: 768px) {
  .card-homepage-focus-area-listing .card-homepage-focus-area-listing-img {
    min-height: 12rem;
    max-height: 30rem;
  }
}

.card-homepage-focus-area-listing .card-homepage-focus-area-listing-img img {
  height: 100%;
}

.card-homepage-focus-area-listing .card-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.card-homepage-focus-area-listing .card-bottom span {
  vertical-align: middle;
}

.card-homepage-focus-area-listing .card-bottom svg {
  stroke: white;
}

.carousel img {
  max-height: 30rem;
}

@media screen and (max-width: 767px) {
  .carousel img {
    height: 20rem !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  border: 0;
  opacity: .45;
  top: 40%;
  bottom: 40%;
  width: 4%;
}

@media screen and (max-width: 767px) {
  .carousel-control-prev,
  .carousel-control-next {
    top: 0;
    bottom: 0;
    width: 15%;
  }
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: initial;
  right: 10%;
  left: 60%;
}

@media screen and (max-width: 767px) {
  .carousel-caption {
    left: 15%;
    right: 15%;
    bottom: 1.25rem;
    transform: none;
    top: initial;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .carousel-caption {
    left: 45%;
  }
}

.carousel-indicators button {
  margin: 0.25rem;
  width: 2rem;
  border: 0;
  opacity: .50;
}

.dropdown-menu {
  padding: 1.25rem 0;
}

@media screen and (min-width: 992px) {
  .dropdown-menu {
    margin-top: 0.75rem;
  }
}

.drupal-dropdown-menu-button {
  background-color: #005c8f;
  border-radius: 0;
  padding-left: .5rem;
  padding-right: .5rem;
  font-weight: bold;
}

.drupal-dropdown-menu-button:hover {
  background-image: url(/img/background/btn-hover.svg);
}

.dropdown-item {
  position: relative;
  font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 700;
  white-space: initial;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.dropdown-item:hover, .dropdown-item:focus, .dropdown-item:active {
  background: none;
  color: #005c8f;
}

.dropdown-item:hover:before, .dropdown-item:focus:before, .dropdown-item:active:before {
  background-color: #00a2ff;
}

.dropdown-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background-color: transparent;
  transition: width 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, box-shadow 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, fill 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, background 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, background-color 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, opacity 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, border 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, font-weight 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, transform 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}

.k-treeview .k-group .k-mid:not(:has(.k-icon)) .k-in, .k-treeview .k-group .k-top:not(:has(.k-icon)) .k-in, .k-treeview .k-group .k-bot:not(:has(.k-icon)) .k-in {
  margin-left: 1rem;
}

.k-multiselect .k-multiselect-wrap > .k-readonly {
  opacity: 1;
  color: black;
}

.no-results {
  max-width: 375px;
  margin: auto;
  text-align: center;
}

.no-results img {
  display: block;
  max-width: 250px;
  margin: auto;
}

.no-results-title {
  font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.no-results-description {
  margin: 0;
}

@media print {
  .no-print {
    visibility: hidden !important;
    display: none !important;
  }
}

.error-page {
  min-height: 65vh;
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.error-page h1:before {
  display: none;
}

.error-page p.lead {
  font-size: 1.6rem;
}

.row-filters {
  -ms-flex-align: center !important;
  align-items: center !important;
  border-top: solid 1px rgba(0, 0, 0, 0.15);
  border-bottom: solid 1px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.row-filters [class*="col"]:after {
  content: '';
  position: absolute;
  top: -50%;
  right: 0;
  height: 200%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.15);
  right: 0;
}

.row-filters [class*="col"]:last-child:after {
  display: none;
}

.filters-apply,
.filters-clear,
.filters-apply-search {
  height: 4.25rem;
}

.filters-apply [type="submit"],
.filters-clear [type="submit"],
.filters-apply-search [type="submit"] {
  height: calc(100% - 1.5rem);
  width: calc(100% - 1.5rem);
  margin: 0.75rem;
  padding: 0.5rem 0;
  color: #fff;
}

.filters-clear [type="submit"] {
  width: calc(100% - 0.75rem);
}

.filters-apply-search {
  display: inline;
  position: absolute;
  right: 0.5rem;
  top: 0;
}

.filters-apply-search [type="submit"] {
  width: 10rem;
}

.filters-search {
  position: relative;
  height: 100%;
}

.filters-search input[type="text"] {
  display: block;
  height: 100%;
  height: 4.25rem;
  width: 100%;
  padding-left: 1rem;
  padding-right: 3.25rem;
  background-color: transparent;
  font-family: ProximaNova, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1.16rem;
  font-weight: 600;
  border: 0;
  outline: 0;
}

.filters-search input[type="text"]:focus {
  background-color: #fff;
}

.filters-search svg {
  height: 1.25rem;
  width: 1.25rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.25rem;
  margin: auto;
  fill: #612771;
}

.filters-search-bar {
  position: relative;
  height: 100%;
}

.filters-search-bar input[type="text"] {
  display: block;
  height: 100%;
  height: 4.25rem;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 3.25rem;
  background-color: #fff;
  font-family: ProximaNova, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1.16rem;
  font-weight: 600;
  border: 1rem;
  border-radius: 120px;
  outline: 0;
}

.filters-search-bar input[type="text"]:focus {
  background-color: #fff;
}

::placeholder {
  color: #0f212f !important;
}

:-ms-input-placeholder {
  color: #0f212f !important;
}

::-moz-placeholder {
  color: #0f212f !important;
}

::-webkit-input-placeholder {
  color: #0f212f !important;
}

.row-filters .k-dropdown, .row-filters .k-dropdowntree {
  width: 100%;
  font-family: ProximaNova, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  height: 4.25rem;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.row-filters .k-dropdown.k-state-border-up, .row-filters .k-dropdown.k-state-border-down, .row-filters .k-dropdowntree.k-state-border-up, .row-filters .k-dropdowntree.k-state-border-down {
  background-color: #fff;
  outline: 0;
}

.row-filters .k-dropdown .k-dropdown-wrap, .row-filters .k-dropdowntree .k-dropdown-wrap {
  display: inline-flex;
  height: 4.25rem;
  -ms-flex-align: center !important;
  align-items: center !important;
  color: #0f212f;
  background-color: transparent;
  border: 0;
  font-family: ProximaNova, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1.16rem;
  font-weight: 600;
}

.row-filters .k-dropdown .k-dropdown-wrap.k-state-focused, .row-filters .k-dropdowntree .k-dropdown-wrap.k-state-focused {
  box-shadow: none;
  background-color: #fff;
}

.row-filters .k-dropdown .k-dropdown-wrap .k-select, .row-filters .k-dropdowntree .k-dropdown-wrap .k-select {
  padding-right: 1rem;
}

.row-filters .k-dropdown .k-dropdown-wrap .k-icon, .row-filters .k-dropdowntree .k-dropdown-wrap .k-icon {
  font-size: 1.25rem !important;
}

.row-filters .k-dropdowntree .k-dropdown-wrap .k-select .k-icon {
  font-size: 1.25rem !important;
}

.k-popup-dropdowntree .k-treeview {
  max-height: 25rem !important;
}

.k-popup-dropdowntree .k-treeview .k-group .k-item .k-icon {
  width: 2rem !important;
  height: 2rem !important;
  font-size: 1.25rem !important;
}

.k-popup {
  border-radius: 0;
  border-color: #ebeced;
}

.k-list-optionlabel,
.k-list .k-item {
  position: relative;
  font-family: ProximaNova, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 600;
  padding-top: 0.575rem;
  padding-bottom: 0.575rem;
}

.k-list-optionlabel.k-state-hover, .k-list-optionlabel.k-state-selected, .k-list-optionlabel.k-state-hover.k-state-selected, .k-list-optionlabel:hover, .k-list-optionlabel:focus, .k-list-optionlabel:active,
.k-list .k-item.k-state-hover,
.k-list .k-item.k-state-selected,
.k-list .k-item.k-state-hover.k-state-selected,
.k-list .k-item:hover,
.k-list .k-item:focus,
.k-list .k-item:active {
  background: none;
  color: #005c8f;
}

.k-list-optionlabel.k-state-hover:before, .k-list-optionlabel.k-state-selected:before, .k-list-optionlabel.k-state-hover.k-state-selected:before, .k-list-optionlabel:hover:before, .k-list-optionlabel:focus:before, .k-list-optionlabel:active:before,
.k-list .k-item.k-state-hover:before,
.k-list .k-item.k-state-selected:before,
.k-list .k-item.k-state-hover.k-state-selected:before,
.k-list .k-item:hover:before,
.k-list .k-item:focus:before,
.k-list .k-item:active:before {
  background-color: #00a2ff;
}

.k-list-optionlabel:before,
.k-list .k-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background-color: transparent;
  transition: width 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, box-shadow 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, fill 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, background 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, background-color 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, opacity 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, border 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, font-weight 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, transform 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}

.k-list-optionlabel.k-state-hover, .k-list-optionlabel.k-state-selected, .k-list-optionlabel.k-state-hover.k-state-selected, .k-list-optionlabel:hover, .k-list-optionlabel:focus, .k-list-optionlabel:active {
  background: none;
  color: #0f212f;
}

.k-list-optionlabel.k-state-hover:before, .k-list-optionlabel.k-state-selected:before, .k-list-optionlabel.k-state-hover.k-state-selected:before, .k-list-optionlabel:hover:before, .k-list-optionlabel:focus:before, .k-list-optionlabel:active:before {
  background-color: transparent;
}

@media screen and (max-width: 767px) {
  .row-filters [class*="col"] {
    border-bottom: solid 1px rgba(0, 0, 0, 0.15);
  }
  .row-filters [class*="col"]:last-child {
    border-bottom: 0;
  }
  .row-filters [class*="col"]:after {
    display: none;
  }
  .row-filters [type="submit"] {
    width: 100%;
    margin: 0.75rem 0;
  }
}

.card-sphere-FocusAreaDefault {
  background-image: url("/img/background/sphere-transparent2.svg");
  background-position-x: right;
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: auto;
  margin: 0 1rem;
}

@media screen and (max-width: 767px) {
  .card-sphere-FocusAreaDefault {
    margin: 1rem 0;
  }
  .card-sphere-FocusAreaDefault .card-img-project-card-fa {
    max-height: 10em !important;
    margin-bottom: 3em;
  }
  .card-sphere-FocusAreaDefault .card-img-project-card {
    max-height: 18em !important;
  }
}

.card-sphere-FocusAreaDefault:hover, .card-sphere-FocusAreaDefault:focus, .card-sphere-FocusAreaDefault:active {
  opacity: .75;
  text-decoration: none !important;
}

.card-sphere-FocusAreaDefault a {
  color: #fff;
}

.card-sphere-FocusAreaDefault a:hover, .card-sphere-FocusAreaDefault a:focus, .card-sphere-FocusAreaDefault a:active {
  color: #fff;
}

.card-sphere-EnergyAndWater {
  background-image: url("/img/background/sphere-transparent2.svg"), linear-gradient(#9a7c2d, #7c6424);
  background-position-x: right;
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: auto;
  margin: 0 1rem;
}

@media screen and (max-width: 767px) {
  .card-sphere-EnergyAndWater {
    margin: 1rem 0;
  }
  .card-sphere-EnergyAndWater .card-img-project-card-fa {
    max-height: 10em !important;
    margin-bottom: 3em;
  }
  .card-sphere-EnergyAndWater .card-img-project-card {
    max-height: 18em !important;
  }
}

.card-sphere-EnergyAndWater:hover, .card-sphere-EnergyAndWater:focus, .card-sphere-EnergyAndWater:active {
  opacity: .75;
  text-decoration: none !important;
}

.card-sphere-EnergyAndWater a {
  color: #fff;
}

.card-sphere-EnergyAndWater a:hover, .card-sphere-EnergyAndWater a:focus, .card-sphere-EnergyAndWater a:active {
  color: #fff;
}

.card-sphere-Conservation {
  background-image: url("/img/background/sphere-transparent2.svg"), linear-gradient(#51682f, #3c4e23);
  background-position-x: right;
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: auto;
  margin: 0 1rem;
}

@media screen and (max-width: 767px) {
  .card-sphere-Conservation {
    margin: 1rem 0;
  }
  .card-sphere-Conservation .card-img-project-card-fa {
    max-height: 10em !important;
    margin-bottom: 3em;
  }
  .card-sphere-Conservation .card-img-project-card {
    max-height: 18em !important;
  }
}

.card-sphere-Conservation:hover, .card-sphere-Conservation:focus, .card-sphere-Conservation:active {
  opacity: .75;
  text-decoration: none !important;
}

.card-sphere-Conservation a {
  color: #fff;
}

.card-sphere-Conservation a:hover, .card-sphere-Conservation a:focus, .card-sphere-Conservation a:active {
  color: #fff;
}

.card-sphere-ChemicalsAndMaterials {
  background-image: url("/img/background/sphere-transparent2.svg"), linear-gradient(#52227C, #3e1a5e);
  background-position-x: right;
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: auto;
  margin: 0 1rem;
}

@media screen and (max-width: 767px) {
  .card-sphere-ChemicalsAndMaterials {
    margin: 1rem 0;
  }
  .card-sphere-ChemicalsAndMaterials .card-img-project-card-fa {
    max-height: 10em !important;
    margin-bottom: 3em;
  }
  .card-sphere-ChemicalsAndMaterials .card-img-project-card {
    max-height: 18em !important;
  }
}

.card-sphere-ChemicalsAndMaterials:hover, .card-sphere-ChemicalsAndMaterials:focus, .card-sphere-ChemicalsAndMaterials:active {
  opacity: .75;
  text-decoration: none !important;
}

.card-sphere-ChemicalsAndMaterials a {
  color: #fff;
}

.card-sphere-ChemicalsAndMaterials a:hover, .card-sphere-ChemicalsAndMaterials a:focus, .card-sphere-ChemicalsAndMaterials a:active {
  color: #fff;
}

.card-sphere-Infrastructure {
  background-image: url("/img/background/sphere-transparent2.svg"), linear-gradient(#7f3426, #62281d);
  background-position-x: right;
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: auto;
  margin: 0 1rem;
}

@media screen and (max-width: 767px) {
  .card-sphere-Infrastructure {
    margin: 1rem 0;
  }
  .card-sphere-Infrastructure .card-img-project-card-fa {
    max-height: 10em !important;
    margin-bottom: 3em;
  }
  .card-sphere-Infrastructure .card-img-project-card {
    max-height: 18em !important;
  }
}

.card-sphere-Infrastructure:hover, .card-sphere-Infrastructure:focus, .card-sphere-Infrastructure:active {
  opacity: .75;
  text-decoration: none !important;
}

.card-sphere-Infrastructure a {
  color: #fff;
}

.card-sphere-Infrastructure a:hover, .card-sphere-Infrastructure a:focus, .card-sphere-Infrastructure a:active {
  color: #fff;
}

.card-sphere-Pfas {
  background-image: url("/img/background/sphere-transparent2.svg"), linear-gradient(#771b4f, #58143a);
  background-position-x: right;
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: auto;
  margin: 0 1rem;
}

@media screen and (max-width: 767px) {
  .card-sphere-Pfas {
    margin: 1rem 0;
  }
  .card-sphere-Pfas .card-img-project-card-fa {
    max-height: 10em !important;
    margin-bottom: 3em;
  }
  .card-sphere-Pfas .card-img-project-card {
    max-height: 18em !important;
  }
}

.card-sphere-Pfas:hover, .card-sphere-Pfas:focus, .card-sphere-Pfas:active {
  opacity: .75;
  text-decoration: none !important;
}

.card-sphere-Pfas a {
  color: #fff;
}

.card-sphere-Pfas a:hover, .card-sphere-Pfas a:focus, .card-sphere-Pfas a:active {
  color: #fff;
}

.card-sphere-OtherChemicalsOfConcern {
  background-image: url("/img/background/sphere-transparent2.svg"), linear-gradient(#a75962, #8e4b53);
  background-position-x: right;
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: auto;
  margin: 0 1rem;
}

@media screen and (max-width: 767px) {
  .card-sphere-OtherChemicalsOfConcern {
    margin: 1rem 0;
  }
  .card-sphere-OtherChemicalsOfConcern .card-img-project-card-fa {
    max-height: 10em !important;
    margin-bottom: 3em;
  }
  .card-sphere-OtherChemicalsOfConcern .card-img-project-card {
    max-height: 18em !important;
  }
}

.card-sphere-OtherChemicalsOfConcern:hover, .card-sphere-OtherChemicalsOfConcern:focus, .card-sphere-OtherChemicalsOfConcern:active {
  opacity: .75;
  text-decoration: none !important;
}

.card-sphere-OtherChemicalsOfConcern a {
  color: #fff;
}

.card-sphere-OtherChemicalsOfConcern a:hover, .card-sphere-OtherChemicalsOfConcern a:focus, .card-sphere-OtherChemicalsOfConcern a:active {
  color: #fff;
}

.card-sphere-Uxo {
  background-image: url("/img/background/sphere-transparent2.svg"), linear-gradient(#297a7a, #1f5d5d);
  background-position-x: right;
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: auto;
  margin: 0 1rem;
}

@media screen and (max-width: 767px) {
  .card-sphere-Uxo {
    margin: 1rem 0;
  }
  .card-sphere-Uxo .card-img-project-card-fa {
    max-height: 10em !important;
    margin-bottom: 3em;
  }
  .card-sphere-Uxo .card-img-project-card {
    max-height: 18em !important;
  }
}

.card-sphere-Uxo:hover, .card-sphere-Uxo:focus, .card-sphere-Uxo:active {
  opacity: .75;
  text-decoration: none !important;
}

.card-sphere-Uxo a {
  color: #fff;
}

.card-sphere-Uxo a:hover, .card-sphere-Uxo a:focus, .card-sphere-Uxo a:active {
  color: #fff;
}

.card-bottom-focus-area {
  padding-left: .5rem;
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.card-bottom-FocusAreaDefault {
  background: linear-gradient(45deg, #49545e 75%, #49545e 30%, transparent 30%);
}

@media screen and (min-width: 768px) and (max-width: 927px) {
  .card-bottom-FocusAreaDefault {
    background: #49545e;
  }
}

.card-bottom-EnergyAndWater {
  background: linear-gradient(45deg, #9a7c2d 75%, #9a7c2d 30%, transparent 30%);
}

@media screen and (min-width: 768px) and (max-width: 927px) {
  .card-bottom-EnergyAndWater {
    background: #9a7c2d;
  }
}

.card-bottom-Conservation {
  background: linear-gradient(45deg, #51682f 75%, #51682f 30%, transparent 30%);
}

@media screen and (min-width: 768px) and (max-width: 927px) {
  .card-bottom-Conservation {
    background: #51682f;
  }
}

.card-bottom-ChemicalsAndMaterials {
  background: linear-gradient(45deg, #52227C 75%, #52227C 30%, transparent 30%);
}

@media screen and (min-width: 768px) and (max-width: 927px) {
  .card-bottom-ChemicalsAndMaterials {
    background: #52227C;
  }
}

.card-bottom-Infrastructure {
  background: linear-gradient(45deg, #7f3426 75%, #7f3426 30%, transparent 30%);
}

@media screen and (min-width: 768px) and (max-width: 927px) {
  .card-bottom-Infrastructure {
    background: #7f3426;
  }
}

.card-bottom-Pfas {
  background: linear-gradient(45deg, #771b4f 75%, #771b4f 30%, transparent 30%);
}

@media screen and (min-width: 768px) and (max-width: 927px) {
  .card-bottom-Pfas {
    background: #771b4f;
  }
}

.card-bottom-OtherChemicalsOfConcern {
  background: linear-gradient(45deg, #a75962 75%, #a75962 30%, transparent 30%);
}

@media screen and (min-width: 768px) and (max-width: 927px) {
  .card-bottom-OtherChemicalsOfConcern {
    background: #a75962;
  }
}

.card-bottom-Uxo {
  background: linear-gradient(45deg, #297a7a 75%, #297a7a 30%, transparent 30%);
}

@media screen and (min-width: 768px) and (max-width: 927px) {
  .card-bottom-Uxo {
    background: #297a7a;
  }
}

label {
  display: block;
  font-size: 14.8px;
  font-weight: 600;
}

input {
  width: 100%;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group.legend h1, .form-group.legend h2, .form-group.legend h3, .form-group.legend h4, .form-group.legend h5, .form-group.legend h6 {
  margin-bottom: 3px;
}

.form-group.legend p {
  border-bottom: 1px dotted silver;
  padding-bottom: 5px;
}

[class*="col"] {
  position: relative;
}

.pager {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.pager .btn {
  color: #005c8f;
  font-size: 1rem;
  font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 700;
}

.pager .btn:hover, .pager .btn:focus, .pager .btn:active {
  text-decoration: none;
}

.pager .btn:hover svg, .pager .btn:focus svg, .pager .btn:active svg {
  transform: translateX(1px);
  fill: #00a2ff;
}

.pager .btn.disabled {
  opacity: 0.45;
}

.pager svg {
  fill: #005c8f;
  width: 1.55rem;
  height: 1.55rem;
  vertical-align: -0.45rem;
  transition: width 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, box-shadow 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, fill 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, background 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, background-color 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, opacity 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, border 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, font-weight 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, transform 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}

.flex {
  display: flex;
}

.icon-025 {
  height: 0.25rem;
  width: 0.25rem;
}

.icon-05 {
  height: 0.5rem;
  width: 0.5rem;
}

.icon-1 {
  height: 1rem;
  width: 1rem;
}

.icon-125 {
  height: 1.25rem;
  width: 1.25rem;
}

.icon-15 {
  height: 1.5rem;
  width: 1.5rem;
}

.icon-175 {
  height: 1.75rem;
  width: 1.75rem;
}

.icon-2 {
  height: 2rem;
  width: 2rem;
}

.icon-225 {
  height: 2.25rem;
  width: 2.25rem;
}

.icon-25 {
  height: 2.5rem;
  width: 2.5rem;
}

.icon-275 {
  height: 2.75rem;
  width: 2.75rem;
}

.icon-3 {
  height: 3rem;
  width: 3rem;
}

.icon-325 {
  height: 3.25rem;
  width: 3.25rem;
}

.icon-35 {
  height: 3.5rem;
  width: 3.5rem;
}

.icon-375 {
  height: 3.75rem;
  width: 3.75rem;
}

.icon-4 {
  height: 4rem;
  width: 4rem;
}

.icon-document-blue {
  display: inline-block;
  height: 1.5em;
  width: 1.5em;
  fill: #00a2ff;
  margin-right: 0.5rem;
}

.icon-link-blue {
  display: inline-block;
  height: 1.5em;
  width: 1.5em;
  fill: #00a2ff;
  margin-right: 0.5rem;
}

.icon-link-white {
  display: inline-block;
  height: 1.5em;
  width: 1.5em;
  fill: #fff;
  margin-right: 0.5rem;
}

.icon-lg {
  height: 2em !important;
  width: 2em !important;
}

.icon-xl {
  height: 3em !important;
  width: 3em !important;
}

.icon-right-down {
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  bottom: 0;
}

.icon-upper-right {
  position: absolute;
  z-index: 1;
  right: 2rem;
  top: 2rem;
}

.icon-toolkit-info {
  fill: gray;
  position: absolute;
  height: 1.5rem;
  width: 1.5rem;
  right: 0;
  z-index: 1;
}

.icon-white {
  fill: #fff;
  stroke: #fff !important;
}

@media screen and (max-width: 991px) {
  .responsive-arrow svg {
    width: 100% !important;
  }
}

@media screen and (max-width: 767px) {
  .responsive-arrow {
    height: 1rem;
    margin-top: 2rem;
  }
  .responsive-arrow svg {
    width: 5rem !important;
    transform: rotate(90deg);
  }
}

.last-arrow {
  width: 0%;
}

.last-arrow svg {
  height: 0;
}

.img-fluid {
  width: 100% !important;
}

.background-image-display {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.figure-standard {
  margin: 0 0 1rem;
}

figure {
  margin: 0 0 -6rem;
}

.img-hide img {
  display: none;
}

.list-group-item {
  padding: 0.5rem;
  border: 0;
  background-color: transparent;
}

.list-group-item p {
  margin: 0;
}

.list-link-arrow {
  margin-bottom: 0;
}

.list-link-arrow li {
  list-style: none;
  /*display: inline-block;*/
}

.list-link-arrow a {
  font-size: 1.25rem;
  font-weight: 600;
  color: #00649E;
  padding: 0;
  line-height: 0.5rem;
}

.list-link-arrow a:hover, .list-link-arrow a:focus, .list-link-arrow a:active {
  color: #00649E;
  opacity: .75;
  text-decoration: underline;
}

.list-link-arrow svg {
  display: inline-block;
  height: 1.25em;
  width: 1.25em;
  fill: #00a2ff;
  margin-right: 0.5rem;
}

@media screen and (max-width: 767px) {
  .list-link-arrow {
    padding: 0 0 1rem 0;
  }
}

.list-dash {
  padding: 1rem 0 0 3rem;
}

.list-dash:before {
  content: '';
  position: absolute;
  width: 1rem;
  height: 3px;
  background-color: #8d48a0;
  left: 1rem;
  bottom: 0.75rem;
}

.social-media-icons {
  padding: 0;
}

.social-media-icons li {
  margin-right: 0.625rem;
  display: inline-block;
  height: 3.125rem;
  width: 3.125rem;
}

.social-media-icons a {
  height: 3.125rem;
  width: 3.125rem;
}

.social-media-icons svg {
  fill: white;
  height: 3.125rem;
  width: 3.125rem;
}

.indent-wrap-lines {
  text-indent: -2.9rem;
  padding-left: 3.65rem;
}

.nav-link {
  position: relative;
  color: #0f212f;
}

.nav-link:hover, .nav-link:focus, .nav-link:active {
  text-decoration: none;
  opacity: .75;
}

.nav-link .nav-banner {
  color: #fff;
}

.nav-link-underline {
  position: relative;
  color: #0f212f;
  text-decoration: underline;
}

.nav-link-underline:hover, .nav-link-underline:focus, .nav-link-underline:active {
  opacity: 0.75 !important;
  text-decoration: underline;
}

.nav-banner {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 33.77rem;
  z-index: -1;
  background-color: #053356;
}

@media screen and (max-width: 991px) {
  .nav-banner {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .nav-banner {
    display: none;
  }
}

.nav-banner-sphere {
  background-image: url("/img/background/sphere-transparent.svg");
  background-image: url("/img/background/sphere-transparent.svg"), linear-gradient(#053356, #031e32);
  background-position-x: right;
  background-position-y: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 30rem;
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .nav-banner-sphere {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .nav-banner-sphere {
    display: none;
  }
}

.navbar-brand {
  position: relative;
}

.navbar-brand img {
  width: 375px;
}

.navbar-toggler {
  padding-left: 0;
  padding-right: 0;
}

.navbar-toggler:focus, .navbar-toggler:active {
  box-shadow: none;
}

.navbar-toggler:focus svg, .navbar-toggler:active svg {
  fill: #00a2ff !important;
}

@media screen and (min-width: 1200px) {
  .navbar {
    padding-left: 0;
    padding-right: 0;
  }
}

.navbar .btn-search {
  display: inline-block;
  background-color: #ebeced;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  border: solid 1px transparent;
}

.navbar .btn-search:hover, .navbar .btn-search:focus, .navbar .btn-search:active {
  border-color: #b0b4b8;
}

.navbar .btn-search svg {
  fill: #006ca9;
  height: 3.5rem;
  width: 3.5rem;
  padding: 1.15rem;
}

.navbar-dark .nav-link {
  color: #fff !important;
}

.navbar-dark .btn-search {
  display: inline-block;
  background-color: #042640;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  border: solid 1px transparent;
}

.navbar-dark .btn-search:hover, .navbar-dark .btn-search:focus, .navbar-dark .btn-search:active {
  border-color: black;
}

.navbar-dark .btn-search svg {
  fill: #006ca9;
  height: 3.5rem;
  width: 3.5rem;
  padding: 1.15rem;
}

@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.nav-menu .nav-link {
  font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 700;
  padding: 0.35rem 1.5rem;
}

@media screen and (min-width: 1200px) {
  .nav-menu .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background-color: #8d48a0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: width 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, box-shadow 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, fill 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, background 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, background-color 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, opacity 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, border 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, font-weight 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, transform 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
  }
}

.nav-menu .nav-link:hover, .nav-menu .nav-link:focus, .nav-menu .nav-link:active, .nav-menu .nav-link.active {
  color: #0f212f;
}

.nav-menu .nav-link:hover:after, .nav-menu .nav-link:focus:after, .nav-menu .nav-link:active:after, .nav-menu .nav-link.active:after {
  height: 4px;
  width: 3rem;
}

@media screen and (min-width: 992px) {
  .nav-menu .dropdown-menu .row {
    min-width: 700px;
  }
}

.nav-menu-sub .nav-link {
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-menu-sub .nav-link:hover:after, .nav-menu-sub .nav-link:focus:after, .nav-menu-sub .nav-link:active:after, .nav-menu-sub .nav-link.active:after {
  height: 3px;
  width: 2.5rem;
  bottom: 0.125rem;
}

.nav-item .dark-text {
  color: #0f212f !important;
}

@media (max-width: 426px) {
  #nav-logo-header {
    margin: auto;
  }
}

.mobile-black-button {
  color: white;
  border-color: white;
  width: 35vw;
  text-transform: uppercase;
  border-radius: 0;
  font-weight: 700;
}

@media screen and (min-width: 1199px) and (max-width: 1385px) {
  #header-navbar .nav-item {
    font-size: .85rem;
    padding-right: 1rem !important;
  }
}

.nav-external-link-icon {
  margin-bottom: .15rem;
  height: .75rem;
  width: .75rem;
}

.nav-actions-button-desktop {
  padding: .25rem .5rem;
  width: 9rem;
  color: #133f62;
  border-color: #133f62;
  height: min-content;
  border-radius: 0;
  margin-bottom: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.nav-actions-button-desktop:hover {
  color: #133f62;
}

.nav-actions-button-mobile {
  padding: .25rem .5rem !important;
  color: #133f62;
  border-color: #133f62;
  height: min-content;
  border-radius: 0;
  margin-bottom: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.nav-actions-button-mobile:hover {
  color: #133f62;
}

#nav-dropdown-menu {
  background-color: #ebedef;
  width: 25rem;
  left: 0;
}

@media screen and (max-width: 1199px) {
  #nav-dropdown-menu {
    width: 100%;
  }
}

footer .btn-search,
footer .navbar-brand,
footer .navbar-toggler,
footer .nav-menu-sub {
  display: none !important;
}

footer svg.v-tbtm {
  transform: translateY(-1px);
}

footer .navbar {
  padding-left: 0;
  padding-right: 0;
}

footer .navbar .container {
  padding-left: 0;
}

footer .navbar-nav {
  margin-left: 0 !important;
}

footer .collapse:not(.show) {
  display: block;
}

footer .nav-menu .nav-link {
  padding-left: 0;
}

footer .nav-menu .nav-link, footer .nav-menu .nav-link:hover, footer .nav-menu .nav-link:focus, footer .nav-menu .nav-link:active {
  color: #fff !important;
}

.footer-buttons a {
  color: #fff !important;
  border-color: #fff !important;
}

.footer-buttons svg {
  stroke: #fff;
  fill: #fff;
}

.footer-banner {
  background-image: url("/img/background/footer-bg-01.svg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 40rem;
}

@media screen and (max-width: 1400px) {
  .footer-banner {
    height: 38rem;
    background-size: auto;
  }
}

@media screen and (max-width: 1199px) {
  .footer-banner {
    height: 38rem;
    background-size: auto;
  }
}

@media screen and (max-width: 991px) {
  .footer-banner {
    height: 31rem;
  }
}

@media screen and (max-width: 767px) {
  .footer-banner {
    height: 28rem;
  }
}

@media screen and (max-width: 575px) {
  .footer-banner {
    height: 21rem;
  }
}

@media screen and (max-width: 1199px) {
  .navbar-brand img {
    width: 350px;
  }
  header .navbar-collapse {
    background-color: #053356;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
  }
}

@media screen and (max-width: 1199px) and (max-width: 1200px) {
  header .navbar-collapse .nav-item {
    padding-right: 0 !important;
  }
}

@media screen and (max-width: 1199px) {
  header .navbar-collapse .nav-link {
    color: #fff;
    padding-top: 1.5rem;
    padding-bottom: 1.25rem;
    padding-right: 2.5rem;
    line-height: 1.5;
    padding-left: 2rem;
    border-top: dashed 1px #5b6065;
  }
  header .navbar-collapse .nav-link:hover, header .navbar-collapse .nav-link:focus, header .navbar-collapse .nav-link:active {
    color: #fff;
  }
  header .navbar-collapse .nav-link:not(.no-arrow):after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2rem;
    width: 0;
    height: 0;
    border-bottom: .5rem solid transparent;
    border-left: 0.5rem solid #00a2ff;
    border-top: .5rem solid transparent;
    margin: auto;
  }
  header .navbar-collapse .dropdown-menu {
    margin: 0;
    border-radius: 0;
  }
  .nav-menu {
    width: 100%;
  }
  .nav-menu .nav-link:hover, .nav-menu .nav-link:focus, .nav-menu .nav-link:active, .nav-menu .nav-link.active {
    color: #b3bec7;
  }
  .nav-menu-sub {
    display: flex;
    flex-direction: column !important;
    -ms-flex-direction: column !important;
  }
}

@media screen and (max-width: 767px) {
  .navbar-brand img {
    width: 225px;
  }
}

/* Focus Area Sticky Sidebars */
#fa-sidebar {
  position: sticky;
  top: 0;
  font-weight: 500;
  font-size: 1.5em;
  align-items: flex-start;
}

#fa-sidebar .nav-link {
  color: slategray;
}

#fa-sidebar .nav-link.hover {
  color: black;
  font-weight: 900;
  border-left: 0.4rem solid #8d48a0;
  transition: border-left 0.3s ease;
}

#fa-sidebar .nav-link.active {
  font-weight: 900;
  color: black;
  border-left: 0.4rem solid #8d48a0;
}

#fa-sidebar-mobile {
  height: 4.5rem;
  position: sticky;
  top: 0;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  #fa-sidebar-mobile {
    display: none;
  }
}

#fa-sidebar-mobile-dropdown-button {
  background-color: blue;
  color: white;
  font-family: ProximaNova, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  margin-top: .9rem;
  padding-right: 1rem;
  padding-left: 1rem;
  border-radius: 0;
  font-size: 1.1rem;
  background-color: #005c8f;
  width: 33%;
  min-width: fit-content;
}

#fa-sidebar-mobile-dropdown {
  width: 100%;
  text-align: center;
}

#fa-sidebar-mobile-dropdown a {
  font-weight: 500;
  color: #0f212f;
}

#fa-sidebar-mobile-dropdown a:hover, #fa-sidebar-mobile-dropdown a:focus {
  font-size: 1.1rem;
  color: #0f212f;
  font-weight: 900;
  text-decoration-color: #00a2ff;
  text-underline-offset: .5rem;
}

#fa-sidebar-mobile-dropdown a:before {
  height: 0;
}

#fa-related-content {
  height: 37.5rem;
  overflow-y: auto;
}

#fa-related-content::-webkit-scrollbar {
  width: 8px;
}

#fa-related-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#fa-related-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

#fa-related-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media screen and (min-width: 768px) {
  #fa-related-content-mobile {
    display: none;
  }
}

#nav-search-input {
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid black;
}

@media screen and (max-width: 1199px) {
  #nav-search-input {
    font-size: 16px;
  }
}

#nav-search-input::placeholder {
  color: #898989 !important;
  font-weight: 600;
}

#nav-search-input-mobile {
  background: transparent;
  outline: none;
  color: white;
  border: none;
  font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 700;
  width: 90%;
}

#nav-search-input-mobile::placeholder {
  color: #fff !important;
  opacity: 0.7;
}

#nav-search-button {
  background: transparent;
  border: none;
  border-bottom: 1px solid black;
  border-radius: 0;
  padding-bottom: 0.188rem;
  flex: 0 0 1.875rem;
}

@media screen and (max-width: 1199px) {
  #nav-search-button {
    padding-bottom: 0.4rem;
  }
}

@media screen and (max-width: 1199px) {
  #nav-search-button svg {
    height: 1.25rem;
    width: 1.25rem;
  }
}

#nav-search-button-mobile {
  position: absolute;
  right: 1.75rem;
  top: 1rem;
}

#nav-search-form-desktop {
  width: 19rem;
  display: flex;
  align-items: end;
  align-self: center;
}

@media screen and (max-width: 1199px) {
  #nav-search-form-desktop {
    width: 30vw;
    align-self: center;
    margin-left: auto;
    margin-right: 2rem;
  }
}

@media screen and (max-width: 768px) {
  #nav-search-form-desktop {
    display: none !important;
  }
}

#nav-search-form-mobile {
  height: 1.6rem;
}

.default-hidden {
  display: none;
}

@media screen and (min-width: 767px) {
  .mobile-only {
    display: none !important;
  }
}

.global-loader {
  position: absolute;
  top: -2.25rem;
  left: 1rem;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}

.loader {
  color: #005c8f;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}

.loader:before {
  left: -1rem;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 1rem;
}

@-webkit-keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5rem 0 -1.3rem;
  }
  40% {
    box-shadow: 0 2.5rem 0 0;
  }
}

@keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5rem 0 -1.3rem;
  }
  40% {
    box-shadow: 0 2.5rem 0 0;
  }
}

.renderedtable2 {
  width: 100%;
  margin: 1em 0 1em 0;
  border-left: 1px solid #7E8991;
  border-top: 1px solid #7E8991;
}

.renderedtable2 tbody tr {
  border-width: thin;
}

.renderedtable2 tbody tr td {
  border-width: thin;
  padding: 0.5rem;
}

.renderedtable2 tbody tr th {
  padding: 0.5rem;
}

.renderedtable2 tbody tr:first-child {
  font-size: 1.5rem;
  border-width: thin;
}

.selection-table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0 1em 0;
  border-left: 1px solid #7E8991;
  border-top: 1px solid #7E8991;
}

.selection-table tbody tr {
  border: 5px solid white;
  background-color: #ebeced;
}

.selection-table tbody tr td {
  border-width: thin;
  padding: 0.5rem;
  border-width: 0;
  width: 20%;
}

.selection-table tbody tr th {
  padding: 0.5rem;
  color: white;
  text-align: center;
}

.selection-table tbody tr .first-column {
  width: 10% !important;
}

.selection-table tbody tr .second-column {
  width: 49% !important;
}

.selection-table tbody tr:first-child {
  font-size: 1.5rem;
  border: 5px solid white !important;
}

.selection-table tbody .subheading {
  background-color: #b3bec7 !important;
  color: #212529 !important;
}

.selection-table tbody .topic-area-header {
  border: 1px solid white !important;
}

.selection-table tbody .program-area-header {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.selection-table.serdp-selection-table tr:first-child {
  background-color: #053356 !important;
  border: 1px solid white !important;
}

.selection-table.estcp-selection-table tr:first-child {
  background-color: #612771 !important;
  border: 1px solid white !important;
}

.nav-tabs-dark {
  border: 0;
  padding-left: 1rem;
}

.nav-tabs-dark .nav-item {
  margin: 0;
}

.nav-tabs-dark .nav-link {
  margin-bottom: 0;
}

.nav-tabs-dark .nav-link, .nav-tabs-dark .nav-link:hover, .nav-tabs-dark .nav-link:focus, .nav-tabs-dark .nav-link:active, .nav-tabs-dark .nav-link.active {
  color: #fff;
  font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 700;
  font-size: 0.82rem;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0 3rem 2.5rem 0;
}

.nav-tabs-dark .nav-link:hover, .nav-tabs-dark .nav-link:focus, .nav-tabs-dark .nav-link.active {
  text-decoration: none;
}

.nav-tabs-dark .nav-link:hover:after, .nav-tabs-dark .nav-link:focus:after, .nav-tabs-dark .nav-link.active:after {
  width: 2.75rem;
  background-color: #00a2ff;
}

.nav-tabs-dark .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 6px;
  background-color: transparent;
  transition: width 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, box-shadow 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, fill 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, background 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, background-color 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, opacity 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, border 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, font-weight 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, transform 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}

#sort-filter-nav-tabs.nav-tabs {
  border: 0;
}

#sort-filter-nav-tabs.nav-tabs .nav-item {
  margin: 0;
}

#sort-filter-nav-tabs.nav-tabs .nav-link {
  margin-bottom: 0;
}

#sort-filter-nav-tabs.nav-tabs .nav-link, #sort-filter-nav-tabs.nav-tabs .nav-link:hover, #sort-filter-nav-tabs.nav-tabs .nav-link:focus, #sort-filter-nav-tabs.nav-tabs .nav-link:active, #sort-filter-nav-tabs.nav-tabs .nav-link.active {
  font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 700;
  font-size: 0.82rem;
  color: #0f212f;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0 3rem 2.5rem 0;
}

#sort-filter-nav-tabs.nav-tabs .nav-link:hover {
  color: #0f212f;
}

#sort-filter-nav-tabs.nav-tabs .nav-link:focus {
  color: #8193a1;
}

#sort-filter-nav-tabs.nav-tabs .nav-link:hover:after, #sort-filter-nav-tabs.nav-tabs .nav-link:focus:after, #sort-filter-nav-tabs.nav-tabs .nav-link.active:after {
  width: 2.75rem;
  background-color: #00a2ff;
}

#sort-filter-nav-tabs.nav-tabs .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 6px;
  background-color: transparent;
  transition: width 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, box-shadow 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, fill 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, background 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, background-color 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, opacity 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, border 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, font-weight 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, transform 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}

#sort-filter-nav-tabs.nav-tabs.nav-tabs-filter .nav-item:first-child .nav-link {
  margin: 0;
}

#sort-filter-nav-tabs.nav-tabs.nav-tabs-filter .nav-link, #sort-filter-nav-tabs.nav-tabs.nav-tabs-filter .nav-link:hover, #sort-filter-nav-tabs.nav-tabs.nav-tabs-filter .nav-link:focus, #sort-filter-nav-tabs.nav-tabs.nav-tabs-filter .nav-link:active, #sort-filter-nav-tabs.nav-tabs.nav-tabs-filter .nav-link.active {
  font-size: 1rem;
  text-transform: initial;
  padding: 1rem 0;
  margin: 0 0 0 2rem;
}

#sort-filter-nav-tabs.nav-tabs.nav-tabs-filter .nav-link:hover:after, #sort-filter-nav-tabs.nav-tabs.nav-tabs-filter .nav-link:focus:after, #sort-filter-nav-tabs.nav-tabs.nav-tabs-filter .nav-link.active:after {
  width: 100%;
}

.nav-tabs.nav-tabs-filter-dark .nav-item:first-child .nav-link {
  margin: 0;
}

.nav-tabs.nav-tabs-filter-dark .nav-link {
  color: #fff;
}

.nav-tabs.nav-tabs-filter-dark .nav-link, .nav-tabs.nav-tabs-filter-dark .nav-link:hover, .nav-tabs.nav-tabs-filter-dark .nav-link:focus, .nav-tabs.nav-tabs-filter-dark .nav-link:active, .nav-tabs.nav-tabs-filter-dark .nav-link.active {
  font-size: 1rem;
  text-transform: initial;
  padding: 1rem 0;
  margin: 0 0 0 2rem;
}

.nav-tabs.nav-tabs-filter-dark .nav-link:hover:after, .nav-tabs.nav-tabs-filter-dark .nav-link:focus:after, .nav-tabs.nav-tabs-filter-dark .nav-link.active:after {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .nav-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
  }
  .nav-tabs .nav-link {
    white-space: nowrap;
  }
}

.sub-level-nav-tabs.nav-tabs {
  font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 600;
  border-bottom: 0;
}

.sub-level-nav-tabs.nav-tabs .nav-link {
  color: white;
  border-bottom: 0;
}

.sub-level-nav-tabs.nav-tabs .nav-link:hover, .sub-level-nav-tabs.nav-tabs .nav-link:focus {
  text-decoration: none;
}

.sub-level-nav-tabs.nav-tabs .nav-link.active {
  color: #133f62;
}

.tags {
  padding: 0;
}

.tags, .tags li {
  list-style: none;
  display: inline-block;
}

.tags a {
  color: #8193a1;
}

.tags svg {
  display: inline-block;
  height: 1.25em;
  width: 1.25em;
  fill: #ebeced;
  margin-right: 0.5rem;
}

html {
  font-size: 16px !important;
}

@media screen and (max-width: 1199px) {
  html {
    font-size: 13.2px !important;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 11.6px !important;
  }
}

@media print {
  @page {
    size: 375mm 400mm;
  }
}

body {
  font-family: ProximaNova, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

.elcontainer {
  padding-bottom: 0 !important;
}

.elcontainer .form-header {
  font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
  display: block !important;
  line-height: 1.3 !important;
  margin-bottom: 2rem !important;
  padding-top: 0 !important;
}

.elcontainer .form-header h3 {
  font-size: 1.5rem !important;
}

.elcontainer .sortables {
  font-family: ProximaNova, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
  text-rendering: optimizeLegibility !important;
  line-height: 1.5 !important;
}

.elcontainer .sortables label {
  font-size: 1rem !important;
}

.elcontainer .sortables .btn {
  justify-content: center !important;
  align-items: center !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  opacity: 1 !important;
  text-decoration: none !important;
  color: #fff !important;
}

.elcontainer .sortables .btn, .elcontainer .sortables .btn:hover, .elcontainer .sortables .btn:focus, .elcontainer .sortables .btn:active {
  background: url(/img/background/btn-default.svg) center center no-repeat !important;
  background-size: cover !important;
  color: #fff !important;
  font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
  font-weight: 700 !important;
  font-size: 0.94rem !important;
  padding: 1rem 2.5rem !important;
  text-transform: capitalize !important;
  border: 0 !important;
  border-radius: 0px !important;
}

.elcontainer .sortables .btn:hover {
  background-image: url(/img/background/btn-hover.svg) !important;
}

.elcontainer .sortables .btn:active {
  background-image: url(/img/background/btn-focus.svg) !important;
}

.elcontainer .sortables .btn svg {
  height: 1.25rem !important;
  width: 1.25rem !important;
}

.elcontainer .sortables .btn a {
  color: #fff !important;
}

.elcontainer .sortables .btn a, .elcontainer .sortables .btn a:hover, .elcontainer .sortables .btn a:focus, .elcontainer .sortables .btn a:active {
  color: #fff !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

.h1, .h2, .h3, .h4, .h5, .h6, .h7, .h8, h1, h2, h3, h4, h5, h6 {
  font-family: Raleway, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  display: block;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.h1 > svg, .h2 > svg, .h3 > svg, .h4 > svg, .h5 > svg, .h6 > svg, .h7 > svg, .h8 > svg, h1 > svg, h2 > svg, h3 > svg, h4 > svg, h5 > svg, h6 > svg {
  height: 1em;
  width: 1em;
  vertical-align: -0.1375em;
  margin-right: 0.325rem;
}

.h1 a, .h1 span[data-ajax-href]:not(.btn), .h2 a, .h2 span[data-ajax-href]:not(.btn), .h3 a, .h3 span[data-ajax-href]:not(.btn), .h4 a, .h4 span[data-ajax-href]:not(.btn), .h5 a, .h5 span[data-ajax-href]:not(.btn), .h6 a, .h6 span[data-ajax-href]:not(.btn), .h7 a, .h7 span[data-ajax-href]:not(.btn), .h8 a, .h8 span[data-ajax-href]:not(.btn), h1 a, h1 span[data-ajax-href]:not(.btn), h2 a, h2 span[data-ajax-href]:not(.btn), h3 a, h3 span[data-ajax-href]:not(.btn), h4 a, h4 span[data-ajax-href]:not(.btn), h5 a, h5 span[data-ajax-href]:not(.btn), h6 a, h6 span[data-ajax-href]:not(.btn) {
  color: #00649E;
}

.h1 a:hover, .h1 span[data-ajax-href]:not(.btn):hover, .h2 a:hover, .h2 span[data-ajax-href]:not(.btn):hover, .h3 a:hover, .h3 span[data-ajax-href]:not(.btn):hover, .h4 a:hover, .h4 span[data-ajax-href]:not(.btn):hover, .h5 a:hover, .h5 span[data-ajax-href]:not(.btn):hover, .h6 a:hover, .h6 span[data-ajax-href]:not(.btn):hover, .h7 a:hover, .h7 span[data-ajax-href]:not(.btn):hover, .h8 a:hover, .h8 span[data-ajax-href]:not(.btn):hover, h1 a:hover, h1 span[data-ajax-href]:not(.btn):hover, h2 a:hover, h2 span[data-ajax-href]:not(.btn):hover, h3 a:hover, h3 span[data-ajax-href]:not(.btn):hover, h4 a:hover, h4 span[data-ajax-href]:not(.btn):hover, h5 a:hover, h5 span[data-ajax-href]:not(.btn):hover, h6 a:hover, h6 span[data-ajax-href]:not(.btn):hover {
  color: #005c8f;
}

.h1 a:focus, .h1 a:active, .h1 span[data-ajax-href]:not(.btn):focus, .h1 span[data-ajax-href]:not(.btn):active, .h2 a:focus, .h2 a:active, .h2 span[data-ajax-href]:not(.btn):focus, .h2 span[data-ajax-href]:not(.btn):active, .h3 a:focus, .h3 a:active, .h3 span[data-ajax-href]:not(.btn):focus, .h3 span[data-ajax-href]:not(.btn):active, .h4 a:focus, .h4 a:active, .h4 span[data-ajax-href]:not(.btn):focus, .h4 span[data-ajax-href]:not(.btn):active, .h5 a:focus, .h5 a:active, .h5 span[data-ajax-href]:not(.btn):focus, .h5 span[data-ajax-href]:not(.btn):active, .h6 a:focus, .h6 a:active, .h6 span[data-ajax-href]:not(.btn):focus, .h6 span[data-ajax-href]:not(.btn):active, .h7 a:focus, .h7 a:active, .h7 span[data-ajax-href]:not(.btn):focus, .h7 span[data-ajax-href]:not(.btn):active, .h8 a:focus, .h8 a:active, .h8 span[data-ajax-href]:not(.btn):focus, .h8 span[data-ajax-href]:not(.btn):active, h1 a:focus, h1 a:active, h1 span[data-ajax-href]:not(.btn):focus, h1 span[data-ajax-href]:not(.btn):active, h2 a:focus, h2 a:active, h2 span[data-ajax-href]:not(.btn):focus, h2 span[data-ajax-href]:not(.btn):active, h3 a:focus, h3 a:active, h3 span[data-ajax-href]:not(.btn):focus, h3 span[data-ajax-href]:not(.btn):active, h4 a:focus, h4 a:active, h4 span[data-ajax-href]:not(.btn):focus, h4 span[data-ajax-href]:not(.btn):active, h5 a:focus, h5 a:active, h5 span[data-ajax-href]:not(.btn):focus, h5 span[data-ajax-href]:not(.btn):active, h6 a:focus, h6 a:active, h6 span[data-ajax-href]:not(.btn):focus, h6 span[data-ajax-href]:not(.btn):active {
  color: #005c8f;
  opacity: 0.7;
  text-decoration: none;
}

.h1 a:hover, .h1 a:focus, .h1 a:active, .h1 span[data-ajax-href]:not(.btn):hover, .h1 span[data-ajax-href]:not(.btn):focus, .h1 span[data-ajax-href]:not(.btn):active, .h2 a:hover, .h2 a:focus, .h2 a:active, .h2 span[data-ajax-href]:not(.btn):hover, .h2 span[data-ajax-href]:not(.btn):focus, .h2 span[data-ajax-href]:not(.btn):active, .h3 a:hover, .h3 a:focus, .h3 a:active, .h3 span[data-ajax-href]:not(.btn):hover, .h3 span[data-ajax-href]:not(.btn):focus, .h3 span[data-ajax-href]:not(.btn):active, .h4 a:hover, .h4 a:focus, .h4 a:active, .h4 span[data-ajax-href]:not(.btn):hover, .h4 span[data-ajax-href]:not(.btn):focus, .h4 span[data-ajax-href]:not(.btn):active, .h5 a:hover, .h5 a:focus, .h5 a:active, .h5 span[data-ajax-href]:not(.btn):hover, .h5 span[data-ajax-href]:not(.btn):focus, .h5 span[data-ajax-href]:not(.btn):active, .h6 a:hover, .h6 a:focus, .h6 a:active, .h6 span[data-ajax-href]:not(.btn):hover, .h6 span[data-ajax-href]:not(.btn):focus, .h6 span[data-ajax-href]:not(.btn):active, .h7 a:hover, .h7 a:focus, .h7 a:active, .h7 span[data-ajax-href]:not(.btn):hover, .h7 span[data-ajax-href]:not(.btn):focus, .h7 span[data-ajax-href]:not(.btn):active, .h8 a:hover, .h8 a:focus, .h8 a:active, .h8 span[data-ajax-href]:not(.btn):hover, .h8 span[data-ajax-href]:not(.btn):focus, .h8 span[data-ajax-href]:not(.btn):active, h1 a:hover, h1 a:focus, h1 a:active, h1 span[data-ajax-href]:not(.btn):hover, h1 span[data-ajax-href]:not(.btn):focus, h1 span[data-ajax-href]:not(.btn):active, h2 a:hover, h2 a:focus, h2 a:active, h2 span[data-ajax-href]:not(.btn):hover, h2 span[data-ajax-href]:not(.btn):focus, h2 span[data-ajax-href]:not(.btn):active, h3 a:hover, h3 a:focus, h3 a:active, h3 span[data-ajax-href]:not(.btn):hover, h3 span[data-ajax-href]:not(.btn):focus, h3 span[data-ajax-href]:not(.btn):active, h4 a:hover, h4 a:focus, h4 a:active, h4 span[data-ajax-href]:not(.btn):hover, h4 span[data-ajax-href]:not(.btn):focus, h4 span[data-ajax-href]:not(.btn):active, h5 a:hover, h5 a:focus, h5 a:active, h5 span[data-ajax-href]:not(.btn):hover, h5 span[data-ajax-href]:not(.btn):focus, h5 span[data-ajax-href]:not(.btn):active, h6 a:hover, h6 a:focus, h6 a:active, h6 span[data-ajax-href]:not(.btn):hover, h6 span[data-ajax-href]:not(.btn):focus, h6 span[data-ajax-href]:not(.btn):active {
  color: #00649E;
  opacity: .75;
  text-decoration: underline;
}

h6 a, h6 span[data-ajax-href]:not(.btn), .h6 a, .h6 span[data-ajax-href]:not(.btn), .h7 a, .h7 span[data-ajax-href]:not(.btn), .h8 a, .h8 span[data-ajax-href]:not(.btn) {
  color: #00649E;
}

h6 a:hover, h6 span[data-ajax-href]:not(.btn):hover, .h6 a:hover, .h6 span[data-ajax-href]:not(.btn):hover, .h7 a:hover, .h7 span[data-ajax-href]:not(.btn):hover, .h8 a:hover, .h8 span[data-ajax-href]:not(.btn):hover {
  color: #005c8f;
}

h6 a:focus, h6 a:active, h6 span[data-ajax-href]:not(.btn):focus, h6 span[data-ajax-href]:not(.btn):active, .h6 a:focus, .h6 a:active, .h6 span[data-ajax-href]:not(.btn):focus, .h6 span[data-ajax-href]:not(.btn):active, .h7 a:focus, .h7 a:active, .h7 span[data-ajax-href]:not(.btn):focus, .h7 span[data-ajax-href]:not(.btn):active, .h8 a:focus, .h8 a:active, .h8 span[data-ajax-href]:not(.btn):focus, .h8 span[data-ajax-href]:not(.btn):active {
  color: #005c8f;
  opacity: 0.7;
  text-decoration: none;
}

h6 a:hover, h6 a:focus, h6 a:active, h6 span[data-ajax-href]:not(.btn):hover, h6 span[data-ajax-href]:not(.btn):focus, h6 span[data-ajax-href]:not(.btn):active, .h6 a:hover, .h6 a:focus, .h6 a:active, .h6 span[data-ajax-href]:not(.btn):hover, .h6 span[data-ajax-href]:not(.btn):focus, .h6 span[data-ajax-href]:not(.btn):active, .h7 a:hover, .h7 a:focus, .h7 a:active, .h7 span[data-ajax-href]:not(.btn):hover, .h7 span[data-ajax-href]:not(.btn):focus, .h7 span[data-ajax-href]:not(.btn):active, .h8 a:hover, .h8 a:focus, .h8 a:active, .h8 span[data-ajax-href]:not(.btn):hover, .h8 span[data-ajax-href]:not(.btn):focus, .h8 span[data-ajax-href]:not(.btn):active {
  color: #00649E;
  opacity: .75;
  text-decoration: underline;
}

a.h6, a.h7, a.h8, span[data-ajax-href]:not(.btn).h6, span[data-ajax-href]:not(.btn).h7, span[data-ajax-href]:not(.btn).h8 {
  color: #005c8f;
}

a.h6:hover, a.h7:hover, a.h8:hover, span[data-ajax-href]:not(.btn).h6:hover, span[data-ajax-href]:not(.btn).h7:hover, span[data-ajax-href]:not(.btn).h8:hover {
  color: #005c8f;
}

a.h6:focus, a.h6:active, a.h7:focus, a.h7:active, a.h8:focus, a.h8:active, span[data-ajax-href]:not(.btn).h6:focus, span[data-ajax-href]:not(.btn).h6:active, span[data-ajax-href]:not(.btn).h7:focus, span[data-ajax-href]:not(.btn).h7:active, span[data-ajax-href]:not(.btn).h8:focus, span[data-ajax-href]:not(.btn).h8:active {
  color: #005c8f;
  opacity: 0.7;
  text-decoration: none;
}

.h1, h1, .h2, h2, .h3, h3 {
  text-align: left;
  position: relative;
  margin-bottom: 3rem;
}

.h1:not(.sans-underline):before, h1:not(.sans-underline):before, .h2:not(.sans-underline):before, h2:not(.sans-underline):before, .h3:not(.sans-underline):before, h3:not(.sans-underline):before {
  content: '';
  position: absolute;
  width: 3.25rem;
  height: 4px;
  background-color: var(--custom-underline, #8d48a0);
  left: 0;
  bottom: -1.25rem;
}

.lead-estcp:not(.sans-underline):before {
  content: '';
  position: absolute;
  width: 3.25rem;
  height: 4px;
  background-color: #8d48a0;
  left: 0;
  bottom: -1.25rem;
}

.lead-serdp:not(.sans-underline):before {
  content: '';
  position: absolute;
  width: 3.25rem;
  height: 4px;
  background-color: #005c8f;
  left: 0;
  bottom: -1.25rem;
}

.h1 small, h1 small, .h2 small, h2 small, .h3 small, h3 small {
  display: block;
  font-weight: 500;
  font-size: 55%;
  margin-bottom: 0.75rem;
}

.h1, h1 {
  font-size: 3.7333rem;
  font-weight: 300;
}

.h2, h2 {
  font-size: 2.5333rem;
  font-weight: 300;
}

.h2:before, h2:before {
  height: 4px;
}

.h3, h3 {
  font-size: 2rem;
  font-weight: 600;
}

.h3:before, h3:before {
  height: 3px;
}

.h4, h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 500;
}

.h5, h5 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.7333rem;
  font-weight: 600;
}

.h6, h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.row .h4, .row h4, .row .h5, .row h5, .row .h6, .row h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.h7 {
  font-size: 0.88rem;
  font-weight: 700;
}

.h8 {
  font-size: 0.88rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

time.h7,
time.h8 {
  font-size: 1rem;
  font-family: ProximaNova, SegoeUI, Segoe UI, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
}

pre {
  white-space: pre-line;
}

b,
strong,
.strong {
  font-weight: 700 !important;
}

a, span[data-ajax-href]:not(.btn) {
  color: #00649E;
  text-decoration: none;
  transition: width 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, box-shadow 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, fill 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, background 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, background-color 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, opacity 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, border 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, font-weight 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, transform 0.275s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}

a:hover, a:focus, a:active, span[data-ajax-href]:not(.btn):hover, span[data-ajax-href]:not(.btn):focus, span[data-ajax-href]:not(.btn):active {
  color: #00649E;
  opacity: .75;
  text-decoration: underline;
}

p:empty {
  margin: 0;
}

.lead {
  font-size: 1.2rem;
}

.caption {
  font-size: 1rem;
}

.caption .caption-indenter {
  display: inline-block;
  background: #612771;
  padding: 0.075rem 0.6rem;
  margin-right: 0.25rem;
  vertical-align: middle;
}

.caption-overlay {
  color: #fff;
  background: #612771;
  transform: translateY(-8rem);
  width: 50%;
  padding: .75rem;
}

@media screen and (max-width: 767px) {
  .caption-overlay {
    width: 60%;
  }
}

hr {
  opacity: 0.35;
}

.listing {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}

.listing a {
  color: #fff;
}

.listing a:hover, .listing a:focus, .listing a:active {
  color: #fff;
  opacity: 0.75;
}

.purple-line {
  position: relative;
  margin-bottom: 3rem !important;
}

.purple-line:not(.sans-underline):before {
  content: '';
  position: absolute;
  width: 3.25rem;
  height: 4px;
  background-color: #8d48a0;
  left: 0;
  bottom: -1.25rem;
}

.font-family-inherit {
  font-family: inherit;
}

.text-lg {
  font-size: 1.25rem;
  font-weight: 600;
}

.bg-none {
  background-color: transparent !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-black {
  background-color: black !important;
}

.bg-navy1 {
  background-color: #053356 !important;
}

.bg-navy1 a {
  color: #A3D9FF;
}

.bg-navy1 a:hover, .bg-navy1 a:focus, .bg-navy1 a:active {
  color: #A3D9FF;
  opacity: .75;
  text-decoration: underline;
}

.bg-navy2 {
  background-color: #042640 !important;
}

.bg-navy3 {
  background-color: #0f212f !important;
}

.bg-navy3 a {
  color: #A3D9FF;
}

.bg-navy3 a:hover, .bg-navy3 a:focus, .bg-navy3 a:active {
  color: #A3D9FF;
  opacity: .75;
  text-decoration: underline;
}

.bg-navy4 {
  background-color: #122d42 !important;
}

.bg-gray1 {
  background-color: #ebeced !important;
}

.bg-gray1 a {
  color: #00649E;
}

.bg-gray1 a:hover, .bg-gray1 a:focus, .bg-gray1 a:active {
  color: #00649E;
  opacity: .85;
  text-decoration: underline;
}

.bg-gray2 {
  background-color: #b3bec7 !important;
}

.bg-gray3 {
  background-color: #8193a1 !important;
}

.bg-blue1 {
  background-color: #005c8f !important;
}

.bg-blue2 {
  background-color: #00a2ff !important;
}

.bg-purple1 {
  background-color: #612771 !important;
}

.bg-purple2 {
  background-color: #8d48a0 !important;
}

.bg-purple3 {
  background-color: #9b00c6 !important;
}

.bg-purple4 {
  background-color: #e278ff !important;
}

.bg-turquoise1 {
  background-color: #30869d !important;
}

.bg-turquoise1 svg {
  fill: #fff;
  stroke: #fff !important;
}

.bg-turquoise2 {
  background-color: #2d7284 !important;
}

.bg-turquoise2 svg {
  fill: #fff;
  stroke: #fff !important;
}

.bg-green1 {
  background-color: #a9ce4c !important;
}

.bg-green2 {
  background-color: #65dda8 !important;
}

.bg-orange1 {
  background-color: #ed9d23 !important;
}

.bg-pink1 {
  background-color: #e278ff !important;
}

.bg-red1 {
  background-color: #b15454 !important;
}

.bg-lightgray1 {
  background-color: #F4F6F6 !important;
}

.bg-lightgray2 {
  background-color: #dedfe1 !important;
}

.bg-lightgray3 {
  background-color: #ebedef !important;
}

.fill-white {
  fill: #fff !important;
}

.fill-black {
  fill: #0f212f !important;
}

.fill-blue1 {
  fill: #005c8f !important;
}

.fill-blue2 {
  fill: #00a2ff !important;
}

.fill-dark-blue {
  fill: #005C8F !important;
}

.text-white {
  color: #fff !important;
}

.text-black {
  color: #0f212f !important;
}

.text-gray1 {
  color: #ebeced !important;
}

.text-gray2 {
  color: #b3bec7 !important;
}

.text-gray3 {
  color: #8193a1 !important;
}

.text-navy1 {
  color: #053356 !important;
}

.text-navy2 {
  color: #042640 !important;
}

.text-navy3 {
  color: #0f212f !important;
}

.text-navy4 {
  color: #122d42 !important;
}

.text-blue1 {
  color: #005c8f !important;
}

.text-blue2 {
  color: #00a2ff !important;
}

.text-purple1 {
  color: #612771 !important;
}

.text-purple2 {
  color: #8d48a0 !important;
}

.text-purple3 {
  color: #9b00c6 !important;
}

.text-purple4 {
  color: #e278ff !important;
}

.text-turquoise1 {
  color: #30869d !important;
}

.text-turquoise2 {
  color: #2d7284 !important;
}

.text-turquoise2-light {
  color: #337F94 !important;
}

.text-green1 {
  color: #a9ce4c !important;
}

.text-green2 {
  color: #65dda8 !important;
}

.text-orange1 {
  color: #ed9d23 !important;
}

.text-pink1 {
  color: #e278ff !important;
}

.text-red1 {
  color: #b15454 !important;
}

.text-light {
  font-weight: 300 !important;
}

.text-regular {
  font-weight: 400 !important;
}

.text-medium {
  font-weight: 500 !important;
}

.text-semibold {
  font-weight: 600 !important;
}

.text-bold {
  font-weight: 700 !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.svg-right-shadow {
  filter: drop-shadow(0.4rem 0.4rem 0.5rem rgba(15, 33, 47, 0.45)) !important;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inline-block {
  display: inline-block !important;
}

.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.absolute-centered {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.right {
  float: right;
}

.no-content {
  content: none !important;
}

@media screen and (max-width: 991px) {
  .flex-column-reverse-md {
    display: flex;
    flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
  }
}

@media screen and (max-width: 1199px) {
  .hide-for-desktop-sm {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .hide-for-tablet {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .hide-for-tablet-and-up {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hide-for-phone {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .show-for-tablet {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .hide-for-desktop {
    display: none !important;
  }
}

.overflow-x-hidden {
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

.truncate {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.force-wrap {
  white-space: normal !important;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-word;
  word-break: break-word;
  -ms-hyphens: none;
  -moz-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}

@media screen and (max-width: 1199px) {
  .w-100-lg {
    width: 100%;
  }
}

.m-025 {
  margin: 0.25rem !important;
}

.m-05 {
  margin: 0.5rem !important;
}

.m-1 {
  margin: 1rem !important;
}

.m-125 {
  margin: 1.25rem !important;
}

.m-15 {
  margin: 1.5rem !important;
}

.m-175 {
  margin: 1.75rem !important;
}

.m-2 {
  margin: 2rem !important;
}

.m-225 {
  margin: 2.25rem !important;
}

.m-25 {
  margin: 2.5rem !important;
}

.m-275 {
  margin: 2.75rem !important;
}

.m-3 {
  margin: 3rem !important;
}

.m-325 {
  margin: 3.25rem !important;
}

.m-35 {
  margin: 3.5rem !important;
}

.m-375 {
  margin: 3.75rem !important;
}

.m-4 {
  margin: 4rem !important;
}

.mt-025 {
  margin-top: 0.25rem !important;
}

.mt-05 {
  margin-top: 0.5rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-125 {
  margin-top: 1.25rem !important;
}

.mt-15 {
  margin-top: 1.5rem !important;
}

.mt-175 {
  margin-top: 1.75rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-225 {
  margin-top: 2.25rem !important;
}

.mt-25 {
  margin-top: 2.5rem !important;
}

.mt-275 {
  margin-top: 2.75rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-325 {
  margin-top: 3.25rem !important;
}

.mt-35 {
  margin-top: 3.5rem !important;
}

.mt-375 {
  margin-top: 3.75rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mb-025 {
  margin-bottom: 0.25rem !important;
}

.mb-05 {
  margin-bottom: 0.5rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-125 {
  margin-bottom: 1.25rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.mb-175 {
  margin-bottom: 1.75rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-225 {
  margin-bottom: 2.25rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.mb-275 {
  margin-bottom: 2.75rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-325 {
  margin-bottom: 3.25rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.mb-375 {
  margin-bottom: 3.75rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.ml-025 {
  margin-left: 0.25rem !important;
}

.ml-05 {
  margin-left: 0.5rem !important;
}

.ml-1 {
  margin-left: 1rem !important;
}

.ml-125 {
  margin-left: 1.25rem !important;
}

.ml-15 {
  margin-left: 1.5rem !important;
}

.ml-175 {
  margin-left: 1.75rem !important;
}

.ml-2 {
  margin-left: 2rem !important;
}

.ml-225 {
  margin-left: 2.25rem !important;
}

.ml-25 {
  margin-left: 2.5rem !important;
}

.ml-275 {
  margin-left: 2.75rem !important;
}

.ml-3 {
  margin-left: 3rem !important;
}

.ml-325 {
  margin-left: 3.25rem !important;
}

.ml-35 {
  margin-left: 3.5rem !important;
}

.ml-375 {
  margin-left: 3.75rem !important;
}

.ml-4 {
  margin-left: 4rem !important;
}

.mr-025 {
  margin-right: 0.25rem !important;
}

.mr-05 {
  margin-right: 0.5rem !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.mr-125 {
  margin-right: 1.25rem !important;
}

.mr-15 {
  margin-right: 1.5rem !important;
}

.mr-175 {
  margin-right: 1.75rem !important;
}

.mr-2 {
  margin-right: 2rem !important;
}

.mr-225 {
  margin-right: 2.25rem !important;
}

.mr-25 {
  margin-right: 2.5rem !important;
}

.mr-275 {
  margin-right: 2.75rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.mr-325 {
  margin-right: 3.25rem !important;
}

.mr-35 {
  margin-right: 3.5rem !important;
}

.mr-375 {
  margin-right: 3.75rem !important;
}

.mr-4 {
  margin-right: 4rem !important;
}

.p-025 {
  padding: 0.25rem !important;
}

.p-05 {
  padding: 0.5rem !important;
}

.p-1 {
  padding: 1rem !important;
}

.p-125 {
  padding: 1.25rem !important;
}

.p-15 {
  padding: 1.5rem !important;
}

.p-175 {
  padding: 1.75rem !important;
}

.p-2 {
  padding: 2rem !important;
}

.p-225 {
  padding: 2.25rem !important;
}

.p-25 {
  padding: 2.5rem !important;
}

.p-275 {
  padding: 2.75rem !important;
}

.p-3 {
  padding: 3rem !important;
}

.p-325 {
  padding: 3.25rem !important;
}

.p-35 {
  padding: 3.5rem !important;
}

.p-375 {
  padding: 3.75rem !important;
}

.p-4 {
  padding: 4rem !important;
}

.pt-025 {
  padding-top: 0.25rem !important;
}

.pt-05 {
  padding-top: 0.5rem !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pt-125 {
  padding-top: 1.25rem !important;
}

.pt-15 {
  padding-top: 1.5rem !important;
}

.pt-175 {
  padding-top: 1.75rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pt-225 {
  padding-top: 2.25rem !important;
}

.pt-25 {
  padding-top: 2.5rem !important;
}

.pt-275 {
  padding-top: 2.75rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pt-325 {
  padding-top: 3.25rem !important;
}

.pt-35 {
  padding-top: 3.5rem !important;
}

.pt-375 {
  padding-top: 3.75rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.pb-025 {
  padding-bottom: 0.25rem !important;
}

.pb-05 {
  padding-bottom: 0.5rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pb-125 {
  padding-bottom: 1.25rem !important;
}

.pb-15 {
  padding-bottom: 1.5rem !important;
}

.pb-175 {
  padding-bottom: 1.75rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.pb-225 {
  padding-bottom: 2.25rem !important;
}

.pb-25 {
  padding-bottom: 2.5rem !important;
}

.pb-275 {
  padding-bottom: 2.75rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.pb-325 {
  padding-bottom: 3.25rem !important;
}

.pb-35 {
  padding-bottom: 3.5rem !important;
}

.pb-375 {
  padding-bottom: 3.75rem !important;
}

.pb-4 {
  padding-bottom: 4rem !important;
}

.pl-025 {
  padding-left: 0.25rem !important;
}

.pl-05 {
  padding-left: 0.5rem !important;
}

.pl-1 {
  padding-left: 1rem !important;
}

.pl-125 {
  padding-left: 1.25rem !important;
}

.pl-15 {
  padding-left: 1.5rem !important;
}

.pl-175 {
  padding-left: 1.75rem !important;
}

.pl-2 {
  padding-left: 2rem !important;
}

.pl-225 {
  padding-left: 2.25rem !important;
}

.pl-25 {
  padding-left: 2.5rem !important;
}

.pl-275 {
  padding-left: 2.75rem !important;
}

.pl-3 {
  padding-left: 3rem !important;
}

.pl-325 {
  padding-left: 3.25rem !important;
}

.pl-35 {
  padding-left: 3.5rem !important;
}

.pl-375 {
  padding-left: 3.75rem !important;
}

.pl-4 {
  padding-left: 4rem !important;
}

.pr-025 {
  padding-right: 0.25rem !important;
}

.pr-05 {
  padding-right: 0.5rem !important;
}

.pr-1 {
  padding-right: 1rem !important;
}

.pr-125 {
  padding-right: 1.25rem !important;
}

.pr-15 {
  padding-right: 1.5rem !important;
}

.pr-175 {
  padding-right: 1.75rem !important;
}

.pr-2 {
  padding-right: 2rem !important;
}

.pr-225 {
  padding-right: 2.25rem !important;
}

.pr-25 {
  padding-right: 2.5rem !important;
}

.pr-275 {
  padding-right: 2.75rem !important;
}

.pr-3 {
  padding-right: 3rem !important;
}

.pr-325 {
  padding-right: 3.25rem !important;
}

.pr-35 {
  padding-right: 3.5rem !important;
}

.pr-375 {
  padding-right: 3.75rem !important;
}

.pr-4 {
  padding-right: 4rem !important;
}

.pl-gutter {
  padding-left: 1.5rem !important;
}

.pr-gutter {
  padding-right: 1.5rem !important;
}

@media screen and (min-width: 1200px) {
  .p-0-lg {
    padding: 0 !important;
  }
  .pl-0-lg {
    padding-left: 0 !important;
  }
  .pr-0-lg {
    padding-right: 0 !important;
  }
  .ml-auto-lg {
    margin-left: auto !important;
  }
}

.pl-25 {
  padding-left: 2.5rem;
}

.pr-25 {
  padding-right: 2.5rem;
}

@media screen and (min-width: 992px) {
  .pl-0-md {
    padding-left: 0 !important;
  }
  .pr-0-md {
    padding-right: 0 !important;
  }
  .ml-auto-md {
    margin-left: auto !important;
  }
}

.m-auto {
  margin: auto;
}

.v-top {
  vertical-align: top !important;
}

.v-ttop {
  vertical-align: text-top !important;
}

.v-btm {
  vertical-align: bottom !important;
}

.v-tbtm {
  vertical-align: text-bottom !important;
}

.v-middle {
  vertical-align: middle !important;
}

.v-baseline {
  vertical-align: baseline !important;
}

.v-super {
  vertical-align: super !important;
}

.v-sub {
  vertical-align: sub !important;
}

.va0 {
  vertical-align: 0px !important;
}

.va1 {
  vertical-align: 1px !important;
}

.va2 {
  vertical-align: 2px !important;
}

.va3 {
  vertical-align: 3px !important;
}

.va4 {
  vertical-align: 4px !important;
}

.va5 {
  vertical-align: 5px !important;
}

.va-1 {
  vertical-align: -1px !important;
}

.va-2 {
  vertical-align: -2px !important;
}

.va-3 {
  vertical-align: -3px !important;
}

.va-4 {
  vertical-align: -4px !important;
}

.va-5 {
  vertical-align: -5px !important;
}

.va-6 {
  vertical-align: -6px !important;
}

.va-7 {
  vertical-align: -7px !important;
}

.va-8 {
  vertical-align: -8px !important;
}

.va-9 {
  vertical-align: -9px !important;
}

.va-10 {
  vertical-align: -10px !important;
}

.b-0 {
  border: 0 !important;
}

.bl-0 {
  border-left: 0 !important;
}

.bl-1 {
  border-left: 0.1rem solid rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 991px) {
  .bl-1 {
    border-left: 0 !important;
  }
}

.br-0 {
  border-right: 0 !important;
}

.bt-0 {
  border-top: 0 !important;
}

.bb-0 {
  border-bottom: 0 !important;
}

@media screen and (min-width: 992px) {
  .bl-md {
    border-left: solid 1px rgba(0, 0, 0, 0.15);
  }
  .br-md {
    border-right: solid 1px rgba(0, 0, 0, 0.15);
  }
  .bt-md {
    border-top: solid 1px rgba(0, 0, 0, 0.15);
  }
  .bb-md {
    border-bottom: solid 1px rgba(0, 0, 0, 0.15);
  }
}

[class^="spacer"] {
  display: block;
}

.spacer-015 {
  padding-bottom: 0.15rem;
}

.spacer-0175 {
  padding-bottom: 0.175rem;
}

.spacer-02 {
  padding-bottom: 0.2rem;
}

.spacer-025 {
  padding-bottom: 0.25rem;
}

.spacer-05 {
  padding-bottom: 0.5rem;
}

.spacer-075 {
  padding-bottom: 0.75rem;
}

.spacer-1 {
  padding-bottom: 1rem;
}

.spacer-125 {
  padding-bottom: 1.125rem;
}

.spacer-15 {
  padding-bottom: 1.15rem;
}

.spacer-175 {
  padding-bottom: 1.175rem;
}

.spacer-125 {
  padding-bottom: 1.25rem;
}

.spacer-15 {
  padding-bottom: 1.5rem;
}

.spacer-175 {
  padding-bottom: 1.75rem;
}

.spacer-2 {
  padding-bottom: 2rem;
}

.spacer-25 {
  padding-bottom: 2.5rem;
}

.spacer-3 {
  padding-bottom: 3rem;
}

.spacer-325 {
  padding-bottom: 3.25rem;
}

.spacer-35 {
  padding-bottom: 3.5rem;
}

.spacer-4 {
  padding-bottom: 4rem;
}

.spacer-5 {
  padding-bottom: 5rem;
}

.spacer-6 {
  padding-bottom: 6rem;
}

.spacer-7 {
  padding-bottom: 7rem;
}

.spacer-8 {
  padding-bottom: 8rem;
}

.spacer-9 {
  padding-bottom: 9rem;
}

.spacer-10 {
  padding-bottom: 10rem;
}

@media screen and (min-width: 992px) {
  .spacer-10-md {
    padding-bottom: 10rem;
  }
  .spacer-5-md {
    padding-bottom: 5rem;
  }
}

[class*="spacer-h"] {
  display: inline-block;
}

.spacer-h-005 {
  margin: 0 0.05rem;
}

.spacer-h-0075 {
  margin: 0 0.075rem;
}

.spacer-h-01 {
  margin: 0 0.1rem;
}

.spacer-h-0125 {
  margin: 0 0.125rem;
}

.spacer-h-0175 {
  margin: 0 0.175rem;
}

.spacer-h-025 {
  margin: 0 0.25rem;
}

.spacer-h-035 {
  margin: 0 0.35rem;
}

.spacer-h-05 {
  margin: 0 0.5rem;
}

.spacer-h-065 {
  margin: 0 0.65rem;
}

.spacer-h-075 {
  margin: 0 0.75rem;
}

.spacer-h-1 {
  margin: 0 1rem;
}

.spacer-h-125 {
  margin: 0 1.25rem;
}

.spacer-h-15 {
  margin: 0 1.5rem;
}

.min-height-15 {
  min-height: 15rem;
}

.min-height-25 {
  min-height: 25rem;
}

.min-height-35 {
  min-height: 35rem;
}

.h-fit-content {
  height: fit-content;
}

.h-26 {
  height: 26rem;
}

.text-uppercase {
  text-transform: uppercase !important;
  letter-spacing: 0.35px;
}

@media screen and (min-width: 768px) {
  .mb-0-show-for-tablet-and-up {
    margin-bottom: 0 !important;
  }
}

.no-decoration-after:after {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .pb-2-show-for-tablet-and-up {
    padding-bottom: 2rem !important;
  }
}
