.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 501;
  background-color: #26c438;
  color: #fff;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.announcement-bar * {
  margin-bottom: 0;
}
.announcement-bar a {
  color: #fff;
  text-decoration: underline;
}
.announcement-bar + .header {
  top: 40px;
}
@media (max-width: 568px) {
  .announcement-bar {
    font-size: 10px;
    line-height: 13px;
    text-align: center;
    width: 100%;
  }
  .announcement-bar a {
    margin-left: 10px;
  }
}
@media (min-width: 1200px) {
  .announcement-bar {
    position: absolute;
  }
}

header.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 500;
  background: #fff;
}
@media (min-width: 1200px) {
  header.header {
    position: absolute;
    height: 96px;
  }
}
@media (min-width: 1200px) {
  header.header.home {
    background-color: transparent;
    transition: background-color 0.3s;
  }
  header.header.home:hover {
    background: #0A0A0A;
  }
}
header.header.sticky {
  background: #0A0A0A;
}
@media (min-width: 1200px) {
  header.header > .container {
    position: initial;
  }
}
header.header .header-top-menu {
  position: absolute;
  right: 15px;
  top: 10px;
  display: none;
}
@media (min-width: 768px) {
  header.header .header-top-menu {
    display: block;
  }
}
@media (min-width: 1200px) {
  header.header .header-top-menu {
    position: initial;
  }
}
header.header .header-top-menu ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  margin: 8px 0 0;
}
header.header .header-top-menu ul li {
  margin-left: 20px;
}
header.header .header-top-menu ul a {
  text-decoration: none;
  color: #515154;
  font-size: 12px;
  line-height: 12px;
}
header.header .header-top-menu ul a:hover {
  color: #26c438;
}
header.header .header-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 15px 0;
  height: 70px;
}
@media (min-width: 768px) {
  header.header .header-left {
    justify-content: flex-start;
    height: auto;
  }
}
@media (min-width: 1200px) {
  header.header .header-left {
    padding: 0;
  }
}
header.header .header-right {
  background-color: #f3f3f3;
  margin: 0 -15px;
  position: relative;
  display: none;
  box-shadow: 1px 10px 3px 0 rgba(0, 0, 0, 0.06) inset;
}
@media (min-width: 768px) {
  header.header .header-right {
    display: block;
    box-shadow: none;
  }
  header.header .header-right:before {
    content: "";
    position: absolute;
    left: -100%;
    right: -100%;
    top: 0;
    bottom: 0;
    background-color: #f3f3f3;
  }
}
@media (min-width: 1200px) {
  header.header .header-right {
    background-color: #fff;
    margin: 0;
    position: initial;
  }
  header.header .header-right:before {
    display: none;
  }
}
header.header .logo {
  display: inline-flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  header.header .logo {
    position: initial;
    transform: none;
  }
}
header.header .logo img {
  max-width: 262px;
}
header.header .logo img.mobile-logo {
  display: inline-block;
}
header.header .logo img.wide-logo {
  display: none;
}
@media (min-width: 1200px) {
  header.header .logo img {
    max-width: 306px;
  }
  header.header .logo img.mobile-logo {
    display: none;
  }
  header.header .logo img.wide-logo {
    display: inline-block;
  }
}
header.header .header-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  header.header .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.btn-menu {
  width: 60px;
  height: 70px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 15;
  margin: 0;
  background-color: #fff;
}
.btn-menu span {
  position: absolute;
  width: 20px;
  height: 3px;
  left: 50%;
  top: 50%;
  margin: -9px 0 0 -10px;
  transition-timing-function: ease;
  transition-duration: 0.4s;
  transition-property: transform, background-color;
  background-color: #000;
}
.btn-menu span::before,
.btn-menu span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 3px;
  transition-timing-function: ease;
  transition-duration: 0.4s;
  transition-property: transform, background-color;
  border-radius: 4px;
  background-color: #000;
}
.btn-menu span::before {
  top: 8px;
  transition-timing-function: ease;
  transition-duration: 0.4s;
  transition-property: transform, opacity, background-color;
}
.btn-menu span::after {
  top: 16px;
}
.btn-menu.opened span {
  height: 2px;
  transform: translate3d(0, 10px, 0) rotate(45deg);
  background-color: #26c438;
  border-radius: 4px;
}
.btn-menu.opened span::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
  background-color: #26c438;
}
.btn-menu.opened span::after {
  top: 19px;
  width: 21px;
  height: 2px;
  transform: translate3d(-1px, -19px, 0px) rotate(-90deg);
  background-color: #26c438;
}
@media (min-width: 768px) {
  .btn-menu {
    display: none;
  }
}

