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

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

body {
  margin: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container,
.container-fluid {
  width: 100%;
  margin-inline: auto;
  padding-inline: 12px;
}

.container {
  max-width: 1320px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -12px;
}

.row > * {
  width: 100%;
  padding-inline: 12px;
}

.col-md-5,
.col-md-7 {
  flex: 0 0 auto;
  width: 100%;
}

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

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

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

.navbar-brand {
  white-space: nowrap;
}

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

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

.navbar-toggler {
  border: 0;
  background: transparent;
}

.offcanvas {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  outline: 0;
  transform: translateX(100%);
  transition: transform 0.22s ease, visibility 0.22s ease;
}

.offcanvas.show {
  visibility: visible;
  transform: none;
}

.offcanvas-end {
  right: 0;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}

.offcanvas-body {
  flex-grow: 1;
  padding: 16px;
  overflow-y: auto;
}

.offcanvas-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1025;
  background: rgba(2, 6, 23, 0.66);
}

body.offcanvas-open {
  overflow: hidden;
}

.btn-close {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  opacity: 0.9;
}

.btn-close::before,
.btn-close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
}

.btn-close::before {
  transform: rotate(45deg);
}

.btn-close::after {
  transform: rotate(-45deg);
}

.btn-close-white {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
}

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

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

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

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

.flex-grow-1 {
  flex-grow: 1 !important;
}

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

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

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

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

.gap-4 {
  gap: 1.5rem !important;
}

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

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

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

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

.mx-2 {
  margin-inline: 0.5rem !important;
}

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-reset {
  color: inherit !important;
}

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

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

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

@media (min-width: 768px) {
  .col-md-5 {
    width: 41.666667%;
  }

  .col-md-7 {
    width: 58.333333%;
  }

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

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

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

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

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

  .mb-md-0 {
    margin-bottom: 0 !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 .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent;
    transition: none;
  }

  .navbar-expand-lg .offcanvas-header {
    display: none;
  }

  .navbar-expand-lg .offcanvas-body {
    display: flex;
    align-items: center;
    padding: 0;
    overflow: visible;
  }

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

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

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

@media (max-width: 767.98px) {
  .d-md-block {
    display: none !important;
  }
}
