@import url("https://fonts.googleapis.com/css2?family=Mozilla+Text:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Meddon&family=Monomakh&family=Mozilla+Headline:wght@200..700&display=swap");
:root {
  color-scheme: light dark;
}

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%;
  vertical-align: baseline;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  scrollbar-width: none;
}

body {
  width: 100%;
  background-color: #f0f0f0;
  font-family: "Mozilla Text", sans-serif;
  color: #212529;
  z-index: 1;
}

.fade {
  opacity: 1;
  visibility: visible;
  animation: fadeIn 1s ease-in forwards; /* Run animation once */
}

@keyframes fadeIn {
  0% {
    opacity: 1;
    visibility: visible;
  }
  40% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
/*.wrapper{
    //overflow: hidden;
    position: absolute;
    top: -2200px;
    left: -500px;

    background-color: #f0f0f0;
    z-index: 998;

    .logo{
        position: fixed;
        top: 220px;
        left: 397px;
        height: 131px;
        width: auto;
        z-index: 999;
    }
    .text{
        position: fixed;
        top: 411px;
        left: 261px;
        font-size: 128px;
        font-weight: 500;
        z-index: 999;
        justify-items: center;

        color: transparent;
        background: linear-gradient(130deg,rgba(153, 0, 48, 1) 0%, rgba(227, 95, 28, 1) 95%);
        background-clip: text;

        .no{
            font-family: "Monomakh", system-ui;
            font-size: 140px;
        }
    }
    .blur{
        font-family: "Meddon", cursive;
        font-size: 2400px;
        color: transparent;
        background: linear-gradient(178deg,rgba(153, 0, 48, 0.2) 0%, rgba(255, 160, 51, 0.2) 100%);
        background-clip: text;
        filter: blur(100px);
    }
}*/
.wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: #f0f0f0;
  font-family: "Mozilla Headline", sans-serif;
  z-index: 998;
}
.wrapper .logo {
  position: absolute;
  top: clamp(100px, 30vh, 280px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(300px, 46vw, 1000px);
  height: auto;
  z-index: 999;
}
.wrapper .text {
  position: absolute;
  top: clamp(260px, 49vh, 500px);
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  text-align: center;
  font-size: clamp(46px, 6vw, 128px);
  font-weight: 500;
  line-height: 1;
  color: transparent;
  background: linear-gradient(130deg, rgb(153, 0, 48) 0%, rgb(227, 95, 28) 95%);
  background-clip: text;
  -webkit-background-clip: text;
}
.wrapper .text .no {
  font-family: "Monomakh", system-ui;
  font-size: clamp(56px, 6.5vw, 140px);
}
.wrapper .text2 {
  visibility: hidden;
}
.wrapper .blur {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family: "Meddon", cursive;
  font-size: clamp(600px, 150vw, 2400px);
  line-height: 1;
  color: transparent;
  background: linear-gradient(178deg, rgba(153, 0, 48, 0.2) 0%, rgba(255, 160, 51, 0.2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: blur(clamp(30px, 6vw, 100px));
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.nav {
  height: 4.4vw;
  width: 100vw;
  display: flex;
  font-size: 1.1vw;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  background-color: rgba(240, 248, 255, 0.8);
  position: sticky;
  top: 0;
  left: 0;
  backdrop-filter: blur(100px);
  z-index: 50;
}
.nav li {
  list-style: none;
}
.nav a {
  text-decoration: none;
  color: #212529;
}
.nav .navelement {
  padding-left: 0.85vw;
  padding-right: 0.85vw;
  visibility: visible;
}
.nav .navelement:hover {
  color: rgb(100, 0, 32);
}
.nav .navlogin {
  padding-left: 13.8vw;
  color: transparent;
  background: linear-gradient(-30deg, rgb(153, 0, 48) 0%, rgb(255, 160, 51) 38%);
  background-clip: text;
  -webkit-background-clip: text;
  visibility: visible;
}
.nav .navlogin:hover {
  color: transparent;
  background: linear-gradient(-30deg, rgb(153, 0, 48) 0%, rgb(255, 160, 51) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.nav .navlogo {
  height: 2vw;
  padding-right: 2vw;
  padding-top: 2.2vw;
}
.nav .navcontainer {
  display: flex;
  align-items: center;
  padding-left: 19.2vw;
}
.nav .burg {
  width: 2vw;
  display: flex;
  align-self: center;
  visibility: hidden;
}

.landcontainer {
  position: relative;
}
.landcontainer .grppic {
  width: 100vw;
}
.landcontainer .land {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
  font-size: 4vw;
  top: 76%;
}
.landcontainer .tagline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.4vw;
  top: 89%;
}
.landcontainer .tagline.m {
  display: none;
}
.landcontainer .caption {
  display: none;
}
.landcontainer .cta {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.4vw;
  color: #f0f0f0;
  top: 103%;
  background-color: rgb(153, 0, 48);
  box-shadow: 0px 0px 1.5vw rgba(102, 0, 48, 0.2);
  padding-left: 1vw;
  padding-right: 1vw;
  padding-top: 0.5vw;
  padding-bottom: 0.5vw;
  border-radius: 0.5vw;
  transition: all 0.1s;
}
.landcontainer .cta:hover {
  background-color: rgb(155, 0, 50);
  box-shadow: 0px 0px 1.5vw rgba(102, 0, 48, 0.25);
  border-radius: 0.7vw;
}
.landcontainer a {
  text-decoration: none;
}

.partner {
  justify-self: center;
  font-size: 1.4vw;
  color: rgb(153, 0, 48);
  padding-top: 12vw;
}

.rotate-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.rotate {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.6vw;
  opacity: 0.5; /* Replaced 50% with standard opacity float 0.5 */
  padding-top: 0.4vw;
  box-sizing: border-box;
  animation: scroll-left 18s linear infinite;
}
.rotate span {
  display: inline-block;
  padding-left: 0.8vw;
  padding-right: 0.8vw;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.estatus {
  background-image: url("/assests/bg_status.webp");
  background-size: cover; /* Scales image to cover entire area */
  background-repeat: no-repeat; /* Prevents tiling */
  background-position: center top; /* Centers the image */
  backdrop-filter: blur(5px);
  width: 100vw;
  height: 62vw;
  box-shadow: 0 0 5vw 1vw #f0f0f0 inset;
}
.estatus .eshead {
  padding-top: 3vw;
  justify-self: center;
  font-size: 3.8vw;
  color: rgb(153, 0, 48);
}
.estatus .esdes {
  justify-self: center;
  font-size: 1.6vw;
  font-weight: 500;
}
.estatus .blur {
  display: none;
}
.estatus .cardwrap {
  justify-self: center;
  padding-top: 2.5vw;
  display: grid;
  grid-template-columns: auto auto;
  width: 58.5vw;
}
.estatus .card {
  margin-top: 0.6vw;
  margin-bottom: 0.6vw;
  justify-self: center;
  width: 24vw;
  height: 3.5vw;
  padding: 2vw;
  background-color: rgba(240, 240, 240, 0.7450980392);
  border-radius: 0.6vw;
  display: grid;
  grid-template-columns: auto auto;
  box-shadow: 0px 0px 2vw rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(1vw);
  transition: all 0.2s;
}
.estatus .card .event {
  font-size: 2vw;
  font-weight: 500;
}
.estatus .card .status {
  font-size: 0.8vw;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.estatus .card .right {
  font-size: 0.8vw;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  justify-items: end;
}
.estatus .card a {
  color: #212529;
  padding-top: 0.8vw;
  text-decoration: underline;
}
.estatus .card .date {
  padding-right: 0.6vw;
}
.estatus .card:hover {
  background-color: rgba(240, 240, 240, 0.8);
  box-shadow: 0px 0px 2vw rgba(0, 0, 0, 0.1);
  border-radius: 0.8vw;
}
.estatus .malbums {
  font-size: 1.1vw;
  padding-left: 1.2vw;
  padding-right: 1.2vw;
  padding-top: 0.6vw;
  padding-bottom: 0.6vw;
  font-weight: 500;
  background-color: rgba(153, 0, 48, 0.9);
  border-radius: 0.3vw;
  box-shadow: 0px 0px 2vw rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(1vw);
  transition: all 0.2s;
}
.estatus .malbums:hover {
  background-color: rgb(153, 0, 48);
  border-radius: 0.4vw;
  box-shadow: 0px 0px 2vw rgba(0, 0, 0, 0.1);
}
.estatus a {
  color: #f0f0f0;
  text-decoration: none;
}
.estatus .malc {
  display: flex;
  justify-self: center;
  padding-top: 1.6vw;
}

.footer {
  font-family: "Poppins", sans-serif;
  width: 60vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 1vw;
  font-weight: 400;
  padding-bottom: 2vw;
  padding-top: 2.2vw;
}
.footer .right {
  justify-items: end;
  text-align: end;
}
.footer .left > * {
  justify-self: left;
  justify-content: left;
  justify-items: left;
}
.footer .deets {
  padding-top: 1.7vw;
}
.footer .footerlogo {
  display: grid;
  height: 3.4vw;
  padding-bottom: 1vw;
  justify-self: start;
}
.footer .smi {
  width: 1.33vw;
  padding-top: 0.8vw;
  padding-bottom: 0.6vw;
}
.footer .ig {
  padding-left: 0.5vw;
}
.footer a {
  text-decoration: none;
  color: #212529;
}
.footer a:hover {
  color: rgb(102, 0, 32);
}
.footer .para {
  font-weight: 300;
  text-align: left;
  width: 26vw;
}
.footer .privacy {
  font-weight: 300;
  text-decoration: underline;
  text-align: left;
}
.footer .git {
  font-size: 1.66vw;
  color: rgb(102, 0, 32);
  padding-top: 1.8vw;
}

.band {
  font-size: 1vw;
  justify-items: center;
  align-items: center;
  background-color: #212529;
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
}
.band .bandcontainer {
  height: 4vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 60vw;
  justify-items: center;
  align-items: center;
}
.band a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.band .c1 {
  justify-self: left;
}
.band .c2 {
  justify-self: end;
}/*# sourceMappingURL=general.css.map */