@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&display=swap");
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;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, picture {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

*:focus {
  outline: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
}

@font-face {
  font-family: "AirbnbCereal_W_Bd";
  src: url("../fonts/AirbnbCereal_W_Bd.otf") format("otf");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "AirbnbCereal_W_Md";
  src: url("../fonts/AirbnbCereal_W_Md.otf") format("otf");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
.flash, .hero__title {
  animation: 0.5s flash 0.8s ease-in-out both;
}

@keyframes flash {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.flash_02, .hero__subtitle {
  animation: 0.4s flash_02 1.5s ease-in-out both;
}

@keyframes flash_02 {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.flash_03, .hero__header {
  animation: 0.4s flash_03 2.25s ease-in-out both;
}

@keyframes flash_03 {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.flash_04, .hero__img {
  animation: 0.2s flash_04 1s ease-in-out both;
}

@keyframes flash_04 {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }
}
.footer {
  padding: 32px 0;
  display: flex;
  flex-flow: column-reverse;
  justify-content: center;
  text-align: center;
  width: 90%;
  margin: auto;
  max-width: 1280px;
}

.footer__box {
  display: flex;
  justify-content: flex-start;
  text-align: left;
}

.footer__credits {
  font-size: 12px;
  padding-top: 24px;
  opacity: 0.5;
}

.footer__list {
  text-align: left;
  flex: 0 1 50%;
}
.footer__list li.head {
  font-family: "Overpass", sans-serif;
  padding-bottom: 8px;
  color: #191919;
}
.footer__list li {
  margin: 8px 0 16px 0;
}
.footer__list li a {
  color: #494949;
  text-decoration: none;
  transition: 0.2s;
  padding: 8px 0;
}
.footer__list li a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media only screen and (min-width: 768px) {
  .footer {
    flex-flow: row-reverse nowrap;
    justify-content: space-between;
  }
  .footer__list {
    min-width: 250px;
  }
  .footer__credits {
    padding-top: 0;
  }
}
.hero {
  background: #151515;
  color: white;
  height: 100vh;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #F7931A;
}

.hero__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  bottom: 0;
  overflow: hidden;
}
.hero__img img {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: contain;
  object-fit: cover;
}

.hero__meta {
  font-size: 14px;
  font-weight: bold;
  margin-top: 24px;
}

.hero__content {
  width: 90%;
  margin: auto;
  padding: 48px 0;
  position: relative;
  z-index: 10;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
}

.hero__message {
  padding: 10vh 0;
}

.hero__header {
  align-items: center;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.hero__logo img {
  max-width: 200px;
  height: auto;
}

.hero__subtitle {
  font-family: "Overpass", sans-serif;
  font-weight: bold;
  opacity: 0.5;
  font-size: 15px;
  margin-bottom: 24px;
}
.hero__subtitle span {
  display: block;
  margin-top: 16px;
}

.hero__title {
  font-family: "Overpass", sans-serif;
  font-size: 43px;
  max-width: 840px;
  line-height: 52px;
}

.hero__btns {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  border-top: 1px solid #383838;
  padding-top: 30px;
  margin-top: 30px;
}

.hero__link {
  display: inline-flex;
  padding: 12px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  align-items: center;
  margin-right: 16px;
}
.hero__link svg {
  width: 20px;
  height: 20px;
  border: 1px solid;
  padding: 12px;
  margin-right: 12px;
  border-radius: 100%;
}

.hero__link--arrow {
  margin-right: 32px;
}

.hero__link--c {
  display: none;
  padding: 16px 32px;
  border: 1px solid white;
  border-radius: 32px;
}

.hero__link--bitcoin {
  background: #F7931A;
  border-color: #F7931A;
}

.hero__subtitle span {
  padding-right: 24px;
}

@media only screen and (min-width: 768px) {
  .hero__message {
    padding: 15vh 0;
  }
  .hero__title {
    font-size: 50px;
    line-height: 60px;
  }
  .hero__link--c {
    display: inline-flex;
  }
  .hero__header {
    flex-flow: row nowrap;
  }
  .hero__meta {
    margin-top: 0;
  }
  .hero__subtitle {
    font-size: 18px;
  }
  .hero__subtitle span {
    display: inline-block;
  }
}
@media only screen and (min-width: 1024px) {
  .hero__logo img {
    max-width: 250px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero__logo img {
    max-width: 325px;
  }
  .hero__title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (min-width: 1440px) {
  .hero__logo img {
    max-width: 400px;
  }
}
.sponsor {
  width: 90%;
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.sponsor .sponsor__cat {
  display: none;
}
.sponsor .sponsor__cat:first-child {
  display: block;
  flex: 0 1 100%;
  text-align: center;
  opacity: 0.6;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 0;
  letter-spacing: 1px;
  margin-top: 54px;
}

.sponsor__card {
  flex: 0 1 100px;
  margin: 24px;
  display: inline-flex;
  align-items: center;
  transition: 0.2s;
  order: 9;
}

.sponsor__title {
  color: black;
  text-align: center;
  font-size: 11px;
  padding-top: 17px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 16px;
}

.sponsor__link {
  text-decoration: none;
  display: block;
}

.sponsor__img {
  width: 100%;
  height: auto;
  transition: 0.2s;
}
.sponsor__img:hover {
  opacity: 0.8;
  transform: scale(105%);
}

.Associate,
.Premier,
.Platinum {
  flex: 0 1 200px !important;
  order: 1;
}

@media only screen and (min-width: 1024px) {
  .sponsor__card {
    flex: 0 1 100px;
    margin: 48px;
  }
  .Associate,
  .Premier,
  .Platinum {
    flex: 0 1 240px !important;
  }
}
.ponentes {
  display: flex;
  flex-flow: row wrap;
  width: 90%;
  margin: 0 auto;
  padding: 5vh 0 10vh 0;
}
.ponentes img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  margin-top: -36px;
  margin-bottom: 12px;
  transition: 0.4s;
}

.ponentes__card {
  flex: 0 1 50%;
  padding: 24px;
  background: white;
  border: 1px solid #f0f0f0;
  box-sizing: border-box;
  transition: 0.4s;
  position: relative;
}
.ponentes__card:hover {
  background: #f0f0f0;
}
.ponentes__card:hover img {
  transform: translateY(-8px);
}

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

.ponentes__link {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.ponentes__title h5 {
  font-family: "Overpass", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}
.ponentes__title p {
  opacity: 0.5;
  font-size: 14px;
  line-height: 22px;
}

@media only screen and (min-width: 768px) {
  .ponentes {
    flex-flow: row wrap;
    overflow-x: auto;
    min-width: auto;
  }
  .ponentes__card {
    min-width: auto;
    flex: 0 1 33.3333333333%;
  }
  .ponentes__title h5 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .ponentes__card {
    flex: 0 1 25%;
  }
  .ponentes__title h5 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1280px) {
  .ponentes__card {
    flex: 0 1 20%;
  }
}
@media only screen and (min-width: 1440px) {
  .ponentes__card {
    flex: 0 1 16.6666666667%;
  }
}
.pricing {
  width: 90%;
  margin: auto;
  padding: 48px 0;
  font-family: "Overpass", sans-serif;
  display: flex;
  flex-flow: row wrap;
}

.pricing__box {
  flex: 0 1 100%;
  transition: 0.6s;
}

.pricing__card {
  padding: 32px 0 24px 0;
  border: 1px solid #f0f0f0;
  text-align: center;
  position: relative;
}

.pricing__euros {
  font-family: "Overpass", sans-serif;
  font-size: 62px;
  font-weight: 900;
  margin: 24px 0;
}
.pricing__euros span {
  font-size: 28px;
}

.pricing__name {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

.pricing__day {
  opacity: 0.5;
}

.pricing__list {
  padding: 24px 0;
}
.pricing__list li {
  display: flex;
  padding-bottom: 23px;
  line-height: 26px;
  padding-right: 28px;
}
.pricing__list li svg {
  margin-right: 12px;
  width: 20px;
  height: 20px;
  min-width: 20px;
}

@media only screen and (min-width: 768px) {
  .pricing__card {
    margin-right: 24px;
  }
  .pricing__box {
    flex: 0 1 50%;
  }
}
@media only screen and (min-width: 1280px) {
  .pricing {
    flex-flow: row nowrap;
  }
  .pricing__box {
    flex: 0 1 25%;
  }
}
.heading {
  align-items: center;
  width: 90%;
  margin: auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding: 48px 0 0 0;
  font-family: "Overpass", sans-serif;
}

.heading__title {
  font-size: 24px;
  font-weight: bold;
}
.heading__title span {
  display: block;
  font-size: 18px;
  padding-top: 12px;
  opacity: 0.5;
}

.heading__btns {
  display: flex;
  flex-flow: row nowrap;
}
.heading__btns a {
  text-decoration: none;
  color: black;
  display: inline-block;
  padding: 12px 16px 10px 16px;
  border-radius: 24px;
  border: 1px solid black;
  transition: 0.2s;
  margin-right: 12px;
  font-size: 15px;
}
.heading__btns a:hover {
  background: black;
  color: white;
}

.heading--bottom {
  margin-bottom: 54px;
}

.heading--entradas {
  flex-flow: column wrap;
  text-align: center;
}
.heading--entradas .heading__btns {
  margin-top: 16px;
}

.heading__btns--bitcoin {
  background: #F7931A;
  color: white !important;
  border-color: #F7931A !important;
}
.heading__btns--bitcoin:hover {
  background: #F7931A;
  color: white !important;
}

@media only screen and (min-width: 768px) {
  .heading--entradas {
    flex-flow: row nowrap;
    text-align: left;
  }
  .heading--entradas .heading__btns {
    margin-top: 0;
  }
  .heading__title {
    font-size: 32px;
    font-weight: bold;
  }
  .heading__btns a {
    padding: 12px 24px 10px 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .heading__title {
    font-size: 36px;
    font-weight: bold;
  }
  .heading__btns a {
    font-size: 16px;
  }
}
.last {
  font-family: "Overpass", sans-serif;
  background: #191919;
  padding: 124px 0;
  color: white;
}

.last--footer {
  padding-bottom: 20px;
}

.last__bck {
  height: 80vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.last__bck img {
  opacity: 0.1;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: contain;
  object-fit: cover;
  z-index: 5;
}

.last__content {
  margin: 0 auto;
  width: 90%;
  max-width: 720px;
  z-index: 10;
}

.last__title {
  font-weight: bold;
  font-size: 32px;
  padding-bottom: 24px;
}

.last__title--gray {
  opacity: 0.5;
}

.last__paragraph {
  font-size: 20px;
  line-height: 35px;
}

.last__p {
  font-size: 20px;
}

.last__numbers {
  margin: auto;
  max-width: 800px;
  padding: 124px 0 100px 24px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.last__box {
  flex: 0 1 50%;
  margin-bottom: 24px;
}

.last__big {
  font-size: 48px;
  margin-bottom: 5px;
}

.last__small {
  padding-top: 4px;
  font-size: 18px;
  opacity: 0.5;
}

.last__btn {
  padding: 48px 0;
}
.last__btn a {
  text-decoration: none;
  color: white;
  display: inline-block;
  padding: 12px 24px 10px 24px;
  border-radius: 24px;
  border: 1px solid white;
  transition: 0.2s;
}
.last__btn a:hover {
  background: white;
  color: black;
}

.last__video {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
  padding: 124px 0 0 0;
  margin-bottom: 124px;
  max-width: 1280px;
  overflow-y: scroll;
}

.last__card {
  flex: 0 1 calc(50% - 24px);
  padding-right: 24px;
  margin-bottom: 24px;
  transition: 0.2s;
  min-width: 200px;
}

.video__video {
  position: relative;
}
.video__video svg {
  width: 40px;
  height: 40px;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  z-index: 4;
  transition: 0.3s;
}
.video__video a {
  display: block;
  text-decoration: none;
}
.video__video a:hover img {
  opacity: 0.7;
}
.video__video a:hover svg {
  transform: translateY(-24px);
  opacity: 0;
}
.video__video img {
  width: 100%;
  height: auto;
  opacity: 0.4;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  transition: 0.2s;
}

.last__minutes {
  margin: 12px 0;
  font-size: 13px;
  opacity: 0.5;
}

.last__vtitle {
  font-size: 18px;
  line-height: 24px;
}

@media only screen and (min-width: 768px) {
  .last__box {
    flex: 0 1 25%;
  }
  .last__paragraph {
    font-size: 26px;
  }
  .last__card {
    flex: 0 1 calc(25% - 24px);
  }
}
@media only screen and (min-width: 1280px) {
  .last__paragraph {
    font-size: 30px;
    line-height: 44px;
  }
}
.gallery {
  max-width: 1280px;
  width: 90;
  margin: 48px auto;
  display: flex;
  flex-flow: row wrap;
}

.gallery__col {
  flex: 0 1 33.3333333333%;
  text-align: center;
}
.gallery__col img {
  max-width: 90%;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}
.gallery__col:last-child {
  margin-bottom: 0;
}

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

:root {
  --hot-one: #F7931A;
  --hot-two: #F7931A;
  --box-shadow: hsl(0, 0%, 0%);
  --white: hsl(0, 0%, 100%);
}

.container {
  margin: 0 auto;
  width: calc(100vw - 2rem);
  padding: 1rem;
  display: grid;
  place-content: center;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 15.625rem));
  grid-template-rows: auto;
  gap: 1rem;
}

.card {
  position: relative;
  background-color: white;
  color: black;
  filter: drop-shadow(0.125rem 0.125rem 0.125rem #888888);
}

.card > img {
  /* position: absolute; */
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}

.ribbon {
  position: absolute;
  right: -0.313rem;
  top: -0.313rem;
  z-index: 1;
  overflow: hidden;
  width: 4.688rem;
  height: 4.688rem;
  text-align: right;
}

.ribbon span {
  font-size: 0.625rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25rem;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 6.25rem;
  display: block;
  position: absolute;
  top: 1.188rem;
  letter-spacing: 1px;
  right: -1.313rem;
}

.ribbon-hot span {
  color: var(--white);
  background: var(--hot-one);
  background: linear-gradient(var(--hot-one) 0%, var(--hot-two) 100%);
}

.ribbon span::before {
  content: "";
  position: absolute;
  left: 0rem;
  top: 100%;
  z-index: -1;
}

.ribbon span::after {
  content: "";
  position: absolute;
  right: 0rem;
  top: 100%;
  z-index: -1;
}

.ribbon-hot span::before {
  border-left: 0.188rem solid var(--hot-two);
  border-right: 0.188rem solid transparent;
  border-bottom: 0.188rem solid transparent;
  border-top: 0.188rem solid var(--hot-two);
}

.ribbon-hot span::after {
  border-left: 0.188rem solid transparent;
  border-right: 0.188rem solid var(--hot-two);
  border-bottom: 0.188rem solid transparent;
  border-top: 0.188rem solid var(--hot-two);
}

/*# sourceMappingURL=main.css.map */
