@charset "UTF-8";

/* CSS Document */
body {
  margin: 0;
  width: 100%;
  font-family: 'Albula Pro', Verdana, sans-serif;
  font-size: 12pt;
  text-align: center;
  padding-top: 80px;
  background-color: #fff;
  color: #000;
  /* Keep the spacing for the fixed header */
}

#networkMap {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

#networkMap path,
#networkMap circle,
#networkMap rect,
#networkMap polyline,
#networkMap g * {
  transition: fill 0.75s ease-in-out;
}

/* Base fill for all route groups */
#networkMap g[id^="route"] * {
  fill: #a6c72a;
  /* Your base/default color */
  transition: fill 0.75s ease-in-out;
  will-change: fill;
}


/* Highlighted state applied via JS */
#networkMap g.highlight * {
  fill: #a6c72a !important;
}


.newsImg {
}

.container {
  max-width: 1400px;
}

.btn {
  background-color: #fff;
  color: #39a935;
  border-color: #a6c72a;
}

.btn:hover {
  background-color: #ebf0d2;
  border-color: #39a935;
  color: #39a935;
}

.btn:active {
  background-color: #39a935 !important;
  border-color: #a6c72a !important;
}


.btn-active {
  background-color: #39a935 !important;
  color: white !important;
  font-weight: bold !important;
}

.dropdown {
  width: auto;
  display: inline-block;
}

.dropdown-toggle {
  width: auto;
  text-align: left;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #39a935 !important;
  color: white !important;
}

/* Container holding the buttons */
.button-container {
  display: flex;
  flex-wrap: wrap;
  /* Allow wrapping onto the next line */
  gap: 0.5rem;
  /* Adjust space between buttons */
  justify-content: flex-start;
  /* Align buttons to the left */
}

.button-container .btn {
  flex: 1 1 auto;
  /* Make the button flexible to fit within the container */
  min-width: 120px;
  /* Minimum width to prevent tiny buttons */
}

.carousel-item {
  padding: 20px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  text-align: center;
  font-weight: bold;
}

/* Hide the inactive day button set */
.hidden {
  display: none;
}

/* Ensure buttons remain visually distinct */
.direction-btn,
.slide-btn {
  margin: 5px;
  padding: 8px 12px;
  cursor: pointer;
}

/* Adjust layout if necessary */
.button-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}


/* radius */

.btn-active:active {
  border-color: #a6c72a;
}

.radius {
  border-radius: .5em;
  overflow: hidden;
}

/* background colors */

.whiteOut {
  background-color: #fff;
  border: #e4e4e4 1px solid;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.heroRow {
  background-color: #00511e;
  border: #00511e 1px solid;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.darkGreen {
  background-color: #00511e;
  border: #b7ce3e 1px solid;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  color: #fff;
}


.mapGreen {
  background-color: #ebf0d2;
  border: #b7ce3e 1px solid;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  color: #000;
}


.darkGreen h1,
.darkGreen h2,
.darkGreen h3,
.darkGreen p {
  color: #fff;
}

.greenGrad {
  background-image: linear-gradient(to right, rgb(0, 81, 30), rgb(179, 204, 39));
}

.greenGradLite {
  background-image: linear-gradient(to right, rgba(0, 81, 30, 0.4), rgba(179, 204, 39, 0.4));
}

/* map */

#mapLinks {
  cursor: pointer;
}

/* Modal backdrop */

.modal-backdrop {
  background-color: #003112c3;
  /* Darker backdrop (you can change the color or opacity) */
}

/* Modal Dialog */
.modal-dialog {
  width: auto;
  max-width: 90vw;
  /* Limit modal width to 90% of the screen width */
  max-height: 90vh;
  /* Limit modal height to 90% of the viewport height */
  overflow: hidden;
  /* Ensures no scrolling */
  margin: 0 auto;
  /* Center modal horizontally */
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Modal Content */
.modal-content {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  width: auto;
  border: none;
}

/* Modal Body */
.modal-body {
  position: relative;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* Hide any overflowing content */
  height: 100%;
  width: 100%;
  margin-top: 10vh;
  /* Add some space from the top of the screen */
  margin-bottom: 10vh;
  /* Add some space at the bottom of the screen */
}

/* Image Styling */
#mapImage {
  max-width: 100%;
  max-height: 80vh;
  /* Keep image height within the viewport */
  object-fit: contain;
  /* Ensures the image maintains its aspect ratio */
  display: block;
  margin: 0 auto;
  border-radius: 2em;
}

/* Close Button Styling */
.btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  /* Make it circular */
  transform: translateY(2px);
  /* Moves the icon down by 2px */
  padding: 10px;
  font-size: 1.8rem;
  /* Size of the "X" */
  border: none;
  cursor: pointer;
  z-index: 10;
  /* Ensure the button is above the modal content */
  width: 40px;
  /* Width of the circle */
  height: 40px;
  /* Height of the circle */
  display: flex;
  justify-content: center;
  /* Center the "X" horizontally */
  align-items: center;
  /* Center the "X" vertically */
}

/* Close Button hover effect */
.btn-close:hover {}

/* cookie consent */

#cookieConsentDialog {
  position: fixed;
  width: 100%;
  background-color: #00511ed5;
  margin: 0;
  left: 0;
  bottom: 0;
  padding: 8px;
  z-index: 1000;
  font-size: 1em;
}

.cookie-buttons {
  text-align: left;
}

.cookie-consent-content {
  display: block;
  max-width: 1170px;
  margin: 0 auto;
}

.cookie-consent-content p {
  text-align: left;
  color: #fff;
}

.cookie-consent-content p a:link,
.cookie-consent-content p a:visited {
  color: #a6c72a
}


.cookie-consent-content p a:hover {
  color: #f8ff24;
  text-decoration: underline;
}

.cookie-text {}

.cookie-decline-button,
.cookie-accept-button {
  display: inline-block;
  position: relative;
  top: 0;
  padding: 10px;
  border-radius: .5em;
  min-width: 180px;
  margin: 5px 5px 3px 5px;


  font-size: 1em;
  text-align: center;
  z-index: 10;
  border: 0;
}

.cookie-decline-button {
  color: #a6c72a;
  background-color: #00511eca;
  transition: border 0.3s ease;
  border: 2px #a5c72a00 solid;

}

.cookie-accept-button {
  color: #fff;
  background: #2aa017;
  transition: border 0.3s ease;
  border: 2px #a5c72a00 solid;

}


.cookie-decline-button:hover {
  border: 2px #a6c72a solid;

}

.cookie-accept-button:hover {
  border: 2px #a6c72a solid;
}

/* lists */

/* general */

/* ALL ROUNDLES */
.roundel-container {
  display: flex;
  flex-wrap: wrap;
  /* Allows roundels to wrap if necessary */
  gap: 20px;
  /* Adds space between roundels */
  justify-content: start;
  /* Aligns roundels to the left */
}

/* Roundel container holds the roundel and sidecar */
.roundel {
  display: inline-flex;
  align-items: center;
  /* Vertically align both route number and sidecar */
  justify-content: start;
  /* Align the elements to the left */
  flex-direction: row;
  /* Keep the elements in a row */
  width: 100%;
  /* Ensure the roundel and sidecar take the full width available */
}

/* PRICE ROUNDLES */
.roundelPrice {
  display: flex;
  /* Flexbox to center the number */
  align-items: center;
  /* Vertically center text */
  justify-content: center;
  /* Horizontally center text */
  width: 133px;
  height: 133px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background-size: contain;
  background-position: center;
  font-family: 'Albula Pro', Verdana;
  font-weight: 600;
  font-size: 36pt;
  /* Default large font size */
  color: #fff;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
  white-space: nowrap;
}

.roundelPrice.threeChar .price {
  font-size: 3rem;
  /* Reduce text size */
  transform: translateY(-5px);
}

.roundelPrice.twoChar .price {
  font-size: 4rem;
  /* Reduce text size */
  transform: translateY(-10px);

}

.roundelPrice .price {
  display: block;
  /* Ensures that the text element itself is a block-level element */
  /* Adjust vertically if needed (negative value to move up) */
}

.roundelPrice.lime {
  background-color: #a6c72a;
}

.roundelPrice.mid {
  background-color: #39a935;
}

.roundelPrice.forest {
  background-color: #00511e;
}

.light {
  font-weight: 200 !important;
}

