:root {
  --light_font: "mulilight";
  --regular_font: "muliregular";
  --semibold_font: "mulisemibold";
  --bold_font: "mulibold";
  --clr__white: #ffffff;
  --clr__black: #000000;
  --clr__grey: #6a6e7b;
  --clr__dark__grey: #4c4c49;
  --clr__blue: #68aef2;
  --clr-orange: #e5be65;
  --clr-gray: #b0bccc;
  --clr-blue: #0091cf;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "mulilight";
  src: url(../fonts/muli-light-webfont.woff2) format("woff2"),
    url(../fonts/muli-light-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "muliregular";
  src: url(../fonts/muli-webfont.woff2) format("woff2"),
    url(../fonts/muli-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "mulisemibold";
  src: url(../fonts/muli-semibold-webfont.woff2) format("woff2"),
    url(../fonts/muli-semibold-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "mulibold";
  src: url(../fonts/muli-bold-webfont.woff2) format("woff2"),
    url(../fonts/muli-bold-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

a,
a:hover {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

body,
html {
  height: 100%;
  overflow: auto;
}

body {
  font-family: var(--regular_font);
  color: var(--clr__grey);
  font-size: 12px;
  line-height: 1.5;
  background-color: #F5F4F3;
}

.card {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
}

.card .card-header {
  background: #fff;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  padding: 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card .card__body {
  padding: 28px 9px 0;
  background-color: #F5F4F3;
  min-height: calc(100vh - 595px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.graphic {
  flex: none;
  display: flex;
  justify-content: center;
  margin-bottom: -0
}

.graphic-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  margin-top: 0;
}

.graphic-logo img {
  max-width: 100%;
}

.graphic-logo p span {
  color: #4C4C49;
  font-size: 24px;
  font-weight: 700;
  word-wrap: break-word
}

.graphic-logo p {
  color: #EE7125;
  font-size: 16px;
  font-weight: 700;
  word-wrap: break-word;
  text-align: center;
}

.hr-color {
  border: 1px solid #F7B90C;
  width: 60%;
}

.card__box h1 {
  font-family: var(--bold_font);
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  color: var(--clr__dark__grey);
  margin-bottom: 40px;
}

.card__boxInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 15px;
}

.card__boxInfo .icon {
  background: #367CA8;
  border-radius: 8px 0 0 8px;
  -webkit-filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
  padding: 5px;
  min-width: 82px;
  width: 82px;
  min-height: 82px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
}

.card__boxInfo .icon p {
  font-size: 12px;
  font-weight: 600;
  color: var(--clr__white);
}

.card__details {
  background: var(--clr__white);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 0 8px 8px 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

.time__box {
  background: #ebebeb;
  padding: 5px 10px;
  font-family: var(--bold_font);
  font-size: 10px;
  line-height: 1.2;
  color: var(--clr__black);
}

@media (min-width: 576px) {
  .time__box {
    font-size: 14px;
    line-height: 1;
    padding: 5px 10px;
  }
}


.terms a {
  font-family: var(--semibold_font);
}

.shuttle__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: 10px;
}

.shuttle__info h5 {
  font-family: var(--semibold_font);
  font-size: 12px;
  line-height: 1.2;
  color: var(--clr__grey);
}

.shuttle__info h5 span {
  text-decoration: underline;
}

.shuttle__info p {
  font-size: 10px;
  color: var(--clr-gray);
  font-family: var(--semibold_font);
  font-weight: 700;
}


@media (min-width: 576px) {
  .shuttle__info h5 {
    font-size: 16px;
    line-height: 1.4;
  }
}

.card__footer {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0 15px;
}

.shuttle-logo .text-default {
  font-family: var(--regular_font);
  font-size: 11px;
  line-height: 13px;
  color: var(--clr__grey);
}

.terms a {
  font-size: 13px;
  line-height: 16px;
  color: var(--clr__blue);
}

@media (max-width: 567px) {
  .graphic-logo img {
    max-width: 100%;
  }

  .card .card-header {
    padding-bottom: 0;
  }

  .graphic-logo {
    margin: 0;
  }

  .graphic {
    flex: none;
    margin-bottom: 0;
  }
}


@media screen and (max-height: 720px) {
  .graphic-logo {
    margin: 0;
    margin-bottom: 20px;
  }

  .graphic-logo img {
    max-width: 100%;
  }

}

a.card__boxInfo,
a.card__boxInfo:hover {
  color: var(--clr__grey);
  text-decoration: none;
}
