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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #182230;
  background: #ffffff;
  text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

button {
  font: inherit;
}

.container,
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.container {
  max-width: 1160px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--gutter-x, 24px) * -0.5);
  margin-left: calc(var(--gutter-x, 24px) * -0.5);
  row-gap: var(--gutter-y, 0);
}

.row > * {
  width: 100%;
  padding-right: calc(var(--gutter-x, 24px) * 0.5);
  padding-left: calc(var(--gutter-x, 24px) * 0.5);
}

.g-4 {
  --gutter-x: 24px;
  --gutter-y: 24px;
}

.g-5 {
  --gutter-x: 40px;
  --gutter-y: 40px;
}

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

.align-items-stretch {
  align-items: stretch;
}

.h-100 {
  height: 100%;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.btn-primary {
  color: #ffffff;
  background: #0b66ff;
  border-color: #0b66ff;
}

.btn-primary:hover {
  background: #064dcc;
  border-color: #064dcc;
}

.btn-outline {
  color: #0b66ff;
  background: #ffffff;
  border-color: rgba(11, 102, 255, 0.24);
}

.btn-outline:hover {
  border-color: rgba(11, 102, 255, 0.5);
  background: #eef5ff;
}

.btn-light {
  color: #14315f;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-danger {
  color: #ffffff;
  background: #c62828;
  border-color: #c62828;
}

.btn-danger:hover {
  background: #9f1f1f;
  border-color: #9f1f1f;
}

.btn-lg {
  min-height: 50px;
  padding: 13px 22px;
}

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

@media (min-width: 992px) {
  .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%;
  }
}