/* ROUTE ROUNDLES */

/* Roundel containing the background image and route number */
.roundelRoute {
  display: flex;
  /* Flexbox to center the number */
  align-items: center;
  /* Vertically center text */
  justify-content: center;
  /* Horizontally center text */
  width: 3em;
  height: 3em;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background: url('images/roundel.svg');
  background-size: contain;
  /* Ensures background image fits the div */
  background-position: center;
  /* Centers the background image */
  font-family: 'Albula Pro', Verdana;
  font-style: oblique;
  font-weight: 600;
  font-size: 2.5em;
  /* Larger font size for the text */
  color: #fff;
  /* Ensure the text is visible */
  text-align: center;
  /* Centers text */
  line-height: 1;
  transition: transform 0.3s ease-in-out;
}

.roundelRoute.dark {
  background-image: url('images/roundeldark.svg') !important;
}

.roundelSidecar.dark ul li {
  color: #00511e;
  font-weight: 600;
}

/* Fine-tuning text position */
.roundelRoute span {
  display: block;
  /* Ensures that the text element itself is a block-level element */
  transform: translateY(-2px);
  /* Adjust vertically if needed (negative value to move up) */
}

.roundelRoute:hover {
  transform: scale(1.05);
  /* Grows by 10% */
}

/* Sidecar (Route stops list) */
.roundelSidecar {
  display: inline-block;
  padding-left: 20px;
  /* Space between roundel and list */
  font-family: 'Albula Pro', Verdana;

}

.roundelSidecar ul {
  padding-left: 0;
  list-style-type: none !important;
}

.roundelSidecar li {
  font-size: 1.2em;
  /* Adjust font size */
  color: #fff;
  font-weight: 400;
}

.labelTop {
  display: block;
  font-family: 'Albula Pro', Verdana;
  font-weight: 700;
  color: #00511e;
  font-size: 1.5em;
  text-align: left;
}

.labelBottom {
  display: block;
  font-family: 'Albula Pro', Verdana;
  font-weight: 300;
  color: #2aa017;
  font-size: 1.5em;
  text-align: left;
  /* feature list */
}

.featureList {
  list-style-type: none;
}

.featureList li {
  position: relative;
  align-items: center;
  padding-left: 70px;
  color: rgb(0, 81, 30);
  font-weight: 500;
  /* Adjust based on the size of your SVG */
  margin-top: 30px;
  margin-bottom: 50px;
}

.featureList li::before {
  content: '';
  position: absolute;
  left: 0;
  top: -20px;
  width: 60px;
  /* Adjust based on the size of your SVG */
  height: 60px;
  /* Adjust based on the size of your SVG */
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s;
}

.featureList .iconEmail::before {
  background-image: url('images/icons/email.svg');
}
.featureList .iconPhone::before {
  background-image: url('images/icons/phone.svg');
}
.featureList .iconPost::before {
  background-image: url('images/icons/post.svg');
}

.featureList .iconComfort::before {
  background-image: url('images/icons/comfort.svg');
}

.featureList .iconLuggage::before {
  background-image: url('images/icons/luggage.svg');
}

.featureList .iconFrequency::before {
  background-image: url('images/icons/frequency.svg');
}

.featureList .iconCalendar::before {
  background-image: url('images/icons/calendar.svg');
}

.featureList .iconWifi::before {
  background-image: url('images/icons/wifi.svg');
}

.featureList .iconPower::before {
  background-image: url('images/icons/power.svg');
}

.featureList li:hover::before {
  transform: scale(1.1);
}

.featureList .iconContactless::before {
  background-image: url('images/icons/contactless.svg');
}

.featureList .iconApp-tv::before {
  background-image: url('images/icons/app-tv.svg');
}

.featureList .iconApp-we::before {
  background-image: url('images/icons/app-we.svg');
}

.featureList .iconApp-nandd::before {
  background-image: url('images/icons/app-nandd.svg');
}

.featureList .iconApp-carousel::before {
  background-image: url('images/icons/app-carousel.svg');
}

.featureList .iconCash::before {
  background-image: url('images/icons/cash.svg');
}

.featureList .iconFacebook::before {
  background-image: url('images/icons/facebook.svg');
}

