:root {
	--color-pri: #0e85b4;
	--color-sec: #c11a00;
  --color-gray: #707070;
  --color-yellow: #e5ff00;
  --color-red: #f1662c;
  --color-orange: #f05a28;
  --color-black: #000;
  --color-r3000: #e30000;
  --font-pri: "Raleway", sans-serif;
  --font-menu: "Changa One", cursive;
  --font-menu-sec: "Changa", cursive;
  --font-heading: "Changa One", cursive;
  --font-sz-pri: 1.5rem;
  --font-sz-h1: 4.5rem;
  --font-sz-menu: 1.3rem;
}

html {
  scroll-behavior: smooth;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
picture {
  margin: 0;
}


body {
  font-family: var(--font-pri);
  font-size: var(--font-sz-pri);
  padding: 0;
  overflow-x: hidden;
  line-height: 1.5;
  min-height: 100vh;
  background-image: url("../images/interface/ZPR27-004-Web-BG.jpg");
  background-attachment: fixed;
  background-size: cover;

}

body.awards {
  background-image: url("../images/interface/pcf-left-side.jpg");
}
img,
picutre {
  max-width: 100%;
  display: block;
}

.flex {
  display: flex;
  gap: var(--gap, 1rem);
}

.grid {
  display: grid;
  gap: var(--gap, 1rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  /* added line */
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-size: var(--font-sz-h1);
	color: var(--color-gray);
	text-align: center;
}
h2 {
	font-size: 3rem;
}
h3 {
	font-size: 2.5rem;
}

#content {
  display: grid;
  gap: 0;
  grid-template-areas:
    "ls nav-pri rb"
    "ls main    rb";
  grid-template-columns: 40vw 50vw 10vw;
  color:var(--color-sec);
}

@media screen and (max-width: 1000px) {
  #content {
    grid-template-areas:
      "nav-pri rb"
      "ls rb"
      "main rb";
    grid-template-columns: 85vw 15vw;
  }
}

@media screen and (max-width: 500px) {
  #content.home {
    grid-template-areas:
      "nav-pri"
      "ls"
      "main"
      "rb";
    grid-template-columns: 100vw;
    background-position: center center;
    background-color: #000;
  }

  #content.ambassador,
  #content.entertainment {
    grid-template-areas:
      "nav-pri"
      "main"
      "rb";
    grid-template-columns: 100vw;
  }
}

.left-side {
  grid-area: ls;
  margin: 0;
  padding: 50px;
  min-height: 100vh;
  width: 40vw;
  display: flex;
  align-content: center;
  justify-content: center;
  position: fixed;
}

