:root {
  --bs-primary: #6b63ff;
  --bs-primary-rgb: 107,99,255;
  --bs-secondary: #8d87ff;
  --bs-secondary-rgb: 141,135,255;
}

.underline:after {
  background: var(--bs-secondary)!important;
}

.prod-grid {
  gap: 40px;
  row-gap: 40px;
}

.prod-square {
  width: 175px;
  height: 175px;
  display: block;
  background: rgba(0,0,0,0.67);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.prod-square-overlay a {
  width: 100%;
}

.prod-square h5 {
  color: var(--bs-light);
  font-weight: 900;
}

.prod-square-overlay {
  opacity: 0;
  background: rgba(0,0,0,0.67);
  padding: 15px;
  transition: opacity 0.8s;
  width: 100%;
  height: 100%;
}

.prod-square-overlay:hover {
  opacity: 1;
}

.home-hero {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.home-hero-fullscreen {
  min-height: 100vh;
  background: linear-gradient(rgba(19,22,58,0.6), rgba(19,22,58,0.75)), url("../../assets/img/stock/pexels-silver-works-2244330.jpg") center / cover no-repeat;
  padding-top: 6rem;
}

.home-value-cards {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.home-features {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.home-faq {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.home-faq .accordion-item {
  margin-bottom: 1rem;
}

.home-faq .accordion-button {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.home-faq .accordion-body {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.about-hero {
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

.about-priorities {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.about-priorities .row {
  row-gap: 2rem;
  margin-bottom: 1.5rem;
}

.about-values {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.about-values .card {
  min-height: 100%;
}

.about-cta {
  padding-top: 4.5rem;
  padding-bottom: 5rem;
}

@media (max-width: 575.98px) {
  .about-hero .about-image, .home-hero .home-image {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .home-hero-fullscreen {
    min-height: 92vh;
    padding-top: 5.5rem;
    background-position: center;
  }
}

.home-image, .about-image {
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .home-image, .about-image {
    min-height: 0 !important;
  }
}

