@keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.mob_only {
  display: none;
}

@media only screen and (max-width: 800px) {
  .mob_only {
    display: block !important;
  }
}

.mob_hidden {
  display: block;
}

@media only screen and (max-width: 800px) {
  .mob_hidden {
    display: none !important;
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
}

.quiz_content_animated {
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.animatedFadeInUp {
  opacity: 0;
}

.fadeInUp {
  opacity: 0;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
}

.full_main_section {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.full_main_section.kv_wrap {
  width: 100vw;
  height: 100vh;
}

body {
  font-family: "Rajdhani", sans-serif;
}

body.loading {
  overflow: hidden;
}

body.menu_on {
  overflow-y: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 800px) {
  body.menu_on .full_main_section {
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
  }
}

html.menu_on {
  overflow-y: hidden;
}

.back_to_top_btn {
  position: fixed;
  display: none;
  bottom: 40px;
  right: 40px;
  width: 85px;
}

.back_to_top_btn.reach_footer {
  position: absolute;
  bottom: auto;
  top: -135px;
}

@media only screen and (max-width: 800px) {
  .back_to_top_btn.reach_footer {
    top: -340px;
  }
}

@media only screen and (max-width: 800px) {
  .back_to_top_btn {
    width: 65px;
    bottom: 20px;
    right: 20px;
  }
}

.back_to_top_btn img {
  width: 100%;
}

@media only screen and (max-width: 800px) {
  .landing .back_to_top_btn.reach_footer {
    top: -135px;
  }
}

header {
  width: 100%;
  height: 98px;
  background: #fff;
  position: relative;
  top: 0;
  left: 0;
  z-index: 9999;
}

@media only screen and (max-width: 800px) {
  header {
    height: 72px;
  }
}

header .header_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1444px;
  margin: 0 auto;
}

header .header_container .menu_button {
  width: 35px;
}

header .header_container .menu_button img {
  width: 100%;
  display: block;
}

header .header_container .menu_button .close_nav {
  display: none;
}

header .header_container .menu_button .open_nav {
  display: block;
}

header .header_container .menu_button.menu_on {
  width: 18px;
}

header .header_container .menu_button.menu_on .close_nav {
  display: block;
}

header .header_container .menu_button.menu_on .open_nav {
  display: none;
}

header .header_container .logo {
  width: 245px;
}

header .header_container .logo img {
  width: 100%;
}

header:after {
  width: 100%;
  height: 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  background: url(../../images/brand_line.png) repeat-y top left;
  background-size: 100%;
}

@media only screen and (max-width: 800px) {
  header:after {
    height: 4px;
  }
}

header:before {
  width: 100%;
  height: 98px;
  position: absolute;
  top: -98px;
  content: "";
  left: 0;
  background: #fff;
}

.nav_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
}

#nav {
  display: none;
  position: fixed;
  z-index: 9990;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  padding-top: 97px;
}

#nav.apply_mob {
  display: block;
  -webkit-transform: translateX(100vw);
  transform: translateX(100vw);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#nav.apply_mob.open {
  -webkit-transform: translateX(0vw);
  transform: translateX(0vw);
}

@media only screen and (max-width: 800px) {
  #nav {
    padding-top: 70px;
  }
}

#nav nav {
  background: #ef4f51;
  width: 0;
  padding-right: 48%;
  height: calc(100vh - 97px);
  padding-top: 20%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

@media only screen and (max-width: 800px) {
  #nav nav {
    padding-right: 0;
    width: 100%;
    height: auto;
    padding-top: 11.8%;
  }
}

#nav nav:before {
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 46%;
  background: url(../../images/nav_bg_red.png) right top no-repeat;
  background-size: cover;
  left: -38%;
  top: 0;
}

@media only screen and (max-width: 800px) {
  #nav nav:before {
    background: url(../../images/nav_bg_red_m.png) right top no-repeat;
    background-size: 100%;
    width: 100%;
    height: 0;
    padding-top: 28%;
    left: 0;
    bottom: -17%;
    top: auto;
  }
}

#nav nav ul {
  width: 87%;
  padding-top: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 1537px) {
  #nav nav ul {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 800px) {
  #nav nav ul {
    position: relative;
    width: 100%;
    padding-top: 0;
  }
}

#nav nav ul li {
  margin-bottom: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
}

@media only screen and (max-width: 800px) {
  #nav nav ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

#nav nav ul li img {
  height: 40px;
}

@media only screen and (max-width: 800px) {
  #nav nav ul li img {
    height: auto;
    width: 8vw;
    margin: 0 auto 15px;
  }
}

#nav nav ul li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 30px;
  padding-left: 25px;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  line-height: 1.4;
  position: relative;
}

@media only screen and (max-width: 1025px) {
  #nav nav ul li a {
    font-size: 22px;
  }
}

@media only screen and (max-width: 800px) {
  #nav nav ul li a {
    padding-left: 0;
    text-align: center;
    width: 100%;
    font-size: 22px;
  }
}

#nav nav ul li a:hover:before {
  width: 75px;
  height: 5px;
  background: #fff;
  content: "";
  position: absolute;
  bottom: -15px;
  left: 25px;
}

@media only screen and (max-width: 800px) {
  #nav nav ul li a:hover:before {
    display: none;
  }
}

#nav nav .lang {
  position: absolute;
  bottom: 78px;
  right: 77px;
}

@media only screen and (max-width: 800px) {
  #nav nav .lang {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 5% auto 7%;
  }
}

#nav nav .lang a {
  font-weight: bold;
  background: url(../../images/nav_lang_bg.png) top left no-repeat;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  text-decoration: none;
  color: #ef4f51;
  padding: 10px 50px;
  font-size: 20px;
}

#nav nav .lang a img {
  width: 35px;
  margin-right: 15px;
}

@media only screen and (max-width: 800px) {
  #nav nav .lang a span {
    font-size: 20px;
  }
}

