* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 100%;
    background: url("images/sitebg.png") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    box-sizing: border-box;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    background: #fff;
    transition: all 0.5s;
    z-index: 99997;
    height: 40px;
  }
  #header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  #header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  #header .logo a {
    color: #5cb874;
  }
  #header .logo img {
    max-height: 40px;
  }
  
  .scrolled-offset {
    margin-top: 70px;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    color: #222222;
    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 .active, .navbar .active:focus, .navbar li:hover > a {
    color: #2A4E86;
  }
  .navbar .getstarted, .navbar .getstarted:focus {
    color: #2A4E86;
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 4px;
    border: 2px solid #2A4E86;
    transition: 0.3s;
    font-size: 14px;
  }
  .navbar .getstarted:hover, .navbar .getstarted:focus:hover {
    background: #2A4E86;
    color: #fff;
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
  }
  .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: #2A4E86;
  }
  .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 (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
      left: -100%;
    }
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  .mobile-nav-toggle.bi-x {
    color: #fff;
  }
  
  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }
  
    .navbar ul {
      display: none;
    }
  }
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
  }
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  .navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #222222;
  }
  .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #2A4E86;
  }
  .navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #2A4E86;
  }
  .navbar-mobile .dropdown > .dropdown-active {
    display: block;
  }
  
  /*--------------------------------------------------------------
  # home Section
  --------------------------------------------------------------*/
  #home {
    width: 100%;
    height: 60vh; /* change this */
    overflow: hidden;
    position: relative;
  }
  #home .carousel, #home .carousel-inner, #home .carousel-item, #home .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
  #home .carousel-item::before {
    content: "";
    background-color: #2A4E86;
    height: 400px; /* dont forget to change this */
  }
  #home .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 50px;
    right: 50px;
  }
  #home .container {
    text-align: center;
  }
  #home h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 700;
  }
  #home p {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
  }
  #home .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
  }
  #home .carousel-inner .carousel-item,
  #home .carousel-inner .active.carousel-item-start,
  #home .carousel-inner .active.carousel-item-end {
    opacity: 0;
  }
  #home .carousel-inner .active,
  #home .carousel-inner .carousel-item-next.carousel-item-start,
  #home .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
  }
  
  #home .carousel-control-next-icon, #home .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #home .carousel-control-next-icon:hover, #home .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
  }
  #home .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
  }
  #home .carousel-indicators li.active {
    opacity: 1;
    background: #20ab45;
  }
  #home .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background: #5cb874;
  }
  #home .btn-get-started:hover {
    background: #6ec083;
  }
  @media (max-width: 992px) {
    #home {
      height: 100vh;
    }
    #home .carousel-container {
      top: 66px;
    }
  }
  @media (max-width: 768px) {
    #home h2 {
      font-size: 28px;
    }
  }
  @media (min-width: 1024px) {
    #home .carousel-control-prev, #home .carousel-control-next {
      width: 5%;
    }
  }
  @media (max-height: 500px) {
    #home {
      height: 120vh;
    }
  }
  
  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    padding: 25px 0;
  }
  
  .section-bg {
    background-color: none;
  }
  
  .section-title {
    text-align: center;
    padding-bottom: 2px;
  }
  .section-title h2 {
    font-size: 20px;
    color: white;
    font-family: "Raleway", sans-serif;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  .section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ffffff;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #5cb874;
    bottom: 0;
    left: calc(50% - 20px);
  }
  .section-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #F8F8F8;
  }

  .blue-box {
    background-color: #2A4E86;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
  }

  .blue-box a {
    color: white;
    text-decoration: none;
  }
  
 
  
  /*--------------------------------------------------------------
  # map Us
  --------------------------------------------------------------*/
  .map ul {
    list-style: none;
    padding: 0;
  }
  .map ul li {
    padding-bottom: 10px;
    margin-left: 30px;
    font-size: 23px;
  }
  .map ul li a {
    font-size: 20px;
    padding-right: 4px;
    color: #2A4E86;
  }

  .map {
    background: none;
    padding: 0;
  }
  .map .row {
    height: 0%;
    overflow: hidden;
  }
  
  @media (max-width: 768px) {
    .map .row {
      padding: 0px 0;
    }
  }
  
  
  
  /*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
  .breadcrumbs {
    padding: 15px 0;
    background: #fbfbfb;
    min-height: 40px;
  }
  @media (max-width: 992px) {
    .breadcrumbs {
      margin-top: 66px;
    }
  }
  .breadcrumbs h2 {
    font-size: 28px;
    font-weight: 300;
  }
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
  }
  .breadcrumbs ol li + li {
    padding-left: 10px;
  }
  .breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #3c3c3c;
    content: "/";
  }
  @media (max-width: 768px) {
    .breadcrumbs .d-flex {
      display: block !important;
    }
    .breadcrumbs ol {
      display: block;
    }
    .breadcrumbs ol li {
      display: inline-block;
    }
  }
  
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  #footer {
    background: #090909;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
  }
  #footer h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0 0 15px 0;
  }
  #footer p {
    font-size: 15;
    font-style: italic;
    padding: 0;
    margin: 0 0 40px 0;
  }
  #footer .social-links {
    margin: 0 0 40px 0;
  }
  #footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #2A4E86;
    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 .social-links a:hover {
    background: #2A4E86;
    color: #fff;
    text-decoration: none;
  }
  #footer .copyright {
    margin: 0 0 5px 0;
  }


  .copyright a {
    color: inherit; /* Use the color of the parent element */
    text-decoration: underline; /* Underline the link */
  }

  #footer .credits {
    font-size: 13px;
  }