@media screen and (max-width: 1000px) {
  .left-side {
    width: auto;
    height: 100vh;
    padding: 60px 20px;
    position: relative;
    min-height: 100vh;
    background-image: url(../images/p420-left-side.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 60vh;
    display: none;
  }

  .left-side img {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .left-side {
    width: auto;
    height: 70vh;
    padding: 60px 20px;
    position: relative;
    min-height: 50vh;
    background-image: url(../images/p420-left-side.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 90vw;
    display: none;
  }

  .left-side img {
    display: none;
  }
}

.ls-zp-logo {
  background-image: url("../images/logo-zick-pro-logo.svg");
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: -40% center;
  background-attachment: fixed;
}

.main {
  grid-area: main;
  min-height: 100vh;
  position: relative;
  display: grid;
  background-color: rgba(8, 1, 68, 0.9);
  padding: 20px 10px 0px 10px;
}

@supports (backdrop-filter: blur(1rem)) {
  .main {
    background: rgba(8, 1, 68, 0.9);
  }
}

@media screen and (max-width: 500px) {
  .main {
    background-color: rgba(8, 1, 68, 0.9);
  }
}

.main a.btn {
  text-align: center;
  margin: auto;
  margin-bottom: 50px;
  width: 75%;
  padding: 20px;
  font-family: var(--font-menu);
  color: white;
  letter-spacing: .3rem;
  text-decoration: none;
  border-radius: 50px;
  text-transform: uppercase;
  background-color: var(--color-r3000);
  text-shadow: 2px 2px 5px var(--color-sec);
  transition: background-color .2s, color .2s;
}

.main a.btn:hover {
  background-color: var(--color-pri);
  color: #fff;
}

.right-bar {
  grid-area: rb;
  background-color: rgba(0, 0, 0, 0.8);
  max-height: 100vh;
  top: 0;
  position: sticky;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  justify-content: center;
  z-index: 500;
}

@media screen and (max-width: 1000px) {
  .right-bar {
    background-color: rgba(0, 0, 0, 0.8);
  }
}

@media screen and (max-width: 500px) {
  .right-bar {
    position: relative;
    width: 100vw;
    bottom: 0;
    max-height: 50vh;
  }
}

nav.nav-main {
  grid-area: nav-pri;
  height: 6em;
  background-color: rgba(8, 1, 68, 0.9);;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-menu);
  font-size: 2rem;
  text-transform: uppercase;
}

@media screen and (max-width: 1000px) {
  nav.nav-main {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 500px) {
  nav.nav-main {
    font-size: 1.5rem;
    padding: 0;
  }
}

.primary-navigation {
  --underline-gap: 5rem;
  position: fixed;
  text-align: center;
  place-content: center;
  z-index: 1000;
  inset: 0 9vw 0 40vw;
  background-color: rgba(28, 26, 26, 0.9);
  list-style: none;
  margin: 0;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform 200ms ease-in-out;
}

@supports (backdrop-filter: blur(1rem)) {
  .primary-navigation {
    background: rgba(28, 26, 26, 0.9);
    backdrop-filter: blur(1.5rem);
  }
}

.primary-navigation[data-visible="true"] {
  transform: translateX(0);
}

.primary-navigation a {
  text-decoration: none;
  padding: 10px;
  display: block;
}

.primary-navigation a > span {
  font-weight: 700;
  margin-right: 0.5em;
}

nav.nav-main > a,
.primary-navigation a {
  padding: 40px auto;
  color: var(--color-pri);
  text-decoration: none;
  text-align: center;
  border-bottom: none;
  transition: color 0.5s, border-bottom 0.5s;
}


nav.nav-main > a > i,
.primary-navigation a > i {
  color: var(--color-sec);
  margin-right: 10px;
}

nav.nav-main > a:hover,
.primary-navigation a:hover {
  color: var(--color-sec);
  border-bottom: 5px solid var(--color-sec);
}

.primary-navigation a:hover {
  border-bottom: none;
}

nav.nav-main > a:hover,
.primary-navigation a:hover i {
  color: var(--color-pri);
}

nav.nav-main > a.tickets {
  text-decoration: none;
  padding-top: 50px;
  margin-left: 2em;
  font-family: var(--font-menu);
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1.5rem;
  color: var(--color-r3000);
  border-bottom: 0px solid var(--color-r3000);
  transform: rotate(-5deg);
  transition: transform 0.3s;
  align-self: start;
}

@media screen and (max-width: 500px) {
  nav.nav-main > a.tickets {
    padding-top: 60px;
    margin-left: 40px;
    font-size: 1.5rem;
  }
}

nav.nav-main > a.tickets i {
  font-size: 2rem;
  padding-right: 5px;
  color: var(--color-pri);
}

nav.nav-main > a.tickets:hover {
  color: var(--color-pri);
  border-bottom: 5px solid var(--color-r3000);
  transform: rotate(0);
}

nav.nav-main > a.active {
  color: var(--color-pri);
}

.mobile-nav-toggle {
  display: block;
  position: absolute;
  z-index: 2000;
  right: 18rem;
  top: 4.2rem;
  background: transparent;
  background-image: url(../images/interface/icon-hamburger.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 3rem;
  aspect-ratio: 1;
  border: 0;
}

.mobile-nav-toggle[aria-expanded="true"] {
  background-image: url(../images/interface/icon-close-hover.svg);
}

.mobile-nav-toggle:hover[aria-expanded="false"] {
  background-image: url(../images/interface/icon-hamburger-hover.svg);
}

@media screen and (max-width: 1200px) {
  .mobile-nav-toggle {
    right: 10rem;
  }
}

@media screen and (max-width: 1000px) {
  .mobile-nav-toggle {
    width: 2rem;
    right: 15rem;
  }
}

@media screen and (max-width: 500px) {
  .primary-navigation {
    --underline-gap: 2rem;
    max-width: 100vw;
    position: fixed;
    z-index: 1000;
    inset: 0 0 0 0;
    background-color: hsl(0, 0%, 0%);
    list-style: none;
    /* padding: 8rem 2rem; */
    margin: 0;
    flex-direction: column;
    transform: translateX(100vw);
    transition: transform 500ms ease-in-out;
  }

  .mobile-nav-toggle {
    width: 1.5rem;
    right: 3rem;
  }
}

/* ================================================
	Left Side
================================================ */
.left-side img {
  width: 90%;
  height: 90%;
}

/* ================================================
	Right Bar
================================================ */
nav.websites {
  align-self: start;
}

nav.websites ul {
  padding: 20px 0;
}

nav.websites ul li {
  margin-top: 20px;
  list-style-type: none;
  padding: 0;
}

@media screen and (max-width: 500px) {
  nav.websites {
    width: 80vw;
  }

  nav.websites ul {
    display: flex;
    justify-content: space-around;
  }

  nav.websites ul li {
    padding: 10px;
    width: 25vw;
  }
}

nav.websites ul li > a {
  width: 100%;
  height: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 70%;
  display: block;
  transition: background-size 0.5s;
}

@media screen and (max-width: 1000px) {
  nav.websites ul li > a {
    width: 100%;
    height: 70px;
  }

  nav.websites ul li > a.pcf {
    width: 70px;
    height: 50px;
  }
}

@media screen and (max-width: 500px) {
  .right-bar {
    bottom: 0;
  }
}

nav.websites ul li > a:hover {
  background-size: 80%;
  filter: hue-rotate(10deg);
  -webkit-filter: hue-rotate(10deg);
  -moz-filter: hue-rotate(10deg);
  rotate: 10deg;
}

nav.websites ul li > a.active {
  background-size: 80%;
  filter: hue-rotate(21deg);
  -webkit-filter: hue-rotate(21deg);
  -moz-filter: hue-rotate(21deg);
  transform: rotate(-10deg);
}

nav.websites ul li > a.zick-pro {
  background-image: url("../images/logo-zick-pro-btn.png");
}

nav.websites ul li > a.ocf {
  background-image: url("../images/interface/logo-ocf-btn.png");
}

nav.websites ul li > a.ocf.active {
  background-image: url("../images/interface/logo-ocf-btn.png");
  filter: hue-rotate(21deg);
  -webkit-filter: hue-rotate(21deg);
  -moz-filter: hue-rotate(21deg);
}

nav.websites ul li > a.njcf {
  background-image: url("../images/logo-njcf-btn.png");
}

nav.websites ul li > a.pcf {
  background-image: url("../images/icons-pcf-10.png");
}

nav.websites ul li > a.pcf.active {
  filter: hue-rotate(21deg);
  -webkit-filter: hue-rotate(21deg);
  -moz-filter: hue-rotate(21deg);
}

nav.websites ul li > a.fcf {
  background-image: url("../images/logo-fcf-btn.png");
}

nav.right-bar--bottom {
  align-self: end;
  width: 100%;
  height: auto;
  grid-row: 3 / 4;
}

nav.right-bar--bottom ul.social {
  display: flex;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  margin: 0;
  padding: 0px;
  padding-bottom: 20px;
}

nav.right-bar--bottom ul.social li {
  text-decoration: none;
  list-style-type: none;
  text-align: center;
  padding: 0;
  align-items: center;
  justify-items: center;
}

nav.right-bar--bottom ul.social li > a {
  display: flex;
  text-align: center;
  align-items: center;
  text-decoration: none;
  padding: 10px;
  color: var(--color-pri);
  font-size: 2rem;
  transition: color 0.5s;
}

nav.right-bar--bottom ul.social li > a:hover {
  color: var(--color-sec);
}

nav.right-bar--bottom ul.siteinfo {
  display: block;
  justify-content: center;
  text-decoration: none;
  list-style-type: none;
  text-align: center;
  margin: 0;
  padding: 0;
  font-family: var(--font-menu-sec);
  color: var(--color-sec);
  text-transform: uppercase;
}

nav.right-bar--bottom ul.siteinfo li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

nav.right-bar--bottom ul.siteinfo a {
  color: var(--color-sec);
  font-size: 1rem;
  transition: color 0.5s;
  text-decoration: none;
}

nav.right-bar--bottom ul.siteinfo a:hover {
  color: var(--color-yellow);
}

nav.nav-sub {
	display: flex;
	gap: 20px;
	justify-content: space-around;
	align-items: center;
	font-family: var(--font-menu);
	margin-top: 50px;
	margin-bottom: 50px;

	text-transform: uppercase;
	height: 120px;
}
nav.nav-sub a {
	color: var(--color-pri);
	font-size: 1.5rem;
	text-decoration: none;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center center;
	/* height: 120px; */
	padding-top: 50px;
	gap: 10px;
	margin: 10px;
	text-shadow: none;
	transition: color 0.5s, font-size 0.5s, text-shadow 0.5s;
}
nav.nav-sub a:hover {
	color: var(--color-sec);
	text-shadow: 5px 5px 0px var(--color-pri);
	font-size: 1.75rem;
}


nav.nav-sub a.s {
  background-image: url(../images/icons-s.png);
}

nav.nav-sub a.v {
  background-image: url(../images/icons-v.png);
}

nav.nav-sub a.e {
  background-image: url(../images/icons-e.png);
}

nav.nav-sub a.f {
  background-image: url(../images/icons-f.png);
}

@media screen and (max-width: 500px) {
  nav.nav-sub {
    flex-direction: column;
    height: auto;
  }

  nav.nav-sub a {
    font-size: 1.25rem;
    height: 66px;
    width: 125px;
    margin: 0 auto;
  }
}

/* ================================================
	Main
================================================ */
.coming-soon {
  margin: 0 auto;
  height: 30vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-sec);
  text-shadow: 5px 5px 0px var(--color-pri);
}

.logo {
  margin-top: 50px;
  padding: 50px auto;
  display: flex;
  align-content: center;
  justify-content: center;
}

.logo > img {
  width: 30%;
  align-self: center;
  justify-self: center;
}

@media screen and (max-width: 1000px) {
  .logo > img {
    width: 50%;
  }
}

@media screen and (max-width: 500px) {
  .logo > img {
    width: 50%;
  }
}

.overview,
.blog,
.blog p {
  padding: 20px;
}

.blog p {
  color: white;
}
.overview h2,
.overview h3 {
	padding: 0;
	margin: 0;
	color: var(--color-pri);
}
.overview h3 {
	margin: 0;
	color: var(--color-sec);
}

.overview p {
	margin: auto;
	text-align: center;
  font-size: 1.25rem;
	line-height: 2rem;
	padding: 20px;
	color: #fff;
}

.overview p.callout {
  font-size: 3rem;
  display: block;
}

.overview p.nights {
  font-size: 2.5rem;
}

.overview p a {
  color: var(--color-pri);
}
.overview p a:hover {
  color: var(--color-sec);
}
.blog .writer-block {
  display: grid;
  grid-template-columns: 1fr;
  align-items: baseline;
}

@media screen and (max-width: 500px) {
  .overview p {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }

  .overview p.callout {
    padding-top: 1.3rem;
  }

  .overview p.nights {
    padding-top: 1.5rem;
  }
}

@media screen and (max-width: 1000px) {
  .overview h2 {
    font-size: 1.5rem;
  }

  .overview h3 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 500px) {
  .overview h2 {
    font-size: 2rem;
  }

  .overview h3 {
    font-size: 3rem;
  }
}

footer {
  height: 420px;
  background: rgb(4, 50, 49);
	background: linear-gradient(180deg, rgba(255, 0, 0, 0.9) 0%, rgba(55, 0, 0, 0.9) 100%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 20px 20px 0px 0px;
}

footer > img {
  padding-bottom: 60px;
}

@media screen and (max-width: 500px) {
  footer {
    height: 300px;
  }

  footer > img {
    width: 70vw;
    padding-bottom: 60px;
  }
}

.copyright {
  text-transform: uppercase;
  color: white;
}

/* ================================================
	Festivals
================================================ */
.fests {
  border-top: 1px solid var(--color-pri);
  background-color: var(--color-sec);
  max-height: 100vh;
  position: sticky;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  justify-items: center;
  align-content: center;
  padding: 20px;
}

.fest--logo {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  align-self: center;
  text-align: center;
}

.fest--title h4 {
  font-family: var(--font-pri);
  font-size: 1rem;
  color: white;
  text-align: center;
}

.fest--date {
  font-family: var(--font-pri);
  font-size: 1rem;
  color: var(--color-gray);
  text-align: center;
}

.fest--card hr {
  width: 75%;
  color: var(--color-pri);
  border-width: 0.5px;
}

.fest--description {
  width: 75%;
  margin: 0 auto;
  color: #707070;
  text-align: justify;
  justify-self: center;
  align-self: center;
}

.fest--link {
  width: 60%;
  margin: 50px auto 10px auto;
  text-align: center;
  justify-self: center;
  font-family: var(--font-pri);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--color-sec);
}

.fest--link > a {
  padding: 10px 20px;
  background-color: aqua;
  border-radius: 20px;
  text-decoration: none;
}

/* ================================================
	Sponsors
================================================ */
.sponsors {
  border-top: 1px solid var(--color-pri);
  padding-top: 50px;
  margin-bottom: 50px;
  position: relative;
  display: grid;
  grid-row-gap: 10px;
  grid-column-gap: 5px;
  grid-template-areas:
    "title title title"
    "cards cards cards";
}

.sponsors h1 {
  display: flex;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .sponsors h1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .sponsors h1 {
    font-size: 2rem;
  }
}

.sponsors > .title {
  grid-area: title;
  display: flex;
  color: var(--color-gray);
  height: 150px;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-content: center;
}

#sponsors--gold > .title {
  color: goldenrod;
}

#sponsors--emerald > .title {
  color: #50C878;
}

#sponsors--silver > .title {
  color: silver;
}