.header {
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

.header-unpin {
  /* display: none; */
  -webkit-transform: translateY(-98px);
          transform: translateY(-98px);
}

@media only screen and (max-width: 800px) {
  .header-unpin {
    -webkit-transform: translateY(-70px);
            transform: translateY(-70px);
  }
}

.header-pin {
  /* display: block; */
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.hidden {
  display: none;
}

.hidden.result_pois_section {
  display: block;
  visibility: hidden;
  opacity: 0;
  height: 0;
  min-height: 0;
}

.loading_screen {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background: url(../../images/loadingpage_background.png) center center no-repeat;
  background-size: cover;
  padding: 0;
}

.loading_screen .loading_wrapper {
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  color: #fff;
}

.loading_screen .loading_wrapper p {
  font-size: 20px;
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  .loading_screen .loading_wrapper .main_logo {
    width: 58.93%;
  }
}

.loading_screen .progress_container {
  width: 100%;
  margin: 40px 0;
}

.loading_screen .progress {
  height: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

@media only screen and (max-width: 800px) {
  .loading_screen .progress {
    border-top: none;
    border-bottom: none;
  }
}

.loading_screen .progress > span {
  position: relative;
  float: left;
  margin: 0 -1px;
  min-width: 30px;
  height: 20px;
  text-align: right;
  overflow: visible !important;
}

.loading_screen .progress > span > span {
  padding: 0 8px;
  font-size: 11px;
}

.loading_screen .progress > span:before {
  content: "";
  position: absolute;
  top: -15px;
  bottom: 0;
  left: 0;
  right: -49px;
  z-index: 1;
  height: 45px;
  background: url("../../images/shiip_copy.png") center right no-repeat;
  border-radius: 10px;
}

@media only screen and (max-width: 800px) {
  .loading_screen .progress > span:before {
    height: 30px;
    background-size: contain;
  }
}

.loading_screen .progress .blue {
  border-top: #fff 1px solid;
  border-bottom: #fff 1px solid;
}

@media only screen and (max-width: 800px) {
  .loading_screen .progress .blue {
    border-top: none;
    border-bottom: none;
  }
}

@media only screen and (max-width: 800px) {
  .quiz .loading_screen .loading_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.vids_wrapper {
  width: 100%;
  min-height: calc(100vh - 98px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9989;
  background: #fff;
}

.vids_wrapper.show_header {
  z-index: 999;
}

.vids_wrapper.showResult {
  padding-top: 0;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper {
    min-height: 0;
    height: auto;
    padding-top: 100%;
  }
}

.vids_wrapper .result_videos:after {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../../images/mesh.png) no-repeat center center;
  background-size: cover;
  opacity: 0.5;
}

.vids_wrapper video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.vids_wrapper .overlay_result {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  display: none;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result {
    position: relative;
  }
}

.vids_wrapper .overlay_result:before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.vids_wrapper .overlay_result .route_bold_title {
  color: #fff;
  padding-left: 0;
  line-height: 1.2;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .route_bold_title {
    text-align: center;
    width: 96%;
  }
}

.vids_wrapper .overlay_result .route_red_title {
  padding-left: 45px;
  line-height: 1.2;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .route_red_title {
    text-align: center;
    width: 96%;
    padding-left: 0;
  }
}

.vids_wrapper .overlay_result .route_desc {
  padding-left: 45px;
  margin-top: 30px;
  line-height: 1.4;
  font-size: 20px;
  width: 50%;
  background: none;
}

@media only screen and (max-width: 1024px) {
  .vids_wrapper .overlay_result .route_desc {
    margin-top: 10px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .route_desc {
    text-align: center;
    width: 96%;
    padding: 0;
    margin: 10px auto 0;
    font-size: 3.7vw;
    background: none;
  }
}

.vids_wrapper .overlay_result .result_container {
  padding-top: 0;
  max-width: 1444px;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
}

@media only screen and (max-width: 1444px) {
  .vids_wrapper .overlay_result .result_container {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .result_container {
    min-height: 100vh;
    padding-top: 20px;
    padding-left: 0;
  }
}

.vids_wrapper .overlay_result .result_container .quiz_side_nav {
  z-index: 2;
  width: 40px;
  position: absolute;
  right: 2%;
  opacity: 1;
  height: 180px;
  bottom: 0;
}

.vids_wrapper .overlay_result .result_container .quiz_side_nav a {
  text-decoration: none;
}

.vids_wrapper .overlay_result .result_container .quiz_side_nav:after {
  left: 40px;
}

.vids_wrapper .overlay_result .score_container {
  width: 300px;
  position: relative;
  margin-top: 60px;
  display: inline-block;
  margin-left: 140px;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .score_container {
    width: 48%;
    margin: 50px auto 0;
    display: block;
  }
}

.vids_wrapper .overlay_result .score_container img {
  width: 100%;
}

.vids_wrapper .overlay_result .score_container .score_text {
  font-family: "Oswald", sans-serif, sans-serif;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.vids_wrapper .overlay_result .score_container .score_text > div {
  display: inline-block;
  position: absolute;
}

.vids_wrapper .overlay_result .score_container .score_text .top {
  left: 34%;
  top: -33px;
  height: 101px;
  width: 108px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

.vids_wrapper .overlay_result .score_container .score_text .top .score_number {
  width: 100%;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .score_container .score_text .top {
    left: 28%;
    top: -13%;
    height: 35%;
    width: 48%;
  }
}

.vids_wrapper .overlay_result .score_container .score_text .top .score_number > span:first-child {
  min-width: auto;
}

.vids_wrapper .overlay_result .score_container .score_text .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  width: 193px;
  top: 131px;
  left: -99px;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .score_container .score_text .left {
    width: 71%;
    top: 40%;
    left: -37%;
  }
}

.vids_wrapper .overlay_result .score_container .score_text .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  width: 184px;
  top: 131px;
  right: -90px;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .score_container .score_text .right {
    width: 65%;
    top: 40%;
    right: -34%;
  }
}

.vids_wrapper .overlay_result .score_container .score_text .bottom {
  left: 34%;
  bottom: -25px;
  height: 101px;
  width: 108px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

.vids_wrapper .overlay_result .score_container .score_text .bottom .score_number {
  width: 100%;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .score_container .score_text .bottom {
    left: 28%;
    bottom: -10%;
    height: 37%;
    width: 46%;
  }
}

.vids_wrapper .overlay_result .score_container .score_text .bottom .score_number > span:first-child {
  min-width: auto;
}

.vids_wrapper .overlay_result .score_container .score_cat {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  word-break: initial;
  white-space: nowrap;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .score_container .score_cat {
    font-size: 3.6vw;
  }
}

.vids_wrapper .overlay_result .score_container .score_number {
  font-size: 40px;
  font-weight: 100;
  text-align: center;
  width: 46%;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .score_container .score_number {
    font-size: 7.6vw;
  }
}

.vids_wrapper .overlay_result .score_container .score_number > span:first-child {
  min-width: 35px;
  display: inline-block;
  text-align: right;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .score_container .score_number > span:first-child {
    min-width: 0;
  }
}

.vids_wrapper .overlay_result .score_container .symbol {
  font-size: 20px;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .score_container .symbol {
    font-size: 4vw;
  }
}

.vids_wrapper .overlay_result .replay_container {
  position: absolute;
  top: 25%;
  left: 60%;
  width: 100%;
  z-index: 99;
}

@media only screen and (max-width: 1025px) {
  .vids_wrapper .overlay_result .replay_container {
    left: 50%;
  }
}

.vids_wrapper .overlay_result .replay_container .headline {
  font-family: "Oswald", sans-serif, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 40px;
  position: absolute;
  top: 19%;
  left: 160px;
}

@media only screen and (max-width: 1537px) {
  .vids_wrapper .overlay_result .replay_container .headline {
    font-size: 33px;
  }
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .replay_container .headline {
    font-size: 6vw;
    top: 30%;
    left: 20px;
  }
}

.vids_wrapper .overlay_result .replay_container .replay_msg {
  position: absolute;
  top: 55%;
  left: 160px;
  width: 300px;
  line-height: 1.5;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .replay_container .replay_msg {
    top: 59%;
    left: 20px;
    width: 69%;
    font-size: 3.5vw;
  }
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .replay_container {
    position: relative;
    top: inherit;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-right: 20px;
    padding-bottom: 5%;
    padding-top: 8%;
    margin-top: 15px;
  }
}

.vids_wrapper .overlay_result .replay_button {
  width: 150px;
  height: 150px;
  display: block;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .replay_button {
    width: 20%;
    height: 0;
    padding-top: 20%;
    display: block;
    position: relative;
    margin-left: auto;
  }
}

.vids_wrapper .overlay_result .replay_button a {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../images/play.png) center center no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .replay_button a {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.vids_wrapper .overlay_result .replay_button:hover a {
  background: url(../../images/play_hover.png) center center no-repeat;
  background-size: cover;
}

.vids_wrapper .overlay_result .replay_button:before {
  width: 50vw;
  height: 1px;
  content: "";
  display: block;
  background: #fff;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50px;
}

@media only screen and (max-width: 800px) {
  .vids_wrapper .overlay_result .replay_button:before {
    width: 100vw;
    left: auto;
    right: 10px;
  }
}

section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

section.result_pois_section {
  padding-top: 0;
  visibility: visible;
  opacity: 1;
  height: auto;
  min-height: 100vh;
}

section.result_pois_section .max_width_desc {
  padding-top: 26%;
  position: relative;
}

@media only screen and (max-width: 800px) {
  section.result_pois_section .max_width_desc {
    padding-top: 7%;
  }
}

.section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.section#explore {
  position: relative;
  height: auto;
  min-height: auto;
}

@media only screen and (max-width: 1025px) {
  .section#explore {
    min-height: 505px;
  }
}

@media only screen and (max-width: 800px) {
  .section#explore {
    min-height: auto;
  }
}

.section#explore .route_inside {
  position: relative;
  padding-top: 48px;
}

@media only screen and (max-width: 800px) {
  .section#explore .route_inside {
    padding-top: 35px;
  }
}

.section#explore .max_width_desc {
  overflow: visible;
}

.section#teleportto {
  margin-top: 365px;
}

.section#teleportto .route_inside {
  top: 0;
  padding-top: 0;
}

