@charset "UTF-8";
/**********************************

    Basic Elements

***********************************/
body, html {
  color: #212529;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  overflow: hidden;
}
@media screen and (min-width: 2000px) {
  body, html {
    font-size: 22px;
  }
}

h1 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8rem;
  margin: 8px 18px 0;
  padding: 8px 0;
  text-align: center;
}
@media screen and (min-width: 576px) {
  h1 {
    font-size: 1.8rem;
    line-height: 2.1rem;
  }
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 2.4rem;
    line-height: 2.5rem;
  }
}

h2 {
  background-color: #c2391b;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  padding: 10px 7%;
  position: relative;
  text-transform: uppercase;
  width: 100%;
}
@media screen and (min-width: 576px) {
  h2 {
    padding: 9px 5%;
  }
}
@media screen and (min-width: 768px) {
  h2 {
    padding: 14px 6%;
  }
}
@media screen and (min-width: 1200px) {
  h2 {
    font-size: 1.5rem;
  }
}
h2:before {
  background-image: url("../images/icons/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  content: "";
  display: none;
  height: 100%;
  left: 1%;
  position: absolute;
  top: 0;
  width: 4%;
}
@media screen and (min-width: 768px) {
  h2:before {
    display: block;
  }
}
@media screen and (min-width: 2000px) {
  h2:before {
    left: 2%;
    width: 2.5%;
  }
}

.activity h2 {
  background-color: #0B727B;
}
.activity h2:after {
  background-image: url("../images/icons/Cog.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  content: "";
  display: none;
  height: 64%;
  right: 1%;
  position: absolute;
  top: 18%;
  width: 4%;
}
@media screen and (min-width: 768px) {
  .activity h2:after {
    display: block;
  }
}
@media screen and (min-width: 2000px) {
  .activity h2:after {
    right: 2%;
    width: 2.5%;
  }
}

h3 {
  color: #0E406A;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 20px;
}
@media screen and (min-width: 576px) {
  h3 {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  h3 {
    font-size: 1.4rem;
  }
}

h3.style-h4 {
  color: #212529;
  font-size: 0.95em;
  line-height: 1.3em;
  margin: 24px 0;
}
@media screen and (min-width: 992px) {
  h3.style-h4 {
    font-size: 1.1em;
  }
}

h4 {
  color: #212529;
  font-size: 1.2rem;
  font-weight: 700;
}
h4 span {
  font-weight: 400;
}

h5 {
  font-size: 1.1em;
}

p {
  font-size: 0.9rem;
  margin: 22px 0;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 1rem;
  }
}

li {
  font-size: 0.9rem;
  margin: 8px 0;
}
@media screen and (min-width: 768px) {
  li {
    font-size: 1rem;
  }
}

a {
  transition: background 0.2s, color 0.2s;
}

button {
  background: #c2391b;
  border-radius: 12px;
  border: 0;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  margin-top: 16px;
  padding: 8px 28px;
  transition: filter 0.2s;
}
@media screen and (min-width: 768px) {
  button {
    font-size: 1rem;
  }
}
button:hover {
  filter: brightness(0.8);
}

.ada-element {
  left: -9999px;
  position: absolute;
}

/**********************************

    Intro screen 

***********************************/
#intro-screens {
  display: none;
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: 0.7s;
  width: 100%;
  z-index: 50;
}
#intro-screens.exhausted {
  opacity: 0;
  top: -100%;
}

.has-js #intro-screens {
  display: block;
}

#introduction {
  background: #0B727B;
  background-image: url("../images/images/welcome_back.jpg");
  background-position: center;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 52;
}
#introduction.acknowledged {
  opacity: 0;
  top: -100%;
  transition: 1s;
}
#introduction > div {
  background: rgba(11, 114, 123, 0.8);
  color: #fff;
  font-size: 0.85em;
  left: 0;
  height: 100%;
  overflow: auto;
  padding: 0 6%;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #introduction > div {
    background: rgba(11, 114, 123, 0.9);
    font-size: 1rem;
    left: 6%;
    padding: 0 4%;
    width: 78%;
  }
}
@media screen and (min-width: 992px) {
  #introduction > div {
    width: 74%;
  }
}
@media screen and (min-width: 1200px) {
  #introduction > div {
    padding: 0 5%;
    width: 64%;
  }
}
#introduction > div p {
  margin: 12px auto;
}
@media screen and (min-width: 768px) {
  #introduction > div p {
    margin: 20px auto;
  }
}
#introduction img {
  display: block;
  margin: 38px auto;
  max-width: 180px;
  width: 100%;
}
@media screen and (min-width: 576px) {
  #introduction img {
    max-width: 100%;
    width: 200px;
  }
}
@media screen and (min-width: 992px) {
  #introduction img {
    width: 260px;
  }
}
#introduction .img-hr img {
  display: inline-block;
  margin: 14px 3px;
  width: 32px;
}
@media screen and (min-width: 768px) {
  #introduction .img-hr img {
    margin: 16px 5px;
    width: 44px;
  }
}
#introduction button {
  width: 100%;
}
@media screen and (min-width: 576px) {
  #introduction button {
    width: 320px;
  }
}

#skiptocontent {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 2px 2px 8px 0 #000;
  color: #212529;
  font-size: 1.3rem;
  left: -9999px;
  padding: 6px 12px;
  position: absolute;
  top: -9999px;
}
#skiptocontent:focus {
  left: 8px;
  top: 8px;
}

#walkthrough {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

#walkthrough-cover {
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  height: 100%;
  margin-top: -40px;
  position: absolute;
  transition: 0.75s;
  width: 100%;
}
#walkthrough-cover:after {
  background: rgba(0, 0, 0, 0.6);
  content: "";
  cursor: pointer;
  display: none;
  height: 40px;
  position: absolute;
  top: 100%;
  width: 290px;
}
@media screen and (min-width: 992px) {
  #walkthrough-cover:after {
    display: block;
  }
}

#instruction {
  background: #c2391b;
  bottom: 60px;
  box-shadow: 0 8px 8px -4px #000;
  color: #fff;
  font-size: 0.85rem;
  left: 24px;
  position: absolute;
  right: auto;
  text-align: center;
  top: auto;
  transition: 0.75s;
  width: 220px;
}
@media screen and (min-width: 576px) {
  #instruction {
    font-size: 1rem;
    width: 300px;
  }
}
@media screen and (min-width: 992px) {
  #instruction {
    left: 340px;
  }
}
#instruction p {
  clear: both;
  display: none;
  margin: 0;
  padding: 16px 24px 12px;
}
#instruction p.showing {
  display: block;
}
#instruction .close-walkthrough {
  background: transparent;
  border-radius: 0;
  float: right;
  font-size: 2.4em;
  line-height: 1.2em;
  margin-top: 4px;
  padding: 3px 16px;
}
#instruction #got-instruction {
  background: transparent;
  font-weight: 700;
  margin-bottom: 14px;
}
#instruction img {
  bottom: 14px;
  left: 25px;
  position: absolute;
  top: auto;
  transition: 0.75s;
  width: 46px;
}
@media screen and (min-width: 576px) {
  #instruction img {
    width: 70px;
  }
}

