/*----------Colors----------*/
/*----------Breakpoints----------*/
/*----------Mixins----------*/
/*----------Global styles----------*/
* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
}

body {
  background: #FFF;
  color: #000;
  font-family: "work-sans", sans-serif;
}

@media (min-width: 900px) {
  .mobile {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .desktop {
    display: none !important;
  }
}

.scaler {
  position: relative;
  width: 90%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .scaler {
    flex-flow: column;
  }
}

.label {
  display: table;
  margin: 0 auto;
  padding: 0.5em 1em;
  background: #4b4ba0;
  color: #FFF;
}

.btn {
  position: relative;
  font-size: 1.3rem;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
}
.btn .btn-text {
  display: block;
  position: relative;
  z-index: 2;
  background-color: #13a004;
  color: #FFF;
  padding: 0.5rem 1rem;
  line-height: 1;
}

#wrapper {
  margin-top: 100px;
  overflow: hidden;
}

/*----------Text styles----------*/
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h2, h3, .btn, nav, .label {
  font-family: "fatfrank", sans-serif;
  letter-spacing: 0.05em;
}

h2 {
  font-size: 2rem;
}
@media (max-width: 900px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.7rem;
  font-weight: 500;
}

h4 {
  font-size: 1.1rem;
  font-weight: 800;
}

p {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 400;
}

/*----------Main navigation----------*/
nav {
  background: #4b4ba0;
  text-align: center;
  position: fixed;
  width: 100%;
  height: 100px;
  top: 0;
  text-transform: uppercase;
  z-index: 99;
}
@media (max-width: 1300px) {
  nav {
    height: 75px;
  }
}
@media (max-width: 900px) {
  nav {
    background: #4b4ba0;
    top: 90px;
    height: 0;
    overflow: hidden;
    transition: height 0.75s ease-in-out;
  }
  nav .scaler {
    height: calc(100vh - 180px);
  }
  nav.open {
    height: 100vh;
    top: 90px;
  }
}
@media (min-width: 900px) {
  nav .scaler {
    justify-content: space-between;
  }
}
nav a {
  position: relative;
  font-size: 1.1rem;
  margin: 0 5px;
}
@media (max-width: 1300px) {
  nav a {
    font-size: 0.9rem;
  }
}
@media (max-width: 900px) {
  nav a {
    height: auto;
    font-size: 1.5rem;
    margin: 1rem 0;
  }
}
nav a:not(.btn) {
  display: flex;
  align-items: center;
  color: #FFF;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
}
nav a:not(.btn):hover {
  opacity: 0.75;
}
@media (min-width: 900px) {
  nav a:not(.btn) {
    height: 100px;
  }
}
@media (max-width: 1300px) and (min-width: 900px) {
  nav a:not(.btn) {
    height: 75px;
  }
}

#logo {
  margin-left: 0;
}
#logo img {
  width: 78px;
  height: auto;
}
@media (max-width: 1300px) and (min-width: 900px) {
  #logo img {
    width: 50px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
#tickets {
  margin-right: 0;
  overflow: hidden;
  padding: 0;
  background: transparent;
  transition: transform 0.2s ease-out;
  animation: pulse 1s ease-in-out infinite;
}
#tickets:hover {
  animation: none;
  transform: scale(1.1) !important;
}
#tickets .btn-text {
  background-color: #1abc08;
}
@media (max-width: 1300px) {
  #tickets {
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  #tickets {
    font-size: 1.5rem;
    margin: 1rem 0 4rem;
  }
}

#progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75px;
  height: 10px;
  background-color: #1abc08;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1300px) {
  #progress {
    width: 50px;
  }
}

/*----------Mobile navigation----------*/
#mobile-nav {
  background: #4b4ba0;
  width: 100%;
  position: fixed;
  height: 90px;
  top: 0;
  z-index: 99;
}
#mobile-nav .scaler {
  height: 100%;
  flex-flow: row;
  justify-content: space-between;
}
#mobile-nav img {
  width: 78px;
  height: auto;
}