*, html {
    --primaryGradient: linear-gradient(93.12deg, #072669 0.52%, #0066CC 100%);
    --secondaryGradient: linear-gradient(268.91deg, #072669 -2.14%, #0066CC 99.69%);
    --primaryBoxShadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    --secondaryBoxShadow: 0px -10px 15px rgba(0, 0, 0, 0.1);
    --primary: #3D6FA5;
    }

/* CHATBOX
=============== */
.chatbox {
  position: fixed;
  bottom: 8px;
  right: 5px;
  animation: slideInFromBottomRight 0.5s ease-in-out forwards;
 }
 
 @keyframes slideInFromBottomRight {
  from {
     transform: translateX(100%);
  }
  to {
     transform: translateX(0);
  }
 }


/* CONTENT IS CLOSE */
.chatbox__support {
  display: none;
  flex-direction: column;
  background: transparent;
  opacity: 1;
  animation: fade-out 0.5s backwards;
}

@keyframes fade-out {
from {
    opacity: 0;
    transform: translateY(12px);
}
to {
    opacity: 1;
    transform: translateY(12);
}
}

/* CONTENT ISOPEN */
.chatbox--active {
  display: flex;
  transform: translateY(-12px);
  animation: fade-in 0.5s forwards;
}

@keyframes fade-in {
from {
    opacity: 0;
    transform: translateY(-22px);
}
to {
    opacity: 1;
    transform: translateY(1);
}
}





/* BUTTON */
.chatbox__button {
    text-align: right;
}
.showButtons{
    background-color:#2A4E86;
    color: white;
    font-style: bold;
    width: 95%;
    padding: 5px;
    border: 1px solid black;
    border-radius: 6px;
    margin-bottom: 5px;
}

.showButtons:hover{
    background-color:white;
    font-size: bold;
    color: black;
}

.send__button {
    padding: 6px;
    background: none;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
}
.send__button:hover {
    color: darkgray;
}
.send__button:active {
    transform: scale(0.90);
    /* Scaling button  */
}


/* HEADER */
.chatbox__header {
    position: sticky;
    top: 0;
    background: orange;
}
/* logo button effect */
.chatbox__image--header:active {
    transform: scale(0.95);
    outline: none;
    /* Scaling button to 0.98 to its original size */
}

/* MESSAGES */
.chatbox__messages {
    margin-top: auto;
    display: flex;
    overflow-y: scroll;
    scroll-behavior: auto !important;
    flex-direction: column-reverse;
}
.special-message {
    border: 2px solid rgb(218, 0, 0); /* 2px wide solid border with a tomato color */
    background-color: #F8F8F8; /* Light gray background color */
    color: green; /* Black text color */
    padding: 10px; /* 10px of padding on all sides */
}



.messages__item {
    background: orange;
    max-width: 60.6%;
    width: -moz-fit-content;
    width: fit-content;
}

.messages__item--operator {
    margin-left: auto;
}

.messages__item--visitor {
    margin-right: auto;
}

/* FOOTER */
.chatbox__footer {
    position: sticky;
    bottom: 0;
}

.chatbox__support {
    background: #f9f9f9;
    height: 544px;
    width: 380px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}

/* HEADER */
.chatbox__header {
    background: var(--primaryGradient);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: var(--primaryBoxShadow);
}

.chatbox__image--header {
    margin-right: 10px;
    outline: black
}

.chatbox__heading--header {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.918);
}

.chatbox__description--header {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.918);
}

/* Messages */
.chatbox__messages {
    padding: 0 20px;
}

.messages__item {
    margin-top: 8px;
    background: #E0E0E0;
    padding: 8px 12px;
    max-width: 90%;
}

.messages__item--visitor,
.messages__item--typing {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: auto;
    margin-bottom: auto;
    margin-bottom: 7px;
}

.messages__item--operator {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    margin-top: .5px;
    margin-bottom: 1px;
    background: var(--primary);
    color: white;
}

