/*
  Local fallback for the Bootstrap classes used by this page.
  If the CDN loads, Bootstrap still provides the full framework. If it does not,
  this keeps the presentation from degrading into plain HTML.
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

img,
svg {
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: inherit;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.row > * {
  flex-shrink: 0;
  max-width: 100%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }
}

@media (min-width: 1200px) {
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
}

.g-3 {
  gap: 1rem 0;
}

.g-4 {
  gap: 1.5rem 0;
}

.g-5 {
  gap: 3rem 0;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex !important;
}

.inline-flex {
  display: inline-flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-center {
  justify-content: center !important;
}

.text-center {
  text-align: center !important;
}

.position-relative {
  position: relative !important;
}

.fixed-top {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1030;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.h-100 {
  height: 100% !important;
}

.w-100 {
  width: 100% !important;
}

.img-fluid {
  height: auto;
  max-width: 100%;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.navbar {
  align-items: center;
  display: flex;
  min-height: 4.5rem;
  padding: 0.75rem 0;
}

.navbar > .container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.navbar-brand {
  align-items: center;
  display: flex;
  margin-right: 1rem;
  text-decoration: none;
}

.navbar-toggler {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 0.375rem;
  cursor: pointer;
  display: block;
  padding: 0.45rem 0.65rem;
}

.navbar-toggler-icon {
  background:
    linear-gradient(currentColor, currentColor) center 25%/1.5rem 2px no-repeat,
    linear-gradient(currentColor, currentColor) center 50%/1.5rem 2px no-repeat,
    linear-gradient(currentColor, currentColor) center 75%/1.5rem 2px no-repeat;
  display: block;
  height: 1.5rem;
  width: 1.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
}

.collapse:not(.show) {
  display: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.nav-link {
  display: block;
  padding: 0.55rem 0;
  text-decoration: none;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .nav-link {
    padding: 0.5rem 0.75rem;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .py-lg-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }
}

.card {
  background-clip: border-box;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.5rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 0.45rem;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  padding: 0.55rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
  user-select: none;
}

.btn-lg {
  border-radius: 0.55rem;
  font-size: 1.05rem;
  padding: 0.75rem 1.25rem;
}

.btn-sm {
  border-radius: 0.35rem;
  font-size: 0.875rem;
  padding: 0.35rem 0.7rem;
}

.btn-primary {
  background-color: var(--bs-btn-bg, #0d6efd);
  border-color: var(--bs-btn-border-color, #0d6efd);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--bs-btn-hover-bg, #0b5ed7);
  border-color: var(--bs-btn-hover-border-color, #0a58ca);
  color: #fff;
}

.btn-outline-primary {
  border-color: var(--bs-btn-border-color, #0d6efd);
  color: var(--bs-btn-color, #0d6efd);
}

.btn-outline-primary:hover {
  background-color: var(--bs-btn-hover-bg, #0d6efd);
  border-color: var(--bs-btn-hover-border-color, #0d6efd);
  color: #fff;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.78);
  color: #fff;
}

.btn-outline-light:hover {
  background-color: #fff;
  border-color: #fff;
  color: #24211d;
}

.badge {
  border-radius: 999px;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.5rem 0.75rem;
}

.text-bg-light {
  background-color: #f8f9fa;
  color: #212529;
}

.border {
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
}

.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.35rem rgba(0, 0, 0, 0.075) !important;
}

.rounded-3 {
  border-radius: 0.5rem !important;
}

.bg-body-tertiary {
  background-color: #fff !important;
}

.bg-black {
  background-color: #000 !important;
}

.text-white {
  color: #fff !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-secondary {
  color: #6c757d !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.small {
  font-size: 0.875rem !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
}

.display-4 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
}

.h5 {
  font-size: 1.25rem;
}

.form-label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.form-control {
  appearance: none;
  border: 1px solid #ced4da;
  border-radius: 0.45rem;
  display: block;
  font: inherit;
  padding: 0.75rem 0.9rem;
  width: 100%;
}

.form-control:focus {
  border-color: #c99b52;
  box-shadow: 0 0 0 0.2rem rgba(201, 155, 82, 0.22);
  outline: 0;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.py-4 {
  padding-bottom: 1.5rem !important;
  padding-top: 1.5rem !important;
}

.py-5 {
  padding-bottom: 3rem !important;
  padding-top: 3rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}
