body {
  padding: 50px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
  color: #00B7FF;
}
.odd{
  background-color: rgba(240, 240, 240, 0.4);
}


.page-header{
  background-color: black;
  color: white;
}

.page-header{
  height: 56px;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  z-index: 1000;
}

.footer{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6%;
  color: #4d4c4c;
  background-color: #EEEEEE;
  text-align: center;
}

#footer a {
  color: #41464b !important;
}

.title, .version{
  background-color: #005A96;
  color: white;

}
.title{
  font-size: 4rem !important;
  height: 9vh;
}
.version{
  font-size: 8px;
}

.accordion-button {
  height: 1.4rem;
}

.hide{
  display: none;
}

.show {
  display: block !important;
}

.disclaimer{
  text-align: right;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.7;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 1px;
}
.disclaimer:hover{
  color: #fff;
  opacity: 0.7;
  text-decoration: underline;
}

/* Down Arrow */
.scroll-arrow {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  cursor: pointer;
  animation: bounce 1.5s infinite;
  display: none;
}

/* Initial hidden state */
.scroll-arrow {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* When the arrow should be visible */
.scroll-arrow.show {
  opacity: 1;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

.content-container {
  top: 436px; /* Adjust to match header height */
  left: 0;
  width: 100%;
  height: calc(100vh - 500px); /* Fill remaining screen */
  overflow-y: auto;
  padding: 20px;
  background: #fafafa;
}

.map {
  width: 96%;
  height: 700px;
  margin-left: 2%;
}

.btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn-primary {
    background-color: #f5f5f5 !important; /* Your desired hover background color */
    border-color: #f5f5f5 !important;     /* Your desired hover border color */
    color: #1b1a1a !important;          /* Your desired hover text color (if needed) */
}

/*.btn-primary:hover {*/
/*    background-color: #71baea !important; !* Your desired hover background color *!*/
/*    border-color: #71baea !important;     !* Your desired hover border color *!*/
/*    color: #090909 !important;          !* Your desired hover text color (if needed) *!*/
/*}*/

.btn-fill-animate {
    position: relative;
    overflow: hidden;
    color: #1b1a1a;
    border: none;
    z-index: 1;
    background-color: #f5f5f5; /* Bootstrap primary blue */
    transition: color 0.3s ease;
}

/* Animated fill layer */
.btn-fill-animate::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #71baea; /* Bootstrap success green */
    transition: width 0.4s ease;
    z-index: -1; /* <<< this keeps the fill behind the text */
}

/* Hover: fill expands left-to-right */
.btn-fill-animate:hover::before {
    width: 100%;
}

/* Keep text above the animation */
.btn-fill-animate span {
    position: relative;
    z-index: 1;
}

/* Optional: text color shift */
.btn-fill-animate:hover {
    color: #1b1a1a;
}

.dsg--pagetop {
    height: 300px;
    background-color: #f5f5f5;
    width: calc(100vw + 2px);
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}
.dsg--pagetop__image {
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    max-width: calc(1200px + (50vw - 600px) + 67px);
}
.dsg--pagetop__image__inner {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.dsg--pagetop__title {
    position: absolute;
    bottom: 60px;
    left: calc(50vw - 600px);
    z-index: 5;
    transform: translate(0, 50%);
}

.dsg--pagetop__title p {
    min-width: 300px;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 2.4rem;
}
.dsg--content p {
    max-width: 1000px;
}
.dsg--pagetop__title p {
    font-size: 3rem;
    font-family: var(--sans-serif-font-family);
    letter-spacing: 0;
    font-weight: 700;
    line-height: 52px;
    letter-spacing: .03375rem;
    color: #fff;
    margin: 0;
}

:root {
    --sans-serif-font-family: Arial, Helvetica, sans-serif;
}