.btn-back {
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
.btn-back svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.main-nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin: 0;
  padding: 0 20px;
  background-color: #fff;
  box-shadow: 1px 3px 13px 0 rgba(0, 0, 0, 0.06) inset;
}
@media (min-width: 768px) {
  .main-nav {
    flex-direction: row;
    align-items: center;
    background-color: transparent;
    box-shadow: none;
  }
}
@media (min-width: 1200px) {
  .main-nav {
    padding: 0;
  }
}
.main-nav > li {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .main-nav > li {
    display: inline-block;
    margin-left: 0;
    margin-right: 30px;
  }
}
@media (min-width: 1200px) {
  .main-nav > li {
    margin-left: 25px;
    margin-right: 0;
  }
}
.main-nav > li.menu-item-has-children.hovered > a {
  color: #26c438;
  position: relative;
}
.main-nav > li.menu-item-has-children.hovered > a:after {
  width: 100%;
}
.main-nav > li.menu-item-has-children.hovered .dropdown-menu {
  visibility: visible;
  opacity: 1;
}
.main-nav > li.menu-item-has-children > a {
  position: relative;
  padding-right: 15px;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .main-nav > li.menu-item-has-children > a {
    padding-right: 0;
  }
}
.main-nav > li.menu-item-has-children > a:before {
  content: "";
  background: url("../../img/arrow-bottom-thin-black.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 5px;
}
@media (min-width: 1200px) {
  .main-nav > li.menu-item-has-children > a:before {
    display: none;
  }
}
.main-nav > li:first-child > .dropdown-menu {
  display: block;
  visibility: visible;
  opacity: 1;
}
.main-nav > li.current-menu-item > a {
  color: #26c438;
}
.main-nav > li.current-menu-item > a:after {
  width: 100%;
}
.main-nav > li > a {
  color: #0A0A0A;
  display: block;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
  padding: 20px 0;
  position: relative;
  transition: all ease 0.3s;
  text-decoration: none;
}
.main-nav > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  bottom: 0;
  border-top: 2px solid #26c438;
  transition: all ease 0.3s;
}
.main-nav > li > a:hover {
  color: #26c438;
}
.main-nav > li > a:hover:after {
  width: 100%;
}
.main-nav .dropdown-menu {
  display: none;
  background: #fff;
  z-index: 50;
  position: initial;
  left: 0;
  width: 100%;
  margin: 0;
  border: 0;
}
@media (min-width: 768px) {
  .main-nav .dropdown-menu {
    position: absolute;
  }
}
@media (min-width: 1200px) {
  .main-nav .dropdown-menu {
    background: #f3f3f3;
    display: block;
    top: 100%;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
}
.main-nav .dropdown-menu a {
  color: #0A0A0A;
}
.main-nav .sub-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0;
}
@media (min-width: 1200px) {
  .main-nav .sub-menu {
    flex-direction: row;
    align-items: center;
  }
}
.main-nav .sub-menu li:not(:last-child) {
  border-bottom: 1px solid #e9e9e9;
}
@media (min-width: 768px) {
  .main-nav .sub-menu li {
    margin: 0 15px;
  }
}
@media (min-width: 1200px) {
  .main-nav .sub-menu li {
    margin: 0 30px;
  }
  .main-nav .sub-menu li:not(:last-child) {
    border-bottom: none;
  }
}
.main-nav .sub-menu li a {
  font-size: 14px;
  font-weight: 500;
  display: block;
  padding: 15px 0;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .main-nav .sub-menu li a {
    display: inline-block;
    padding: 0;
  }
}
.main-nav .sub-menu li a:hover {
  color: #26c438;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: "Gotham A", "Gotham B", "Gotham", sans-serif;
}
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

