@font-face {
  font-family: "poppins";
  src: url("fonts/Poppins-Bold-dkvJ0T8.ttf");
  font-weight: 900;
}
@font-face {
  font-family: "poppins";
  src: url("fonts/Poppins-SemiBold-u6Y9fHz.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "poppins";
  src: url("fonts/Poppins-Medium-swBHwia.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "poppins";
  src: url("fonts/Poppins-Regular-hBRJlB7.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "archivo-black";
  src: url("fonts/ArchivoBlack-Regular-YHRk68q.ttf");
  font-weight: 900;
}
.my-8 {
  margin-block: 8rem;
}

html.dark-mode {
  --primary: #ffb800;
  --secondary: #b026ff;
  --accent-acid: #ccff00;
  --success: #00ff9f;
  --danger: #ff0055;
  --warning: #f58600;
  --light: #e0e0e0;
  --dark: rgb(8, 9, 10);
  --shadow-dark: rgba(8, 9, 10, 0.63);
  --shadow-light: rgba(224, 224, 224, 0.1);
  --primary-950: #1f1600;
  --primary-900: #3d2b00;
  --primary-800: #7a5600;
  --primary-700: #b88200;
  --primary-600: #f5ad00;
  --primary-500: #ffb800;
  --primary-400: #ffc633;
  --primary-300: #ffd466;
  --primary-200: #ffe299;
  --primary-100: #fff1cc;
  --primary-50: #fff8e6;
  --secondary-950: #1a052e;
  --secondary-900: #310a54;
  --secondary-800: #4b1080;
  --secondary-700: #6b17b6;
  --secondary-600: #8c1deb;
  --secondary-500: #b026ff;
  --secondary-400: #c457ff;
  --secondary-300: #d888ff;
  --secondary-200: #ebb9ff;
  --secondary-100: #f5e0ff;
  --secondary-50: #faf0ff;
  --acid-950: #121a00;
  --acid-900: #263300;
  --acid-500: #ccff00;
  --acid-50: #fdffee;
  --danger-950: #29000e;
  --danger-900: #52001b;
  --danger-800: #8f002f;
  --danger-700: #c70041;
  --danger-600: #f0004f;
  --danger-500: #ff0055;
  --danger-400: #ff3377;
  --danger-300: #ff6699;
  --danger-200: #ff99bb;
  --danger-100: #ffccdd;
  --danger-50: #ffe6ee;
  --gray-950: #08090a;
  --gray-900: #0d0e12;
  --gray-800: #16171d;
  --gray-700: #23242b;
  --gray-600: #32343d;
  --gray-500: #454752;
  --gray-400: #6d6f7b;
}

html.light-mode {
  --primary: #ffb800;
  --secondary: #b026ff;
  --accent-acid: #b6e600;
  --success: #00c27a;
  --danger: #e6004c;
  --warning: #f58600;
  --light: #08090a;
  --dark: #ffffff;
  --shadow-dark: rgba(255, 255, 255, 0.2);
  --shadow-light: rgba(169, 169, 169, 0.1);
  --primary-950: #1f1600;
  --primary-900: #3d2b00;
  --primary-800: #7a5600;
  --primary-700: #b88200;
  --primary-600: #f5ad00;
  --primary-500: #ffb800;
  --primary-400: #ffc633;
  --primary-300: #ffd466;
  --primary-200: #ffe299;
  --primary-100: #fff1cc;
  --primary-50: #fff8e6;
  --secondary-950: #1a052e;
  --secondary-900: #310a54;
  --secondary-800: #4b1080;
  --secondary-700: #6b17b6;
  --secondary-600: #8c1deb;
  --secondary-500: #b026ff;
  --secondary-400: #c457ff;
  --secondary-300: #d888ff;
  --secondary-200: #ebb9ff;
  --secondary-100: #f5e0ff;
  --secondary-50: #faf0ff;
  --acid-950: #121a00;
  --acid-900: #263300;
  --acid-500: #b6e600;
  --acid-50: #fdffee;
  --danger-950: #29000e;
  --danger-900: #52001b;
  --danger-800: #8f002f;
  --danger-700: #c70041;
  --danger-600: #f0004f;
  --danger-500: #e6004c;
  --danger-400: #ff3377;
  --danger-300: #ff6699;
  --danger-200: #ff99bb;
  --danger-100: #ffccdd;
  --danger-50: #ffe6ee;
  --gray-950: #ffffff;
  --gray-900: #f7f8fb;
  --gray-800: #eef0f6;
  --gray-700: #e3e6ef;
  --gray-600: #c9cedb;
  --gray-500: #a8afc1;
  --gray-400: #6d7385;
  --gray-300: #454a59;
  --gray-200: #232633;
  --gray-100: #0d0e12;
  --gray-50: #08090a;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  font-family: "poppins", Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.75rem;
  color: var(--dark);
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
  -webkit-user-select: none;
  user-select: none;
}

main {
  padding-top: 5.8rem;
  flex: 1;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
label {
  line-height: 1.35;
}

/* Balance text wrapping on headings */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "archivo-black", Helvetica, sans-serif;
  font-weight: 800;
  text-wrap: balance;
  line-height: 1.25;
}

/* A elements that don't have a class get default styles */
a,
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: var(--primary);
}

a {
  color: var(--primary);
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: var(--primary-700);
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--primary-700);
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 2em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0ms !important;
    scroll-behavior: auto !important;
  }
}
.btn.btn-primary {
  background-color: var(--primary-600);
  border-width: 3px;
  border-color: var(--primary-400);
  color: var(--light);
  font-weight: 900;
  text-shadow: 0px 3px 6px var(--shadow-dark);
  padding-inline: 1.25rem;
  font-size: 1.1rem;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background-color: var(--primary-500);
  border-color: var(--primary-600);
  color: var(--light);
}

