* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  font-family: "Quicksand", sans-serif;
  color: #22313e; }

main {
  position: relative; }

button.hidden {
  display: none; }

.bold {
  font-weight: 700; }

.ride-container {
  border: 1px solid lightgray;
  margin: 20px 0;
  padding: 10px;
  border-radius: 2px;
  position: relative;
  height: auto;
  overflow: hidden;
  transition: height 1s ease-in-out; }
  .ride-container .delete-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    border: none;
    background: transparent;
    height: 24px;
    width: 24px; }
    .ride-container .delete-btn i {
      font-size: 22px; }
  .ride-container .retract-info {
    display: none; }
  .ride-container .retract-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    border: none;
    background: transparent;
    height: 24px;
    width: 24px; }
    .ride-container .retract-btn i {
      font-size: 22px;
      transform: rotate(0deg); }
  .ride-container.retracted {
    height: 90px; }
    .ride-container.retracted .retract-btn i {
      transform: rotate(180deg); }
    .ride-container.retracted .retract-info {
      display: block; }

.popup-delete-ride {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: none; }
  .popup-delete-ride.show {
    display: block; }
  .popup-delete-ride .popup-content {
    background-color: #fff;
    width: 300px;
    height: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 18px; }
    .popup-delete-ride .popup-content .button-group {
      position: absolute;
      bottom: 18px;
      left: 18px;
      right: 18px;
      text-align: right; }
      .popup-delete-ride .popup-content .button-group button {
        font-family: "Quicksand";
        background: none;
        border: none;
        padding: 8px 12px;
        color: #fff;
        font-weight: 700;
        font-size: 18px; }
        .popup-delete-ride .popup-content .button-group button.popup-cancel {
          color: #f03434; }
        .popup-delete-ride .popup-content .button-group button.popup-confirm {
          background-color: #49B3C4; }

a.button-type {
  display: inline-block;
  border: none;
  outline: none;
  font-family: "Quicksand", sans-serif;
  font-weight: 700; }
  a.button-type.cta-button {
    background: linear-gradient(to right, #ff7c6e, #f5317f);
    padding: 15px 25px;
    font-size: 24px;
    border-radius: 1.6em;
    color: white;
    cursor: pointer;
    transition: box-shadow 0.5s ease-in-out;
    box-shadow: 0 0 30px #ff7c6e;
    text-decoration: none; }
    a.button-type.cta-button:hover {
      box-shadow: 0px 5px 50px #f5317f; }

header {
  width: 100%;
  height: 100vh;
  padding: 40px 6vw; }
  header .mobile-menu-wrap {
    transition: top 0.8s ease-in-out;
    z-index: 9999; }
    @media (max-width: 1024px) {
      header .mobile-menu-wrap {
        position: fixed;
        height: 100vh;
        top: -100vh;
        right: 0;
        left: 0;
        display: block;
        background-color: #22313e; } }
    @media (max-width: 1024px) {
      header .mobile-menu-wrap.active {
        top: 0;
        height: 100vh;
        display: block; } }
  header .mobile-menu {
    display: none; }
    @media (max-width: 1024px) {
      header .mobile-menu {
        position: fixed;
        right: 10px;
        top: 20px;
        z-index: 9999;
        display: block;
        width: 30px;
        height: 30px; }
        header .mobile-menu .open {
          opacity: 1; }
        header .mobile-menu .close {
          opacity: 0; }
        header .mobile-menu i {
          position: absolute;
          font-size: 28px;
          color: #22313e;
          transition: opacity 0.4s ease-in-out; }
        header .mobile-menu.active .open {
          opacity: 0; }
        header .mobile-menu.active .close {
          opacity: 1; }
        header .mobile-menu.active i {
          color: white; } }
  header .top-header {
    text-align: right;
    position: relative;
    z-index: 100; }
    header .top-header .logo-header {
      position: absolute; }
      @media (max-width: 1024px) {
        header .top-header .logo-header {
          top: -22px; } }
      header .top-header .logo-header img {
        height: 30px; }
    header .top-header .lang-picker {
      display: none !important;
      position: relative;
      color: #fff;
      display: inline-block; }
      @media (max-width: 1024px) {
        header .top-header .lang-picker {
          display: block;
          display: none; } }
      header .top-header .lang-picker .selected {
        display: inline-block;
        font-weight: 600; }
        @media (max-width: 1024px) {
          header .top-header .lang-picker .selected {
            display: none; } }
      header .top-header .lang-picker .arrow-down {
        display: inline-block;
        transform: rotate(0deg);
        transition: transform 0.4s ease-in-out; }
        @media (max-width: 1024px) {
          header .top-header .lang-picker .arrow-down {
            display: none; } }
        header .top-header .lang-picker .arrow-down.pivot {
          transform: rotate(180deg); }
      header .top-header .lang-picker dl {
        background-color: #fff;
        color: #22313e;
        padding: 8px;
        border-radius: 5px;
        position: absolute;
        display: inline-block;
        text-align: left;
        top: 24px;
        left: 0;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
        opacity: 1;
        visibility: visible;
        transition: opacity 0.4s ease-in-out, visibility 0s; }
        @media (max-width: 1024px) {
          header .top-header .lang-picker dl {
            width: 100%;
            background: transparent;
            box-shadow: none;
            text-align: center; } }
        header .top-header .lang-picker dl.hidden {
          opacity: 0;
          visibility: hidden; }
          @media (max-width: 1024px) {
            header .top-header .lang-picker dl.hidden {
              visibility: visible;
              opacity: 1; } }
        header .top-header .lang-picker dl li {
          padding: 2px;
          list-style-type: none;
          display: inline-block;
          border-bottom: 1px solid transparent;
          transition: border-bottom 0.2s ease-in-out; }
          @media (max-width: 1024px) {
            header .top-header .lang-picker dl li {
              display: block; } }
          header .top-header .lang-picker dl li:hover {
            border-bottom: 1px solid #49B3C4; }
          header .top-header .lang-picker dl li a {
            text-decoration: none;
            color: #22313e;
            font-weight: 400; }
            @media (max-width: 1024px) {
              header .top-header .lang-picker dl li a {
                color: white; } }
          @media (max-width: 1024px) {
            header .top-header .lang-picker dl li.selected {
              display: block; } }
          header .top-header .lang-picker dl li.selected a {
            font-weight: 600; }
    header .top-header ul {
      max-width: 54vw;
      display: inline-block; }
      @media (max-width: 1024px) {
        header .top-header ul {
          padding-top: 15vh;
          display: block;
          width: 100%;
          max-width: 100%; } }
      header .top-header ul li {
        padding: 0 30px;
        display: inline-block;
        line-height: 40px; }
        @media (max-width: 1024px) {
          header .top-header ul li {
            display: block;
            text-align: center; } }
        header .top-header ul li a {
          text-decoration: none;
          font-weight: 700;
          font-size: 18px;
          color: white; }
          header .top-header ul li a.main-li {
            border: 1px solid white;
            border-radius: 1.6em;
            padding: 10px 20px; }
  header .header-background {
    position: absolute;
    right: 0;
    width: 60vw;
    height: 100vh;
    top: 0;
    background-size: auto 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url("../images/header_bg_flipped_optim.jpg"); }
    @media (max-width: 1024px) {
      header .header-background {
        width: 100vw;
        opacity: 0.4; } }
    header .header-background .filter-layer {
      position: absolute;
      height: 100%;
      width: 100%;
      background-color: #49B3C4;
      opacity: 0.3; }
  header .header-content {
    z-index: 99;
    background-color: white;
    background-image: url("../images/v_big.svg");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto 80%;
    position: absolute;
    left: 0;
    width: 40vw;
    height: 100vh;
    top: 0; }
    @media (max-width: 1024px) {
      header .header-content {
        width: 100%;
        background-color: transparent; } }
    header .header-content hgroup {
      margin-top: 40%;
      padding-left: 6vw;
      padding-right: 6vw; }
    header .header-content h1 {
      font-size: 64px;
      font-weight: 700;
      line-height: 64px; }
      @media (max-width: 1024px) {
        header .header-content h1 {
          font-size: 48px;
          line-height: 50px; } }
    header .header-content h2 {
      margin-top: 60px;
      font-weight: 300;
      line-height: 1.4em; }
      @media (max-width: 1024px) {
        header .header-content h2 {
          font-size: 18px;
          font-weight: 400; } }
    header .header-content a.button-type {
      margin-top: 120px;
      margin-left: 6vw; }
      @media (max-width: 500px) {
        header .header-content a.button-type {
          margin-top: 40px; } }

section.dark {
  background-color: #22313e; }

section#abstract, section#booking, section#pricing {
  padding: 200px 0; }
  @media (max-width: 1024px) {
    section#abstract, section#booking, section#pricing {
      padding: 60px 20px; } }

section#abstract {
  position: relative; }
  section#abstract.background-driver {
    background-image: url("../images/driver_dark.jpg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover; }

.floating-promo {
  background: linear-gradient(to right, #52ccc0, #3d92cc);
  position: absolute;
  transform: translateY(-150%);
  z-index: 999;
  width: 50%;
  left: 45%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  color: #22313e;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  min-width: 40vw;
  top: 0px; }
  @media (max-width: 1024px) {
    .floating-promo {
      display: none; } }
  .floating-promo h2 {
    font-size: 48px;
    padding-bottom: 10px; }
  .floating-promo h3 {
    font-size: 24px;
    font-weight: 400;
    padding-bottom: 30px; }
    .floating-promo h3.padded-top {
      padding-top: 20px; }
  .floating-promo .cta-button-light {
    color: #ffffff;
    cursor: pointer;
    font-size: 24px;
    border-bottom: 2px solid #ffffff; }
  .floating-promo span.warning {
    font-size: 12px; }

.big-icons-box {
  text-align: center;
  width: 80%;
  margin: auto;
  font-size: 0; 
    @media (max-width: 500px)  {
        width: 100%
    }
}
  .big-icons-box h2 {
    font-size: 48px;
    color: #ffffff;
    padding-bottom: 120px; }
    @media (max-width: 1024px) {
      .big-icons-box h2 {
        font-size: 32px; } }
  .big-icons-box .big-icons {
    font-size: 18px;
    color: #ffffff;
    display: inline-block;
    vertical-align: top;
    padding: 0 30px;
    padding-bottom: 30px; }
    .big-icons-box .big-icons.light {
      color: #22313e; }
      .big-icons-box .big-icons.light i {
        color: #22313e; }
    .big-icons-box .big-icons.four-per-line {
      width: 33%; }
      @media (max-width: 1024px) {
        .big-icons-box .big-icons.four-per-line {
          width: 50%; } }
      @media (max-width: 500px) {
        .big-icons-box .big-icons.four-per-line {
          width: 50%; } }
    .big-icons-box .big-icons.three-per-line {
      width: 30%;
      margin: 1.5%; }
      @media (max-width: 500px) {
        .big-icons-box .big-icons.three-per-line {
          margin: 0;
          margin-bottom: 30px; } }
    .big-icons-box .big-icons.card {
      border-radius: 8px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); }
      @media (max-width: 1024px) {
        .big-icons-box .big-icons.card {
          width: 100%; } }
    .big-icons-box .big-icons.dark {
      background-color: #22313e;
      color: #fff; }
    .big-icons-box .big-icons i {
      font-size: 64px;
      color: white; }
    .big-icons-box .big-icons h4 {
      padding-top: 25px; }
    .big-icons-box .big-icons h5 {
      font-weight: 400; }
    .big-icons-box .big-icons .padded-content {
      padding: 20px 0; }
      @media (max-width: 500px) {
        .big-icons-box .big-icons .padded-content {
          padding: 20px 0; } }
      .big-icons-box .big-icons .padded-content .info {
        font-size: 14px; }
    .big-icons-box .big-icons .image-box {
      width: 180px;
      height: 180px;
      max-width: 250px;
      max-height: 250px;
      margin: auto;
      border-radius: 50%;
      overflow: hidden;
}
 @media (max-width: 500px) {
     .big-icons-box .big-icons .image-box {
            width: 120px;
            height: 120px;
         
        }
     .big-icons-box {
         width: 100%;
     }
     .big-icons-box .big-icons {
        padding: 10px;
     }
}
    
      .big-icons-box .big-icons .image-box img {
        width: 100%; 
       
}

#remind-booking {
  position: relative;
  text-align: center;
  background-image: url("../images/header_bg_optim.jpg");
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
  color: #22313e;
  padding: 300px 0; }
  @media (max-width: 1024px) {
    #remind-booking {
      z-index: 1;
      padding: 80px 20px; } }
  #remind-booking .filter {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.65); }
  #remind-booking h2 {
    position: relative;
    font-size: 36px;
    z-index: 999;
    padding-bottom: 40px; }
  #remind-booking h3 {
    position: relative;
    z-index: 999;
    font-size: 18px;
    letter-spacing: 1.1px;
    line-height: 24px;
    max-width: 920px;
    margin: auto;
    font-weight: 400; }
  #remind-booking .sig {
    text-align: center;
    position: relative;
    z-index: 999;
    padding-top: 120px; }
    #remind-booking .sig svg {
      width: 320px; }
  #remind-booking .call-to-action {
    padding-top: 80px;
    position: relative;
    z-index: 999; }

footer {
  padding-top: 20px;
  background-color: #141c24; }
  footer .big-icons-box .big-icons.three-per-line {
    text-align: left; }
    @media (max-width: 1024px) {
      footer .big-icons-box .big-icons.three-per-line {
        width: 100%; } }
    @media (max-width: 500px) {
      footer .big-icons-box .big-icons.three-per-line {
        width: 100%;
        text-align: left;
        margin-bottom: 0; } }
  footer img {
    width: 100%;
    max-width: 200px; }
  footer .big-icons-box .big-icons h5.ul-title {
    font-size: 18px;
    font-weight: 500; }
  footer ul {
    list-style-type: none;
    text-align: left; }
    footer ul li a {
      font-size: 14px;
      color: #52ccc0;
      text-decoration: none;
      transition: color 0.2s ease-in-out; }
      footer ul li a:hover {
        color: white; }
    @media (max-width: 500px) {
      footer ul {
        display: block; } }

.big-centered-title {
  font-size: 48px;
  text-align: center;
  padding-bottom: 120px; }
  @media (max-width: 500px) {
    .big-centered-title {
      font-size: 24px;
      padding-bottom: 40px; } }
  .big-centered-title.small-padding-bottom {
    padding-bottom: 40px; }

.small-centered-title {
  font-size: 24px;
  text-align: center;
  padding-bottom: 60px; }

input {
  font-family: "Quicksand"; }

section#pricing {
  width: 800px;
  margin: auto;
  max-width: 90%; }
  section#pricing h2 {
    text-align: center;
    font-size: 48px; }
    @media (max-width: 1024px) {
      section#pricing h2 {
        font-size: 32px; } }
  section#pricing .content-box {
    margin: auto;
    max-width: 400px;
    text-align: left;
    margin: auto; }
  section#pricing label {
    display: block;
    padding-bottom: 5px;
    padding-top: 20px; }
  section#pricing input {
    font-size: 20px;
    padding: 12px;
    color: #22313E;
    border-radius: 10px;
    border: none;
    border: 1px solid #999999;
    width: 400px;
    max-width: 90%;
    transition: border-color 0.3s ease-in-out; }
    section#pricing input.has-error {
      border: 1px solid #f03434; }
    section#pricing input:focus {
      border-color: #33beda; }
  section#pricing button {
    margin-top: 30px;
    background: linear-gradient(to right, #52ccc0, #3d92cc);
    color: white;
    font-family: "Quicksand", sans-serif;
    box-shadow: none;
    outline: none;
    border: none;
    padding: 15px 25px;
    font-size: 24px;
    border-radius: 1.6em;
    color: white;
    cursor: pointer;
    transition: box-shadow 0.5s ease-in-out;
    box-shadow: 0 0 30px #52ccc0;
    text-decoration: none; }
    section#pricing button:hover {
      box-shadow: 0px 5px 50px #3d92cc; }
  section#pricing .success, section#pricing .error {
    padding-top: 20px;
    display: block; }
    section#pricing .success.hidden, section#pricing .error.hidden {
      display: none; }
  section#pricing .commune-card {
    text-align: left;
    position: relative;
    background-color: #ccc;
    padding: 25px;
    padding-left: 50px;
    display: inline-block;
    width: 250px;
    margin: 20px;
    border-radius: 5px; }
    section#pricing .commune-card.selected {
      font-weight: 500;
      background-color: #5ecce2; }
    section#pricing .commune-card .checkbox {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 15px; }
      section#pricing .commune-card .checkbox i {
        font-size: 24px; }
  section#pricing .pricing-card h3 {
    padding-top: 18px; }
  section#pricing .pricing-card .price {
    font-size: 64px; }
    section#pricing .pricing-card .price .price-value {
      position: relative; }
      section#pricing .pricing-card .price .price-value .euro-symbol {
        position: absolute;
        top: 6px;
        right: -28px;
        font-size: 36px; }
  section#pricing .disclaimer {
    max-width: 60%;
    margin: auto; }