#sponsors--green > .title {
  color: green;
}

#sponsors--industry > .title {
  color: black;
}

#sponsors--media > .title {
  color: maroon;
}

.sponsors--cards.platinum {
  grid-area: cards;
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 10px;
}

.sponsors--cards.gold {
  grid-area: cards;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 10px;
  place-content: center;
}

.sponsors--card.emerald {
  grid-area: cards;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 10px;
}

.sponsors--cards.silver {
  grid-area: cards;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 10px;
}

.sponsors--cards.green {
  grid-area: cards;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 10px;
}

.sponsors--cards.industry,
.sponsors--cards.media {
  grid-area: cards;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 10px;
}

@media screen and (max-width: 480px) {

  .sponsors--cards.gold,
  .sponsors--cards.emerald,
  .sponsors--cards.silver,
  .sponsors--cards.green,
  .sponsors--cards.industry,
  .sponsors--cards.media {
    grid-template-columns: 1fr;
  }
}

a.sponsors--card {
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  justify-items: center;
  text-align: center;
  color: var(--color-pri);
  font-family: var(--font-pri);
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-decoration: none;
  box-shadow: 0px 0px 30px lightgray;
  transition: box-shadow .3s, color .3s;
}

a.sponsors--card:hover {
  box-shadow: 0px 0px 0px lightgray;
}

