@font-face {
  font-family: "Hellix-Bold";
  src: url("../css/fonts/Hellix-Bold.woff2") format("woff2"), url("../css/fonts/Hellix-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

p,
a,
span,
li,
h1 {
  color: #000;
  text-decoration: none;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.hidden {
  visibility: hidden;
}

#navbar {
  width: 100vw;
  position: fixed;
  z-index: 16;
  top: 0;
  padding: 15px 0;
}
#navbar .content {
  width: 97%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#navbar .content.mobile {
  display: none;
}
#navbar .content .redes {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-end;
}
#navbar .content a {
  width: fit-content;
  height: fit-content;
}
#navbar .content a.title img {
  width: 180px;
}
#navbar .content a img {
  width: 17px;
  object-fit: contain;
  transition: all 0.2s;
}
#navbar .content a img:hover {
  opacity: 0.5;
}

main .content {
  opacity: 0;
}
main .content.visible {
  opacity: 1;
}

#home {
  height: 100vh;
  width: 100vw;
  position: relative;
}
#home .bg-video {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
#home .bg-video.mobile {
  display: none;
}
#home main {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
#home main .content {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
#home main .content .img-menu {
  display: none;
}
#home main .content #title {
  width: 55%;
  opacity: 0;
}
#home main .content #title img {
  width: 100%;
}
#home main .content #title.visible {
  opacity: 1;
}

#tour {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#tour .bg-video {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
#tour .bg-video.mobile {
  display: none;
}
#tour main {
  width: 100%;
  height: fit-content;
  z-index: 1;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}
#tour main .content {
  width: 60%;
  height: 100%;
  margin: 0 auto;
  padding: 10vh 0;
  box-sizing: border-box;
  overflow: hidden;
}
#tour main .content h1 {
  text-align: center;
  color: white;
  font-style: italic;
  font-size: 0.8rem;
  font-weight: 600;
}
#tour main .content .dates {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 40px;
  overflow: scroll;
  max-height: 65vh;
  box-sizing: border-box;
}
#tour main .content .dates::-webkit-scrollbar {
  display: none;
}
#tour main .content .dates .show {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  transition: all 0.2s;
  align-items: center;
  padding: 20px;
}
#tour main .content .dates .show:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#tour main .content .dates .show .info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#tour main .content .dates .show .info span {
  color: white;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
}
#tour main .content .dates .show .btns {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
#tour main .content .dates .show .btns .btn {
  border: solid 2px white;
  padding: 6px;
  color: white;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  font-size: 0.8rem;
  width: 100px;
  transition: all 0.2s;
}
#tour main .content .dates .show .btns .btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

#footer {
  position: fixed;
  z-index: 16;
  bottom: 0;
  padding: 15px 0;
  box-sizing: border-box;
  width: 100%;
}
#footer .content {
  width: 97%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#footer .content.mobile {
  display: none;
}
#footer .content .btn-menu {
  position: relative;
  height: 100px;
  width: 80px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer .content .btn-menu:hover {
  opacity: 0.6;
}
#footer .content .btn-menu img {
  width: 80px;
  position: absolute;
}
#footer .content .btn-menu span {
  color: white;
  position: relative;
  z-index: 17;
  font-weight: 600;
  font-size: 0.7rem;
  text-align: center;
  margin-top: 10px;
  text-transform: uppercase;
}
#footer .content .info {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
#footer .content .info a {
  height: fit-content;
  font-size: 0.7rem;
  line-height: 0.7rem;
}
#footer .content .info span {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.7rem;
  line-height: 0.7rem;
}

#menu {
  position: fixed;
  display: none;
  width: fit-content;
  height: fit-content;
  z-index: 15;
  top: 0;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
}
#menu .content {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../assets/imgs/house.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 35vw;
}
#menu .content .links {
  position: relative;
  z-index: 20;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 10vw;
}
#menu .content .links a {
  position: relative;
  width: fit-content;
}
#menu .content .links a span {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}
#menu .content .links a span:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
#menu .content .links a.music {
  left: 30%;
}
#menu .content .links a.videos {
  left: 28%;
}
#menu .content .links a.stems {
  left: 45%;
}
#menu .content .links a.shop {
  left: 60%;
}
#menu .content .links a.tour {
  left: 61%;
}

@media (max-width: 1000px) {
  #navbar .content {
    display: none;
  }
  #navbar .content.mobile {
    display: flex;
    width: 95%;
    align-items: flex-start;
    opacity: 0;
  }
  #navbar .content.mobile.visible {
    opacity: 1;
  }
  #navbar .content.mobile .btn-menu {
    margin-top: 10px;
    width: 30px;
  }
  #navbar .content.mobile .btn-menu.open {
    content: url("../assets/imgs/close.svg");
  }
  #home .bg-video {
    display: none;
  }
  #home .bg-video.mobile {
    display: block;
  }
  #home main .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  #home main .content #title {
    width: 90%;
  }
  #home main .content .img-menu {
    display: block;
    width: 30%;
  }
  #tour .bg-video {
    display: none;
  }
  #tour .bg-video.mobile {
    display: block;
  }
  #tour main .content {
    padding: 13vh 0;
    width: 90%;
  }
  #tour main .content .dates {
    gap: 25px;
  }
  #tour main .content .dates .show {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  #tour main .content .dates .show .info {
    align-items: center;
  }
  #tour main .content .dates .show .info span {
    text-align: center;
  }
  #tour main .content .dates .show .btns {
    flex-direction: column;
    align-items: center;
  }
  #footer .content {
    display: none;
  }
  #footer .content.mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  #footer .content.mobile .redes {
    width: 90%;
    justify-content: space-between;
    display: flex;
    align-items: center;
  }
  #footer .content.mobile .redes a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #footer .content.mobile .redes a img {
    width: 15px;
  }
  #footer .content.mobile .info {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  #footer .content.mobile .info span {
    font-size: 0.6rem;
  }
  #menu .content {
    width: 90%;
  }
  #menu .content .links {
    padding-top: 11vh;
    gap: 15px;
  }
  #menu .content .links a span {
    font-size: 0.7rem;
  }
  #menu .content .links a.music {
    left: 33%;
  }
  #menu .content .links a.videos {
    left: 33%;
  }
}

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