html, body {
  padding: 0;
  margin: 0;
  font-size: 1vw;
  font-family: 'Montserrat', sans-serif;
  color: white;
  min-height: 100vh;
  background-color: black; }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-20px); }
  60% {
    transform: translateY(-8px); } }
a {
  text-decoration: none !important;
  color: inherit; }

.cta {
  display: flex;
  height: 2.5vw;
  padding: 0.833vw 1.67vw;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: #DFDFDF;
  border: 1px solid #DFDFDF;
  box-sizing: border-box;
  font-size: 0.833rem;
  font-weight: 600;
  display: inline-block;
  line-height: 1.08;
  vertical-align: middle;
  letter-spacing: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none !important; }
  .cta a {
    text-decoration: none; }
  .cta:hover {
    background: #D34037;
    border-color: #D34037;
    color: white; }
  .cta.primary {
    background: #D34037;
    border-color: #D34037;
    color: white; }
    .cta.primary a {
      text-decoration: none; }
    .cta.primary:hover {
      background: #EC7068;
      border-color: #EC7068; }

header {
  display: flex;
  box-sizing: border-box;
  padding: 1vw 6.25vw;
  justify-content: space-between;
  align-items: center; }
  header .left {
    display: flex;
    width: 28.33vw;
    align-items: center;
    gap: 0.52vw;
    flex-shrink: 0; }
    header .left img {
      height: 2.71vw;
      width: auto; }
    header .left .line {
      width: 1px;
      height: 2.19vw;
      background: #606060; }
    header .left p {
      margin: 0;
      color: #9F9F9F;
      font-size: 0.94vw;
      font-style: normal;
      font-weight: 500;
      line-height: 155.556%; }

section.hero {
  display: flex;
  padding: 5vw 13.65vw;
  flex-direction: column;
  align-items: center;
  gap: 2.5vw;
  display: flex;
  box-sizing: border-box; }
  section.hero .container {
    display: flex;
    align-items: flex-start;
    gap: 1.25vw;
    width: 100%; }
    section.hero .container article {
      display: flex;
      width: 35.73vw;
      flex-direction: column;
      align-items: flex-start;
      gap: 1.25vw;
      flex: 1; }
      section.hero .container article h1 {
        margin: 0;
        font-size: 3.33vw;
        font-style: normal;
        font-weight: 700;
        line-height: 112.5%; }
        section.hero .container article h1 strong {
          color: #D34037;
          font-weight: 700; }
      section.hero .container article p {
        margin: 0;
        color: #DFDFDF;
        font-size: 1.17vw;
        font-style: normal;
        font-weight: 500;
        line-height: 145.45%;
        letter-spacing: 0.025vw; }
        section.hero .container article p span {
          display: block;
          padding: 4px; }
    section.hero .container .poster {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      align-self: stretch;
      flex: 1;
      position: relative; }
      section.hero .container .poster video {
        width: 43.23vw;
        height: 30.36vw;
        height: auto;
        position: absolute;
        left: -0.1vw;
        top: 50%;
        margin-top: -15.2vw;
        filter: contrast(1.06); }

.mob-arrows {
  display: none !important;
  visibility: hidden;
  pointer-events: all !important; }

.arrows {
  width: 87.66vw;
  height: 3.13vw;
  position: absolute;
  left: 50%;
  top: 27.02vw;
  display: flex;
  justify-content: space-between;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  display: none; }
  .arrows .arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #202020;
    width: 3.13vw;
    height: 3.13vw;
    pointer-events: auto; }
    .arrows .arrow svg {
      width: 1.25vw;
      height: 1.25vw; }
      .arrows .arrow svg path {
        transition: all 0.3s ease; }
    .arrows .arrow:hover svg path {
      fill: white !important; }

section.inner-map {
  display: flex;
  padding: 2.5vw 13.65vw;
  flex-direction: column;
  align-items: center;
  gap: 2.5vw;
  display: flex;
  box-sizing: border-box;
  display: none; }

.map {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; }
  .map:before {
    content: '';
    top: 50%;
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    background: #606060; }
  .map.inner .step.active svg circle:nth-child(2) {
    fill: black !important;
    stroke: #9F9F9F !important; }
  .map.inner .step.active svg circle:nth-child(3) {
    fill: #9F9F9F !important;
    stroke: #9F9F9F !important; }
  .map.inner .step.active p {
    opacity: 1 !important; }
  .map.inner .step p {
    opacity: 0;
    color: #9F9F9F !important; }
  .map.inner .step:hover:not(.active) p {
    opacity: 1;
    color: #EC7068 !important; }
  .map .step {
    text-align: center;
    display: flex;
    width: 7.81vw;
    height: 6.25vw;
    padding: 2.3vw 0px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 0.52vw;
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
    cursor: pointer; }
    .map .step:hover svg circle:nth-child(2) {
      fill: black !important;
      stroke: #EC7068 !important; }
    .map .step:hover svg circle:nth-child(3) {
      fill: #EC7068 !important;
      stroke: #EC7068 !important; }
    .map .step:hover p {
      color: #EC7068; }
    .map .step:nth-child(even) {
      justify-content: center; }
      .map .step:nth-child(even) article {
        display: flex;
        height: 6.67vw;
        padding: 2.7vw 0px;
        padding-bottom: 0;
        box-sizing: border-box;
        flex-direction: column-reverse;
        justify-content: flex-end;
        align-items: center;
        gap: 0.26vw;
        flex-shrink: 0;
        align-self: stretch; }
    .map .step article {
      display: flex;
      width: 7.81vw;
      padding-top: 1.15vw;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      gap: 0.104vw; }
    .map .step p {
      font-family: Lato;
      font-size: 0.94vw;
      font-style: normal;
      font-weight: 700;
      line-height: 155.56%;
      margin: 0;
      color: #D34037;
      transition: all 0.3s ease;
      white-space: nowrap; }
    .map .step svg {
      height: 1.46vw;
      width: 1.46vw; }
      .map .step svg circle {
        transition: all 0.3s ease; }

section.banner {
  display: flex;
  padding: 5vw 0px;
  flex-direction: column;
  align-items: center;
  gap: 2.5vw;
  background: linear-gradient(180deg, #131313 0%, rgba(19, 19, 19, 0) 100%);
  box-sizing: border-box; }
  section.banner .box {
    display: flex;
    width: 57.92vw;
    height: 10.16vw;
    padding: 1.25vw 2.5vw;
    align-items: center;
    border: 1px solid #202020;
    background: #000;
    position: relative; }
    section.banner .box img {
      width: 24.48vw;
      height: auto;
      position: absolute;
      right: 0px;
      bottom: 0; }
    section.banner .box article {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.83vw;
      flex: 1 0 0; }
      section.banner .box article p {
        margin: 0;
        color: #FFF;
        font-size: 1.25vw;
        font-style: normal;
        font-weight: 700;
        line-height: 116.67%; }

section.inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 2.5vw;
  margin-bottom: 2.5vw; }
  section.inner .content {
    display: flex;
    width: 72.92vw;
    align-items: flex-start;
    gap: 1.25vw;
    align-items: stretch; }
    section.inner .content .left {
      display: flex;
      width: 35.73vw;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.83vw;
      flex-shrink: 0; }
      section.inner .content .left h2, section.inner .content .left h3, section.inner .content .left h4, section.inner .content .left p {
        margin: 0; }
      section.inner .content .left h2 {
        color: #FFF;
        font-family: Montserrat;
        font-size: 3.33vw;
        font-style: normal;
        font-weight: 700;
        line-height: 112.5%; }
      section.inner .content .left h3 {
        color: #D34037;
        font-family: Lato;
        font-size: 1.25vw;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; }
      section.inner .content .left h4 {
        color: #9F9F9F;
        font-family: Montserrat;
        font-size: 0.94vw;
        font-style: normal;
        font-weight: 500;
        line-height: 155.556%; }
      section.inner .content .left p {
        color: #DFDFDF;
        font-family: Lato;
        font-size: 0.94vw;
        font-style: normal;
        font-weight: 400;
        line-height: 155.556%; }
    section.inner .content .poster {
      flex: 1;
      position: relative;
      height: 29.17vw; }
      section.inner .content .poster img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        height: 28.23vw;
        width: auto; }
  section.inner .more {
    display: flex;
    width: 72.92vw;
    padding: 1.25vw 0px;
    align-items: flex-start;
    gap: 1.25vw; }
    section.inner .more .arrows.mob-arrows.shown {
      display: none !important; }
    section.inner .more .awards {
      display: flex;
      width: 35.73vw;
      height: 13.44vw;
      padding: 0px 0px;
      flex-direction: column;
      align-items: flex-start;
      gap: 1.25vw;
      flex-shrink: 0;
      box-sizing: border-box; }
      section.inner .more .awards h5 {
        margin: 0;
        color: #FFF;
        font-family: Montserrat;
        font-size: 1.25vw;
        font-style: normal;
        font-weight: 700;
        line-height: 116.667%; }
      section.inner .more .awards ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.21vw; }
        section.inner .more .awards ul li {
          display: flex;
          align-items: flex-start;
          gap: 0.42vw; }
          section.inner .more .awards ul li img {
            height: 1.67vw;
            width: auto; }
          section.inner .more .awards ul li p {
            margin: 0;
            color: #DFDFDF;
            font-family: Lato;
            font-size: 0.937vw;
            font-style: normal;
            font-weight: 400;
            line-height: 155.556%; }
            section.inner .more .awards ul li p strong {
              font-weight: 700; }
    section.inner .more .apply {
      display: flex;
      width: 35.73vw;
      height: 12.71vw;
      padding: 1.25vw 1.25vw;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 1.25vw;
      flex-shrink: 0;
      background: #101010;
      position: relative;
      box-sizing: border-box; }
      section.inner .more .apply img {
        width: 17.41vw;
        height: auto;
        position: absolute;
        bottom: 0;
        right: 0; }
      section.inner .more .apply article {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.83vw;
        flex: 1 0 0;
        justify-content: center; }
        section.inner .more .apply article h4 {
          margin: 0;
          color: #FFF;
          font-size: 1.25vw;
          font-style: normal;
          font-weight: 700;
          font-weight: 500;
          line-height: 116.667%; }
        section.inner .more .apply article p {
          margin: 0;
          color: #FFF;
          font-size: 0.83vw;
          font-style: normal;
          font-weight: 700;
          line-height: 125%;
          font-weight: 400; }
  section.inner .credit {
    color: #9F9F9F;
    font-family: Lato;
    font-size: 0.65vw;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    text-align: center; }
    section.inner .credit a {
      color: inherit;
      text-decoration: underline !important; }

.mapwrap {
  width: 100%; }

.main-credit {
  color: #9F9F9F;
  font-family: Lato;
  font-size: 0.65vw;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  text-align: center; }
  .main-credit a {
    color: inherit;
    text-decoration: underline !important; }

section.bottom {
  display: flex;
  flex-direction: column;
  align-items: center; }
  section.bottom .art {
    display: flex;
    height: 42.71vw;
    padding: 1.56vw 0px;
    flex-direction: column;
    align-items: center;
    gap: 1.67vw;
    align-self: stretch;
    box-sizing: border-box;
    background: url("../img/footer.jpg") center center no-repeat;
    background-size: cover;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 41.1%, #000 100%), url("../img/footer.jpg"), lightgray 0px 0px/100% 113.071% no-repeat;
    background-size: cover;
    background-position: center; }
    section.bottom .art .backtop {
      text-align: center;
      font-size: 0.83vw;
      display: inline-block;
      font-style: normal;
      font-weight: 600;
      line-height: 150%;
      color: #DFDFDF;
      margin-bottom: 3.5vw;
      opacity: 0.7;
      transition: all 0.3s ease;
      cursor: pointer; }
      section.bottom .art .backtop:hover {
        opacity: 1; }
        section.bottom .art .backtop:hover svg {
          animation: bounce 2s infinite; }
      section.bottom .art .backtop svg {
        width: 1.25vw; }
      section.bottom .art .backtop img {
        height: 4.17vw; }
  section.bottom footer {
    margin-top: -11.35vw; }
    section.bottom footer .nav {
      display: flex;
      padding: 3.33vw 0px;
      justify-content: center;
      align-items: flex-start;
      gap: 7.5vw; }
      section.bottom footer .nav .logo {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.52vw; }
        section.bottom footer .nav .logo img {
          width: 4.69vw;
          height: auto; }
      section.bottom footer .nav ul {
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.63vw; }
        section.bottom footer .nav ul a {
          color: inherit;
          text-decoration: none; }
        section.bottom footer .nav ul li {
          color: #9F9F9F;
          font-size: 0.73vw;
          font-weight: 400;
          line-height: 142.857%;
          transition: all 0.2s ease; }
          section.bottom footer .nav ul li:hover {
            color: white; }
          section.bottom footer .nav ul li:first-child {
            font-size: 0.83vw;
            line-height: 150%; }
            section.bottom footer .nav ul li:first-child:hover {
              color: #9F9F9F; }

.owfooter {
  background: #101010;
  color: #9F9F9F;
  font-size: 0.73vw;
  box-sizing: border-box;
  padding: 0px 6.25vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; }
  .owfooter .nav {
    display: flex;
    gap: 1.04vw; }
  .owfooter a {
    color: #9F9F9F !important;
    text-decoration: none; }
  .owfooter .social {
    display: flex;
    gap: 1.04vw; }

@media only screen and (max-width: 600px) {
  br.desk {
    content: ""; }

  br.desk:after {
    content: " "; } }
@media only screen and (max-width: 600px) {
  .cta {
    display: flex;
    height: 40px;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none; }

  header {
    padding: 20px; }
    header.inner .cta {
      display: none; }
    header.inner .left {
      display: flex;
      height: 40px;
      justify-content: center;
      align-items: center;
      gap: 8px;
      width: 100%; }
      header.inner .left p {
        font-size: 14px;
        line-height: 20px; }
      header.inner .left .line {
        width: 1px;
        height: 24px; }
      header.inner .left .line, header.inner .left p {
        display: inline-block; }
    header a {
      text-decoration: none; }
    header .left img {
      height: 40px; }
    header .left .line, header .left p {
      display: none; }

  section.hero {
    display: flex;
    width: 100%;
    padding: 24px 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px; }
    section.hero .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      align-self: stretch;
      text-align: center; }
      section.hero .container article {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
        padding: 0px 20px;
        box-sizing: border-box;
        width: 100%; }
        section.hero .container article h1 {
          font-size: 32px; }
        section.hero .container article p {
          font-size: 18px; }
        section.hero .container article .cta {
          width: 130px;
          white-space: nowrap; }
      section.hero .container .poster {
        height: 253px;
        background: url("../img/heromob.png") center center no-repeat;
        background-size: cover;
        height: 253px;
        justify-self: center;
        width: 100%;
        background: url(../img/heromob.png) center center no-repeat;
        background-size: cover;
        align-self: center;
        flex: none; }
        section.hero .container .poster video {
          display: none; }

  .mapwrap {
    width: 100%; }
    .mapwrap .map {
      display: flex;
      width: 100%;
      justify-content: space-between;
      align-items: center;
      flex-direction: column;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch; }
      .mapwrap .map:before {
        content: '';
        top: -37px;
        padding-top: 0;
        height: 100%;
        width: 1px;
        position: absolute;
        left: 50%;
        background: #606060;
        margin-left: -0.5px;
        background: linear-gradient(180deg, rgba(96, 96, 96, 0) 2%, #606060 6.74%); }
      .mapwrap .map .step {
        display: flex;
        width: 100%;
        padding: 08px 0px 08px 173px;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        height: auto;
        justify-content: left; }
        .mapwrap .map .step p {
          font-size: 18px; }
        .mapwrap .map .step svg {
          width: 28px;
          height: 28px; }
        .mapwrap .map .step:nth-child(odd) {
          padding: 08px 174px 08px 0px;
          justify-content: flex-end; }
        .mapwrap .map .step:nth-child(even) article {
          height: 84px;
          justify-content: flex-end;
          flex-direction: row-reverse; }
        .mapwrap .map .step article {
          display: flex;
          height: 27px;
          padding: 19px 0px;
          flex-direction: row;
          align-items: center;
          gap: 8px;
          width: auto; }

  section.banner {
    display: flex;
    width: 100%;
    height: 497px;
    padding: 96px 0px;
    flex-direction: column;
    align-items: center;
    gap: 48px; }
    section.banner .box {
      display: flex;
      width: 100%;
      height: 359px;
      padding: 24px 48px;
      box-sizing: border-box;
      align-items: flex-end;
      flex-shrink: 0; }
      section.banner .box img {
        width: 394px;
        height: 261px;
        position: absolute;
        left: -10px;
        top: -86px; }
      section.banner .box article {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        flex: 1 0 0;
        text-align: center; }
        section.banner .box article p {
          width: 90%;
          font-size: 20px; }

  .main-credit {
    font-size: 10px;
    box-sizing: border-box;
    padding: 24px 36px; }

  section.bottom {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 24px; }
    section.bottom .art {
      display: flex;
      padding: 16px 0px 50px 0px;
      flex-direction: column;
      align-items: center;
      gap: 136px;
      height: 510px;
      align-self: stretch;
      background-position: center top;
      background-size: auto 130%; }
      section.bottom .art .backtop {
        text-align: center;
        font-size: 16px; }
        section.bottom .art .backtop svg {
          width: 24px; }
        section.bottom .art .backtop img {
          height: 4.17vw; }
    section.bottom footer {
      width: 100%;
      margin-top: 10px; }
      section.bottom footer .nav {
        display: flex;
        padding: 0px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        box-sizing: border-box;
        width: 100%;
        /* align-self: stretch; */
        justify-content: center; }
        section.bottom footer .nav .logo {
          width: 100%; }
          section.bottom footer .nav .logo img {
            height: 40px;
            width: auto; }
        section.bottom footer .nav ul {
          gap: 8px; }
          section.bottom footer .nav ul li {
            font-size: 14px; }
          section.bottom footer .nav ul li:first-child {
            font-size: 16px; }

  .owfooter {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    padding-bottom: 30px;
    padding-bottom: 84px; }
    .owfooter p {
      font-size: 14px;
      margin: 0; }
    .owfooter .social {
      display: flex;
      padding: 3px 0px;
      justify-content: center;
      align-items: center;
      gap: 20px; }

  section.inner-map {
    padding: 24px 0; }

  section.inner .credit {
    font-size: 10px;
    box-sizing: border-box;
    padding: 24px 36px; }
  section.inner .content {
    display: flex;
    padding: 0px 20px;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    gap: 24px;
    align-self: stretch;
    width: 100%;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center; }
    section.inner .content .left {
      width: 100%;
      box-sizing: border-box;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 8px;
      align-self: stretch; }
      section.inner .content .left h2 {
        font-size: 32px; }
      section.inner .content .left h3 {
        font-size: 24px; }
      section.inner .content .left h4 {
        font-size: 18px; }
      section.inner .content .left p {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        text-align: left; }
    section.inner .content .poster {
      height: 325px;
      flex: none;
      width: 100%; }
      section.inner .content .poster img {
        height: 325px;
        left: 50%;
        top: 0;
        transform: translateX(-50%); }

  section.inner .more {
    display: flex;
    width: 100%;
    padding: 24px 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px; }
    section.inner .more .apply {
      display: flex;
      width: 100%;
      padding: 24px;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 24px;
      height: auto;
      box-sizing: border-box; }
      section.inner .more .apply img {
        width: 307.754px;
        height: auto;
        right: -119px; }
      section.inner .more .apply article {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 24px;
        height: auto;
        box-sizing: border-box; }
        section.inner .more .apply article h4 {
          font-size: 24px; }
        section.inner .more .apply article p {
          font-size: 16px;
          width: 265px; }
    section.inner .more .awards {
      display: flex;
      width: 100%;
      padding: 0px 20px;
      box-sizing: border-box;
      height: auto;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px; }
      section.inner .more .awards h5 {
        font-size: 24px; }
      section.inner .more .awards ul {
        display: flex;
        width: 100%;
        box-sizing: border-box;
        padding-right: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px; }
        section.inner .more .awards ul li {
          display: flex;
          align-items: flex-start;
          gap: 8px;
          align-self: stretch; }
          section.inner .more .awards ul li img {
            height: 32px;
            width: auto; }
          section.inner .more .awards ul li p {
            font-size: 16px; }

  .arrows {
    width: 100%;
    position: static;
    transform: none;
    justify-content: space-between;
    align-items: center;
    display: none !important;
    visibility: hidden;
    pointer-events: none; }
    .arrows .arrow {
      height: 60px;
      width: 60px; }
      .arrows .arrow svg {
        height: 24px;
        width: 24px; }
    .arrows ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      align-items: center;
      gap: initial;
      justify-content: space-between;
      width: 214px; }
      .arrows ul li {
        height: 12px;
        width: 12px;
        display: flex;
        align-items: center;
        justify-content: center; }
        .arrows ul li:before {
          content: "";
          width: 8px;
          height: 8px;
          background: #9f9f9f;
          border-radius: 50px; }
        .arrows ul li.active:before {
          border: 2px solid white;
          background: none; }
    .arrows.mob-arrows.shown {
      display: flex !important;
      visibility: visible;
      pointer-events: auto; }
    .arrows.mob-arrows.sticky {
      position: fixed;
      bottom: 0;
      top: auto;
      height: auto;
      left: 0;
      background: black;
      visibility: visible !important; }

  .map.inner .step.active svg circle:nth-child(2) {
    fill: black !important;
    stroke: #9F9F9F !important; }
  .map.inner .step.active svg circle:nth-child(3) {
    fill: #9F9F9F !important;
    stroke: #9F9F9F !important; }
  .map.inner .step.active p {
    opacity: 1 !important;
    color: #9F9F9F !important; }
  .map.inner .step p {
    opacity: 1;
    color: #D34037 !important; }
  .map.inner .step:hover:not(.active) p {
    opacity: 1;
    color: #EC7068 !important; }

  section.inner-map {
    display: none !important; } }

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