@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,600,700|Montserrat:300,400,500,600,700,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oooh+Baby&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');
/*
font-family: 'Montserrat', sans-serif;
font-family: 'Josefin Sans', sans-serif;
font-family: 'Barlow', sans-serif;
font-family: 'Oooh Baby', cursive;
font-family: 'Righteous', cursive;
font-family: 'Luckiest Guy', cursive;


/*-------------
 	General
-------------*/

:root {
  --brand-white: #f7f7f7;
  --brand-blue: #277da1;
  --brand-medblue: #1d6b8c;
  --brand-dkblue: #004663;
  --brand-ltblue: #bfd7ea;
  --brand-green: #43aa8b;
  --brand-orange: #f9874a;
  --brand-yellow: #f9c64f;
  --brand-black: #2a2a2a;
  --cursive-font: 'Oooh Baby', cursive;
  --body-font: 'Poppins', sans-serif;
  --heading-font: 'Righteous', cursive;
}

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

html {
  font: normal 16px sans-serif;
  color: #f7f7ff;
  font-family: 'Montserrat', sans-serif;
  background: var(--brand-white);
}

ul,
nav {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  opacity: 0.9;
}

a:hover {
  opacity: 1;
}

body {
  max-width: 100vw;
}

/* -------------
 	typography
 ------------- */