.burger {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
}
.burger svg {
  width: 75px;
  height: 75px;
}
.burger .line {
  fill: none;
  stroke: #FFF;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.burger .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.burger .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.burger .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.burger.open .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.burger.open .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.burger.open .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

/*----------Split text lockups----------*/
section {
  padding: 1rem 0;
}
section section {
  padding: 0;
}
section .scaler {
  align-items: center;
  perspective: 1000px;
}
section .col {
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  section .col.text {
    width: 40%;
  }
}
@media (max-width: 900px) {
  section .col.text {
    text-align: center;
  }
}
section .col.text h4 {
  display: table;
  padding-bottom: 0.25rem;
  color: #13a004;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 3px solid #13a004;
  margin: 0;
}
@media (max-width: 900px) {
  section .col.text h4 {
    margin: 0 auto;
  }
}
section .col.text h2 {
  color: #4b4ba0;
  margin: 1.5rem 0 1.5rem;
}
section .col.text h5 {
  font-size: 1.3rem;
}
section .col.text p {
  max-width: 475px;
  margin: 0 0 1rem;
}
section .col.text p span {
  color: #13a004;
}
@media (max-width: 900px) {
  section .col.text p {
    font-size: 16px;
    margin: 0 auto 1rem;
  }
}
section .col.text .btn {
  margin-top: 1rem;
}
@media (max-width: 900px) {
  section .col.text .btn {
    display: table;
    margin: 2rem auto 0;
  }
}
section .col.text .btn .btn-text {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.2s ease-in-out;
}
section .col.text .btn:after {
  content: "";
  display: block;
  position: absolute;
  background: #071a2f;
  width: 100%;
  height: 100%;
  top: 8px;
  left: 8px;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.2s ease-in-out;
}
section .col.text .btn:hover .btn-text {
  transform: scale(1.1) translateZ(0);
}
section .col.text .btn:hover:after {
  width: 110%;
  height: 120%;
  filter: blur(3px);
  opacity: 0.75;
}
@media (max-width: 900px) {
  section .col.image {
    transform: none !important;
  }
}
@media (min-width: 900px) {
  section .col.image {
    width: 60%;
  }
}
@media (max-width: 900px) {
  section .col.text {
    order: 1;
  }
  section .col.image {
    margin-top: 2rem;
    order: 2;
  }
}
section .blob-wrap {
  position: absolute;
  top: 0;
  width: 50%;
  z-index: 1;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  height: 100%;
}
@media (max-width: 900px) {
  section .blob-wrap {
    top: unset;
    bottom: 4rem;
    height: auto;
    transform: none !important;
  }
}
section .blob-wrap .tk-blob {
  width: 100%;
}
section .blob-wrap:first-child {
  left: -20%;
}
section .blob-wrap:last-child {
  right: -20%;
}

/*----------Collages----------*/
@keyframes fanIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
.collage {
  position: relative;
  display: table;
  margin: 0 auto;
}
.collage img {
  position: absolute;
  max-width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s ease-out;
}
.collage img:first-of-type {
  position: relative;
}
.collage img:nth-of-type(1) {
  z-index: 11;
}
.collage img:nth-of-type(2) {
  z-index: 10;
}
.collage img:nth-of-type(3) {
  z-index: 9;
}
.collage img:nth-of-type(4) {
  z-index: 8;
}
.collage img:nth-of-type(5) {
  z-index: 7;
}
.collage img:nth-of-type(6) {
  z-index: 6;
}
.collage img:nth-of-type(7) {
  z-index: 5;
}
.collage img:nth-of-type(8) {
  z-index: 4;
}
.collage img:nth-of-type(9) {
  z-index: 3;
}
.collage img:nth-of-type(10) {
  z-index: 2;
}
.collage img:nth-of-type(11) {
  z-index: 1;
}
.collage img:nth-of-type(12) {
  z-index: 0;
}

.image[data-animated=true] .collage img {
  animation: fanIn 0.5s ease-out forwards;
}

#intro {
  padding: 0;
  min-height: 100vh;
}
#intro[data-animated=true] {
  min-height: unset;
}
@media (max-width: 900px) {
  #intro {
    margin-bottom: 4rem;
  }
}
#intro .scaler {
  max-width: 100%;
}
@media (max-width: 900px) {
  #intro .scaler {
    max-width: unset;
    width: 130%;
    left: 50%;
    transform: translateX(-50%);
  }
}
#intro .col.image {
  width: 100%;
}
#intro img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 8rem);
}
#intro img:nth-of-type(1) {
  transform: scale(2);
  transform-origin: 75% 75%;
  animation-delay: 1.5s;
  animation-duration: 0.25s;
}
#intro img:nth-of-type(2) {
  transform: scale(0.9) translateY(20%);
  animation-delay: 0.2s;
}
#intro img:nth-of-type(3) {
  transform: scale(0.9) translateY(20%);
  animation-delay: 0.3s;
}
#intro img:nth-of-type(4) {
  transform: none;
  animation-duration: 0.3s;
}
#intro img:nth-of-type(5) {
  transform: scale(0.25);
  transform-origin: bottom center;
  animation-delay: 0.7s;
}
#intro img:nth-of-type(6) {
  transform: scale(0.25);
  transform-origin: bottom center;
  animation-delay: 0.4s;
}
#intro img:nth-of-type(7) {
  transform: scale(0.25);
  transform-origin: bottom center;
  animation-delay: 0.5s;
}
#intro img:nth-of-type(8) {
  transform: scale(0.25);
  transform-origin: bottom center;
  animation-delay: 0.6s;
}
#intro img:nth-of-type(9) {
  transform: scale(0.25);
  transform-origin: bottom center;
  animation-delay: 0.7s;
}
#intro img:nth-of-type(10) {
  transform: scale(0.25);
  transform-origin: bottom center;
  animation-delay: 0.8s;
}
#intro img:nth-of-type(11) {
  transform: scale(0.25);
  transform-origin: bottom center;
  animation-delay: 0.9s;
}
#intro img:nth-of-type(12) {
  transform: scale(0.25);
  transform-origin: bottom center;
  animation-delay: 1s;
}

