@import url(https://use.typekit.net/egy6wyg.css);
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "korolev", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

.fw-light {
  font-weight: 300;
}

.fw-med {
  font-weight: 500;
}

.fw-bold {
  font-weight: 700;
}

.fw-heavy {
  font-weight: 900;
}

h2 {
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 32px;
  }
}

p strong {
  font-weight: 700;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    max-width: 95%;
    padding: 0 30px;
  }
}

img {
  max-width: 100%;
}

.header {
  padding: 25px 0 0;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .header {
    padding: 20px 0 0;
  }
}
.header .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  align-items: center;
}
@media (max-width: 768px) {
  .header .container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
}
.header .container .logo img {
  width: 200px;
  height: auto;
}
@media (max-width: 768px) {
  .header .container .logo img {
    width: 100px;
  }
}
.header .container .buyNow {
  text-align: center;
}
@media (max-width: 768px) {
  .header .container .buyNow {
    text-align: right;
  }
  .header .container .buyNow img {
    height: 60px;
  }
}
.header .container .dates {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: #00099A;
  line-height: 1;
}
@media (max-width: 768px) {
  .header .container .dates {
    display: none;
  }
}
.header .container .dates__day {
  font-weight: 300;
  font-size: 100px;
}
.header .container .dates__rest--month {
  font-weight: 700;
  font-size: 22px;
}
.header .container .dates__rest--year {
  font-weight: 300;
  font-size: 32px;
}
.header .container .dates__rest--time {
  font-weight: 300;
  font-size: 16px;
}

.footer {
  position: relative;
  background: #0099CC;
  background: linear-gradient(90deg, #0099cc 0%, #0099cc 10%, #ff3b8d 50%, #e16e3d 100%);
  padding: 0px 0 150px;
}
@media (max-width: 768px) {
  .footer {
    padding: 0 0 60px;
  }
}
.footer__curve {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 4;
}
.footer__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
  background-color: transparent;
  background-image: url("/assets/images/pattern-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column-reverse;
    gap: 60px;
  }
}
.footer__logos {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 768px) {
  .footer__logos {
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  .footer__logos img {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .footer__logos a {
    text-align: center;
  }
}
.footer__logos--chat {
  max-width: 60%;
}
@media (max-width: 768px) {
  .footer__logos--chat {
    max-width: 75%;
  }
}
.footer__date {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: white;
  line-height: 1;
}
@media (max-width: 768px) {
  .footer__date {
    margin-top: 40px;
  }
}
.footer__date--day {
  font-weight: 300;
  font-size: 100px;
}
.footer__date--rest .month {
  font-weight: 700;
  font-size: 22px;
}
.footer__date--rest .year {
  font-weight: 300;
  font-size: 32px;
}
.footer__date--rest .time {
  font-weight: 300;
  font-size: 16px;
}

.hero {
  width: 100%;
  position: relative;
  margin-bottom: -15px;
}
.hero__curve {
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .hero__curve {
    top: -5px;
  }
}
.hero video {
  width: 100%;
  height: auto;
}

.lineup {
  background: #0099CC;
  background: linear-gradient(90deg, #0099cc 0%, #0099cc 10%, #ff3b8d 50%, #e16e3d 100%);
  padding: 80px 0 0;
  text-align: center;
  color: white;
  position: relative;
}
.lineup .container {
  position: relative;
  z-index: 2;
}
.lineup h3 {
  color: white;
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
}
@media (max-width: 768px) {
  .lineup h3 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.lineup h3 span {
  font-size: 30px;
  font-weight: 300;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .lineup h3 span {
    font-size: 18px;
  }
}
.lineup__logos {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 768px) {
  .lineup__logos {
    gap: 50px;
  }
}
.lineup__logos--item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 768px) {
  .lineup__logos--item {
    gap: 45px;
    flex-direction: column;
  }
  .lineup__logos--item img {
    max-width: 90%;
  }
}
.lineup__info {
  margin: 120px 0 0;
  text-align: center;
}
@media (max-width: 768px) {
  .lineup__info {
    margin: 80px 0 0;
  }
}
.lineup__info p {
  font-weight: 500;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 768px) {
  .lineup__info p {
    font-size: 18px;
  }
}
.lineup__info h1 {
  font-size: 90px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .lineup__info h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .lineup__info img {
    height: 80px;
  }
}
.lineup__headliner {
  mix-blend-mode: hard-light;
  margin-top: -100px;
}
@media (max-width: 768px) {
  .lineup__headliner {
    margin-top: -30px;
  }
}
.lineup__btmCurve {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
}

.intro {
  padding: 80px 0 0;
  text-align: center;
  color: #00099A;
}
@media (max-width: 768px) {
  .intro {
    padding: 40px 0 0;
  }
}
.intro p {
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .intro img {
    height: 100px;
  }
}

.prohibited {
  text-align: center;
  background: #00099A;
  color: white;
  position: relative;
}
@media (max-width: 670px) {
  .prohibited {
    padding-bottom: 60px;
  }
}
.prohibited__curve {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}
.prohibited h2 {
  margin-top: 80px;
  font-size: 30px;
  line-height: 36px;
}
.prohibited .grid {
  margin-top: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px 120px;
}
@media (max-width: 1200px) {
  .prohibited .grid {
    gap: 80px 100px;
  }
}
@media (max-width: 768px) {
  .prohibited .grid {
    gap: 60px;
  }
}
.prohibited .grid__item {
  width: 15%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .prohibited .grid__item {
    width: 25%;
  }
}
@media (max-width: 670px) {
  .prohibited .grid__item {
    width: 40%;
  }
}
.prohibited .grid__item img {
  height: 50px;
  margin-bottom: 30px;
}
@media (max-width: 670px) {
  .prohibited .grid__item img {
    height: 40px;
  }
}
.prohibited .grid__item p {
  font-size: 16px;
  line-height: 19px;
}
@media (max-width: 670px) {
  .prohibited .grid__item p {
    font-size: 14px;
    line-height: 16px;
  }
}