@media only screen and (max-width: 800px) {
  .section#teleportto .route_inside {
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -ms-flex-line-pack: start;
        align-content: start;
    -webkit-align-content: start;
    -webkit-box-align: start;
    -ms-flex-align: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
  }
}

@media only screen and (max-width: 1444px) {
  .section#teleportto {
    margin-top: 28vw;
    padding-top: 0;
  }
}

@media only screen and (max-width: 1025px) {
  .section#teleportto {
    margin-top: 5vw;
  }
}

@media only screen and (max-width: 800px) {
  .section#teleportto {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -ms-flex-line-pack: start;
        align-content: start;
    -webkit-align-content: start;
    -webkit-box-align: start;
    -ms-flex-align: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
  }
}

.section.result_pois_section {
  padding-top: 0;
}

.section.result_pois_section .max_width_desc {
  padding-top: 26%;
  position: relative;
}

@media only screen and (max-width: 800px) {
  .section.result_pois_section .max_width_desc {
    padding-top: 7%;
  }
}

.landing_bottom_content {
  overflow-x: hidden;
}

.landing_bottom_content {
  background: url(../../images/pageBottomBackground.png) bottom left no-repeat;
  background-size: 100%;
  position: relative;
  margin-top: 10%;
  padding-bottom: 35%;
}

@media only screen and (max-width: 800px) {
  .landing_bottom_content {
    margin-top: 0;
  }
}

.poi_bottom {
  background: #e4063e;
  padding-bottom: 0%;
  position: relative;
  margin-top: 20%;
  padding-bottom: 40px;
}

.poi_bottom:before {
  content: "";
  width: 100%;
  padding-top: 27%;
  background: url(../../images/pageBottomBackground.png) top left no-repeat;
  background-size: 100%;
  position: absolute;
  left: 0;
  bottom: 90%;
  z-index: -1;
  display: block;
}

@media only screen and (max-width: 800px) {
  .poi_bottom:before {
    width: 100%;
    height: 50%;
    position: absolute;
    background: #e4063e;
    content: '';
    left: 0;
    display: block;
    bottom: 0;
  }
}

@media only screen and (max-width: 800px) {
  .poi_bottom {
    background: url(../../images/m_pageBottomBackground.png) top left no-repeat;
    background-size: 100%;
    padding-bottom: 69%;
    padding: 20% 0 5% 0;
  }
}

#landing {
  height: 100vh;
}

#landing .video_wrapper,
#landing .landing_inside {
  width: 100%;
  height: 100%;
}

#landing .video_wrapper video,
#landing .landing_inside video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#landing .video_wrapper .video_wrapper,
#landing .landing_inside .video_wrapper {
  position: relative;
}

#landing .video_wrapper .video_wrapper img,
#landing .landing_inside .video_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#landing .video_wrapper .video_wrapper:after,
#landing .landing_inside .video_wrapper:after {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../../images/mesh.png) no-repeat center center;
  background-size: cover;
  opacity: 0.5;
}

#landing .onvid_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}

#landing .onvid_container .main_logo {
  width: 385px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 800px) {
  #landing .onvid_container .main_logo {
    width: 58.93%;
  }
}

#landing .onvid_container p {
  width: 100%;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  word-break: initial;
}

#landing .onvid_container .onvid_line1 {
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  font-weight: 300;
  margin-left: 0;
  text-transform: uppercase;
}

@media only screen and (max-width: 800px) {
  #landing .onvid_container .onvid_line1 {
    font-size: 7vw;
    line-height: 1.083;
    margin-left: 0;
  }
}

#landing .onvid_container .onvid_line2 {
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  font-size: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

@media only screen and (max-width: 800px) {
  #landing .onvid_container .onvid_line2 {
    font-size: 7vw;
    line-height: 1.083;
    margin-left: 0;
    margin-bottom: 7%;
  }
}

#landing .onvid_container .onvid_line3 {
  margin-bottom: 40px;
  font-weight: 600;
}

@media only screen and (max-width: 800px) {
  #landing .onvid_container .onvid_line3 {
    font-size: 3.45vw;
    line-height: 1.333;
    width: 80%;
  }
}

.cta_bar.double_ended {
  width: 45%;
  height: 56px;
  position: relative;
  text-transform: uppercase;
}

@media only screen and (max-width: 1444px) {
  .cta_bar.double_ended {
    width: 70%;
  }
}

.select_bar {
  height: 56px;
}

.select_bar .sb_selector_container {
  height: 100%;
}

.select_bar .sb_selector_container .slidershell {
  margin: 0 auto;
}

.select_bar .sb_handle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  width: 55px;
  height: 100%;
  border-top: #e4063e 2px solid;
  border-bottom: #e4063e 2px solid;
  background: #fff;
  position: relative;
}

.select_bar .sb_handle img {
  width: 33px;
}

.routes_section {
  overflow: visible;
}

