:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #000000;
  --color-secondary: #37373f;
  --color-btn: #ffc700;
  --color-red: linear-gradient(
    to bottom,
    rgba(160, 11, 33, 1),
    rgba(200, 13, 62, 1)
  );
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  /* color: var(--color-default); */
}

.bg-primary {
  background: linear-gradient(
    to bottom,
    rgba(160, 11, 33, 1),
    rgba(200, 13, 62, 1)
  ) !important;
}

a {
  color: #e0ba33;
  text-decoration: none;
}

a:hover {
  color: #ec2727;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
td,
.form-select,
.form-control,
.form-control input {
  font-family: var(--font-secondary);
  color: #5a5a5a !important;
}

#about h1,
.membership-points-div p,
.membership-points-div h2,
#booking .form-check-label,
#booking p,
.why-box h3,
.why-box p,
#quick-buttons h2 {
  color: white !important;
}

.fs-1 {
  font-size: 36px;
}

.custom-text-white {
  color: #ffffff;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}
.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.row {
  display: flex;
}

.col-8 {
  overflow: auto;
}

.scroll-container {
  overflow-y: scroll;
  max-height: 80vh;
  min-height: 80vh;
  scroll-behavior: smooth;
}
/* -----------------------------------
Hero Section
----------------------------------- */
#hero {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-bottom: 0px !important;
}

.img-container {
  background: url(../images/hero-image.jpg);
  width: auto;
  height: 80vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin: auto;
}

@media screen and (max-width: 800px) {
  .img-container {
    height: 70vh;
  }
  #hero {
    padding-top: 70px;
  }
}
/*---------------------------------------------------------------------------------------------------
 Booking Section
---------------------------------------------------------------------------------------------------*/

.form-check-input {
  width: 25px;
  height: 25px;
}

#booking .form-check-input:checked {
  background: var(--color-btn);
  border: 3px solid #ffffff;
}

.remove-mb {
  margin-bottom: 0px !important;
}

#booking {
  margin-top: -430px !important;
  position: relative;
  /* margin-bottom: 100px; */
}
.booking-background {
  background: var(--color-red);
  padding: 50px 25px !important;
}

#booking .form-check-input,
#booking .form-check-input:focus,
#booking .form-check-input:active {
  outline: none !important;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

#booking p,
#booking .form-check-inline label {
  color: white;
}

#booking .form-check-inline label {
  cursor: pointer;
}

#bikeDetailsContainer {
  display: none;
}

#passengerContainer .dropdown {
  position: relative;
  display: inline-block;
  z-index: 5 !important;
}

#passengerContainer .dropdown-content {
  display: none;
  position: absolute;
  background-color: #eee;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10000 !important;
  margin-top: 38px;
  margin-left: -54px;
}

#passengerContainer .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  z-index: 100 !important;
  position: relative;
}

#adultSelect,
#childSelect,
#bikeSelect {
  width: 100px;
}

@media screen and (max-width: 768px) {
  #passengerContainer .dropdown-content {
    margin-left: 0px;
  }
}

@media screen and (max-width: 576px) {
  #departureDateContainer,
  #returnDateContainer {
    width: 100% !important;
    padding: 0px !important;
  }

  #departReturnContainer {
    flex-direction: column;
  }

  #cta-buttons {
    font-size: 13px;
    font-weight: 400;
  }
}
/*--------------------------------------------------------------
# quick-buttons
-----------------------------*/
#quick-buttons {
  padding-bottom: 15px !important;
  padding-top: 10px !important;
}
.quick-btns-icon {
  text-align: center;
  /* background-color: var(--color-btn); */
  border-radius: 50%;
  font-size: 40px;
  color: rgba(200, 13, 62, 1);
  /* rgba(160, 11, 33, 1), */
}

.quick-btns {
  display: inline-block;
  background: #eee;
  padding: 40px 30px 40px 30px;
  color: #000000;
  border-radius: 10px;
  transition: all ease-in-out 0.3s;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .quick-btns {
    font-size: 14px;
  }
}