.got1 #walkthrough-cover {
  margin-left: 0;
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .got1 #walkthrough-cover {
    margin-left: 290px;
  }
}
.got1 #instruction {
  left: 24px;
  bottom: auto;
  top: 64px;
}
@media screen and (min-width: 992px) {
  .got1 #instruction {
    left: 320px;
    top: 64px;
  }
}
.got1 #instruction img {
  transform: rotate(180deg) rotateY(180deg);
  top: 16px;
}
@media screen and (min-width: 992px) {
  .got1 #instruction img {
    transform: none;
    top: 24;
  }
}

.got2 #walkthrough-cover {
  margin-left: 0;
}
.got2 #instruction {
  left: auto;
  right: 3%;
  top: 76px;
}
.got2 #instruction img {
  bottom: auto;
  left: 100px;
  position: absolute;
  transform: rotate(180deg);
  top: 12px;
  width: 48px;
}
@media screen and (min-width: 576px) {
  .got2 #instruction img {
    left: 165px;
    width: 70px;
  }
}

/**********************************

    Left menu

***********************************/
#screen {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  transition: left 0.6s;
  width: 100%;
}

#menu {
  background-color: #fff;
  flex-shrink: 0;
  height: 100%;
  left: -230px;
  position: absolute;
  transition: left 0.6s, margin 0.6s;
  width: 230px;
  z-index: 1;
}
@media screen and (min-width: 576px) {
  #menu {
    left: -290px;
    width: 290px;
  }
}
@media screen and (min-width: 992px) {
  #menu {
    left: 0;
    position: relative;
  }
}
#menu > div {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}

.menu-hidden #menu {
  margin-left: -290px;
}

.contact-open #menu {
  margin-left: -290px;
}

.mobile-menu-open #menu {
  left: 0;
  z-index: 1;
}

#mobile-menu-close {
  background: #000;
  background: rgba(0, 0, 0, 0.36);
  border: 0;
  border-radius: 0;
  display: none;
  height: 100%;
  margin: 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}
#mobile-menu-close.animate {
  margin-left: 230px;
  transition: margin 0.6s;
}
@media screen and (min-width: 576px) {
  #mobile-menu-close.animate {
    margin-left: 290px;
  }
}
@media screen and (min-width: 992px) {
  #mobile-menu-close.animate {
    margin-left: 200px;
  }
}

#menu-top {
  padding: 16px 6% 14px;
  text-align: center;
}
@media screen and (min-width: 576px) {
  #menu-top {
    padding: 16px 10% 14px;
  }
}
#menu-top a {
  display: block;
  text-decoration: none;
}

.logo {
  display: block;
  margin: 0 auto;
  width: 120px;
}
@media screen and (min-width: 576px) {
  .logo {
    width: 160px;
  }
}

#meeting-title {
  color: #212529;
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3rem;
  margin: 8px 0 0;
}
@media screen and (min-width: 576px) {
  #meeting-title {
    font-size: 1.3rem;
    line-height: 1.6rem;
  }
}

#menu-bottom {
  display: flex;
  flex-direction: column-reverse;
  flex: 1 0;
}

#menu-options {
  font-size: 0.9rem;
  padding: 18px 6% 14px;
  text-align: center;
}
#menu-options > button {
  background: transparent;
  border-radius: 0;
  color: #212529;
  font-size: 0.9rem;
  margin: 0 0 4px;
  padding: 0;
  text-decoration: underline;
}
#menu-options > button:hover {
  color: #c2391b;
}

#translation-widget {
  display: none;
  width: 100%;
}
#translation-widget label {
  left: -9999px;
  position: absolute;
}
#translation-widget select {
  margin-bottom: 8px;
  width: 100%;
}

.has-js #translation-widget {
  display: block;
}

#google_translate_element {
  display: none;
}

#side-menu {
  background-color: #fff;
  border-width: 1px 0;
  flex-grow: 1;
  overflow-y: auto;
  padding: 0;
}
#side-menu button {
  background: #c2391b;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
  min-height: 36px;
  opacity: 0.9;
  padding: 9px 7px 9px 42px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  transition: 0.2s;
  width: 100%;
}
@media screen and (min-width: 576px) {
  #side-menu button {
    font-size: 0.9rem;
    line-height: 1.3rem;
  }
}
#side-menu button i {
  background-color: #0E406A;
  color: #fff;
  font-size: 0.85rem;
  height: 24px;
  left: 7px;
  line-height: 24px;
  position: absolute;
  text-align: center;
  top: 4px;
  width: 22px;
}
@media screen and (min-width: 576px) {
  #side-menu button i {
    top: 7px;
  }
}
#side-menu button span {
  display: block;
  line-height: 1.2em;
}
#side-menu button span:focus {
  border: 2px solid #212529;
  display: block;
}
#side-menu button:hover {
  background: #811e08;
  opacity: 1;
}
#side-menu button[aria-selected=true] {
  background-color: #811e08;
}
#side-menu button[aria-selected=true] i {
  background-color: #000;
}
#side-menu button.activity-tab {
  background: #0B727B;
}
#side-menu button.activity-tab:hover {
  background: #003d42;
  opacity: 1;
}
#side-menu button.activity-tab[aria-selected=true] {
  background-color: #003d42;
}

#menu-toggle {
  display: none;
  font-size: 0.85rem;
  left: 100%;
  margin-left: 5%;
  top: 9px;
  position: absolute;
  transition: margin 0.6s;
  z-index: 1;
}
@media screen and (min-width: 576px) {
  #menu-toggle {
    margin-left: 7%;
  }
}
@media screen and (min-width: 992px) {
  #menu-toggle {
    font-size: 1rem;
    margin-left: 12%;
    top: 18px;
  }
}
@media screen and (min-width: 2000px) {
  #menu-toggle {
    font-size: 0.9rem;
  }
}
#menu-toggle span {
  background-color: #fff;
  display: block;
  height: 2px;
  margin: 4px auto;
  transition: margin 0.2s, transform 0.2s;
  width: 22px;
}

.has-js #menu-toggle {
  display: block;
}

#menu-toggle.not-on-desktop {
  display: block;
}
@media screen and (min-width: 992px) {
  #menu-toggle.not-on-desktop {
    display: none;
  }
}

.menu-open #menu-toggle {
  margin-left: 10%;
}
.menu-open #menu-toggle span:first-of-type {
  transform: rotate(-25deg);
  margin-top: 6px;
  width: 16px;
}
.menu-open #menu-toggle span:last-of-type {
  transform: rotate(25deg);
  margin-top: -6px;
  width: 16px;
}
.menu-open #menu-toggle span:nth-of-type(2) {
  opacity: 0;
}

.mobile-menu-open #menu-toggle {
  margin-left: 4%;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .mobile-menu-open #menu-toggle {
    margin-left: 5%;
  }
}
.mobile-menu-open #menu-toggle span:first-of-type {
  transform: rotate(-25deg);
  margin-top: 6px;
  width: 16px;
}
.mobile-menu-open #menu-toggle span:last-of-type {
  transform: rotate(25deg);
  margin-top: -6px;
  width: 16px;
}
.mobile-menu-open #menu-toggle span:nth-of-type(2) {
  opacity: 0;
}

.hdr-modal-showing #menu-toggle {
  z-index: -1;
}

