@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
* button {
  border: none;
  background: none;
  cursor: pointer;
  color: white;
  border: 0.1rem solid transparent;
  transition: 0.2s cubic-bezier(0.5, 1, 0.8, 1);
}
* a {
  text-decoration: none;
  color: inherit;
}

:root {
  overflow-x: hidden;
  background: url(img/New\ Project.png), linear-gradient(to bottom right, #25253a, #0f0c29, #000000);
  background-repeat: no-repeat;
  background-attachment: local, fixed;
  font-family: "Roboto Slab", serif;
  color: white;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
:root::-webkit-scrollbar {
  display: none;
}
:root .btn {
  padding: 0.75rem;
  font-family: inherit;
  font-weight: 500;
  box-shadow: 0.3rem 0.3rem black;
  background-color: #e94f1c;
  color: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
:root .btn:hover {
  translate: 0.15rem 0.15rem;
  box-shadow: 0.15rem 0.15rem black;
}
:root .btn:active {
  translate: 0.3rem 0.3rem;
  box-shadow: none;
}
:root .btn:first-child {
  background-color: white;
  color: black;
}
:root .btn:last-child {
  background-color: #e94f1c;
}
:root .nav-link {
  position: relative;
  font-size: 0.85rem;
  transition: 0.2s cubic-bezier(0.5, 1, 0.8, 1);
  transition-property: transform;
}
:root .nav-link::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0.1rem;
  background-color: #e94f1c;
  transition: 0.2s cubic-bezier(0.5, 1, 0.8, 1);
  transform: scaleX(0);
}
:root .nav-link:hover::after {
  transform: scaleX(1);
}
:root .shape {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  rotate: 180deg;
}
:root .shape > svg {
  position: relative;
  display: block;
  width: 150%;
  height: 80vh;
}
:root .shape > svg > path {
  fill: rgba(166, 78, 47, 0.075);
}

body {
  position: relative;
  overflow-x: hidden;
}

header {
  z-index: 2;
  position: fixed;
  top: 0;
  width: 100%;
  height: auto;
  display: grid;
  grid: "headerLogo headerNav headerUser" auto/1fr 1fr 1fr;
  padding: 0.5rem 1rem;
  background: transparent;
  transition: 0.2s cubic-bezier(0.5, 1, 0.8, 1);
  border-bottom: 1px solid transparent;
}
header section {
  display: flex;
  gap: 1rem;
  align-items: center;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
header #headerLogo {
  grid-area: headerLogo;
  justify-self: left;
}
header #headerNav {
  grid-area: headerNav;
  justify-self: center;
}
header #headerNav > button {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
header #headerNav > button rect {
  transition: transform 150ms 150ms, opacity 0ms 150ms, rotate 150ms;
  transform-origin: center;
}
header #headerNav > button .opened rect {
  transition: transform 150ms, opacity 0ms 150ms, rotate 150ms 150ms;
}
header #headerNav > button .opened .top {
  transform: translateY(25px);
  rotate: 45deg;
}
header #headerNav > button .opened .middle {
  opacity: 0;
}
header #headerNav > button .opened .bottom {
  transform: translateY(-25px);
  rotate: -45deg;
}
header #headerNav #mobileMenu {
  position: absolute;
  top: 5rem;
  left: 0;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 0;
  display: none;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.15) !important;
  -webkit-backdrop-filter: blur(0.75rem) !important;
          backdrop-filter: blur(0.75rem) !important;
  transition: 0.2s cubic-bezier(0.5, 1, 0.8, 1);
}
header #headerNav #mobileMenu #mobileMenuContent {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
header #headerNav #mobileMenu #mobileMenuContent > a:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
header #headerNav #mobileMenu #mobileMenuContent > a {
  padding: 0.5rem;
}
header #headerNav #mobileMenu #mobileMenuContent > a::after {
  display: none !important;
}
header #headerNav #mobileMenu #mobileMenuContent > a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
header #headerUser {
  grid-area: headerUser;
  justify-self: end;
}
header #headerUser a:has(svg) {
  display: none;
}
header #headerUser .cart {
  position: relative;
  padding: 0.4rem;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  transition: 0.2s cubic-bezier(0.5, 1, 0.8, 1);
  font-size: 0.85rem;
}
header #headerUser .cart:hover {
  border: 1px solid rgb(255, 255, 255);
}
header #headerUser .cart > svg {
  display: none;
}
header #headerUser .cart #cart-counter {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e94f1c;
  border-radius: 100vmax;
}
header .logo img {
  display: block;
  width: 4rem;
}

aside {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: fixed;
  top: 50%;
  left: 1rem;
  transform: translate(0, -50%);
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100vmax;
  transition: 0.2s cubic-bezier(0.5, 1, 0.8, 1);
}
aside div:not(:last-child) {
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 0.5rem;
  border-radius: inherit;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.5, 1, 0.8, 1);
}
aside div:not(:last-child):hover {
  background-color: rgba(255, 255, 255, 0.1);
}
aside div:not(:last-child):active {
  background-color: rgba(255, 255, 255, 0.2);
}
aside div:not(:last-child) > svg {
  color: white;
}
aside #sidebarToggle {
  position: fixed;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 50%;
  right: -85%;
  translate: 0 -50%;
  padding: 1rem 0.5rem;
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100vmax;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.5, 1, 0.8, 1);
}
aside #sidebarToggle > svg {
  transition: inherit;
}

