body,
html {
    padding-top: 73px;
}

.fixedHeader {
    position: fixed;
    width: 100%;
    z-index: 9999;
    top: 0;
}

#topHeader {
  margin-top: 0 !important;
}

#header {
  margin-top: 0 !important;
}

a.book-skip-cta {
    position: absolute;
    bottom: 0;
    background: var(--alt);
    padding: 15px 40px;
    color: black;
    left: 0;
    right: 0;
    margin: auto;
    display: table;
    border-radius: 6px 6px 0 0;
}

a.book-skip-cta:hover {
    background-color: white;
    color: var(--brand);
    text-decoration: none;
}

#subHero {
  padding: 165px 0 40px 0 !important;
}

@media(min-width: 768px) {
  #header {
    transition: background-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.15); /* initial */
  }

  #header.scrolled {
    background-color: rgba(0, 0, 0, 0.6); /* on scroll */
  }
}

@media(max-width: 768px) {
  #header img.logo {
    width: 200px;
  }

  body,
  html {
    padding-top: 51px;
  }

  #subHero {
    padding: 30px 0 !important;
  }
}

@media(max-width: 480px) {
  #hero h1 {
    font-size: 40px;
  }
}