.meeting-button {
  background-color: #c2391b;
  border-radius: 10px;
  box-shadow: 0 3px 8px -2px #222;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  height: 50px;
  margin: 0;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
.meeting-button:after {
  background: rgba(255, 255, 255, 0.2);
  content: "";
  height: 100%;
  left: -100px;
  position: absolute;
  top: 0;
  transform: skewX(-22deg);
  transition: 0s;
  width: 90px;
}
.meeting-button:hover:after {
  left: 170px;
  transition: left 1s;
}

/* Modal Window */
.hdr-modal-showing {
  overflow: hidden;
}

.hdr-launch-modal {
  display: none;
}

.has-hdr-modals .hdr-launch-modal {
  color: #212529;
  display: block;
}
.has-hdr-modals .hdr-launch-modal:hover {
  color: #c2391b;
}

.hdr-close-modal {
  display: none;
}

.hdr-modal-window {
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: -100%;
  transition: 0s;
  width: 100%;
  z-index: 1000;
}
.hdr-modal-window.showing {
  top: 0;
  transition: top 1s;
}
.hdr-modal-window .hdr-close-modal span {
  left: -9999px;
  position: absolute;
}
.hdr-modal-window > .hdr-close-modal {
  background-color: rgba(0, 0, 0, 0.75);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: block;
  height: 100%;
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.hdr-modal-window .hdr-modal-title {
  margin: 24px 20px 0 0;
}
@media screen and (min-width: 768px) {
  .hdr-modal-window .hdr-modal-title {
    margin: 36px 28px 6px 0;
  }
}
.hdr-modal-window :focus {
  border-radius: 2px;
  outline: 2px groove #eee;
}
.hdr-modal-window > div {
  background-color: #fff;
  box-shadow: 4px 13px 28px 0 #111;
  left: 50%;
  max-height: 82%;
  overflow: auto;
  padding: 0 24px 6px;
  position: absolute;
  top: 8%;
  transform: translateX(-50%);
  width: 84%;
}
@media screen and (min-width: 768px) {
  .hdr-modal-window > div {
    max-height: 52%;
    padding: 0 3% 22px;
    top: 24%;
    width: 54%;
  }
}
.hdr-modal-window > div .hdr-close-modal {
  background: transparent;
  border: 0;
  color: #212529;
  font-size: 2em;
  line-height: 0.6em;
  padding: 0 5px 3px;
  position: absolute;
  right: 10px;
  top: 6px;
}
@media screen and (min-width: 768px) {
  .hdr-modal-window > div .hdr-close-modal {
    font-size: 3em;
  }
}
.hdr-modal-window > div .hdr-close-modal:hover {
  color: #666;
}
.hdr-modal-window img {
  width: 100%;
}

.hdr-tabs .hdr-launch-modal {
  display: inline-block;
}
.hdr-tabs .hdr-modal-window > .hdr-close-modal:after {
  background: transparent;
  border: 0;
  color: #fff;
  content: "x";
  font-size: 2em;
  line-height: 0.6em;
  padding: 0 5px 3px;
  position: fixed;
  right: 12px;
  top: 8px;
}
.hdr-tabs .hdr-modal-window > div {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .hdr-tabs .hdr-modal-window > div {
    max-height: 80%;
    max-width: 1000px;
    top: 10%;
    width: 88%;
  }
}
/**********************************

    Slide Specific

***********************************/
#mainArea {
  background-color: #c2391b;
  background-image: url("../images/images/welcome_back.jpg");
  background-size: cover;
  background-position: center;
  overflow: auto;
  padding-bottom: 32px;
  position: relative;
  transition: left 0.6s, margin 0.6s, width 0.6s;
  width: 100%;
}

.has-js #mainArea {
  padding-bottom: 0;
}

.menu-hidden #mainArea {
  margin-left: 0;
  width: 100%;
}

.contact-open #mainArea {
  margin-left: -270px;
}
@media screen and (min-width: 576px) {
  .contact-open #mainArea {
    margin-left: -390px;
  }
}

#slides {
  padding: 0;
  position: relative;
  transition: left 0.6s, margin 0.6s;
  top: 24px;
  width: 100%;
}

.has-js #slides {
  bottom: 54px;
  position: absolute;
  top: 70px;
}
@media screen and (min-width: 992px) {
  .has-js #slides {
    bottom: 68px;
    top: 88px;
  }
}

.slide {
  background-color: #fff;
  background-image: url("../images/images/pagebackganrish.jpg");
  background-size: cover;
  background-position: bottom right;
  box-shadow: 0 8px 15px -4px #000;
  overflow: auto;
  padding: 0;
  width: 96%;
}
.slide img {
  max-width: 100%;
}
.slide .row {
  --bs-gutter-x: 4.5%;
}
.slide .row > div {
  margin-top: 16px;
  margin-bottom: 16px;
}

.has-js .slide {
  display: none;
  height: 100%;
  margin: 0;
  margin-left: -100%;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  transition: 0s;
}

.slide.showing {
  margin-left: 2%;
  margin-top: 0;
  opacity: 1;
  transition: margin-left 0s, margin-top 0.8s, opacity 0.8s;
}

.slide[aria-hidden=false] {
  display: block;
}

.slide-body {
  padding: 10px 7% 14px;
}
@media screen and (min-width: 576px) {
  .slide-body {
    padding: 16px 5%;
  }
}
@media screen and (min-width: 768px) {
  .slide-body {
    padding: 20px 6% 28px;
  }
}
@media screen and (min-width: 2000px) {
  .slide-body {
    padding: 58px 6% 82px;
  }
}

.big-img {
  border: 1px solid #aaa;
  overflow: auto;
  padding: 14px 18px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .big-img {
    border: 0;
    padding: 0;
  }
}
.big-img img {
  max-width: 8000%;
  width: 768px;
}
@media screen and (min-width: 768px) {
  .big-img img {
    width: 100%;
  }
}

/* Lightbox */
.hdr-lightbox img {
  width: 100%;
}

.hdr-lightbox a {
  display: block;
  padding: 0;
}

.hdr-lightbox > button {
  background-color: rgba(0, 0, 0, 0.75);
  border: 0;
  cursor: pointer;
  display: none;
  height: 0;
  left: -9999px;
  margin: 0;
  position: absolute;
  top: 0;
  transition: 0s;
  width: 100%;
}

.hdr-lightbox button span {
  left: -9999px;
  position: absolute;
}

.hdr-lightbox > div {
  top: 80px;
}

.hdr-lightbox > div .hdr-close-lightbox {
  background: 0;
  border: 0;
  font-size: 3em;
  display: none;
  line-height: 0.6em;
  padding: 6px 8px;
  position: fixed;
  right: 14px;
  top: 6px;
}

.showing-hdr-lightbox {
  overflow: hidden;
}

.hdr-lightbox.enhanced {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5555;
}

.hdr-lightbox.enhanced > button {
  display: block;
  height: 100%;
  left: 0;
  transition: height 0.6s, left 0s;
}

.hdr-lightbox.enhanced > div {
  background-color: #fff;
  border: 1px solid #333;
  box-shadow: 4px 13px 28px 0 #111;
  left: 6%;
  margin: 0;
  max-height: 80%;
  overflow: auto;
  position: absolute;
  top: 40px;
  transition: 0.8s;
  width: 86%;
}

.hdr-lightbox.enhanced > div .hdr-close-lightbox {
  display: block;
}

.hdr-lightbox.enhanced > div .hdr-close-lightbox:focus {
  border: 1px solid #aaa;
  color: #aaa;
}

