/* Start **************************************************/
:root {
  --color-white: white;
  --color-black: rgb(9, 5, 18);
  --color-grey-95: #1f1f1f;
  --color-grey-90: #383838;
  --color-grey-80: #4a4a4a;
  --color-grey-70: #666666;
  --color-grey-60: #747474;
  --color-grey-50: #8b8b8b;
  --color-grey-40: #a8a8a8;
  --color-grey-30: #bababa;
  --color-grey-20: #cbcbcb;
  --color-grey-10: #e8e8e8;
  --color-grey-5: #f6f6f6;
  --color-grey-1: #fdfdfd;
  --color-red: #d22020;
  --color-red-50: #d22020;
  --color-orange: #fe9001;
  --color-orange-70: #f56d00;
  --color-orange-60: #ff7900;
  --color-orange-50: #fe9001;
  --color-orange-40: #f5a623;
  --color-yellow: #f5c402;
  --color-yellow-60: #e2b500;
  --color-yellow-50: #f5c402;
  --color-yellow-40: #ffd600;
  --color-yellow-10: #fbfcc7;
  --color-green: #37ab2f;
  --color-green-80: #095b09;
  --color-green-70: #24711f;
  --color-green-60: #2f9027;
  --color-green-50: #37ab2f;
  --color-green-40: #53cb4b;
  --color-bright-green: #2dc922;
  --color-blue: #417193;
  --color-blue-90: #002f50;
  --color-blue-70: #365f7a;
  --color-blue-50: #417193;
  --color-blue-40: #678da8;
  --color-blue-30: #85aac1;
  --color-blue-10: #cfdce4;
  --color-bright-blue: #1e8aff;
  --color-bright-blue-50: #1e8aff;
  --color-bright-blue-10: #e9f3ff;
  --color-purple: #895a93;
  --color-purple-60: #72447c;
  --color-purple-50: #895a93;
  --color-shade: #001122;
  --color-key: var(--color-green);
  --color-key-70: var(--color-green-70);
  --color-root: var(--color-white);
  --color-contrast: var(--color-black);
  --color-text: var(--color-grey-90);
  --color-contrast-95: var(--color-grey-95);
  --color-contrast-90: var(--color-grey-90);
  --color-contrast-80: var(--color-grey-80);
  --color-contrast-70: var(--color-grey-70);
  --color-contrast-60: var(--color-grey-60);
  --color-contrast-50: var(--color-grey-50);
  --color-contrast-40: var(--color-grey-40);
  --color-contrast-30: var(--color-grey-30);
  --color-contrast-20: var(--color-grey-20);
  --color-contrast-10: var(--color-grey-10);
  --color-contrast-5: var(--color-grey-5);
  --color-contrast-1: var(--color-grey-1);
  --color-focus: rgba(30, 138, 255, 0.6);
  --color-focus-alpha-0: rgba(30, 138, 255, 0);
}

/* Root ***************************************************/
:root {
  --font-base: "Proxima Nova Soft", proxima, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-body: var(--font-base);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  background-color: var(--color-root);
  color: var(--color-text);
}

*,
:before,
:after {
  box-sizing: inherit;
  font-weight: inherit;
  outline-color: var(--color-focus-alpha-0);
}

/* sneakily override global-css.js */
html body {
  background-color: #fff;
  background-color: var(--color-root);
  line-height: 1.25;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
}

.link, a {
  cursor: pointer;
  background-color: transparent;
  color: var(--color-key);
  text-decoration: none;
  transition: color 0.1s, background-color 0.1s, outline-color 0.1s;
  outline-offset: 3px;
}
.link._unlink, a._unlink, .link._unlink:focus, .link._unlink:hover {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

button,
.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: hsl(208, 5%, 88%);
  background-color: var(--color-contrast-30);
  border: 1px solid transparent;
  color: inherit;
  outline-offset: 0;
  cursor: pointer;
  display: inline-block;
  line-height: 1.25;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: border-color 0.1s, background-color 0.1s, box-shadow 0.1s, color 0.1s, outline-color 0.1s;
}
button:focus,
.button:focus, button:hover,
.button:hover {
  outline: none;
  text-decoration: none;
}
button:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--color-focus);
}
button[disabled],
[disabled].button {
  pointer-events: none;
}
button[disabled] > *,
[disabled].button > * {
  opacity: 0.6;
}

