:root {
  --container-padding: max(1.75em, 1.75vw);
  --row-gap: calc(var(--container-padding) + 15px);
  --col-gap: calc(var(--container-padding) + 15px);
  --color-border-rgb: 159, 161, 163;
  --color-border: rgba(var(--color-border-rgb), 0.225);

  --primary-color: #ff2800;
  --accent-color: #ff2800;
  --nav-btn-bg: #353535;
  --color-light-rgb: 0, 0, 0;
  --color-text: rgba(var(--color-light-rgb), 0.7);

  /* Radius */
  --rad-xs: 0.25rem;
  --rad-sm: 0.5rem;
  --rad-md: 0.75rem;
  --rad-xl: 2rem;
  --rad-full: 999rem;

  /* Font size */
  --text-xs: 0.875rem;
  --text-regular: 1rem;
  --text-sm: 1.25rem;
  --text-md: 1.5rem;
  --text-lg: 2rem;
  --text-xl: 2.5rem;
  --text-xxl: 3.5rem;
  --section-title: 3rem;

  --dynamic-height: calc(var(--vh, 1vh) * 100);
  --header-height: --header-height;

  --transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

@font-face {
  font-family: Aeonik;
  src: url(../fonts/Aeonik-Light.otf);
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: Aeonik;
  src: url(../fonts/Aeonik-Regular.otf);
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Prime;
  src: url(../fonts/Prime.ttf);
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Jet Brains;
  src: url(../fonts/JetBrainsMono-ExtraBold.ttf);
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Formula;
  src: url(../fonts/Formula.woff);
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat-SemiBold.ttf);
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat-Bold.ttf);
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat-Regular.ttf);
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat-Medium.ttf);
  font-weight: 500;
  font-display: swap;
}

/* Custom Clases */

.h-font,
.h-font > * {
  font-family: var(--h-font);
  line-height: 0.85em;
}

.text-xs,
.text-xs > * {
  font-size: var(--text-xs);
}
.text-regular,
.text-regular > * {
  font-size: var(--text-regular);
}
.text-sm,
.text-sm > * {
  font-size: var(--text-sm);
}
.text-md,
.text-md > * {
  font-size: var(--text-md);
}
.text-lg,
.text-lg > * {
  font-size: var(--text-lg);
}
.text-xl,
.text-xl > * {
  font-size: var(--text-xl);
}
.text-xxl,
.text-xxl > * {
  font-size: var(--text-xxl);
}
.text-title,
.text-title > * {
  font-size: var(--text-title);
}

.rad-sm {
  border-radius: var(--rad-sm);
  overflow: hidden;
}
.rad-md {
  border-radius: var(--rad-md);
  overflow: hidden;
}
.rad-lg {
  border-radius: var(--rad-lg);
  overflow: hidden;
}
.rad-xl {
  border-radius: var(--rad-xl);
  overflow: hidden;
}
.rad-full {
  border-radius: var(--rad-full);
  overflow: hidden;
}

.uppercase,
.uppercase > * {
  text-transform: uppercase;
}

.bold {
  font-weight: 700;
}
.semi-bold {
  font-weight: 500;
}

.section-title {
  margin-bottom: 1.5rem;
}
.section-title > * {
  font-size: var(--section-title);
  font-weight: 700;
}

.accent {
  color: var(--primary-color);
}

.container-fluid {
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.container-fluid .row {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container {
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  max-width: 100%;
}

.row {
  max-width: 100%;
  margin: 0 auto;
}

html {
  font-size: 1vw;
}

body {
  font-family: "Aeonik";
  color: #000000;
  font-weight: 300;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: #000000;
  text-decoration: none;
}

h1 {
  /* font-family: "Prime"; */
  font-family: "Jet Brains";
  /* font-family: "Formula"; */
}
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat";
}

p {
  color: #6e6e6e;
  font-family: "Montserrat";
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
}
p:last-of-type {
  margin-bottom: 0;
}

button:focus,
.btn:focus {
  box-shadow: none !important;
  outline: none !important;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

/* .section-title {
  margin-bottom: 1rem;
} */
.section-title > * {
  font-size: clamp(2.5rem, 3vw, 5rem);
  font-weight: 500;
  font-family: "Formula";
  color: #000000;
}

.section-title.xl > * {
  font-size: clamp(3rem, calc(5vw + 5vh), 10rem);
  line-height: 0.6em;
  margin-bottom: 0;
  font-family: "Prime";
}

.product-title.sm > * {
  font-size: 1rem;
  line-height: 1em;
  font-weight: 400;
  margin-bottom: 0;
  font-family: "Aeonik";
  letter-spacing: 0.05em;
  color: #fff;
}

.product-title.sm > * > * {
  color: white;
}

.post-title.sm > * {
  font-size: clamp(1rem, calc(5vw + 5vh), 1.3rem);
  line-height: 1em;
  font-weight: 400;
  margin-bottom: 0;
  font-family: "Aeonik";
  letter-spacing: 0.1em;
  color: #fff;
}

.post-title.sm > * > * {
  color: #000000;
}

.module-text.md > * {
  font-size: 1.275rem;
}
.subheading > * {
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
}

.fh {
  min-height: 100vh;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumbs .breadcrumb {
  background: transparent;
  padding: 0;
  justify-content: center;
  gap: 0.5em;
}

.breadcrumbs .breadcrumb .breadcrumb-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumbs .breadcrumb .breadcrumb-arrow svg path {
  stroke: var(--color-text);
}

.breadcrumbs .breadcrumb li.active {
  color: rgb(148 148 148);
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
}

.breadcrumbs .breadcrumb a,
.breadcrumbs .breadcrumb li {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
}

/*--------------------------------------------------------------
# SPLINE TEST
--------------------------------------------------------------*/

/* .test-section {
  min-height: 100vh;
} */
#spline-code {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
#part-1,
#part-2,
#part-3 {
  min-height: 100vh;
}
/*
#spline-test {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
} */

/*--------------------------------------------------------------
# SPLINE TEST
--------------------------------------------------------------*/
