@font-face {
  font-family: 'Shrikhand';
  src: url("/fonts/Shrikhand-Regular.ttf") format('ttf');
}
body {
  --body: 'Averia Serif Libre', serif;
  --header: 'Shrikhand', serif;
  --subheader: 'Montserrat', sans-serif;
  --geo: 'Chakra Petch', sans-serif;
}
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-font-feature-settings: "kern";
  -moz-font-feature-settings: "kern";
  font-feature-settings: "kern";
  font-variant-ligatures: common-ligatures;
  font-kerning: normal;
  font-weight: normal;
}
body {
  --background: #fefdf7;
  --primary: #36393d;
  --secondary: #f0f0ee;
  --accent: #f06653;
  --medium: #686a6d;
  --border: #e8e8e4;
  --danger: #f06653;
  --success: #85b274;
  --warning: #f9a967;
  --error: #f06653;
  --notification: #f06653;
  --info: #999da0;
}
body .carousel {
  width: 580px;
  height: 380px;
  text-align: center;
  list-style: none;
  padding: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) {
  body .carousel {
    width: 328px;
    height: 240px;
  }
}
body .carousel__controls,
body .carousel__activator {
  display: none;
}
body .carousel__activator:nth-of-type(1):checked ~ .carousel__track {
  transform: translateX(0%);
}
body .carousel__activator:nth-of-type(1):checked ~ .carousel__slide:nth-of-type(1) {
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s, transform 0.5s;
}
body .carousel__activator:nth-of-type(1):checked ~ .carousel__controls:nth-of-type(1) {
  display: block;
  opacity: 1;
}
body .carousel__activator:nth-of-type(1):checked ~ .carousel__indicators .carousel__indicator:nth-of-type(1) {
  opacity: 1;
}
body .carousel__activator:nth-of-type(2):checked ~ .carousel__track {
  transform: translateX(-100%);
}
body .carousel__activator:nth-of-type(2):checked ~ .carousel__slide:nth-of-type(2) {
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s, transform 0.5s;
}
body .carousel__activator:nth-of-type(2):checked ~ .carousel__controls:nth-of-type(2) {
  display: block;
  opacity: 1;
}
body .carousel__activator:nth-of-type(2):checked ~ .carousel__indicators .carousel__indicator:nth-of-type(2) {
  opacity: 1;
}
body .carousel__activator:nth-of-type(3):checked ~ .carousel__track {
  transform: translateX(-200%);
}
body .carousel__activator:nth-of-type(3):checked ~ .carousel__slide:nth-of-type(3) {
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s, transform 0.5s;
}
body .carousel__activator:nth-of-type(3):checked ~ .carousel__controls:nth-of-type(3) {
  display: block;
  opacity: 1;
}
body .carousel__activator:nth-of-type(3):checked ~ .carousel__indicators .carousel__indicator:nth-of-type(3) {
  opacity: 1;
}
body .carousel__activator:nth-of-type(4):checked ~ .carousel__track {
  transform: translateX(-300%);
}
body .carousel__activator:nth-of-type(4):checked ~ .carousel__slide:nth-of-type(4) {
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s, transform 0.5s;
}
body .carousel__activator:nth-of-type(4):checked ~ .carousel__controls:nth-of-type(4) {
  display: block;
  opacity: 1;
}
body .carousel__activator:nth-of-type(4):checked ~ .carousel__indicators .carousel__indicator:nth-of-type(4) {
  opacity: 1;
}
body .carousel__activator:nth-of-type(5):checked ~ .carousel__track {
  transform: translateX(-400%);
}
body .carousel__activator:nth-of-type(5):checked ~ .carousel__slide:nth-of-type(5) {
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s, transform 0.5s;
}
body .carousel__activator:nth-of-type(5):checked ~ .carousel__controls:nth-of-type(5) {
  display: block;
  opacity: 1;
}
body .carousel__activator:nth-of-type(5):checked ~ .carousel__indicators .carousel__indicator:nth-of-type(5) {
  opacity: 1;
}
body .carousel__control {
  width: 15px;
  height: 15px;
  margin-top: -7.5px;
  display: block;
  position: absolute;
  top: 50%;
  border-width: 5px 5px 0 0;
  border-style: solid;
  border-color: #fafafa;
  cursor: pointer;
  opacity: 0.35;
  outline: 0;
  z-index: 3;
}
body .carousel__control:hover {
  opacity: 1;
}
body .carousel__control--backward {
  left: 30px;
  transform: rotate(-135deg);
}
body .carousel__control--forward {
  right: 30px;
  transform: rotate(45deg);
}
body .carousel__indicators {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
}
body .carousel__indicator {
  width: 8px;
  height: 8px;
  margin: 0 2.5px 0 2.5px;
  display: inline-block;
  border-radius: 100%;
  cursor: pointer;
  opacity: 0.35;
  z-index: 2;
}
body .carousel__indicator:hover {
  opacity: 0.75;
}
body .carousel__slide {
  height: 100%;
  position: absolute;
  overflow-y: auto;
  opacity: 0;
}
body .carousel-container {
  display: inline-block;
}
body .my-carousel {
  margin: 10px;
}
body .carousel__slide {
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
body .carousel--thumb .carousel__indicator {
  width: 30px;
  height: 30px;
}
body .carousel__indicator {
  background-color: #fafafa;
}
body .carousel__slide:nth-of-type(1),
body .carousel--thumb .carousel__indicators .carousel__indicator:nth-of-type(1) {
  background-image: url("/images/funkhaus-1.png");
}
body .carousel__slide:nth-of-type(2),
body .carousel--thumb .carousel__indicators .carousel__indicator:nth-of-type(2) {
  background-image: url("/images/funkhaus-2.png");
}
body .carousel__slide:nth-of-type(3),
body .carousel--thumb .carousel__indicators .carousel__indicator:nth-of-type(3) {
  background-image: url("/images/funkhaus-3.png");
}
body .carousel__slide:nth-of-type(4),
body .carousel--thumb .carousel__indicators .carousel__indicator:nth-of-type(4) {
  background-image: url("/images/funkhaus-4.png");
}
body .carousel__slide:nth-of-type(5),
body .carousel--thumb .carousel__indicators .carousel__indicator:nth-of-type(5) {
  background-image: url("/images/funkhaus-5.png");
}
* {
  box-sizing: border-box;
}
body {
  font: normal 18px var(--body);
  margin: 0;
  padding: 100px 30px 30px 30px;
  background-color: var(--background);
}
@media (max-width: 700px) {
  body {
    padding: 0;
  }
}
a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #fff;
  font-style: italic;
  background-color: #000;
}
h1 {
  font: normal 28px var(--subheader);
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0px 0px 1px #000, 1px 3px 0px var(--background), 3px 7px 0px rgba(0,0,0,0.08);
  letter-spacing: 6px;
}
@media (min-width: 1070px) {
  h1 {
    font: normal 32px var(--subheader);
  }
}
h2 {
  font: 22px var(--subheader);
  text-transform: uppercase;
  letter-spacing: 1px;
}
h3 {
  font: normal 28px/40px var(--geo);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 5px;
}
@media (max-width: 700px) {
  h3 {
    font: normal 17px/32px var(--geo);
  }
}
hr {
  width: 70px;
  margin: 30px auto;
  border: 0;
  border-top: 2px solid #000;
}
@media (min-width: 1070px) {
  hr {
    margin: 40px 0;
  }
}
.twitter {
  font: 14px var(--body);
  text-transform: uppercase;
  letter-spacing: 5px;
  position: fixed;
  top: 120px;
  left: 0;
  transform: rotate(-90deg);
}
@media (max-width: 700px) {
  .twitter {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 50px;
  }
}
.twitter a {
  color: #000;
}
.twitter a:hover {
  color: #fff;
  background-color: #000;
}
.top {
  position: fixed;
  right: 50px;
  bottom: 50px;
  transition: transform 0.2s ease;
  z-index: 100;
}
.top:hover {
  transform: translateY(-5px);
}
@media (max-width: 700px) {
  .top {
    display: none;
  }
}
.top a {
  background-color: transparent !important;
}
.button {
  color: var(--background);
  width: 200px;
  font: 600 15px var(--geo);
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  letter-spacing: 2px;
  padding: 15px;
  margin: 40px auto 0 auto;
  display: block;
  background-color: #000;
  border: 3px solid #000;
}
.divider {
  width: 2px;
  height: 150px;
  margin: 80px auto;
  background-color: #000;
}
@media (max-width: 700px) {
  .divider {
    height: 100px;
    margin: 50px auto;
  }
}
.spin {
  margin-left: 75%;
  margin-top: -100px;
  transition: transform 0.5s ease;
}
.spin:hover {
  transform: rotate(180deg);
}
@media (max-width: 700px) {
  .spin {
    display: none;
  }
}
.venue,
.map-preview {
  width: 602px;
  text-align: center;
  border: 1px solid #000;
}
@media (min-width: 701px) and (max-width: 1070px) {
  .venue,
  .map-preview {
    margin: 0 auto;
  }
}
@media (max-width: 700px) {
  .venue,
  .map-preview {
    width: 350px;
    margin: 40px auto 0 auto;
  }
}
.profile {
  flex-basis: 30%;
  margin: 20px 0;
  position: relative;
}
@media (min-width: 701px) and (max-width: 1070px) {
  .profile {
    flex-basis: 50%;
  }
}
@media (max-width: 700px) {
  .profile {
    flex-basis: 100%;
  }
}
.profile:hover .b2 {
  display: none;
}
.profile > div {
  display: inline-block;
  vertical-align: middle;
}
.profile > div:first-of-type {
  width: 100px;
  height: 100px;
  position: relative;
  border: 4px solid #000;
}
.profile > div:first-of-type div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.profile > div:first-of-type div.b2 img {
  width: 100%;
}
.profile .info {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 120px;
}
.profile .info span:first-of-type {
  font: 600 18px/20px var(--geo);
  padding-bottom: 5px;
  display: block;
}
.profile .info .projects {
  font: italic 16px var(--body);
  display: block;
}
section {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
section.intro {
  max-width: 1200px;
  padding-bottom: 20px;
}
section.intro .menu {
  text-transform: uppercase;
  letter-spacing: 2px;
  font: 12px/26px var(--body);
  position: absolute;
  top: 50px;
  right: 20px;
}
@media (max-width: 700px) {
  section.intro .menu {
    display: none;
  }
}
section.intro .menu ul {
  width: 175px;
  list-style: none;
  margin: 0;
  padding: 4px;
}
section.intro .title {
  font: normal 60px/60px var(--header);
  text-transform: uppercase;
  letter-spacing: 4px;
  padding: 50px 0;
  margin-left: 150px;
  text-shadow: 4px 3px 0px var(--background), 9px 8px 0px rgba(0,0,0,0.08);
}
@media (max-width: 700px) {
  section.intro .title {
    margin-left: 50px;
    margin-top: 60px;
    padding: 50px 0 20px 0;
  }
}
@media (min-width: 1070px) {
  section.intro .title {
    margin-left: 100px;
    font: normal 80px/80px var(--header);
  }
}
section.intro .title img {
  width: 45px;
}
@media (min-width: 1070px) {
  section.intro .title img {
    width: 60px;
  }
}
section.intro .title span:nth-of-type(2) {
  display: block;
  margin-left: 40px;
}
section.intro .date {
  text-align: center;
  font-style: italic;
}
section.intro .date:hover img {
  transform: rotate(45deg);
}
@media (max-width: 700px) {
  section.intro .date {
    margin: 30px 0;
  }
}
@media (min-width: 701px) and (max-width: 1070px) {
  section.intro .date {
    margin-bottom: 50px;
    position: relative;
    left: 0;
    bottom: 0;
  }
}
@media (min-width: 1070px) {
  section.intro .date {
    position: absolute;
    left: 180px;
    bottom: 200px;
  }
}
section.intro .date img {
  transition: transform 0.2s ease;
}
section.intro .date span {
  display: block;
  padding-bottom: 5px;
}
@media (min-width: 1070px) {
  section.intro .venue {
    margin-left: 45%;
  }
}
@media (min-width: 701px) and (max-width: 1070px) {
  section.intro .venue {
    width: 602px;
    margin: 0 auto;
  }
}
section.intro .venue span {
  font: 14px var(--geo);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px;
  display: block;
  border-top: 1px solid #000;
}
section.map {
  margin-top: 100px;
}
section.map .venue-description {
  max-width: 520px;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 1070px) {
  section.map .venue-description {
    width: 310px;
    text-align: left;
    margin: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
  }
}
@media (max-width: 700px) {
  section.map .venue-description {
    padding: 0 40px;
  }
}
section.map .venue-description p:last-of-type {
  font: 15px/23px var(--body);
}
section.map .venue-description h1 {
  font-size: 22px;
  text-align: center;
  margin: 70px 0 40px 0;
}
@media (min-width: 1070px) {
  section.map .venue-description h1 {
    text-align: left;
    margin: 0;
  }
}
section.map .map-preview img {
  width: 95%;
  margin: 2.5% 0;
  -webkit-filter: invert(0.8) grayscale(0.9);
  filter: invert(0.8) grayscale(0.9);
}
section.map .map-preview > div {
  font: 14px var(--geo);
  letter-spacing: 2px;
  text-align: left;
  padding: 10px 15px;
  border-top: 1px solid #000;
}
section.map .map-preview > div a {
  font-family: var(--subheader);
  text-transform: uppercase;
  display: block;
  float: right;
}
section.subheader {
  padding-top: 50px;
  text-align: center;
}
@media (min-width: 1070px) {
  section.subheader {
    padding: 100px 0 100px 0;
  }
}
@media (min-width: 701px) and (max-width: 1070px) {
  section.subheader h3 {
    font: normal 24px/36px var(--geo);
  }
}
section.subheader a {
  display: inline-block;
  margin-top: 30px;
}
section.subheader p {
  width: 100%;
  max-width: 480px;
  padding: 0 50px;
  text-align: center;
  margin: 30px auto;
}
@media (min-width: 1070px) {
  section.subheader p {
    padding: 0;
  }
}
section.speakers {
  padding-top: 50px;
}
@media (min-width: 1070px) {
  section.speakers {
    padding-top: 100px;
  }
}
section.speakers .grid {
  margin-top: 100px;
  margin-left: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 700px) {
  section.speakers .grid {
    margin-top: 50px;
    margin-left: 30px;
  }
}
@media (min-width: 701px) and (max-width: 1070px) {
  section.speakers .grid {
    max-width: 700px;
    padding-left: 50px;
    margin: 60px auto;
  }
}
section.coordinators {
  padding-top: 50px;
}
@media (min-width: 701px) and (max-width: 1070px) {
  section.coordinators {
    padding-left: 65px;
  }
}
@media (min-width: 1070px) {
  section.coordinators {
    padding-top: 150px;
  }
}
section.coordinators .grid {
  padding: 10px 30px 0 30px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 700px) {
  section.coordinators .grid {
    display: block;
  }
}
@media (min-width: 701px) and (max-width: 1070px) {
  section.coordinators .grid {
    max-width: 700px;
    margin-left: 100px;
  }
}
@media (min-width: 1070px) {
  section.coordinators .grid {
    width: 750px;
    padding-left: 90px;
    margin: 100px auto 0 auto;
  }
}
section.coordinators .profile {
  flex-basis: 50%;
  margin: 30px 0;
  position: relative;
}
@media (min-width: 1070px) {
  section.coordinators .profile {
    margin: 20px 0;
  }
}
section.details {
  padding: 30px;
  position: relative;
}
@media (min-width: 1070px) {
  section.details {
    padding: 150px 0 0 0;
  }
}
section.details a {
  width: 250px;
  text-align: center;
  margin: 60px auto 0 auto;
  display: block;
}
section.details img {
  margin: 100px auto 0 auto;
  display: block;
  transition: transform 1s ease;
}
section.details img:hover {
  transform: scale(1.1) rotate(20deg);
}
@media (min-width: 1070px) {
  section.details img {
    margin: 0;
    position: absolute;
    top: 100%;
    left: -10%;
  }
}
section.details h1 {
  flex-basis: 100%;
}
section.details h3 {
  width: 250px;
  font: bold 15px var(--geo);
  padding: 0 20px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -26px;
  background-color: var(--background);
}
section.details div {
  max-width: 600px;
  padding: 10px 20px;
  margin: 60px auto 0 auto;
  position: relative;
  border: 1px solid #000;
}
@media (min-width: 1070px) {
  section.details div {
    margin: 100px auto 0 auto;
  }
}
section.schedule {
  padding: 30px;
  text-align: center;
}
@media (min-width: 1070px) {
  section.schedule {
    padding: 150px 0 0 0;
  }
}
section.schedule h1 {
  margin-bottom: 50px;
}
section.schedule label {
  font: 16px var(--subheader);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 4px;
  margin: 0 15px;
  display: inline-block;
}
section.schedule .schedule-table {
  max-width: 700px;
  margin: 0 auto;
}
section.schedule .schedule-table label,
section.schedule .schedule-table input {
  user-select: none;
}
section.schedule .schedule-table .schedule-day {
  display: none;
  text-align: left;
  margin-top: 50px;
}
section.schedule .schedule-table input {
  display: none;
}
section.schedule .schedule-table input:checked + label {
  border-bottom: 2px solid #000;
}
section.schedule .schedule-table input#day1:checked ~ .schedule-day.one {
  display: block;
}
section.schedule .schedule-table input#day2:checked ~ .schedule-day.two {
  display: block;
}
section.schedule .schedule-table h4 {
  font: bold 15px var(--geo);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 15px;
}
section.schedule .schedule-table h5 {
  font: bold 19px var(--geo);
  margin: 0;
  text-decoration: underline;
}
section.schedule .schedule-table .duration {
  font-style: italic;
  display: block;
  margin-top: 25px;
  opacity: 0.5;
}
section.schedule .schedule-table .spacer {
  border-top: 1px solid #000;
  display: flex;
}
section.schedule .schedule-table .time {
  flex-basis: 22%;
  text-align: right;
  padding-right: 55px;
  margin: 10px 0;
}
@media (max-width: 700px) {
  section.schedule .schedule-table .time {
    padding-right: 25px;
  }
}
section.schedule .schedule-table .event {
  flex-basis: 80%;
  padding-left: 50px;
  padding-bottom: 30px;
  position: relative;
  border-left: 1px solid #000;
}
section.schedule .schedule-table .row {
  display: flex;
}
section.schedule .schedule-table .row:last-of-type {
  border-bottom: 1px solid #000;
}
section.schedule .schedule-table .row p {
  margin: 10px 0;
}
section.schedule .schedule-table .row .event.highlight:before {
  width: 14px;
  height: 14px;
  border: 3px solid #000;
  background-color: var(--background);
  left: -10px;
}
section.schedule .schedule-table .row .event:before {
  content: "";
  width: 11px;
  height: 11px;
  display: block;
  position: absolute;
  top: 15px;
  left: -6px;
  background-color: #000;
  border-radius: 50%;
}
section.sponsors {
  padding-top: 100px;
}
@media (min-width: 1070px) {
  section.sponsors {
    padding: 150px 0 0 0;
  }
}
section.sponsors > div {
  text-align: center;
  margin: 50px auto 0 auto;
}
@media (min-width: 1070px) {
  section.sponsors > div {
    margin: 100px auto 0 auto;
  }
}
section.sponsors > div > div {
  margin-top: 50px;
}
@media (max-width: 700px) {
  section.sponsors > div > div {
    margin: 10px;
  }
}
section.sponsors img:not(.wireline) {
  height: 90px;
  display: inline-block;
  margin: 15px;
}
@media (min-width: 1070px) {
  section.sponsors img:not(.wireline) {
    height: 100px;
    margin: 0 15px;
  }
}
section.sponsors img.wireline {
  height: 150px;
  display: inline-block;
}
section.sponsors a,
section.sponsors a:hover {
  background-color: transparent;
}
section.conduct {
  padding-top: 20px;
}
@media (min-width: 1070px) {
  section.conduct {
    padding: 100px 0 0 0;
  }
}
section.conduct div {
  padding: 30px;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 1070px) {
  section.conduct div {
    margin: 50px auto 0 auto;
    padding: 0;
  }
}
section.conduct div img {
  display: block;
}
section.conduct div h2 {
  margin: 20px 20px 10px 20px;
}
section.conduct div p {
  margin: 0 20px;
}
footer {
  text-align: center;
  margin: 50px 0 80px 0;
}
@media (min-width: 1070px) {
  footer {
    margin: 150px 0 80px 0;
  }
}
