/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* ANIMATION VARIABLES */
/* DEBUG VARIABLES*/
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* ANIMATION VARIABLES */
/* DEBUG VARIABLES*/
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* ANIMATION VARIABLES */
/* DEBUG VARIABLES*/
.flex {
  display: flex;
  gap: 0.5rem;
}
.flex.column {
  flex-direction: column;
}
.flex.column-m {
  flex-direction: unset;
}
@media (max-width: 767px) {
  .flex.column-m {
    flex-direction: column;
  }
}
.flex.row {
  flex-direction: row;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.w-full {
  width: 100%;
}
.flex.h-100 {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
  font-family: "Work Sans", sans-serif;
}
@media (max-width: 1366px) {
  html {
    font-size: 90%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 85%;
  }
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .mt-m-1 {
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .mt-m-2 {
    margin-top: 2rem;
  }
}

body {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

img {
  clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}
@media (max-width: 767px) {
  img {
    clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  }
}
img {
  /* @include sm {
       clip-path: polygon(0 10.00px,10.00px 0,100% 0,100% calc(100% - 10.00px),calc(100% - 10.00px) 100%,0 100%);
   }*/
}

body {
  margin: 0;
  padding: 0;
  background-color: #111111;
}
body.opened {
  overflow: hidden;
}

p, h1, h2, h3, h4, h5 {
  margin: 0px;
  padding: 0px;
  font-family: "Work Sans", sans-serif;
  color: #ffffff;
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
}

p {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 2rem;
  font-size: 1.1rem;
  margin: 1rem 0 0 0;
}
@media (max-width: 575px) {
  p {
    font-size: calc(1.1rem * 1.1);
    line-height: 2rem;
    font-weight: 300;
  }
}

h1 {
  color: #ffffff;
  font-size: 3rem;
}

h2 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 1rem;
}
@media (max-width: 575px) {
  h3 {
    margin-top: calc(1rem * 0.7);
  }
}

h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-top: 1rem;
}

h5 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-top: 1rem;
}

main {
  margin-bottom: 2rem;
  margin-top: 8rem;
  transition: 0.2s cubic-bezier(0.82, -0.01, 0.17, 1) all;
}
@media (max-width: 991px) {
  main {
    margin-top: 0;
  }
}
main .container {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  padding: 0 4rem;
  box-sizing: border-box;
}
@media (max-width: 1366px) {
  main .container {
    width: 95%;
  }
}
@media (max-width: 991px) {
  main .container {
    width: 85%;
  }
}
@media (max-width: 575px) {
  main .container {
    padding: 0;
    width: 90%;
  }
}
main.opened {
  transform: translateX(calc(18rem * -1.1));
}
@media (max-width: 575px) {
  main.opened {
    transform: translateX(calc(80vw * -1.1));
  }
}

hr {
  width: 100%;
  opacity: 0.1;
  margin: 3rem 0;
}

.imgclip {
  clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

alternateclip-img {
  clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 80px, 100% 100%, 80px 100%, 0 calc(100% - 80px));
}