.featureList .iconX::before {
  background-image: url('images/icons/x.svg');
}

.featureList .iconInstagram::before {
  background-image: url('images/icons/instagram.svg');
}

.featureList .iconThreads::before {
  background-image: url('images/icons/threads.svg');
}

.featureList .iconBluesky::before {
  background-image: url('images/icons/bluesky.svg');
}

.featureList .iconWhatsapp::before {
  background-image: url('images/icons/whatsapp.svg');
}

.featureList .iconTiktok::before {
  background-image: url('images/icons/tiktok.svg');
}


.featureList li:hover::before {
  transform: scale(1.1);
}


#waysToPay, #socialMedia, #contactDetails {
  padding-left:0;
}

#waysToPay li, #socialMedia li, #contactDetails li {
  font-size: 20px;
  font-weight: 300;
  padding-left: 90px;
}

#waysToPay li::before, #socialMedia li::before, #contactDetails li::before {
  top: -5px;
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s;
}

#waysToPay span, #socialMedia span, #contactDetails span {
  font-weight: 600;
  display: block;
}

#contactDetails {
  padding-left:1em;
}

.socialBlock {
  background: linear-gradient(to right, transparent, #ddff323b 30%);

}

#socialMedia {
}

#socialMedia li {
  margin-top: 30px;
  margin-bottom: 30px;
}




/* typography */

/* webfonts */
@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-Thin.woff2') format('woff2'),
    url('/fonts/AlbulaPro-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-ThinOblique.woff2') format('woff2'),
    url('/fonts/AlbulaPro-ThinOblique.woff') format('woff');
  font-weight: 100;
  font-style: oblique;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-ExtraLight.woff2') format('woff2'),
    url('/fonts/AlbulaPro-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-ExtraLightOblique.woff2') format('woff2'),
    url('/fonts/AlbulaPro-ExtraLightOblique.woff') format('woff');
  font-weight: 200;
  font-style: oblique;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-Light.woff2') format('woff2'),
    url('/fonts/AlbulaPro-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-LightOblique.woff2') format('woff2'),
    url('/fonts/AlbulaPro-LightOblique.woff') format('woff');
  font-weight: 300;
  font-style: oblique;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-Regular.woff2') format('woff2'),
    url('/fonts/AlbulaPro-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-Oblique.woff2') format('woff2'),
    url('/fonts/AlbulaPro-Oblique.woff') format('woff');
  font-weight: 400;
  font-style: oblique;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-Medium.woff2') format('woff2'),
    url('/fonts/AlbulaPro-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-MediumOblique.woff2') format('woff2'),
    url('/fonts/AlbulaPro-MediumOblique.woff') format('woff');
  font-weight: 500;
  font-style: oblique;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-SemiLight.woff2') format('woff2'),
    url('/fonts/AlbulaPro-SemiLight.woff') format('woff');
  font-weight: 350;
  font-style: normal;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-SemiLightOblique.woff2') format('woff2'),
    url('/fonts/AlbulaPro-SemiLightOblique.woff') format('woff');
  font-weight: 350;
  font-style: oblique;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-SemiBold.woff2') format('woff2'),
    url('/fonts/AlbulaPro-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-SemiBoldOblique.woff2') format('woff2'),
    url('/fonts/AlbulaPro-SemiBoldOblique.woff') format('woff');
  font-weight: 600;
  font-style: oblique;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-Bold.woff2') format('woff2'),
    url('/fonts/AlbulaPro-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-BoldOblique.woff2') format('woff2'),
    url('/fonts/AlbulaPro-BoldOblique.woff') format('woff');
  font-weight: 700;
  font-style: oblique;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-ExtraBold.woff2') format('woff2'),
    url('/fonts/AlbulaPro-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Albula Pro';
  src: url('/fonts/AlbulaPro-ExtraBoldOblique.woff2') format('woff2'),
    url('/fonts/AlbulaPro-ExtraBoldOblique.woff') format('woff');
  font-weight: 800;
  font-style: oblique;
}


/* headers */

h1,
h2,
h3 {
  font-family: 'Albula Pro', Verdana, sans-serif;
  text-align: left;
  color: #39a935;
}

h1 {
  font-size: 28pt;
  font-weight: 300;
}

