/* Smooth scroll */

html {
  scroll-behavior: smooth;
}

/* Force Responsive behavior */

html, body {
  overflow-x: hidden;
}

/* Body font */

* {
  font-family: popins, sans-serif;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Desktop & tablet: 6 in one row */

@media (min-width: 768px) {
  .brand-img {
    max-width: 120px;
  }
}

/* Mobile: prevent overflow, allow wrapping */

@media (max-width: 767px) {
  .brand-img {
    max-width: 90px;
  }
}

.brand-img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

/* Accordion arrow color – WHITE */

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

/* Reduce accordion */

.accordion-wrapper {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  flex: 0 0 auto;
}