.sponsors--img > img {
  margin: auto;
  width: 80%;
  transition: width 0.3s;
}

.sponsors--card:hover > .sponsors--img > img {
  width: 90%;
}

.sponsors--card > hr {
  width: 80%;
  border-top: 1px solid var(--color-pri);
  border-bottom: none;
  margin: 10px auto;
  align-self: end;
}

.sponsors--title,
.sponsors--btn {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--color-pri);
  transition: color .3s;
}

a.sponsors--card:hover > .sponsors--title,
a.sponsors--card:hover > .sponsors--btn {
  color: var(--color-sec);
}

.sponsors--info ul,
.sponsors--info ul li {
  list-style-type: none;
  line-height: 1.5rem;
}

/* ================================================
	Sponsorship
================================================ */
.sponsorship,
.vending,
.entertainment {
  border-top: 1px solid var(--color-pri);
  padding-top: 50px;
  position: relative;
  display: grid;
  grid-row-gap: 10px;
  grid-column-gap: 5px;
  grid-template-areas:
    "title title title"
    ". event-logo ."
    "cards cards cards";
}

.camping {
  position: relative;
  display: grid;
  grid-row-gap: 10px;
  grid-column-gap: 5px;
  grid-template-areas:
    "cards cards cards";
}

.sponsorship h1,
.vending h1,
.entertainment h1 {
  display: flex;
  align-items: center;
  text-align: center;
}