/* #region Nav bar*/
.nav-container {
  height: 4.25rem;
  width: calc(100% - 4rem);
  max-width: 1920px;
  position: fixed;
  left: 0;
  right: 0;
  top: 1.25rem;
  margin: 0 auto;
  box-sizing: border-box;
  z-index: 999;
  display: flex;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
@media (max-width: 991px) {
  .nav-container {
    display: none;
  }
}

.mobile-nav-wrapper {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  right: 0;
  visibility: collapse;
}
@media (max-width: 991px) {
  .mobile-nav-wrapper {
    visibility: visible;
  }
}
.mobile-nav-wrapper::before {
  transition: 0.2s cubic-bezier(0.82, -0.01, 0.17, 1) all;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  z-index: -1;
  background: rgb(0, 0, 0);
  opacity: 0;
  visibility: collapse;
}
.mobile-nav-wrapper.opened::before {
  opacity: 0.8;
  visibility: visible;
}
.mobile-nav-wrapper .mobile-nav-toggle {
  clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  height: 5rem;
  width: 5rem;
  background-color: #1B1B1B;
  border: 2px solid #e01b32;
  box-shadow: 0px 0px 50px 2px rgba(253, 2, 30, 0.2);
  border-radius: calc(0.1rem * 3);
  margin: 2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s all cubic-bezier(0.82, -0.01, 0.17, 1);
}
.mobile-nav-wrapper .mobile-nav-toggle.opened {
  transform: rotate(-90deg);
  box-shadow: 0px 0px 50px 2px #e01b32;
}
.mobile-nav-wrapper .mobile-nav-toggle img {
  height: 2.2rem;
}
.mobile-nav-wrapper .mobile-nav {
  position: fixed;
  bottom: 0;
  right: 0;
  height: 100vh;
  width: 18rem;
  z-index: -1;
  background: #141414;
  transition: 0.2s cubic-bezier(0.82, -0.01, 0.17, 1) all;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .mobile-nav-wrapper .mobile-nav {
    width: 80vw;
  }
}
.mobile-nav-wrapper .mobile-nav:not(.opened) {
  transform: translateX(18rem);
}
@media (max-width: 575px) {
  .mobile-nav-wrapper .mobile-nav:not(.opened) {
    transform: translateX(80vw);
  }
}
.mobile-nav-wrapper .mobile-nav .nav-content {
  margin: 2rem;
  flex: 1;
  padding: 1rem;
}
.mobile-nav-wrapper .mobile-nav .nav-content > a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.76);
}
.mobile-nav-wrapper .mobile-nav .nav-content > a > i {
  display: inline-flex;
  width: 1.75rem;
  flex: 0 0 auto;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
}
.mobile-nav-wrapper .mobile-nav .nav-content > a h3 {
  font-size: calc(1.5rem * 1.3);
  margin: 0.9rem 0;
  color: inherit;
}
@media (max-width: 767px) {
  .mobile-nav-wrapper .mobile-nav .nav-content > a h3 {
    font-size: 1.5rem;
  }
}
.mobile-nav-wrapper .mobile-nav .nav-content > a:hover,
.mobile-nav-wrapper .mobile-nav .nav-content > a.active {
  color: #e01b32;
}
.mobile-nav-wrapper .mobile-nav .nav-content socials {
  margin: 0.5rem 0 0 0;
}
.mobile-nav-wrapper .mobile-nav .nav-content socials div:first-child {
  margin-left: 0;
}

.active {
  color: #e01b32;
}

.activated {
  color: #e01b32 !important;
}

nav {
  width: 100%;
  display: flex;
  gap: 0.1rem;
  align-items: center;
  margin: 0 1.5rem;
}
nav a {
  text-decoration: none;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 0.55rem;
  box-sizing: border-box;
  position: relative;
  color: rgba(255, 255, 255, 0.76);
}
nav a h3 {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
nav a:hover {
  background-color: rgba(253, 2, 30, 0.2);
  color: #e01b32;
}
nav a.active {
  color: #e01b32;
}
nav a.active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.2rem;
  background-color: #e01b32;
  z-index: 0;
}

socials {
  display: flex;
  margin: 0 3rem;
}
socials a {
  padding: 0;
  margin: 1rem 0.2rem;
  height: auto;
  width: auto;
}
socials a:first-child {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  socials a:first-child {
    margin-left: 0;
  }
}
socials a div {
  height: 3rem;
  width: 3rem;
  background-color: #e01b32;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.1rem;
  transition: all cubic-bezier(0.82, -0.01, 0.17, 1) calc(0.2s * 0.4);
}
socials a div:hover {
  background-color: #141414;
  cursor: pointer;
}
socials a div:hover svg path {
  fill: #e01b32;
}
socials a div:hover svg circle {
  fill: #e01b32;
}
socials a div svg {
  height: 1.6rem;
  width: 1.6rem;
}
socials a div svg path {
  fill: #070707;
  transition: all cubic-bezier(0.82, -0.01, 0.17, 1) calc(0.2s * 0.4);
}
socials a div svg circle {
  fill: #070707;
  transition: all cubic-bezier(0.82, -0.01, 0.17, 1) calc(0.2s * 0.4);
}
@media (max-width: 575px) {
  socials a div {
    height: 4rem;
    width: 4rem;
    border-radius: calc(0.1rem * 1.7);
  }
}

.nav-container > socials {
  align-items: center;
  flex: 0 0 auto;
  margin: 0 1.5rem 0 0;
}
.nav-container > socials a {
  display: flex;
  align-items: center;
  margin: 0 0.2rem;
}
.nav-container > socials a:first-child {
  margin-left: 0;
}