/* FOOTER */
.chatbox__footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 13px 13px;
    background: var(--secondaryGradient);
    box-shadow: var(--secondaryBoxShadow);
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.chatbox__footer input {
    width: 78%;
    border: none;
    padding: 10px 10px;
    border-radius: 10px;
    text-align: left;
    
}

.chatbox__send--footer {
    font-weight: 545; /* Or use a numeric value, like 700 */
    color: white;
}

.chatbox__button button,
.chatbox__button button:focus,
.chatbox__button button:visited {
    padding: 5px;
    background: var(--primaryGradient);
    border: #20272F;
    outline: #20272F;
    border-top-left-radius: 55px;
    border-top-right-radius: 52px;
    border-bottom-left-radius: 65px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.keys{
    font-weight: bold;
    font-size:medium;
    
}

.values{
    font-size: small;
    color: darkslategrey;
}

.constant{
    text-align: center;
    color:whitesmoke;
    background-color: black;
    opacity: 0.3;
}
.volume{
    border:0;
    margin-left: 1px;
    font-size:16px; 
    color: darkslategray;
    background: #E0E0E0;
}
.volume:hover{
    opacity: 0.6;
}
.mic:hover{
    font-size:14px;
    color: darkgray;
}
.mic:active {
    transform: scale(0.85);
    /* Scaling button to 0.98 to its original size */
}


.menu-container {
    /* Add your styling here */
    background: var(--secondaryGradient);
    box-shadow: var(--secondaryBoxShadow);
    padding: 9px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -1px; /* Adjust as needed */
    
  }

  /* Adjust the width of the select menu */
#stops {
  width: 361px; /* Adjust the width as needed */
}


.chatbox__suggestions {
    background: var(--secondaryGradient);
    box-shadow: var(--secondaryBoxShadow);
    display: flex;
    margin-bottom: 0px;
}

.select2-results__option {
    border: 1.5px solid #09379b; /* Adjust color and width as needed */
    padding: 1px; /* Adjust as needed */
    font-family: 'Nunito', sans-serif; /* Choose your preferred font */
    font-size: 16px; /* Adjust as needed */
    color: #000000; /* Adjust color as needed */
    
}
.findRestaurants__btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 540; /* Or use a numeric value, like 700 */
    letter-spacing: 0.3px;
    padding: 10px;
    color: white;
    border-radius: 9px;
    background: #2A4E86;
    outline: transparent;
    width: 20%;
    cursor:pointer;
    transform: scale(0.95);

}
.findRestaurants__btn:hover{
    color: darkgray;
}
    .findRestaurants__btn:active {
        transform: scale(0.85);
        /* Scaling button to 0.98 to its original size */
        box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
        /* Lowering the shadow */
}
.findLocalParks__btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 540; /* Or use a numeric value, like 700 */
    letter-spacing: 0.3px;
    padding: 10px;
    color: white;
    border-radius: 9px;
    background: #2A4E86;
    outline: transparent;
    width: 22%;
    cursor:pointer;
    transform: scale(0.95);
}
.findLocalParks__btn:hover{
    color: darkgray;
}
    .findLocalParks__btn:active {
        transform: scale(0.85);
        /* Scaling button to 0.98 to its original size */
        box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
        /* Lowering the shadow */
}
.fare__btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 540; /* Or use a numeric value, like 700 */
    letter-spacing: 0.3px;
    padding: 10px;
    color: white;
    border-radius: 9px;
    background: #2A4E86;
    outline: transparent;
    width: 20%;
    cursor:pointer;
    transform: scale(0.95);
}
.fare__btn:hover{
    color: darkgray;
}
    .fare__btn:active {
        transform: scale(0.85);
        /* Scaling button to 0.98 to its original size */
        box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
        /* Lowering the shadow */
}
.contact__btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 540; /* Or use a numeric value, like 700 */
    letter-spacing: 0.3px;
    padding: 10px;
    color: white;
    background: #2A4E86;
    border-radius: 9px;
    outline: transparent;
    width: 18%;
    cursor: pointer;
    transform: scale(0.95);
}
.contact__btn:hover{
    color: darkgray;
}
    .contact__btn:active {
        transform: scale(0.85);
        /* Scaling button to 0.98 to its original size */
        box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
        /* Lowering the shadow */
}

.findbusstops__btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 540; /* Or use a numeric value, like 700 */
    letter-spacing: 0.3px;
    padding: 10px;
    color: white;
    background: #2A4E86;
    border-radius: 9px;
    outline: transparent;
    width: 20%;
    cursor: pointer;
    transform: scale(0.95);
}
.findbusstops__btn:hover{
    color: darkgray;
}
    .findbusstops__btn:active {
        transform: scale(0.85);
        /* Scaling button to 0.98 to its original size */
        box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
        /* Lowering the shadow */
    }
hr {
    clear: both;
    visibility: hidden;
}