@media screen and (max-width: 992px) {
  .hdr-lightbox > div .hdr-close-lightbox {
    font-size: 2em;
    right: 6px;
    top: 2px;
  }
  .hdr-lightbox.enhanced img {
    max-width: 555%;
    width: 992px;
  }
}
.subheader {
  color: #0E406A;
  font-size: 1.1em;
  font-weight: 700;
}

#funding-sources {
  background: #E9F3F4;
  padding: 34px 32px 6px;
  text-align: center;
}
#funding-sources p {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 4px;
}
@media screen and (min-width: 576px) {
  #funding-sources p {
    font-size: 1.1em;
  }
}
#funding-sources img[src*="car.png"] {
  max-width: 250px;
  width: 100%;
}
#funding-sources .funds {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
#funding-sources .funds li {
  width: 100%;
}
@media screen and (min-width: 576px) {
  #funding-sources .funds li {
    width: 47%;
  }
}
#funding-sources .funds li > img {
  margin: 12px 0;
}
@media screen and (max-width: 576px) {
  #funding-sources .funds li:last-of-type > img:first-of-type {
    display: none;
  }
}
#funding-sources .funds div img {
  height: 110px;
}
#funding-sources .funds span {
  display: block;
  padding: 16px 0;
}
#funding-sources .funds li:first-of-type div {
  position: relative;
}
#funding-sources .funds li:first-of-type div:after {
  content: "← NDDOT →";
  font-weight: 700;
  left: 100%;
  margin-left: 6%;
  position: absolute;
  top: 80%;
  transform: translateX(-50%);
  width: 200px;
}
@media screen and (max-width: 1520px) {
  #funding-sources .funds li:first-of-type div:after {
    font-size: 0.85em;
    top: 90%;
  }
}
@media screen and (max-width: 1300px) {
  #funding-sources .funds li:first-of-type div:after {
    content: "(NDDOT)";
    display: block;
    margin: 3px 0 0;
    position: static;
    transform: none;
    width: auto;
  }
}
#funding-sources .funds li:last-of-type div:after {
  content: "(NDDOT)";
  display: block;
  font-size: 0.85em;
  font-weight: 700;
  margin: 3px 0 0;
  position: static;
  transform: none;
  width: auto;
}
@media screen and (min-width: 1300px) {
  #funding-sources .funds li:last-of-type div:after {
    display: none;
  }
}
#funding-sources .funds .funded {
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}
#funding-sources .funds .funded li {
  background: #fce8e0;
  color: #c2391b;
  font-weight: 700;
  line-height: 1.3em;
  padding: 16px 0;
  width: 100%;
}
@media screen and (max-width: 1540px) {
  #funding-sources .funds .funded li {
    padding: 14px 0;
  }
}
#funding-sources .funds .funded li div {
  display: inline-block;
  vertical-align: middle;
  width: 95%;
}
#funding-sources .funds .funded li :before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
#funding-sources .funds .funded li span {
  display: block;
  padding: 4px 8px 0;
}
#funding-sources .funds li:last-of-type .funded li {
  background: #cfd9e1;
  color: #0e406a;
}

#services-provided {
  list-style: none;
  padding: 0;
}
#services-provided li {
  align-items: center;
  display: flex;
  font-weight: 700;
  gap: 16px;
  margin-bottom: 26px;
}
#services-provided li img {
  width: 46px;
}

#monthly-costs {
  margin-bottom: 26px;
}
#monthly-costs div {
  margin-bottom: 14px;
  padding-left: 46px;
  position: relative;
}
#monthly-costs span {
  background: #E6F1F2;
  border-radius: 50%;
  color: #0B727B;
  font-weight: 700;
  height: 26px;
  left: 0;
  line-height: 26px;
  position: absolute;
  text-align: center;
  width: 26px;
}
#monthly-costs select {
  border-color: #0B727B;
  display: block;
  margin-top: 4px;
  max-width: 100%;
  min-width: 100px;
  padding: 2px 4px;
}

#monthly-payments {
  align-items: top;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#monthly-payments div {
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  justify-content: flex-end;
  margin: 6px 0;
  width: 100%;
}
@media screen and (min-width: 576px) {
  #monthly-payments div {
    width: 31%;
  }
}
#monthly-payments h5 {
  font-size: 1em;
}
#monthly-payments span {
  background: #E6F1F2;
  color: #0B727B;
  font-size: 1.2em;
  font-weight: 700;
  padding: 3px 9px;
}
#monthly-payments #federal-taxes {
  background: #F5D9CE;
  color: #c2391b;
}

#how-it-compares > div {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 12px 0;
}
@media screen and (min-width: 576px) {
  #how-it-compares > div {
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 768px) {
  #how-it-compares > div {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1200px) {
  #how-it-compares > div {
    flex-wrap: nowrap;
  }
}
#how-it-compares > div h5 {
  flex-shrink: 0;
  font-size: 0.95em;
  margin: 0 12px 0 0;
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 576px) {
  #how-it-compares > div h5 {
    text-align: right;
    width: 168px;
  }
}
@media screen and (min-width: 768px) {
  #how-it-compares > div h5 {
    text-align: left;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  #how-it-compares > div h5 {
    text-align: right;
    width: 168px;
  }
}
#how-it-compares > div span {
  font-size: 1.2em;
  font-weight: 700;
}
#how-it-compares > div > div > div {
  background: #00A0DD;
  display: inline-block;
  flex-shrink: 0;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
  width: 160px;
}
#how-it-compares > div:nth-of-type(2) > div > div {
  background: #70974B;
  width: 152px;
}
#how-it-compares > div:nth-of-type(3) > div > div {
  background: #A8353A;
  width: 114px;
}
#how-it-compares > div:nth-of-type(4) > div > div {
  background: #FAA21B;
  width: 71px;
}
#how-it-compares > div:nth-of-type(5) span {
  color: #0B727B;
}
#how-it-compares > div:nth-of-type(5) > div > div {
  background: #087582;
  transition: width 0.6s;
  width: 61px;
}
#how-it-compares + small {
  display: block;
  line-height: 1.3em;
  margin-top: 24px;
}

.jf-activity {
  margin-top: 32px;
}
.jf-activity h3 {
  align-items: center;
  background: #0B727B;
  border-radius: 12px 12px 0 0;
  color: #fff;
  display: flex;
  font-size: 1.1em;
  gap: 12px;
  margin: 0;
  padding: 8px 14px;
  text-transform: uppercase;
}
.jf-activity h3 img {
  height: 28px;
}
.jf-activity div {
  background: #E9F3F4;
  border-radius: 0 0 12px 12px;
  padding: 0 5%;
}
.jf-activity.no-header div {
  border-radius: 12px;
}

.cost-per {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 94%;
}
.cost-per li {
  color: #028BC0;
  font-size: 0.9em;
  font-weight: 700;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .cost-per li {
    width: 47%;
  }
}
@media screen and (min-width: 768px) {
  .cost-per li {
    width: 18%;
  }
}
@media screen and (min-width: 1200px) {
  .cost-per li {
    font-size: 1em;
  }
}
.cost-per li h3 {
  color: #028BC0;
  font-size: 1em;
  margin: 4px 0 0;
}
@media screen and (min-width: 1200px) {
  .cost-per li h3 {
    font-size: 1.1em;
  }
}
.cost-per li strong {
  font-size: 1.4em;
}
.cost-per li span {
  display: block;
  line-height: 1.3em;
}
.cost-per li:nth-of-type(2) {
  color: #0B727B;
}
.cost-per li:nth-of-type(2) h3 {
  color: #0B727B;
}
.cost-per li:nth-of-type(3) {
  color: #6A8F44;
}
.cost-per li:nth-of-type(3) h3 {
  color: #6A8F44;
}
.cost-per li:nth-of-type(4) {
  color: #d24620;
}
.cost-per li:nth-of-type(4) h3 {
  color: #d24620;
}
.cost-per li:nth-of-type(5) {
  color: #A73439;
}
.cost-per li:nth-of-type(5) h3 {
  color: #A73439;
}