/* -----------------------------------------------------
# map card
-------------------------------------- */

#map-card h5 {
  font-weight: 700;
  font-size: 32px;
  margin: 30px 0px 30px 0px;
}

/*--------------------------------------------------------------
# about us
--------------------------------------------------------------*/
#about {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-bottom: 0px !important;
  margin-top: -10px;
}
.about-img-container {
  background: url(../images/intercity-coach-2.jpg);
  width: auto;
  height: 50vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin: auto;
}

#about h1 {
  width: 100%;
  font-size: 60px;
  height: 50vh;
  color: var(--color-btn);
  background-color: rgb(0, 0, 0, 0.5);
}

@media screen and (min-width: 768px) {
  .about-img {
    width: 700px;
    height: 700px;
  }
}

/*--------------------------------------------------------------
# mambership dashboard
--------------------------------------------------------------*/
#dashboard {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-bottom: 0px !important;
  margin-top: -10px;
}
.dash-img-container {
  background: url(../images/intercity-coach-2.jpg);
  width: auto;
  height: 40vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin: auto;
}

#dashboard h2 {
  color: white !important;
}
#dashboard h1 {
  width: 100%;
  font-size: 60px;
  height: 40vh;
  color: white !important;
  background-color: rgb(0, 0, 0, 0.5);
}

.img-thumbnail {
  background: var(--color-red);
}

.membership-points {
  width: 100%;
  height: 100%;
  background: var(--color-red);
}

.membership-points-mobile {
  display: none;
}

.card-header a:hover {
  color: white;
}

#profile {
  margin-top: -100px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
  justify-content: center;
  align-items: center;
  color: white;
}

tr {
  background: #eee;
  color: #000000;
}
tr:hover {
  background: #b8abab;
  color: #ffffff;
}

th {
  background: var(--color-red);
  color: #fff;
  font-weight: 500;
  font-size: 20px;
}

td,
th {
  padding: 12px;
  border: 1px solid #ccc;
  text-align: center;
}

@media only screen and (max-width: 768px),
  (min-device-width: 768px) and (max-device-width: 992px) {
  #table {
    margin: auto 15px;
  }

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  tr {
    border: 1px solid #ffffff;
    margin-bottom: 15px;
  }

  td {
    border: none;
    position: relative;
    padding-left: 50%;
    text-align: right;
    border-bottom: 1px solid #ffffff;
  }

  td::before {
    position: absolute;
    top: 15px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
  }

  td:nth-of-type(1)::before {
    content: "Trx ID";
  }

  td:nth-of-type(2)::before {
    content: "Date";
  }

  td:nth-of-type(3)::before {
    content: "Ticket No.";
  }

  td:nth-of-type(4)::before {
    content: "Bus No.";
  }

  td:nth-of-type(5)::before {
    content: "Amount";
  }
}

@media screen and (max-width: 991px) {
  #dashboard h1 {
    font-size: 45px;
  }

  .membership-points-div {
    display: none;
  }
  .membership-points-mobile {
    display: block;
    max-width: 300px;
    height: auto;
  }
  .img-thumbnail {
    max-width: 300px;
    height: 300px;
  }
}

@media screen and (max-width: 576px) {
  .membership-points-mobile {
    max-width: 300px;
    height: 225px;
  }
  .img-thumbnail {
    max-width: 300px;
    height: 225px;
  }
}

/*--------------------------------------------------------------
# Passenger-booking
--------------------------------------------------------------*/
#passenger-booking {
  padding: 15px !important;
}
.date-switch .more-btn {
  border-radius: 0px;
  background-color: #fff;
}
.date-switch .more-btn:hover {
  background-color: white;
  color: #000;
}
.date-switch #todayBtn {
  border-bottom: 5px solid rgba(200, 13, 62, 1) !important;
  /* color: white; */
}
#returnTripDetails {
  display: none;
}