.layout {
  width: 93.8666666667%;
  max-width: 58.75rem;
  margin: 0 auto;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

main {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  color: rgb(9, 5, 18);
  background-color: var(--color-root);
  color: var(--color-text);
}

svg {
  display: block;
  margin: 0 auto;
}

img {
  width: 100%;
  height: auto;
}

[hidden] {
  display: none;
}

.award {
  display: inline-flex;
  text-align: center;
  align-items: center;
  margin: 2.5em 0.5em 0;
}

.award-logo {
  width: 3.375em;
  height: 2.375em;
  margin: -1.5em auto 0.625em;
}
.award-logo svg {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
}
.award-logo svg path {
  fill: currentColor;
}

.award-body {
  flex: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-copy {
  margin: 0 -0.25em;
}
.award-copy h3,
.award-copy p {
  margin: 0;
}
.award-copy h3 {
  font-size: 1em;
  line-height: 1.25;
  margin-bottom: 0.5em;
}
.award-copy p {
  font-size: 0.875em;
  line-height: 1;
  padding: 0 0.2857142857em;
}

.award-wreath {
  flex: none;
  opacity: 0.4;
  width: 3em;
}
.award-wreath svg {
  display: block;
  width: 100%;
  height: auto;
}
.award-wreath path {
  fill: currentColor;
}
.award-wreath:last-child {
  transform: scaleX(-1);
}

.award._mini {
  margin-top: 1.75em;
}
.award._mini .award-copy {
  margin: 0 0.5em 0.25em;
}
.award._mini .award-copy h3 {
  margin-bottom: 0.375em;
}
.award._mini .award-wreath {
  width: 2em;
}

.rating {
  display: inline-block;
  text-align: center;
  margin: 2.5em 1em 0;
}
.rating h3,
.rating p {
  margin: 0;
}
.rating h3 {
  font-size: 1em;
  line-height: 1.25;
}
.rating p {
  margin-top: 0.75em;
  font-size: 0.875em;
  line-height: 1;
}

.rating-stars {
  font-size: 1.25em;
  line-height: 1;
  margin-bottom: 0.75em;
}

.rating-copy {
  max-width: 12em;
}

/* Hero ***************************************************/
.hero {
  position: relative;
  z-index: 0;
  text-align: center;
  padding: 1.25rem 0;
}
@media (min-width: 1280px) {
  .hero {
    padding-top: 0;
  }
}

.hero + .layout {
  position: relative;
}

.hero-strap {
  font-size: clamp(2em, 8vw, 2.75em);
  line-height: 1.1;
  font-weight: 700;
  margin: 0.75rem 0;
  color: var(--color-contrast-80);
  z-index: 2;
  position: relative;
}
.hero-strap em {
  font-style: inherit;
  color: var(--color-green);
}

.hero-skyline {
  margin-top: -6.75rem;
  position: relative;
  z-index: -1;
  display: flex;
  justify-content: center;
}
.hero-skyline svg {
  flex-shrink: 0;
  width: 320vw;
  max-width: 1400px;
  height: 100%;
}
.hero-skyline:before {
  content: "";
  position: absolute;
  top: 100%;
  width: 100vw;
  height: 25rem;
  background-image: linear-gradient(#f4f6f9, rgba(244, 246, 249, 0));
}

.hero-transport {
  margin-top: -1.5rem;
  display: flex;
  justify-content: center;
  opacity: 0.8;
}
.hero-transport svg {
  flex-shrink: 0;
  width: 240vw;
  max-width: 1000px;
}

.hero-greenie {
  margin-top: -4rem;
}
.hero-greenie svg {
  width: 5.625rem;
  height: auto;
}

/* Blocks *************************************************/
.block {
  border-radius: 1.25rem;
  position: relative;
}
.block + .block {
  margin-top: 1.875rem;
}
.block .block-arrow {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  transform: scale(1);
  transition: transform 0.15s;
  transform-origin: 100% 50%;
}
.block .block-arrow path {
  stroke: currentColor;
}

.block.block-row {
  display: grid;
  grid-gap: 1.875rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
}
.block.block-row .block {
  margin: 0;
  display: flex;
  flex-direction: column;
}

a.block {
  display: block;
  box-shadow: 0 0 0 0 rgba(0, 17, 34, 0);
  backface-visibility: hidden;
  transform: scale(1);
  transition: transform 0.15s, box-shadow 0.15s;
}
a.block:focus, a.block:hover {
  z-index: 1;
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 17, 34, 0.2);
}
a.block:focus .block-arrow, a.block:hover .block-arrow {
  transform: scale(1.5);
}

.cities, .pass, .promo {
  padding: 1.5rem 1.25rem;
}
.cities h2, .pass h2, .promo h2 {
  font-size: 2em;
  line-height: 1.125;
  margin-bottom: 1rem;
}
.cities h2 + p, .pass h2 + p, .promo h2 + p {
  margin-top: 0;
}
.cities a, .pass a, .promo a {
  color: inherit;
  -webkit-text-decoration: underline 1px;
          text-decoration: underline 1px;
  text-underline-offset: 2px;
}
.cities a:focus, .pass a:focus, .promo a:focus, .cities a:hover, .pass a:hover, .promo a:hover {
  -webkit-text-decoration: underline 2px;
          text-decoration: underline 2px;
}
.cities a.button-round, .pass a.button-round, .promo a.button-round {
  text-decoration: none;
}
@media (min-width: 768px) {
  .cities, .pass, .promo {
    min-height: 25rem;
    padding: 6.8085106383% 7.6595744681%;
  }
  .cities h2, .pass h2, .promo h2 {
    font-size: 2.5em;
    line-height: 1.1;
  }
  .cities .block-arrow, .pass .block-arrow, .promo .block-arrow {
    position: absolute;
    right: 2.5rem;
    bottom: 2.5rem;
  }
}

main > .layout > .block:first-child {
  margin-top: 0.5rem;
}

/* GMS ****************************************************/
#gms-embed {
  margin-bottom: 1.875rem;
}

.block.gms {
  position: relative;
  z-index: 2;
  background-color: var(--color-blue);
  color: white;
}
@media (min-width: 768px) {
  .block.gms {
    display: grid;
    grid-template-columns: 7fr 4fr;
  }
}

.gms-form,
.gms-city {
  flex: auto;
  width: 100%;
  max-width: 37.5rem;
  margin: auto;
  padding: 1.25rem;
}
@media (min-width: 640px) {
  .gms-form,
  .gms-city {
    padding-top: 1.875rem;
  }
}
@media (min-width: 768px) {
  .gms-form,
  .gms-city {
    padding: 2.5rem 12.0367119715%;
  }
}

.gms-form h3 {
  font-size: 2.25em;
  line-height: 1.1111111111;
}
.gms-form h3 svg,
.gms-form h3 span {
  display: inline;
  vertical-align: middle;
}
.gms-form h3 svg {
  width: 1.3333333333em;
  height: 100%;
  margin-right: 0.25rem;
}
.gms-form h3 svg path:last-child {
  fill: var(--color-blue);
}
.gms-form h3 + p {
  max-width: 20em;
  margin: 0.75rem 0 0.25rem;
}
@media (min-width: 768px) {
  .gms-form h3 + p {
    font-size: 1.25em;
    line-height: 1.4;
  }
}
.gms-form button:focus {
  outline-color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 960px) {
  .gms-form h3 {
    font-size: 2.5em;
    line-height: 1.1;
  }
}

.gms-form ul li svg [fill="#37AB2F"],
.gms-form ul li svg [fill="#CBCBCB"] {
  fill: var(--color-blue);
}
.gms-form ul li:not(:last-child) > span:only-child {
  color: var(--color-blue);
}
.gms-form input + span {
  color: rgba(255, 255, 255, 0.4);
  transition: opacity 0.1s, color 0.1s;
}
.gms-form input + span:focus, .gms-form input + span:hover {
  color: white;
}
.gms-form select,
.gms-form select + span {
  color: white;
}
.gms-form select {
  line-height: 1.5;
  height: auto;
}

.gms-city {
  position: relative;
  z-index: -1;
}
@media (max-width: 767px) {
  .gms-city {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .gms-city {
    padding-left: 0;
    padding-right: 0;
    height: 100%;
  }
}

.gms-city > div {
  margin: 0;
  border-radius: 0;
  background-color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.gms-city > div > :first-child {
  margin-left: 0;
  margin-bottom: 0.25rem;
}
.gms-city > div > :first-child > div {
  margin-top: -24%;
}
.gms-city > div > :last-child a {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .gms-city > div {
    height: 100%;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
  .gms-city > div > :first-child {
    margin: 0 auto;
  }
  .gms-city > div > :first-child > div {
    margin-top: -12%;
  }
  .gms-city > div > :last-child {
    flex: none;
    flex-direction: column;
    padding-right: 0.25rem;
  }
  .gms-city > div > :last-child h3 {
    font-size: 2.25rem;
    margin-right: 0;
  }
  .gms-city > div > :last-child a {
    margin-top: 0.75rem;
    padding-bottom: 0.5rem;
  }
}

.promo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
  background-color: var(--color-green);
  color: var(--color-white);
}
.promo:before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: -1;
  width: 100rem;
  height: 100%;
  background-color: rgba(0, 17, 34, 0.08);
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  border-top-left-radius: 40%;
  border-top-right-radius: 100%;
}
.promo > p {
  font-size: 1.25em;
  line-height: 1.4;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}
.promo .block-image {
  max-width: 28.75rem;
  margin: auto;
}
.promo .block-image img {
  vertical-align: unset;
}
.promo .testimonials {
  text-align: center;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}
.promo .testimonials .awards,
.promo .testimonials .ratings {
  margin: 0 -3rem;
}
@media (max-width: 966px) {
  .promo .testimonials {
    font-size: 0.8125em;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 599px) {
  .promo .testimonials {
    font-size: 0.6875em;
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .promo {
    text-align: left;
  }
  .promo > p {
    margin: 1.875rem 0;
  }
  .promo .block-image {
    position: absolute;
    z-index: -1;
    top: 54%;
    left: 40%;
    transform: translate3d(18%, -50%, 0);
  }
  .promo .testimonials {
    width: 25em;
  }
}

.apps-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: -0.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .apps-links {
    justify-content: left;
    margin: -0.625rem;
    font-size: 1.25rem;
  }
  .apps-links .button-round {
    padding: 1rem;
  }
}
.apps-links .button-round {
  display: flex;
  flex: auto;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
  border-radius: 4em;
  padding: 0.75rem;
  max-width: 8.5em;
  margin: 0.25rem;
  background-color: var(--color-black);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1;
  will-change: transform;
  backface-visibility: hidden;
  transform: scale(1);
  box-shadow: 0 0 0 0 rgba(0, 17, 34, 0);
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.1, 1), box-shadow 0.2s ease-out;
}
.apps-links .button-round:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 28px rgba(0, 17, 34, 0.2), 0 0 0 0.5px rgba(0, 17, 34, 0.06);
}

.pass {
  background-color: var(--color-green-80);
  overflow: hidden;
}
.pass, .pass:focus, .pass:hover {
  color: var(--color-white);
}
.pass .label {
  font-size: 0.875em;
  line-height: 1;
  display: inline-block;
  background-color: var(--color-green-60);
  border-radius: 4px;
  padding: 0.3125rem 0.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.pass .block-image {
  position: absolute;
  top: 8%;
  left: 55%;
  width: 55%;
  max-width: 26.25rem;
  z-index: -1;
}
@media (max-width: 559px) {
  .pass .block-image {
    top: 1rem;
    width: 78%;
    max-width: 18.75rem;
    left: auto;
    right: -16%;
  }
}
.pass .block-copy {
  margin-right: 28%;
  max-width: 25em;
  margin-bottom: 1em;
}
.pass .block-copy img {
  margin: 1rem 0 -0.25rem;
}
.pass .block-copy p {
  max-width: 20em;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .pass .block-copy p {
    font-size: 1.25em;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .pass .block-copy {
    margin-bottom: min(40%, 8.25rem);
  }
  .pass .block-copy img {
    display: none;
  }
}
@media (max-width: 559px) {
  .pass .block-copy {
    margin-bottom: 0;
  }
  .pass .block-copy p {
    margin-top: min(85%, 14rem);
  }
}

.cities {
  background-color: var(--color-green);
  overflow: hidden;
}
.cities, .cities:focus, .cities:hover {
  color: var(--color-white);
}
.cities .block-copy p {
  max-width: 20em;
  margin-right: 3rem;
  margin-bottom: 0;
}
.cities .block-copy img {
  width: 100%;
  margin: 1.25rem 0 -1.875rem -6%;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .cities .block-copy img {
    display: none;
  }
}
.cities .block-image {
  display: flex;
  flex: none;
  align-items: flex-end;
  justify-content: center;
}
.cities .block-image img {
  max-width: 20rem;
  margin: max(-20%, -5.75rem) auto 0;
}
@media (min-width: 768px) {
  .cities.block {
    display: flex;
  }
  .cities.block p {
    font-size: 1.25em;
    line-height: 1.4;
  }
  .cities.block .block-image {
    order: 1;
    margin: -1.5rem 0;
  }
  .cities.block .block-image img {
    margin: auto;
  }
}

/* News ***************************************************/
.news {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.news h2 {
  font-size: 2.25em;
  line-height: 1.1111111111;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .news h2 {
    font-size: 2.5em;
    line-height: 1.1;
  }
}

.news-items {
  display: grid;
  grid-gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.news-item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--color-contrast-5);
  color: inherit;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 -0.5px 0 0.5px rgba(0, 17, 34, 0.06), 0 0 0 rgba(0, 17, 34, 0);
  backface-visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.1, 1), box-shadow 0.2s ease-out;
}
.news-item a:hover {
  position: relative;
  z-index: 1;
  transform: scale(1.04);
  box-shadow: 0 0 0 0.5px rgba(0, 17, 34, 0.06), 0 12px 28px rgba(0, 17, 34, 0.2);
  animation: jiggle ease infinite 0.7s 5s;
}
.news-item a:hover .icon-arrow {
  transform: scale(1.5);
}
.news-item .icon-arrow {
  transform: scale(1);
  transition: transform 0.15s;
}
.news-item .icon-arrow path {
  stroke: currentColor;
}

.news-item-more {
  color: var(--color-contrast-20);
  transition: color 0.15s;
}
.news-item-more .icon-arrow {
  transform-origin: 100% 50%;
}
.news-item-more svg {
  margin-right: 0;
}

.news-all a {
  display: grid;
  place-items: center;
  color: var(--color-green);
}
.news-all p {
  font-size: 1.5em;
  line-height: 1.1666666667;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.news-all svg path {
  stroke: currentColor;
}

.news-item-thumbnail {
  overflow: hidden;
  position: relative;
  padding-bottom: 52.5%;
}
.news-item-thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.news-item-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: auto;
}

.news-item-text {
  flex: auto;
}

@keyframes jiggle {
  0%, 100% {
    transform: scale(1.02) translate(1px, 1px) rotateZ(0deg);
  }
  10% {
    transform: scale(1.02) translate(-1px, -1px) rotateZ(-1.5deg);
  }
  20% {
    transform: scale(1.02) translate(0px, -2px) rotateZ(1deg);
  }
  30% {
    transform: scale(1.02) translate(1px, 2px) rotateZ(0deg);
  }
  40% {
    transform: scale(1.02) translate(-1px, 1px) rotateZ(1.5deg);
  }
  50% {
    transform: scale(1.02) translate(1px, -1px) rotateZ(-1deg);
  }
  60% {
    transform: scale(1.02) translate(0px, -2px) rotateZ(0deg);
  }
  70% {
    transform: scale(1.02) translate(1px, 2px) rotateZ(-1deg);
  }
  80% {
    transform: scale(1.02) translate(-1px, -1px) rotateZ(1.5deg);
  }
  90% {
    transform: scale(1.02) translate(0px, 2px) rotateZ(0deg);
  }
}