.form-container {
  width: 800px;
  margin: auto;
  padding-top: 200px; }
  @media (max-width: 500px) {
    .form-container {
      width: 100%;
      padding: 100px 10px 100px 10px; } }
  .form-container .multiple-inputs-container.hidden {
    display: none; }
  .form-container .input-container {
    padding: 10px; }
    .form-container .input-container.small {
      display: inline-block;
      width: 90px;
      margin-right: 10px;
      max-width: 100%; }
      @media (max-width: 500px) {
        .form-container .input-container.small {
          width: 18%;
          margin-right: 1%; } }
      .form-container .input-container.small input {
        max-width: 100%; }
    .form-container .input-container.medium {
      display: inline-block;
      width: 300px; }
      @media (max-width: 500px) {
        .form-container .input-container.medium {
          width: 76%; } }
      .form-container .input-container.medium input {
        max-width: 100%; }
    .form-container .input-container label {
      display: block; }
    .form-container .input-container input {
      border: none;
      border-bottom: 1px solid #22313E;
      outline: none;
      font-size: 20px;
      width: 400px;
      transition: border-color 0.3s ease-in-out; }
      @media (max-width: 500px) {
        .form-container .input-container input {
          width: 90%; } }
      .form-container .input-container input:focus {
        border-color: #33beda; }
      .form-container .input-container input.input-invalid {
        border-color: #f03434; }
    .form-container .input-container .m2o .option-box {
      padding: 6px 0; }
      .form-container .input-container .m2o .option-box .checkbox, .form-container .input-container .m2o .option-box .name {
        display: inline-block; }
      .form-container .input-container .m2o .option-box .checkbox {
        color: #999999;
        cursor: pointer; }
        .form-container .input-container .m2o .option-box .checkbox .checked {
          display: none; }
        .form-container .input-container .m2o .option-box .checkbox .unchecked {
          display: block; }
        .form-container .input-container .m2o .option-box .checkbox.checked {
          color: #33beda; }
          .form-container .input-container .m2o .option-box .checkbox.checked .checked {
            display: block; }
          .form-container .input-container .m2o .option-box .checkbox.checked .unchecked {
            display: none; }
      .form-container .input-container .m2o .option-box .name i {
        padding-right: 6px; }
  .form-container .form-steps {
    padding-bottom: 50px; }
    .form-container .form-steps .form-step {
      display: inline-block;
      padding: 6px 10px;
      border-radius: 1.6em;
      border: 1px solid transparent;
      transition: border 0.3s ease-in-out, background-color 0.3s ease-in-out;
      cursor: pointer; }
      .form-container .form-steps .form-step.selected {
        background-color: #33beda; }
      .form-container .form-steps .form-step:hover {
        border: 1px solid #33beda; }
      .form-container .form-steps .form-step .step-number {
        display: inline-block;
        position: relative;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 2px solid #22313E; }
        .form-container .form-steps .form-step .step-number .number {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
      .form-container .form-steps .form-step .step-name {
        vertical-align: top;
        padding-top: 5px;
        display: inline-block; }

.form-section {
  display: none; }
  .form-section.active {
    display: block;
    padding-bottom: 120px; }
  .form-section h4 {
    font-size: 24px;
    padding-top: 30px; }
  .form-section table th, .form-section table td {
    padding: 10px;
    padding-left: 0;
    border-bottom: 1px solid lightgray; }
  .form-section table th {
    text-align: left; }
  .form-section input[type="submit"], .form-section .fake-submit-btn {
    border: none;
    background-color: #33beda;
    color: white;
    padding: 10px 20px;
    font-size: 24px;
    margin-top: 20px; }

.opt .radio-icon {
  position: relative; }
  .opt .radio-icon i {
    position: absolute;
    left: 0;
    opacity: 0; }
    .opt .radio-icon i.unchecked {
      opacity: 1; }
    .opt .radio-icon i.checked {
      opacity: 0; }
  .opt .radio-icon.selected i.checked {
    opacity: 1; }
  .opt .radio-icon.selected i.unchecked {
    opacity: 0; }
.opt .opt-label {
  padding-left: 20px; }

select {
  display: block;
  font-family: "Quicksand";
  font-size: 20px;
  border-radius: 1.6em;
  padding: 5px 10px; }
  @media (max-width: 500px) {
    select {
      font-size: 16px; } }

textarea {
  width: 100%;
  height: 200px;
  resize: none;
  font-family: "Quicksand";
  font-size: 14px; }
  textarea:focus {
    border-color: #33beda; }

select + .input-container.hidden {
  display: none; }

.sub-info {
  font-size: 14px; }
  @media (max-width: 500px) {
    .sub-info {
      font-size: 14px; } }

#business, #individuals {
  padding: 100px;
  max-width: 800px;
  margin: auto; }
  @media (max-width: 1024px) {
    #business, #individuals {
      padding: 60px 20px; } }
  #business h3, #individuals h3 {
    font-size: 24px;
    padding-top: 100px;
    padding-bottom: 20px; }
    @media (max-width: 1024px) {
      #business h3, #individuals h3 {
        padding-top: 40px; } }
  #business h2, #individuals h2 {
    text-align: center;
    font-size: 48px; }
    @media (max-width: 1024px) {
      #business h2, #individuals h2 {
        font-size: 32px; } }
  #business .selling-point, #individuals .selling-point {
    position: relative; }
    #business .selling-point .text, #individuals .selling-point .text {
      padding: 20px;
      padding-left: 70px; }
    #business .selling-point .icon, #individuals .selling-point .icon {
      text-align: center;
      margin: auto;
      position: absolute;
      left: 0;
      width: 48px;
      top: 50%;
      transform: translateY(-50%); }
      #business .selling-point .icon i.huge, #individuals .selling-point .icon i.huge {
        font-size: 48px; }
      #business .selling-point .icon i.blue, #individuals .selling-point .icon i.blue {
        color: #33beda; }