#passenger-booking,
#date-buttons {
  background: #eee;
}

#progressBar {
  /* margin: 20px 0px; */
  padding: 100px 0px 0px 0px;
  background: #eee;
}
#date-buttons {
  /* margin-top: 90px; */
  padding-top: 0px;
  padding-bottom: 10px;
}

#chooseJourneyTab {
  z-index: 10;
  border-radius: 0px !important;
}
#selectSeatTab {
  z-index: 8;
  border-radius: 0px !important;
}
#yourDetailsTab {
  z-index: 6;
  border-radius: 0px !important;
}
#confirmationTab {
  z-index: 4;
  border-radius: 0px !important;
}

#chooseJourneyArrow {
  position: absolute;
  width: 40px;
  height: 40px;
  right: -11px;
  background: #000;
  transform: rotate(45deg);
  z-index: 9;
}
#selectSeatArrow {
  position: absolute;
  width: 40px;
  height: 40px;
  right: -11px;
  background: #000;
  transform: rotate(45deg);
  z-index: 7;
}
#yourDetailsArrow {
  position: absolute;
  width: 40px;
  height: 40px;
  right: -11px;
  background: #000;
  transform: rotate(45deg);
  z-index: 5;
}
#confirmationArrow {
  position: absolute;
  width: 40px;
  height: 40px;
  right: -11px;
  background: #000;
  transform: rotate(45deg);
  z-index: 3;
}

@media (max-width: 600px) {
  #progressBar {
    padding: 80px 0px 0px 0px;
    background: #eee;
  }
  #passenger-booking .select-hide {
    display: none;
  }
  .passenger-booking-a {
    display: flex !important;
    width: 48px;
    height: 48px;
    padding: 6px 13px !important;
    border-radius: 100% !important;
  }
  .passenger-booking-a i {
    font-size: 24px !important;
  }

  .words-display {
    display: none;
  }
  .nums-display {
    display: block !important;
  }
}
/*--------------------------------------------------------------
# select-seat
--------------------------------------------------------------*/
#select-seat {
  background: #eee;
}
.transparent-accordion .accordion-button {
  background-color: transparent;
}

.seats-sidebar {
  width: 100%;
}

/* off canvas  */
.seat-layout {
  margin-top: -18px !important;
  margin-left: 65px;
  margin-right: 65px;
}

.offcanvas-body {
  overflow: hidden;
}
.offcanvas-body i {
  font-size: 40px;
}

.offcanvas-body img {
  width: 50px;
  height: auto;
}
.offcanvas-body a {
  color: #000;
}

.bi-check-circle {
  color: #119d1a;
}

@media screen and (max-width: 768px) {
  .seats-sidebar {
    position: inherit;
    width: 100%;
  }
}
/*--------------------------------------------------------------
# select-seat new
--------------------------------------------------------------*/
.seats-reservation {
  min-height: 80vh;
  max-height: 80vh;
}