h2 {
  font-size: 20pt;
  font-weight: 300;
}

h3 {
  font-size: 16pt;
  font-weight: 300;
}

h2.mid {
  font-size: 24pt;
  color: #39a935;
}

.boldHeader {
  font-weight: 600;
}

/* body text */

p,
td,
li,
th {
  color: #000;
  letter-spacing: .01em;
  line-height: 1.3;
  font-family: 'Albula Pro', Verdana, sans-serif;
  font-size: 13pt;
  font-weight: 400;
  text-align: left;
  color: rgb(0, 81, 30);
}

.rightp {
  text-align: right;
}

.jumboWrap {}

.jumboMessage {
  z-index: 50;
  padding: 4em;
}

.jumboImage {
  position: relative;
  height: 0;
  /* Reset height */
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  z-index: 3;
}

.jumboImage::before {
  content: "";
  position: absolute;
  top: 0;
  left: -71.67%;
  width: 171.6%;
  height: 100%;
  /* Ensures it fully covers the container */
  background-image: url('images/slide.png');
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.headerContainer {
  padding: 10px;
  background: linear-gradient(146deg, #a6c72a 0%, #a6c72a 10%, #00511e 10%, #00511e 100%);

  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 0, 0, 0.2);
}

.heroContainerFluid {
  background-color: #93b38a;
}

.heroContainer {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2) !important;

}

.heroMessage {
  display: block;
  position: absolute;
  margin: 1em;
  /* Remove the margin */
  padding: 1em;
  /* Adjust this as needed to create space */
}

.jumboMessage p {
  color: #fff;
}

.jumboMessage h1 {
  font-family: 'Albula Pro', Verdana, sans-serif;
  font-weight: 800;
  font-style: oblique;
  color: white;
  font-size: clamp(12px, 4vw, 48px);
}

.cookieHeader {
  font-family: 'Albula Pro', Verdana, sans-serif;
  font-weight: 800;
  font-style: oblique;
  color: white;
  font-size: 24px;
}

/* emoji fix */

.cookieHeader span {
  font-style: normal;
}

.submenu span {
  font-family: 'Albula Pro', Verdana, sans-serif;
  font-weight: 600;
  font-style: oblique;
}

.submenu {
  font-family: 'Albula Pro', Verdana, sans-serif;
  font-weight: 400;
  font-style: oblique;
}

ul li svg {
  width: 15px;
  height: auto;
}

/* links */

a:link,
a:visited {
  color: #2aa017;
  text-decoration: none;
}

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

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

/* pageNav */

.pageNav {
  display: block;
  float: right;
  margin: 3em 0;
}

/* buttons */

.navBtn {
  color: #fff !important;
  background: #00511e;
  transition: border 0.3s ease;
  border: 2px #2aa017 solid !important;
  margin: .25em;
}

.navBtn:hover {
  background: #2aa017;
  border: 2px #a6c72a solid !important;
}

.subBtn {
  color: #fff !important;
  background: #00511e;
  transition: border 0.3s ease;
  border: 2px #2aa017 solid !important;
}

.subBtn:hover {
  background: #2aa017;
  border: 2px #a6c72a solid !important;
}

/* images */

.route102 {
  background-image:
    url('images/photos/102.jpg');
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}

.route703 {
  background-image:
    url('images/photos/703.jpg');

  background-size: cover;
  background-position: center center;
  min-height: 400px;
}

.route730-731 {
  background-image:
    url('images/photos/730-731.jpg');
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}


.coachInterior {
  background-image:
    url('images/photos/coachinterior2.jpg');
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}

.coachandplane {
  background-image:
    url('images/photos/coachandplane.jpg');
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}

.imgLeft {
  float: left;
  border-radius: 50%;
  width: 200px;
  height: auto;
  padding: 15px;
}

.imgRight {
  float: right;
  border-radius: 50%;
  width: 200px;
  height: auto;
  padding: 15px;
}

.imgRightNoRad {
  float: right;
  width: 200px;
  height: auto;
  padding: 15px;
}

.imgLeftNoRad {
  float: left;
  width: 200px;
  height: auto;
  padding: 15px;
}


.subImgRight {
  height: 100%;
  margin: 0;
  width: auto;
  border-radius: 10px;
  position: relative;
  float: right;
}


