/* Source - https://stackoverflow.com/a/60219624
Posted by JamesWilson, modified by community. See post 'Timeline' for change history
Retrieved 2026-03-17, License - CC BY-SA 4.0 */

/* *
 * Remove focus styles for non-keyboard focus. */

:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/* *
 * Cross-browser styles for explicit focus via 
 * keyboard-based (eg Tab) navigation or the
 * .focus-visible utility class. */

:focus, .focus-visible:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: 0 0 0 .2rem #fff, 0 0 0 .35rem #069;
}

p, h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

.accordion-item p {
  text-wrap: unset;
}

.object-fit-contain {
  object-fit: contain !important;
}

.figure-caption {
  font-size: .875em;
  color: inherit;
}

.card-body {
  flex: 1 1 auto;
  padding: 16px;
}

.bs-icon.bs-icon-primary-light {
  background: transparent;
}

:root {
  --testimonies-max-width: 700px;
  --swiper-pagination-bullet-inactive-opacity: 0.4;
  scroll-behavior: smooth;
}

#testimonies {
  text-align: center;
}

@media (min-width: 300px) {
  #swiper .swiper-slide {
    padding: 2rem 1rem;
  }
}

@media (min-width: 576px) {
  #swiper .swiper-slide {
    padding: 2rem 2rem;
  }
}

@media (min-width: 800px) {
  #swiper .swiper-slide {
    padding: 2rem 0rem;
  }
}

@media (min-width: 800px) {
  #swiper .swiper-slide > * {
    max-width: var(--testimonies-max-width);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 800px) {
  #swiper {
    --swiper-navigation-sides-offset: calc((100% - var(--testimonies-max-width)) / 2 - var(--swiper-navigation-size));
  }
}

@media (min-width: 992px) {
  #swiper .swiper-navigation {
    display: flex;
  }
}

@media (max-width: 800px) {
  #swiper .swiper-navigation {
    display: none;
  }
}

#swiper h2 {
  margin-bottom: 2rem;
}

.blockquote p br {
  display: block;
  margin-bottom: 1rem;
}

.swiper-pagination-bullet {
  transition: all 0.2s;
}

.blockquote-footer {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: .875em;
  color: #6c757d;
  text-align: right !important;
}

/* for the brand logo */

/* .navbar-brand .img-fluid {
  width: 164px !important;
  height: 150px !important;
  aspect-ratio: 164 / 150;
} */