p {
  color: #f5f5f5;
  font-family: var(--body-font);
  font-size: 1.5em;
  line-height: 1.5em;
  font-weight: 400;
  /* margin: 1.5em 0; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--brand-black);
  font-family: var(--heading-font);
  font-weight: 800;
  line-height: 1em;
}

h1 {
  font-size: 2.125em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.825em;
}

h4 {
  font-size: 1.5em;
}

h5 {
  font-size: 1.25em;
}

h6 {
  font-size: 1.125em;
}

/* *900PX SCREENS AND UP for-tablet-landscape-up*/
@media only screen and (min-width: 56.25em) {
  /* h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		line-height: 3em;
	} */

  h1 {
    font-size: 2.825em;
  }

  h2 {
    font-size: 2.5em;
  }

  h3 {
    font-size: 2.25em;
  }

  h4 {
    font-size: 2em;
  }

  h5 {
    font-size: 1.5em;
  }

  h6 {
    font-size: 1.25em;
  }
}

/* -------------
	 DESIGN MOBILE FIRST. ALL CSS IS FOR MOBILE SCREENS UP TO 599PX WIDE= 37.4EM
------------- */

/* *600PX SCREENS AND UP for-tablet-portrait-up*/
@media only screen and (min-width: 37.5em) {
}

/* *900PX SCREENS AND UP for-tablet-landscape-up*/
@media only screen and (min-width: 56.25em) {
}

/* *1200PX SCREENS AND UP for-desktop-up*/
@media only screen and (min-width: 75em) {
}

/* *1800PX SCREENS AND UP for-big-desktop-up*/
@media only screen and (min-width: 112.5em) {
}

/* -------------
 SPACING AND HIDING HACKS
 ------------- */

.mobile-hide {
  display: none;
}

.desktop-hide {
  display: inline;
}

@media only screen and (min-width: 56.25em) {
  .mobile-hide {
    display: inline;
  }

  .desktop-hide {
    display: none;
  }
}

hr {
  width: 50vw;
  height: 0.1vh;
  background-color: #f7f7f7;
  border: 0;
  margin: 0 auto;
  margin-bottom: 2vh;
  margin-top: 2vh;
}

/* -------------
 BUTTONS
 ------------- */
.btn {
  color: #f5f5f5;
  border-radius: 4px;
  text-transform: uppercase;
  background-color: var(--brand-orange);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.3rem;
  text-align: center;
  padding: 2vh 4vh;
  border: 0px;
  cursor: pointer;
  margin: 2vh;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.btnbanner {
  color: #f5f5f5;
  border-radius: 4px;
  text-transform: uppercase;
  background-color: #8b66b2;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.2em;
  text-align: center;
  padding: 1.5vh 2vh;
  border: 0px;
  cursor: pointer;
  margin: 2vh;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.btn-ghost {
  color: #f7f7f7;
  border-radius: 4px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.3);
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: 0.3rem;
  text-align: center;
  padding: 1.5vh 3vh;
  border: 1px solid #f7f7f7;
  cursor: pointer;
  margin: 2vh;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.btn-cta {
  color: #403f4c;
  border-radius: 4px;
  text-transform: uppercase;
  background-color: #80ced7;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.3rem;
  text-align: center;
  padding: 3vh 6vh;
  border: 0px;
  cursor: pointer;
  margin: 2vh;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.btn-blue {
  color: #fff;
  border-radius: 4px;
  text-transform: uppercase;
  background-color: var(--brand-medblue);
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.3rem;
  text-align: center;
  padding: 2vh 4vh;
  border: 1px solid #fff;
  cursor: pointer;
  margin: 2vh;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.btn-blue:hover {
  background-color: var(--brand-orange);
}

.btn-gold {
  color: #fff;
  border-radius: 4px;
  text-transform: uppercase;
  background-color: var(--brand-orange);
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.3rem;
  text-align: center;
  padding: 1.5vh 3vh;
  border: 1px solid #fff;
  cursor: pointer;
  margin: 2vh;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.btn-gold:hover {
  background-color: var(--brand-dkblue);
  box-shadow: 0 0 10px 0 var(--brand-medblue) inset,
    0 0 10px 4px var(--brand-medblue);
}

@media only screen and (min-width: 56.25em) {
  .btnbanner {
    font-size: 1em;
    letter-spacing: 0.3rem;
    padding: 3vh 6vh;
  }
}

/* :::::::::::::::

IMG CLASSES

::::::::::::::: */

img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

img.logo {
  max-height: 15vh;
  width: auto;
}

img.logo-hero {
  max-width: 85vw;
  height: auto;
}

img.logo-webapp {
  max-height: 8vh;
  width: auto;
}

img.scrollicon {
  display: block;
  max-height: 10vh;
  width: auto;
  margin: 0 auto;
}

img.socialicon {
  max-width: 8vw;
  height: auto;
  margin: 2vh;
}

img.iconFooter {
  max-width: 10vw;
  height: auto;
  margin: 0 auto;
}

img .half-image {
  max-width: 100vw;
  height: auto;
}

@media only screen and (min-width: 56.25em) {
  img.logo-hero {
    max-width: 35vw;
  }

  img.socialicon {
    max-width: 2vw;
  }

  img.iconFooter {
    max-width: 3vw;
  }

  img.half-image {
    max-width: 50vw;
    height: auto;
    max-height: 100%;
  }
}

/* :::::::::::::::::::::::::::::::::::::::::::::

L A Y O U T

::::::::::::::::::::::::::::::::::::::::::::: */

.row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rowcol {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.colrow {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.colhalf {
  width: 100%;
}

@media only screen and (min-width: 56em) {
  .page {
    /* -webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center; */
    align-items: center;
  }

  .pagedrop {
    justify-content: center;
    align-items: center;
  }

  .rowcol {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .colrow {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .colhalf {
    width: 50%;
    overflow: hidden;
  }
}

/*---------------------
 	PAge Section
---------------------*/
.page {
  height: 95vh;
  justify-content: space-between;
  background: url(img/hero2.jpg) no-repeat bottom center fixed;
  background-size: cover;
}

.page h1 {
  font-size: 2em;
}

.page-covid {
  background: #fac66ccc;
  padding: 1vh;
  text-align: center;
}
.page h2 {
  font-size: 1.6em;
}
.page h3 {
  color: #f7f7f7;
  padding: 1vh;
  font-size: 4.5em;
}

.page h4 {
  color: #1f678a;
  text-align: center;
}

.page p {
  font-size: 0.8em;
  line-height: 1em;
}

.page-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/* // landing page ////// */
.landing {
  /* height: 50vh; */
  justify-content: center;
  background-color: var(--brand-white);
  background: url(../img/BG1-mob.jpg) no-repeat top center fixed;
  background-size: cover;
  padding-top: 0vh;
  padding-bottom: 0vh;
}

.landing-copy {
  position: fixed;
  z-index: 0;
  padding: 20vh 0;
}

.landing h1 {
  color: var(--brand-blue);
  font-size: 2.5em;
}
.landing p {
  color: var(--brand-orange);
}
.landing .logo-hero {
  margin-left: 4vh;
}

.landing-copy {
  filter: drop-shadow(0px 0px 10px #ffffff);
  -webkit-filter: drop-shadow(0px 0px 10px solid #f7f7f7);
}
@media only screen and (min-width: 56.25em) {
  .landing {
    width: 100%;
    align-items: center;
    background: url(../img/BG1.jpg) no-repeat bottom center fixed;
    background-size: cover;
  }

  .landing h1 {
    font-size: 4em;
  }
}

.landing-hero {
  background-color: var(--brand-black);
  padding: 0vh 0vh;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
  clip-path: polygon(0 0%, 100% 0, 100% 100%, 0 95%);
  padding-bottom: 5vh;
  margin-bottom: -4.75vh;
}
.landing-hero-text {
  padding: 2vh;
  text-align: center;
}
.landing-hero p {
  line-height: 1.1em;
  font-size: 0.9em;
}
.landing-hero h3 {
  font-family: var(--cursive-font);
  color: var(--brand-orange);
  font-weight: 100;
}
.landing-hero-images {
  width: 100%;
  flex-wrap: wrap;
}
.landing-hero-images img {
  width: calc(100% / 4);
}
@media only screen and (min-width: 56.25em) {
  .landing-hero {
    padding: 0vh;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
    clip-path: polygon(0 0%, 100% 0, 100% 100%, 0 90%);
    padding-bottom: 8vh;
    margin-bottom: -8vh;
  }
  .landing-hero-images img {
    width: calc(100% / 8);
  }
  .landing-hero p {
    line-height: 1.2em;
    font-size: 1.2em;
    font-weight: 300;
  }
}

.site-body {
  position: relative;
  z-index: 1;
}

.landing-banner {
  width: 100%;
  background-color: var(--brand-blue);
  /* transform: skewY(-4deg);
  -webkit-transform: skewY(-4deg);
  -moz-transform: skewY(-4deg);
  -ms-transform: skewY(-4deg);
  -o-transform: skewY(-4deg); */
  margin-top: 66vh;
  margin-bottom: -2vh;
  padding: 5vh 0;
  position: relative;
  z-index: 2;
}

.landing-banner h2 {
  color: var(--brand-white);
  font-size: 1.2em;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 56.25em) {
  .landing-banner {
    background-color: var(--brand-blue);
    /* transform: skewY(-1.5deg);
    -webkit-transform: skewY(-1.5deg);
    -moz-transform: skewY(-1.5deg);
    -ms-transform: skewY(-1.5deg);
    -o-transform: skewY(-1.5deg); */
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
    clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
    margin-bottom: -5vh;
    padding: 5vh 0;
  }

  .landing-banner h2 {
    font-size: 3em;
    transform: skewY(-0.8deg);
    -webkit-transform: skewY(-0.8deg);
    -moz-transform: skewY(-0.8deg);
    -ms-transform: skewY(-0.8deg);
    -o-transform: skewY(-0.8deg);
  }
}

.artist-landing {
  width: 100%;
  background-color: var(--brand-white);
}
.artist-landing-images {
  padding-top: 1vh;
  width: 100%;
  flex-wrap: wrap;
}
.image-group-1 {
  order: 1;
}

.artist-landing h1 {
  color: var(--brand-orange);
}

.artist-landing h2 {
  font-size: 1.8em;
}
.artist-landing h2,
h4 {
  color: var(--brand-medblue);
  margin-bottom: 0.5vh;
}
.artist-landing p {
  color: var(--brand-black);
  font-size: 1em;
}

.artist-landing-images img {
  width: calc(100% / 3);
}

.artist-landing-text {
  width: 100%;
  padding: 5vh 0;
  text-align: center;
}
.artist-landing-text .neg5vh {
  height: -5vh;
  margin-top: -0.5vh;
}
.tiny p {
  font-size: 0.5em;
}
@media only screen and (min-width: 56.25em) {
  .artist-landing-images {
    width: 35vw;
  }
  .artist-landing-text {
    width: 65vw;
    padding: 0;
  }
}

.artist-announce {
  width: 100%;
  background-color: var(--brand-white);
}
.artist-announce-images {
  width: 100%;
}

.artist-announce h1 {
  color: var(--brand-orange);
}
.artist-announce h2,
h4 {
  color: var(--brand-medblue);
  margin-bottom: 0.5vh;
}
.artist-announce p {
  color: var(--brand-black);
}

.artist-announce-text {
  justify-content: flex-start;
  width: 100%;
  text-align: center;
}
.artist-announce-text .neg5vh {
  height: -5vh;
  margin-top: -0.5vh;
}
.neg5 {
  margin-top: -1vh;
}

.artist-announce-col {
  width: calc(100%);
}

@media only screen and (min-width: 56.25em) {
  .artist-announce {
    align-items: flex-start;
    width: 100%;
  }

  .artist-announce-images {
    width: 20vw;
  }

  .artist-announce-col {
    width: 10vw;
  }
  .artist-announce-text {
    padding-top: 5vh;
    width: 70vw;
  }
}

.other-artists {
  background: var(--brand-dkblue);
  width: 100%;
}
.other-artists h4,
h5 {
  color: var(--brand-blue);
}

.other-artists-col {
  width: 100%;
  padding: 2vh 0;
  text-align: center;
}

.other-artists-images {
  width: 100%;
  flex-wrap: wrap;
}

.other-artists-images img {
  width: calc(100% / 4);
}

.orderlast {
  order: 1;
}

@media only screen and (min-width: 56.25em) {
  .other-artists-images img {
    width: calc(100% / 8);
  }
  .other-artists-col {
    width: calc(100% / 3);
    padding: 6vh 0;
  }
  .orderlast {
    order: 0;
  }
}

.tickets {
  width: 100%;
  background-color: var(--brand-black);
  padding-top: 5vh;
}

.tickets p {
  color: var(--brand-ltblue);
}

.tickets h1 {
  color: var(--brand-orange);
}
.tickets h3 {
  color: var(--brand-yellow);
}
.hero-ticket {
  background-color: var(--brand-dkblue);
  color: var(--brand-white);
  padding: 5vh 0;
  text-align: center;
}
.hero-ticket p {
  font-size: 1.2em;
  padding: 0 2vh;
}

.ticket-card-section {
  width: 100%;
}

.ticket-card {
  width: 90%;
  border: 2px var(--brand-white) solid;
  border-radius: 2vh;
  -webkit-border-radius: 2vh;
  -moz-border-radius: 2vh;
  -ms-border-radius: 2vh;
  -o-border-radius: 2vh;
  padding: 2vh 1vh;
  margin: 2vw;
  box-shadow: 5px 8px 15px rgba(40, 236, 255, 0.4);

  background: rgb(247, 247, 247);
  background: radial-gradient(
    circle,
    rgba(247, 247, 247, 1) 0%,
    rgba(131, 241, 251, 1) 45%,
    rgba(40, 236, 255, 1) 50%,
    rgba(249, 198, 79, 1) 100%
  );
  transition-duration: 1.2s;
  transition-timing-function: ease;
  transition-property: transform, box-shadow, border;
}

.ticket-card p {
  color: var(--brand-black);
  font-size: 1em;
}

.ticket-card h3 {
  color: var(--brand-dkblue);
}

.ticket-card:hover {
  cursor: pointer;
  transform: scale(1.1);
  box-shadow: 0px 8px 20px rgba(40, 236, 255, 0.8);
  border: 2px rgba(40, 236, 255, 0.8) solid;
}

.show-card {
  width: 90%;
  background-color: var(--brand-white);
  background-color: var(--brand-blue);
  padding-bottom: 1vh;
  box-shadow: 5px 8px 15px rgba(249, 198, 79, 0.3);
}

.show-card p {
  color: var(--brand-white);
  transition: color 1.5s ease-out;
  font-size: 1.2em;
  line-height: 1em;
}

/* .show-card h2 {
  font-size: 1.2em;
} */
.show-card-col {
  flex-wrap: wrap;
  width: 100%;
}

.show-card-col img {
  width: calc(100% / 4);
}
.sc-light {
  background-color: var(--brand-ltblue);
}
.sc-light p,
h2 {
  color: var(--brand-blue);
}
.sc-dark {
  background-color: var(--brand-dkblue);
}
.sc-dark h2 {
  color: var(--brand-ltblue);
}
.sc-dark p {
  color: var(--brand-ltblue);
}
.sc-med h2,
p {
  color: var(--brand-white);
}

@media only screen and (min-width: 56.25em) {
  .show-card {
    box-shadow: 5px 8px 15px rgba(249, 198, 79, 0.3);
    width: 60%;
    justify-content: space-between;
    align-items: stretch;
    /* -webkit-clip-path: polygon(2.5% 0%, 100% 0, 97.5% 100%, 0 100%);
    clip-path: polygon(2.5% 0%, 100% 0, 97.5% 100%, 0 100%); */
    transition-duration: 1.2s;
    transition-timing-function: ease;
    transition-property: background-color, transform, border-radius, box-shadow;
    padding-bottom: 0vh;
  }

  .show-card-col {
    width: calc(100% / 4);
    text-align: center;
  }
  .show-card-col img {
    width: calc(100% / 2);
  }
  .text-card {
    width: calc(100% / 2);
  }

  .show-card:hover {
    background-color: var(--brand-yellow);
    cursor: pointer;
    color: var(--brand-dkblue);
    /* -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0 100%); */

    box-shadow: 0px 8px 20px rgba(249, 198, 79, 0.8);
    transform: scale(1.1);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }

  .show-card:hover p {
    color: var(--brand-dkblue);
  }
  .show-card:hover h2 {
    color: var(--brand-dkblue);
  }
}

.mobile-text {
  font-size: 0.7em;
  line-height: 0.8em;
  text-align: center;
  font-weight: 300;
  padding: 0 2vh;
}
.buybtn {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 2px solid #e74c3c;
  border-radius: 0.6em;
  color: #e74c3c;
  cursor: pointer;
  display: flex;
  align-self: center;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1;
  margin: 1vh;
  padding: 1em 2.4em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.buybtn:hover,
.buybtn:focus {
  color: var(--brand-medblue);
  outline: 0;
}

.third {
  border-color: var(--brand-medblue);
  color: #fff;
  box-shadow: 0 0 40px 40px var(--brand-medblue) inset,
    0 0 0 0 var(--brand-medblue);
  transition: all 150ms ease-in-out;
}
.third:hover {
  box-shadow: 0 0 10px 0 var(--brand-medblue) inset,
    0 0 10px 4px var(--brand-medblue);
}

@media only screen and (min-width: 56.25em) {
  .ticket-card-section {
    /* width: 100%; */
    /* background-color: var(--brand-white); */
    align-items: stretch;
  }
  .ticket-card {
    justify-content: space-between;
    width: calc(100% / 3 - 15vw);
  }
  .buybtn {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    margin: 20px;
    padding: 1.2em 2.8em;
  }
}

.transport {
  background-color: var(--brand-orange);
  min-height: 40vh;
  padding: 2vh;
}
.transport p {
  line-height: 1em;
}

.logo-appear {
  height: 40vh;
  background: transparent;
}

.info {
  /* min-height: 40vh; */
  background: var(--brand-yellow);
  background-color: #fff454;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0vh;
}

.info-col {
  width: 100%;
}
.bottom-hang {
  justify-content: flex-end;
  align-items: flex-end;
}

.left-hang {
  align-items: flex-start;
}

.info h1 {
  color: var(--brand-blue);
  color: #3c87c1;
  font-family: 'Luckiest Guy', cursive;
  letter-spacing: 0.1em;
}
.info h4 {
  color: var(--brand-lime);
}

.info p {
  font-size: 1.2em;
  line-height: 1.2em;
  color: var(--brand-black);
}

@media only screen and (min-width: 56.25em) {
  .info {
    justify-content: space-between;
    align-items: stretch;
  }
  .info-col {
    width: calc(100% / 4);
  }
  .info p {
    font-size: 1.5em;
    line-height: 1.2em;
  }
}

.conditions {
  width: 100%;
  background-color: var(--brand-white);
  color: var(--brand-medblue);
  text-align: left;
  padding: 0 2vh;
  padding-top: 10vh;
}

.conditions h2 {
  color: var(--brand-medblue);
  font-size: 1.5em;
}
.conditions p {
  color: var(--brand-dkblue);
  font-size: 0.8em;
  line-height: 1em;
}

@media only screen and (min-width: 56.25em) {
  .conditions {
    padding: 0 25vw;
    padding-top: 10vh;
  }
  .conditions h2 {
    font-size: 2em;
  }
  .conditions p {
    text-align: left;

    font-size: 1em;
    line-height: 1em;
  }
}

.banner-text {
  width: 100%;
}
@media only screen and (min-width: 56.25em) {
  .page {
    height: 98vh;
    justify-content: center;
    align-items: center;
    background: url(img/hero2.jpg) no-repeat bottom center fixed;
  }

  .page h1 {
    font-size: 5em;
  }
  .page h2 {
    font-size: 2em;
  }
  .page h3 {
    font-size: 6em;
  }

  .page p {
    font-size: 1em;
  }

  .banner-text {
    width: 40%;
  }
}

.vendorPage {
  min-height: 60vh;
  background: var(--brand-blue);
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2vh;
}

.vendorPageFull {
  height: 100vh;
}

.vendorPage h2 {
  color: var(--brand-yellow);
}

.vendorPage p {
  font-size: 1em;
  line-height: 1.2em;
}

@media only screen and (min-width: 56.25em) {
  .vendorPage p {
    font-size: 1.5em;
    line-height: 1.2em;
  }
}

.tour-text {
  width: 95%;
}
@media only screen and (min-width: 56.25em) {
  .tour-text {
    width: 60%;
  }
}

.artist-page {
  min-height: 100vh;
  width: 100%;
  justify-content: flex-start;
  background-color: var(--brand-purple);
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(80, 162, 178, 1) 20%,

    rgba(119, 79, 161, 1) 100%
  );
}

.artist-page h1 {
  color: var(--brand-white);
  font-size: 2.5em;
}

.artist-col {
  background-color: var(--brand-purple);
  width: 100%;
}

.artist-bio {
  width: 100%;
  padding: 2vh;
  text-align: left;
}

.artist-bio p {
  color: var(--brand-white);
  font-size: 1em;
  line-height: 1em;
  font-weight: 300;
  margin-bottom: 1em;
}

@media only screen and (min-width: 56.25em) {
  .artist-page h1 {
    font-size: 6em;
  }
  .artist-image {
    width: 100%;
  }
  .artist-col {
    width: 100%;
  }
  .artist-bio {
    width: 60%;
    padding: 2vh;
  }
  .artist-bio p {
    font-size: 1.2em;
  }
  /* .artist-col video {
    margin: 0 auto;
  } */
  .second-tier {
    width: 45vw;
  }
  .third-tier {
    width: 40vw;
  }
  .fourth-tier {
    justify-content: space-around;
  }
}

.iframe-container {
  position: relative;
  width: 100%;
  padding: 2vh;
  margin: 1 auto;
}

.iframe-container .ratio {
  display: block;
  width: 100%;
  height: auto;
}

.iframe-container:hover {
  cursor: pointer;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.iframe-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 56.25em) {
  /* .video-page {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
	} */

  .iframe-container {
    width: 50vw;
  }
}

.iframe-container {
  position: relative;
  width: 100%;
  padding: 2vh;
  margin: 1 auto;
}

.iframe-container .ratio {
  display: block;
  width: 100%;
  height: auto;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.iframe-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 56.25em) {
  /* .video-page {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
	} */

  .iframe-container {
    width: 70%;
  }
}

.imaged-footer {
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  margin-top: 5vh;
}

.imaged-footer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8em;
  font-weight: 600;
  color: #6db0c0;
}

.imaged-footer img {
  max-width: 30vw;
  height: auto;
  margin: 0 auto;
}

@media only screen and (min-width: 56.25em) {
  .imaged-footer img {
    max-width: 8vw;
    height: auto;
    margin: 0 auto;
  }
}

.program {
  background: rgba(139, 102, 178, 0.7);
  width: 98vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2vh 0;
}

.program-left {
  width: 22vw;
  margin-bottom: 1vh;
}

.program-right {
  width: 73vw;
  margin-bottom: 1vh;
}

.program h1 {
  font-size: 1.4em;
  color: #fac76c;
}

.program p {
  font-size: 1em;
}

.artist-row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media only screen and (min-width: 56.25em) {
  .program {
    width: 60vw;
    padding: 2vh 0;
  }

  .program-left {
    width: 10vw;
    margin-bottom: 1vh;
  }

  .program-right {
    width: 50vw;
    margin-bottom: 1vh;
  }

  .program h1 {
    font-size: 3em;
    color: #fac76c;
  }
}

.tshirts {
  background-color: var(--brand-teal);
  /* background: url(img/heroaeb.jpg) no-repeat top center fixed;
	background-size: cover; */
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0vh 0vh 2vw;
  text-align: center;
}

.tshirts h1 {
  color: #fff;
  font-size: 3em;
}

@media only screen and (min-width: 56.25em) {
  .tshirts h1 {
    color: #fff;
    font-size: 5em;
  }
}

.sponsors {
  background-color: var(--brand-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5vh 2vh;
  text-align: center;
}
.sponsors p {
  color: var(--brand-dkblue);
  font-size: 1em;
  line-height: 1.1em;
}
.sponsor-row {
  width: 100%;
}
.sponsors-logo {
  max-width: 45vw;
  height: auto;
  margin: 0 2vw;
}
.naming-sponsor {
  width: 95vw;
}

@media only screen and (min-width: 56.25em) {
  .sponsors-logo {
    max-width: 12vw;
    height: auto;
    margin: 0 3vw;
  }
  .naming-sponsor {
    width: 25vw;
  }
}

.wide {
  width: 45vw;
}

.narrow {
  width: 35vw;
}

.green {
  background-color: #63c7b2;
}

.blue {
  background-color: #80ced7;
}

.project p {
  font-size: 1.3em;
  line-height: 1.2em;
  text-align: left;
}

.project h2 {
  font-size: 1.2em;
}

@media only screen and (min-width: 56.25em) {
  .project p {
    font-size: 2em;
    padding: 0 20vh;
    text-align: center;
  }

  .project h2 {
    font-size: 2.5em;
  }

  .more {
    padding: 20vh;
  }
}

.more p {
  font-size: 1.3em;
  line-height: 1.2em;
  text-align: left;
}

@media only screen and (min-width: 56.25em) {
  .more p {
    font-size: 1.5em;
  }
}

.song {
  background: url(img/hero.jpg) no-repeat center center fixed;
  background-size: cover;
  text-align: center;
  justify-content: center;
}

/*---------------------
 	Contact Section
---------------------*/

.contact {
  background-color: var(--brand-green);
  padding: 5vh 2vh;
}

.contact h2 {
  color: var(--brand-yellow);
}
.contact p {
  font-size: 1em;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
  /* margin: 5vh auto; */
}

form input {
  padding: 15px;
  flex: 1;
  flex-basis: 100%;
  width: 75vw;
  font-size: 1.2em;
  color: var(--brand-white);
  margin: 0 0 2vh 0;
  background-color: transparent;
  border: 2px solid var(--brand-white);
  border-radius: 2vh;
  -webkit-border-radius: 2vh;
  -moz-border-radius: 2vh;
  -ms-border-radius: 2vh;
  -o-border-radius: 2vh;
}

textarea {
  background-color: transparent;
  color: var(--brand-white);
  border: 2px solid var(--brand-white);

  width: 75vw;
  border-radius: 2vh;
  -webkit-border-radius: 2vh;
  -moz-border-radius: 2vh;
  -ms-border-radius: 2vh;
  -o-border-radius: 2vh;
}

form .btn {
  color: #f5f5f5;
  border-radius: 4px;
  text-transform: uppercase;
  background-color: var(--brand-orange);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.3rem;
  text-align: center;
  padding: 2vh 4vh;
  border: 0px;
  cursor: pointer;
  margin: 2vh;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

form ::-webkit-input-placeholder {
  color: var(--brand-white);
}

form ::-moz-placeholder {
  color: var(--brand-white);
}

form :-ms-input-placeholder {
  color: var(--brand-white);
}

form ::-ms-input-placeholder {
  color: var(--brand-white);
}

form ::placeholder {
  color: var(--brand-white);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

@media only screen and (min-width: 56.25em) {
  form input {
    width: 25vw;
  }

  textarea {
    border: 2px solid var(--brand-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1em;
    font-weight: 400;
    letter-spacing: 0.1rem;
    width: 25vw;
    border-radius: 2vh;
    -webkit-border-radius: 2vh;
    -moz-border-radius: 2vh;
    -ms-border-radius: 2vh;
    -o-border-radius: 2vh;
  }
}

/* :::::::::::::::::::::::::::::::::::::::::::::

FOOTER  NAVBAR  MOBILE APP MODULE

::::::::::::::::::::::::::::::::::::::::::::: */

.navbar {
  z-index: 9;
  background: transparent;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: fixed;
  bottom: 0;
}

.navbar p {
  color: #fcd0a1;
  letter-spacing: 0.3em;
  font-size: 0.825em;
  line-height: 1em;
}

.navbutton {
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  text-align: center;
  border-right: rgba(64, 63, 76, 0.8) solid 1px;
}

.last {
  border-right: 0px;
}

@media only screen and (min-width: 56.25em) {
  .navbar {
    display: none;
  }
}

/*::::::::::::
 	Header
::::::::::::*/

header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

header nav li {
  margin: 0;
}

header nav li:first-child {
  margin-left: 0;
}

header nav li:last-child {
  margin-right: 0;
}

/**---- Header ----**/

.header {
  z-index: 9;
  position: fixed;
  top: 0;
  left: 100vw;
  padding-top: 10vh;
  padding-bottom: 4em;
  /* width: 30vw; */
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
  /* overflow-y: scroll; */
  text-align: center;
  transition: transform 300ms ease;
}

.header nav,
.header ul {
  height: 100%;
  width: 50vw;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.header li {
  border-bottom: 0px solid #1f678a;
}

.header a {
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #80ced7;
  display: block;
  padding: 1vh;
  transition: background-color 300ms ease-in;
  font-size: 1em;
}

.header a:hover {
  color: #dbf4a7;
}

.menu-icon p {
  opacity: 0;
}

@media only screen and (min-width: 56.25em) {
  .header a {
    font-size: 2em;
  }

  .menu-icon p {
    font-size: 4em;
    opacity: 1;
  }

  .header nav,
  .header ul {
    width: 30vw;
  }
}

/* MOBILE NAVIGATION OFF CANVAS RIGHT :::::::::::::::::::::::::::::::::: */
/* MOBILE NAVIGATION OFF CANVAS RIGHT :::::::::::::::::::::::::::::::::: */
/* MOBILE NAVIGATION OFF CANVAS RIGHT :::::::::::::::::::::::::::::::::: */
/**---- Menu Icon ----**/
/**---- Menu Icon ----**/
/**---- Menu Icon ----**/

/* TO USE MENU ICON INSTEAD OF WORD "MENU"  PLACE THIS IN mobile-bar-right DIV */

/* <label for="menu-toggle" class="menu-icon">
  <span></span>
</label> */

.menu-icon {
  z-index: 10;
  display: block;
  position: relative;
  width: 25px;
  height: 100%;
  cursor: pointer;
  transition: transform 300ms ease;
}

.menu-icon > span {
  display: block;
  position: absolute;
  top: 55%;
  margin-top: -0.2em;
  width: 100%;
  height: 0.2em;
  border-radius: 1px;
  background-color: var(--brand-teal);
  transition: transform 300ms ease;
}

.menu-icon > span:before,
.menu-icon > span:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1px;
  background-color: var(--brand-teal);
  transition: transform 300ms ease;
}

.menu-icon > span:before {
  transform: translateY(-0.6em);
}

.menu-icon > span:after {
  transform: translateY(0.6em);
}

/**---- Menu Icon Effects ----**/

.menu-toggle:checked + .mobile-bar .menu-icon {
  transform: rotate(45deg);
}

.menu-toggle:checked + .mobile-bar span:before,
.menu-toggle:checked + .mobile-bar span:after {
  transform: rotate(90deg);
}

/**---- Off-Canvas Effect ----**/
/* CHANGE THE WIDTH OF THE SLIDE IN NAVIGATION
EG:  -100% AND 100% IS FULL PAGE */

.menu-toggle:checked ~ .header {
  transform: translateX(-100%);
  transform: translate3d(-100%, 0, 0);
}

.menu-toggle:checked ~ .container {
  transform: translateX(100%);
  transform: translate3d(100%, 0, 0);
}

@media only screen and (min-width: 56.25em) {
  .menu-toggle:checked ~ .header {
    transform: translateX(-100%);
    transform: translate3d(-100%, 0, 0);
  }

  .menu-toggle:checked ~ .container {
    transform: translateX(100%);
    transform: translate3d(100%, 0, 0);
  }
}

/**---- Mobile Bar ----**/

.menu-toggle {
  display: none;
}

.mobile-bar {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 2.5vw;
  width: 100vw;
  height: 10vh;
  background-color: transparent;
  display: flex;
  flex-direction: row;
}

.mobile-bar-left {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.mobile-bar-center {
  z-index: 8;
  flex: 3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.mobile-bar-right {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.mobile-bar-logo {
  width: 50vw;
  height: auto;
}

/* MEDIA EPK PAGE ////////////////////////////////////////////// */

.media-page {
  width: 100%;
  min-height: 100vh;
  background: var(--brand-white);
  text-align: center;
}

.media-page h2 {
  color: var(--brand-teal);
}

.media-page h3 {
  color: var(--brand-blue);
  font-size: 1.75em;
  font-weight: 600;
}

.media-page h4 {
  color: var(--brand-blue);
  font-size: 1em;
  font-weight: 300;
}

.mp-banner {
  width: 90%;
  padding: 5vh;
}

.mp-press-release {
  padding: 2vh;
}
.mp-press-release p {
  font-size: 1.1em;
  color: var(--brand-black);
}

.press-image {
  width: 100%;
}

.press-images {
  width: 98%;
  justify-content: center;
  align-items: center;
}
.media-page-contact {
  background-color: var(--brand-grey);
  min-height: 20vh;
  text-align: center;
  padding: 1vh;
}
.media-page-contact textarea {
  width: 75vw;
}
.webapplogo {
  max-height: 10vh;
  width: auto;
  max-width: 95vw;
}
@media only screen and (min-width: 56.25em) {
  .media-page h4 {
    color: var(--brand-blue);
    font-size: 1.5em;
    font-weight: 300;
  }
  .media-page h3 {
    color: var(--brand-blue);
    font-size: 2.5em;
    font-weight: 600;
  }
  .mp-banner {
    width: 50%;
  }
  .mp-press-release {
    padding: 5vh;
    width: 60%;
    text-align: left;
  }
  .mp-press-release p {
    font-size: 1.2em;
    color: var(--brand-black);
  }
  .press-images {
    width: 60%;
    justify-content: center;
    align-items: center;
  }
  .press-image {
    width: 30vw;
  }
  .media-page-contact textarea {
    width: 25vw;
  }
}

/* MEDIA EPK PAGE ////////////////////////////////////////////// */

.app-entry {
  width: 100%;
  background-color: var(--brand-purple);
  padding: 2vh;
}
.app-artist {
  width: 80%;
  align-items: flex-start;
  padding-left: 2vh;
}
.app-date {
  width: 20%;
}

.app-entry p {
  font-size: 1em;
}
.app-entry h3 {
  color: var(--brand-teal);
}
.app-entry h4 {
  color: var(--brand-teal);
  font-size: 1.2em;
  font-weight: 600;
}
.white-entry {
  background-color: transparent;
}

.white-entry p {
  color: var(--brand-purple);
}

.app-sponsors-logo {
  height: 15vh;
  width: auto;
}

.purple-box {
  width: 100%;
  padding: 2vh 4vh;
  background-color: var(--brand-purple);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.purple-box h5 {
  color: var(--brand-white);
  background-color: transparent;
  padding: 0;
}

.purple-box p {
  background-color: transparent;
}

/* MOBILE NAVIGATION OFF CANVAS RIGHT :::::::::::::::::::::::::::::::::: */
/* MOBILE NAVIGATION OFF CANVAS RIGHT :::::::::::::::::::::::::::::::::: */
/* MOBILE NAVIGATION OFF CANVAS RIGHT :::::::::::::::::::::::::::::::::: */

/*----------------------
 	video Section
----------------------*/

.video {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0vw 2vw;
}

.video h1 {
  font-size: 4vh;
  /* color: #fff; */
}

.video p {
  color: #ecdccd;
  text-align: left;
  font-size: 2.5vh;
  line-height: 1.2;
  margin-bottom: 0;
}

.video {
  padding: 10vw 10vw;
}

.video p {
  font-size: 2em;
  line-height: 1.5;
}

/* VIDEO ON PAGE SETTINGS:::::::::::::::::::::::::::::::::::::::::::::::::::: */

.video-page {
  min-height: 100vh;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.video-page-main {
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  /* padding-top: 20vh; */
}

.video-page-side {
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.video-page h3 {
  font-size: 3em;
}

.video-page hr {
  border: 0;
  height: 1vh;
  width: 50vw;
  background: #feda5b;
  margin: 0;
}

@media only screen and (min-width: 56.25em) {
  .video-page {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
  }

  .video-page-main {
    max-width: 75vw;
  }

  .video-page-side {
    max-width: 25vw;
  }

  .video-preview-page h3 {
    font-size: 3.5em;
  }

  .video-page p {
    font-size: 2em;
    line-height: 1.5;
  }
}

.eventsponsor {
  max-width: 15vw;
  width: auto;
  padding: 2vw;
}
@media only screen and (min-width: 56.25em) {
  .eventsponsor {
    max-width: 30vw;
    width: auto;
    padding: 2vw;
  }
}

.eventpartner {
  background: rgb(119, 79, 161);
  background: linear-gradient(
    0deg,
    rgba(119, 79, 161, 1) 0%,
    rgba(247, 247, 247, 1) 100%
  );
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  bottom: 0;
  padding-bottom: 4em;
  background-color: var(--brand-ltblue);
}

.footer p {
  font-size: 0.8em;
  line-height: 1em;
  margin: 1vh 0;
}

.program-col {
  padding-left: 2vh;
  width: 100%;
  align-items: left;
  text-align: left;
}
.date-prog {
  margin-right: 3vh;
}

@media only screen and (min-width: 56.25em) {
  .program-col {
    width: 25%;
  }
}

/* EMAIL SPAM FILTER CSS///////////////////////// 
    This styling will hide the email field from display, but it will still be seen by spambots */

#email_add {
  display: none;
}

.whiteColor {
  color: #f6f6f6;
}

.whiteBg {
  background-color: #f6f6f6;
}

.mobile-hide {
  display: none;
}
.desktop-hide {
  display: inline;
}
@media only screen and (min-width: 56.25em) {
  .mobile-hide {
    display: inline;
  }
  .desktop-hide {
    display: none;
  }
}
.h1 {
  height: 1vh;
}
.h2 {
  height: 2vh;
}
.h5 {
  height: 5vh;
}
.h10 {
  height: 10vh;
}
.h20 {
  height: 20vh;
}
.h30 {
  height: 30vh;
}
.h40 {
  height: 40vh;
}
.h50 {
  height: 50vh;
}
.h60 {
  height: 60vh;
}
.h70 {
  height: 70vh;
}
.h80 {
  height: 80vh;
}
.h90 {
  height: 90vh;
}
.w5 {
  width: 5vw;
}
.w10 {
  width: 10vw;
}
.w20 {
  width: 20vw;
}
.w30 {
  width: 30vw;
}
.w40 {
  width: 40vw;
}
.w50 {
  width: 50vw;
}
.w60 {
  width: 60vw;
}
.w70 {
  width: 70vw;
}
.w80 {
  width: 80vw;
}
.w90 {
  width: 90vw;
}
.w100 {
  width: 100vw;
}

@supports (-webkit-touch-callout: none) {
  .page {
    background-attachment: initial;
  }
  .landing {
    background-attachment: initial;
  }

  .bollywoodPage {
    background-attachment: initial;
  }

  .chefPage {
    background-attachment: initial;
  }

  .historyPage {
    background-attachment: initial;
  }

  .culturePage {
    background-attachment: initial;
  }

  .lfresh {
    background-attachment: initial;
  }
}