#about .collage img {
  position: absolute;
  max-width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
#about .collage img:first-of-type {
  position: relative;
}
#about .collage img:nth-of-type(1) {
  transform: scale(0.7) translateY(10%) rotate(3deg);
  animation-delay: 0.1s !important;
}
#about .collage img:nth-of-type(2) {
  transform: scale(0.7) translateY(10%) rotate(6deg);
  animation-delay: 0.2s !important;
}
#about .collage img:nth-of-type(3) {
  transform: scale(0.7) translateY(10%) rotate(9deg);
  animation-delay: 0.3s !important;
}
#about .collage img:nth-of-type(4) {
  transform: scale(0.7) translateY(10%) rotate(12deg);
  animation-delay: 0.4s !important;
}
#about .collage img:nth-of-type(5) {
  transform: scale(0.7) translateY(10%) rotate(15deg);
  animation-delay: 0.5s !important;
}
#about .collage img:nth-of-type(6) {
  transform: scale(0.7) translateY(10%) rotate(18deg);
  animation-delay: 0.6s !important;
}
#about .collage img:nth-of-type(7) {
  transform: scale(0.7) translateY(10%) rotate(21deg);
  animation-delay: 0.7s !important;
}
#about .collage img:nth-of-type(8) {
  transform: scale(0.7) translateY(10%) rotate(24deg);
  animation-delay: 0.8s !important;
}
#about .collage img:nth-of-type(9) {
  transform: scale(0.7) translateY(10%) rotate(27deg);
  animation-delay: 0.9s !important;
}
#about .collage img:nth-of-type(10) {
  transform: scale(0.7) translateY(10%) rotate(30deg);
  animation-delay: 1s !important;
}
#about .collage img:nth-of-type(11) {
  transform: scale(0.7) translateY(10%) rotate(33deg);
  animation-delay: 1.1s !important;
}
#about .collage img:nth-of-type(12) {
  transform: scale(0.7) translateY(10%) rotate(36deg);
  animation-delay: 1.2s !important;
}
#about .collage img:nth-of-type(4) {
  transform: scale(0.5) translateY(30%) rotate(-20deg);
}
#about .collage img:nth-of-type(5) {
  transform: scale(0.5) translateY(30%) rotate(20deg);
}
#about .collage img:last-of-type {
  transform: scale(0.5) rotate(25deg);
}