#per-projects.cost-per li:nth-of-type(3) {
  color: #A73439;
}
#per-projects.cost-per li:nth-of-type(3) h3 {
  color: #A73439;
}
#per-projects.cost-per li:nth-of-type(4) {
  color: #6A8F44;
}
#per-projects.cost-per li:nth-of-type(4) h3 {
  color: #6A8F44;
}

#transpo-cost {
  color: #7a6e66;
  font-weight: 400;
  text-align: center;
}
#transpo-cost strong {
  font-weight: 700;
}

#per-mile h3 {
  border: 5px solid #000;
  border-width: 5px 0;
  margin: 34px auto;
  padding: 12px 0;
  position: relative;
  text-align: center;
  width: 94%;
}
#per-mile h3 span {
  background: #fff;
  display: inline-block;
  padding: 0 28px;
  position: relative;
}
#per-mile h3:before {
  border-bottom: 5px dashed #FF9F00;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

#funding-future {
  justify-content: space-between;
}
#funding-future div {
  border: 1px solid #E9F3F4;
  border-radius: 12px;
  padding-top: 20px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  #funding-future div {
    width: 31.5%;
  }
}

#funding-future-act .jf-activity {
  margin-top: 0;
}
#funding-future-act > div:last-of-type img {
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  width: 100%;
}

.nd-btn {
  background: #0B727B;
  border-radius: 8px;
  box-shadow: 0 3px 8px -4px #333;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  margin: 12px 0;
  padding: 10px 18px;
  text-decoration: none !important;
}

#investment-prefs {
  background: #E9F3F4;
  border-radius: 12px;
  box-shadow: 0 3px 8px -4px #555;
  font-size: 0.9em;
  margin: 18px 0 48px;
  padding: 24px 16px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #investment-prefs {
    padding: 38px 36px;
  }
}
@media screen and (min-width: 1200px) {
  #investment-prefs {
    font-size: 1em;
  }
}
#investment-prefs small {
  display: block;
  font-style: italic;
  margin-bottom: 18px;
}
#investment-prefs h4 {
  color: #0E406A;
  font-size: 1.4em;
  margin-bottom: 6px;
}
@media screen and (min-width: 576px) {
  #investment-prefs h4 {
    font-size: 1.8em;
  }
}
#investment-prefs h4 + p {
  margin: 6px 0 30px;
}
#investment-prefs hr {
  border: 1px dashed #000;
  margin-bottom: 23px;
}

#total-payment {
  display: block;
  gap: 18px;
  margin-bottom: 8px;
}
@media screen and (min-width: 576px) {
  #total-payment {
    display: flex;
  }
}

#current-subtotal {
  background: #0A3B36;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  height: 58px;
  margin-bottom: 4px;
  position: relative;
  width: 100%;
}
#current-subtotal span {
  opacity: 0;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
#current-subtotal div {
  background-image: linear-gradient(to right, #0A8994, #1DC5D4);
  border: 8px solid #0a3b36;
  border-radius: 8px;
  height: 100%;
  position: relative;
  transition: width 0.4s;
  width: 15%;
}
#current-subtotal div span {
  left: 10px;
  opacity: 0;
  right: auto;
}

#monthly-payment {
  flex-shrink: 0;
}
#monthly-payment strong {
  color: #0B727B;
  display: block;
}
#monthly-payment.over strong {
  color: #c2391b;
}

.panel-title {
  align-items: center;
  color: #0E406A;
  display: flex;
  gap: 14px;
}
.panel-title h4 {
  color: #0E406A;
  font-size: 1.3em;
  margin: 0;
}
@media screen and (min-width: 1200px) {
  .panel-title h4 {
    font-size: 1.5em;
  }
}
.panel-title img {
  height: 50px;
}
@media screen and (min-width: 1200px) {
  .panel-title img {
    height: 70px;
  }
}

.cost-explanations {
  margin-top: 74px;
}
@media screen and (min-width: 768px) {
  .cost-explanations {
    margin: 0;
  }
}
.cost-explanations > div {
  display: none;
  gap: 18px;
}
.cost-explanations > div.active {
  display: block;
  opacity: 0.2;
  transition: opacity 0.4s;
}
@media screen and (min-width: 768px) {
  .cost-explanations > div.active {
    display: flex;
  }
}
.cost-explanations > div.animate {
  opacity: 1;
}
.cost-explanations > div p {
  background: #D5E7E9;
  border-radius: 10px;
  color: #0E406A;
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.4em;
  margin: 5px 0;
  padding: 11px 19px;
}
@media screen and (min-width: 768px) {
  .cost-explanations > div p {
    margin: 26px 0;
  }
}
@media screen and (min-width: 1200px) {
  .cost-explanations > div p {
    font-size: 1em;
  }
}
@media screen and (min-width: 2000px) {
  .cost-explanations > div p {
    margin-top: 48px;
  }
}
.cost-explanations > div p span {
  display: block;
  font-size: 1.4em;
}
.cost-explanations > div p:last-of-type {
  width: 100%;
}
.cost-explanations > div p em {
  display: block;
  font-size: 0.9em;
  line-height: 1.2em;
  margin-top: 12px;
}

/* Tabs */
.hdr-tabs {
  margin: 0;
  padding-bottom: 74px;
  position: relative;
}
@media screen and (min-width: 576px) {
  .hdr-tabs {
    padding-bottom: 94px;
  }
}

.hdr-tabs .hdr-tabtitle {
  font-size: 1.6em;
  margin-bottom: 16px;
}

.hdr-tabs .hdr-tablist {
  display: none;
}

.hdr-tabs.has-js .hdr-tablist {
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 24px;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .hdr-tabs.has-js .hdr-tablist {
    margin: 0;
  }
}

.hdr-tabs .hdr-tablist {
  list-style-type: none;
  margin: 0px 4px;
}

.hdr-tabs .hdr-tab {
  background: #454E4E;
  border-radius: 26px;
  color: #333;
  font-weight: 700;
  margin: 8px 0;
  padding: 8px 14px;
  position: relative;
  transition: background 0.3s;
  width: 18%;
  z-index: 1;
}
@media screen and (min-width: 576px) {
  .hdr-tabs .hdr-tab {
    margin: 3px 0 -1px;
    padding: 6px 12px;
    width: 8%;
  }
}

.hdr-tabs .hdr-tab span {
  background: #454E4E;
  border-radius: 12px;
  bottom: 100%;
  color: #fff;
  font-size: 0.85em;
  left: -9999px;
  margin-bottom: 18px;
  opacity: 0.4;
  padding: 10px 14px;
  position: absolute;
  transform: translateX(-50%);
  width: 160px;
}
.hdr-tabs .hdr-tab span:after {
  border: 12px solid transparent;
  border-top-color: #454E4E;
  content: "";
  left: 50%;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
}

