:root {
  --orange: #ff8000;
  --blue: #47c7fc;
  --sky: #ebf2f8;
  --purple-light: #b3acd4;
  --purple-400: #a06dff;
  --purple: #9d4ffd;
  --purple-600: #6a2bff;
  --purple-dark: #30227e;
  --purple-dark-rgb: 48, 34, 126;
}

::marker {
  display: none;
}

body {
  font-family: "Poppins", var(--bs-body-font-family, sans-serif);
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensures the container spans the entire viewport height */
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/*	Header
--------------------------------------------- */
.header {
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.transition-bg-dark.scrolled {
  background-color: #101221; /* Color when scrolled */
}

footer > div,
header > div {
  margin: 0 auto;
  max-width: 1320px;
}

/* Navbar */
header .navbar {
  min-height: 70px;
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Off Canvas */
header .offcanvas-header {
  align-items: center;
  justify-content: flex-end;
  min-height: 70px;
  padding: 0 1.5rem;
}

header .offcanvas-body {
  padding: 1.5rem;
}

/*	Main
--------------------------------------------- */
main {
  flex: 1;
}

/*	Footer
--------------------------------------------- */
footer * {
  color: rgba(255, 255, 255, 0.55);
}

footer h4 {
  color: #fff;
}

footer a {
  color: rgba(255, 255, 255, 0.55);
  display: inline-block;
  margin: 2px 0;
  position: relative;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

.footer-top a:after {
  background-color: var(--purple);
  content: "";
  display: block;
  height: 1px;
  position: relative;
  transition: width 0.3s;
  width: 0;
}

.footer-top a:hover:after {
  width: 100%;
}

.sosumi {
  border-top: 1px solid #444;
  color: lightgray;
  font-size: 0.875rem;
}

/* Typography */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Montserrat";
  font-weight: 700;
}

h1,
.h1 {
  font-size: 5vh;
}

h4,
.h4 {
  font-weight: 800;
}

.ff-Montserrat {
  font-family: "Montserrat";
}

.ff-Poppins {
  font-family: "Poppins";
}

.fs-xs {
  font-size: 0.75rem;
}

.fs-sm {
  font-size: 0.875rem;
}

.fs-lg {
  font-size: 1.25rem;
}

.fs-xl {
  font-size: 6vh;
}

.ls-2 {
  letter-spacing: -0.04em;
}

.ls-3 {
  letter-spacing: -0.03em;
}

.ls-4 {
  letter-spacing: normal;
}

.text-justify {
  text-align: justify;
  text-justify: inter-word;
}

/* Backgrounds */
.bg-sky {
  background-color: var(--sky);
}

.bg-gradient-sky-white {
  background: linear-gradient(to bottom, var(--sky), #fff);
}

.bg-dark {
  background-color: #101221 !important;
}

.bg-dark-gray {
  background-color: #1a1c2d;
}

.bg-purple-light {
  background-color: var(--purple-light);
}

.bg-purple-400 {
  background-color: var(--purple-400);
}

.bg-purple {
  background-color: var(--purple);
}

.bg-purple-600 {
  background-color: var(--purple-600);
}

.bg-purple-dark {
  background-color: var(--purple-dark);
}

.bg-blue {
  background-color: var(--blue);
}

/* Borders */
.border-purple {
  border-color: var(--purple) !important;
}

/* Buttons */
.btn-default {
  background-color: var(--orange);
  border: none;
  color: #fff;
}

.btn-default:hover {
  background-color: var(--blue);
  color: #fff;
}

.btn-reverse {
  background-color: var(--blue);
  border: none;
  color: #fff;
}

.btn-reverse:hover {
  background-color: var(--orange);
  color: #fff;
}

.btn-purple {
  background-color: #7952b3;
  border-color: #7952b3;
  color: #fff;
}

.btn-purple:hover {
  background-color: #614092;
  border-color: #6a3381;
  color: #fff;
}

.btn-outline-purple {
  background-color: transparent;
  border-color: #7952b3;
  color: #614092;
}

.btn-outline-purple:hover {
  background-color: #614092;
  border-color: #6a3381;
  color: #fff;
}

/* Colors */
.purple-300 {
  color: var(--purple-light);
}

.purple-500 {
  color: var(--purple);
}

.purple-700 {
  color: var(--purple-dark);
}

/* Sections */
section {
  flex: 1;
  padding: 8vh 0;
}

section:not(.w-full) > div {
  margin: 0 auto;
  max-width: 1320px;
}

section.full-width > div {
  max-width: 100%;
}

.section-home-hero {
  background: url("/assets/images/hero-home.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  min-height: 100vh;
}

.section-why-hvma-hero {
  background: url("/assets/images/hero-why-hvma.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  min-height: 90vh;
  position: relative;
}

.section-why-hvma-hero:before {
  background: linear-gradient(to right, #30227e, transparent);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.section-why-hvma-hero .container {
  position: relative;
  z-index: 1;
}

/* Accordion */
.faq-accordion {
  border: none;
}

.faq-accordion .accordion-item {
  background-color: #fff;
  border-radius: 0.5rem;
  border: none;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-accordion .accordion-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
}

.faq-accordion .accordion-button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: #000;
  font-weight: 600;
  outline: none;
}

.faq-accordion .accordion-button.collapsed {
  background-color: #d5e4f1;
}

.faq-accordion .accordion-button.collapsed:hover {
  background-color: #fff;
}

.faq-accordion .accordion-body {
  padding-top: 0;
}

/* Products */
ul.product-tags {
  border-top: 1px solid #ccc;
  list-style: none;
  margin: 12px auto;
  padding: 12px 0;
  width: min(100%, 310px);
}

ul.product-tags li {
  align-items: flex-start;
  display: flex;
  font-size: 0.875rem;
  justify-content: space-between;
  text-align: left;
}

ul.product-tags li > img {
  opacity: 0.7;
}

ul.product-tags li > span {
  display: inline-block;
  text-align: left;
  width: calc(100% - 38px);
}

ul.marker-purple li::marker {
  color: var(--purple);
}

ul.prod-component-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.prod-component-list li {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin: 0;
  width: 50%;
}

ul.prod-component-list li:nth-child(odd) {
  padding-right: 2%;
  width: 48%;
}

ul.prod-component-list li img {
  margin: 10px 0;
  max-width: 100%;
  height: auto;
}

ul.prod-component-list li span {
  font-size: 14px;
  margin-left: 8px;
}

ul.prod-component-list li span em {
  font-style: normal;
}

.full-image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: -1;
}

/* Half Page Text */
.half-page {
  align-items: center;
  background-color: var(--bg);
  color: var(--text);
  display: flex;
  flex: 0 1 100%;
  height: 100%;
  width: 100%;
}

.half-page-text {
  background-color: var(--bg);
  color: var(--text);
  margin: 0 auto;
  padding: 1rem;
  text-align: left;
}

@media only screen and (min-width: 1400px) {
  .half-page-text {
    flex-basis: 76%;
    padding: 50px !important;
  }
}
/* Carousel */
.carousel-control-next,
.carousel-control-prev {
  background-color: #fff;
  border-radius: 50%;
  height: 2.5rem;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.15s ease;
  width: 2.5rem;
  z-index: 1;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  background-color: var(--purple);
}

.carousel:hover .carousel-control-next {
  opacity: 1;
  right: 50px;
}

.carousel:hover .carousel-control-prev {
  left: 50px;
  opacity: 1;
}

.carousel-control-next:hover .carousel-control-next-icon svg,
.carousel-control-prev:hover .carousel-control-prev-icon svg {
  fill: #fff;
}

.carousel-indicators {
  margin-left: 1rem;
  margin-right: 1rem;
  position: relative;
}

.carousel-indicators [data-bs-target] {
  width: 75px;
  height: 75px;
}/*# sourceMappingURL=styles.css.map */