.sponsorship > .title,
.vending > .title,
.entertainment > .title {
  grid-area: title;
  display: flex;
  color: var(--color-gray);
  height: 150px;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-content: center;
  background-image: url(../images/icons-s.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 120px;
}

.vending > .title {
  background-image: url(../images/icons-v.png);
}

.entertainment > .title {
  background-image: url(../images/icons-e.png);
}

.sponsorship > .event-logo,
.vending > .event-logo,
.entertainment > .event-logo {
  grid-area: event-logo;
  align-items: center;
  justify-content: center;
  justify-self: center;
  margin-bottom: 150px;
}

.sponsorship--cards,
.vending--cards,
.entertainment--cards {
  grid-area: cards;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 10px;
}

.vending--cards {
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 500px) {
  .vending--cards {
    grid-template-columns: 1fr;
  }
}

.entertainment--cards {
  grid-template-columns: 1fr;
}

.sponsorship--card,
.vending--card,
.entertainment--card,
.camping--card {
  background-color: var(--color-sec);
  border-radius: 20px;
  padding: 20px;
  justify-items: center;
  text-align: center;
  color: var(--color-yellow);
  font-family: var(--font-pri);
  font-size: 0.9rem;
  text-decoration: none;
  list-style-type: none;
  margin-bottom: 100px;
  display: grid;
}

.vending--card {
  color: var(--color-red);
  background-color: #fce284;
}

.entertainment--card {
  color: var(--color-sec);
  background-color: var(--color-pri);
}

.sponsorship--card:hover {
  background: rgb(4, 50, 49);
  background: linear-gradient(0deg,
      rgba(4, 50, 49, 0.9) 0%,
      rgba(48, 180, 183, 0.9) 100%);
}

.vending--card:hover {
  background: rgb(252, 226, 132);
  background: linear-gradient(180deg,
      rgba(252, 226, 132, 1) 0%,
      rgba(167, 220, 0, 1) 100%);
}

.entertainment--card:hover {
  background: rgb(21, 30, 52);
  background: linear-gradient(0deg,
      rgba(21, 30, 52, 1) 0%,
      rgba(220, 0, 121, 1) 100%);
  color: #fff;
}

.sponsorship--icon,
.vending--icon,
.entertainment--icon {
  margin-top: -100px;
  margin-bottom: 20px;
}

.camping--icon {
  margin: -70px auto 20px auto;
}

.sponsorship--icon > img {
  width: 100px;
  transition: width 0.5s;
}

.camping--icon > img {
  width: 150px;
  transition: width 0.5s;
}

.sponsorship--card:hover > .sponsorship--icon > img {
  width: 120px;
}

.sponsorship--card:hover > .camping--icon > img {
  width: 170px;
}

.sponsorship--card > hr,
.vending--card > hr,
.entertainment--card > hr {
  width: 80%;
  border-top: 1px solid var(--color-pri);
  border-bottom: none;
  margin: 10px auto;
  align-self: end;
}

.vending--card > hr {
  border-top: 1px solid var(--color-red);
}

.entertainment--card > hr {
  border-top: 1px solid var(--color-sec);
}

.sponsorship--title,
.sponsorship--price,
.vending--title,
.vending--price,
.entertainment--title,
.entertainment--price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  color: #fff;
  align-self: center;
}