.hdr-tabs .hdr-tab:hover {
  background-color: #828888;
  filter: none;
}
.hdr-tabs .hdr-tab:hover span {
  left: 50%;
  opacity: 1;
  transition: left 0s, opacity 0.25s;
  z-index: 10;
}

.hdr-tabs .hdr-tab[aria-selected=true] {
  background-color: #0B727B;
  border-bottom: 1px solid #ddd;
  padding-top: 6px;
}

.hdr-tabs .hdr-tabpanel {
  border-radius: 4px;
  clear: both;
  margin-bottom: 12px;
}

.hdr-tabs.has-js .hdr-tabpanel {
  display: none;
  margin-bottom: 0;
}

.hdr-tabs.has-js .hdr-tabpanel[aria-hidden=false] {
  display: block;
  opacity: 0;
}

.hdr-tabs.has-js .hdr-tabpanel[aria-hidden=false].fade-in {
  opacity: 1;
  transition: opacity 0.4s;
}

#pref-buttons {
  display: block;
  left: 0;
  margin-top: 28px;
  padding: 0 36px;
  width: 100%;
}
@media screen and (min-width: 576px) {
  #pref-buttons {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-top: -75px;
    position: absolute;
  }
}
@media screen and (min-width: 576px) {
  #pref-buttons.has-no-previous {
    justify-content: flex-end;
  }
}
#pref-buttons button {
  background: #0B727B;
  border-radius: 80px;
  font-size: 0.9em;
  line-height: 1.2em;
  opacity: 1;
  padding: 6px 20px;
  position: relative;
  transition: filter 0.3s, opacity 0.4s;
  display: block;
  margin: 12px auto;
}
@media screen and (min-width: 576px) {
  #pref-buttons button {
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  #pref-buttons button {
    font-size: 1em;
  }
}
#pref-buttons button.fadeOut {
  display: none;
}
#pref-buttons > span {
  display: none;
  font-weight: 700;
}
#pref-buttons .prev img {
  margin-right: 14px;
  transform: rotate(180deg);
}
#pref-buttons .next img {
  margin-left: 14px;
}
#pref-buttons .next.submit-inv {
  background: #FAB036;
  color: #212529;
}
#pref-buttons .next.submit-inv img {
  display: none;
}
#pref-buttons.budget-submitted .submit-inv {
  display: none;
}
#pref-buttons.budget-submitted .next.submit-inv + span {
  display: block;
  text-align: center;
}
.inv-slider {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.inv-slider {
  background-color: #0E406A;
  border-radius: 68px;
  box-shadow: 0 0 8px 0 #aaa;
  height: 14px;
  margin: 22px auto 44px;
  position: relative;
}

.inv-slider > span {
  background-color: #fff;
  border: 1px solid #0E406A;
  border-radius: 50%;
  cursor: pointer;
  height: 32px;
  left: 10%;
  margin-left: 0px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
}

.inv-slider > span:nth-of-type(2) {
  left: 35%;
}

.inv-slider > span:nth-of-type(3) {
  left: 58%;
}

.inv-slider > span:nth-of-type(4) {
  left: 84%;
}

.inv-slider > span > span {
  top: 100%;
  color: #212529;
  font-weight: 700;
  left: 50%;
  line-height: 1.1em;
  margin-top: 9px;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
}

.inv-slider > span > span.ada-element {
  bottom: auto;
  left: -9999px;
  position: absolute;
}

.inv-slider > button {
  background-color: #71984A;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  height: 26px;
  left: 10%;
  margin-left: 3px;
  position: absolute;
  transform: translateY(-50%);
  transition: background-color 0.2s;
  width: 26px;
  margin-top: 0;
  padding: 0;
  top: 50%;
}

.inv-slider.sliding > button {
  background-color: #0f7f42;
}

#investment-sliders .outcomes {
  padding-right: 0;
}

#investment-sliders .outcomes p {
  background-color: #fff;
  box-shadow: 0 0 8px 0 #aaa;
  color: #fff;
  display: none;
  line-height: 1.2em;
  margin: 0;
  padding: 7px 14px;
  transition: color 0.4s;
}

#investment-sliders .outcomes p.active {
  color: #fff;
  display: block;
}

#investment-sliders .outcomes p.active.animate {
  color: #71984A;
}

#final-budget {
  display: block;
  gap: 18px;
  margin-bottom: 24px;
}
@media screen and (min-width: 1200px) {
  #final-budget {
    display: flex;
  }
}
#final-budget .budget-temp {
  background: #0A3B36;
  border-radius: 8px;
  position: relative;
}
#final-budget .budget-temp h4 {
  bottom: 10px;
  color: #fff;
  font-size: 1em;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 1;
}
#final-budget .budget-temp div {
  height: 190px;
  margin-bottom: 18px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 576px) {
  #final-budget .budget-temp div {
    height: 160px;
  }
}
@media screen and (min-width: 1200px) {
  #final-budget .budget-temp div {
    height: 100%;
    margin: 0;
    width: 240px;
  }
}
#final-budget .budget-temp div p {
  background-image: linear-gradient(#CE4308, #8D3009);
  border: 8px solid #0a3b36;
  border-radius: 8px;
  bottom: 0;
  color: #fff;
  height: 100%;
  line-height: 1.3em;
  margin: 0;
  padding: 14px 10px;
  position: absolute;
  text-align: center;
  width: 100%;
}
#final-budget .budget-temp div p img {
  display: block;
  height: 20px;
  margin: 0 auto 8px;
}
@media screen and (min-width: 1200px) {
  #final-budget .budget-temp div p img {
    height: 30px;
  }
}
@media screen and (min-width: 1200px) {
  #final-budget .budget-temp div p {
    line-height: 1.4em;
  }
}
#final-budget .budget-temp div p strong {
  display: block;
  font-size: 1.3em;
  margin-top: 3px;
}
@media screen and (min-width: 1200px) {
  #final-budget .budget-temp div p strong {
    font-size: 1.6em;
  }
}
#final-budget .budget-temp div:last-of-type {
  display: none;
}
#final-budget .budget-temp div:last-of-type p {
  background-image: linear-gradient(#71984A, #136C63);
  height: 100%;
}
@media screen and (min-width: 1200px) {
  #final-budget .budget-temp div:last-of-type p {
    height: 80%;
  }
}
#final-budget h5 {
  align-items: center;
  display: block;
  font-size: 1.1em;
  font-weight: 700;
  gap: 14px;
  margin-bottom: 6px;
  text-align: center;
}
@media screen and (min-width: 576px) {
  #final-budget h5 {
    display: flex;
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  #final-budget h5 {
    font-size: 1.3em;
  }
}
#final-budget h5 span {
  background: #D5E7E9;
  border-radius: 8px;
  color: #A73439;
  display: block;
  font-size: 1.1em;
  margin-top: 4px;
  padding: 6px 10px;
}
@media screen and (min-width: 576px) {
  #final-budget h5 span {
    margin: 0;
  }
}
#final-budget h5 + p {
  margin: 4px 0 12px;
}
#final-budget #back-to-preferences {
  background: #0B727B;
  border-radius: 80px;
  font-size: 0.9em;
  line-height: 1.2em;
  margin-bottom: 22px;
  opacity: 1;
  padding: 6px 20px;
  position: relative;
  transition: filter 0.3s, opacity 0.4s;
  display: block;
}
@media screen and (min-width: 1200px) {
  #final-budget #back-to-preferences {
    font-size: 1em;
  }
}
#final-budget #back-to-preferences.fadeOut {
  cursor: default;
  opacity: 0;
}
#final-budget #back-to-preferences img {
  margin-right: 14px;
  transform: rotate(180deg);
}
#final-budget .final-result {
  align-items: center;
  display: block;
  gap: 18px;
  margin-bottom: 24px;
}
@media screen and (min-width: 576px) {
  #final-budget .final-result {
    display: flex;
  }
}
#final-budget .final-result label {
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 576px) {
  #final-budget .final-result label {
    width: 50%;
  }
}
#final-budget .final-result label strong {
  color: #A73439;
}
#final-budget .final-result input {
  background: #fff;
  border: 2px solid #CED7D8;
  border-radius: 6px;
  color: #aaa;
  font-size: 1.2em;
  font-weight: 700;
  margin-top: 3px;
  padding: 8px 15px;
  width: 100%;
}
@media screen and (min-width: 576px) {
  #final-budget .final-result input {
    margin: 0;
    width: 50%;
  }
}
#final-budget .final-result input.interacted {
  color: #000;
}
#final-budget .conclusion {
  background: #F5D9CE;
  border-radius: 6px;
  display: block;
  margin-top: 46px;
  padding: 16px;
  text-align: center;
}
#final-budget .conclusion div {
  align-items: center;
  display: block;
  gap: 24px;
}
@media screen and (min-width: 576px) {
  #final-budget .conclusion div {
    display: flex;
  }
}
@media screen and (min-width: 576px) {
  #final-budget .conclusion {
    padding: 0 20px;
    text-align: left;
  }
}
#final-budget .conclusion strong {
  font-size: 1.1em;
  line-height: 1.1em;
}
@media screen and (min-width: 1200px) {
  #final-budget .conclusion strong {
    font-size: 1.3em;
  }
}
#final-budget .conclusion p {
  font-size: 0.9em;
  font-weight: 700;
  flex-grow: 1;
  margin: 8px 0;
}
@media screen and (min-width: 576px) {
  #final-budget .conclusion p {
    margin: 22px 0;
  }
}
@media screen and (min-width: 1200px) {
  #final-budget .conclusion p {
    font-size: 1em;
  }
}
#final-budget .conclusion div > span {
  color: #A73439;
  font-size: 1.1em;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  #final-budget .conclusion div > span {
    font-size: 1.3em;
  }
}
#final-budget .conclusion.on-budget {
  background: #D5E7E9;
  display: none;
}
#final-budget .conclusion.on-budget > span {
  color: #0E406A;
}
#final-budget .conclusion small {
  display: block;
  margin: 18px 0 0;
  padding-bottom: 12px;
}
@media screen and (min-width: 576px) {
  #final-budget .conclusion small {
    margin: 0;
  }
}
#final-budget.under-budget .budget-temp {
  height: 340px;
}
#final-budget.under-budget .budget-temp div {
  display: none;
}
#final-budget.under-budget .budget-temp div:last-of-type {
  display: block;
}
#final-budget.under-budget h5 span {
  color: #0E406A;
}
#final-budget.under-budget #back-to-preferences {
  display: none;
}
#final-budget.under-budget .final-result {
  display: none;
}
#final-budget.under-budget .conclusion {
  display: none;
}
#final-budget.under-budget .conclusion.on-budget {
  align-items: center;
  display: flex;
  gap: 18px;
}
#final-budget.under-budget > div:last-of-type > p {
  display: none;
}
#final-budget.fixed-budget .conclusion {
  display: none;
}
#final-budget.fixed-budget .conclusion.on-budget {
  align-items: center;
  display: flex;
  gap: 14px;
}

#transportation-survey {
  background: #E9F3F4;
  border-radius: 20px;
  margin-top: 34px;
  padding: 28px 34px;
}
#transportation-survey .ts-question {
  margin-bottom: 32px;
}
#transportation-survey .ts-question > label {
  font-weight: 700;
  margin-bottom: 8px;
}
#transportation-survey .ts-question div {
  margin: 6px;
  padding-left: 28px;
  position: relative;
}
#transportation-survey .ts-question div label {
  cursor: pointer;
}
#transportation-survey .ts-question div input {
  cursor: pointer;
  left: 0;
  margin-right: 8px;
  position: absolute;
  top: 7px;
}
#transportation-survey .ts-question textarea {
  height: 120px;
  margin: 8px 0 0;
  padding: 8px;
  width: 100%;
}
#transportation-survey .ts-question input[type=text] {
  margin: 8px 0 0;
  padding: 8px;
  width: 60%;
}
#transportation-survey .ts-question .ts-otheroption {
  display: none;
  padding: 0;
}
#transportation-survey .ts-question .ts-otheroption input {
  cursor: default;
  display: block;
  position: static;
}
#transportation-survey .half-half {
  display: flex;
  justify-content: space-between;
}
#transportation-survey .half-half > * {
  width: 48%;
}
#transportation-survey .half-half > * input[type=text] {
  width: 100%;
}
#transportation-survey input[type=submit] {
  background: #0E406A;
  border-radius: 8px;
  color: #fff;
  margin-top: 8px;
  padding: 8px 22px;
}
#transportation-survey input[type=submit]:hover {
  background: #042947;
}

/* Accordions */
.hdr-accordion-set {
  margin-bottom: 20px;
}

.hdr-accordion h3 {
  font-size: 1.4em;
  margin: 0;
}

.hdr-accordion button {
  background: #0E406A;
}

.hdr-accordion-header {
  cursor: pointer;
  margin: 18px 0 0;
  padding: 14px 48px 14px 18px;
  position: relative;
  text-align: left;
  width: 100%;
}

.hdr-accordion-set.has-js .hdr-accordion-header:before,
.hdr-accordion-set.has-js .hdr-accordion-header:after {
  background: #fff;
  content: "";
  height: 3px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.8s;
  width: 16px;
}

.hdr-accordion-set.has-js .hdr-accordion-header:after {
  transform: translateY(-50%) rotate(270deg);
}

.hdr-accordion-set.has-js .opened .hdr-accordion-header:after {
  transform: translateY(-50%) rotate(0deg);
}

.hdr-accordion > div {
  padding: 18px 2%;
}

#survey-thanks {
  display: none;
  font-size: 1.4em;
  font-weight: 700;
}

