/* logo dark vs light switch based on theme dark vs light mode */

.logo-light {
  display: none;
}

.logo-dark {
  display: inline-block;
}

[data-bs-theme="dark"] .logo-light {
  display: inline-block;
}

[data-bs-theme="dark"] .logo-dark {
  display: none;
}

.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.government-section {
  background: linear-gradient(var(--bs-secondary), var(--bs-gray-900));
}

.define-cta {
  background: linear-gradient(var(--bs-secondary), var(--bs-gray-900));
}

/* Pricing centered badges */

.bg-white-300 {
  background: rgba(255, 255, 255, 0.3) !important;
}

.rounded-bottom-left {
  border-radius: 0;
  border-bottom-left-radius: .25rem!important;
}

.rounded-bottom-right {
  border-radius: 0;
  border-bottom-right-radius: .25rem!important;
}

/* Pricing centered icons */

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

/* Page Title Overlay */

.background-img {
  height: 50vh;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: var(--bs-secondary);
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
  color: var(--bs-light);
  background: var(--bs-primary);
}

/* Button */

.btn {
  font-weight: 600;
  cursor: pointer;
  box-shadow: inset 1px 1px 1px rgba(82, 85, 93, 0.18), inset -1px -1px 1px rgba(20, 23, 31, 0.55), 12px 12px 36px rgba(20, 23, 31, 0.73), -12px -12px 36px rgba(73, 76, 84, 0.47);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-image 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: inset 6px 6px 18px rgba(20, 23, 31, 0.83), inset -6px -6px 18px rgba(73, 76, 84, 0.47);
}

.btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

#expertise-section {
  background: repeating-linear-gradient(75deg, black, var(--bs-gray-700));
}

/* swiper card portrait */

.card-portrait {
  aspect-ratio: 4/5;
}

/* award column */

.column-50 {
  background: linear-gradient(90deg, var(--bs-body-bg) 50%, var(--bs-primary) 50%);
}