#entertainment .collage img:nth-of-type(1) {
  animation-delay: 0.1s;
}
#entertainment .collage img:nth-of-type(2) {
  animation-delay: 0.2s;
}
#entertainment .collage img:nth-of-type(3) {
  animation-delay: 0.3s;
}
#entertainment .collage img:nth-of-type(4) {
  animation-delay: 0.4s;
}
#entertainment .collage img:nth-of-type(5) {
  animation-delay: 0.5s;
}
#entertainment .collage img:nth-of-type(6) {
  animation-delay: 0.6s;
}

.map {
  position: relative;
  display: table;
  margin-left: auto;
  margin: 4rem 0 4rem auto;
}
.map img {
  display: block;
  max-width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
}
.map #map {
  position: absolute !important;
  width: 94.2%;
  height: 94%;
  top: 3%;
  left: 3%;
  z-index: 2;
}

#event-info p {
  font-size: 1.3rem;
}
@media (max-width: 1300px) {
  #event-info p {
    font-size: 1rem;
  }
}
#event-info p a {
  text-decoration: none;
  color: inherit;
}
#event-info p a:hover {
  text-decoration: underline;
}

#honorees .scaler:not(:nth-of-type(1)) .tk-blob {
  margin-top: 8rem;
}
#honorees .label {
  display: table;
  max-width: 90%;
  margin: 6rem auto 0;
  text-align: center;
}
@media (max-width: 1300px) {
  #honorees .label {
    margin-bottom: 4rem;
  }
}
@media (max-width: 900px) {
  #honorees .label {
    font-size: 1.5rem;
  }
}
@media (min-width: 900px) {
  #honorees h2 {
    font-size: 2.6rem;
  }
}
#honorees h5 {
  margin: -1rem 0 1.5rem;
  font-weight: 500;
}
#honorees p a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}
#honorees p a:hover {
  color: #4b4ba0;
}
@media (max-width: 900px) {
  #honorees .col.image {
    margin-top: -2rem;
  }
}

#danny .collage img {
  transform: scale(0.5);
}
#danny .collage img:nth-of-type(1) {
  transform: scale(0.5) rotate(-20deg);
  animation-delay: 0.4s;
}
#danny .collage img:nth-of-type(2) {
  transform: scale(1.5);
  animation-delay: 0.35s;
}
#danny .collage img:nth-of-type(3) {
  transform: scale(0.75);
  opacity: 1 !important;
  animation-delay: 0s;
}
#danny .collage img:nth-of-type(4) {
  transform: scale(0.5) translateY(20%) rotate(30deg);
  animation-delay: 0.3s;
}
#danny .collage img:nth-of-type(5) {
  animation-delay: 0.1s;
}

#sonia .collage img {
  transform: scale(0.5);
}
#sonia .collage img:nth-of-type(1) {
  transform: scale(1.25);
  animation-delay: 0.3s;
}
#sonia .collage img:nth-of-type(2) {
  transform: scale(0.75);
  opacity: 1 !important;
  animation-delay: 0s;
}
#sonia .collage img:nth-of-type(3) {
  transform: scale(0.5);
  animation-delay: 0.5s;
}
#sonia .collage img:nth-of-type(4) {
  animation-delay: 0.1s;
}

#leslie .collage img {
  transform: scale(0.5);
}
#leslie .collage img:nth-of-type(1) {
  animation-delay: 0.1s;
}
#leslie .collage img:nth-of-type(2) {
  animation-delay: 0.2s;
}
#leslie .collage img:nth-of-type(3) {
  animation-delay: 0.3s;
}
#leslie .collage img:nth-of-type(4) {
  animation-delay: 0.4s;
}
#leslie .collage img:nth-of-type(5) {
  animation-delay: 0.5s;
}
#leslie .collage img:nth-of-type(6) {
  animation-delay: 0.6s;
}
#leslie .collage img:nth-of-type(1) {
  transform: scale(0.5);
}
#leslie .collage img:nth-of-type(2) {
  transform: scale(0.5);
}
#leslie .collage img:nth-of-type(3) {
  transform: scale(0.75);
  opacity: 1 !important;
  animation-delay: 0s;
}
#leslie .collage img:nth-of-type(4) {
  transform: scale(0.5) translateY(20%);
}
#leslie .collage img:nth-of-type(5) {
  transform: scale(0.5) translateX(-10%) translateY(10%);
}
#leslie .collage img:nth-of-type(6) {
  animation-delay: 0.1s;
}