.scroll-y {
  overflow-y: scroll;
}

.header-top {
  background-color: #26c438;
}
.header-top .col-md-12.text-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.header-top .col-md-12.text-center span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  text-align: center;
  /* UB White */
  color: #ffffff;
}
.header-top .col-md-12.text-center a {
  font-style: normal;
  font-weight: bold;
  font-size: 10px;
  line-height: 10px;
  text-align: center;
  color: #ffffff;
  margin-left: 15px;
}

section.banner {
  margin-top: 192px;
  background-color: #0a0a0a;
  background-image: url("/micromobility/img/banner.jpg");
  height: 700px;
  background-size: cover;
  box-shadow: inset 0 0 0 5000px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1199px) {
  section.banner {
    margin-top: 175px;
  }
}
@media (max-width: 767px) {
  section.banner {
    margin-top: 110px;
    /* MobileMenu: 110px*/
  }
}
section.banner > .container {
  height: 100%;
}
section.banner > .container > .row {
  height: 100%;
}
section.banner > .container > .row h1.big-text {
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 30px;
}
section.banner > .container > .row h1.big-text span {
  font-style: normal;
  font-weight: normal;
  font-size: 40px;
  line-height: 50px;
  text-align: center;
  color: #ffffff;
  display: block;
}
section.banner > .container > .row p.description {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}
section.banner > .container > .row .btn-green {
  display: table;
  margin: auto;
  margin-top: 60px;
}
section.info-boxes .image-box {
  height: auto;
  background-color: #26c438;
  padding: 0;
}
section.info-boxes .text-box {
  margin: auto;
  padding: 0 90px;
}
section.info-boxes .text-box h2 {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  color: #0a0a0a;
  margin-bottom: 30px;
}
section.info-boxes .text-box h2 + p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  color: #0a0a0a;
}
section.info-boxes .story-area {
  color: #0a0a0a;
  flex-direction: row;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 60px;
}
section.info-boxes .story-area .story-info {
  max-width: 670px;
  margin-right: 130px;
}
section.info-boxes .story-area .story-info h5 {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 23px;
  margin-bottom: 30px;
}
section.info-boxes .story-area p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
section.info-boxes .story-area p.title {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}
section.our-fleet {
  background: #ffffff;
}
section.our-fleet .fleet-row .fleet-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  text-align: center;
}
section.our-fleet .fleet-row .fleet-box img {
  margin-bottom: 50px;
}
section.our-fleet .fleet-row .fleet-box h6 {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
}
section.our-fleet .fleet-row .fleet-box h6 + span {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}
section.infographics-area {
  background-color: #fafafa;
  padding: 82px 0 60px;
  margin-top: 60px;
}
section.infographics-area .infographics-text h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 28px;
  color: #0a0a0a;
  margin-bottom: 30px;
}
section.infographics-area .infographics-text h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #0a0a0a;
  margin-bottom: 30px;
}
section.infographics-area .infographics-text p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #0a0a0a;
  margin-bottom: 24px;
}
section.infographics-area .infographics-boxes {
  color: #0a0a0a;
  margin-top: 60px;
}
section.infographics-area .infographics-boxes span {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 23px;
  margin-bottom: 30px;
  display: block;
}
section.infographics-area .infographics-boxes p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}
section.infographics-area .infographics-iconboxes {
  margin-top: 90px;
}
section.infographics-area .infographics-iconboxes .col-md-10.m-auto {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
section.infographics-area .infographics-iconboxes .col-md-10.m-auto .icon-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 30px;
  background-color: #fff;
  width: calc(20% - 30px);
}
section.infographics-area .infographics-iconboxes .col-md-10.m-auto .icon-box:nth-child(even) {
  margin-top: -30px;
  height: calc(100% - 30px);
}
section.infographics-area .infographics-iconboxes .col-md-10.m-auto .icon-box span {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #0a0a0a;
  margin: 30px auto 10px;
}
section.infographics-area .infographics-iconboxes .col-md-10.m-auto .icon-box p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #0a0a0a;
}
section.infographics-area.mobile-view {
  margin-top: 44px;
  padding-top: 82px;
}
section.infographics-area.mobile-view .infographics-text h6 {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
}
section.infographics-area.mobile-view .infographics-text p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}
section.infographics-area.mobile-view .infographics-iconboxes {
  margin-top: 36px;
}
section.infographics-area.mobile-view .infographics-iconboxes .col-md-10.m-auto {
  flex-direction: column;
}
section.infographics-area.mobile-view .infographics-iconboxes .col-md-10.m-auto .icon-box {
  width: 100%;
  flex-direction: row;
  padding: 20px 22px;
  box-shadow: 0px 42px 54px rgba(0, 0, 0, 0.03), 0px 9.38125px 12.0616px rgba(0, 0, 0, 0.0178832), 0px 2.79304px 3.59106px rgba(0, 0, 0, 0.0121168);
}
section.infographics-area.mobile-view .infographics-iconboxes .col-md-10.m-auto .icon-box div {
  margin-left: 22px;
}
section.infographics-area.mobile-view .infographics-iconboxes .col-md-10.m-auto .icon-box div span {
  font-style: normal;
  font-weight: bold;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 10px;
  margin-top: 0;
  display: inline-block;
}
section.infographics-area.mobile-view .infographics-iconboxes .col-md-10.m-auto .icon-box p {
  text-align: left;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
}
section.infographics-area.mobile-view .infographics-boxes span {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 23px;
}
section.infographics-area.mobile-view .infographics-boxes p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}
section.how-it-works {
  background: #fafafa;
}
section.how-it-works .download-app {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
section.how-it-works .download-app a:first-child {
  margin-right: 30px;
}
section.how-it-works .work-steps {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
section.how-it-works .work-steps .work-step:not(:last-child) {
  margin-right: 30px;
}
section.how-it-works .work-steps .work-step .top {
  height: 192px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.how-it-works .work-steps .work-step .top img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
section.how-it-works .work-steps .work-step .top h6 {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #0a0a0a;
  margin-bottom: 10px;
}
section.how-it-works .work-steps .work-step .top span {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #0a0a0a;
}
section.locations {
  padding: 60px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
section.locations .loc-left {
  width: 45%;
  padding-left: 150px;
  padding-right: 90px;
}
section.locations .loc-right {
  width: 55%;
}
section.locations h2 {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  color: #0a0a0a;
  margin-bottom: 30px;
}
section.locations p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  color: #0a0a0a;
  margin-bottom: 35px;
}
section.partners {
  background: linear-gradient(180deg, rgba(250, 250, 250, 0) 0%, #fafafa 100%);
  padding: 0;
}
section.partners .fa-title {
  margin-bottom: 60px;
}
section.partners .partner-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: -30px;
}
section.partners .partner-row div {
  text-align: center;
  margin-bottom: 30px;
}
section.partners .partner-row img {
  image-rendering: -webkit-optimize-contrast;
}
section.partners .partner-row img:not(:last-child) {
  margin-right: 30px;
}
section.contact-us {
  padding: 0 60px;
}
section.common-static-page {
  margin-top: 0;
  color: #000;
  font-size: 16px;
}
section.common-static-page > div:first-child {
  height: 250px;
  background-image: url(../../img/static-hero.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.common-static-page h1 {
  margin-bottom: 25px;
}
section.common-static-page h1 span {
  padding: 0 25px;
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  display: table;
  margin: 10px auto;
  position: relative;
  text-transform: uppercase;
  color: #fff;
}
section.common-static-page h1 span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #26c438;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
section.common-static-page h1 span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #26c438;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
section.common-static-page h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
}
section.common-static-page ol {
  counter-reset: item;
}
section.common-static-page ol li {
  list-style: none;
  counter-increment: item;
  margin-top: 25px;
}
section.common-static-page ol li::before {
  content: counter(item) ".";
  display: inline;
  font-weight: bold;
  padding-right: 0.5rem;
  text-align: right;
  width: 1.5rem;
}
section.common-static-page ol li ol {
  counter-reset: sub-item;
}
section.common-static-page ol li ol li {
  counter-increment: item1;
}
section.common-static-page ol li ol li::before {
  content: counter(item1, lower-alpha) ".";
  display: inline;
  font-weight: bold;
  padding-right: 0.5rem;
  text-align: right;
  width: 1.5rem;
}
section.common-static-page ol li ul {
  counter-reset: itemm;
}
section.common-static-page ol li ul li {
  counter-increment: itemm;
  list-style-type: disc;
}
section.common-static-page ol li ul li::before {
  content: none;
}
section.common-static-page .submenu {
  background-color: #fafafa;
}
section.common-static-page .submenu ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
section.common-static-page .submenu ul li {
  display: inline-block;
}
section.common-static-page .submenu ul li.active a {
  color: #26c438;
}
section.common-static-page .submenu ul li a {
  padding: 30px;
  display: block;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #0a0a0a;
}
section.common-static-page .breadcrumb-holder {
  padding-top: 60px;
}
section.common-static-page .breadcrumb-holder ul {
  padding: 0;
  list-style: none;
  margin: 0;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 25px;
  margin-bottom: 60px;
}
section.common-static-page .breadcrumb-holder ul li {
  display: inline-block;
}
section.common-static-page .breadcrumb-holder ul li:not(:last-child) {
  border-right: 1px solid #0a0a0a;
  margin-right: 10px;
  padding-right: 10px;
}
section.common-static-page .breadcrumb-holder ul li.active a {
  color: #26c438;
}
section.common-static-page .breadcrumb-holder ul li a {
  display: block;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #0a0a0a;
}

.fixed-area {
  padding: 60px 0;
}
.fixed-area .fa-title {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 23px;
  text-align: center;
  color: #0a0a0a;
  margin-bottom: 30px;
}
.fixed-area .fa-title.green {
  color: #26c438;
}
.fixed-area .fa-subtext {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #0a0a0a;
}

.btn-green {
  padding: 13.5px 25px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  text-align: center;
  background-color: #26c438;
  display: inline-block;
}
.btn-green:hover {
  text-decoration: none;
  color: #fff;
}

.custom-form {
  margin-top: 60px;
}
.custom-form .form-row {
  margin-bottom: 32px;
}
.custom-form .form-row.with-gap .form-group:not(:last-child) {
  padding-right: 15px;
}
.custom-form .form-row.with-gap .form-group:not(:first-child) {
  padding-left: 15px;
}
.custom-form .form-row .form-group label {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  margin-bottom: 10px;
}
.custom-form .form-row .form-group input,
.custom-form .form-row .form-group textarea {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  height: 62px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #0a0a0a;
}
.custom-form .form-row .form-group input::-moz-placeholder, .custom-form .form-row .form-group textarea::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #bfbfc4;
  opacity: 1;
  /* Firefox */
}
.custom-form .form-row .form-group input::placeholder,
.custom-form .form-row .form-group textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #bfbfc4;
  opacity: 1;
  /* Firefox */
}
.custom-form .form-row .form-group input:-ms-input-placeholder,
.custom-form .form-row .form-group textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #bfbfc4;
}
.custom-form .form-row .form-group input::-ms-input-placeholder,
.custom-form .form-row .form-group textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #bfbfc4;
}
.custom-form .form-row .form-group textarea {
  resize: none;
  height: 100px;
}
.custom-form .sub-info {
  margin: auto;
}
.custom-form .sub-info a {
  color: #26c438;
}
.custom-form .btn-green {
  padding: 13.5px 45px;
}