.subImgLeft {
  width: 100%;
  margin: 15px 0px 25px 0px;
  height: auto;
  border-radius: 10px;
  position: relative;
  float: left;
}

/* tricks */

.noMarg {
  margin-top: 0 !important;
}

/* header */

/* general */

#header {
  display: block;
  width: 100%;
  position: relative;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  margin-bottom: 0px;
  line-height: 0;
}

#headermask {
  position: absolute;
  top: 0px;
  width: 100%;
}

#maskcontainer {
  position: absolute;
  width: 100%;
  height: 200px;
  display: inline-block;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
}

/* alert */

.alert {}

/* nav */


nav ul li label {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background-color: #fff;
  color: #00511e;
}

/* top  */
.toggle,
[id^=drop] {
  display: none;
}


#icon {
  float: right;
  right: 0;
  top: 0;
  position: absolute;
  display: inline-block;
  z-index: 5;
  padding: 18px;
  line-height: 15px;
  font-size: 18pt;
  fill: white;
}


/* Since we'll have the "ul li" "float:left"
    * we need to add a clear after the container. */

nav:after {
  content: "";
  display: table;
  clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
    * and adding "position:reltive" */
nav ul {
  float: right;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
  margin: 0px;
  display: inline-block;
  float: left;
}

/* Styling the links */
nav ul a {
  display: block;
  padding: 14px 10px;
  font-size: 17px;
  text-decoration: none;
  font-family: 'Albula Pro', Verdana, sans-serif;
  cursor: pointer;
  cursor: hand;
}

nav ul a,
nav ul a:link,
nav ul a:visited,
nav ul a:hover,
nav ul a:active {
  color: #fff;
  font-family: 'Albula Pro', Verdana, sans-serif;
  font-weight: normal;
}



nav ul li a:hover {
  text-decoration: none;
  color: #fff;
}

nav ul li a.current-page {
  text-decoration: underline;
  text-decoration: none;
  color: #fff;
  /* Style the underline for the current page */
}

.submenu {
  position: relative;
  /* <-- key change */
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  display: none;
  /* still hidden by default */
  box-shadow: none;
  /* optional: remove desktop shadow */
}

#routes-toggle:checked~.submenu {
  display: block;
}

/* logo */

#logoSpan {
  float: left;
  display: inline-block;
  top: 0;
}

.logo {
  width: 200px;
  height: auto;
  margin: 0.5em;
  top: 0px;
  left: 100px;
}


@media all and (min-width: 1001px) {

  .arrow {
    fill: #fff;
  }

  .toggle {
    display: none !important;
    /* Force hiding the toggle on larger screens */
  }

  nav ul {
    top: 0;
  }

  nav ul li input[type="checkbox"] {
    display: none;
  }

  nav ul li label {
    display: block;
    font-size: 17px;
    color: white;
    padding: 14px 10px;
    cursor: pointer;
    background: none;
    display: inline-block;
    /* Ensures border works */
    padding-bottom: 14px;
    /* Optional: Adds spacing */
  }

  /* Allow dropdowns to show on hover */
  nav ul li:hover>.submenu {
    display: block;
  }

  nav ul li ul li a:hover {
    background: #f0f0f0 !important;
    /* Light grey on hover */
  }

  .submenu {
    display: none;
    /* Temporary */
    position: absolute;
    left: 0;
    top: 100%;
    max-width: 310px;
    border-radius: 5px;
    overflow: hidden;
    border-bottom: none !important;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);

  }

  .submenu li {
    display: block;
    width: 100%;
  }

  .submenu a {
    padding: 10px 20px;
    font-size: 16px;
    color: #00511e !important;
  }

  .submenu a:hover {
    /* Light grey on hover */
  }


  nav ul li:hover>a,
  nav ul li:hover>label,
  nav ul li:hover>ul {}

  .modal-dialog {
    max-width: 70vw;
    /* Limit modal width to 70% on large screens */
    max-height: 70vh;
    /* Limit modal height to 70% */
  }

  #closeBtn {
    top: 20px;
    /* Further adjust close button position for large screens */
    right: 20px;
  }

}