.sponsorship--price {
  color: var(--color-yellow);
}

.vending--price {
  color: var(--color-red);
}

.entertainment--price {
  color: var(--color-sec);
}

.sponsorship--info ul,
.sponsorship--info ul li,
.vending--info ul,
.vending--info ul li,
.entertainment--info ul,
.entertainment--info ul li {
  list-style-type: none;
  line-height: 2rem;
  font-size: 1.3rem;
  align-self: center;
}

.sponsorship--btn,
.vending--btn,
.entertainment--btn {
  font-family: var(--font-menu);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  margin-top: auto;
  margin-bottom: 0px;
  align-self: end;
}

.sponsorship--btn a,
.vending--btn a,
.entertainment--btn a {
  text-decoration: none;
  font-size: 1.5rem;
  color: var(--color-pri);
  transition: font-size 0.5s, color 0.5s;
}

.sponsorship--btn a:hover {
  font-size: 1.75rem;
  color: #fff;
}

.entertainment--btn a {
  text-decoration: none;
  color: var(--color-sec);
}

.entertainment--btn a:hover {
  text-decoration: none;
  color: #fff;
}

.entertainment:hover .entertainment--price,
.entertainment:hover .entertainment--btn a {
  color: #fff;
}

/* ================================================
	FAQs
================================================ */
.faqs {
  border-top: 1px solid var(--color-pri);
  padding-top: 50px;
  margin: 50px 0;
}