#individuals {
  max-width: 80%;
  font-size: 0; 
    text-align: center;
}
  @media (max-width: 1024px) {
    #individuals {
      max-width: 90%; } }
  #individuals .big-images {
    padding-top: 100px; }
    @media (max-width: 1024px) {
      #individuals .big-images {
        text-align: center; } }
  #individuals .big-image {
    font-size: 20px;
    display: inline-block;
    vertical-align: top;
    width: 33%;
    max-width: 275px;
    text-align: center; }
    @media (max-width: 1024px) {
      #individuals .big-image {
        width: 33%;
        padding-bottom: 40px; } }
  @media (max-width: 1024px) and (max-width: 500px) {
    #individuals .big-image {
      width: 100%; } }

    #individuals .big-image img {
      width: 80%;
      margin: auto;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
    #individuals .big-image .image-label {
      padding-top: 16px;
      width: 80%;
      margin: auto;
      font-weight: 600; }

#booking a {
  display: inline-block;
  color: #3d92cc;
  font-size: 16px;
  padding-top: 16px;
  font-weight: 700; }

button#new-ride {
  cursor: pointer;
  font-family: "Quicksand";
  font-weight: 600;
  width: 100%;
  border: 1px dashed #33beda;
  background: none;
  padding: 30px 0;
  font-size: 20px; }
  button#new-ride:hover {
    background-color: rgba(51, 190, 218, 0.5); }

tbody.ride-recap {
  display: block;
  padding: 20px; }
  tbody.ride-recap.hidden {
    display: none; }

img.logo-inline.size-24 {
  height: 14px; }
img.logo-inline.size-36 {
  height: 29px; }
  @media (max-width: 1024px) {
    img.logo-inline.size-36 {
      height: 19px; } }

/*# sourceMappingURL=style.css.map */