@media all and (min-width: 1201px) {

  /* header */

  #header {}


  /* logo */

  #logoSpan {
    float: left;
    top: 10px;
  }

  .logo {
    width: 200px;
    height: auto;
    margin: 0.5em;
    top: 0px;
    left: 100px;
  }

  .modal-dialog {
    max-width: 60vw;
    /* Limit modal width to 60% on extra-large screens */
    max-height: 60vh;
    /* Limit modal height to 60% */
  }

  #closeBtn {
    top: 25px;
    /* Adjust top and right for very large screens */
    right: 25px;
  }

}

@media all and (max-width: 1000px) {


  /* Ensure the menu background is white and no border */
  nav ul {
    background-color: #fff !important;
    margin: 0;
    padding: 0;
    border: none;
    list-style-type: none;
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Clip content to the li size */
  }

  /* Ensure the Routes & Times label has the correct styling */
  nav ul li label {
    color: #00511e !important;
    /* Dark green text */
    background-color: #fff !important;
    /* White background */
    padding: 10px 22px;
    font-size: 24px;
    cursor: pointer;
    width: 100%;
    display: inline-block;
    /* Ensures border works */
  }

  nav ul li:hover label {
    display: inline-block;
    /* Ensures border works */
  }

  /* menu styling for mobile */
  nav ul {
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 999;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    /* Optional: for pop-out effect */
    overflow: hidden;
    /* Prevent overflow */
    display: none;
    /* Hidden by default */
  }

  .arrow {
    fill: #00511e;
  }

  /* sub-menu */

  /* Adjust hover and mobile interactions */
  nav ul li:hover>ul,
  nav ul li:has(> input:checked)>ul {
    display: block;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    /* Pop-out shadow effect */
    z-index: 999;
    /* Ensure it floats above other content */
  }

  /* Mobile menu toggle (checkbox) styling */
  nav ul li input[type="checkbox"] {
    display: none;
    /* Hide checkbox */
  }

  /* Ensure all links in the menu have dark green text */
  nav ul a {
    color: #00511e !important;
    /* Dark green text */
    padding: 10px 20px;
    font-size: 24px;
    text-decoration: none;
  }

  nav ul li:hover {
    background: #f0f0f0 !important;
    /* Light grey on hover */

  }

  nav ul li label:hover {
    background: #f0f0f0 !important;
    /* Light grey on hover */
  }

  .submenu a:hover {
    background: #f0f0f0 !important;
    /* Light grey on hover */
  }

  .submenu li {
    display: block;
    margin: 0;
  }

  .submenu a {
    display: block;
    width: 100%;
    padding: 16px 24px;
    /* 👈 make it bigger here */
    font-size: 18px;
    color: #00511e;
    box-sizing: border-box;
    transition: background 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Show submenu when checkbox is checked */
  nav ul li:has(> input:checked)>ul {
    display: block;
    position: absolute;
  }

  /* Hide checkbox visually but keep it functional */
  nav ul li input[type="checkbox"] {
    display: none;
  }

  nav ul li label {
    font-size: 24px;
    padding: 10px 22px;
    background-color: #fff;
    cursor: pointer;
  }

  nav ul li:hover label {
    background-color: #f0f0f0;
    /* Light hover effect */
  }

  /* Style for the mobile toggle button */
  .toggle {
    display: block;
    padding: 18px 10px;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    border: none;
    margin: 0;
  }

  .toggle:hover {
    text-decoration: none;
  }


  /* Display Dropdown when clicked on Parent Lable */
  [id^=drop]:checked+ul {
    display: block;
    z-index: 2;
  }


  /* Make sure the menu button works on mobile */
  nav ul li {
    display: block;
    width: 100%;
    padding: 0 0;
  }
}

@media all and (max-width: 768px) {

  #routeCarousel {
    touch-action: auto !important;
    /* Enables pinch zoom */
  }

  .carousel-inner {
    pointer-events: auto !important;
    /* Allows interaction */
  }

  .carousel-item img {
    width: 100%;
    /* Ensure image scales properly */
    max-width: none;
    /* Remove Bootstrap’s constraints */
  }

  .pageNav {
    float: left;
    margin: 1em 0;
  }


  .jumboMessage h1 {
    font-size: 36px;
  }

  .jumboWrap {
    aspect-ratio: unset;
    /* Remove forced aspect ratio */
    height: auto;
    /* Allow height to adjust naturally */
  }

  .jumboImage {
    min-height: auto;
    /* Remove fixed height */
    height: auto;
    /* Let content define height */
  }

  .jumboImage::before {
    width: 100%;
    /* Ensure background fits */
    left: 0;
    /* Remove negative offset */
    min-height: 100%;
    /* Force background to fill parent */
    background-size: cover;
    /* Ensure full coverage */
  }

}