.faqs h2 {
  font-size: 3rem;
  color: var(--color-sec);
}

@media screen and (max-width: 500px) {
  .faqs h2 {
    font-size: 1.5rem;
    color: var(--color-red);
  }
}

.accordion {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 20px;
  height: fit-content;
}

@media screen and (max-width: 500px) {
  .accordion {
    padding: 20px;
  }
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid var(--color-sec);
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: var(--color-pri);
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #7288a2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded="true"] {
  color: var(--color-pri);
}

.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}

.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 20px 0;
  display: block;
}

.contact {
  display: grid;
  grid-template-areas:
    "title title title"
    "contact-info contact-form contact-form";
  padding: 50px;
  border-top: 1px solid var(--color-pri);
}

@media screen and (max-width: 1000px) {
  .contact {
    grid-template-areas:
      "title"
      "contact-info"
      "contact-form";
    padding: 50px;
  }
}

@media screen and (max-width: 500px) {
  .contact {
    grid-template-areas:
      "title"
      "contact-info"
      "contact-form";
    padding: 50px;
  }
}

.contact > .title {
  grid-area: title;
  text-align: center;
}

.contact > .contact-info {
  grid-area: contact-info;
  padding: 0 50px 0 0;
}

.contact-info > h4 {
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  padding: 0;
  margin-bottom: 10px;
  text-align: left;
  color: var(--color-pri);
  text-transform: uppercase;
}

.contact-info > hr {
  border-top: 1px solid var(--color-pri);
  border-bottom: none;
  border-left: none;
  border-right: none;
  margin: 20px 0;
}

@media screen and (max-width: 1000px) {
  .contact > .contact-info {
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
  }

  .contact-info > h4,
  .contact-info > p {
    text-align: center;
    padding: 10px;
  }

  .contact-info > hr {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .contact {
    grid-template-areas:
      "title"
      "contact-info"
      "contact-form";
    padding: 50px;
  }
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
#contact button[type="submit"] {
  font: 400 1rem "Roboto", Helvetica, Arial, sans-serif;
}

#contact {
  grid-area: contact-form;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  margin: 0 0 5px;
  padding: 10px;
  border-radius: 10px;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid var(--color-pri);
  border-radius: 10px;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact button[type="submit"] {
  cursor: pointer;
  width: 50%;
  border: none;
  background: var(--color-pri);
  color: #fff;
  margin: 10px 50%;
  transform: translateX(-50%);
  padding: 10px;
  font-family: var(--font-menu);
  font-size: 1.5rem;
  border-radius: 20px;
  transition: background 0.5s, color 0.5s;
  text-transform: uppercase;
}

#contact button[type="submit"]:hover {
  background: var(--color-yellow);
  color: var(--color-pri);
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}

/* ================================================
	Ambassador Program
================================================ */
.page--title {
  margin: 50px auto;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  font-family: var(--font-pri);
  font-size: 2rem;
  color: var(--color-black);
  text-transform: uppercase;
}

.page--title > span {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-pri);
  line-height: 1rem;
  padding: 20px 30px;
  margin: 0;
  display: block;
}

.page--title span span {
  color: var(--color-orange);
}

img.title {
  display: inline-block;
  margin: auto;
  padding: 20px;
}

@media screen and (max-width: 500px) {
  .page--title {
    font-size: 1.5rem;
  }

  .page--title > span {
    font-size: 3rem;
  }
}

.ambassador--info {
  margin-top: 50px;
  text-align: left;
  font-size: 1.5rem;
  font-family: var(--font-pri);
  color: var(--color-gray);
  padding: 50px;
}