footer {
  background-color: #000;
  position: relative;
  z-index: 99;
}
footer .footer-top {
  padding: 60px 0 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-top .footer-top-wrapper {
  display: flex;
  align-items: flex-start;
}
footer .footer-top .footer-top-wrapper .logo-holder {
  margin-right: 90px;
}
footer .footer-top .footer-top-wrapper .logo-holder img {
  min-width: 122px;
}
footer .footer-top .footer-top-wrapper .content-blocks {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
footer .footer-top .footer-top-wrapper .content-blocks .content-holder {
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  max-width: 220px;
}
footer .footer-top .footer-top-wrapper .content-blocks .content-holder p {
  margin-bottom: 10px;
}
footer .footer-top .footer-top-wrapper .content-blocks .content-holder a {
  color: #fff;
  text-decoration: underline;
}
footer h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #26c438;
  margin-bottom: 18px;
}
footer ul {
  padding-left: 0;
}
footer ul li {
  list-style: none;
}
footer .footer-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-wrapper .footer-menu {
  width: 65%;
  display: flex;
  align-items: flex-start;
  margin: 76px 0;
}
footer .footer-wrapper .footer-menu .menu-block {
  margin-right: 55px;
}
footer .footer-wrapper .footer-menu h6 {
  color: #26c438;
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: none;
  white-space: nowrap;
}
footer .footer-wrapper .footer-menu ul {
  margin-bottom: 30px;
}
footer .footer-wrapper .footer-menu ul li {
  list-style: none;
}
footer .footer-wrapper .footer-menu ul li a {
  color: #fff;
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
footer .footer-wrapper .footer-right {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  width: 35%;
  margin: 70px 0;
}
footer .footer-wrapper .footer-right ul.social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 100px;
}
footer .footer-wrapper .footer-right ul.social li a {
  margin: 0 35px;
}
footer .footer-wrapper .footer-right ul.social li a svg {
  height: 26px;
  width: auto;
}
footer .footer-wrapper .footer-right .phones-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 70px;
}
footer .footer-wrapper .footer-right .phones-wrapper .icon {
  margin-right: 30px;
  margin-left: 30px;
}
footer .footer-wrapper .footer-right .phones-wrapper .phones {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}
footer .footer-wrapper .footer-right .phones-wrapper .phones span {
  color: #26c438;
}
footer .footer-wrapper .footer-right .phones-wrapper .phones a {
  color: #fff;
}
footer .cancellation-warning {
  background: url("https://www.unlimitedbiking.com/wp-content/themes/unlimitedbiking/slice/dist/images/title-divider.svg") top left no-repeat;
  background-size: 100%;
  color: #fff;
  padding-top: 70px;
}
footer .cancellation-warning .slogan {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .cancellation-warning .slogan .bordered {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  padding: 3px 0;
}
footer .cancellation-warning .slogan .hours {
  font-weight: 500;
  font-size: 34px;
  line-height: 41px;
  margin: 0 9px;
}
footer .cancellation-warning .warning {
  margin-top: 5px;
  opacity: 0.5;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-align: right;
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 5px;
  padding: 30px 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #ffffff;
}
footer .footer-bottom .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-bottom .footer-bottom-wrapper ul {
  display: flex;
  align-items: center;
  margin: 0;
}
footer .footer-bottom .footer-bottom-wrapper ul li {
  margin-left: 30px;
}
footer .footer-bottom .footer-bottom-wrapper ul li a {
  color: #fff;
}

.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
}

