﻿@font-face {
  font-family: "Helvetica Neue Std Thin";
  src: url("../../lib/fonts/HelveticaNeueLTStd-Th.woff");
}
@font-face {
  font-family: "Helvetica Neue Std Lt";
  src: url("../../lib/fonts/HelveticaNeueLTStd-Lt.woff");
}
@font-face {
  font-family: "Helvetica Neue Roman";
  src: url("../../lib/fonts/HelveticaNeueLTStd-Roman.woff");
}
@font-face {
  font-family: "Poppins", sans-serif;
  font-display: swap;
}
@font-face {
  font-family: "Inter", sans-serif;
  font-display: swap;
}
.poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.inter {
  font-family: "Inter", sans-serif;
}
.font-awesome-pro {
  font-family: "Font Awesome 6 Pro";
}
/*.transportation-types {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;

    @media(max-width: 767px) {
        grid-template-columns: 1fr 1fr;
    }

    @media(max-width: 575px) {
        grid-template-columns: 1fr;
    }

}*/
.gt-map {
  position: relative;
  display: block;
}
.gt-map:after {
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  content: "\f065";
  background-color: #00A393;
  color: white;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  border-radius: 50%;
  font-size: 20px;
}
.transportation-card {
  position: sticky;
  top: 8rem;
  right: 15px;
  margin-top: -100px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  border-radius: 75px 0;
  background-color: #E9F4F0;
}
@media (max-width: 991px) {
  .transportation-card {
    top: 0;
  }
}
@media (max-width: 767px) {
  .transportation-card {
    margin-top: 2rem;
  }
}
.transportation-card .img {
  border-radius: 75px 0;
  overflow: hidden;
}
.transportation-card .transportation-options {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 25px;
  font-size: 20px;
}
.transportation-card .transportation-options > div {
  margin-bottom: 0.5rem;
}
.transportation-card .transportation-options > div:last-child {
  margin-bottom: 0;
}
.transportation-card .transportation-options a {
  color: #003f3f;
  display: flex;
  align-items: flex-start;
  text-decoration: none;
}
.transportation-card .transportation-options a.active,
.transportation-card .transportation-options a:hover {
  /*text-decoration: underline;*/
  color: #00A393;
}
.transportation-card .transportation-options a.active i,
.transportation-card .transportation-options a:hover i {
  text-decoration: none;
  color: #00A393;
}
.transportation-card .transportation-options i {
  color: #003f3f;
  font-size: 25px;
  width: 40px;
}
@media (max-width: 991px) {
  .transportation-card .transportation-options > div {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .transportation-card {
    border-radius: 75px 75px 75px 0;
  }
  .transportation-card .img {
    width: 100%;
    border-radius: 75px 0;
  }
  .transportation-card .transportation-options {
    width: 100%;
  }
}
.rideshare-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.rideshare-wrapper .rideshare {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin: 10px 0;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 6px -1px;
  border-radius: 15px;
  border: 1px solid #00A393;
}
.rideshare-wrapper .rideshare > div {
  padding: 15px;
}
.rideshare-wrapper .rideshare .logo {
  flex: 1 0 175px;
}
.rideshare-wrapper .rideshare .details a {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media (max-width: 767px) {
  .rideshare-wrapper {
    width: 100%;
  }
  .rideshare-wrapper .rideshare {
    flex-direction: column;
  }
  .rideshare-wrapper .rideshare .logo {
    max-width: 150px;
    margin: 15px 0 0;
    padding: 0;
    flex: 1 0 auto;
  }
}
.rental-car-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  /*justify-content: center;
            align-items: flex-start;*/
}
@media (max-width: 991px) {
  .rental-car-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .rental-car-wrapper {
    grid-template-columns: 1fr;
  }
}
.rental-car {
  padding: 0.25em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50px 0;
  background-color: #E9F4F0;
}
.rental-car .logo {
  height: 0%;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}
.rental-car-content {
  /*border: 1px solid lightgray;*/
  display: flex;
  flex-direction: column;
  /*background-color: #fff;*/
  padding: 1em;
  width: 100%;
  border-radius: 75px 0;
}
.rental-car-content .details {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .rental-car-content .details {
    font-size: 14px;
    padding: 5px;
  }
}
.trimet-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin: 5px 0;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 6px -1px;
}
.trimet-info > div {
  padding: 15px;
  flex: 0 1 auto;
}
.trimet-info .logo {
  max-width: 175px;
}
.trimet-info .details a {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media (max-width: 767px) {
  .trimet-info {
    flex-direction: column;
  }
  .trimet-info .logo {
    max-width: 225px;
    margin: 15px 0 0;
    padding: 0;
    flex: 1 0;
  }
}