@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* + * {
  margin-top: 1rem;
}

html, body {
  margin-top: 0;
  font-family: "Montserrat", sans-serif;
  background: url(../img/background.jpg) no-repeat;
  background-size: cover;
  color: #424b5a;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
html > *, body > * {
  margin-top: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  font-size: 2em;
}

img {
  display: block;
}

a {
  text-decoration: none;
  transition: all 0.5s;
  color: #cb9c2a;
}
a:hover {
  color: #424b5a;
}

.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #fff;
  background-color: #b3011b;
  padding: 1em 1.5em;
  font-weight: 700;
}
.btn:hover {
  background-color: #dab14e;
  color: #fff;
  padding: 1em 1em 1em 2em;
}

section video {
  max-width: 100%;
  max-height: 90vh;
}

header {
  padding: 1rem;
}
header img {
  margin: auto;
  max-width: 400px;
  width: 100%;
}

footer {
  padding: 1rem;
  margin-top: 2rem;
}
footer .logo img {
  margin: auto;
  max-width: 200px;
}
footer .disclaimer {
  max-width: 800px;
  margin: 2rem auto 0 auto;
  text-align: center;
  font-size: 10px;
  padding: 0.5em 1em;
  border: 1px solid #424b5a;
}

main {
  margin-top: 2rem;
}
main section {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  text-align: center;
  padding: 1rem 2rem;
}
main section + section {
  margin-top: 1rem;
}
main section h1 {
  border-bottom: 3px solid #dab14e;
  display: inline-block;
}
main section h2 {
  border-bottom: 3px solid #dab14e;
  display: inline-block;
}
main section.image img {
  width: 100%;
  height: auto;
}
main section.signup {
  display: flex;
  justify-content: center;
  align-content: center;
}
@media (max-width: 767px) {
  main section.signup {
    flex-direction: column-reverse;
  }
}
main section.signup .cta {
  align-self: center;
  display: flex;
  flex-direction: column;
}
main section.signup .cta .btn {
  font-size: 1.5em;
}
main section.signup .tickets img {
  max-width: 300px;
}
@media (max-width: 767px) {
  main section.signup .tickets img {
    margin: auto;
  }
}
main section.schedule ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  grid-gap: 0.5rem;
  max-width: 600px;
  margin: 1rem auto 0 auto;
}
@media (max-width: 767px) {
  main section.schedule ul {
    display: inline-block;
  }
}
main section.schedule ul li {
  text-align: left;
}
@media (max-width: 767px) {
  main section.schedule ul li {
    text-align: center;
  }
  main section.schedule ul li:nth-child(4n) {
    margin-bottom: 1rem;
  }
  main section.schedule ul li:nth-child(4n+1) {
    font-weight: 700;
  }
}
main section.schedule ul li + li {
  margin-top: 0;
}
main section.route .map {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}
main section.route .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
main section.video {
  position: relative;
}
main section.video .video-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}
main section.video .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
main section.images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
main section.images .image {
  margin-top: 0;
}
main section.images .image a {
  display: block;
  position: relative;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 66.66%;
}
main section.images .image a img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}/*# sourceMappingURL=style.css.map */