.max_width_desc {
  width: 100%;
  max-width: 1444px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.max_width_desc.quiz_inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  height: 100%;
  padding-top: 80px;
  position: relative;
}

@media only screen and (max-width: 800px) {
  .max_width_desc.quiz_inside {
    padding-top: 0;
    width: 100%;
    padding: 0 20px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    font-size: 3vw;
  }
}

@media only screen and (max-width: 800px) {
  .max_width_desc {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
}

.story_text,
.grid_caption {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 1444px) {
  .story_text {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 800px) {
  .story_text {
    width: 100%;
  }
}

.route_inside {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 800px) {
  .route_inside {
    position: relative;
  }
}

.route_red_title {
  color: #e4063e;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 50px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1444px) {
  .route_red_title {
    font-size: 3.6vw;
  }
}

@media only screen and (max-width: 800px) {
  .route_red_title {
    font-size: 8.6vw;
  }
}

.route_bold_title {
  color: #000;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  font-size: 50px;
  padding-left: 35px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1444px) {
  .route_bold_title {
    font-size: 3.6vw;
  }
}

@media only screen and (max-width: 800px) {
  .route_bold_title {
    font-size: 8.6vw;
    padding-left: 0;
  }
}

.story_img {
  width: 60vw;
  position: absolute;
  left: 41%;
  height: 505px;
  -webkit-clip-path: polygon(200px 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(200px 0, 100% 0, 100% 100%, 0% 100%);
}

.story_img .main_img_slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.story_img .main_img_slider .slick-list,
.story_img .main_img_slider .slick-track {
  height: 100%;
}

.story_img .main_img_slider .slider_img {
  width: 100%;
  height: 100% !important;
  min-height: 505px;
  -o-object-fit: cover;
     object-fit: cover;
}

.story_img.mob_only {
  overflow: hidden;
}

.story_img.mob_only .main_img_slider {
  position: absolute;
  top: 0;
}

.story_img.mob_only .main_img_slider .slider_img {
  min-height: auto;
}

@media only screen and (max-width: 800px) {
  .story_img {
    width: calc(100% - 36px);
    padding-top: 52%;
    -webkit-clip-path: none;
    clip-path: none;
    margin-left: auto;
    margin-top: -20px;
    z-index: -1;
    position: relative;
    left: 0;
    top: 8%;
    height: 0;
  }
}

.route_desc {
  width: 480px;
  padding-left: 35px;
  margin-top: 40px;
  font-size: 20px;
  line-height: 1.4;
}

@media only screen and (max-width: 1444px) {
  .route_desc {
    font-size: 1.3vw;
    width: 40vw;
  }
}

@media only screen and (max-width: 800px) {
  .route_desc {
    font-size: 4vw;
    width: 100%;
    padding: 0 10px;
    text-align: right;
    margin-top: 14%;
  }
}

@media only screen and (max-width: 800px) {
  .route_desc.text_left {
    text-align: left;
    padding: 0;
    width: 87%;
  }
}

.fullside_image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  position: absolute;
  top: 115px;
  right: 0;
}

.fullside_image.explore img {
  width: 54%;
  height: auto;
}

.background_route_container {
  width: 100%;
  max-width: 1444px;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  z-index: -1;
}

.background_route_container#svg_1 {
  top: 345px;
}

@media only screen and (max-width: 1444px) {
  .background_route_container#svg_1 {
    top: 30vw;
  }
}

@media only screen and (max-width: 800px) {
  .background_route_container#svg_1 {
    top: 0;
    width: 100%;
    height: 0;
    padding-top: 113%;
  }
}

.background_route_container#svg_2 {
  max-width: 100%;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .background_route_container#svg_2 {
    display: none;
  }
}

.background_route_container#svg_3 {
  max-width: 100%;
  padding-top: 25%;
  height: 0;
}

@media only screen and (max-width: 1444px) {
  .background_route_container#svg_3 {
    padding-top: 40%;
  }
}

.c-line {
  fill: none;
  stroke-miterlimit: 10;
}

.c-line--fill-1 {
  stroke: rgba(229, 15, 69, 0.4);
}

.c-line--fill-2 {
  stroke: #e4063e;
}

.c-line--dashed {
  stroke: #ffffff;
  stroke-dasharray: 4 5;
  stroke-width: 4;
}

.routesvg_1 {
  margin-left: 15%;
  width: 79%;
  position: absolute;
  top: 0;
}

@media only screen and (max-width: 1444px) {
  .routesvg_1 {
    width: 75%;
  }
}

@media only screen and (max-width: 1025px) {
  .routesvg_1 {
    width: 78%;
  }
}

@media only screen and (max-width: 800px) {
  .routesvg_1 {
    width: auto;
    top: 0;
    height: 100%;
    left: 9vw;
    right: auto;
    margin-left: 0;
  }
}

.routesvg_2 {
  margin-left: 24%;
  width: 25%;
  position: absolute;
  top: 0;
}

@media only screen and (max-width: 800px) {
  .routesvg_2 {
    margin-left: 0;
    width: 48%;
    position: absolute;
    top: 0;
    right: 3%;
  }
}

.routesvg_3 {
  left: -2vw;
  width: 54vw;
  height: 100%;
  position: absolute;
  top: 0;
}

@media only screen and (max-width: 1444px) {
  .routesvg_3 {
    left: -27vw;
    width: auto;
  }
}

@media only screen and (max-width: 800px) {
  .routesvg_3 {
    left: auto;
    right: 3vw;
    width: 95%;
    height: auto;
  }
}

.max_width_desc.grid_images {
  max-width: 1444px;
}

@media only screen and (max-width: 1025px) {
  .max_width_desc.grid_images {
    margin-top: 0;
  }
}

@media only screen and (max-width: 800px) {
  .max_width_desc.grid_images {
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    padding-top: 138%;
  }
}

.max_width_desc.grid_caption {
  width: auto;
  position: absolute;
  top: 67px;
  left: 49%;
}

@media only screen and (max-width: 1025px) {
  .max_width_desc.grid_caption {
    top: 122px;
  }
}

@media only screen and (max-width: 800px) {
  .max_width_desc.grid_caption {
    position: relative;
    top: 0;
    left: 0;
    padding-left: 0;
    width: 100%;
  }
  .max_width_desc.grid_caption .cta_bar.single_ended {
    margin-left: 20px;
  }
}

.image_item {
  position: absolute;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.image_item img {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.image_item span {
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  font-size: 40px;
  color: #e4063e;
  opacity: 0.2;
  display: block;
  position: absolute;
}

@media only screen and (max-width: 800px) {
  .image_item span {
    font-size: 9vw;
  }
}

.grid_images {
  position: relative;
  height: 100%;
  top: 80px;
}

.grid_images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 800px) {
  .grid_images img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

#img_1 {
  width: 29.2%;
  height: 22.8%;
  top: 8.4%;
  left: 0;
}

#img_1 span {
  top: -45px;
}

@media only screen and (max-width: 800px) {
  #img_1 span {
    top: -30%;
  }
}

