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

html { -webkit-text-size-adjust: 100%; }

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 3rem; letter-spacing: -.025rem; }
h2 { font-size: 2.25rem; line-height: 1.25; letter-spacing: .05rem; }
h3 { font-size: 1.875rem; }
h3, h4 { line-height: 1.375; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; line-height: 1.375; font-weight: 600; }
h6 { font-size: 1rem; line-height: 1.625; font-weight: 600; }

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

a {
  color: #cb0c9f;
  letter-spacing: -.025rem;
  text-decoration: none;
}

a:hover {
  color: #830866;
  text-decoration: none;
}

ol,
ul {
  padding-left: 2rem;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

b,
strong {
  font-weight: 700;
}

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

img, svg { vertical-align: middle; }
button, input, select, textarea { margin: 0; font: inherit; }
button { text-transform: none; }
button:not(:disabled) { cursor: pointer; }

.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 1.5rem);
  padding-left: var(--bs-gutter-x, 1.5rem);
  margin-right: auto;
  margin-left: auto;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

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

.g-3 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
.g-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
.g-5 { --bs-gutter-x: 3rem; --bs-gutter-y: 3rem; }

.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-items-center { align-items: center !important; }
.align-items-stretch { align-items: stretch !important; }
.justify-content-center { justify-content: center !important; }
.gap-2 { gap: .5rem !important; }
.gap-3 { gap: 1rem !important; }
.h-100 { height: 100% !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mx-auto { margin-right: auto !important; margin-left: auto !important; }
.ms-auto { margin-left: auto !important; }
.text-center { text-align: center !important; }
.text-muted { color: #6c757d !important; }
.shadow-none { box-shadow: none !important; }
.img-fluid { max-width: 100%; height: auto; }

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

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

.navbar-brand {
  padding-top: .40625rem;
  padding-bottom: .40625rem;
  margin-right: 1rem;
  font-size: 1.125rem;
  text-decoration: none;
  white-space: nowrap;
}

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

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

.navbar-toggler {
  padding: .25rem .75rem;
  font-size: 1.125rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: .5rem;
  transition: box-shadow .15s ease-in-out;
}

.navbar-toggler:hover { text-decoration: none; }

.nav-link {
  display: block;
  text-decoration: none;
}

.dropdown { position: relative; }
.dropdown-toggle { white-space: nowrap; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  z-index: 1000;
  display: none;
  min-width: 11rem;
  padding: .5rem 0;
  margin: 0;
  font-size: .875rem;
  color: #67748e;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid transparent;
  border-radius: .5rem;
}
.dropdown-menu.show { display: block; }
.dropdown-item {
  display: block;
  width: 100%;
  padding: .3rem 1rem;
  clear: both;
  font-weight: 400;
  color: #67748e;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:focus,
.dropdown-item:hover {
  color: #252f40;
  background-color: #e9ecef;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #67748e;
  text-decoration: none;
  background-color: transparent;
}

.collapse:not(.show) { display: none; }
.collapsing {
  display: block;
  height: 0;
  overflow: hidden;
  transition: height .25s ease;
}

.accordion-header { margin-bottom: 0; }
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 1rem;
  line-height: 1.35;
  text-align: left;
  border: 0;
  overflow-anchor: none;
  transition: color .15s ease-in, background-color .15s ease-in, border-radius .15s ease;
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-left: auto;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(225deg) translate(-2px, -2px);
}
.accordion-collapse { overflow: hidden; }

.form-label {
  display: inline-block;
  margin-bottom: .5rem;
}
.form-control,
.form-select {
  display: block;
  width: 100%;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  appearance: none;
}
.form-control[readonly] { background-color: #e9ecef; opacity: 1; }
textarea.form-control { min-height: calc(1.5em + 1.6rem + 2px); }
.form-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 13px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: .125rem;
}
.form-check-input {
  float: left;
  width: 1em;
  height: 1em;
  margin-top: .25em;
  margin-left: -1.5em;
}
.form-check-label { display: inline-block; }

@media (max-width: 575.98px) {
  .row {
    margin-right: 0;
    margin-left: 0;
  }
}

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

@media (min-width: 768px) {
  .container { max-width: 720px; }
  .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .flex-md-row { flex-direction: row !important; }
}

@media (min-width: 992px) {
  .container { max-width: 960px; }
  .navbar-expand-lg { flex-wrap: nowrap; justify-content: flex-start; }
  .navbar-expand-lg .navbar-nav { flex-direction: row; }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler { display: none; }
  .navbar-expand-lg .dropdown-menu { position: absolute; }
  .dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    top: 0;
    transform-origin: 50% 0;
    pointer-events: none;
    transform: perspective(999px) rotateX(-10deg) translateZ(0) translate3d(0, 37px, 0) !important;
    transition: visibility .25s, opacity .25s, transform .25s;
    backface-visibility: hidden;
    will-change: transform, box-shadow;
    box-shadow: 0 8px 26px -4px hsla(0, 0%, 8%, .15), 0 8px 9px -5px hsla(0, 0%, 8%, .06);
  }
  .dropdown .dropdown-menu.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: perspective(999px) rotateX(0deg) translateZ(0) translate3d(0, 37px, 5px) !important;
  }
  .dropdown:not(.dropdown-hover) .dropdown-menu {
    margin-top: 8px !important;
  }
  .dropdown-item {
    transition: background-color .3s ease, color .3s ease;
  }
  .col-lg { flex: 1 0 0%; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-lg-9 { flex: 0 0 auto; width: 75%; }
  .align-items-lg-center { align-items: center !important; }
  .gap-lg-1 { gap: .25rem !important; }
  .ms-lg-2 { margin-left: .5rem !important; }
}

@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar-toggler,
  .collapsing,
  .accordion-button,
  .accordion-button::after,
  .dropdown .dropdown-menu,
  .dropdown-item {
    transition: none !important;
  }
}

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

@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}