.ambassador--info h3 {
  font-size: 2rem;
}

.ambassador--info li {
  margin: 20px auto;
}

.qr-codes {
  margin: 20px auto 20px auto;
  display: flex;
  justify-content: space-around;
}

.qr-codes span {
  width: 90%;
  padding: 10px;
  display: block;
  text-align: center;
  font-weight: bold;
}

.qr-codes img {
  width: 90%;
  justify-self: center;
}

.qr-codes img:hover {
  border: 5px solid orange;
}

/* ================================================
	Entertainment
================================================ */
.lineup--title span span {
  color: var(--color-orange);
}

.lineup--info {
  margin-top: 50px;
  text-align: center;
  font-size: 2rem;
  font-family: var(--font-pri);
  color: var(--color-gray);
}

.lineup--info h3 {
  font-size: 3rem;
  padding: 20px 0;
}

.lineup--info p {
  padding: 20px 0;
}

.lineup--info img {
  padding-bottom: 20px;
}

.lineup--info li {
  margin: 20px auto;
}

/* ================================================
	Bands
================================================ */
.bands {
  width: 90%;
  height: auto;
  margin: auto;
  padding: 20px 10px;
  margin-left: 5%;
}

.bands h4 {
  color: #1fb697;
  font-size: 1.5rem;
  width: 100%;
  font-weight: normal;
  border-bottom: 1px solid var(--color-pri);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.bands h4:nth-of-type(even) {
  border-bottom: 1px solid var(--color-pri);
}

a.bands--link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  padding: 10px;
  text-decoration: none;
  border-radius: 50px;
  transition: border-radius .5s, border-color .5s;
}

.bands--card {
  width: 100%;
  min-height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
}

.bands--image {
  height: 100px;
  width: 100px;
  border-radius: 50px;
  border: 5px solid #fff;
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 0px;
  box-shadow: 0px 0px 30px lightgray;
  transition: height .5s, width .5s, border-radius .5s, margin-left .5s, border .5s;
}

a.bands--link:hover .bands--image {
  width: 150px;
  height: 150px;
  border-radius: 100px;
  margin-left: -25px;
  border: 5px solid var(--color-sec);
}

.bands--title,
.bands--time {
  align-self: center;
  text-align: center;
  line-height: 30px;
  margin: 0;
  padding: 0;
  font-family: var(--font-menu-sec);
  font-size: 1.5em;
  color: var(--color-sec);
  transform: rotate3d(0, 0, 0, 0deg);
  transition: transform .5s, color .5s, font-size .5s;
}

a.bands--link:hover .bands--title,
a.bands--link:hover .bands--time {
  color: var(--color-pri);
  font-size: 3rem;
  margin-left: -20px;
  transform: rotate3d(1, 1, 0, 40deg);
  text-shadow: 5px -5px 0 var(--color-sec);
}

.bands--title span {
  font-size: 1rem;
  color: var(--color-pri);
  align-self: center;
  text-align: center;
  padding: 0;
}

.bands--time {
  padding-right: 10px;
}

@media screen and (max-width: 1000px) {
  .bands {
    padding: 10px 5px;
  }

  .bands--image {
    height: 100px;
    width: 100px;
  }

  a.bands--link:hover .bands--image {
    width: 125px;
    height: 125px;
  }

  .bands--title,
  .bands--time {
    font-size: 1.5em;
  }

  a.bands--link:hover .bands--title,
  a.bands--link:hover .bands--time {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .bands {
    width: 100%;
    margin-left: 0px;
  }

  .bands h2 {
    font-size: 1.5rem;
  }

  .bands--image {
    height: 60px;
    width: 60px;
  }

  a.bands--link:hover .bands--image {
    width: 80px;
    height: 80px;
  }

  .bands--title,
  .bands--time {
    font-size: 1em;
  }

  a.bands--link:hover .bands--title,
  a.bands--link:hover .bands--time {
    font-size: 1.25rem;
  }
}

/* ================================================
	Guidelines
================================================ */
.guidelines h4 {
  font-size: 3rem;
  padding-bottom: 10px;
}

.guidelines,
.guidelines p,
.guidelines ul {
  padding: 10px 20px;
}

.guidelines li {
  margin-left: 20px;
  padding: 10px 10px;
  list-style: circle;
}