.theme-switcher .label-text {
  margin-left: 16px;
}
.theme-switcher .indicator {
  display: flex;
  align-items: center;
}
.theme-switcher .toggle-state {
  display: none;
}

html.light-mode .theme-switcher .label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: #394a56;
}
html.light-mode .theme-switcher .toggle {
  isolation: isolate;
  position: relative;
  height: 30px;
  width: 60px;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid var(--gray-600);
  transition: box-shadow 0.05s ease-out;
}
html.light-mode .theme-switcher .indicator {
  justify-content: end;
  height: 100%;
  width: 200%;
  background: rgba(236, 240, 243, 0.4196078431);
  border-radius: 18px;
  border: 3px solid var(--gray-600);
  transform: translate3d(-75%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.85, 0.05, 0.18, 1.35), background 0.15s ease-in-out, box-shadow 0.05s ease-out;
}
html.light-mode .theme-switcher .indicator .icon-moon {
  display: none;
}
html.light-mode .theme-switcher .indicator .icon-sun {
  display: block;
  color: rgb(255, 130, 5);
  margin-right: 5px;
  font-size: 1rem;
}
html.light-mode .theme-switcher .toggle-state:checked ~ .indicator {
  transform: translate3d(25%, 0, 0);
}

html.dark-mode .theme-switcher .label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: #394a56;
}
html.dark-mode .theme-switcher .toggle {
  isolation: isolate;
  position: relative;
  height: 30px;
  width: 60px;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid var(--gray-600);
  transition: box-shadow 0.05s ease-out;
}
html.dark-mode .theme-switcher .indicator {
  justify-content: start;
  height: 100%;
  width: 200%;
  background: rgba(28, 28, 28, 0.4196078431);
  border-radius: 18px;
  border: 3px solid var(--gray-600);
  transform: translate3d(-75%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.85, 0.05, 0.18, 1.35), background 0.15s ease-in-out, box-shadow 0.05s ease-out;
}
html.dark-mode .theme-switcher .indicator .icon-sun {
  display: none;
}
html.dark-mode .theme-switcher .indicator .icon-moon {
  display: inline-block;
  color: aliceblue;
  margin-left: 5px;
  font-size: 0.75rem;
}
html.dark-mode .theme-switcher .toggle-state:checked ~ .indicator {
  transform: translate3d(25%, 0, 0);
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  background-color: var(--dark);
  color: var(--light);
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
}
footer p {
  text-align: center;
  line-height: 1.36;
}
footer img {
  height: 96px;
  width: 96px;
  margin-block: 0;
}