@media (max-width: 991px) {
  .seats-reservation {
    min-height: auto;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eee; /* Background color of the preloader */
  z-index: 9999;
}

#preloader #status {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#preloader #status .spinner {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 4px solid #f3f3f3; /* Color of the spinner border */
  border-top-color: rgba(200, 13, 62, 1); /* Color of the spinner's top side */
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 16px;
  color: #000000;
  background: var(--color-btn);
  padding: 8px 20px;
  /* margin-left: 30px; */
  border-radius: 10px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #ffffff;
  background: #000000;
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1281px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
    justify-content: center;
    align-items: center;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 10px 10px 10px 20px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar li:hover {
    background-color: #00000014;
    border-radius: 10px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #000;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-red);
    color: #000 !important;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

@media (min-width: 1281px) {
  .mobile-nav-show {
    display: none;
  }
}

.buttons-mobile {
  visibility: hidden;
}

@media screen and (max-width: 1280px) {
  .buttons-mobile {
    display: flex;
    display: block;
    visibility: visible;
    width: 60%;
    justify-content: center;
    align-items: center;
    margin: 10px auto 0px;
  }
}

@media screen and (max-width: 1280px) {
  .buttons-desktop {
    visibility: hidden;
  }
}
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1280px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover > a {
    color: var(--color-red);
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  padding: 30px;
  background: var(--color-red);
  color: #fff;
  border-radius: 5px;
}

.why-us .why-box h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.more-btn {
  display: inline-block;
  background-color: #ffc700;
  padding: 6px 30px 8px 30px;
  color: #000000;
  border-radius: 10px;
  transition: all ease-in-out 0.3s;
}

.more-btn i {
  font-size: 14px;
}

.more-btn:hover {
  color: #ffffff;
  background: #000000;
}

.why-us .icon-box {
  text-align: center;
  background: #eeeeeedd;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(55, 55, 63, 0.1);
  border-radius: 5px;
  transition: 0.3s;
}

.why-us .icon-box i {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: rgba(206, 18, 18, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: var(--font-secondary);
}

.why-us .icon-box p {
  font-size: 15px;
  color: #6c757d;
}

@media (min-width: 1200px) {
  .why-us .icon-box:hover {
    transform: scale(1.1);
  }
}
button {
  border-radius: 10px;
}
/* ------------------------------------------------
bike delivery
--------------------------------------------------------------*/

.bike-img-container {
  background: url(../images/scooter.jpg);
  width: auto;
  height: 50vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin: auto;
}

.bike-img-container h1 {
  width: 100%;
  width: 100%;
  font-size: 55px !important;
  height: 50vh;
  color: var(--color-btn);
  background-color: rgb(0, 0, 0, 0.5);
}

@media (max-width: 600px) {
  .bike-img-container h1 {
    font-size: 35px !important;
  }
}
/* ------------------------------------------------
Preloader
--------------------------------------------------------------*/
*/ #preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-red);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-red);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
#faq {
  margin-top: 90px;
}
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list ol li {
  padding: 0px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  top: 14px;
  color: var(--color-btn);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 15px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: var(--color-primary);
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: var(--color-red);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}
.faq-list a {
  color: rgba(160, 11, 33, 1);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border-radius: 15px;
  text-align: left;
  outline: none;
  font-size: 15px;
  border-bottom: none;
  font-weight: 800;
}

.faq .faq-list a.collapsed {
  color: rgba(160, 11, 33, 1);
  transition: 0.3s;
}
.faq .faq-list .icon-help {
  color: rgba(160, 11, 33, 1);
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  margin-top: 90px;
  background: #eee;
}

.contact .info {
  /* border-top: 3px solid #47b2e4; */
  /* border-bottom: 3px solid #47b2e4; */
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: var(--color-primary);
  float: left;
  width: 44px;
  height: 44px;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-primary);
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #000000;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: var(--color-btn);
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--color-btn);
  /* color: #fff; */
}

.contact .php-email-form {
  width: 100%;
  /* border-top: 3px solid #47b2e4; */
  /* border-bottom: 3px solid #47b2e4; */
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 5px;
  /* box-shadow: none; */
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-red);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--color-btn);
  border: 0;
  padding: 12px 34px;
  color: #000000;
  transition: ease-in-out 0.4s;
  border-radius: 10px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #000000;
  color: #ffffff;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# login
--------------------------------------------------------------*/

#login {
  padding-top: 10px;
  margin-top: 90px;
  background: #eee;
}

#login form {
  padding: 100px 0px;
}

.form-select:focus,
input:focus,
textarea:focus,
.custom-shadow:focus {
  box-shadow: 0 0 5px #ff0000 !important;
}
#contact input:hover,
.input-group input:hover,
textarea:hover,
.accordion-body input:hover,
.form-select:hover,
.card-bg:hover {
  background: #eee !important;
  transition: ease-in-out;
}

