:root {
  --blue: #006da3;
  --lightblue: #3aa0d9;
  --grey: #414142;
}

* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

body {
  background: url('/assets/img/oktoberfest/background.png') fixed;
  font-size: 20px;
  line-height: 30px;
  font-family: "biorhyme-variable", sans-serif;
  text-align: center;
}

header {
  width: 90%;
  background-color: white;
  margin: 0 auto;
  padding: 20px 30px;
  border-radius: 0px 0px 45px 45px;
  border-left: 5px solid var(--blue);
  border-right: 5px solid var(--blue);
  border-bottom: 5px solid var(--blue);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.navandbuttonwrapper {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .navandbuttonwrapper {
    margin: 0px auto 20px;
    order: 1;
  }
  .logo {
     order: 2;
  }
}
.button1 {
  background-color: var(--lightblue);
  padding: 10px 20px;
  border-radius: 45px;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-variation-settings: "wdth" 100, "wght" 700;
  transition: all .5s ease;
  display: inline-block;
}
.button1:hover {
  background-color: var(--blue);
}
.buyticketsbutton {
  margin-right: 20px;
}
.fullnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
  background-color: var(--lightblue);
  z-index: 3;
}
.fullnav.open {
  opacity: .9;
  visibility: visible;
  height: 100%;
}
.fullnav.open li {
  animation: fadeInRight .5s ease forwards;
  animation-delay: .35s;
}
.fullnav.open li:nth-of-type(2) {
  animation-delay: .4s;
}
.fullnav.open li:nth-of-type(3) {
  animation-delay: .45s;
}
.fullnav nav {
  position: relative;
  height: 70%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 35px;
  text-align: center;
}
.fullnav ul {
  list-style: none;
  padding: 0px;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
.fullnav ul li {
  display: block;
  height: 25%;
  height: calc(100% / 4);
  min-height: 50px;
  position: relative;
  opacity: 0;
}
.fullnav ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  text-transform: uppercase;
}
.fullnavBtn {
  position: relative;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: opacity .25s ease;
  transition: opacity .25s ease;
}
.fullnavBtn:hover {
  opacity: .7;
}
.fullnavBtn.active .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
          transform: translateY(11px) translateX(0) rotate(45deg);
  background: #FFF;
}
.fullnavBtn.active .middle {
  opacity: 0;
  background: #FFF;
}
.fullnavBtn.active .bottom {
  -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
          transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #FFF;
}
.fullnavBtn span {
  background: var(--blue);
  border: none;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  cursor: pointer;
}
.fullnavBtn span:nth-of-type(2) {
  top: 11px;
}
.fullnavBtn span:nth-of-type(3) {
  top: 22px;
}
.fullnav ul li a:hover:after, .fullnav ul li a:focus:after, .fullnav ul li a:active:after {
  width: 100%;
}
.fullnav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 3px;
  background: #FFF;
  -webkit-transition: .35s;
  transition: .35s;
}
 
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
 
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.topimage {
  position: relative;
  width: 100%;
  top: 0px;
  z-index: 1
}
.bottomimage {
  position: relative;
  width: 100%;
  bottom: 0px;
  z-index: 1
}
.topimage img {
  position: absolute;
  display: block;
  width: 100%;
}
.bottomimage img {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0px;
}
.logo {
  width: 15%;
}
@media screen and (max-width: 767px) {
  .logo {
    width: 70%;
    margin: 0 auto;
  }
}
.logo img {
  width: 100%;
  display: block;
}
.herocontent {
  position: relative;
  z-index: 2;
}
main {
  padding: 70px 30px 100px;
}
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 150px 30px;
}
.whiterow {
  background-color: white;
  border-top: 5px solid var(--blue);
  border-bottom: 5px solid var(--blue);
}
.whiterow:last-of-type {
  border-bottom: none;
}
h1 {
  font-family: fleisch-wolf, sans-serif;
  font-weight: 400;
  font-style: normal;
}
h1 span {
  -moz-font-feature-settings: "salt";
  -webkit-font-feature-settings: "salt";
  font-feature-settings: "salt"
}
h2, h3, h4 {
  font-variation-settings: "wdth" 100, "wght" 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: var(--blue);
}
h2 {
  font-size: 2em;
  line-height: 1em;
}
h3 {
  font-size: 1.5em;
}
p {
  margin-bottom: 20px;
}
.importantwrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  width: 90%;
  margin: 70px auto 0px;
}
@media screen and (max-width: 950px) {
  .importantwrapper {
    flex-wrap: wrap;
  }
}
.importantcontainer {
  width: 30%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  border-radius: 45px;
  padding: 30px;
  border: 5px solid var(--blue);
}
@media screen and (max-width: 950px) {
  .importantcontainer {
    width: 100%;
    margin-bottom: 20px;
  }
}
.importantcontainer p {
  margin-bottom: 0px;
}
.importantcontainer p:first-of-type {
  margin-bottom: 15px;
}
.importantcontainer p span {
  color: var(--blue);
  text-transform: uppercase;
  font-variation-settings: "wdth" 100, "wght" 700;
}
.importantcontainer i {
  font-size: 50px;
  margin-bottom: 20px;
  color: var(--blue);
}
.ctawrapper {
  background-color: white;
  padding: 40px 70px;
  max-width: 1500px;
  margin: 0 auto;
  border-radius: 45px;
  border: 5px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
@media screen and (max-width: 980px) {
  .ctawrapper {
    flex-wrap: wrap;
    padding: 30px;
  }
}
.patternrow {
  padding: 100px 30px;
}
.ctatext {
  width: 55%;
}
@media screen and (max-width: 980px) {
  .ctatext {
    width: 100%;
  }
}
.ctatext h3 {
  font-size: 50px;
  line-height: 60px;
  text-align: left;
  color: var(--blue);
  margin-bottom: 0px;
}
@media screen and (max-width: 980px) {
  .ctatext h3 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
  }
}
.ctabutton {
  width: 35%;
}
@media screen and (max-width: 980px) {
  .ctabutton {
    width: 100%;
  }
}
.ctabutton a {
  border-radius: 80px;
  background-color: var(--lightblue);
  padding: 30px 50px;
  font-size: 30px;
  line-height: 35px;
  text-align: left;
  display: block;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .5s ease;
}
@media screen and (max-width: 1199px) {
  .ctabutton a {
    font-size: 25px;
    line-height: 30px;
    padding: 20px;
    border-radius: 40px;
  }
}
@media screen and (max-width: 980px) {
  .ctabutton a {
    font-size: 20px;
    line-height: 25px;
    padding: 20px;
    border-radius: 40px;
  }
}
.ctabutton a:hover {
  background-color: var(--blue);
}
.herocontainer {
  max-width: 1500px;
  background-color: white;
  margin: 0 auto;
  border-radius: 45px;
  padding: 50px;
  border: 5px solid var(--blue);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
@media screen and (max-width: 960px) {
  .herocontainer {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .herocontainer {
    padding: 20px;
  }
}
.herocontainer h1 {
  font-size: 200px;
  line-height: 200px;
  color: var(--blue);
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .herocontainer h1 {
    font-size: 150px;
    line-height: 150px;
  }
}
@media screen and (max-width: 960px) {
  .herocontainer h1 {
    font-size: 100px;
    line-height: 100px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .herocontainer h1 {
    font-size: 60px;
    line-height: 60px;
  }
}
.herocontainer h2 {
  font-size: 50px;
  margin-top: 40px;
  color: var(--grey);
  margin-bottom: 0px;
}
@media screen and (max-width: 960px) {
  .herocontainer h2 {
    font-size: 30px;
  }
}
.herocontainer h3 {
  font-size: 50px;
  line-height: 55px;
  color: var(--blue);
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .herocontainer h3 {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 35px;
  }
}
.herocontainer h4 {
  font-size: 40px;
  line-height: 45px;
  color: var(--grey);
  margin-bottom: 0px;
}
@media screen and (max-width: 960px) {
  .herocontainer h4 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 10px;
  }
}
.herocontainer p {
  font-size: 30px;
  line-height: 40px;
}
@media screen and (max-width: 960px) {
  .herocontainer p {
    font-size: 20px;
    line-height: 30px;
  }
}
.forty5 {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  font-size: 30px;
  align-items: center;
  margin-bottom: 30px;
}
.forty5 img {
  display: block;
  width: 20%;
  height: 20%;
}
@media screen and (max-width: 767px) {
  .forty5 img {
    width: 40%;
    height: 40%;
  }
}
.forty5 p {
  margin-bottom: 0px;
  margin-right: 20px;
}
.foundationstoplightwrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .foundationstoplightwrapper {
    flex-wrap: wrap;
  }
}
.foundationstoplighttext {
  padding: 50px;
  border-radius: 45px;
  background-color: white;
  border: 5px solid var(--blue);
  text-align: left;
  width: 65%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
@media screen and (max-width: 767px) {
  .foundationstoplighttext {
    width: 100%;
    padding: 30px;
  }
}
.foundationstoplighttext p {
  margin-bottom: 40px
}
.foundationlogo img {
  width: 100%;
  display: block;
}
.foundationlogo {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .foundationlogo {
    width: 50%;
    margin: 40px auto 0px;
  }
}
.sponsorswrapper a {
  display: block;
  border-radius: 45px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.sponsorswrapper a img {
  display: block;
  width: 100%;
  border-radius: 45px;
  transition: all .5s ease;
}
.sponsorswrapper a:hover img {
  opacity: .5;
}
.sponsorswrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 50px;
  row-gap: 40px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sponsorswrapper {
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
    width: 100%;
  }
}