header.header {
  margin-top: 8rem;
  margin-bottom: 12rem;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: 120px 100px 80px;
  align-items: center;
  grid-template-areas: "title img" "subtitle img" "cta img";
}
@media (min-width: 768px) and (max-width: 1200px) {
  header.header {
    grid-template-rows: 180px 140px 80px;
  }
}
@media (max-width: 768px) {
  header.header {
    text-align: center;
    grid-template-columns: 1fr;
    grid-template-rows: 50px 1fr 80px 50px;
    grid-template-areas: "title" "img" "subtitle" "cta";
  }
}
header.header .title {
  max-width: 36ch;
  grid-area: title;
  text-wrap: balance;
}
header.header .subtitle {
  line-height: 1.5;
  font-size: 1.3rem;
  font-family: poppins, sans-serif;
  font-weight: 800;
  max-width: 580px;
  text-wrap: balance;
  grid-area: subtitle;
}
header.header .btn-cta {
  width: max-content;
  grid-area: cta;
}
header.header img {
  height: 550px;
  max-width: 100%;
  object-fit: contain;
  grid-area: img;
}

html.dark-mode .navbar-toggler-icon {
  filter: invert(1);
}
html.dark-mode nav.navbar .navbar-brand,
html.dark-mode nav.navbar .nav-link,
html.dark-mode nav.navbar .dropdown-item {
  text-shadow: 0 3px 6px var(--shadow-dark);
}

nav.navbar {
  background-color: rgba(var(--dark), 1);
  backdrop-filter: blur(48px);
  font-weight: 900;
}
nav.navbar .logo-img {
  height: 75px;
  width: 75px;
}
nav.navbar .icon-theme {
  height: 75px;
  width: 75px;
}

nav.navbar .navbar-brand {
  color: var(--primary-600);
}

nav.navbar .nav-link,
nav.navbar .dropdown-item {
  color: var(--light);
}

nav.navbar .nav-link:hover,
nav.navbar .nav-link:focus,
nav.navbar .nav-link.show,
nav.navbar .dropdown-item:hover,
nav.navbar .dropdown-item:focus {
  color: var(--primary-400);
}

nav.navbar .dropdown-item:hover,
nav.navbar .dropdown-item:focus {
  background-color: var(--primary-700);
}

nav.navbar .nav-link.active {
  color: var(--primary-600);
}

nav.navbar .dropdown-menu.show {
  background-color: var(--dark);
}
nav.navbar .dropdown-menu.show > * {
  color: var(--light);
}

nav .nav-item {
  margin-inline: 0.081rem;
  text-transform: uppercase;
}

nav .nav-item:has(.bi) {
  padding-top: 1px;
}

nav .nav-item .bi.icon-bold {
  -webkit-text-stroke: 0.6px currentColor;
  stroke: none;
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .about-page .section-about-team .article-title {
    text-align: center !important;
  }
}

.blog-page article .article-subtitle {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-900);
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-family: "poppins", sans-serif;
  font-size: 1rem;
}
.blog-page article .article-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.contact-page .section-subtitle,
.contact-page .contact-form {
  max-width: 450px;
}

.section-foxride-details-features .article-title {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 2rem;
}
.section-foxride-details-features .article-subtitle {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-900);
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-family: "poppins", sans-serif;
  font-size: 1rem;
}

.section-why-foxride .article-subtitle {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-900);
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-family: "poppins", sans-serif;
}

.section-foxride-features article .article-title {
  min-height: 5.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 2rem;
}
.section-foxride-features article .article-text {
  min-height: 4rem;
}

.section-testimonials .card {
  background: var(--gray-900);
  color: var(--light);
  border: none;
  box-shadow: 0 4px 6px var(--shadow-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-testimonials .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px var(--shadow-dark);
}

.section-faq .section-subtitle {
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.5;
}
.section-faq .accordion-item {
  max-width: 720px;
  margin-inline: auto;
  border-color: #3b3b3b;
}
.section-faq .accordion-button {
  font-family: "poppins", sans-serif;
  font-weight: bolder;
  font-size: 1.1rem;
  background: var(--dark);
  color: var(--primary-600);
}
.section-faq .accordion-button:focus {
  box-shadow: none;
}
.section-faq .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.section-faq .accordion-body {
  background: var(--gray-900);
  color: var(--light);
  font-size: 1rem;
}

html.dark-mode .accordion-button::after {
  filter: invert(1);
}

.section-newsletter .section-title {
  max-width: 22ch;
  margin-inline: auto;
}
.section-newsletter .section-subtitle {
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.5;
}
.section-newsletter .btn-outline-primary {
  border-color: var(--primary-600);
  color: var(--primary-600);
  font-weight: bolder;
}
.section-newsletter .btn-outline-primary:hover {
  background-color: var(--primary-600);
  color: var(--dark);
  border-color: var(--primary-600);
}

/*# sourceMappingURL=app.output.css.map */