.rememberMe:checked {
  background-color: var(--color-btn);
}
/*--------------------------------------------------------------
# signup
--------------------------------------------------------------*/
#signup {
  padding-top: 60px;
  margin-top: 90px;
  background: #eee;
  height: auto;
}

.signup-icon {
  text-align: center;
  background-color: var(--color-btn);
  border-radius: 50%;
  font-size: 50px;
  color: white;
  width: 100px;
  height: 100px;
  margin: auto;
  margin-bottom: -90px;
  line-height: 100px;
}

#signup form {
  padding: 100px 0px;
}

/* #signup input:focus {
  border-color: var(--color-red) !important;
  box-shadow: var(--color-red) !important;
} */

#map {
  margin-top: -70px;
  padding-bottom: 0px;
}
#location {
  margin-top: 90px;
}
/*--------------------------------------------------------------
# cards
--------------------------------------------------------------*/
#quick-buttons .col-4 a,
.card-body,
.card {
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
#select-seat .card-body,
#about .card-body,
#login .card-body,
#passenger-booking .card-body,
#merchandise .card-body,
#passenger-booking .card,
#signup .card-body,
#profile .card-body,
#edit .card-body {
  box-shadow: none !important;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #37517e;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
  border: 0 !important;
}
.footer-top-reduced {
  padding: 10px 0 10px 0;
  background: linear-gradient(
    to bottom,
    rgba(160, 11, 33, 1),
    rgba(200, 13, 62, 1)
  ) !important;
  border: 0 !important;
}

.footer-top-reduced p {
  color: #ffffff !important;
}
.footer-logo img {
  width: 215px;
  height: auto;
  border-radius: 5px;
  border: none;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #fff !important;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff !important;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 16px;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  /* color: rgba(160, 11, 33, 1); */
  font-size: 17px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--color-btn);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/*
* Open/Close panel
*/
.panel-heading {
  padding: 0;
  border: 0;
  margin-bottom: 0;
}

.panel-title > a,
.panel-title > a:active {
  display: block;
  padding: 20px;
  color: rgb(160, 11, 33);
  font-size: 16px;
  font-weight: bold;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  word-spacing: 3px;
  text-decoration: none;
  margin-top: 10px;
}

.panel-heading a:before {
  content: "\2303";
  float: right;
  transition: all 0.5s;
}

.panel-heading.active a:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.btn-outline-primary-theme {
  color: rgba(160, 11, 33, 1);
  background-color: #fff;
  background-image: none;
  border-color: rgba(160, 11, 33, 1);

  border-radius: 15px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  /* padding: .5rem 3rem; */
}

.btn-outline-primary-theme:hover {
  color: #fff;
  background-color: rgba(160, 11, 33, 1);
  border-color: rgba(160, 11, 33, 1);
}

.btn-outline-primary-theme:focus,
.btn-outline-primary-theme.focus {
  box-shadow: 0 0 0 0.2rem rgba(160, 11, 33, 1);
}

.btn-outline-primary-theme.disabled,
.btn-outline-primary-theme:disabled {
  color: rgba(160, 11, 33, 0.5);
  background-color: #fff;
}

.btn-outline-primary-theme:not(:disabled):not(.disabled):active,
.btn-outline-primary-theme:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary-theme.dropdown-toggle {
  color: #fff;
  background-color: rgba(160, 11, 33, 1);
  border-color: rgba(160, 11, 33, 1);
}

.btn-outline-primary-theme:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary-theme:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary-theme.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(160, 11, 33, 0.5);
}

.card-theme {
  border-radius: 15px;
  border: 1px solid rgb(160, 11, 33, 0.4) !important;
}
.btn-primary-theme {
  color: #fff;
  background-color: rgb(160, 11, 33);
  border-color: rgb(160, 11, 33);
  border-radius: 15px;
}

.image-box {
  border-radius: 15px;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