#sponsors .more-sponsors {
  flex-flow: column;
}
#sponsors .col:first-of-type:last-of-type, #sponsors .col.wide {
  width: 100%;
  text-align: center;
}
#sponsors .col:first-of-type:last-of-type h4, #sponsors .col:first-of-type:last-of-type h2, #sponsors .col:first-of-type:last-of-type p, #sponsors .col.wide h4, #sponsors .col.wide h2, #sponsors .col.wide p {
  margin-left: auto;
  margin-right: auto;
}
#sponsors .col:first-of-type:last-of-type p, #sponsors .col.wide p {
  max-width: 1000px;
}
@media (min-width: 900px) {
  #sponsors .col:first-of-type:last-of-type p, #sponsors .col.wide p {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
@media (max-width: 900px) {
  #sponsors .col:first-of-type:last-of-type br, #sponsors .col.wide br {
    display: none;
  }
}
@media (min-width: 900px) {
  #sponsors h2 {
    font-size: 2.6rem;
  }
}
#sponsors h3 {
  font-size: 1.3rem;
  margin: 0 auto 1rem;
  text-align: center;
}
#sponsors div.text {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.3s ease-out;
}
#sponsors div.text.small p {
  font-size: 1rem !important;
}
#sponsors div.text.small h3 {
  margin: 2rem auto 1rem;
}
#sponsors div.text.wide {
  width: 100%;
}
#sponsors div.text img {
  max-width: 100%;
}
#sponsors div.text:nth-of-type(1) {
  transition-delay: 0.1s;
}
#sponsors div.text:nth-of-type(2) {
  transition-delay: 0.2s;
}
#sponsors div.text:nth-of-type(3) {
  transition-delay: 0.3s;
}
#sponsors div.text:nth-of-type(4) {
  transition-delay: 0.4s;
}
#sponsors div.text:nth-of-type(5) {
  transition-delay: 0.5s;
}
#sponsors div.text:nth-of-type(6) {
  transition-delay: 0.6s;
}
#sponsors div.text:nth-of-type(7) {
  transition-delay: 0.7s;
}
#sponsors div.text:nth-of-type(8) {
  transition-delay: 0.8s;
}
#sponsors div.text:nth-of-type(9) {
  transition-delay: 0.9s;
}
#sponsors div.text:nth-of-type(10) {
  transition-delay: 1s;
}
#sponsors [data-animated=true] div.text {
  opacity: 1;
  transform: translateY(0);
}
#sponsors .sponsor-wrap {
  flex-flow: row wrap;
  align-items: flex-start;
  max-width: 850px;
}
#sponsors .sponsor-wrap h2 {
  width: 100%;
  color: #4b4ba0;
  text-align: center;
  margin: 2rem auto;
}
#sponsors .sponsor-wrap .col.text {
  padding: 1rem;
}
#sponsors .sponsor-wrap .col.text.wide {
  width: 100%;
}
#sponsors .sponsor-wrap img {
  display: block;
  max-width: 300px;
  margin: 2rem auto;
}
#sponsors .sponsor-wrap ul {
  padding: 0;
  text-align: center;
  list-style-type: none;
}
#sponsors .sponsor-wrap li {
  font-weight: 600;
  margin: 0 0 0.25rem;
  text-transform: uppercase;
}

.collage-bottom {
  position: relative;
  display: block;
  width: 100%;
  max-width: unset;
  margin: 0;
}
@media (max-width: 900px) {
  .collage-bottom {
    width: 150%;
    left: -25%;
  }
}

.mapLabel {
  transform: translateX(80px);
  white-space: normal;
  width: 120px;
  text-align: left;
  text-shadow: 0px 0px 5px #FFF, 0px 0px 5px #FFF, 0px 0px 5px #FFF;
}

.credits {
  position: fixed;
  z-index: 2;
  bottom: 0;
  right: 0;
  background: #4b4ba0;
  color: #FFF;
  padding: 0.25rem 0.5rem;
  font-family: "work-sans", sans-serif;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.1s ease-out;
}
.credits:hover {
  background: #000;
}