: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: #fff;
}

.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 20px;
    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{
    background-color: #fff;
    min-height: calc(100vh - 595px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.graphic {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-bottom: -3px;
}
.graphic img{
  opacity: 0.8;
}
.graphic-logo{
  flex: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 0 15px;
}
.graphic-logo img{
  max-width: 257px;
    margin: 0 auto 15px;
}
.graphic-logo p span{
  color: #4C4C49;
  font-size: 24px;
  font-weight: 700;
  word-wrap: break-word
}
.graphic-logo p {
  color: #6E7782;
font-size: 16px;
font-weight: 700;
word-wrap: break-word;
text-align: center;
margin: 0 auto;
    max-width: 63%;
}
.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;
  max-height: 400px;
  padding: 0 20px;
}
.card__boxInfo img{
  width: 100%;
  object-fit: contain;
}


.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;
}

.btn-request{
  background-color: #3E7EEB;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 8px;
    width: 23%;
    padding: 15px 15px;
    margin: 20px auto 15px;
    display: block;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    line-height: 18px;
    text-shadow: -1px 1px 0px rgba(0, 0, 0, 0.25);
}
@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 20px;
}
.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 only screen 
  and (max-device-height: 932px) 
  and (orientation: landscape) {
    .btn-request{
  width: 47%;
}
}
@media screen and (max-height: 720px){
  .card__boxInfo {
    max-height: 430px;
 } 
 .card__boxInfo img {  
  object-fit: contain;
}
.btn-request{
  max-width: 100%;
}
  .card .card-header{
    padding: 0;
  }
  .graphic-logo img {
    max-width: 150px;
    margin: 0 auto 0;
}
.card__footer{
  padding: 15px 20px;
}
}
@media only screen
  and (device-width: 430px)
  and (device-height: 932px)
  and (-webkit-device-pixel-ratio: 3)
  and (orientation: landscape) {
    .btn-request{
  width: 49%;
}
}


@media (max-width: 567px){
   .btn-request{
    width: auto;
    margin: 15px 20px;
  }
  .card__boxInfo{
    max-height: 430px;
  }
  .graphic-logo p {
    max-width: 100%;
}
.graphic-logo{
  /* margin-bottom: 0; */
}
}
@media screen and (min-width: 568px) and (max-width: 844px) {
  .btn-request{
  width: 50%;
}
}
   