@media only screen and (max-width: 800px) {
  #img_1 {
    width: 65.86%;
    height: auto;
    padding-top: 34%;
    left: 2.9%;
    top: 14.4%;
  }
}

#img_2 {
  width: 16.7%;
  height: 31.09%;
  top: 0;
  left: 29.93%;
}

#img_2 span {
  top: -45px;
}

@media only screen and (max-width: 800px) {
  #img_2 span {
    right: 0;
    top: -22%;
  }
}

@media only screen and (max-width: 800px) {
  #img_2 {
    width: 36%;
    height: auto;
    padding-top: 46%;
    left: 62.2%;
    top: 23%;
  }
}

#img_3 {
  width: 14.9%;
  height: 22.28%;
  top: 32.41%;
  left: 6.25%;
}

#img_3 span {
  left: -50px;
  bottom: 0;
}

@media only screen and (max-width: 800px) {
  #img_3 span {
    top: 0;
    left: -41%;
  }
}

@media only screen and (max-width: 800px) {
  #img_3 {
    width: 33.33%;
    height: auto;
    padding-top: 33%;
    left: 25.16%;
    top: 41%;
  }
}

#img_4 {
  width: 14.9%;
  height: 33.16%;
  top: 32.41%;
  left: 21.94%;
}

#img_4 span {
  right: -55px;
  top: 0;
}

@media only screen and (max-width: 800px) {
  #img_4 span {
    right: 0;
    top: -22%;
    left: 0;
  }
}

@media only screen and (max-width: 800px) {
  #img_4 {
    width: 31.93%;
    height: auto;
    padding-top: 47%;
    left: 0;
    top: 59%;
  }
}

#img_5 {
  width: 27.78%;
  height: 22.8%;
  top: 42.77%;
  left: 37.77%;
}

#img_5 span {
  right: 0;
  top: -50px;
}

@media only screen and (max-width: 800px) {
  #img_5 span {
    top: -34%;
  }
}

@media only screen and (max-width: 800px) {
  #img_5 {
    width: 64%;
    height: auto;
    padding-top: 34%;
    left: 34.68%;
    top: 67.77%;
  }
}

#img_6 {
  width: 20.14%;
  height: 40.93%;
  top: 42.77%;
  left: 66.3%;
}

#img_6 span {
  right: -55px;
  top: 0px;
}

#img_7 {
  width: 20.83%;
  height: 27.98%;
  top: 55.73%;
  left: 0;
}

#img_7 span {
  left: 0;
  bottom: -45px;
}

#img_8 {
  width: 27.78%;
  height: 25.91%;
  top: 66.4%;
  left: 21.94%;
}

#img_8 span {
  left: -55px;
  bottom: 0;
}

#img_9 {
  width: 15.28%;
  height: 25.91%;
  top: 66.4%;
  left: 50.4%;
}

#img_9 span {
  right: -55px;
  bottom: 0;
}

#img_10 {
  width: 12.85%;
  height: 26.94%;
  top: 60.725%;
  left: 87%;
}

#img_10 span {
  right: 0;
  bottom: -45px;
}

