body, * {
  cursor: url('/assets/images/diablo.ico'), auto;
}

a, a:hover, button, input[type="submit"], [role="button"], .tab-btn, .tab-btn:hover, .tab-btn:active {
  cursor: url('/assets/images/mano.ico'), pointer !important;
}

@font-face {
  font-family: "Texturina";
  src: url("../fonts/Texturina-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Texturina";
  src: url("../fonts/Texturina-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Texturina";
  src: url("../fonts/Texturina-SemiBold.ttf");
  font-weight: 600;
}
*, *::before, *::after {
  padding: 0;
  margin: 0;
  outline: none !important;
  /*word-break: break-word;*/
  box-sizing: border-box;
}

:root {
  font-family: "Texturina";
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

::-webkit-scrollbar {
  width: 10px;
  background: #000000;
}

::-webkit-scrollbar-track {
  background: #080808;
}

::-webkit-scrollbar-thumb {
  background: radial-gradient(circle, rgb(132, 45, 0) 0%, rgb(25, 8, 0) 80%);
  border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
  background: radial-gradient(circle, #ad1400 0%, rgb(25, 8, 0) 80%);
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.download-button {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: rgb(25, 8, 0);
  background: radial-gradient(circle, rgb(132, 45, 0) 0%, rgb(25, 8, 0) 80%);
  box-shadow: inset 0px 0px 25px rgba(0, 0, 0, 0.75), 0px 0px 15px #000000;
  border: 3px solid #836344;
  border-radius: 3px;
  cursor: url('/assets/images/mano.ico'), pointer !important;
}
.download-button:hover, .download-button:active {
  background: rgb(53, 17, 0);
  background: radial-gradient(circle, #ad1400 0%, rgb(25, 8, 0) 80%);
  box-shadow: inset 0px 0px 25px rgba(0, 0, 0, 0.75), 0px 0px 15px #000000;
  border: 3px solid #523e2b;
}
.download-button:hover .font-button, .download-button:active .font-button {
  background: linear-gradient(0deg, #ffb86c 30%, #ff7556 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.download-button .font-button {
  font-weight: 600;
  text-align: center;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  background: linear-gradient(0deg, rgb(255, 152, 39) 30%, rgb(255, 60, 17) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  scroll-behavior: smooth;
  scroll-padding-top: 65px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #000000;
}
body header {
  width: 100%;
  height: 65px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0px 2px 5px #000000;
}
body header .wrapper {
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
body header .wrapper .logo {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body header .wrapper .logo img {
  width: 70%;
  height: auto;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body header .wrapper nav {
  width: 50%;
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}
body header .wrapper nav.active .nav-menu {
  transform: translateX(0%);
  transition: all 0.3s ease;
}
body header .wrapper nav.lang .lang-menu {
  transform: translateX(0%);
  transition: all 0.3s ease;
}
body header .wrapper nav .language-icon {
  width: 25px;
  height: 25px;
  display: block;
  filter: invert(1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: auto 10px auto auto;
}
body header .wrapper nav .mobile-icon {
  width: 25px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body header .wrapper nav .mobile-icon span {
  width: 25px;
  height: 2px;
  position: relative;
  background: #efefef;
  margin: auto 0 auto auto;
}
body header .wrapper nav .mobile-icon span::before {
  width: 25px;
  height: 2px;
  position: absolute;
  top: -8px;
  content: "";
  background: #efefef;
}
body header .wrapper nav .mobile-icon span::after {
  width: 25px;
  height: 2px;
  position: absolute;
  top: 8px;
  content: "";
  background: #efefef;
}
body header .wrapper nav .lang-menu {
  width: 100vw;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: absolute;
  top: 65px;
  left: 0;
  transform: translateX(100%);
  background: rgba(0, 0, 0, 0.9);
  transition: all 0.3s ease;
}
body header .wrapper nav .lang-menu h2 {
  padding: 1rem;
  font-size: 1.2rem;
  color: #efefef;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body header .wrapper nav .lang-menu li {
  width: 100%;
  height: auto;
  list-style: none;
}
body header .wrapper nav .lang-menu li a {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 0.9rem;
  display: block;
  padding: 0.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
body header .wrapper nav .lang-menu li a:link, body header .wrapper nav .lang-menu li a:visited {
  color: #9c9c9c;
  transition: all 0.3s ease;
}
body header .wrapper nav .lang-menu li a:hover, body header .wrapper nav .lang-menu li a:active {
  color: #efefef;
  transition: all 0.3s ease;
}
body header .wrapper nav .nav-menu {
  width: 100vw;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: absolute;
  top: 65px;
  left: 0;
  transform: translateX(100%);
  background: rgba(0, 0, 0, 0.9);
  transition: all 0.3s ease;
}
body header .wrapper nav .nav-menu li {
  width: 100%;
  height: auto;
  list-style: none;
}
body header .wrapper nav .nav-menu li:last-child a {
  border-bottom: none;
}
body header .wrapper nav .nav-menu li a {
  width: 100%;
  padding: 0.5rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body header .wrapper nav .nav-menu li a:link, body header .wrapper nav .nav-menu li a:visited {
  color: #9c9c9c;
  transition: all 0.3s ease;
}
body header .wrapper nav .nav-menu li a:hover, body header .wrapper nav .nav-menu li a:active {
  color: #efefef;
  transition: all 0.3s ease;
}
body header .wrapper nav .nav-menu li a span {
  width: 100%;
  text-align: left;
}
body header .wrapper nav .nav-menu li a i {
  width: 25px;
  height: 29px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: auto;
}
body footer {
  width: 100%;
  height: auto;
  background: #000000;
}
body footer .wrapper {
  width: 100%;
  height: auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
body footer .wrapper .big-footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
body footer .wrapper .big-footer .logo {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-bottom: 2rem;
}
body footer .wrapper .big-footer .logo img {
  width: 80%;
  height: auto;
  margin: 0px auto;
}
body footer .wrapper .big-footer .quick-links {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 2rem;
}
body footer .wrapper .big-footer .quick-links h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #efefef;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-bottom: 2rem;
}
body footer .wrapper .big-footer .quick-links ul {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
body footer .wrapper .big-footer .quick-links ul li {
  width: 150px;
  list-style: none;
  margin: 0px auto 0.5rem auto;
}
body footer .wrapper .big-footer .quick-links ul li:last-child {
  margin-bottom: 0px auto;
}
body footer .wrapper .big-footer .quick-links ul li a {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body footer .wrapper .big-footer .quick-links ul li a:link, body footer .wrapper .big-footer .quick-links ul li a:visited {
  color: #9c9c9c;
  transition: all 0.3s ease;
}
body footer .wrapper .big-footer .quick-links ul li a:hover, body footer .wrapper .big-footer .quick-links ul li a:active {
  color: #e99134;
  transition: all 0.3s ease;
}
body footer .wrapper .big-footer .quick-links ul li a span {
  width: 100%;
  text-align: left;
}
body footer .wrapper .big-footer .quick-links ul li a i {
  width: 25px;
  height: 29px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: auto;
}
body footer .wrapper .big-footer .socials {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
body footer .wrapper .big-footer .socials h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #efefef;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-bottom: 2rem;
}
body footer .wrapper .big-footer .socials ul {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
body footer .wrapper .big-footer .socials ul li {
  width: 150px;
  list-style: none;
  margin: 0px auto 0.5rem auto;
}
body footer .wrapper .big-footer .socials ul li:last-child {
  margin-bottom: 0px auto;
}
body footer .wrapper .big-footer .socials ul li .discord:hover, body footer .wrapper .big-footer .socials ul li .discord:active {
  transition: all 0.3s ease;
}
body footer .wrapper .big-footer .socials ul li .discord:hover span, body footer .wrapper .big-footer .socials ul li .discord:active span {
  color: #e99134;
}
body footer .wrapper .big-footer .socials ul li .discord:hover i, body footer .wrapper .big-footer .socials ul li .discord:active i {
  color: #535fee;
}
body footer .wrapper .big-footer .socials ul li .youtube:hover, body footer .wrapper .big-footer .socials ul li .youtube:active {
  transition: all 0.3s ease;
}
body footer .wrapper .big-footer .socials ul li .youtube:hover span, body footer .wrapper .big-footer .socials ul li .youtube:active span {
  color: #e99134;
}
body footer .wrapper .big-footer .socials ul li .youtube:hover i, body footer .wrapper .big-footer .socials ul li .youtube:active i {
  color: #ff0000;
}
body footer .wrapper .big-footer .socials ul li .facebook:hover, body footer .wrapper .big-footer .socials ul li .facebook:active {
  transition: all 0.3s ease;
}
body footer .wrapper .big-footer .socials ul li .facebook:hover span, body footer .wrapper .big-footer .socials ul li .facebook:active span {
  color: #e99134;
}
body footer .wrapper .big-footer .socials ul li .facebook:hover i, body footer .wrapper .big-footer .socials ul li .facebook:active i {
  color: #4867aa;
}
body footer .wrapper .big-footer .socials ul li .twitch:hover, body footer .wrapper .big-footer .socials ul li .twitch:active {
  transition: all 0.3s ease;
}
body footer .wrapper .big-footer .socials ul li .twitch:hover span, body footer .wrapper .big-footer .socials ul li .twitch:active span {
  color: #e99134;
}
body footer .wrapper .big-footer .socials ul li .twitch:hover i, body footer .wrapper .big-footer .socials ul li .twitch:active i {
  color: #9046ff;
}
body footer .wrapper .big-footer .socials ul li a {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body footer .wrapper .big-footer .socials ul li a:link, body footer .wrapper .big-footer .socials ul li a:visited {
  color: #9c9c9c;
  transition: all 0.3s ease;
}
body footer .wrapper .big-footer .socials ul li a span {
  width: 100%;
  text-align: left;
}
body footer .wrapper .big-footer .socials ul li a i {
  width: 25px;
  height: 29px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: auto;
}
body footer .legal {
  width: 100%;
  height: auto;
  padding: 1rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  background: #080808;
}
body footer .legal p {
  font-weight: 300;
  color: #9c9c9c;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body header .wrapper {
    padding: 1rem 2rem;
  }
  body header .wrapper .logo img {
    width: 35%;
  }
  body header .wrapper nav {
    position: relative;
  }
  body header .wrapper nav.lang .lang-menu {
    height: auto;
    display: flex;
  }
  body header .wrapper nav.active .nav-menu {
    min-width: 150px;
    height: auto;
    display: flex;
  }
  body header .wrapper nav .lang-menu {
    width: auto;
    height: 0px;
    display: none;
    padding: 0px;
    top: 49px;
    right: 0;
    left: unset;
    transform: translateX(0%);
  }
  body header .wrapper nav .lang-menu li a {
    padding: 0.5rem;
  }
  body header .wrapper nav .nav-menu {
    width: auto;
    height: 0px;
    display: none;
    padding: 0px;
    top: 49px;
    right: 0;
    left: unset;
    transform: translateX(0%);
  }
  body header .wrapper nav .nav-menu li a {
    padding: 0.5rem;
  }
  body footer .wrapper {
    padding: 40px;
  }
  body footer .wrapper .big-footer {
    flex-flow: row nowrap;
    justify-content: space-between;
  }
  body footer .wrapper .big-footer .logo {
    width: 30%;
    margin: 0px;
  }
  body footer .wrapper .big-footer .logo img {
    width: 100%;
    margin: 0px 0px auto 0px;
  }
  body footer .wrapper .big-footer .quick-links {
    width: 30%;
    margin: 0px;
  }
  body footer .wrapper .big-footer .socials {
    width: 30%;
    margin: 0px;
  }
}
@media (min-width: 1024px) {
  body header .wrapper {
    width: 1024px;
    padding: 1rem 2rem;
    margin: 0px auto;
  }
  body header .wrapper .logo img {
    width: 22%;
  }
  body header .wrapper nav {
    position: relative;
  }
  body header .wrapper nav.lang .lang-menu {
    height: auto;
    display: flex;
  }
  body header .wrapper nav.active .nav-menu {
    min-width: 200px;
    height: auto;
    display: flex;
  }
  body header .wrapper nav .language-icon {
    cursor: pointer;
  }
  body header .wrapper nav .mobile-icon {
    cursor: pointer;
  }
  body header .wrapper nav .lang-menu {
    width: auto;
    height: 0px;
    display: none;
    padding: 1rem;
    top: 49px;
    right: 0;
    left: unset;
    transform: translateX(0%);
  }
  body header .wrapper nav .lang-menu h2 {
    padding: 0px;
  }
  body header .wrapper nav .nav-menu {
    width: auto;
    height: 0px;
    display: none;
    padding: 0px;
    top: 49px;
    right: 0;
    left: unset;
    transform: translateX(0%);
  }
  body header .wrapper nav .nav-menu li a {
    padding: 0.5rem;
  }
  body footer .wrapper {
    width: 1024px;
    padding: 40px;
    margin: 0px auto;
  }
  body footer .wrapper .big-footer {
    flex-flow: row nowrap;
    justify-content: space-between;
  }
  body footer .wrapper .big-footer .logo {
    width: 30%;
    margin: 0px;
  }
  body footer .wrapper .big-footer .logo img {
    width: 348px;
    height: auto;
    margin: 0px 0px auto 0px;
  }
  body footer .wrapper .big-footer .quick-links {
    width: 30%;
    margin: 0px;
  }
  body footer .wrapper .big-footer .quick-links h2 {
    font-size: 1.5rem;
  }
  body footer .wrapper .big-footer .quick-links ul li {
    width: 200px;
  }
  body footer .wrapper .big-footer .socials {
    width: 30%;
    margin: 0px;
  }
  body footer .wrapper .big-footer .socials h2 {
    font-size: 1.5rem;
  }
  body footer .wrapper .big-footer .socials ul li {
    width: 200px;
  }
  body footer .legal p {
    font-size: 1rem;
  }
}/*# sourceMappingURL=global.css.map */