.btn-primary {
  padding: 0.5rem 0.8rem;
  margin-top: 0.6rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 0.1rem;
  color: #070707;
  background-color: #e01b32;
  transition-duration: 0.2s;
  outline: none;
  border: none;
}
.btn-primary:hover {
  color: #070707;
  background-color: #ffffff;
  cursor: pointer;
}
.btn-primary:hover svg path {
  fill: #070707 !important;
  color: #070707;
}

.components-footer {
  height: auto;
  width: 100%;
  max-width: 1920px;
  margin: 5rem auto 0;
  background-color: #141414;
  border-radius: 0.1rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .components-footer {
    flex-direction: column;
    height: auto;
    margin: 2rem 0 0 0;
  }
}
.components-footer .logo-container {
  height: calc(100% - 4rem);
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  display: flex;
  margin: 3rem 0 3rem 3rem;
}
@media (max-width: 991px) {
  .components-footer .logo-container {
    flex-direction: column;
    height: auto;
    width: calc(100% - 3rem);
    margin: 1.5rem;
    align-items: center;
  }
}
.components-footer .logo-container .description {
  height: -moz-max-content;
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  margin: 0 2rem 0 2rem;
}
@media (max-width: 991px) {
  .components-footer .logo-container .description {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .components-footer .logo-container .description h2 {
    margin: 1rem auto;
  }
}
.components-footer .logo-container .description .divider-100 {
  margin: 2rem 0 2rem 0;
}
.components-footer .logo-container img {
  height: 20rem;
  width: auto;
  aspect-ratio: 1;
  margin: -5rem auto;
}
@media (max-width: 575px) {
  .components-footer .logo-container img {
    height: auto;
    width: 100%;
    aspect-ratio: 2;
    margin: -1rem auto;
  }
}
.components-footer .links-section {
  display: flex;
  margin: 3rem;
}
@media (max-width: 767px) {
  .components-footer .links-section {
    flex-direction: row;
    height: auto;
    width: calc(100% - 3rem);
    margin: 1.5rem 1.5rem 3rem 1.5rem;
  }
}
.components-footer .links-section .quicklinks-section {
  height: -moz-min-content;
  height: min-content;
  min-width: 10rem;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  vertical-align: middle;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .components-footer .links-section .quicklinks-section {
    width: 50%;
  }
}
.components-footer .links-section .quicklinks-section h3 {
  width: -moz-min-content;
  width: min-content;
  padding: 0 0 1rem 0;
  margin: 0 0 1rem 0;
  border-bottom: 2px solid rgba(253, 2, 30, 0.2);
}
.components-footer .links-section .quicklinks-section ul {
  height: -moz-min-content;
  height: min-content;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.components-footer .links-section .quicklinks-section ul li {
  margin: 0.5rem 0 0 0;
}
.components-footer .links-section .quicklinks-section ul li a {
  width: -moz-max-content;
  width: max-content;
  color: #e01b32;
  font-family: "Work Sans", sans-serif;
  border-bottom: 1px solid transparent;
  transition: calc(0.2s / 4) cubic-bezier(0.82, -0.01, 0.17, 1) all;
}
.components-footer .links-section .quicklinks-section ul li a:hover {
  border-bottom: 1px solid #e01b32;
  cursor: pointer;
}

.components-copyright-section {
  margin: 2rem 0 0 0;
}
@media (max-width: 575px) {
  .components-copyright-section {
    margin: 2rem 0 0 0;
  }
}
.components-copyright-section p {
  width: 100%;
  text-align: center;
}

.store h1 {
  font-size: calc(1.5rem * 1.2);
  margin: 1rem 0 1rem 0;
  font-weight: 500;
}

.component-login {
  display: flex;
  height: 60vh;
  width: 100%;
  box-sizing: border-box;
  padding: 2rem;
  position: relative;
}
.component-login .form-container {
  position: absolute;
  min-width: 30rem;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .component-login .form-container {
    min-width: unset;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
  }
}
.component-login .form-container form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.component-login .form-container form div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.component-login .form-container form label {
  color: rgba(255, 255, 255, 0.6);
}
.component-login .form-container form input[type=text], .component-login .form-container form input[type=email], .component-login .form-container form input[type=password] {
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 0.1rem;
  margin: 0;
  outline: none;
  border: none;
  background-color: #141414;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}
.component-login .form-container form span {
  color: rgba(255, 255, 255, 0.6);
}/*# sourceMappingURL=Global.css.map */