@media all and (min-width: 701px) {

  #logoSpan {
    float: left;
    top: 5px;
  }

  .logo {
    height: auto;
    margin: .5em;
    top: ;
    left: 100px;
  }

  .modal-dialog {
    max-width: 80vw;
    /* Limit modal width to 80% on medium screens */
    max-height: 80vh;
    /* Limit modal height to 80% */
  }

  #closeBtn {
    top: 15px;
    /* Slightly adjust close button position for larger screens */
    right: 15px;
  }
}


@media all and (max-width : 500px) {}

/* homepage */

/* hero */

.heroSlide {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

/* footer */

.partnership {
  color: #adadad;
}

/* Default color */

.footLogo {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.3s ease, opacity 0.3s ease;
  max-width: 200px;
  /* Controls max size */
  height: auto;
  /* Keeps aspect ratio */
  object-fit: contain;
  /* Ensures full image visibility */
  padding: 1em;
}

/* Hover effect */
.footLogo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* footLogo negative margin */
.negMarg10 {
  margin-left: -10px;
}

.negMarg20 {
  margin-left: -20px;
}

.negMarg30 {
  margin-left: -30px;
}

.greyscale {
  color: #9a9a9a;
  margin-bottom: 0;
}

/* Core resets */
nav input[type="checkbox"] {
  display: none;
}

.menu {
  display: none;
  flex-direction: column;
  list-style: none;
  padding: 0;
}

#drop:checked+.menu,
#drop:checked~.menu {
  display: flex;
}

.menu li {
  position: relative;
}

.submenu {
  display: none;
  flex-direction: column;
  padding-left: 0;
}

#routes-toggle:checked+.submenu,
#routes-toggle:checked~.submenu {
  display: flex;
}

/* Desktop styles */
@media (min-width: 768px) {

  /* Base fill for all route groups */
#networkMap g[id^="route"] * {
  fill: #5ca935;
  /* Your base/default color */
  transition: fill 0.75s ease-in-out;
  will-change: fill;
}

  .route102 {
    background-image:
      url('images/photos/102-overlay.png'),
      linear-gradient(to right, white, transparent 50%),
      url('images/photos/102.jpg');
  }
  
  .route703 {
    background-image:
      url('images/photos/703-overlay.png'),
      linear-gradient(to right, white, transparent 50%),
      url('images/photos/703.jpg');
  }
  
  .route730-731 {
    background-image:
      url('images/photos/730-731-overlay.png'),
      linear-gradient(to right, white, transparent 50%),
      url('images/photos/730-731.jpg');
  }
  
  .coachInterior {
    background-image:
      linear-gradient(to right, white, transparent 50%),
      url('images/photos/coachinterior2.jpg');
  }

  .coachandplane {
    background-image:
      linear-gradient(to right, white, transparent 50%),
      url('images/photos/coachandplane.jpg');
  }

  .toggle {
    display: none;
  }

  .menu {
    display: flex;
    flex-direction: row;
    gap: 0;
  }

  .submenu-toggle {
    display: none;
    /* Hide mobile toggle on desktop */
  }

  .menu li {
    position: relative;
  }

  .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0.5rem;
    z-index: 10;
    min-width: 200px;
  }

  .menu li:hover .submenu {
    display: block;
  }

  #routes-toggle {
    display: none;
  }
}

@media all and (min-width: 768px) and (max-width: 1000px) {

  .toggle {
    display: block !important;
    /* Force show burger */
  }

  .menu {
    display: none !important;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
  }

  nav ul li {
    display: block;
    width: 100%;
  }

  .submenu {
    position: relative;
    top: auto;
    left: auto;
    box-shadow: none;
  }

  #drop:checked+.menu,
  #drop:checked~.menu {
    display: flex !important;
  }


}