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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

a {
  color: #0d6efd;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-right: .75rem;
  padding-left: .75rem;
}

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

.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: .5rem;
  padding-left: .5rem;
}

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

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

.navbar {
  display: flex;
  align-items: center;
  min-height: 3.5rem;
}

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

.navbar-brand,
.nav-link {
  text-decoration: none;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.navbar-toggler {
  padding: .4rem .65rem;
  border: 1px solid #d9e2ef;
  border-radius: .5rem;
  background: #fff;
}

.navbar-toggler-icon {
  display: block;
  width: 1.25rem;
  height: 1rem;
  background:
    linear-gradient(#142033, #142033) 0 0 / 100% 2px no-repeat,
    linear-gradient(#142033, #142033) 0 50% / 100% 2px no-repeat,
    linear-gradient(#142033, #142033) 0 100% / 100% 2px no-repeat;
}

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

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

.navbar-nav {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding-left: 0;
  margin: .75rem 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: .35rem 0;
  color: #66758a;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d9e2ef;
  border-radius: .75rem;
}

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

.card-footer {
  padding: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: .45rem .85rem;
  border: 1px solid transparent;
  border-radius: .5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-sm {
  min-height: 2rem;
  padding: .3rem .6rem;
  font-size: .875rem;
}

.btn-lg {
  min-height: 3rem;
  padding: .65rem 1rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

.btn-dark {
  background: #142033;
  border-color: #142033;
  color: #fff;
}

.btn-outline-primary {
  background: #fff;
  border-color: #0d6efd;
  color: #0d6efd;
}

.btn-outline-secondary {
  background: #fff;
  border-color: #cbd5e1;
  color: #475569;
}

.btn-outline-danger {
  background: #fff;
  border-color: #dc3545;
  color: #dc3545;
}

.form-label {
  display: inline-block;
  margin-bottom: .4rem;
  font-weight: 700;
}

.form-control,
.form-select {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  padding: .5rem .7rem;
  border: 1px solid #d9e2ef;
  border-radius: .5rem;
  background: #fff;
  color: #142033;
  font: inherit;
}

.form-range {
  width: 100%;
}

.input-group {
  display: flex;
}

.input-group > .form-control {
  min-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .25rem .5rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1;
}

.alert {
  padding: .75rem 1rem;
  border: 1px solid #d9e2ef;
  border-radius: .5rem;
  background: #fff;
}

.text-secondary {
  color: #66758a !important;
}

.text-primary {
  color: #0d6efd !important;
}

.text-bg-primary {
  background: #0d6efd;
  color: #fff;
}

.text-bg-success {
  background: #198754;
  color: #fff;
}

.text-bg-light {
  background: #f8fafc;
  color: #475569;
}

.bg-white {
  background: #fff !important;
}

.border {
  border: 1px solid #d9e2ef !important;
}

.border-bottom {
  border-bottom: 1px solid #d9e2ef !important;
}

.border-0 {
  border: 0 !important;
}

.rounded-4 {
  border-radius: 1rem;
}

.shadow-sm {
  box-shadow: 0 8px 22px rgba(20, 32, 51, .08);
}

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

.flex-wrap {
  flex-wrap: wrap !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.mt-1 {
  margin-top: .25rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

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

.me-auto {
  margin-right: auto !important;
}

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

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

.pt-0 {
  padding-top: 0 !important;
}

.fw-bold {
  font-weight: 800 !important;
}

.small,
small {
  font-size: .875rem;
}

.lead {
  font-size: 1.1rem;
}

.h3 {
  font-size: 1.45rem;
}

.h5 {
  font-size: 1.1rem;
}

.display-5 {
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.05;
}

.text-uppercase {
  text-transform: uppercase;
}

.stretched-link::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
}

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

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

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

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

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

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

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

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

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

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

  .navbar-expand-lg .nav-link {
    padding-right: .75rem;
    padding-left: .75rem;
  }

  .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%;
  }

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

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