main {
  width: 80%;
  margin: 0 auto;
}
main #hero {
  display: grid;
  width: 100%;
  height: 100vh;
}
main #hero #partners {
  place-self: end center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-flow: row wrap;
}
main #hero #partners > div {
  display: flex;
  flex-flow: row nowrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem;
}
main #hero #partners h4 {
  flex: 100%;
  text-align: center;
}
main #hero #partners img {
  width: 4rem;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
main #hero #bar {
  position: absolute;
  top: 50vh;
  right: 0rem;
  transform: translateY(-50%);
  width: 65vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-flow: row nowrap;
  padding: 1rem;
  background: linear-gradient(to bottom right, rgb(25, 43, 73) 30%, rgba(252, 78, 0, 0.5));
}
main #hero #bar #barContent {
  display: flex;
  flex-flow: row wrap;
  gap: 2rem;
}
main #hero #bar #barContent #barDesc {
  display: flex;
  flex-flow: column nowrap;
}
main #hero #bar #barContent #barDesc h1 {
  font-size: 2rem;
  font-weight: 700;
}
main #hero #bar #barContent #barDesc p {
  padding: 1rem 0;
  color: grey;
}
main #hero #bar #barContent #barBtns {
  display: flex;
  flex-flow: row nowrap;
  gap: 1rem;
}
main #hero #bar #barGraphic {
  display: grid;
  place-items: center;
}
main #hero #bar #barGraphic > img {
  position: absolute;
  width: 95%;
  transition: 0.2s cubic-bezier(0.5, 1, 0.8, 1);
}
main #products {
  width: 100%;
  height: 100vh;
}
main #products #productsContainer {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
}
main #products #productsContainer #img-container {
  place-self: center;
}
main #products #productsContainer #img-container #test {
  width: 60%;
  display: block;
}
main #products #productsContainer #img-container img {
  width: 75%;
  display: block;
}
main #products #productsContainer #text-container {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 1rem;
  width: 80%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
main #products #productsContainer #text-container div {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.5rem;
  align-items: center;
}
main #products #productsContainer #text-container div img:first-child {
  width: 10rem;
}
main #products #productsContainer #text-container div img:last-child {
  width: 8rem;
}
main #apps {
  width: 100%;
  height: 100vh;
}
main .banner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 9rem;
  position: absolute;
  left: -2.5vw;
  width: 105vw;
  height: 10rem;
  padding: 0 1rem;
  background-color: rgba(233, 79, 28, 0.5);
  overflow: hidden;
}
main .banner p {
  width: 50%;
}
main .banner img {
  width: 11.1%;
  aspect-ratio: 3/2;
  -o-object-fit: contain;
     object-fit: contain;
}
main .bannerAlt {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: center;
  gap: 1rem;
  position: absolute;
  left: -2.5vw;
  width: 105vw;
  height: auto;
  padding: 2rem 3rem;
  background-color: rgba(233, 79, 28, 0.5);
  overflow: hidden;
}
main .bannerAlt p {
  width: 100%;
}
main .bannerAlt img {
  justify-self: right;
  width: 25%;
  aspect-ratio: 3/2;
  -o-object-fit: contain;
     object-fit: contain;
}
main .bannerAlt button {
  justify-self: left;
}
main .line-container {
  width: 100%;
  display: grid;
  place-items: center;
}
main .line-container > .line {
  height: 8rem;
  width: 0.05rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #e94f1c 100%);
}
main .line-container .circle {
  display: grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 100vmax;
  background: linear-gradient(to right, rgb(25, 43, 73) 10%, rgba(252, 78, 0, 0.5));
  font-size: 1.25rem;
  font-weight: bold;
}
main .line-container > h2 {
  background-image: linear-gradient(to right, rgb(25, 43, 73) 10%, rgba(252, 78, 0, 0.5));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  display: flex;
}
footer > section {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 0.5rem;
}
footer > section > span {
  font-weight: 100;
  color: rgba(255, 255, 255, 0.5);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
footer #footerLeft {
  justify-content: start;
}
footer #footerRight {
  justify-content: end;
}

@media only screen and (max-width: 768px) {
  #headerLeft .logo {
    display: none !important;
  }
  #headerLeft #menu {
    display: block !important;
  }
  #headerCenter > a:not(:nth-child(1)) {
    display: none !important;
  }
  #headerRight div.nav-link {
    display: none !important;
  }
  #headerRight div:has(svg) {
    display: block !important;
  }
  #headerRight .cart {
    border-radius: 0.25rem !important;
  }
  #headerRight .cart > span {
    display: none !important;
  }
  #headerRight .cart > svg {
    display: block !important;
  }
}
@media only screen and (max-width: 800px) {
  #headerLogo {
    grid-area: headerNav !important;
    justify-self: center !important;
  }
  #headerLogo #language-switch {
    display: none !important;
  }
  #headerNav {
    grid-area: headerLogo !important;
    justify-self: left !important;
  }
  #headerNav > a {
    display: none !important;
  }
  #headerNav > button {
    display: flex !important;
  }
  #headerNav #mobileMenu {
    display: flex !important;
  }
  #headerUser a:has(svg) {
    display: block !important;
  }
  #headerUser a:not(:has(svg)) {
    display: none !important;
  }
  aside {
    display: none !important;
  }
  footer {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  footer > section {
    justify-content: center;
    flex-flow: column;
    gap: 1rem;
  }
  footer > section > span {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */