html {
  background-color: #ffffff;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  background-color: #ffffff !important;
  position: relative;
}

body * {
  font-family: 'Source Sans Pro', sans-serif;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

a:hover {
  text-decoration: none !important;
}

.container-fluid {
  padding: 0px;
}

.text--blue {
  color: #005caa !important;
}

.header-container {
  display: flex;
  padding: 8px 0px;
}

.header-container .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hints_title {
  margin-left: 40px;
  padding-left: 40px;
  border-left: 1px solid #8bc53f;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
}

.hints_title h1 {
  font-size: 32px;
  font-weight: 600;
  color: #005caa;
  margin: 0px;
  line-height: 1;
}

.survey-container {
  width: 100%;
  position: relative;
  margin-top: 130px;
  background-color: white;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  padding: 20px 30px 90px 30px;
  height: 500px;
  overflow: auto;
}

.surveysection-title {
  padding: 0px 5px;
  border-bottom: 2px solid #8bc53f;
}

.surveysection-title p {
  color: #005caa;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0px;
}

.surveysection-btngrp {
  position: absolute;
  bottom: 24px;
  width: 92.5%;
  height: 30px;
}

.btnSaveExit,
.btnPrevious,
.btnNext,
.btnBegin {
  position: absolute;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.btnSaveExit,
.btnBegin {
  background-color: #8bc53f;
  left: 0px;
  border: 1px solid transparent;
}

.btnPrevious {
  background-color: #ffffff;
  right: 120px;
  width: 100px;
  border: 1px solid #8bc53f;
}

.btnNext {
  background-color: #8bc53f;
  right: 0px;
  width: 100px;
  border: 1px solid transparent;
}

.btnSaveExit:focus,
.btnSaveExit:hover,
.btnBegin:focus,
.btnBegin:hover {
  background-color: #005caa;
  color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  outline: none;
}

.btnPrevious:focus,
.btnPrevious:hover {
  background-color: #8bc53f;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  outline: none;
}

.btnNext:focus,
.btnNext:hover {
  background-color: #005caa;
  color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  outline: none;
}

.btnBegin {
  width: 120px;
  left: calc(50% - 60px);
  bottom: 36px;
  padding: 5px;
  border-radius: 2px;
}

.hero-img {
  width: 100%;
  height: 555px;
  background-image: url('../images/runners_full_size.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 80px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.landing-panel {
  z-index: 2;
  width: 600px;
  margin: 0px 16px 0px;
  height: 300px;
  background: rgba(242, 242, 242, 0.95);
  border-radius: 10px;
  padding: 40px;
  position: relative;
  box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.3);
}

.landing-panel-p1 {
  font-size: 18px;
  font-weight: 600;
}

.landing-panel label {
  font-size: 14px;
}

.form-control.access-pin {
  font-size: 14px;
  border: 1px solid rgba(0, 92, 170, 0.5);
  box-shadow: inset 0px 0px 1px #005caa;
}

.landing-panel .checkbox label {
  float: right;
  margin: 5px 0px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.landing-panel .checkbox label input {
  display: none;
}

.landing-panel .checkbox label img {
  margin-top: -2px;
}

.menu-buttons {
  width: 475px;
  margin: -105px auto 95px;
  position: relative;
}

.menu-buttons-list {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}

.menu-buttons-list li {
  font-size: 18px;
  font-weight: 600;
  color: #005caa;
  width: 72px;
  height: 72px;
  text-align: center;
  line-height: 18px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 3;
  padding-top: 26px;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.4s, transform 0.2s;
  opacity: 0.95;
}

.menu-buttons-list li a {
  text-decoration: none;
  color: inherit;
}

.menu-buttons-list li:hover,
.menu-buttons-list li:focus {
  background-color: #005caa;
  color: #ffffff;
  opacity: 1;
  transform-style: preserve-3d;
  animation: flip 0.4s;
  outline: none;
}

.menu-buttons-list li:first-child {
  padding-top: 20px;
}

@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  25% {
    transform: rotateY(45deg);
  }
  50% {
    transform: rotateY(90deg);
  }
  75% {
    transform: rotateY(45deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}

.btnContact {
  position: absolute;
  right: -51px;
  top: 192px;
  background-color: #8bc53f;
  padding: 5px 15px;
  transform: rotate(270deg);
  border-radius: 5px 5px 0px 0px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  opacity: 0.95;
  border: 0 !important;
  transition: background-color 0.2s, padding 0.2s;
}

.btnContact:hover,
.btnContact:focus {
  opacity: 1;
  background-color: #005caa;
  padding-bottom: 10px;
  color: #ffffff;
  outline: none;
}

.btnContact:hover img,
.btnContact:focus img {
  filter: invert(1);
}

.landing-sec {
  padding: 30px;
  margin-bottom: 100px;
}

.landing-sec-H {
  font-size: 28px;
  font-weight: 600;
  color: #005caa;
  padding-bottom: 5px;
  border-bottom: 2px solid #8bc53f;
  width: 90%;
  position: relative;
}

.landing-sec-H.alt {
  text-align: right;
  margin-left: 10%;
}

.landing-sec-H:after {
  content: '\25BA';
  position: absolute;
  right: -4px;
  bottom: -12px;
  font-size: 18px;
  color: #8bc53f;
}

.landing-sec-H.alt:after {
  left: -4px;
  transform: scaleX(-1);
}

.guide-list {
  list-style: none;
  padding: 0;
}

.guide {
  position: relative;
  margin-top: 40px;
}

.guide-wrapper {
  display: inline-flex;
  width: 100%;
}

.guide-list-N {
  width: 10%;
  text-align: right;
  font-size: 50pt;
  padding-right: 20px;
  border-right: 2px solid rgba(0, 92, 170, 0.85);
  margin: 0;
  line-height: 70px;
  height: 70px;
  transform: translateY(50%);
}

.guide-list-T {
  font-size: 18px;
  width: 55%;
  padding: 0 24px;
  margin: 0;
  height: 70px;
  transform: translateY(45%);
}

.guide-list-I {
  width: 30%;
  height: 150px;
}

.guide:nth-child(1) .guide-list-T,
.guide:nth-child(2) .guide-list-T {
  transform: translateY(65%);
}

.guide:nth-child(3) .guide-list-T {
  transform: translateY(80%);
}

#FAQ {
  background-color: #f2f2f2;
  padding: 72px 30px;
}

#FAQ .landing-sec-H {
  margin-bottom: 36px;
}

.faq-list {
  margin-top: 24px;
  background: #ffffff;
  width: 100%;
  padding: 8px 32px 8px 48px;
  border-radius: 3px;
  position: relative;
}

.ques {
  color: #005caa;
  font-size: 20px;
  text-decoration: none;
  display: block;
}

.ques:hover {
  text-decoration: none;
}

.ans {
  padding: 10px 60px 5px 0px;
  font-size: 16px;
}

.caret-down {
  position: absolute;
  top: 5px;
  right: 20px;
  transition: transform 0.3s;
  font-size: 24px;
}

.help-P {
  margin-top: 30px;
  font-size: 18px;
}

.footer-img {
  width: 100%;
  height: 445px;
  background-image: url('../images/hands_cropped_gradient.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.survey-footer {
  position: absolute;
  width: 100%;
  height: 80px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  text-align: center;
  padding: 5px 0px 10px;
}

.survey-footer_logo {
  position: absolute;
  right: 20px;
  bottom: 8px;
}

.survey-footer_logo img {
  height: 66px;
}

.iques {
  opacity: 0.4;
  color: #8bc53f;
  margin-right: 24px;
  transition: opacity 0.3s;
  position: absolute;
  left: 18px;
  top: 12px;
}

.menu-buttons-floating {
  visibility: hidden;
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 1;
  transform: scale(0.9);
  transition: all 0.5s;
  opacity: 0;
}

.menu-buttons-floating-list {
  list-style: none;
  padding: 0;
}

.menu-buttons-floating-list li {
  background: #8bc53f;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  margin-bottom: 15px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-size: 24px;
  padding-top: 7px;
  cursor: pointer;
  transition: all 0.3s;
}

.menu-buttons-floating-list li:first-child {
  font-size: 32px;
  padding-top: 0px;
}

.menu-buttons-floating-list li:hover,
.menu-buttons-floating-list li:focus {
  outline: none;
  background-color: #055caa;
  color: #ffffff;
}

@media (min-width: 1600px) {
  .hero-img {
    height: 655px;
  }

  .footer-img {
    height: 545px;
  }
}

@media (max-width: 998px) {
  .hints_title h1 {
    font-size: 28px;
  }

  .menu-buttons-floating {
    transform: scale(0.8);
  }
}

@media (max-width: 767px) {
  .landing-sec {
    padding: 30px 10px;
  }

  .hints_logo {
    width: 80px;
  }

  .hints_title {
    margin-left: 30px;
    padding-left: 30px;
  }

  .hints_title h1 {
    font-size: 22px;
  }

  .btnContact {
    display: none;
  }

  .landing-panel {
    padding: 20px 16px 90px;
    height: unset;
  }

  .btnBegin {
    bottom: 20px;
  }

  .menu-buttons {
    width: 100%;
    padding: 10px;
  }

  .guide-list-N {
    width: 15%;
  }

  .guide-list-T {
    font-size: 14px;
    line-height: 16px;
  }

  #FAQ {
    padding: 72px 10px;
  }

  .landing-sec-H {
    font-size: 24px;
  }

  .caret-down {
    top: 6px;
    right: 10px;
    font-size: 20px;
  }

  .ques {
    font-size: 14px;
  }

  .ans {
    font-size: 12px;
    padding: 10px 0px 5px 0px;
  }

  .help-P {
    font-size: 14px;
  }

  .menu-buttons-list {
    transform: scale(0.8);
  }
}

@media (max-width: 767px) {
  .hints_title {
    margin-left: 24px;
    padding-left: 24px;
  }
}




.contactUs {
    width: 420px;
    background-color: #004477;
    padding: 3rem 2rem 1rem;
    color: white;
    position: fixed;
    top: 0px;
    right: -420px;
    opacity: 0.8;
    visibility: hidden;
    z-index: 999999;
    box-shadow: -10px 0px 30px rgba(0,0,0,0.3);
    transition: visibility .2s ease-in, opacity .2s ease-in, right .2s ease-in;
    overflow: auto;
}

.contactUs--open {
    visibility: visible !important;
    opacity: 1 !important;
    right: 0px !important;
}

.contactUs .fa-times {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
}

.contactUs input, .contactUs textarea {
    width: 100%;
    border-radius: 5px;
    border: 1px solid white;
    background: #004477;
    color: inherit;
    margin-top: -2px;
    margin-bottom: 15px;
    padding: 12px;
}

    .contactUs input:hover, .contactUs textarea:hover, .contactUs input:focus, .contactUs textarea:focus {
        background: #FFFFFF;
        color: #004477;
    }

.contactUs label {
    font-size: 18px;
}

.contactUs textarea {
    height: 150px;
}

.contactUs_h2 {
    text-align: center;
    font-size: 22px;
    color: inherit;
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid white;
}

.contactUs_p {
    text-align: center;
    font-size: 16px;
    color: inherit;
    line-height: 20px;
}

.contactUs_radio {
    display: flex;
    width: 100%;
    position: relative;
    margin: 5px 0 15px;
}

    .contactUs_radio label {
        font-size: 16px;
    }

    .contactUs_radio .reason {
        height: 72px;
        border-radius: 5px;
        padding: 3px;
    }

    .contactUs_radio .reason_0 {
        position: relative;
        width: 45%;
        margin: 0 auto;
    }

        .contactUs_radio .reason_0:before, .contactUs_radio .reason_1:before, .contactUs_radio .reason_2:before {
            content: "\f059";
            font-family: 'Font Awesome 5 Free';
            left: calc( 50% - 15px);
            position: absolute;
            top: 5px;
            font-size: 30px;
            font-weight: 900;
        }

    .contactUs_radio .reason_1:before {
        content: "\f0ad";
    }

    .contactUs_radio .reason_2:before {
        content: "\f086";
    }

    .contactUs_radio .reason_1 {
        position: relative;
        width: 45%;
        margin: 0 auto;
    }

    .contactUs_radio .reason_2 {
        position: relative;
        width: 20%;
        margin: 0 auto;
    }

    .contactUs_radio .reasonTxt {
        position: absolute;
        bottom: 2px;
        left: 24px;
    }

    .contactUs_radio input {
        position: absolute;
        bottom: 2px;
        margin-bottom: 5px;
        width: auto !important;
    }

.contactUsBtn {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    background: #8bc53f !important;
    border: 1px solid transparent !important;
    border-radius: 0px !important;
    color: #000 !important;
    width: 100px !important;
    background-image: url(../images/envelope.svg) !important;
    background-repeat: no-repeat !important;
    padding: 5px 15px !important;
    text-align: right;
    background-size: 20% !important;
    background-position: 15px !important;
    position: relative;
    left: calc(50% - 45px);
    margin: 10px auto 30px !important;
}

    .contactUsBtn:hover, .contactUsBtn:focus {
        transform: scale(1.02);
        box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
        outline: none !important;
    }

.contactUs_p1 {
    font-size: 14px;
    padding-top: 5px;
    border-top: 1px solid white;
}

.contactUs_p a {
    color: inherit;
}

.contactUsOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999998;
}

.contactUs_wrapper {
    height: 833px;
}
