/* 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-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: #dfe1e2;
  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;
      -ms-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;
}

main {
  overflow: hidden;
  background-color: #fff;
  color: #090512;
  background-color: var(--color-root);
  color: var(--color-text);
}

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

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

[hidden] {
  display: none;
}

/* 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);
  -webkit-backface-visibility: hidden;
          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, .apps, .enterprise, .company {
  padding: 1.5rem 1.25rem;
}
.cities h2, .pass h2, .apps h2, .enterprise h2, .company h2 {
  font-size: 2em;
  line-height: 1.125;
  margin-bottom: 1rem;
}
.cities h2 + p, .pass h2 + p, .apps h2 + p, .enterprise h2 + p, .company h2 + p {
  margin-top: 0;
}
.cities a, .pass a, .apps a, .enterprise a, .company a {
  color: inherit;
  -webkit-text-decoration: underline 1px;
          text-decoration: underline 1px;
  text-underline-offset: 2px;
}
.cities a:focus, .pass a:focus, .apps a:focus, .enterprise a:focus, .company a:focus, .cities a:hover, .pass a:hover, .apps a:hover, .enterprise a:hover, .company a:hover {
  -webkit-text-decoration: underline 2px;
          text-decoration: underline 2px;
}
@media (min-width: 768px) {
  .cities, .pass, .apps, .enterprise, .company {
    min-height: 25rem;
    padding: 6.8085106383% 7.6595744681%;
  }
  .cities h2, .pass h2, .apps h2, .enterprise h2, .company h2 {
    font-size: 2.5em;
    line-height: 1.1;
  }
  .cities .block-arrow, .pass .block-arrow, .apps .block-arrow, .enterprise .block-arrow, .company .block-arrow {
    position: absolute;
    right: 2.5rem;
    bottom: 2.5rem;
  }
}

.company {
  background-color: var(--color-green);
  margin-top: 0.5rem;
}
.company, .company:focus, .company:hover {
  color: var(--color-white);
}
.company .block-hero {
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  margin: -1.5rem -1.25rem 0;
  padding-top: 1.5rem;
  background-image: radial-gradient(50% 70% at 50% 70%, #289320 40%, #28932000 100%);
}
@media (min-width: 768px) {
  .company .block-hero {
    margin: -8.040201005% -9.0452261307% 0;
    padding-top: 2.625rem;
  }
}
.company .block-hero svg {
  display: block;
  overflow: visible;
}
.company .block-hero svg circle {
  fill: var(--color-bright-green);
  filter: drop-shadow(1px 2px 0 #0122);
}
.company .block-hero svg [fill="#4A4A4A"] {
  fill: currentColor;
}
@media (min-width: 768px) {
  .company .block-hero svg {
    height: 3.75rem;
    width: auto;
  }
}
.company .block-hero img {
  display: block;
  width: 182.3899371069%;
  max-width: 58.75rem;
  margin-top: -4%;
}
.company .block-copy {
  margin-right: 2rem;
}
.company h1 {
  font-size: 2em;
  line-height: 1.125;
  margin-bottom: 1rem;
  max-width: 20ch;
}
@media (min-width: 768px) {
  .company h1 {
    font-size: 2.5em;
    line-height: 1.1;
  }
}
.company p {
  max-width: 60ch;
  margin: 0;
}
@media (min-width: 768px) {
  .company p {
    font-size: 1.25em;
    line-height: 1.4;
  }
}

.enterprise {
  overflow: hidden;
  background-color: #273e55;
}
.enterprise, .enterprise:focus, .enterprise:hover {
  color: var(--color-white);
}
.enterprise:before {
  content: "";
  opacity: 0.05;
  pointer-events: none;
  position: absolute;
  z-index: -1;
  width: 180%;
  height: 120%;
  background-image: linear-gradient(140deg, #fff 20%, #fff0 80%);
  top: 5%;
  left: 5%;
  border-top-left-radius: 100%;
}
.enterprise .block-copy p {
  margin-bottom: 0;
}
.enterprise .block-image {
  margin: 0.75rem auto 1.25rem;
  display: flex;
  flex: none;
  align-items: center;
}
.enterprise .block-image img {
  display: block;
  margin: 0 auto;
  max-width: 20rem;
}
.enterprise .button-round {
  display: block;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: var(--color-orange-50);
  color: var(--color-white);
  border-radius: 4em;
  padding: 0.75rem;
  margin: 1.5rem 0;
  max-width: 15rem;
  outline-color: rgba(255, 255, 255, 0.5);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (min-width: 768px) {
  .enterprise .button-round {
    font-size: 1.5rem;
    padding: 1rem 1rem 1.125rem;
    margin: 3.75rem 0 0;
    max-width: 20rem;
  }
}
@media (min-width: 768px) {
  .enterprise.block {
    display: flex;
  }
  .enterprise.block h2 {
    margin-right: -50%;
  }
  .enterprise.block p {
    font-size: 1.25em;
    line-height: 1.4;
  }
  .enterprise.block .block-image {
    order: 1;
    width: 50.2512562814%;
    margin: 0;
  }
  .enterprise.block .block-image img {
    max-width: 25rem;
  }
}

.apps {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.apps a {
  font-weight: 700;
  outline-color: rgba(255, 255, 255, 0.5);
}
.apps [role=separator] {
  display: block;
  width: 100%;
  height: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 1.875rem auto;
}
.apps img {
  display: block;
  margin: 1.25rem auto;
  max-width: 22.5rem;
}
.apps .button-round {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
  border-radius: 4em;
  padding: 0.75rem;
  max-width: 18.75rem;
  margin: 0 auto;
  background-color: var(--color-black);
  color: var(--color-white);
  font-weight: 700;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          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 .button-round, .apps .button-round:focus, .apps .button-round:hover {
  text-decoration: none;
}
.apps .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);
}
.apps .button-round + .button-round {
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .apps .button-round {
    font-size: 1.5rem;
    padding: 1rem 1rem 1.125rem;
  }
}
.apps .apps-web .button-round {
  background-color: white;
  color: var(--color-blue);
}
@media (min-width: 640px) {
  .apps.block {
    display: flex;
  }
  .apps .apps-mobile,
.apps .apps-web {
    flex: auto;
  }
  .apps [role=separator] {
    flex: none;
    height: auto;
    width: 0;
    margin: 0 1.875rem;
  }
}
@media (min-width: 1003px) {
  .apps .apps-links {
    display: flex;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
  .apps .apps-links .button-round {
    flex: auto;
    margin-top: 0;
  }
  .apps .apps-links svg {
    width: 2.25rem;
    height: 2.25rem;
    margin: -0.375rem;
    margin-right: 0;
  }
  .apps [role=separator] {
    margin: 0 3rem;
  }
}
@media (min-width: 768px) {
  .apps img {
    margin: 2rem auto;
  }
  .apps p {
    font-size: 1.25em;
    line-height: 1.4;
  }
}

@media (max-width: 767px) {
  .apps [role=separator],
.apps-web {
    display: none;
  }
}
.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);
  -webkit-backface-visibility: hidden;
          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);
  -webkit-animation: jiggle ease infinite 0.7s 5s;
          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;
}

@-webkit-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);
  }
}

@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);
  }
}