/**********************************

    Bottom Progress Bar

***********************************/
#bottom-menu {
  background: #F5D9CE;
  bottom: 0;
  display: none;
  height: 40px;
  position: absolute;
  right: 0;
  transition: right 0.6s, width 0.6s;
  width: 100%;
}
#bottom-menu div {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
}
@media screen and (min-width: 576px) {
  #bottom-menu div {
    width: 92%;
  }
}
#bottom-menu button {
  background: #F5D9CE;
  border-radius: 0;
  color: #212529;
  margin: 0;
  padding: 0;
}
#bottom-menu button:hover {
  filter: none;
}
#bottom-menu button span {
  background: #fff;
  border-radius: 4px;
  bottom: 100%;
  box-shadow: 0 3px 8px -3px #222;
  display: none;
  font-size: 0.8rem;
  left: -9999px;
  line-height: 1.1rem;
  margin-left: -100px;
  margin-bottom: 22px;
  opacity: 1;
  padding: 10px;
  position: absolute;
  text-align: center;
  width: 200px;
}
@media screen and (min-width: 992px) {
  #bottom-menu button span {
    display: block;
  }
}
#bottom-menu button span:after {
  border: 8px solid transparent;
  border-top-color: #fff;
  content: "";
  left: 50%;
  margin-left: -8px;
  position: absolute;
  top: 100%;
}
#bottom-menu button:hover span, #bottom-menu button.focused span {
  left: 50%;
  margin-bottom: 14px;
  opacity: 1;
  transition: margin-bottom 0.5s, opacity 0.3s, left 0s, margin-left 0s, right 0s;
}
#bottom-menu .arrow {
  background: #F5D9CE;
  border-radius: 0;
  height: 100%;
  position: relative;
  text-align: center;
  transition: background 0.2s;
  width: 50%;
}
@media screen and (min-width: 576px) {
  #bottom-menu .arrow {
    width: 8%;
  }
}
#bottom-menu .arrow i {
  color: #c2391b;
  display: block;
  font-size: 1.6rem;
}
#bottom-menu .arrow span {
  width: 200px;
}
#bottom-menu .arrow:hover {
  background: #0B727B;
}
#bottom-menu .arrow.disabled {
  cursor: default;
}
#bottom-menu .arrow.disabled:hover {
  background: #F5D9CE;
}
#bottom-menu .arrow.disabled i {
  opacity: 0.3;
}
#bottom-menu .arrow.disabled span {
  display: none;
}
#bottom-menu .previous-arrow:hover span,
#bottom-menu .previous-arrow.focused span {
  left: 12px;
  margin-left: 0;
}
#bottom-menu .previous-arrow:hover span:after,
#bottom-menu .previous-arrow.focused span:after {
  left: 20%;
  margin-left: 0;
}
#bottom-menu .next-arrow span {
  left: auto;
  right: 9999px;
  width: 200px;
}
#bottom-menu .next-arrow span:after {
  left: 80%;
}
#bottom-menu .next-arrow:hover span,
#bottom-menu .next-arrow.focused span {
  left: auto;
  right: 12px;
}
#bottom-menu nav {
  display: none;
  height: 100%;
  flex-grow: 1;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 84%;
}
@media screen and (min-width: 576px) {
  #bottom-menu nav {
    display: flex;
  }
}
#bottom-menu nav button {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}
#bottom-menu nav button:after {
  background: #c2391b;
  border-radius: 18px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.5s;
  width: 60%;
}
@media screen and (min-width: 992px) {
  #bottom-menu nav button:after {
    height: 5px;
    width: 68%;
  }
}
#bottom-menu nav button:hover:after, #bottom-menu nav button.focused:after {
  height: 10px;
  width: 74%;
}
#bottom-menu nav button.active {
  background: #0B727B;
}
#bottom-menu nav button.active:after {
  background: #fff;
}

.has-js #bottom-menu {
  display: flex;
}

/*****************************************

    Corner buttons & Contact form

******************************************/
#corner-buttons {
  display: none;
  position: absolute;
  right: 2%;
  top: 9px;
  transition: margin 0.6s;
}
@media screen and (min-width: 992px) {
  #corner-buttons {
    top: 14px;
  }
}
#corner-buttons a {
  box-shadow: 0 5px 10px -4px #111;
  border-radius: 50%;
  display: none;
  margin-right: 16px;
  opacity: 0.9;
  position: relative;
  transition: opacity 0.2s;
  vertical-align: top;
}
@media screen and (min-width: 576px) {
  #corner-buttons a {
    display: inline-block;
  }
}
#corner-buttons a img {
  height: 52px;
}
#corner-buttons a span {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 8px -3px #222;
  color: #212529;
  font-size: 0.8rem;
  left: -9999px;
  line-height: 1.1rem;
  margin-left: -100px;
  margin-top: 12px;
  opacity: 1;
  padding: 10px;
  position: absolute;
  text-align: center;
  top: 100%;
  width: 200px;
}
#corner-buttons a span:after {
  border: 8px solid transparent;
  border-bottom-color: #fff;
  bottom: 100%;
  content: "";
  left: 50%;
  margin-left: -8px;
  position: absolute;
}
#corner-buttons a:hover {
  opacity: 1;
}
#corner-buttons a:hover span, #corner-buttons a:focus span {
  left: 50%;
  opacity: 1;
  transition: margin-bottom 0.5s, opacity 0.3s, left 0s, margin-left 0s, right 0s;
}
#corner-buttons > *:last-child:hover span,
#corner-buttons > *:last-child:focus span {
  left: -60%;
}
#corner-buttons > *:last-child span:after {
  left: 80%;
}

.contact-open #corner-buttons {
  margin-right: 280px;
}
.contact-open #corner-buttons a {
  display: none;
}
@media screen and (min-width: 992px) {
  .contact-open #corner-buttons a {
    display: inline-block;
  }
}
@media screen and (min-width: 576px) {
  .contact-open #corner-buttons {
    margin-right: 400px;
  }
}

.has-js #corner-buttons {
  display: block;
}

.mobile-menu-open #corner-buttons {
  display: none;
}
@media screen and (min-width: 576px) {
  .mobile-menu-open #corner-buttons {
    display: block;
  }
}

a#contact-button {
  border-radius: 8px;
  margin-left: 6px;
  padding-top: 4px;
  text-decoration: none;
}

a#contact-button.instructing {
  z-index: 100;
}

a#contact-button img {
  display: block;
  height: 14px;
  margin: 3px auto;
}
@media screen and (min-width: 2000px) {
  a#contact-button img {
    margin: 5px auto 1px;
  }
}

.close-contact span {
  left: -9999px;
  position: absolute;
}

#contact {
  background: #fff;
  box-shadow: 0 0 14px 0 #111;
  height: auto;
  padding-left: 15%;
  position: static;
  right: -440px;
  top: 0;
  width: 100%;
  z-index: 1;
}
#contact h2 {
  font-size: 1.5rem;
  margin-top: 28px;
}
@media screen and (min-width: 992px) {
  #contact h2 {
    font-size: 1.8rem;
  }
}
#contact > div {
  height: 100%;
  overflow: auto;
  padding: 32px 22px 22px;
}
@media screen and (min-width: 576px) {
  #contact > div {
    padding: 32px 32px 24px;
  }
}
#contact > div .close-contact {
  background: transparent;
  color: #212529;
  display: none;
  font-size: 1.4em;
  font-weight: 700;
  margin: 0;
  padding: 10px;
  position: absolute;
  right: 12px;
  top: 8px;
}
#contact > .close-contact {
  background: #000;
  background: rgba(0, 0, 0, 0.56);
  border: 0;
  border-radius: 0;
  height: 100%;
  margin: 0;
  position: absolute;
  right: 100%;
  width: 800%;
}

.has-js #contact {
  display: none;
  font-size: 0.8rem;
  height: 100%;
  padding-left: 0;
  position: fixed;
  width: 270px;
}
@media screen and (min-width: 576px) {
  .has-js #contact {
    font-size: 1rem;
    width: 390px;
  }
}
.has-js #contact > div .close-contact {
  display: block;
}

.contact-open #contact {
  display: block;
}
.contact-open #contact.animate {
  right: 0;
  transition: 0.6s;
}

/*# sourceMappingURL=main.css.map */