.line {
  fill: none;
  stroke: #000;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.hbspt-form .hs-form-iframe {
  width: auto;
}

.search-area {
  border: 3px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  width: 25%;
}
.search-area input {
  height: 60px;
  background-color: transparent;
  outline: none;
  border: none;
  border-left: 3px solid #fff;
  padding: 0 20px;
  margin-left: 15px;
  color: #fff;
  width: 100%;
}
.search-area input::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1;
  /* Firefox */
}
.search-area input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1;
  /* Firefox */
}
.search-area input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}
.search-area input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fff;
}

#question-categories ul {
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid #e9e9e9;
}
#question-categories ul li:not(:last-child) a {
  border-bottom: 1px solid #e9e9e9;
}
#question-categories ul li a {
  color: #000;
  display: block;
  padding: 19px 20px;
  position: relative;
  line-height: 19px;
  font-weight: 500;
  background: url(https://test.unlimitedbiking.com/wp-content/themes/unlimitedbiking/slice/dist/images/chevron-right.svg) no-repeat center right 10px;
  background-size: 9px;
  font-weight: 700;
}
#question-categories ul li a:hover {
  text-decoration: none;
}

#question-wrapper .accordion {
  background-color: #fff;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #e9e9e9;
}
#question-wrapper .accordion .active,
#question-wrapper .accordion .accordion:hover {
  background-color: #ccc;
  border-bottom: none;
}
#question-wrapper .accordion:hover, #question-wrapper .accordion:focus {
  text-decoration: none;
}
#question-wrapper .accordion:before, #question-wrapper .accordion:after {
  content: "";
  position: absolute;
  top: 40%;
  right: 0;
  margin: 0 0 -8px;
  background: #26c438;
  border-radius: 2px;
}
#question-wrapper .accordion:before {
  right: 24px;
  width: 3px;
  height: 15px;
  transition: all 300ms;
  margin-top: -7.5px;
  background: #26c438;
}
#question-wrapper .accordion:after {
  right: 18px;
  width: 16px;
  height: 3px;
  margin-top: -1.5px;
  background: #26c438;
}
#question-wrapper .accordion.active:before {
  height: 0;
  margin-top: 0;
}
#question-wrapper .accordion.active {
  border-bottom: none;
}
#question-wrapper .accordion.active + .panel {
  border-bottom: 1px solid #e9e9e9;
}
#question-wrapper .panel {
  padding: 0 18px;
  background-color: white;
  overflow: hidden;
  font-size: 14px;
}
#question-wrapper .panel a {
  color: #26c438;
}

