@font-face {
  font-family: "BakbakOne";
  src: url("../fonts/BakbakOne-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf");
  font-weight: 500;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.comming-soon {
  position: relative;
  cursor: pointer;
}
.comming-soon::after {
  content: "Comming Soon";
  position: absolute;
  top: 110%;
  left: 50%;
  text-wrap: nowrap;
  translate: -50% 0;
  color: rgba(255, 255, 255, 0.546);
  font-weight: 400;
}

body {
  margin: 0;
  padding: 0;
  font-family: "BakbakOne";
  background-color: #070707;
}

header {
  background-color: #db1e21;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3.75vw;
  height: 4.74vw;
  box-shadow: 0 5px 10px #db1e21;
  position: relative;
}
header .logo {
  display: flex;
}
header .logo img {
  width: 5vw;
}
header nav {
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 10;
}
header nav ul {
  height: 100%;
  display: flex;
  align-items: center;
  list-style: none;
}
header nav ul a {
  font-size: 0.833vw;
  color: white;
  text-decoration: none;
  padding: 0.4vw 0.651vw;
  background-color: transparent;
}
header nav ul a:hover {
  color: #db1e21;
  border-radius: 0.4vw;
  background-color: white;
}
header nav ul button {
  display: none;
  border: none;
  font-size: 1.4rem;
  color: white;
  background-color: transparent;
}
header .menu_btn {
  display: none;
  border: 0;
  background-color: transparent;
  color: white;
  cursor: pointer;
}
header .menu_btn svg {
  width: 32px;
  height: 32px;
}
header .buttons {
  display: flex;
  align-items: center;
  gap: 1.406vw;
}
header .buttons a {
  font-size: 0.833vw;
  padding: 0.625vw 1.25vw;
  text-decoration: none;
  color: white;
  background-color: #141b22;
}
header .buttons a:hover {
  background: linear-gradient(90deg, #141b22 0%, #7c7c7c 100%);
  scale: 1.05;
}
header .buttons a.white {
  background-color: white;
  color: #141b22;
}
header .buttons a.white:hover {
  background: linear-gradient(90deg, white 0%, rgb(255, 94, 94) 100%);
  scale: 1.05;
}
@media screen and (max-width: 768px) {
  header {
    height: 15vw;
    align-items: center;
  }
  header .logo {
    display: flex;
  }
  header .logo img {
    width: 14vw;
  }
  header nav {
    width: 100%;
    height: 0;
    top: 0;
  }
  header nav ul {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #db1e21;
    right: 0;
    top: 0;
    height: 100vh;
    width: 60%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    z-index: 10;
    gap: 1rem;
  }
  header nav ul a {
    font-size: 6vw;
  }
  header nav ul button {
    display: flex;
    cursor: pointer;
  }
  header .menu_btn {
    display: flex;
    cursor: pointer;
  }
  header .header-buttons {
    gap: 0.5rem;
  }
  header .header-buttons a {
    text-decoration: none;
    font-size: 2vw;
    padding: 0.2rem 0.5rem;
  }
  header .buttons {
    gap: 2vw;
  }
  header .buttons a {
    font-size: 3vw;
    padding: 1vw 3vw;
  }
}

.hero {
  display: flex;
  align-items: center;
  padding: 8.125vw 4.948vw;
}
.hero .hero-video {
  position: relative;
}
.hero .hero-video video {
  width: 44.792vw;
  border-radius: 0.781vw;
}
.hero .hero-video svg {
  position: absolute;
  color: white;
  z-index: 10;
  width: 6vw;
  height: 6vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero .hero-content img {
  width: 24.167vw;
}
.hero .hero-content h1 {
  margin: 1.667vw 0;
  color: white;
  font-size: 3.672vw;
  font-weight: normal;
}
.hero .hero-content h1 em {
  font-style: normal;
  color: #db1e21;
}
.hero .hero-content p {
  margin-top: 0;
  margin-bottom: 2.083vw;
  font-size: 0.927vw;
  color: white;
  text-wrap: balance;
  font-family: "Poppins";
}
.hero .hero-content .buttons {
  display: flex;
  align-items: center;
  gap: 1.406vw;
}
.hero .hero-content .buttons a {
  border: 2px solid #db1e21;
  font-size: 0.833vw;
  padding: 0.625vw 1.25vw;
  text-decoration: none;
  color: white;
  background-color: #db1e21;
}
.hero .hero-content .buttons a:hover {
  background: linear-gradient(90deg, #db1e21 0%, #ff7e7e 100%);
  scale: 1.05;
}
.hero .hero-content .buttons a.red {
  background-color: transparent;
  color: white;
}
.hero .hero-content .buttons a.red:hover {
  background: linear-gradient(90deg, #141b22 0%, #7c7c7c 100%);
  scale: 1.05;
}
@media screen and (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 16vw;
    padding: 15vw 5vw;
    padding-bottom: 4vw;
  }
  .hero .hero-video {
    position: relative;
  }
  .hero .hero-video video {
    width: 100%;
    border-radius: 3vw;
  }
  .hero .hero-video svg {
    width: 16vw;
    height: 16vw;
    z-index: 3;
  }
  .hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3vw;
  }
  .hero .hero-content img {
    width: 50%;
  }
  .hero .hero-content h1 {
    margin: 1.667vw 0;
    color: white;
    font-size: 6vw;
    font-weight: normal;
  }
  .hero .hero-content h1 em {
    font-style: normal;
    color: #db1e21;
  }
  .hero .hero-content p {
    margin-top: 0;
    margin-bottom: 2.083vw;
    font-size: 3.4vw;
    color: white;
    text-wrap: balance;
    font-family: "Poppins";
  }
  .hero .hero-content .buttons {
    margin-top: 4vw;
    display: flex;
    align-items: center;
    gap: 4vw;
  }
  .hero .hero-content .buttons a {
    border: 2px solid #db1e21;
    font-size: 4vw;
    padding: 1vw 3vw;
    text-decoration: none;
    color: white;
    background-color: #db1e21;
  }
  .hero .hero-content .buttons a.red {
    background-color: transparent;
    color: white;
  }
}

.social-media {
  margin-top: 2.396vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.859vw;
}
.social-media a .icon {
  width: 2.188vw;
}
.social-media a .icon.b {
  width: 2.8vw;
}
.social-media a:hover {
  scale: 1.05;
}
@media screen and (max-width: 768px) {
  .social-media {
    margin-top: 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3vw;
  }
  .social-media a .icon {
    width: 8vw;
  }
  .social-media a .icon.b {
    width: 10vw;
  }
}

/* about */
.about {
  display: flex;
  align-items: center;
  padding: 0 8.229vw;
  text-align: center;
  gap: 5.208vw;
  padding-top: 1.615vw;
  padding-bottom: 15.625vw;
  background-image: url("../img/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.about .about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
.about .about-content h1 {
  margin: 0.99vw 0;
  color: white;
  font-size: 3.672vw;
  font-weight: normal;
}
.about .about-content h1 em {
  font-style: normal;
  color: #db1e21;
}
.about .about-content p {
  margin-top: 0;
  margin-bottom: 2.083vw;
  font-size: 1.25vw;
  color: white;
  text-wrap: balance;
  font-family: "Poppins";
}
.about .about-content .buttons {
  display: flex;
  align-items: center;
  gap: 1.406vw;
}
.about .about-content .buttons a {
  border: 2px solid #db1e21;
  font-size: 0.833vw;
  padding: 0.625vw 1.25vw;
  text-decoration: none;
}
.about .about-content .buttons a:hover {
  background: linear-gradient(90deg, #141b22 0%, #7c7c7c 100%);
  scale: 1.05;
}
.about .about-content .buttons a.red {
  background-color: transparent;
  color: white;
}
.about .about-grid {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5vw;
}
.about .about-grid .item {
  padding: 0.2vw;
  position: relative;
  overflow: hidden;
}
.about .about-grid .item .item-content {
  position: relative;
  height: 100%;
  z-index: 3;
  background: #141b22;
  padding: 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 0.5vw;
}
.about .about-grid .item .item-content h2 {
  color: white;
  font-size: 1.875vw;
  font-weight: 400;
  cursor: default;
}
.about .about-grid .item .item-content p {
  color: white;
  font-size: 1.042vw;
  font-family: "Poppins";
  font-weight: 400;
  text-wrap: balance;
  cursor: default;
}
.about .about-grid .item:hover .item-effect {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  translate: -50% -50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #db1e21;
  filter: blur(12px);
  animation: rotate 4s linear infinite;
}
.about .about-grid .item:hover .item-effect.bottom {
  top: 100%;
  left: 100%;
  animation: rotate-bottom 4s linear infinite;
}
@media screen and (max-width: 768px) {
  .about {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5vw;
    text-align: center;
    gap: 5.208vw;
    padding-top: 6vw;
    padding-bottom: 15.625vw;
    background-image: url("../img/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    gap: 15vw;
  }
  .about .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .about .about-content h1 {
    margin: 0.99vw 0;
    color: white;
    font-size: 6vw;
    font-weight: normal;
  }
  .about .about-content h1 em {
    font-style: normal;
    color: #db1e21;
  }
  .about .about-content p {
    margin-top: 0;
    margin-bottom: 2.083vw;
    font-size: 3vw;
    color: white;
    text-wrap: balance;
    font-family: "Poppins";
  }
  .about .about-content .buttons {
    margin-top: 4vw;
    display: flex;
    align-items: center;
    gap: 1.406vw;
  }
  .about .about-content .buttons a {
    border: 2px solid #db1e21;
    font-size: 4vw;
    padding: 0.625vw 1.25vw;
    text-decoration: none;
  }
  .about .about-content .buttons a.red {
    background-color: transparent;
    color: white;
  }
  .about .about-content .buttons a:hover {
    scale: 1.05;
  }
  .about .about-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
  }
  .about .about-grid .item .item-content {
    position: relative;
    height: 100%;
    z-index: 3;
    background: #141b22;
    padding: 1vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5vw;
  }
  .about .about-grid .item .item-content h2 {
    color: white;
    font-size: 3vw;
    font-weight: 400;
  }
  .about .about-grid .item .item-content p {
    color: white;
    font-size: 2vw;
    font-family: "Poppins";
    font-weight: 400;
  }
}

.characters {
  margin-top: -14.375vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.characters .title {
  margin-top: 7.813vw;
  color: white;
  font-size: 2.824vw;
  font-weight: normal;
}
.characters .title em {
  font-style: normal;
  color: #db1e21;
}
.characters p {
  color: white;
  font-family: "Poppins";
  font-size: 1.25vw;
  margin: 3vw 0;
  text-wrap: balance;
}
.characters .characters-grid {
  margin-top: 1vw;
  max-width: 52.083vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.49vw;
}
.characters .characters-grid .item {
  padding: 0.2vw;
  position: relative;
  overflow: hidden;
  border-radius: 1vw;
}
.characters .characters-grid .item img {
  display: flex;
  position: relative;
  z-index: 2;
  border-radius: 1vw;
  width: 100%;
}
.characters .characters-grid .item:hover .item-effect {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  translate: -50% -50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #db1e21;
  filter: blur(12px);
  animation: rotate 4s linear infinite;
}
.characters .characters-grid .item:hover .item-effect.bottom {
  top: 100%;
  left: 100%;
  animation: rotate-bottom 4s linear infinite;
}
@media screen and (max-width: 768px) {
  .characters {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-inline: 5vw;
  }
  .characters .title {
    margin-top: 7.813vw;
    color: white;
    font-size: 6vw;
    font-weight: normal;
  }
  .characters .title em {
    font-style: normal;
    color: #db1e21;
  }
  .characters p {
    color: white;
    font-family: "Poppins";
    font-size: 2.5vw;
    margin: 3vw 0;
    text-wrap: balance;
  }
  .characters .characters-grid {
    margin-top: 1vw;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.49vw;
  }
}

footer {
  margin-top: 8.333vw;
  padding-bottom: 1.667vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .line {
  width: 100%;
  margin-top: 1.927vw;
  height: 3px;
  background-color: #db1e21;
  box-shadow: 0 0 10px #db1e21, 0 0 15px #db1e21;
}
footer .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5vw 0;
}
footer .logo img {
  width: 4.779vw;
}
footer ul {
  display: flex;
  list-style: none;
  gap: 1.25vw;
}
footer ul li a {
  text-decoration: none;
  color: white;
  font-family: "Poppins";
  font-size: 0.6vw;
}
@media screen and (max-width: 768px) {
  footer {
    margin-top: 8.333vw;
    padding-bottom: 1.667vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .line {
    width: 100%;
    margin-top: 3vw;
    height: 3px;
    background-color: #db1e21;
    box-shadow: 0 0 10px #db1e21, 0 0 15px #db1e21;
  }
  footer .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6vw;
  }
  footer .logo img {
    width: 15%;
  }
  footer ul {
    display: flex;
    list-style: none;
    gap: 1.25vw;
  }
  footer ul li a {
    text-decoration: none;
    color: white;
    font-family: "Poppins";
    font-size: 2vw;
  }
}

body.loading {
  max-height: 100vh;
  overflow: hidden;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  background-color: #070707;
}

.spinner {
  width: 250px;
  height: 150px;
  position: relative;
  animation: rotation 0.75s linear infinite;
  border-radius: 100em;
}

.path {
  stroke-dasharray: 100;
  stroke-dashoffset: 20;
  stroke-linecap: round;
}

@keyframes rotation {
  to {
    transform: rotate(360deg);
  }
}
/* efecto hover  */
@keyframes rotate {
  0% {
    top: 0;
    left: 0;
  }
  25% {
    top: 0;
    left: 100%;
  }
  50% {
    top: 100%;
    left: 100%;
  }
  75% {
    top: 100%;
    left: 0;
  }
  100% {
    top: 0;
    left: 0;
  }
}
@keyframes rotate-bottom {
  0% {
    top: 100%;
    left: 100%;
  }
  25% {
    top: 100%;
    left: 0;
  }
  50% {
    top: 0;
    left: 0;
  }
  75% {
    top: 0;
    left: 100%;
  }
  100% {
    top: 100%;
    left: 100%;
  }
}/*# sourceMappingURL=index.css.map */