section.quiz_section {
  width: 100%;
  min-height: 100vh;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

section.quiz_section[data-quiztype="1"] {
  background: #ef4f51;
}

section.quiz_section[data-quiztype="2"] {
  background: #7284a2;
}

@media only screen and (max-width: 1444px) {
  .quiz_icon_col {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 800px) {
  .quiz_icon_col {
    width: auto;
    height: 40px;
    position: absolute;
    right: 3%;
    top: 30px;
    padding-right: 15px;
  }
}

.quiz_icon {
  width: 80px;
  position: relative;
  padding-bottom: 10px;
}

@media only screen and (max-width: 800px) {
  .quiz_icon {
    width: auto;
    height: 100%;
    padding-bottom: 0;
  }
}

.quiz_icon img {
  width: 100%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (max-width: 800px) {
  .quiz_icon img {
    width: auto;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.quiz_icon:after {
  width: 500px;
  background: #fff;
  height: 1px;
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  content: "";
}

@media only screen and (max-width: 800px) {
  .quiz_icon:after {
    display: none;
  }
}

.quiz_content_col {
  width: 62%;
  font-size: 1.25em;
  color: #fff;
  padding-top: 92px;
  position: relative;
}

@media only screen and (max-width: 800px) {
  .quiz_content_col {
    width: 100%;
    padding-top: 30px;
  }
}

@media only screen and (max-width: 800px) {
  #head_counter {
    display: none;
  }
}

.transition {
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.quiz_bold_title {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 25px;
  width: auto;
  display: inline-block;
  position: relative;
  height: 40px;
}

@media only screen and (max-width: 1025px) {
  .quiz_bold_title {
    font-size: 5vw;
  }
}

@media only screen and (max-width: 800px) {
  .quiz_bold_title {
    font-size: 5vw;
  }
}

@media only screen and (max-width: 767px) {
  .quiz_bold_title {
    font-size: 8vw;
  }
}

@media only screen and (max-width: 800px) {
  .quiz_bold_title:before {
    display: block;
    width: 94vw;
    height: 1px;
    background: #fff;
    content: "";
    position: absolute;
    bottom: -13px;
    left: -20px;
  }
}

.quiz_question_line {
  margin-bottom: 40px;
  color: #fff;
  line-height: 1.4;
}

@media only screen and (max-width: 800px) {
  .quiz_question_line {
    margin-bottom: 20px;
    margin-top: 20px;
  }
}

.quiz_no_counter {
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
  font-size: 40px;
  padding-left: 15px;
}

@media only screen and (max-width: 800px) {
  .quiz_no_counter {
    font-size: 7vw;
  }
}

.ans_select_area .quiz_no_counter {
  padding-left: 0;
  display: block;
}

.ans_select_area .quiz_question_line {
  padding-left: 45px;
}

.mc_answers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

@media only screen and (max-width: 800px) {
  .mc_answers {
    padding-left: 45px;
  }
}

.choice_block {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 40px;
}

.choice_block p {
  width: calc(100% - 80px);
}

@media only screen and (max-width: 800px) {
  .choice_block {
    width: 100%;
    margin-bottom: 20px;
  }
}

.mc_select {
  width: 80px;
  height: 80px;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 40px;
  color: #fff;
  border: solid 2px #fff;
  text-decoration: none;
  text-align: center;
  margin-right: 15px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mc_select:hover, .mc_select.selected {
  border: dashed 2px #fff;
  background: #000;
}

@media only screen and (max-width: 1025px) {
  .mc_select:hover, .mc_select.selected {
    border: solid 2px #fff;
    background: transparent;
  }
}

@media only screen and (max-width: 800px) {
  .mc_select {
    width: 45px;
    height: 45px;
    font-size: 25px;
  }
}

.quiz_content_col > *:not(.quiz_bold_title) {
  opacity: 0;
}

.quiz_content_col.intro_end > *:not(.quiz_bold_title) {
  opacity: 1;
}

@media only screen and (max-width: 800px) {
  .quiz_footprint_col {
    width: 87%;
    margin: 6% auto 0;
  }
}

.steps_chain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  height: 65vh;
  position: relative;
  margin-right: 110px;
}

.steps_chain:before {
  height: 96%;
  width: 2px;
  background: #fff;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 10px;
  z-index: 1;
}

@media only screen and (max-width: 800px) {
  .steps_chain:before {
    left: 10px;
    top: 18%;
    height: 2px;
    width: 90%;
  }
}

@media only screen and (max-width: 800px) {
  .steps_chain {
    width: 100%;
    margin-bottom: 15%;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.step_container {
  z-index: 1;
  position: relative;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .step_container {
    top: -5%;
    position: relative;
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .step_container:first-child:before {
    position: absolute;
    content: '';
    background: #ef4f51;
    width: 100%;
    height: 100%;
    top: -50%;
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .step_container:last-child:before {
    position: absolute;
    content: '';
    background: #ef4f51;
    width: 100%;
    height: 100%;
    bottom: -50%;
  }
}

.step_container:first-child .steps_caption {
  color: #fff;
}

.step_container.current .step {
  background: url(../../images/stepsBackground__active.png) center center no-repeat;
  color: #fff;
  background-size: contain;
}

.step_container.completed .step {
  background: url(../../images/stepsCompleted.png) center center no-repeat;
  color: #fff;
  background-size: contain;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  pointer-events: none;
}

.step_container.completed .step span {
  display: none;
}

@media only screen and (max-width: 1444px) {
  .step_container {
    width: 12%;
  }
}

.quiz_section[data-quiztype="2"] .step_container .step {
  color: #7284a2;
}

.quiz_section[data-quiztype="2"] .step_container.current .step {
  color: #fff;
}

.quiz_section[data-quiztype="2"] .step_container.completed .step {
  background: url(../../images/stepsCompleted_blue.png) center center no-repeat;
  color: #fff;
  background-size: contain;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  pointer-events: none;
}

.quiz_section[data-quiztype="2"] .step_container.completed .step span {
  display: none;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .quiz_section[data-quiztype="2"] .step_container:first-child:before {
    position: absolute;
    content: '';
    background: #7284a2;
    width: 100%;
    height: 100%;
    top: -50%;
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .quiz_section[data-quiztype="2"] .step_container:last-child:before {
    position: absolute;
    content: '';
    background: #7284a2;
    width: 100%;
    height: 100%;
    bottom: -50%;
  }
}

.step {
  width: 64px;
  height: 64px;
  background: url(../../images/stepsBackground.png) center center no-repeat;
  background-size: contain;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #e4063e;
  font-size: 26px;
  text-decoration: none;
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
}

@media only screen and (max-width: 800px) {
  .step {
    width: 69%;
    height: 38%;
    font-size: 3.5vw;
  }
}

.steps_caption {
  font-family: "Oswald", sans-serif;
  position: absolute;
  top: 25%;
  width: 88px;
  left: 70px;
  display: inline-block;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.3);
  margin-left: 15px;
}

@media only screen and (max-width: 800px) {
  .steps_caption {
    top: 55%;
    left: 0;
    margin-left: 0;
    width: 180%;
    font-size: 3.3vw;
    line-height: 1.2;
  }
}

.quiz_side_nav {
  height: 215px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  font-weight: bold;
  position: relative;
  text-transform: uppercase;
  margin-top: auto;
  opacity: 0;
}

.quiz_side_nav a {
  display: inline-block;
  height: 100%;
  width: 100%;
}

.quiz_side_nav:after {
  height: 100%;
  width: 1px;
  background: #fff;
  content: "";
  left: 20px;
  position: absolute;
  bottom: 0;
  display: block;
}

.quiz_side_nav .vertical_text {
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  text-align: right;
}

@media only screen and (max-width: 800px) {
  .quiz_side_nav {
    display: none;
  }
}

.vertical_text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.onroute_poi_caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
}

@media only screen and (max-width: 800px) {
  .onroute_poi_caption {
    padding-top: 7%;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    position: relative;
  }
}

.result_pois_section .left_headline {
  width: 480px;
  padding-right: 35px;
}

@media only screen and (max-width: 800px) {
  .result_pois_section .left_headline {
    width: 100%;
    padding: 0 20px;
  }
}

.result_pois_section .left_headline .route_bold_title {
  text-align: right;
}

@media only screen and (max-width: 800px) {
  .result_pois_section .left_headline .route_bold_title {
    text-align: center;
  }
}

@media only screen and (max-width: 800px) {
  .result_pois_section .left_headline .route_red_title {
    text-align: center;
  }
}

.result_pois_section .right_headline {
  width: 489px;
  padding-left: 45px;
  font-size: 20px;
  line-height: 1.4;
}

.result_pois_section .right_headline strong {
  text-transform: uppercase;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) {
  .result_pois_section .right_headline {
    font-size: 18px;
  }
}

@media only screen and (max-width: 800px) {
  .result_pois_section .right_headline {
    text-align: center;
    width: 100%;
    padding: 0 20px;
    line-height: 1.2;
    margin-top: 0;
    padding-top: 32%;
    font-size: 4vw;
  }
}

.poi_slider {
  visibility: hidden;
}

.poi_slider.slick-initialized {
  visibility: visible;
}

.poi_slider .slick-arrow {
  top: 134px;
}

@media only screen and (max-width: 1024px) {
  .poi_slider .slick-arrow {
    top: 135px;
    padding-top: 2%;
  }
}

@media only screen and (max-width: 800px) {
  .poi_slider {
    padding-top: 20px;
  }
}

.poi_slider:before {
  width: 100%;
  height: 2px;
  background: #e4063e;
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  top: 142px;
}

@media only screen and (max-width: 800px) {
  .poi_slider:before {
    top: 132px;
  }
}

@media only screen and (max-width: 800px) {
  .poi_slider .slick-arrow {
    top: 125px;
    padding-top: 4%;
  }
}

@media only screen and (max-width: 800px) {
  .poi_slider .slick-arrow.slick-next, .poi_slider .slick-arrow.slick-prev {
    background-size: contain;
  }
}

@media only screen and (max-width: 800px) {
  .poi_slider .stop_img {
    width: 90% !important;
  }
}

.poi_slider .poi_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 560px;
  color: #000;
}

.poi_slider .poi_item:focus {
  outline: none;
}

.poi_slider .poi_item .item_wrapper {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.poi_slider .stop_map_btn {
  width: 28px;
  margin: 4px auto 33px;
}

@media only screen and (max-width: 800px) {
  .poi_slider .stop_map_btn {
    margin: 10px auto 26px;
  }
}

.poi_slider .stop_map_btn img {
  width: 100%;
}

.poi_slider .stop_id {
  width: 100%;
  color: #e4063e;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0.7em;
}

.poi_slider .stop_title {
  width: 96%;
  margin: 0 auto;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  font-size: 35px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  height: 2.8em;
}

@media only screen and (max-width: 800px) {
  .poi_slider .stop_title {
    font-size: 22px !important;
    line-height: 1.2;
  }
}

.poi_slider .stop_img {
  max-width: 550px;
  width: 96%;
  position: relative;
  margin: 0 auto 40px;
}

@media only screen and (max-width: 1024px) {
  .poi_slider .stop_img {
    max-width: 450px;
  }
}

.poi_slider .stop_img:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 10px;
  left: -10px;
  display: block;
  content: "";
  background: none;
  border: #000000 solid 1px;
}

.poi_slider .stop_img:after {
  width: 144px;
  height: 106px;
  display: block;
  content: "";
  background: url(../../images/poi_slider_mapbtn_triangle.png) right bottom no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
}

.poi_slider .stop_img img {
  width: 100%;
  position: relative;
  max-height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}

.poi_slider .stop_name {
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.4;
}

.poi_slider .stop_desc {
  width: 90%;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto 15px;
  max-height: 3em;
  position: relative;
  overflow: hidden;
}

.poi_slider .stop_desc.showed {
  display: block;
  max-height: none;
  height: auto;
}

.poi_slider .readmore_poi {
  width: 100%;
  display: inline-block;
  line-height: 1.4;
  text-align: center;
  color: #e4063e;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.poi_slider .readmore_poi:hover {
  color: #111;
}

.poi_slider_section {
  margin-top: 25px;
}

.poi_bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  font-size: 20px;
  line-height: 1.4;
}

.poi_bottom p {
  width: 100%;
  text-align: center;
  color: #fff;
}

@media only screen and (max-width: 800px) {
  .poi_bottom {
    width: 100%;
    font-size: 4vw;
  }
}

.shadow_btn {
  color: #e4063e;
  width: auto;
  margin: 20px auto;
}

.shadow_btn a {
  color: #e4063e;
  text-decoration: none;
  text-transform: uppercase;
  padding: 15px 23px;
  font-weight: bold;
  text-align: center;
  background: #fff;
  border: 2px solid transparent;
  display: inline-block;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .shadow_btn a {
    display: block;
    width: 300px;
  }
}

.shadow_btn a:before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 10px;
  left: -10px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.shadow_btn:hover a {
  background: #111;
  color: #fff;
}

.shadow_btn:hover a:before {
  border: 2px solid rgba(0, 0, 0, 0.2);
}

.overlay_map_section {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
}

.overlay_map_section .map_wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 90;
  position: relative;
}

.overlay_map_section .map_wrapper #closeMapBg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}

.overlay_map_section .map_wrapper .m_labels {
  font-family: "Rajdhani", sans-serif;
  color: #e4063e;
  font-size: 14px;
  font-weight: bold;
  width: 100px;
  text-align: center;
  text-shadow: #d8d8d8 0.1em 0.1em 0.1em;
}

.overlay_map_section .map_api__container {
  width: 60%;
  height: 50vh;
  margin: 10px auto;
  position: relative;
  z-index: 999;
}

.overlay_map_section .map_api__container iframe {
  width: 100%;
}

@media only screen and (max-width: 800px) {
  .overlay_map_section .map_api__container {
    width: 80%;
  }
}

.database_wrapper {
  position: relative;
  height: 430px;
}

@media only screen and (max-width: 800px) {
  .database_wrapper {
    height: auto;
  }
}

.database_wrapper .max_width_desc {
  overflow: visible;
  height: 100%;
}

.database_wrapper .top_db_left {
  width: 50%;
  height: 100%;
  padding-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.database_wrapper .top_db_left .route_desc {
  margin-top: 15%;
}

.database_wrapper .top_db_left p {
  width: 100%;
  line-height: 1.2;
}

@media only screen and (max-width: 800px) {
  .database_wrapper .top_db_left p {
    padding-left: 0;
    width: 96%;
    margin: 0 auto;
    text-align: center;
  }
}

.database_wrapper .top_db_left .route_desc {
  width: 480px;
  padding-left: 67px;
}

@media only screen and (max-width: 800px) {
  .database_wrapper .top_db_left .route_desc {
    padding-left: 0;
    width: 100%;
    margin: 30px auto 0;
    text-align: center;
  }
}

.database_wrapper .top_db_left .route_bold_title {
  padding-left: 67px;
}

@media only screen and (max-width: 800px) {
  .database_wrapper .top_db_left .route_bold_title {
    padding-left: 0;
    width: 96%;
    margin: 0 auto;
    text-align: center;
  }
}

@media only screen and (max-width: 800px) {
  .database_wrapper .top_db_left {
    width: 100%;
    padding: 0 20px;
    margin-top: 20px;
  }
}

.right_db_img {
  width: 50vw;
  position: absolute;
  left: 50%;
}

@media only screen and (max-width: 800px) {
  .right_db_img {
    width: 100%;
    position: relative;
    margin-top: 30px;
    left: 0;
  }
}

.right_db_img .image_mask_container {
  width: 100%;
  height: 430px;
  position: relative;
  -webkit-clip-path: polygon(200px 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(200px 0, 100% 0, 100% 100%, 0% 100%);
}

.right_db_img .image_mask_container .main_img_slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.right_db_img .image_mask_container .main_img_slider .slick-list,
.right_db_img .image_mask_container .main_img_slider .slick-track {
  height: 100%;
}

.right_db_img .image_mask_container .main_img_slider .slider_img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 1444px) {
  .right_db_img .image_mask_container {
    height: 345px;
  }
}

@media only screen and (max-width: 800px) {
  .right_db_img .image_mask_container {
    clip-path: none;
    -webkit-clip-path: none;
    height: 230px;
  }
}

.right_db_img .image_mask_container[data-dbid="1"] {
  background: url(../../images/hike_banner.jpg) top left no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 800px) {
  .right_db_img .image_mask_container[data-dbid="1"] {
    background-position: center;
  }
}

.right_db_img .image_mask_container[data-dbid="2"] {
  background: url(../../images/food_banner.jpg) top left no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 800px) {
  .right_db_img .image_mask_container[data-dbid="2"] {
    background-position: center;
  }
}

.right_db_img .image_mask_container[data-dbid="3"] {
  background: url(../../images/urban_banner.jpg) top left no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 800px) {
  .right_db_img .image_mask_container[data-dbid="3"] {
    background-position: center;
  }
}

.body-pin .db_navigation.fixed {
  top: 98px;
}

@media only screen and (max-width: 800px) {
  .body-pin .db_navigation.fixed {
    top: 70px;
  }
}

.db_navigation {
  position: relative;
  margin-top: 95px;
  background: #fff;
}

@media only screen and (max-width: 800px) {
  .db_navigation {
    margin-top: 85px;
  }
}

.db_navigation:before {
  background: #000;
  height: 2px;
  width: 100vw;
  content: "";
  display: block;
  position: absolute;
  top: 40px;
  z-index: 1;
}

@media only screen and (max-width: 800px) {
  .db_navigation:before {
    top: 30px;
  }
}

.db_navigation.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 45px 0 25px 0;
  z-index: 50;
  margin-top: 0;
}

@media only screen and (max-width: 800px) {
  .db_navigation.fixed {
    padding: 50px 0 25px 0;
  }
}

.db_navigation.fixed:before {
  top: 86px;
}

@media only screen and (max-width: 800px) {
  .db_navigation.fixed:before {
    top: 83px;
  }
}

.db_navigation .db_nav_name {
  color: #000;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  font-size: 25px;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  top: -39%;
  width: 200px;
  left: -63%;
}

@media only screen and (max-width: 800px) {
  .db_navigation .db_nav_name {
    font-size: 18px;
    width: auto;
    left: -9%;
    top: -45px;
    word-break: initial;
  }
}

.db_navigation .max_width_desc {
  position: relative;
  z-index: 2;
}

.db_navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-around;
  width: 100%;
}

.db_navigation ul li {
  position: relative;
}

.db_navigation ul li a {
  width: 85px;
  height: 85px;
  display: block;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (max-width: 800px) {
  .db_navigation ul li a {
    width: 65px;
    height: 65px;
  }
}

.db_navigation ul li a.db_nav_btn_3 {
  background: url(../../images/db_natural.png) center center no-repeat;
  background-size: cover;
}

.db_navigation ul li a.db_nav_btn_3.active, .db_navigation ul li a.db_nav_btn_3:hover {
  background: url(../../images/db_natural_on.png) center center no-repeat;
  background-size: cover;
}

.db_navigation ul li a.db_nav_btn_1 {
  background: url(../../images/db_foodie.png) center center no-repeat;
  background-size: cover;
}

.db_navigation ul li a.db_nav_btn_1.active, .db_navigation ul li a.db_nav_btn_1:hover {
  background: url(../../images/db_foodie_on.png) center center no-repeat;
  background-size: cover;
}

.db_navigation ul li a.db_nav_btn_2 {
  background: url(../../images/db_urban.png) center center no-repeat;
  background-size: cover;
}

.db_navigation ul li a.db_nav_btn_2.active, .db_navigation ul li a.db_nav_btn_2:hover {
  background: url(../../images/db_urban_on.png) center center no-repeat;
  background-size: cover;
}

.masonry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 60px;
}

.masonry#d_masonry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 800px) {
  .masonry#d_masonry {
    display: none;
  }
}

.masonry#m_masonry {
  display: none;
}

@media only screen and (max-width: 800px) {
  .masonry#m_masonry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (min-width: 500px) {
  .masonry {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  width: 100%;
  margin: 0 25px;
}

@media only screen and (min-width: 500px) {
  .column {
    width: calc(100% / 3);
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .column {
    display: block;
    display: -webkit-box;
  }
}

.item {
  padding: 25px 25px 55px 25px;
  counter-increment: item-counter;
  background: #eeeeee;
  margin-bottom: 40px;
}

@media only screen and (max-width: 800px) {
  .item {
    width: calc(100% - 40px);
    margin: 20px auto;
    padding: 10px;
  }
}

.item.green .stop_id_name,
.item.green a.db_readmore {
  color: #41be4d;
}

.item.green .db_img_wrapper:after {
  width: 144px;
  height: 106px;
  display: block;
  content: "";
  background: url(../../images/db_map_btn_green_triangle.png) right bottom no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
}

.item.yellow .stop_id_name,
.item.yellow a.db_readmore {
  color: #ffb22b;
}

.item.yellow .db_img_wrapper:after {
  width: 144px;
  height: 106px;
  display: block;
  content: "";
  background: url(../../images/db_map_btn_yellow_triangle.png) right bottom no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
}

.item.blue .stop_id_name,
.item.blue a.db_readmore {
  color: #3eb4e8;
}

.item.blue .db_img_wrapper:after {
  width: 144px;
  height: 106px;
  display: block;
  content: "";
  background: url(../../images/db_map_btn_blue_triangle.png) right bottom no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
}

.item__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.item__content p {
  width: 100%;
  line-height: 1.2;
  max-height: 2.3em;
  position: relative;
  overflow: hidden;
}

.item__content p.showed {
  display: block;
  max-height: none;
  height: auto;
}

.item__content .title {
  font-family: "Oswald", sans-serif, sans-serif;
  font-weight: bold;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 5px;
  width: 100%;
}

@media only screen and (max-width: 800px) {
  .item__content .title {
    font-size: 20px;
  }
}

.item__content .stop_id_name,
.item__content .db_readmore {
  font-weight: bold;
  text-decoration: none;
}

.item__content .db_readmore {
  margin: 15px auto 0px;
  text-align: left;
  width: 100%;
  display: inline-block;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}

@media only screen and (min-width: 800px) {
  .item__content .db_readmore:hover {
    color: #111 !important;
  }
}

.item__content .db_img_wrapper {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
  min-height: 260px;
  width: 100%;
}

.item__content .db_img_wrapper:after {
  width: 144px;
  height: 106px;
  display: block;
  content: "";
  background: url(../../images/poi_slider_mapbtn_triangle.png) right bottom no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
}

.item__content .db_item_img {
  width: 100%;
  display: block;
  min-height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 800px) {
  .item__content .db_item_img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.item__content .db_map_btn {
  width: 60px;
  display: none;
}

.item__content .db_map_btn img {
  width: 100%;
}

.item__content .db_item_head {
  width: 100%;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

.item__content .db_item_head .db_name_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.item__content .db_item_head .db_name_row p {
  margin: 2px 0;
}

footer {
  background: #000;
  color: #fff;
  width: 100%;
  padding: 23px;
  position: relative;
}

@media only screen and (max-width: 800px) {
  footer {
    padding: 17px;
  }
}

footer a {
  text-decoration: none;
  color: #fff;
}

footer .footer_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  width: 98%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
}

@media only screen and (max-width: 800px) {
  footer .footer_container {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
}

@media only screen and (max-width: 800px) {
  footer .footer_container .copyright {
    width: 100%;
    text-align: center;
    font-size: 3.4vw;
  }
}

@media only screen and (max-width: 800px) {
  footer .footer_container .footer_logos {
    width: 100%;
    text-align: center;
    margin-top: 17px;
  }
}

footer .brand_logo {
  width: 170px;
  margin-right: 23px;
  display: inline-block;
}

footer .brand_logo img {
  width: 100%;
}

@media only screen and (max-width: 800px) {
  footer .brand_logo {
    width: 137px;
    display: inline-block;
  }
  footer .brand_logo img {
    width: 100%;
  }
}

footer .hktb_logo {
  width: 199px;
  display: inline-block;
}

footer .hktb_logo img {
  width: 100%;
}

@media only screen and (max-width: 800px) {
  footer .hktb_logo {
    width: 136px;
    display: inline-block;
  }
  footer .hktb_logo img {
    width: 100%;
  }
}

@media only screen and (max-width: 1444px) {
  .header_container {
    padding: 0 20px;
  }
  .grid_images {
    left: 0;
    width: 90%;
    margin-top: 8%;
  }
}

@media only screen and (max-width: 800px) {
  #img_6,
  #img_7,
  #img_8,
  #img_9,
  #img_10 {
    display: none;
  }
}
/*# sourceMappingURL=common.css.map */