.home-carousel .owl-item img {
  height: 576px;
}

.ride-carousel .owl-item img {
  width: unset;
  max-width: 100%;
  max-height: 90vh;
  margin: auto;
}

.ride-carousel {
  max-width: 100%;
  max-height: 100%;
}
.ride-carousel .item .card {
  border: 0;
  border-radius: 0;
}
.ride-carousel .item .card .card-body {
  position: relative;
  padding: 0;
}
.ride-carousel .item .card .card-body .card-caption {
  padding: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.ride-carousel .item .card .card-body .card-caption h5 {
  margin-top: 2rem;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}
.ride-carousel .item .card .card-body .card-caption p {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
.ride-carousel .owl-dots {
  display: flex;
  justify-content: flex-start;
  padding: 15px;
}
.ride-carousel .owl-dots .owl-dot span {
  transition: all 0.25s ease;
}
.ride-carousel .owl-dots .owl-dot.active span {
  background-color: #26c438;
  width: 30px;
}

@media (max-width: 576px) {
  .home-carousel .owl-item img {
    height: 288px;
  }
}
@media (max-width: 767px) {
  section.common-static-page ol {
    padding: 0;
  }
  section.common-static-page ol li ol {
    padding-left: 20px;
  }
}
@media (max-width: 992px) {
  section.partners .partner-row {
    flex-wrap: wrap;
  }
  section.banner {
    height: 500px;
  }
  section.banner > .container > .row h1.big-text {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
  }
  section.banner > .container > .row h1.big-text span {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    font-style: normal;
  }
  section.banner > .container > .row p.description {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    padding: 0 25px;
  }
  section.banner > .container > .row .btn-green {
    margin-top: 30px;
  }
  section.info-boxes .text-box {
    padding: 0 15px;
    margin: 30px 0 60px 0;
  }
  section.info-boxes .text-box h2 {
    font-size: 22px;
    line-height: 28px;
  }
  section.info-boxes .text-box h2 + p {
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
  }
  section.info-boxes .image-box {
    min-height: 282px;
    background-size: cover;
    background-position: center;
  }
  section.info-boxes .image-box.img-first {
    background-image: url(../../img/img_01.jpg);
  }
  section.info-boxes .image-box.img-second {
    background-image: url(../../img/img_02.jpg);
  }
  section.info-boxes .image-box.img-third {
    background-image: url(../../img/img_03.jpg);
  }
  section.info-boxes .image-box img {
    display: none;
  }
  section.info-boxes .row:nth-child(2) .text-box {
    order: 2;
  }
  section.info-boxes .row:last-child .text-box {
    margin-bottom: 0;
  }
  section.info-boxes .story-area {
    margin-top: 0;
    flex-direction: column;
  }
  section.info-boxes .story-area .story-info {
    margin-right: 0;
  }
  section.how-it-works .work-steps {
    flex-direction: column;
  }
  section.how-it-works .work-steps .work-step:not(:last-child) {
    margin-right: 0;
    margin-bottom: 60px;
  }
  section.how-it-works .fa-title {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 23px;
  }
  section.how-it-works .fa-subtext {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
  }
  section.our-fleet .fleet-row .col-md-4 {
    margin-bottom: 30px;
  }
  section.our-fleet .fleet-row .col-md-4 .fleet-box img {
    margin-bottom: 15px;
  }
  section.our-fleet .fa-title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 23px;
  }
  section.our-fleet .fa-subtext {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }
  section.infographics-area {
    margin-top: 30px;
    padding-top: 60px;
    padding-bottom: 30px;
  }
  section.infographics-area .infographics-text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
  }
  section.infographics-area .infographics-boxes {
    margin-top: 30px;
  }
  section.infographics-area .infographics-boxes span {
    font-size: 22px;
    line-height: 28px;
  }
  section.infographics-area .infographics-boxes p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 60px;
  }
  section.infographics-area .infographics-iconboxes {
    margin-top: 0;
  }
  section.infographics-area .infographics-iconboxes .col-md-10.m-auto {
    flex-wrap: wrap;
  }
  section.infographics-area .infographics-iconboxes .col-md-10.m-auto .icon-box {
    width: calc(50% - 15px);
    margin-bottom: 30px;
    padding: 15px;
  }
  section.infographics-area .infographics-iconboxes .col-md-10.m-auto .icon-box:nth-child(even) {
    margin-top: initial;
    height: initial;
  }
  section.infographics-area .infographics-iconboxes .col-md-10.m-auto .icon-box img {
    width: 50px;
  }
  section.infographics-area .infographics-iconboxes .col-md-10.m-auto .icon-box span {
    margin-top: 10px;
    font-size: 22px;
  }
  section.infographics-area .infographics-iconboxes .col-md-10.m-auto .icon-box p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
  }
  section.locations {
    flex-direction: column;
    padding-bottom: 0;
  }
  section.locations .loc-left {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 60px;
    order: 2;
  }
  section.locations .loc-right {
    width: 100%;
  }
  section.locations p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
  }
  section.locations h2 {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
  }
  section.partners {
    padding-top: 0;
    padding-bottom: 0;
  }
  section.partners .fa-title {
    margin-bottom: 60px;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 23px;
  }
  section.contact-us {
    padding: 0 15px;
  }
  section.contact-us .custom-form .form-row {
    margin-bottom: 0;
  }
  section.contact-us .custom-form .form-row.with-gap .form-group {
    padding-left: 5px;
    padding-right: 5px;
  }
  section.contact-us .fa-title {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 23px;
  }
  section.contact-us .fa-subtext {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
  }
  section.common-static-page .submenu ul li a {
    padding: 10px;
  }
  section.common-static-page .breadcrumb-holder {
    padding-top: 25px;
  }
  footer .footer-top {
    padding: 30px 0 30px;
  }
  footer .footer-top .footer-top-wrapper .content-blocks {
    display: none;
  }
  footer .footer-top .footer-top-wrapper .logo-holder {
    margin: auto;
  }
  footer .footer-wrapper {
    flex-direction: column;
  }
  footer .footer-wrapper .footer-menu {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  footer .footer-wrapper .footer-menu .menu-block {
    margin-right: 0;
    width: 50%;
  }
  footer .footer-wrapper .footer-right {
    width: 100%;
    margin: 0;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
  }
  footer .footer-wrapper .footer-right .social {
    justify-content: center !important;
    order: 2;
    margin-bottom: 30px !important;
  }
  footer .footer-wrapper .footer-right .phones-wrapper {
    padding: initial;
    margin-bottom: 30px;
  }
  footer .footer-wrapper .footer-right .phones-wrapper .icon {
    margin-left: 0;
  }
  footer .cancellation-warning {
    padding-top: 60px;
  }
  footer .cancellation-warning .slogan {
    flex-direction: column;
  }
  footer .cancellation-warning .warning {
    margin: 15px 0;
    text-align: center;
  }
  footer .footer-bottom {
    padding: 15px 0;
  }
  footer .footer-bottom .footer-bottom-wrapper {
    flex-direction: column;
  }
  footer .footer-bottom .footer-bottom-wrapper .copyright {
    order: 2;
    margin-top: 20px;
  }
  .custom-form .sub-info {
    margin-bottom: 15px;
  }
  .fixed-area .fa-title {
    font-size: 22px;
    line-height: 28px;
  }
  .fixed-area .fa-subtext {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
  }
}
@media (min-width: 1921px) {
  section.info-boxes .image-box img {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */