body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 11pt;
  color: #000;
  background: #fff;
}

p {
  font-size: 11pt;
  line-height: 20pt;
  font-weight: 300;
  margin: 10px 0 20px;
}

h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 54px;
  margin: 10px 0 20px;
  text-transform: uppercase;
}

.h7 {
  font-size: 20px;
  line-height: 1.5;
  margin: 10px 0;
  font-weight: 300;
}

a {
  color: #d7874d;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover,
a:focus {
  color: #e7bb7d;
  text-decoration-thickness: 2px;
  outline: none;
}

::selection {
  background-color: #ffd396;
  color: #fff;
}

b {
  color: #d7874d;
  font-weight: normal;
}

.overlay + .container b {
  color: #e7bb7d;
}

.light {
  color: #fff;
}

.dark {
  color: #000;
}

.section {
  position: relative;
  min-height: 350px;
  padding: 50px 0;
  background-color: #fff;
  overflow: hidden;
}

.section .h7 {
  text-align: left;
  hyphens: auto;
}

.section h3,
#artists .speaker-item,
#footer .container p {
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: #2e3946;
  opacity: 0.7;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
}

#hero .container {
  position: static;
}

.icon-wrap {
  font-size: 46px;
  line-height: 46px;
  margin-bottom: -10px;
}

.article-big p {
  margin-bottom: 20px;
}

.hiding {
  opacity: 0;
}

.transition {
  transition: opacity 0.5s;
}

.transition.fading {
  opacity: 0;
}

#hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background-color: #000;
}

#hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 0;
  opacity: 0.8;
}

#hero .hero-content {
  color: #fff;
  left: 0;
  right: 0;
  margin: 30px 2vw 0 2vw;
  z-index: 1;
  text-align: center;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  position: relative; /* this is a must have, otherwise the colours are half transparent */
}

.top-message {
  border-top: 1px solid #ffffff66;
  border-left: 1px solid #ffffff66;
  backdrop-filter: blur(2px);
  background-color: #fff3;
  border-radius: 20px;
  padding: 0.2em 1em;
  width: fit-content;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 14px;
  font-weight: 300;
}

/*@keyframes logoMove {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}*/

#hero .hero-content img {
  filter: drop-shadow(0 0 1em #00000033);
  /*  animation-name: logoMove;
  animation-duration: 10s; */
  height: auto;
  width: 100%;
  max-width: 480px;
  max-height: 44vh;
  display: block;
  margin: 0 auto 30px auto;
  z-index: 20 !important;
}

#hero .hero-normal {
  display: inline-block;
  margin: 30px 0 40px 0;
  padding: 15px;
  max-width: 600px;
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  text-shadow: none;
  font-size: 18px;
}

/* Glass Card Container from https://snipzy.dev/snippets/liquid-glass-card.html */
.glass-card {
  --bg-color: rgba(0, 0, 0, 0.25);
  --highlight: rgba(255, 255, 255, 0.15);
  --text: #ffffff;

  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.glass-filter,
.glass-overlay,
.glass-specular {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.glass-filter {
  z-index: 1;
  backdrop-filter: blur(4px);
  filter: url(#glass-distortion) saturate(120%) brightness(1.15);
}

.glass-distortion-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 80%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 80%
    );
  background-size: 300% 300%;
  animation: floatDistort 10s infinite ease-in-out;
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
}

@keyframes floatDistort {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.glass-overlay {
  z-index: 2;
  background: var(--bg-color);
}

.glass-specular {
  z-index: 3;
  box-shadow: inset 1px 1px 1px var(--highlight);
}

.glass-content {
  position: relative;
  z-index: 4;
  padding: 0;
  color: var(--text);
}

.glass-content h3 {
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: 600;
}

.glass-content p {
  margin: 0;
  opacity: 0.8;
}

#hero .hero-normal p {
  display: block;
  color: #fff;
  padding: 2px 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-size: 1em;
}

#hero .hero-normal a {
  color: inherit;
}

#hero .hero-normal b {
  font-weight: 500;
  color: inherit;
}

.button {
  --bg-color: rgba(255, 255, 255, 0.25);
  --highlight: rgba(255, 255, 255, 0.75);
  --text: #ffffff;
  display: inline-block;
  padding: 14px 27px;
  margin: 20px 0 0 0;
  cursor: pointer;
  font-weight: 500;
}
.button a {
  text-decoration: none;
}
.button {
  transition: transform 0.1s ease-in-out;
}

.button:hover {
  transform: scale(1.1);
}

#about ul {
  padding-left: 0;
}

@media (min-width: 767px) {
  #about ul {
    padding-left: 3em;
  }
}

#about ul li {
  list-style-type: none;
}

#artists {
  background-image: url("../img/noise.png");
  background-repeat: repeat;
  background-position: center;
  background-size: 100px 100px;
  background: #e6d3ae;
  background: linear-gradient(
    180deg,
    rgba(230, 211, 174, 1) 0%,
    rgba(148, 162, 152, 1) 100%
  );
  border-top: 2px solid #ffffff;
}

#artists .row {
  margin-bottom: 30px;
}

#artists .speaker-item {
  padding-bottom: 50px;
}

#artists .img-wrapper img,
#artists .coming-soon {
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-top: 1px solid #ffffff66;
  border-left: 1px solid #ffffff66;
  transition: 0.2s all ease-in-out;
}

#artists .coming-soon {
  width: 100%;
  aspect-ratio: 1 / 1;
}

#artists .img-wrapper img:hover {
  filter: saturate(1.3);
  transform: scale(1.05);
}

#artists .name {
  font-size: 20px;
  margin: 10px 0 2px;
  font-weight: 300;
}

#artists .sub {
  font-size: 18px;
  margin: 0 0 15px;
  color: #d7874d;
}

#hotel {
  background: url("../img/parador.jpg") center top / cover no-repeat fixed;
}

#hotel p {
  padding: 5px;
}

#hotel .overlay,
#organizers .overlay {
  background: rgba(46, 57, 70, 0.8);
}

#application ul {
  margin-left: 1.2em;
}

#arrow {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: normal;
}

#footer {
  padding: 30px 0;
}

#footer .container p {
  margin: 0;
}

@media (min-width: 1300px) {
  #organizers {
    background-position: center -5vw;
  }
}

@media (max-width: 767px) {
  h3 {
    font-size: 40px;
  }

  .h7 {
    font-size: 20px;
  }

  #hero {
    min-height: 520px;
  }

  #hero .hero-normal {
    font-size: 18px;
    padding: 12px;
  }

  #hotel,
  #organizers {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  #hero .hero-normal {
    font-size: 15px;
    margin: 10px 0 20px;
  }

  #artists .name {
    font-size: 22px;
  }

  #artists .sub {
    font-size: 16px;
  }
}
