/**
 * Part of earth project.
 *
 * @copyright  Copyright (C) 2018 {ORGANIZATION}. All rights reserved.
 * @license    GNU General Public License version 2 or later;
 */
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.object-fit-contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.object-fit-fill {
  -o-object-fit: fill !important;
     object-fit: fill !important;
}

.object-fit-scale {
  -o-object-fit: scale-down !important;
     object-fit: scale-down !important;
}

.object-fit-none {
  -o-object-fit: none !important;
     object-fit: none !important;
}

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

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

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

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

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

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

.d-inline-grid {
  display: inline-grid !important;
}

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

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

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

.shadow {
  -webkit-box-shadow: var(--bs-box-shadow) !important;
          box-shadow: var(--bs-box-shadow) !important;
}

.shadow-sm {
  -webkit-box-shadow: var(--bs-box-shadow-sm) !important;
          box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  -webkit-box-shadow: var(--bs-box-shadow-lg) !important;
          box-shadow: var(--bs-box-shadow-lg) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

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

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

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

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

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

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

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

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

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
      -ms-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
      -ms-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
      -ms-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

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

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

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

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

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

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

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

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

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

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

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

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

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

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

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

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

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}

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

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

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
      -ms-flex-order: -1 !important;
          order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
      -ms-flex-order: 0 !important;
          order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
      -ms-flex-order: 1 !important;
          order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
      -ms-flex-order: 3 !important;
          order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
      -ms-flex-order: 4 !important;
          order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
      -ms-flex-order: 5 !important;
          order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
      -ms-flex-order: 6 !important;
          order: 6 !important;
}

.m-10px {
  margin: 0.625rem !important;
}

.m-12px {
  margin: 0.75rem !important;
}

.m-14px {
  margin: 0.875rem !important;
}

.m-20px {
  margin: 1.25rem !important;
}

.m-28px {
  margin: 1.75rem !important;
}

.m-32px {
  margin: 2rem !important;
}

.m-36px {
  margin: 2.25rem !important;
}

.m-40px {
  margin: 2.5rem !important;
}

.m-60px {
  margin: 3.75rem !important;
}

.m-80px {
  margin: 5rem !important;
}

.m-100px {
  margin: 6.25rem !important;
}

.m-120px {
  margin: 7.5rem !important;
}

.m-0 {
  margin: 0 !important;
}

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

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

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

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

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

.m-auto {
  margin: auto !important;
}

.mx-10px {
  margin-right: 0.625rem !important;
  margin-left: 0.625rem !important;
}

.mx-12px {
  margin-right: 0.75rem !important;
  margin-left: 0.75rem !important;
}

.mx-14px {
  margin-right: 0.875rem !important;
  margin-left: 0.875rem !important;
}

.mx-20px {
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important;
}

.mx-28px {
  margin-right: 1.75rem !important;
  margin-left: 1.75rem !important;
}

.mx-32px {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

.mx-36px {
  margin-right: 2.25rem !important;
  margin-left: 2.25rem !important;
}

.mx-40px {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}

.mx-60px {
  margin-right: 3.75rem !important;
  margin-left: 3.75rem !important;
}

.mx-80px {
  margin-right: 5rem !important;
  margin-left: 5rem !important;
}

.mx-100px {
  margin-right: 6.25rem !important;
  margin-left: 6.25rem !important;
}

.mx-120px {
  margin-right: 7.5rem !important;
  margin-left: 7.5rem !important;
}

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

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

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

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

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

.my-10px {
  margin-top: 0.625rem !important;
  margin-bottom: 0.625rem !important;
}

.my-12px {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.my-14px {
  margin-top: 0.875rem !important;
  margin-bottom: 0.875rem !important;
}

.my-20px {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.my-28px {
  margin-top: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}

.my-32px {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.my-36px {
  margin-top: 2.25rem !important;
  margin-bottom: 2.25rem !important;
}

.my-40px {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.my-60px {
  margin-top: 3.75rem !important;
  margin-bottom: 3.75rem !important;
}

.my-80px {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.my-100px {
  margin-top: 6.25rem !important;
  margin-bottom: 6.25rem !important;
}

.my-120px {
  margin-top: 7.5rem !important;
  margin-bottom: 7.5rem !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

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

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

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

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

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

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-10px {
  margin-top: 0.625rem !important;
}

.mt-12px {
  margin-top: 0.75rem !important;
}

.mt-14px {
  margin-top: 0.875rem !important;
}

.mt-20px {
  margin-top: 1.25rem !important;
}

.mt-28px {
  margin-top: 1.75rem !important;
}

.mt-32px {
  margin-top: 2rem !important;
}

.mt-36px {
  margin-top: 2.25rem !important;
}

.mt-40px {
  margin-top: 2.5rem !important;
}

.mt-60px {
  margin-top: 3.75rem !important;
}

.mt-80px {
  margin-top: 5rem !important;
}

.mt-100px {
  margin-top: 6.25rem !important;
}

.mt-120px {
  margin-top: 7.5rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

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

.mt-2 {
  margin-top: 0.5rem !important;
}

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

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

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

.mt-auto {
  margin-top: auto !important;
}

.me-10px {
  margin-right: 0.625rem !important;
}

.me-12px {
  margin-right: 0.75rem !important;
}

.me-14px {
  margin-right: 0.875rem !important;
}

.me-20px {
  margin-right: 1.25rem !important;
}

.me-28px {
  margin-right: 1.75rem !important;
}

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

.me-36px {
  margin-right: 2.25rem !important;
}

.me-40px {
  margin-right: 2.5rem !important;
}

.me-60px {
  margin-right: 3.75rem !important;
}

.me-80px {
  margin-right: 5rem !important;
}

.me-100px {
  margin-right: 6.25rem !important;
}

.me-120px {
  margin-right: 7.5rem !important;
}

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

.me-1 {
  margin-right: 0.25rem !important;
}

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

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

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

.mb-10px {
  margin-bottom: 0.625rem !important;
}

.mb-12px {
  margin-bottom: 0.75rem !important;
}

.mb-14px {
  margin-bottom: 0.875rem !important;
}

.mb-20px {
  margin-bottom: 1.25rem !important;
}

.mb-28px {
  margin-bottom: 1.75rem !important;
}

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

.mb-36px {
  margin-bottom: 2.25rem !important;
}

.mb-40px {
  margin-bottom: 2.5rem !important;
}

.mb-60px {
  margin-bottom: 3.75rem !important;
}

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

.mb-100px {
  margin-bottom: 6.25rem !important;
}

.mb-120px {
  margin-bottom: 7.5rem !important;
}

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

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

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

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

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

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

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

.ms-10px {
  margin-left: 0.625rem !important;
}

.ms-12px {
  margin-left: 0.75rem !important;
}

.ms-14px {
  margin-left: 0.875rem !important;
}

.ms-20px {
  margin-left: 1.25rem !important;
}

.ms-28px {
  margin-left: 1.75rem !important;
}

.ms-32px {
  margin-left: 2rem !important;
}

.ms-36px {
  margin-left: 2.25rem !important;
}

.ms-40px {
  margin-left: 2.5rem !important;
}

.ms-60px {
  margin-left: 3.75rem !important;
}

.ms-80px {
  margin-left: 5rem !important;
}

.ms-100px {
  margin-left: 6.25rem !important;
}

.ms-120px {
  margin-left: 7.5rem !important;
}

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

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

.ms-2 {
  margin-left: 0.5rem !important;
}

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

.ms-4 {
  margin-left: 1.5rem !important;
}

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

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

.p-10px {
  padding: 0.625rem !important;
}

.p-12px {
  padding: 0.75rem !important;
}

.p-14px {
  padding: 0.875rem !important;
}

.p-20px {
  padding: 1.25rem !important;
}

.p-28px {
  padding: 1.75rem !important;
}

.p-32px {
  padding: 2rem !important;
}

.p-36px {
  padding: 2.25rem !important;
}

.p-40px {
  padding: 2.5rem !important;
}

.p-60px {
  padding: 3.75rem !important;
}

.p-80px {
  padding: 5rem !important;
}

.p-100px {
  padding: 6.25rem !important;
}

.p-120px {
  padding: 7.5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

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

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

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

.px-10px {
  padding-right: 0.625rem !important;
  padding-left: 0.625rem !important;
}

.px-12px {
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
}

.px-14px {
  padding-right: 0.875rem !important;
  padding-left: 0.875rem !important;
}

.px-20px {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}

.px-28px {
  padding-right: 1.75rem !important;
  padding-left: 1.75rem !important;
}

.px-32px {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.px-36px {
  padding-right: 2.25rem !important;
  padding-left: 2.25rem !important;
}

.px-40px {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

.px-60px {
  padding-right: 3.75rem !important;
  padding-left: 3.75rem !important;
}

.px-80px {
  padding-right: 5rem !important;
  padding-left: 5rem !important;
}

.px-100px {
  padding-right: 6.25rem !important;
  padding-left: 6.25rem !important;
}

.px-120px {
  padding-right: 7.5rem !important;
  padding-left: 7.5rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-10px {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
}

.py-12px {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.py-14px {
  padding-top: 0.875rem !important;
  padding-bottom: 0.875rem !important;
}

.py-20px {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.py-28px {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.py-32px {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-36px {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}

.py-40px {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.py-60px {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
}

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

.py-100px {
  padding-top: 6.25rem !important;
  padding-bottom: 6.25rem !important;
}

.py-120px {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

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

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

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

.pt-10px {
  padding-top: 0.625rem !important;
}

.pt-12px {
  padding-top: 0.75rem !important;
}

.pt-14px {
  padding-top: 0.875rem !important;
}

.pt-20px {
  padding-top: 1.25rem !important;
}

.pt-28px {
  padding-top: 1.75rem !important;
}

.pt-32px {
  padding-top: 2rem !important;
}

.pt-36px {
  padding-top: 2.25rem !important;
}

.pt-40px {
  padding-top: 2.5rem !important;
}

.pt-60px {
  padding-top: 3.75rem !important;
}

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

.pt-100px {
  padding-top: 6.25rem !important;
}

.pt-120px {
  padding-top: 7.5rem !important;
}

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

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

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

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

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

.pe-10px {
  padding-right: 0.625rem !important;
}

.pe-12px {
  padding-right: 0.75rem !important;
}

.pe-14px {
  padding-right: 0.875rem !important;
}

.pe-20px {
  padding-right: 1.25rem !important;
}

.pe-28px {
  padding-right: 1.75rem !important;
}

.pe-32px {
  padding-right: 2rem !important;
}

.pe-36px {
  padding-right: 2.25rem !important;
}

.pe-40px {
  padding-right: 2.5rem !important;
}

.pe-60px {
  padding-right: 3.75rem !important;
}

.pe-80px {
  padding-right: 5rem !important;
}

.pe-100px {
  padding-right: 6.25rem !important;
}

.pe-120px {
  padding-right: 7.5rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

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

.pe-5 {
  padding-right: 3rem !important;
}

.pb-10px {
  padding-bottom: 0.625rem !important;
}

.pb-12px {
  padding-bottom: 0.75rem !important;
}

.pb-14px {
  padding-bottom: 0.875rem !important;
}

.pb-20px {
  padding-bottom: 1.25rem !important;
}

.pb-28px {
  padding-bottom: 1.75rem !important;
}

.pb-32px {
  padding-bottom: 2rem !important;
}

.pb-36px {
  padding-bottom: 2.25rem !important;
}

.pb-40px {
  padding-bottom: 2.5rem !important;
}

.pb-60px {
  padding-bottom: 3.75rem !important;
}

.pb-80px {
  padding-bottom: 5rem !important;
}

.pb-100px {
  padding-bottom: 6.25rem !important;
}

.pb-120px {
  padding-bottom: 7.5rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

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

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

.ps-10px {
  padding-left: 0.625rem !important;
}

.ps-12px {
  padding-left: 0.75rem !important;
}

.ps-14px {
  padding-left: 0.875rem !important;
}

.ps-20px {
  padding-left: 1.25rem !important;
}

.ps-28px {
  padding-left: 1.75rem !important;
}

.ps-32px {
  padding-left: 2rem !important;
}

.ps-36px {
  padding-left: 2.25rem !important;
}

.ps-40px {
  padding-left: 2.5rem !important;
}

.ps-60px {
  padding-left: 3.75rem !important;
}

.ps-80px {
  padding-left: 5rem !important;
}

.ps-100px {
  padding-left: 6.25rem !important;
}

.ps-120px {
  padding-left: 7.5rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

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

.ps-5 {
  padding-left: 3rem !important;
}

.gap-10px {
  gap: 0.625rem !important;
}

.gap-12px {
  gap: 0.75rem !important;
}

.gap-14px {
  gap: 0.875rem !important;
}

.gap-20px {
  gap: 1.25rem !important;
}

.gap-28px {
  gap: 1.75rem !important;
}

.gap-32px {
  gap: 2rem !important;
}

.gap-36px {
  gap: 2.25rem !important;
}

.gap-40px {
  gap: 2.5rem !important;
}

.gap-60px {
  gap: 3.75rem !important;
}

.gap-80px {
  gap: 5rem !important;
}

.gap-100px {
  gap: 6.25rem !important;
}

.gap-120px {
  gap: 7.5rem !important;
}

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

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

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

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

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

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

.row-gap-10px {
  row-gap: 0.625rem !important;
}

.row-gap-12px {
  row-gap: 0.75rem !important;
}

.row-gap-14px {
  row-gap: 0.875rem !important;
}

.row-gap-20px {
  row-gap: 1.25rem !important;
}

.row-gap-28px {
  row-gap: 1.75rem !important;
}

.row-gap-32px {
  row-gap: 2rem !important;
}

.row-gap-36px {
  row-gap: 2.25rem !important;
}

.row-gap-40px {
  row-gap: 2.5rem !important;
}

.row-gap-60px {
  row-gap: 3.75rem !important;
}

.row-gap-80px {
  row-gap: 5rem !important;
}

.row-gap-100px {
  row-gap: 6.25rem !important;
}

.row-gap-120px {
  row-gap: 7.5rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-1 {
  row-gap: 0.25rem !important;
}

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

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

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

.row-gap-5 {
  row-gap: 3rem !important;
}

.column-gap-10px {
  -webkit-column-gap: 0.625rem !important;
     -moz-column-gap: 0.625rem !important;
          column-gap: 0.625rem !important;
}

.column-gap-12px {
  -webkit-column-gap: 0.75rem !important;
     -moz-column-gap: 0.75rem !important;
          column-gap: 0.75rem !important;
}

.column-gap-14px {
  -webkit-column-gap: 0.875rem !important;
     -moz-column-gap: 0.875rem !important;
          column-gap: 0.875rem !important;
}

.column-gap-20px {
  -webkit-column-gap: 1.25rem !important;
     -moz-column-gap: 1.25rem !important;
          column-gap: 1.25rem !important;
}

.column-gap-28px {
  -webkit-column-gap: 1.75rem !important;
     -moz-column-gap: 1.75rem !important;
          column-gap: 1.75rem !important;
}

.column-gap-32px {
  -webkit-column-gap: 2rem !important;
     -moz-column-gap: 2rem !important;
          column-gap: 2rem !important;
}

.column-gap-36px {
  -webkit-column-gap: 2.25rem !important;
     -moz-column-gap: 2.25rem !important;
          column-gap: 2.25rem !important;
}

.column-gap-40px {
  -webkit-column-gap: 2.5rem !important;
     -moz-column-gap: 2.5rem !important;
          column-gap: 2.5rem !important;
}

.column-gap-60px {
  -webkit-column-gap: 3.75rem !important;
     -moz-column-gap: 3.75rem !important;
          column-gap: 3.75rem !important;
}

.column-gap-80px {
  -webkit-column-gap: 5rem !important;
     -moz-column-gap: 5rem !important;
          column-gap: 5rem !important;
}

.column-gap-100px {
  -webkit-column-gap: 6.25rem !important;
     -moz-column-gap: 6.25rem !important;
          column-gap: 6.25rem !important;
}

.column-gap-120px {
  -webkit-column-gap: 7.5rem !important;
     -moz-column-gap: 7.5rem !important;
          column-gap: 7.5rem !important;
}

.column-gap-0 {
  -webkit-column-gap: 0 !important;
     -moz-column-gap: 0 !important;
          column-gap: 0 !important;
}

.column-gap-1 {
  -webkit-column-gap: 0.25rem !important;
     -moz-column-gap: 0.25rem !important;
          column-gap: 0.25rem !important;
}

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

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

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

.column-gap-5 {
  -webkit-column-gap: 3rem !important;
     -moz-column-gap: 3rem !important;
          column-gap: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: 3rem !important;
}

.fs-2 {
  font-size: 2.5rem !important;
}

.fs-3 {
  font-size: 2rem !important;
}

.fs-4 {
  font-size: 1.5rem !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1.125rem !important;
}

.fs-36px {
  font-size: 2.25rem !important;
}

.fs-28px {
  font-size: 1.75rem !important;
}

.fs-22px {
  font-size: 1.375rem !important;
}

.fs-16px {
  font-size: 1rem !important;
}

.fs-14px {
  font-size: 0.875rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

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

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

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

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

.text-end {
  text-align: right !important;
}

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

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

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

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

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

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

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

.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

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

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10 {
  --bs-link-opacity: 0.1;
}

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

.link-opacity-25 {
  --bs-link-opacity: 0.25;
}

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

.link-opacity-50 {
  --bs-link-opacity: 0.5;
}

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

.link-opacity-75 {
  --bs-link-opacity: 0.75;
}

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

.link-opacity-100 {
  --bs-link-opacity: 1;
}

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

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

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-sm-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-sm-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-sm-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-sm-10px {
    margin: 0.625rem !important;
  }
  .m-sm-12px {
    margin: 0.75rem !important;
  }
  .m-sm-14px {
    margin: 0.875rem !important;
  }
  .m-sm-20px {
    margin: 1.25rem !important;
  }
  .m-sm-28px {
    margin: 1.75rem !important;
  }
  .m-sm-32px {
    margin: 2rem !important;
  }
  .m-sm-36px {
    margin: 2.25rem !important;
  }
  .m-sm-40px {
    margin: 2.5rem !important;
  }
  .m-sm-60px {
    margin: 3.75rem !important;
  }
  .m-sm-80px {
    margin: 5rem !important;
  }
  .m-sm-100px {
    margin: 6.25rem !important;
  }
  .m-sm-120px {
    margin: 7.5rem !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-10px {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }
  .mx-sm-12px {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-sm-14px {
    margin-right: 0.875rem !important;
    margin-left: 0.875rem !important;
  }
  .mx-sm-20px {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-sm-28px {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-sm-32px {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-36px {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-sm-40px {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-sm-60px {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-sm-80px {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-sm-100px {
    margin-right: 6.25rem !important;
    margin-left: 6.25rem !important;
  }
  .mx-sm-120px {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-10px {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
  .my-sm-12px {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-sm-14px {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }
  .my-sm-20px {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-sm-28px {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-sm-32px {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-36px {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-sm-40px {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-sm-60px {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-sm-80px {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-sm-100px {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
  }
  .my-sm-120px {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-10px {
    margin-top: 0.625rem !important;
  }
  .mt-sm-12px {
    margin-top: 0.75rem !important;
  }
  .mt-sm-14px {
    margin-top: 0.875rem !important;
  }
  .mt-sm-20px {
    margin-top: 1.25rem !important;
  }
  .mt-sm-28px {
    margin-top: 1.75rem !important;
  }
  .mt-sm-32px {
    margin-top: 2rem !important;
  }
  .mt-sm-36px {
    margin-top: 2.25rem !important;
  }
  .mt-sm-40px {
    margin-top: 2.5rem !important;
  }
  .mt-sm-60px {
    margin-top: 3.75rem !important;
  }
  .mt-sm-80px {
    margin-top: 5rem !important;
  }
  .mt-sm-100px {
    margin-top: 6.25rem !important;
  }
  .mt-sm-120px {
    margin-top: 7.5rem !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-10px {
    margin-right: 0.625rem !important;
  }
  .me-sm-12px {
    margin-right: 0.75rem !important;
  }
  .me-sm-14px {
    margin-right: 0.875rem !important;
  }
  .me-sm-20px {
    margin-right: 1.25rem !important;
  }
  .me-sm-28px {
    margin-right: 1.75rem !important;
  }
  .me-sm-32px {
    margin-right: 2rem !important;
  }
  .me-sm-36px {
    margin-right: 2.25rem !important;
  }
  .me-sm-40px {
    margin-right: 2.5rem !important;
  }
  .me-sm-60px {
    margin-right: 3.75rem !important;
  }
  .me-sm-80px {
    margin-right: 5rem !important;
  }
  .me-sm-100px {
    margin-right: 6.25rem !important;
  }
  .me-sm-120px {
    margin-right: 7.5rem !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-10px {
    margin-bottom: 0.625rem !important;
  }
  .mb-sm-12px {
    margin-bottom: 0.75rem !important;
  }
  .mb-sm-14px {
    margin-bottom: 0.875rem !important;
  }
  .mb-sm-20px {
    margin-bottom: 1.25rem !important;
  }
  .mb-sm-28px {
    margin-bottom: 1.75rem !important;
  }
  .mb-sm-32px {
    margin-bottom: 2rem !important;
  }
  .mb-sm-36px {
    margin-bottom: 2.25rem !important;
  }
  .mb-sm-40px {
    margin-bottom: 2.5rem !important;
  }
  .mb-sm-60px {
    margin-bottom: 3.75rem !important;
  }
  .mb-sm-80px {
    margin-bottom: 5rem !important;
  }
  .mb-sm-100px {
    margin-bottom: 6.25rem !important;
  }
  .mb-sm-120px {
    margin-bottom: 7.5rem !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-10px {
    margin-left: 0.625rem !important;
  }
  .ms-sm-12px {
    margin-left: 0.75rem !important;
  }
  .ms-sm-14px {
    margin-left: 0.875rem !important;
  }
  .ms-sm-20px {
    margin-left: 1.25rem !important;
  }
  .ms-sm-28px {
    margin-left: 1.75rem !important;
  }
  .ms-sm-32px {
    margin-left: 2rem !important;
  }
  .ms-sm-36px {
    margin-left: 2.25rem !important;
  }
  .ms-sm-40px {
    margin-left: 2.5rem !important;
  }
  .ms-sm-60px {
    margin-left: 3.75rem !important;
  }
  .ms-sm-80px {
    margin-left: 5rem !important;
  }
  .ms-sm-100px {
    margin-left: 6.25rem !important;
  }
  .ms-sm-120px {
    margin-left: 7.5rem !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-10px {
    padding: 0.625rem !important;
  }
  .p-sm-12px {
    padding: 0.75rem !important;
  }
  .p-sm-14px {
    padding: 0.875rem !important;
  }
  .p-sm-20px {
    padding: 1.25rem !important;
  }
  .p-sm-28px {
    padding: 1.75rem !important;
  }
  .p-sm-32px {
    padding: 2rem !important;
  }
  .p-sm-36px {
    padding: 2.25rem !important;
  }
  .p-sm-40px {
    padding: 2.5rem !important;
  }
  .p-sm-60px {
    padding: 3.75rem !important;
  }
  .p-sm-80px {
    padding: 5rem !important;
  }
  .p-sm-100px {
    padding: 6.25rem !important;
  }
  .p-sm-120px {
    padding: 7.5rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-10px {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }
  .px-sm-12px {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-sm-14px {
    padding-right: 0.875rem !important;
    padding-left: 0.875rem !important;
  }
  .px-sm-20px {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-sm-28px {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-sm-32px {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-36px {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-sm-40px {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-sm-60px {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-sm-80px {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-sm-100px {
    padding-right: 6.25rem !important;
    padding-left: 6.25rem !important;
  }
  .px-sm-120px {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-10px {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
  .py-sm-12px {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-sm-14px {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }
  .py-sm-20px {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-sm-28px {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-sm-32px {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-36px {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-sm-40px {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sm-60px {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-sm-80px {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-sm-100px {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }
  .py-sm-120px {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-10px {
    padding-top: 0.625rem !important;
  }
  .pt-sm-12px {
    padding-top: 0.75rem !important;
  }
  .pt-sm-14px {
    padding-top: 0.875rem !important;
  }
  .pt-sm-20px {
    padding-top: 1.25rem !important;
  }
  .pt-sm-28px {
    padding-top: 1.75rem !important;
  }
  .pt-sm-32px {
    padding-top: 2rem !important;
  }
  .pt-sm-36px {
    padding-top: 2.25rem !important;
  }
  .pt-sm-40px {
    padding-top: 2.5rem !important;
  }
  .pt-sm-60px {
    padding-top: 3.75rem !important;
  }
  .pt-sm-80px {
    padding-top: 5rem !important;
  }
  .pt-sm-100px {
    padding-top: 6.25rem !important;
  }
  .pt-sm-120px {
    padding-top: 7.5rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-10px {
    padding-right: 0.625rem !important;
  }
  .pe-sm-12px {
    padding-right: 0.75rem !important;
  }
  .pe-sm-14px {
    padding-right: 0.875rem !important;
  }
  .pe-sm-20px {
    padding-right: 1.25rem !important;
  }
  .pe-sm-28px {
    padding-right: 1.75rem !important;
  }
  .pe-sm-32px {
    padding-right: 2rem !important;
  }
  .pe-sm-36px {
    padding-right: 2.25rem !important;
  }
  .pe-sm-40px {
    padding-right: 2.5rem !important;
  }
  .pe-sm-60px {
    padding-right: 3.75rem !important;
  }
  .pe-sm-80px {
    padding-right: 5rem !important;
  }
  .pe-sm-100px {
    padding-right: 6.25rem !important;
  }
  .pe-sm-120px {
    padding-right: 7.5rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-10px {
    padding-bottom: 0.625rem !important;
  }
  .pb-sm-12px {
    padding-bottom: 0.75rem !important;
  }
  .pb-sm-14px {
    padding-bottom: 0.875rem !important;
  }
  .pb-sm-20px {
    padding-bottom: 1.25rem !important;
  }
  .pb-sm-28px {
    padding-bottom: 1.75rem !important;
  }
  .pb-sm-32px {
    padding-bottom: 2rem !important;
  }
  .pb-sm-36px {
    padding-bottom: 2.25rem !important;
  }
  .pb-sm-40px {
    padding-bottom: 2.5rem !important;
  }
  .pb-sm-60px {
    padding-bottom: 3.75rem !important;
  }
  .pb-sm-80px {
    padding-bottom: 5rem !important;
  }
  .pb-sm-100px {
    padding-bottom: 6.25rem !important;
  }
  .pb-sm-120px {
    padding-bottom: 7.5rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-10px {
    padding-left: 0.625rem !important;
  }
  .ps-sm-12px {
    padding-left: 0.75rem !important;
  }
  .ps-sm-14px {
    padding-left: 0.875rem !important;
  }
  .ps-sm-20px {
    padding-left: 1.25rem !important;
  }
  .ps-sm-28px {
    padding-left: 1.75rem !important;
  }
  .ps-sm-32px {
    padding-left: 2rem !important;
  }
  .ps-sm-36px {
    padding-left: 2.25rem !important;
  }
  .ps-sm-40px {
    padding-left: 2.5rem !important;
  }
  .ps-sm-60px {
    padding-left: 3.75rem !important;
  }
  .ps-sm-80px {
    padding-left: 5rem !important;
  }
  .ps-sm-100px {
    padding-left: 6.25rem !important;
  }
  .ps-sm-120px {
    padding-left: 7.5rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .gap-sm-10px {
    gap: 0.625rem !important;
  }
  .gap-sm-12px {
    gap: 0.75rem !important;
  }
  .gap-sm-14px {
    gap: 0.875rem !important;
  }
  .gap-sm-20px {
    gap: 1.25rem !important;
  }
  .gap-sm-28px {
    gap: 1.75rem !important;
  }
  .gap-sm-32px {
    gap: 2rem !important;
  }
  .gap-sm-36px {
    gap: 2.25rem !important;
  }
  .gap-sm-40px {
    gap: 2.5rem !important;
  }
  .gap-sm-60px {
    gap: 3.75rem !important;
  }
  .gap-sm-80px {
    gap: 5rem !important;
  }
  .gap-sm-100px {
    gap: 6.25rem !important;
  }
  .gap-sm-120px {
    gap: 7.5rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .row-gap-sm-10px {
    row-gap: 0.625rem !important;
  }
  .row-gap-sm-12px {
    row-gap: 0.75rem !important;
  }
  .row-gap-sm-14px {
    row-gap: 0.875rem !important;
  }
  .row-gap-sm-20px {
    row-gap: 1.25rem !important;
  }
  .row-gap-sm-28px {
    row-gap: 1.75rem !important;
  }
  .row-gap-sm-32px {
    row-gap: 2rem !important;
  }
  .row-gap-sm-36px {
    row-gap: 2.25rem !important;
  }
  .row-gap-sm-40px {
    row-gap: 2.5rem !important;
  }
  .row-gap-sm-60px {
    row-gap: 3.75rem !important;
  }
  .row-gap-sm-80px {
    row-gap: 5rem !important;
  }
  .row-gap-sm-100px {
    row-gap: 6.25rem !important;
  }
  .row-gap-sm-120px {
    row-gap: 7.5rem !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }
  .column-gap-sm-10px {
    -webkit-column-gap: 0.625rem !important;
       -moz-column-gap: 0.625rem !important;
            column-gap: 0.625rem !important;
  }
  .column-gap-sm-12px {
    -webkit-column-gap: 0.75rem !important;
       -moz-column-gap: 0.75rem !important;
            column-gap: 0.75rem !important;
  }
  .column-gap-sm-14px {
    -webkit-column-gap: 0.875rem !important;
       -moz-column-gap: 0.875rem !important;
            column-gap: 0.875rem !important;
  }
  .column-gap-sm-20px {
    -webkit-column-gap: 1.25rem !important;
       -moz-column-gap: 1.25rem !important;
            column-gap: 1.25rem !important;
  }
  .column-gap-sm-28px {
    -webkit-column-gap: 1.75rem !important;
       -moz-column-gap: 1.75rem !important;
            column-gap: 1.75rem !important;
  }
  .column-gap-sm-32px {
    -webkit-column-gap: 2rem !important;
       -moz-column-gap: 2rem !important;
            column-gap: 2rem !important;
  }
  .column-gap-sm-36px {
    -webkit-column-gap: 2.25rem !important;
       -moz-column-gap: 2.25rem !important;
            column-gap: 2.25rem !important;
  }
  .column-gap-sm-40px {
    -webkit-column-gap: 2.5rem !important;
       -moz-column-gap: 2.5rem !important;
            column-gap: 2.5rem !important;
  }
  .column-gap-sm-60px {
    -webkit-column-gap: 3.75rem !important;
       -moz-column-gap: 3.75rem !important;
            column-gap: 3.75rem !important;
  }
  .column-gap-sm-80px {
    -webkit-column-gap: 5rem !important;
       -moz-column-gap: 5rem !important;
            column-gap: 5rem !important;
  }
  .column-gap-sm-100px {
    -webkit-column-gap: 6.25rem !important;
       -moz-column-gap: 6.25rem !important;
            column-gap: 6.25rem !important;
  }
  .column-gap-sm-120px {
    -webkit-column-gap: 7.5rem !important;
       -moz-column-gap: 7.5rem !important;
            column-gap: 7.5rem !important;
  }
  .column-gap-sm-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-sm-4 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-sm-5 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .fs-sm-1 {
    font-size: 3rem !important;
  }
  .fs-sm-2 {
    font-size: 2.5rem !important;
  }
  .fs-sm-3 {
    font-size: 2rem !important;
  }
  .fs-sm-4 {
    font-size: 1.5rem !important;
  }
  .fs-sm-5 {
    font-size: 1.25rem !important;
  }
  .fs-sm-6 {
    font-size: 1.125rem !important;
  }
  .fs-sm-36px {
    font-size: 2.25rem !important;
  }
  .fs-sm-28px {
    font-size: 1.75rem !important;
  }
  .fs-sm-22px {
    font-size: 1.375rem !important;
  }
  .fs-sm-16px {
    font-size: 1rem !important;
  }
  .fs-sm-14px {
    font-size: 0.875rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .object-fit-md-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-md-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-md-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-md-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-md-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-md-10px {
    margin: 0.625rem !important;
  }
  .m-md-12px {
    margin: 0.75rem !important;
  }
  .m-md-14px {
    margin: 0.875rem !important;
  }
  .m-md-20px {
    margin: 1.25rem !important;
  }
  .m-md-28px {
    margin: 1.75rem !important;
  }
  .m-md-32px {
    margin: 2rem !important;
  }
  .m-md-36px {
    margin: 2.25rem !important;
  }
  .m-md-40px {
    margin: 2.5rem !important;
  }
  .m-md-60px {
    margin: 3.75rem !important;
  }
  .m-md-80px {
    margin: 5rem !important;
  }
  .m-md-100px {
    margin: 6.25rem !important;
  }
  .m-md-120px {
    margin: 7.5rem !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-10px {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }
  .mx-md-12px {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-md-14px {
    margin-right: 0.875rem !important;
    margin-left: 0.875rem !important;
  }
  .mx-md-20px {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-md-28px {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-md-32px {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-36px {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-md-40px {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-md-60px {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-md-80px {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-md-100px {
    margin-right: 6.25rem !important;
    margin-left: 6.25rem !important;
  }
  .mx-md-120px {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-10px {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
  .my-md-12px {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-md-14px {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }
  .my-md-20px {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-md-28px {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-md-32px {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-36px {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-md-40px {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-md-60px {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-md-80px {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-md-100px {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
  }
  .my-md-120px {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-10px {
    margin-top: 0.625rem !important;
  }
  .mt-md-12px {
    margin-top: 0.75rem !important;
  }
  .mt-md-14px {
    margin-top: 0.875rem !important;
  }
  .mt-md-20px {
    margin-top: 1.25rem !important;
  }
  .mt-md-28px {
    margin-top: 1.75rem !important;
  }
  .mt-md-32px {
    margin-top: 2rem !important;
  }
  .mt-md-36px {
    margin-top: 2.25rem !important;
  }
  .mt-md-40px {
    margin-top: 2.5rem !important;
  }
  .mt-md-60px {
    margin-top: 3.75rem !important;
  }
  .mt-md-80px {
    margin-top: 5rem !important;
  }
  .mt-md-100px {
    margin-top: 6.25rem !important;
  }
  .mt-md-120px {
    margin-top: 7.5rem !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-10px {
    margin-right: 0.625rem !important;
  }
  .me-md-12px {
    margin-right: 0.75rem !important;
  }
  .me-md-14px {
    margin-right: 0.875rem !important;
  }
  .me-md-20px {
    margin-right: 1.25rem !important;
  }
  .me-md-28px {
    margin-right: 1.75rem !important;
  }
  .me-md-32px {
    margin-right: 2rem !important;
  }
  .me-md-36px {
    margin-right: 2.25rem !important;
  }
  .me-md-40px {
    margin-right: 2.5rem !important;
  }
  .me-md-60px {
    margin-right: 3.75rem !important;
  }
  .me-md-80px {
    margin-right: 5rem !important;
  }
  .me-md-100px {
    margin-right: 6.25rem !important;
  }
  .me-md-120px {
    margin-right: 7.5rem !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-10px {
    margin-bottom: 0.625rem !important;
  }
  .mb-md-12px {
    margin-bottom: 0.75rem !important;
  }
  .mb-md-14px {
    margin-bottom: 0.875rem !important;
  }
  .mb-md-20px {
    margin-bottom: 1.25rem !important;
  }
  .mb-md-28px {
    margin-bottom: 1.75rem !important;
  }
  .mb-md-32px {
    margin-bottom: 2rem !important;
  }
  .mb-md-36px {
    margin-bottom: 2.25rem !important;
  }
  .mb-md-40px {
    margin-bottom: 2.5rem !important;
  }
  .mb-md-60px {
    margin-bottom: 3.75rem !important;
  }
  .mb-md-80px {
    margin-bottom: 5rem !important;
  }
  .mb-md-100px {
    margin-bottom: 6.25rem !important;
  }
  .mb-md-120px {
    margin-bottom: 7.5rem !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-10px {
    margin-left: 0.625rem !important;
  }
  .ms-md-12px {
    margin-left: 0.75rem !important;
  }
  .ms-md-14px {
    margin-left: 0.875rem !important;
  }
  .ms-md-20px {
    margin-left: 1.25rem !important;
  }
  .ms-md-28px {
    margin-left: 1.75rem !important;
  }
  .ms-md-32px {
    margin-left: 2rem !important;
  }
  .ms-md-36px {
    margin-left: 2.25rem !important;
  }
  .ms-md-40px {
    margin-left: 2.5rem !important;
  }
  .ms-md-60px {
    margin-left: 3.75rem !important;
  }
  .ms-md-80px {
    margin-left: 5rem !important;
  }
  .ms-md-100px {
    margin-left: 6.25rem !important;
  }
  .ms-md-120px {
    margin-left: 7.5rem !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-10px {
    padding: 0.625rem !important;
  }
  .p-md-12px {
    padding: 0.75rem !important;
  }
  .p-md-14px {
    padding: 0.875rem !important;
  }
  .p-md-20px {
    padding: 1.25rem !important;
  }
  .p-md-28px {
    padding: 1.75rem !important;
  }
  .p-md-32px {
    padding: 2rem !important;
  }
  .p-md-36px {
    padding: 2.25rem !important;
  }
  .p-md-40px {
    padding: 2.5rem !important;
  }
  .p-md-60px {
    padding: 3.75rem !important;
  }
  .p-md-80px {
    padding: 5rem !important;
  }
  .p-md-100px {
    padding: 6.25rem !important;
  }
  .p-md-120px {
    padding: 7.5rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-10px {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }
  .px-md-12px {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-md-14px {
    padding-right: 0.875rem !important;
    padding-left: 0.875rem !important;
  }
  .px-md-20px {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-md-28px {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-md-32px {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-36px {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-md-40px {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-md-60px {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-md-80px {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-md-100px {
    padding-right: 6.25rem !important;
    padding-left: 6.25rem !important;
  }
  .px-md-120px {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-10px {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
  .py-md-12px {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-md-14px {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }
  .py-md-20px {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-md-28px {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-md-32px {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-36px {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-md-40px {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-md-60px {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-md-80px {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-md-100px {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }
  .py-md-120px {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-10px {
    padding-top: 0.625rem !important;
  }
  .pt-md-12px {
    padding-top: 0.75rem !important;
  }
  .pt-md-14px {
    padding-top: 0.875rem !important;
  }
  .pt-md-20px {
    padding-top: 1.25rem !important;
  }
  .pt-md-28px {
    padding-top: 1.75rem !important;
  }
  .pt-md-32px {
    padding-top: 2rem !important;
  }
  .pt-md-36px {
    padding-top: 2.25rem !important;
  }
  .pt-md-40px {
    padding-top: 2.5rem !important;
  }
  .pt-md-60px {
    padding-top: 3.75rem !important;
  }
  .pt-md-80px {
    padding-top: 5rem !important;
  }
  .pt-md-100px {
    padding-top: 6.25rem !important;
  }
  .pt-md-120px {
    padding-top: 7.5rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-10px {
    padding-right: 0.625rem !important;
  }
  .pe-md-12px {
    padding-right: 0.75rem !important;
  }
  .pe-md-14px {
    padding-right: 0.875rem !important;
  }
  .pe-md-20px {
    padding-right: 1.25rem !important;
  }
  .pe-md-28px {
    padding-right: 1.75rem !important;
  }
  .pe-md-32px {
    padding-right: 2rem !important;
  }
  .pe-md-36px {
    padding-right: 2.25rem !important;
  }
  .pe-md-40px {
    padding-right: 2.5rem !important;
  }
  .pe-md-60px {
    padding-right: 3.75rem !important;
  }
  .pe-md-80px {
    padding-right: 5rem !important;
  }
  .pe-md-100px {
    padding-right: 6.25rem !important;
  }
  .pe-md-120px {
    padding-right: 7.5rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-10px {
    padding-bottom: 0.625rem !important;
  }
  .pb-md-12px {
    padding-bottom: 0.75rem !important;
  }
  .pb-md-14px {
    padding-bottom: 0.875rem !important;
  }
  .pb-md-20px {
    padding-bottom: 1.25rem !important;
  }
  .pb-md-28px {
    padding-bottom: 1.75rem !important;
  }
  .pb-md-32px {
    padding-bottom: 2rem !important;
  }
  .pb-md-36px {
    padding-bottom: 2.25rem !important;
  }
  .pb-md-40px {
    padding-bottom: 2.5rem !important;
  }
  .pb-md-60px {
    padding-bottom: 3.75rem !important;
  }
  .pb-md-80px {
    padding-bottom: 5rem !important;
  }
  .pb-md-100px {
    padding-bottom: 6.25rem !important;
  }
  .pb-md-120px {
    padding-bottom: 7.5rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-10px {
    padding-left: 0.625rem !important;
  }
  .ps-md-12px {
    padding-left: 0.75rem !important;
  }
  .ps-md-14px {
    padding-left: 0.875rem !important;
  }
  .ps-md-20px {
    padding-left: 1.25rem !important;
  }
  .ps-md-28px {
    padding-left: 1.75rem !important;
  }
  .ps-md-32px {
    padding-left: 2rem !important;
  }
  .ps-md-36px {
    padding-left: 2.25rem !important;
  }
  .ps-md-40px {
    padding-left: 2.5rem !important;
  }
  .ps-md-60px {
    padding-left: 3.75rem !important;
  }
  .ps-md-80px {
    padding-left: 5rem !important;
  }
  .ps-md-100px {
    padding-left: 6.25rem !important;
  }
  .ps-md-120px {
    padding-left: 7.5rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .gap-md-10px {
    gap: 0.625rem !important;
  }
  .gap-md-12px {
    gap: 0.75rem !important;
  }
  .gap-md-14px {
    gap: 0.875rem !important;
  }
  .gap-md-20px {
    gap: 1.25rem !important;
  }
  .gap-md-28px {
    gap: 1.75rem !important;
  }
  .gap-md-32px {
    gap: 2rem !important;
  }
  .gap-md-36px {
    gap: 2.25rem !important;
  }
  .gap-md-40px {
    gap: 2.5rem !important;
  }
  .gap-md-60px {
    gap: 3.75rem !important;
  }
  .gap-md-80px {
    gap: 5rem !important;
  }
  .gap-md-100px {
    gap: 6.25rem !important;
  }
  .gap-md-120px {
    gap: 7.5rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .row-gap-md-10px {
    row-gap: 0.625rem !important;
  }
  .row-gap-md-12px {
    row-gap: 0.75rem !important;
  }
  .row-gap-md-14px {
    row-gap: 0.875rem !important;
  }
  .row-gap-md-20px {
    row-gap: 1.25rem !important;
  }
  .row-gap-md-28px {
    row-gap: 1.75rem !important;
  }
  .row-gap-md-32px {
    row-gap: 2rem !important;
  }
  .row-gap-md-36px {
    row-gap: 2.25rem !important;
  }
  .row-gap-md-40px {
    row-gap: 2.5rem !important;
  }
  .row-gap-md-60px {
    row-gap: 3.75rem !important;
  }
  .row-gap-md-80px {
    row-gap: 5rem !important;
  }
  .row-gap-md-100px {
    row-gap: 6.25rem !important;
  }
  .row-gap-md-120px {
    row-gap: 7.5rem !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-5 {
    row-gap: 3rem !important;
  }
  .column-gap-md-10px {
    -webkit-column-gap: 0.625rem !important;
       -moz-column-gap: 0.625rem !important;
            column-gap: 0.625rem !important;
  }
  .column-gap-md-12px {
    -webkit-column-gap: 0.75rem !important;
       -moz-column-gap: 0.75rem !important;
            column-gap: 0.75rem !important;
  }
  .column-gap-md-14px {
    -webkit-column-gap: 0.875rem !important;
       -moz-column-gap: 0.875rem !important;
            column-gap: 0.875rem !important;
  }
  .column-gap-md-20px {
    -webkit-column-gap: 1.25rem !important;
       -moz-column-gap: 1.25rem !important;
            column-gap: 1.25rem !important;
  }
  .column-gap-md-28px {
    -webkit-column-gap: 1.75rem !important;
       -moz-column-gap: 1.75rem !important;
            column-gap: 1.75rem !important;
  }
  .column-gap-md-32px {
    -webkit-column-gap: 2rem !important;
       -moz-column-gap: 2rem !important;
            column-gap: 2rem !important;
  }
  .column-gap-md-36px {
    -webkit-column-gap: 2.25rem !important;
       -moz-column-gap: 2.25rem !important;
            column-gap: 2.25rem !important;
  }
  .column-gap-md-40px {
    -webkit-column-gap: 2.5rem !important;
       -moz-column-gap: 2.5rem !important;
            column-gap: 2.5rem !important;
  }
  .column-gap-md-60px {
    -webkit-column-gap: 3.75rem !important;
       -moz-column-gap: 3.75rem !important;
            column-gap: 3.75rem !important;
  }
  .column-gap-md-80px {
    -webkit-column-gap: 5rem !important;
       -moz-column-gap: 5rem !important;
            column-gap: 5rem !important;
  }
  .column-gap-md-100px {
    -webkit-column-gap: 6.25rem !important;
       -moz-column-gap: 6.25rem !important;
            column-gap: 6.25rem !important;
  }
  .column-gap-md-120px {
    -webkit-column-gap: 7.5rem !important;
       -moz-column-gap: 7.5rem !important;
            column-gap: 7.5rem !important;
  }
  .column-gap-md-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-md-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-md-4 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-md-5 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .fs-md-1 {
    font-size: 3rem !important;
  }
  .fs-md-2 {
    font-size: 2.5rem !important;
  }
  .fs-md-3 {
    font-size: 2rem !important;
  }
  .fs-md-4 {
    font-size: 1.5rem !important;
  }
  .fs-md-5 {
    font-size: 1.25rem !important;
  }
  .fs-md-6 {
    font-size: 1.125rem !important;
  }
  .fs-md-36px {
    font-size: 2.25rem !important;
  }
  .fs-md-28px {
    font-size: 1.75rem !important;
  }
  .fs-md-22px {
    font-size: 1.375rem !important;
  }
  .fs-md-16px {
    font-size: 1rem !important;
  }
  .fs-md-14px {
    font-size: 0.875rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .object-fit-lg-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-lg-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-lg-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-lg-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-lg-10px {
    margin: 0.625rem !important;
  }
  .m-lg-12px {
    margin: 0.75rem !important;
  }
  .m-lg-14px {
    margin: 0.875rem !important;
  }
  .m-lg-20px {
    margin: 1.25rem !important;
  }
  .m-lg-28px {
    margin: 1.75rem !important;
  }
  .m-lg-32px {
    margin: 2rem !important;
  }
  .m-lg-36px {
    margin: 2.25rem !important;
  }
  .m-lg-40px {
    margin: 2.5rem !important;
  }
  .m-lg-60px {
    margin: 3.75rem !important;
  }
  .m-lg-80px {
    margin: 5rem !important;
  }
  .m-lg-100px {
    margin: 6.25rem !important;
  }
  .m-lg-120px {
    margin: 7.5rem !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-10px {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }
  .mx-lg-12px {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-lg-14px {
    margin-right: 0.875rem !important;
    margin-left: 0.875rem !important;
  }
  .mx-lg-20px {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-lg-28px {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-lg-32px {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-36px {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-lg-40px {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-lg-60px {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-lg-80px {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-lg-100px {
    margin-right: 6.25rem !important;
    margin-left: 6.25rem !important;
  }
  .mx-lg-120px {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-10px {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
  .my-lg-12px {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-lg-14px {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }
  .my-lg-20px {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-lg-28px {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-lg-32px {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-36px {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-lg-40px {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-lg-60px {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-lg-80px {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-lg-100px {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
  }
  .my-lg-120px {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-10px {
    margin-top: 0.625rem !important;
  }
  .mt-lg-12px {
    margin-top: 0.75rem !important;
  }
  .mt-lg-14px {
    margin-top: 0.875rem !important;
  }
  .mt-lg-20px {
    margin-top: 1.25rem !important;
  }
  .mt-lg-28px {
    margin-top: 1.75rem !important;
  }
  .mt-lg-32px {
    margin-top: 2rem !important;
  }
  .mt-lg-36px {
    margin-top: 2.25rem !important;
  }
  .mt-lg-40px {
    margin-top: 2.5rem !important;
  }
  .mt-lg-60px {
    margin-top: 3.75rem !important;
  }
  .mt-lg-80px {
    margin-top: 5rem !important;
  }
  .mt-lg-100px {
    margin-top: 6.25rem !important;
  }
  .mt-lg-120px {
    margin-top: 7.5rem !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-10px {
    margin-right: 0.625rem !important;
  }
  .me-lg-12px {
    margin-right: 0.75rem !important;
  }
  .me-lg-14px {
    margin-right: 0.875rem !important;
  }
  .me-lg-20px {
    margin-right: 1.25rem !important;
  }
  .me-lg-28px {
    margin-right: 1.75rem !important;
  }
  .me-lg-32px {
    margin-right: 2rem !important;
  }
  .me-lg-36px {
    margin-right: 2.25rem !important;
  }
  .me-lg-40px {
    margin-right: 2.5rem !important;
  }
  .me-lg-60px {
    margin-right: 3.75rem !important;
  }
  .me-lg-80px {
    margin-right: 5rem !important;
  }
  .me-lg-100px {
    margin-right: 6.25rem !important;
  }
  .me-lg-120px {
    margin-right: 7.5rem !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-10px {
    margin-bottom: 0.625rem !important;
  }
  .mb-lg-12px {
    margin-bottom: 0.75rem !important;
  }
  .mb-lg-14px {
    margin-bottom: 0.875rem !important;
  }
  .mb-lg-20px {
    margin-bottom: 1.25rem !important;
  }
  .mb-lg-28px {
    margin-bottom: 1.75rem !important;
  }
  .mb-lg-32px {
    margin-bottom: 2rem !important;
  }
  .mb-lg-36px {
    margin-bottom: 2.25rem !important;
  }
  .mb-lg-40px {
    margin-bottom: 2.5rem !important;
  }
  .mb-lg-60px {
    margin-bottom: 3.75rem !important;
  }
  .mb-lg-80px {
    margin-bottom: 5rem !important;
  }
  .mb-lg-100px {
    margin-bottom: 6.25rem !important;
  }
  .mb-lg-120px {
    margin-bottom: 7.5rem !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-10px {
    margin-left: 0.625rem !important;
  }
  .ms-lg-12px {
    margin-left: 0.75rem !important;
  }
  .ms-lg-14px {
    margin-left: 0.875rem !important;
  }
  .ms-lg-20px {
    margin-left: 1.25rem !important;
  }
  .ms-lg-28px {
    margin-left: 1.75rem !important;
  }
  .ms-lg-32px {
    margin-left: 2rem !important;
  }
  .ms-lg-36px {
    margin-left: 2.25rem !important;
  }
  .ms-lg-40px {
    margin-left: 2.5rem !important;
  }
  .ms-lg-60px {
    margin-left: 3.75rem !important;
  }
  .ms-lg-80px {
    margin-left: 5rem !important;
  }
  .ms-lg-100px {
    margin-left: 6.25rem !important;
  }
  .ms-lg-120px {
    margin-left: 7.5rem !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-10px {
    padding: 0.625rem !important;
  }
  .p-lg-12px {
    padding: 0.75rem !important;
  }
  .p-lg-14px {
    padding: 0.875rem !important;
  }
  .p-lg-20px {
    padding: 1.25rem !important;
  }
  .p-lg-28px {
    padding: 1.75rem !important;
  }
  .p-lg-32px {
    padding: 2rem !important;
  }
  .p-lg-36px {
    padding: 2.25rem !important;
  }
  .p-lg-40px {
    padding: 2.5rem !important;
  }
  .p-lg-60px {
    padding: 3.75rem !important;
  }
  .p-lg-80px {
    padding: 5rem !important;
  }
  .p-lg-100px {
    padding: 6.25rem !important;
  }
  .p-lg-120px {
    padding: 7.5rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-10px {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }
  .px-lg-12px {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-lg-14px {
    padding-right: 0.875rem !important;
    padding-left: 0.875rem !important;
  }
  .px-lg-20px {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-lg-28px {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-lg-32px {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-36px {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-lg-40px {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-lg-60px {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-lg-80px {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-lg-100px {
    padding-right: 6.25rem !important;
    padding-left: 6.25rem !important;
  }
  .px-lg-120px {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-10px {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
  .py-lg-12px {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-lg-14px {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }
  .py-lg-20px {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-lg-28px {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-lg-32px {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-36px {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-lg-40px {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-lg-60px {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-lg-80px {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-lg-100px {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }
  .py-lg-120px {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-10px {
    padding-top: 0.625rem !important;
  }
  .pt-lg-12px {
    padding-top: 0.75rem !important;
  }
  .pt-lg-14px {
    padding-top: 0.875rem !important;
  }
  .pt-lg-20px {
    padding-top: 1.25rem !important;
  }
  .pt-lg-28px {
    padding-top: 1.75rem !important;
  }
  .pt-lg-32px {
    padding-top: 2rem !important;
  }
  .pt-lg-36px {
    padding-top: 2.25rem !important;
  }
  .pt-lg-40px {
    padding-top: 2.5rem !important;
  }
  .pt-lg-60px {
    padding-top: 3.75rem !important;
  }
  .pt-lg-80px {
    padding-top: 5rem !important;
  }
  .pt-lg-100px {
    padding-top: 6.25rem !important;
  }
  .pt-lg-120px {
    padding-top: 7.5rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-10px {
    padding-right: 0.625rem !important;
  }
  .pe-lg-12px {
    padding-right: 0.75rem !important;
  }
  .pe-lg-14px {
    padding-right: 0.875rem !important;
  }
  .pe-lg-20px {
    padding-right: 1.25rem !important;
  }
  .pe-lg-28px {
    padding-right: 1.75rem !important;
  }
  .pe-lg-32px {
    padding-right: 2rem !important;
  }
  .pe-lg-36px {
    padding-right: 2.25rem !important;
  }
  .pe-lg-40px {
    padding-right: 2.5rem !important;
  }
  .pe-lg-60px {
    padding-right: 3.75rem !important;
  }
  .pe-lg-80px {
    padding-right: 5rem !important;
  }
  .pe-lg-100px {
    padding-right: 6.25rem !important;
  }
  .pe-lg-120px {
    padding-right: 7.5rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-10px {
    padding-bottom: 0.625rem !important;
  }
  .pb-lg-12px {
    padding-bottom: 0.75rem !important;
  }
  .pb-lg-14px {
    padding-bottom: 0.875rem !important;
  }
  .pb-lg-20px {
    padding-bottom: 1.25rem !important;
  }
  .pb-lg-28px {
    padding-bottom: 1.75rem !important;
  }
  .pb-lg-32px {
    padding-bottom: 2rem !important;
  }
  .pb-lg-36px {
    padding-bottom: 2.25rem !important;
  }
  .pb-lg-40px {
    padding-bottom: 2.5rem !important;
  }
  .pb-lg-60px {
    padding-bottom: 3.75rem !important;
  }
  .pb-lg-80px {
    padding-bottom: 5rem !important;
  }
  .pb-lg-100px {
    padding-bottom: 6.25rem !important;
  }
  .pb-lg-120px {
    padding-bottom: 7.5rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-10px {
    padding-left: 0.625rem !important;
  }
  .ps-lg-12px {
    padding-left: 0.75rem !important;
  }
  .ps-lg-14px {
    padding-left: 0.875rem !important;
  }
  .ps-lg-20px {
    padding-left: 1.25rem !important;
  }
  .ps-lg-28px {
    padding-left: 1.75rem !important;
  }
  .ps-lg-32px {
    padding-left: 2rem !important;
  }
  .ps-lg-36px {
    padding-left: 2.25rem !important;
  }
  .ps-lg-40px {
    padding-left: 2.5rem !important;
  }
  .ps-lg-60px {
    padding-left: 3.75rem !important;
  }
  .ps-lg-80px {
    padding-left: 5rem !important;
  }
  .ps-lg-100px {
    padding-left: 6.25rem !important;
  }
  .ps-lg-120px {
    padding-left: 7.5rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .gap-lg-10px {
    gap: 0.625rem !important;
  }
  .gap-lg-12px {
    gap: 0.75rem !important;
  }
  .gap-lg-14px {
    gap: 0.875rem !important;
  }
  .gap-lg-20px {
    gap: 1.25rem !important;
  }
  .gap-lg-28px {
    gap: 1.75rem !important;
  }
  .gap-lg-32px {
    gap: 2rem !important;
  }
  .gap-lg-36px {
    gap: 2.25rem !important;
  }
  .gap-lg-40px {
    gap: 2.5rem !important;
  }
  .gap-lg-60px {
    gap: 3.75rem !important;
  }
  .gap-lg-80px {
    gap: 5rem !important;
  }
  .gap-lg-100px {
    gap: 6.25rem !important;
  }
  .gap-lg-120px {
    gap: 7.5rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .row-gap-lg-10px {
    row-gap: 0.625rem !important;
  }
  .row-gap-lg-12px {
    row-gap: 0.75rem !important;
  }
  .row-gap-lg-14px {
    row-gap: 0.875rem !important;
  }
  .row-gap-lg-20px {
    row-gap: 1.25rem !important;
  }
  .row-gap-lg-28px {
    row-gap: 1.75rem !important;
  }
  .row-gap-lg-32px {
    row-gap: 2rem !important;
  }
  .row-gap-lg-36px {
    row-gap: 2.25rem !important;
  }
  .row-gap-lg-40px {
    row-gap: 2.5rem !important;
  }
  .row-gap-lg-60px {
    row-gap: 3.75rem !important;
  }
  .row-gap-lg-80px {
    row-gap: 5rem !important;
  }
  .row-gap-lg-100px {
    row-gap: 6.25rem !important;
  }
  .row-gap-lg-120px {
    row-gap: 7.5rem !important;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }
  .column-gap-lg-10px {
    -webkit-column-gap: 0.625rem !important;
       -moz-column-gap: 0.625rem !important;
            column-gap: 0.625rem !important;
  }
  .column-gap-lg-12px {
    -webkit-column-gap: 0.75rem !important;
       -moz-column-gap: 0.75rem !important;
            column-gap: 0.75rem !important;
  }
  .column-gap-lg-14px {
    -webkit-column-gap: 0.875rem !important;
       -moz-column-gap: 0.875rem !important;
            column-gap: 0.875rem !important;
  }
  .column-gap-lg-20px {
    -webkit-column-gap: 1.25rem !important;
       -moz-column-gap: 1.25rem !important;
            column-gap: 1.25rem !important;
  }
  .column-gap-lg-28px {
    -webkit-column-gap: 1.75rem !important;
       -moz-column-gap: 1.75rem !important;
            column-gap: 1.75rem !important;
  }
  .column-gap-lg-32px {
    -webkit-column-gap: 2rem !important;
       -moz-column-gap: 2rem !important;
            column-gap: 2rem !important;
  }
  .column-gap-lg-36px {
    -webkit-column-gap: 2.25rem !important;
       -moz-column-gap: 2.25rem !important;
            column-gap: 2.25rem !important;
  }
  .column-gap-lg-40px {
    -webkit-column-gap: 2.5rem !important;
       -moz-column-gap: 2.5rem !important;
            column-gap: 2.5rem !important;
  }
  .column-gap-lg-60px {
    -webkit-column-gap: 3.75rem !important;
       -moz-column-gap: 3.75rem !important;
            column-gap: 3.75rem !important;
  }
  .column-gap-lg-80px {
    -webkit-column-gap: 5rem !important;
       -moz-column-gap: 5rem !important;
            column-gap: 5rem !important;
  }
  .column-gap-lg-100px {
    -webkit-column-gap: 6.25rem !important;
       -moz-column-gap: 6.25rem !important;
            column-gap: 6.25rem !important;
  }
  .column-gap-lg-120px {
    -webkit-column-gap: 7.5rem !important;
       -moz-column-gap: 7.5rem !important;
            column-gap: 7.5rem !important;
  }
  .column-gap-lg-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-lg-4 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-lg-5 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .fs-lg-1 {
    font-size: 3rem !important;
  }
  .fs-lg-2 {
    font-size: 2.5rem !important;
  }
  .fs-lg-3 {
    font-size: 2rem !important;
  }
  .fs-lg-4 {
    font-size: 1.5rem !important;
  }
  .fs-lg-5 {
    font-size: 1.25rem !important;
  }
  .fs-lg-6 {
    font-size: 1.125rem !important;
  }
  .fs-lg-36px {
    font-size: 2.25rem !important;
  }
  .fs-lg-28px {
    font-size: 1.75rem !important;
  }
  .fs-lg-22px {
    font-size: 1.375rem !important;
  }
  .fs-lg-16px {
    font-size: 1rem !important;
  }
  .fs-lg-14px {
    font-size: 0.875rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .object-fit-xl-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-xl-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-xl-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-xl-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-xl-10px {
    margin: 0.625rem !important;
  }
  .m-xl-12px {
    margin: 0.75rem !important;
  }
  .m-xl-14px {
    margin: 0.875rem !important;
  }
  .m-xl-20px {
    margin: 1.25rem !important;
  }
  .m-xl-28px {
    margin: 1.75rem !important;
  }
  .m-xl-32px {
    margin: 2rem !important;
  }
  .m-xl-36px {
    margin: 2.25rem !important;
  }
  .m-xl-40px {
    margin: 2.5rem !important;
  }
  .m-xl-60px {
    margin: 3.75rem !important;
  }
  .m-xl-80px {
    margin: 5rem !important;
  }
  .m-xl-100px {
    margin: 6.25rem !important;
  }
  .m-xl-120px {
    margin: 7.5rem !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-10px {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }
  .mx-xl-12px {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xl-14px {
    margin-right: 0.875rem !important;
    margin-left: 0.875rem !important;
  }
  .mx-xl-20px {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xl-28px {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-xl-32px {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-36px {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-xl-40px {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xl-60px {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-xl-80px {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xl-100px {
    margin-right: 6.25rem !important;
    margin-left: 6.25rem !important;
  }
  .mx-xl-120px {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-10px {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
  .my-xl-12px {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xl-14px {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }
  .my-xl-20px {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xl-28px {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-xl-32px {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-36px {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-xl-40px {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xl-60px {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-xl-80px {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xl-100px {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
  }
  .my-xl-120px {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-10px {
    margin-top: 0.625rem !important;
  }
  .mt-xl-12px {
    margin-top: 0.75rem !important;
  }
  .mt-xl-14px {
    margin-top: 0.875rem !important;
  }
  .mt-xl-20px {
    margin-top: 1.25rem !important;
  }
  .mt-xl-28px {
    margin-top: 1.75rem !important;
  }
  .mt-xl-32px {
    margin-top: 2rem !important;
  }
  .mt-xl-36px {
    margin-top: 2.25rem !important;
  }
  .mt-xl-40px {
    margin-top: 2.5rem !important;
  }
  .mt-xl-60px {
    margin-top: 3.75rem !important;
  }
  .mt-xl-80px {
    margin-top: 5rem !important;
  }
  .mt-xl-100px {
    margin-top: 6.25rem !important;
  }
  .mt-xl-120px {
    margin-top: 7.5rem !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-10px {
    margin-right: 0.625rem !important;
  }
  .me-xl-12px {
    margin-right: 0.75rem !important;
  }
  .me-xl-14px {
    margin-right: 0.875rem !important;
  }
  .me-xl-20px {
    margin-right: 1.25rem !important;
  }
  .me-xl-28px {
    margin-right: 1.75rem !important;
  }
  .me-xl-32px {
    margin-right: 2rem !important;
  }
  .me-xl-36px {
    margin-right: 2.25rem !important;
  }
  .me-xl-40px {
    margin-right: 2.5rem !important;
  }
  .me-xl-60px {
    margin-right: 3.75rem !important;
  }
  .me-xl-80px {
    margin-right: 5rem !important;
  }
  .me-xl-100px {
    margin-right: 6.25rem !important;
  }
  .me-xl-120px {
    margin-right: 7.5rem !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-10px {
    margin-bottom: 0.625rem !important;
  }
  .mb-xl-12px {
    margin-bottom: 0.75rem !important;
  }
  .mb-xl-14px {
    margin-bottom: 0.875rem !important;
  }
  .mb-xl-20px {
    margin-bottom: 1.25rem !important;
  }
  .mb-xl-28px {
    margin-bottom: 1.75rem !important;
  }
  .mb-xl-32px {
    margin-bottom: 2rem !important;
  }
  .mb-xl-36px {
    margin-bottom: 2.25rem !important;
  }
  .mb-xl-40px {
    margin-bottom: 2.5rem !important;
  }
  .mb-xl-60px {
    margin-bottom: 3.75rem !important;
  }
  .mb-xl-80px {
    margin-bottom: 5rem !important;
  }
  .mb-xl-100px {
    margin-bottom: 6.25rem !important;
  }
  .mb-xl-120px {
    margin-bottom: 7.5rem !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-10px {
    margin-left: 0.625rem !important;
  }
  .ms-xl-12px {
    margin-left: 0.75rem !important;
  }
  .ms-xl-14px {
    margin-left: 0.875rem !important;
  }
  .ms-xl-20px {
    margin-left: 1.25rem !important;
  }
  .ms-xl-28px {
    margin-left: 1.75rem !important;
  }
  .ms-xl-32px {
    margin-left: 2rem !important;
  }
  .ms-xl-36px {
    margin-left: 2.25rem !important;
  }
  .ms-xl-40px {
    margin-left: 2.5rem !important;
  }
  .ms-xl-60px {
    margin-left: 3.75rem !important;
  }
  .ms-xl-80px {
    margin-left: 5rem !important;
  }
  .ms-xl-100px {
    margin-left: 6.25rem !important;
  }
  .ms-xl-120px {
    margin-left: 7.5rem !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-10px {
    padding: 0.625rem !important;
  }
  .p-xl-12px {
    padding: 0.75rem !important;
  }
  .p-xl-14px {
    padding: 0.875rem !important;
  }
  .p-xl-20px {
    padding: 1.25rem !important;
  }
  .p-xl-28px {
    padding: 1.75rem !important;
  }
  .p-xl-32px {
    padding: 2rem !important;
  }
  .p-xl-36px {
    padding: 2.25rem !important;
  }
  .p-xl-40px {
    padding: 2.5rem !important;
  }
  .p-xl-60px {
    padding: 3.75rem !important;
  }
  .p-xl-80px {
    padding: 5rem !important;
  }
  .p-xl-100px {
    padding: 6.25rem !important;
  }
  .p-xl-120px {
    padding: 7.5rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-10px {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }
  .px-xl-12px {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xl-14px {
    padding-right: 0.875rem !important;
    padding-left: 0.875rem !important;
  }
  .px-xl-20px {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xl-28px {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-xl-32px {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-36px {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-xl-40px {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xl-60px {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-xl-80px {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xl-100px {
    padding-right: 6.25rem !important;
    padding-left: 6.25rem !important;
  }
  .px-xl-120px {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-10px {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
  .py-xl-12px {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xl-14px {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }
  .py-xl-20px {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xl-28px {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-xl-32px {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-36px {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-xl-40px {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xl-60px {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-xl-80px {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xl-100px {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }
  .py-xl-120px {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-10px {
    padding-top: 0.625rem !important;
  }
  .pt-xl-12px {
    padding-top: 0.75rem !important;
  }
  .pt-xl-14px {
    padding-top: 0.875rem !important;
  }
  .pt-xl-20px {
    padding-top: 1.25rem !important;
  }
  .pt-xl-28px {
    padding-top: 1.75rem !important;
  }
  .pt-xl-32px {
    padding-top: 2rem !important;
  }
  .pt-xl-36px {
    padding-top: 2.25rem !important;
  }
  .pt-xl-40px {
    padding-top: 2.5rem !important;
  }
  .pt-xl-60px {
    padding-top: 3.75rem !important;
  }
  .pt-xl-80px {
    padding-top: 5rem !important;
  }
  .pt-xl-100px {
    padding-top: 6.25rem !important;
  }
  .pt-xl-120px {
    padding-top: 7.5rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-10px {
    padding-right: 0.625rem !important;
  }
  .pe-xl-12px {
    padding-right: 0.75rem !important;
  }
  .pe-xl-14px {
    padding-right: 0.875rem !important;
  }
  .pe-xl-20px {
    padding-right: 1.25rem !important;
  }
  .pe-xl-28px {
    padding-right: 1.75rem !important;
  }
  .pe-xl-32px {
    padding-right: 2rem !important;
  }
  .pe-xl-36px {
    padding-right: 2.25rem !important;
  }
  .pe-xl-40px {
    padding-right: 2.5rem !important;
  }
  .pe-xl-60px {
    padding-right: 3.75rem !important;
  }
  .pe-xl-80px {
    padding-right: 5rem !important;
  }
  .pe-xl-100px {
    padding-right: 6.25rem !important;
  }
  .pe-xl-120px {
    padding-right: 7.5rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-10px {
    padding-bottom: 0.625rem !important;
  }
  .pb-xl-12px {
    padding-bottom: 0.75rem !important;
  }
  .pb-xl-14px {
    padding-bottom: 0.875rem !important;
  }
  .pb-xl-20px {
    padding-bottom: 1.25rem !important;
  }
  .pb-xl-28px {
    padding-bottom: 1.75rem !important;
  }
  .pb-xl-32px {
    padding-bottom: 2rem !important;
  }
  .pb-xl-36px {
    padding-bottom: 2.25rem !important;
  }
  .pb-xl-40px {
    padding-bottom: 2.5rem !important;
  }
  .pb-xl-60px {
    padding-bottom: 3.75rem !important;
  }
  .pb-xl-80px {
    padding-bottom: 5rem !important;
  }
  .pb-xl-100px {
    padding-bottom: 6.25rem !important;
  }
  .pb-xl-120px {
    padding-bottom: 7.5rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-10px {
    padding-left: 0.625rem !important;
  }
  .ps-xl-12px {
    padding-left: 0.75rem !important;
  }
  .ps-xl-14px {
    padding-left: 0.875rem !important;
  }
  .ps-xl-20px {
    padding-left: 1.25rem !important;
  }
  .ps-xl-28px {
    padding-left: 1.75rem !important;
  }
  .ps-xl-32px {
    padding-left: 2rem !important;
  }
  .ps-xl-36px {
    padding-left: 2.25rem !important;
  }
  .ps-xl-40px {
    padding-left: 2.5rem !important;
  }
  .ps-xl-60px {
    padding-left: 3.75rem !important;
  }
  .ps-xl-80px {
    padding-left: 5rem !important;
  }
  .ps-xl-100px {
    padding-left: 6.25rem !important;
  }
  .ps-xl-120px {
    padding-left: 7.5rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .gap-xl-10px {
    gap: 0.625rem !important;
  }
  .gap-xl-12px {
    gap: 0.75rem !important;
  }
  .gap-xl-14px {
    gap: 0.875rem !important;
  }
  .gap-xl-20px {
    gap: 1.25rem !important;
  }
  .gap-xl-28px {
    gap: 1.75rem !important;
  }
  .gap-xl-32px {
    gap: 2rem !important;
  }
  .gap-xl-36px {
    gap: 2.25rem !important;
  }
  .gap-xl-40px {
    gap: 2.5rem !important;
  }
  .gap-xl-60px {
    gap: 3.75rem !important;
  }
  .gap-xl-80px {
    gap: 5rem !important;
  }
  .gap-xl-100px {
    gap: 6.25rem !important;
  }
  .gap-xl-120px {
    gap: 7.5rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .row-gap-xl-10px {
    row-gap: 0.625rem !important;
  }
  .row-gap-xl-12px {
    row-gap: 0.75rem !important;
  }
  .row-gap-xl-14px {
    row-gap: 0.875rem !important;
  }
  .row-gap-xl-20px {
    row-gap: 1.25rem !important;
  }
  .row-gap-xl-28px {
    row-gap: 1.75rem !important;
  }
  .row-gap-xl-32px {
    row-gap: 2rem !important;
  }
  .row-gap-xl-36px {
    row-gap: 2.25rem !important;
  }
  .row-gap-xl-40px {
    row-gap: 2.5rem !important;
  }
  .row-gap-xl-60px {
    row-gap: 3.75rem !important;
  }
  .row-gap-xl-80px {
    row-gap: 5rem !important;
  }
  .row-gap-xl-100px {
    row-gap: 6.25rem !important;
  }
  .row-gap-xl-120px {
    row-gap: 7.5rem !important;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xl-10px {
    -webkit-column-gap: 0.625rem !important;
       -moz-column-gap: 0.625rem !important;
            column-gap: 0.625rem !important;
  }
  .column-gap-xl-12px {
    -webkit-column-gap: 0.75rem !important;
       -moz-column-gap: 0.75rem !important;
            column-gap: 0.75rem !important;
  }
  .column-gap-xl-14px {
    -webkit-column-gap: 0.875rem !important;
       -moz-column-gap: 0.875rem !important;
            column-gap: 0.875rem !important;
  }
  .column-gap-xl-20px {
    -webkit-column-gap: 1.25rem !important;
       -moz-column-gap: 1.25rem !important;
            column-gap: 1.25rem !important;
  }
  .column-gap-xl-28px {
    -webkit-column-gap: 1.75rem !important;
       -moz-column-gap: 1.75rem !important;
            column-gap: 1.75rem !important;
  }
  .column-gap-xl-32px {
    -webkit-column-gap: 2rem !important;
       -moz-column-gap: 2rem !important;
            column-gap: 2rem !important;
  }
  .column-gap-xl-36px {
    -webkit-column-gap: 2.25rem !important;
       -moz-column-gap: 2.25rem !important;
            column-gap: 2.25rem !important;
  }
  .column-gap-xl-40px {
    -webkit-column-gap: 2.5rem !important;
       -moz-column-gap: 2.5rem !important;
            column-gap: 2.5rem !important;
  }
  .column-gap-xl-60px {
    -webkit-column-gap: 3.75rem !important;
       -moz-column-gap: 3.75rem !important;
            column-gap: 3.75rem !important;
  }
  .column-gap-xl-80px {
    -webkit-column-gap: 5rem !important;
       -moz-column-gap: 5rem !important;
            column-gap: 5rem !important;
  }
  .column-gap-xl-100px {
    -webkit-column-gap: 6.25rem !important;
       -moz-column-gap: 6.25rem !important;
            column-gap: 6.25rem !important;
  }
  .column-gap-xl-120px {
    -webkit-column-gap: 7.5rem !important;
       -moz-column-gap: 7.5rem !important;
            column-gap: 7.5rem !important;
  }
  .column-gap-xl-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-xl-4 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-xl-5 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .fs-xl-1 {
    font-size: 3rem !important;
  }
  .fs-xl-2 {
    font-size: 2.5rem !important;
  }
  .fs-xl-3 {
    font-size: 2rem !important;
  }
  .fs-xl-4 {
    font-size: 1.5rem !important;
  }
  .fs-xl-5 {
    font-size: 1.25rem !important;
  }
  .fs-xl-6 {
    font-size: 1.125rem !important;
  }
  .fs-xl-36px {
    font-size: 2.25rem !important;
  }
  .fs-xl-28px {
    font-size: 1.75rem !important;
  }
  .fs-xl-22px {
    font-size: 1.375rem !important;
  }
  .fs-xl-16px {
    font-size: 1rem !important;
  }
  .fs-xl-14px {
    font-size: 0.875rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .object-fit-xxl-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-xxl-10px {
    margin: 0.625rem !important;
  }
  .m-xxl-12px {
    margin: 0.75rem !important;
  }
  .m-xxl-14px {
    margin: 0.875rem !important;
  }
  .m-xxl-20px {
    margin: 1.25rem !important;
  }
  .m-xxl-28px {
    margin: 1.75rem !important;
  }
  .m-xxl-32px {
    margin: 2rem !important;
  }
  .m-xxl-36px {
    margin: 2.25rem !important;
  }
  .m-xxl-40px {
    margin: 2.5rem !important;
  }
  .m-xxl-60px {
    margin: 3.75rem !important;
  }
  .m-xxl-80px {
    margin: 5rem !important;
  }
  .m-xxl-100px {
    margin: 6.25rem !important;
  }
  .m-xxl-120px {
    margin: 7.5rem !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-10px {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }
  .mx-xxl-12px {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xxl-14px {
    margin-right: 0.875rem !important;
    margin-left: 0.875rem !important;
  }
  .mx-xxl-20px {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xxl-28px {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-xxl-32px {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-36px {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-xxl-40px {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxl-60px {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-xxl-80px {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xxl-100px {
    margin-right: 6.25rem !important;
    margin-left: 6.25rem !important;
  }
  .mx-xxl-120px {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-10px {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
  .my-xxl-12px {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xxl-14px {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }
  .my-xxl-20px {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xxl-28px {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-xxl-32px {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-36px {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-xxl-40px {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxl-60px {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-xxl-80px {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xxl-100px {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
  }
  .my-xxl-120px {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-10px {
    margin-top: 0.625rem !important;
  }
  .mt-xxl-12px {
    margin-top: 0.75rem !important;
  }
  .mt-xxl-14px {
    margin-top: 0.875rem !important;
  }
  .mt-xxl-20px {
    margin-top: 1.25rem !important;
  }
  .mt-xxl-28px {
    margin-top: 1.75rem !important;
  }
  .mt-xxl-32px {
    margin-top: 2rem !important;
  }
  .mt-xxl-36px {
    margin-top: 2.25rem !important;
  }
  .mt-xxl-40px {
    margin-top: 2.5rem !important;
  }
  .mt-xxl-60px {
    margin-top: 3.75rem !important;
  }
  .mt-xxl-80px {
    margin-top: 5rem !important;
  }
  .mt-xxl-100px {
    margin-top: 6.25rem !important;
  }
  .mt-xxl-120px {
    margin-top: 7.5rem !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-10px {
    margin-right: 0.625rem !important;
  }
  .me-xxl-12px {
    margin-right: 0.75rem !important;
  }
  .me-xxl-14px {
    margin-right: 0.875rem !important;
  }
  .me-xxl-20px {
    margin-right: 1.25rem !important;
  }
  .me-xxl-28px {
    margin-right: 1.75rem !important;
  }
  .me-xxl-32px {
    margin-right: 2rem !important;
  }
  .me-xxl-36px {
    margin-right: 2.25rem !important;
  }
  .me-xxl-40px {
    margin-right: 2.5rem !important;
  }
  .me-xxl-60px {
    margin-right: 3.75rem !important;
  }
  .me-xxl-80px {
    margin-right: 5rem !important;
  }
  .me-xxl-100px {
    margin-right: 6.25rem !important;
  }
  .me-xxl-120px {
    margin-right: 7.5rem !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-10px {
    margin-bottom: 0.625rem !important;
  }
  .mb-xxl-12px {
    margin-bottom: 0.75rem !important;
  }
  .mb-xxl-14px {
    margin-bottom: 0.875rem !important;
  }
  .mb-xxl-20px {
    margin-bottom: 1.25rem !important;
  }
  .mb-xxl-28px {
    margin-bottom: 1.75rem !important;
  }
  .mb-xxl-32px {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-36px {
    margin-bottom: 2.25rem !important;
  }
  .mb-xxl-40px {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxl-60px {
    margin-bottom: 3.75rem !important;
  }
  .mb-xxl-80px {
    margin-bottom: 5rem !important;
  }
  .mb-xxl-100px {
    margin-bottom: 6.25rem !important;
  }
  .mb-xxl-120px {
    margin-bottom: 7.5rem !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-10px {
    margin-left: 0.625rem !important;
  }
  .ms-xxl-12px {
    margin-left: 0.75rem !important;
  }
  .ms-xxl-14px {
    margin-left: 0.875rem !important;
  }
  .ms-xxl-20px {
    margin-left: 1.25rem !important;
  }
  .ms-xxl-28px {
    margin-left: 1.75rem !important;
  }
  .ms-xxl-32px {
    margin-left: 2rem !important;
  }
  .ms-xxl-36px {
    margin-left: 2.25rem !important;
  }
  .ms-xxl-40px {
    margin-left: 2.5rem !important;
  }
  .ms-xxl-60px {
    margin-left: 3.75rem !important;
  }
  .ms-xxl-80px {
    margin-left: 5rem !important;
  }
  .ms-xxl-100px {
    margin-left: 6.25rem !important;
  }
  .ms-xxl-120px {
    margin-left: 7.5rem !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-10px {
    padding: 0.625rem !important;
  }
  .p-xxl-12px {
    padding: 0.75rem !important;
  }
  .p-xxl-14px {
    padding: 0.875rem !important;
  }
  .p-xxl-20px {
    padding: 1.25rem !important;
  }
  .p-xxl-28px {
    padding: 1.75rem !important;
  }
  .p-xxl-32px {
    padding: 2rem !important;
  }
  .p-xxl-36px {
    padding: 2.25rem !important;
  }
  .p-xxl-40px {
    padding: 2.5rem !important;
  }
  .p-xxl-60px {
    padding: 3.75rem !important;
  }
  .p-xxl-80px {
    padding: 5rem !important;
  }
  .p-xxl-100px {
    padding: 6.25rem !important;
  }
  .p-xxl-120px {
    padding: 7.5rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-10px {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }
  .px-xxl-12px {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xxl-14px {
    padding-right: 0.875rem !important;
    padding-left: 0.875rem !important;
  }
  .px-xxl-20px {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xxl-28px {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-xxl-32px {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-36px {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-xxl-40px {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxl-60px {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-xxl-80px {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xxl-100px {
    padding-right: 6.25rem !important;
    padding-left: 6.25rem !important;
  }
  .px-xxl-120px {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-10px {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
  .py-xxl-12px {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xxl-14px {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }
  .py-xxl-20px {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xxl-28px {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-xxl-32px {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-36px {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-xxl-40px {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxl-60px {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-xxl-80px {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xxl-100px {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }
  .py-xxl-120px {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-10px {
    padding-top: 0.625rem !important;
  }
  .pt-xxl-12px {
    padding-top: 0.75rem !important;
  }
  .pt-xxl-14px {
    padding-top: 0.875rem !important;
  }
  .pt-xxl-20px {
    padding-top: 1.25rem !important;
  }
  .pt-xxl-28px {
    padding-top: 1.75rem !important;
  }
  .pt-xxl-32px {
    padding-top: 2rem !important;
  }
  .pt-xxl-36px {
    padding-top: 2.25rem !important;
  }
  .pt-xxl-40px {
    padding-top: 2.5rem !important;
  }
  .pt-xxl-60px {
    padding-top: 3.75rem !important;
  }
  .pt-xxl-80px {
    padding-top: 5rem !important;
  }
  .pt-xxl-100px {
    padding-top: 6.25rem !important;
  }
  .pt-xxl-120px {
    padding-top: 7.5rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-10px {
    padding-right: 0.625rem !important;
  }
  .pe-xxl-12px {
    padding-right: 0.75rem !important;
  }
  .pe-xxl-14px {
    padding-right: 0.875rem !important;
  }
  .pe-xxl-20px {
    padding-right: 1.25rem !important;
  }
  .pe-xxl-28px {
    padding-right: 1.75rem !important;
  }
  .pe-xxl-32px {
    padding-right: 2rem !important;
  }
  .pe-xxl-36px {
    padding-right: 2.25rem !important;
  }
  .pe-xxl-40px {
    padding-right: 2.5rem !important;
  }
  .pe-xxl-60px {
    padding-right: 3.75rem !important;
  }
  .pe-xxl-80px {
    padding-right: 5rem !important;
  }
  .pe-xxl-100px {
    padding-right: 6.25rem !important;
  }
  .pe-xxl-120px {
    padding-right: 7.5rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-10px {
    padding-bottom: 0.625rem !important;
  }
  .pb-xxl-12px {
    padding-bottom: 0.75rem !important;
  }
  .pb-xxl-14px {
    padding-bottom: 0.875rem !important;
  }
  .pb-xxl-20px {
    padding-bottom: 1.25rem !important;
  }
  .pb-xxl-28px {
    padding-bottom: 1.75rem !important;
  }
  .pb-xxl-32px {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-36px {
    padding-bottom: 2.25rem !important;
  }
  .pb-xxl-40px {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxl-60px {
    padding-bottom: 3.75rem !important;
  }
  .pb-xxl-80px {
    padding-bottom: 5rem !important;
  }
  .pb-xxl-100px {
    padding-bottom: 6.25rem !important;
  }
  .pb-xxl-120px {
    padding-bottom: 7.5rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-10px {
    padding-left: 0.625rem !important;
  }
  .ps-xxl-12px {
    padding-left: 0.75rem !important;
  }
  .ps-xxl-14px {
    padding-left: 0.875rem !important;
  }
  .ps-xxl-20px {
    padding-left: 1.25rem !important;
  }
  .ps-xxl-28px {
    padding-left: 1.75rem !important;
  }
  .ps-xxl-32px {
    padding-left: 2rem !important;
  }
  .ps-xxl-36px {
    padding-left: 2.25rem !important;
  }
  .ps-xxl-40px {
    padding-left: 2.5rem !important;
  }
  .ps-xxl-60px {
    padding-left: 3.75rem !important;
  }
  .ps-xxl-80px {
    padding-left: 5rem !important;
  }
  .ps-xxl-100px {
    padding-left: 6.25rem !important;
  }
  .ps-xxl-120px {
    padding-left: 7.5rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .gap-xxl-10px {
    gap: 0.625rem !important;
  }
  .gap-xxl-12px {
    gap: 0.75rem !important;
  }
  .gap-xxl-14px {
    gap: 0.875rem !important;
  }
  .gap-xxl-20px {
    gap: 1.25rem !important;
  }
  .gap-xxl-28px {
    gap: 1.75rem !important;
  }
  .gap-xxl-32px {
    gap: 2rem !important;
  }
  .gap-xxl-36px {
    gap: 2.25rem !important;
  }
  .gap-xxl-40px {
    gap: 2.5rem !important;
  }
  .gap-xxl-60px {
    gap: 3.75rem !important;
  }
  .gap-xxl-80px {
    gap: 5rem !important;
  }
  .gap-xxl-100px {
    gap: 6.25rem !important;
  }
  .gap-xxl-120px {
    gap: 7.5rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .row-gap-xxl-10px {
    row-gap: 0.625rem !important;
  }
  .row-gap-xxl-12px {
    row-gap: 0.75rem !important;
  }
  .row-gap-xxl-14px {
    row-gap: 0.875rem !important;
  }
  .row-gap-xxl-20px {
    row-gap: 1.25rem !important;
  }
  .row-gap-xxl-28px {
    row-gap: 1.75rem !important;
  }
  .row-gap-xxl-32px {
    row-gap: 2rem !important;
  }
  .row-gap-xxl-36px {
    row-gap: 2.25rem !important;
  }
  .row-gap-xxl-40px {
    row-gap: 2.5rem !important;
  }
  .row-gap-xxl-60px {
    row-gap: 3.75rem !important;
  }
  .row-gap-xxl-80px {
    row-gap: 5rem !important;
  }
  .row-gap-xxl-100px {
    row-gap: 6.25rem !important;
  }
  .row-gap-xxl-120px {
    row-gap: 7.5rem !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xxl-10px {
    -webkit-column-gap: 0.625rem !important;
       -moz-column-gap: 0.625rem !important;
            column-gap: 0.625rem !important;
  }
  .column-gap-xxl-12px {
    -webkit-column-gap: 0.75rem !important;
       -moz-column-gap: 0.75rem !important;
            column-gap: 0.75rem !important;
  }
  .column-gap-xxl-14px {
    -webkit-column-gap: 0.875rem !important;
       -moz-column-gap: 0.875rem !important;
            column-gap: 0.875rem !important;
  }
  .column-gap-xxl-20px {
    -webkit-column-gap: 1.25rem !important;
       -moz-column-gap: 1.25rem !important;
            column-gap: 1.25rem !important;
  }
  .column-gap-xxl-28px {
    -webkit-column-gap: 1.75rem !important;
       -moz-column-gap: 1.75rem !important;
            column-gap: 1.75rem !important;
  }
  .column-gap-xxl-32px {
    -webkit-column-gap: 2rem !important;
       -moz-column-gap: 2rem !important;
            column-gap: 2rem !important;
  }
  .column-gap-xxl-36px {
    -webkit-column-gap: 2.25rem !important;
       -moz-column-gap: 2.25rem !important;
            column-gap: 2.25rem !important;
  }
  .column-gap-xxl-40px {
    -webkit-column-gap: 2.5rem !important;
       -moz-column-gap: 2.5rem !important;
            column-gap: 2.5rem !important;
  }
  .column-gap-xxl-60px {
    -webkit-column-gap: 3.75rem !important;
       -moz-column-gap: 3.75rem !important;
            column-gap: 3.75rem !important;
  }
  .column-gap-xxl-80px {
    -webkit-column-gap: 5rem !important;
       -moz-column-gap: 5rem !important;
            column-gap: 5rem !important;
  }
  .column-gap-xxl-100px {
    -webkit-column-gap: 6.25rem !important;
       -moz-column-gap: 6.25rem !important;
            column-gap: 6.25rem !important;
  }
  .column-gap-xxl-120px {
    -webkit-column-gap: 7.5rem !important;
       -moz-column-gap: 7.5rem !important;
            column-gap: 7.5rem !important;
  }
  .column-gap-xxl-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-xxl-4 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-xxl-5 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .fs-xxl-1 {
    font-size: 3rem !important;
  }
  .fs-xxl-2 {
    font-size: 2.5rem !important;
  }
  .fs-xxl-3 {
    font-size: 2rem !important;
  }
  .fs-xxl-4 {
    font-size: 1.5rem !important;
  }
  .fs-xxl-5 {
    font-size: 1.25rem !important;
  }
  .fs-xxl-6 {
    font-size: 1.125rem !important;
  }
  .fs-xxl-36px {
    font-size: 2.25rem !important;
  }
  .fs-xxl-28px {
    font-size: 1.75rem !important;
  }
  .fs-xxl-22px {
    font-size: 1.375rem !important;
  }
  .fs-xxl-16px {
    font-size: 1rem !important;
  }
  .fs-xxl-14px {
    font-size: 0.875rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
body.font-small {
  font-size: 18px;
}

body.font-medium {
  font-size: 20px;
}

body.font-large {
  font-size: 22px;
}

body {
  font-size: 1.125rem;
  -webkit-transition: font-size 0.2s ease;
  transition: font-size 0.2s ease;
}

h1,
.h1 {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 4px;
}
@media (max-width: 991.98px) {
  h1,
  .h1 {
    letter-spacing: 1px;
  }
}

h2,
.h2 {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 4px;
}
@media (max-width: 991.98px) {
  h2,
  .h2 {
    letter-spacing: 1px;
  }
}

h3,
.h3 {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
}
@media (max-width: 991.98px) {
  h3,
  .h3 {
    letter-spacing: 1px;
  }
}

h4, .l-bookmark .nav-link,
.h4 {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
}
@media (max-width: 991.98px) {
  h4, .l-bookmark .nav-link,
  .h4 {
    letter-spacing: 1px;
  }
}

h5,
.h5,
.accordion .accordion-button {
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1px;
}
@media (max-width: 991.98px) {
  h5,
  .h5,
  .accordion .accordion-button {
    letter-spacing: 1px;
  }
}

h6,
.h6 {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
}
@media (max-width: 991.98px) {
  h6,
  .h6 {
    letter-spacing: 1px;
  }
}

.subtitles1 {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.7;
}

.subtitles2 {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.8;
}

.subtitles3 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.8;
}

.u-text-orange-700 {
  color: #ffac0f;
}

.u-text-orange-900 {
  color: #fd8000;
}

.u-text-blue-700 {
  color: #2674c6;
}

.u-text-blue-900 {
  color: #0654a6;
}

.u-text-pink-700 {
  color: #ff998e;
}

.u-text-teal-700 {
  color: #14b2ba;
}

.u-text-teal-900 {
  color: #159ca1;
}

.u-bg-orange-50 {
  background: #fff3dc;
}

.u-bg-orange-300 {
  background: #ffdd9c;
}

.u-bg-orange-900 {
  background: #fd8000;
}

.u-bg-teal-50 {
  background: #edfcfc;
}

.u-bg-blue-50 {
  background: #e8f5ff;
}

.u-rounded-12px {
  border-radius: 12px;
}

.u-text-underline {
  text-decoration: underline;
}

.u-bg-texture, .l-faq {
  background-repeat: repeat;
}
.u-bg-texture--orange {
  background-image: url(../images/home/bg-orange.png);
}
.u-bg-texture--blue, .l-faq {
  background-image: url(../images/home/bg-blue.png);
}

.u-border-draw-white {
  -o-border-image: url("../images/deco/home/promo-border.svg") 18 15/20px round;
     border-image: url("../images/deco/home/promo-border.svg") 18 15/20px round;
}

.u-border-blue {
  border: solid 3px #b8dfff;
  -webkit-transition: -webkit-box-shadow ease-out 0.1s;
  transition: -webkit-box-shadow ease-out 0.1s;
  transition: box-shadow ease-out 0.1s;
  transition: box-shadow ease-out 0.1s, -webkit-box-shadow ease-out 0.1s;
}

.u-border-teal {
  border: solid 1px #84e2e2;
  -webkit-transition: -webkit-box-shadow ease-out 0.1s;
  transition: -webkit-box-shadow ease-out 0.1s;
  transition: box-shadow ease-out 0.1s;
  transition: box-shadow ease-out 0.1s, -webkit-box-shadow ease-out 0.1s;
}

.l-title-deco {
  position: relative;
  padding-left: 72px;
}
@media (max-width: 991.98px) {
  .l-title-deco {
    padding-left: 56px;
  }
}
.l-title-deco::before {
  content: "";
  position: absolute;
  width: 55px;
  height: 51px;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 991.98px) {
  .l-title-deco::before {
    width: 40px;
    height: 42px;
  }
}
.l-title-deco--orange::before {
  background-image: url(../images/deco/title-deco-orange.png);
}
.l-title-deco--blue::before {
  background-image: url(../images/deco/title-deco-blue.png);
}
.l-title-both-line {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-title-both-line .c-body-title {
  position: relative;
  z-index: 1;
  background: #fff;
  padding-left: 28px;
  padding-right: 28px;
}
@media (max-width: 991.98px) {
  .l-title-both-line .c-body-title {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-title-both-line::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-title-both-line::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-title-both-line--orange::before, .l-title-both-line--orange::after {
  background-image: url(../images/deco/home/title-line-orange.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.l-title-both-line--teal::before, .l-title-both-line--teal::after {
  background-image: url(../images/deco/home/title-line-teal.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.l-title-line {
  position: relative;
}
.l-title-line::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 20px;
  width: 1px;
}
.l-title-line--orange::before {
  background: #fd8000;
}
.l-title-line--teal::before {
  background: #159ca1;
}

@-webkit-keyframes floatUp {
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

@keyframes floatUp {
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@-webkit-keyframes floatUpMore {
  to {
    -webkit-transform: translateY(-30%);
            transform: translateY(-30%);
  }
}
@keyframes floatUpMore {
  to {
    -webkit-transform: translateY(-30%);
            transform: translateY(-30%);
  }
}
@-webkit-keyframes floatDown {
  to {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}
@keyframes floatDown {
  to {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}
@-webkit-keyframes cloudFloat {
  to {
    margin-left: -40px;
  }
}
@keyframes cloudFloat {
  to {
    margin-left: -40px;
  }
}
@-webkit-keyframes cloudFloat-mobile {
  to {
    margin-right: -40px;
  }
}
@keyframes cloudFloat-mobile {
  to {
    margin-right: -40px;
  }
}
@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes rotateRight {
  to {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}
@keyframes rotateRight {
  to {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}
@-webkit-keyframes rotateLeft {
  to {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}
@keyframes rotateLeft {
  to {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}
@-webkit-keyframes rotateRightLeft {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
@keyframes rotateRightLeft {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
@-webkit-keyframes scale-bouncy {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  5% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  6% {
    -webkit-transform: scale(1.45);
            transform: scale(1.45);
  }
  8% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  50% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  52% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  55% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  58% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale-bouncy {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  5% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  6% {
    -webkit-transform: scale(1.45);
            transform: scale(1.45);
  }
  8% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  50% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  52% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  55% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  58% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes diagonal-clip {
  0% {
    clip-path: polygon(-200% 200%, -200% 200%, -200% 200%, -200% 200%);
  }
  40% {
    clip-path: polygon(-200% 200%, 200% 200%, 200% -200%, -200% -200%);
  }
  60% {
    clip-path: polygon(-200% 200%, 200% 200%, 200% -200%, -200% -200%);
  }
  100% {
    clip-path: polygon(200% -200%, 200% -200%, 200% -200%, 200% -200%);
  }
}
@keyframes diagonal-clip {
  0% {
    clip-path: polygon(-200% 200%, -200% 200%, -200% 200%, -200% 200%);
  }
  40% {
    clip-path: polygon(-200% 200%, 200% 200%, 200% -200%, -200% -200%);
  }
  60% {
    clip-path: polygon(-200% 200%, 200% 200%, 200% -200%, -200% -200%);
  }
  100% {
    clip-path: polygon(200% -200%, 200% -200%, 200% -200%, 200% -200%);
  }
}
ol,
ul {
  margin-bottom: 0;
}

.accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  border-radius: 0px;
}
.accordion .accordion-item {
  border: none;
  border-radius: 1.5rem;
  -webkit-transition: -webkit-box-shadow ease-out 0.1s;
  transition: -webkit-box-shadow ease-out 0.1s;
  transition: box-shadow ease-out 0.1s;
  transition: box-shadow ease-out 0.1s, -webkit-box-shadow ease-out 0.1s;
}
.accordion .accordion-item:hover {
  outline: solid 1px #b8dfff;
  -webkit-box-shadow: 0 0 20px 0 #b8dfff;
          box-shadow: 0 0 20px 0 #b8dfff;
}
.accordion .accordion-header {
  border-radius: 1.5rem;
}
.accordion .accordion-button {
  position: relative;
  margin-bottom: 0;
  padding-right: 86px;
  border-radius: 1.5rem;
}
@media (max-width: 991.98px) {
  .accordion .accordion-button {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    padding-right: 56px;
  }
}
.accordion .accordion-button::after {
  right: 28px;
  position: absolute;
}
.accordion .accordion-button:not(.collapsed) {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.accordion .accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.accordion .accordion-body {
  border-top: solid 1px #d6d6d6;
}
@media (max-width: 991.98px) {
  .accordion .accordion-body {
    padding: 12px;
  }
}
.accordion.accordion-flush > .accordion-item > .accordion-header .accordion-button, .accordion.accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  border-radius: 1.5rem;
}

.btn {
  --bs-btn-border-radius: 50rem;
}
.btn .icon-wrapper {
  margin-left: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 20px;
}
.btn .icon-wrapper i {
  -webkit-transition: -webkit-transform ease-out 0.1s;
  transition: -webkit-transform ease-out 0.1s;
  transition: transform ease-out 0.1s;
  transition: transform ease-out 0.1s, -webkit-transform ease-out 0.1s;
}
.btn:hover .icon-wrapper i {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}

.c-btn-feature {
  padding: 12px 32px;
  color: #fff;
  border: none;
  margin-right: 4px;
}
.c-btn-feature.btn-lg {
  padding: 18px 33px;
  font-size: 1.25rem;
}
.c-btn-feature--blue {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-50%, #42a0ff), color-stop(150%, #c6e2ff));
  background: linear-gradient(to top, #42a0ff -50%, #c6e2ff 150%);
  outline: solid 1px transparent;
  -webkit-box-shadow: 0 0 20px 0 #b8dfff;
          box-shadow: 0 0 20px 0 #b8dfff;
}
.c-btn-feature--blue:hover:not(:disabled):not(.disabled) {
  color: #2674c6;
  background: #fff;
  outline: solid 2px #b8dfff;
  -webkit-box-shadow: 0 0 20px 0 #b8dfff;
          box-shadow: 0 0 20px 0 #b8dfff;
}
.c-btn-feature--blue:disabled, .c-btn-feature--blue.disabled {
  color: #fff;
  opacity: 0.4;
}
.c-btn-feature--orange {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-50%, #ffe0a4), color-stop(70%, #ffac0f), to(#ffac0f));
  background: linear-gradient(to bottom, #ffe0a4 -50%, #ffac0f 70%, #ffac0f 100%);
  outline: solid 1px transparent;
  -webkit-box-shadow: 0 0 20px 0 #ffdd9c;
          box-shadow: 0 0 20px 0 #ffdd9c;
}
.c-btn-feature--orange:hover:not(:disabled):not(.disabled) {
  color: #ffc456;
  background: #fff;
  outline: solid 2px #ffdd9c;
  -webkit-box-shadow: 0 0 20px 0 #ffdd9c;
          box-shadow: 0 0 20px 0 #ffdd9c;
}
.c-btn-feature--orange:disabled, .c-btn-feature--orange.disabled {
  color: #fff;
  opacity: 0.4;
}

.c-btn-apply {
  padding: 12px 32px;
  margin-right: 4px;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-50%, #ffe0a4), color-stop(70%, #ffac0f), to(#ffac0f));
  background: linear-gradient(to bottom, #ffe0a4 -50%, #ffac0f 70%, #ffac0f 100%);
  -webkit-box-shadow: 0 0 20px 0 #ffdd9c;
          box-shadow: 0 0 20px 0 #ffdd9c;
  border: none;
}
.c-btn-apply:hover:not(:disabled):not(.disabled) {
  color: #fff;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-50%, #42a0ff), color-stop(150%, #c6e2ff));
  background: linear-gradient(to top, #42a0ff -50%, #c6e2ff 150%);
  -webkit-box-shadow: 0 0 20px 0 #b8dfff;
          box-shadow: 0 0 20px 0 #b8dfff;
}
.c-btn-apply:disabled, .c-btn-apply.disabled {
  opacity: 0.5;
}
.c-btn-float {
  padding: 0;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 100px;
  color: #fff;
  font-size: 1.25rem;
  border-radius: 24px;
}
@media (max-width: 991.98px) {
  .c-btn-float {
    width: 80px;
    height: 80px;
    font-size: 1rem;
  }
}
.c-btn-float--blue {
  outline: solid 1px transparent;
  -webkit-box-shadow: 0 0 20px 0 #b8dfff;
          box-shadow: 0 0 20px 0 #b8dfff;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-50%, #42a0ff), color-stop(150%, #c6e2ff)), #fff;
  background: linear-gradient(to top, #42a0ff -50%, #c6e2ff 150%), #fff;
  outline: solid 1px #b8dfff;
}
.c-btn-float--blue:hover:not(:disabled):not(.disabled) {
  color: #2674c6;
  background: #fff;
  outline: solid 2px #b8dfff;
  -webkit-box-shadow: 0 0 20px 0 #b8dfff;
          box-shadow: 0 0 20px 0 #b8dfff;
}
.c-btn-float--blue:disabled, .c-btn-float--blue.disabled {
  color: #fff;
  opacity: 0.4;
}
.c-btn-float--orange {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-50%, #ffe0a4), color-stop(70%, #ffac0f), to(#ffac0f)), #fff;
  background: linear-gradient(to bottom, #ffe0a4 -50%, #ffac0f 70%, #ffac0f 100%), #fff;
  outline: solid 1px transparent;
  -webkit-box-shadow: 0 0 20px 0 #ffdd9c;
          box-shadow: 0 0 20px 0 #ffdd9c;
  outline: solid 1px #ffdd9c;
}
.c-btn-float--orange:hover:not(:disabled):not(.disabled) {
  color: #ffac0f;
  background: #fff;
  outline: solid 2px #ffdd9c;
  -webkit-box-shadow: 0 0 20px 0 #ffdd9c;
          box-shadow: 0 0 20px 0 #ffdd9c;
}
.c-btn-float--orange:disabled, .c-btn-float--orange.disabled {
  color: #fff;
  opacity: 0.4;
}

.c-btn-arrow {
  -webkit-transition: backgroundcolor ease-out 0s;
  transition: backgroundcolor ease-out 0s;
  padding: 0;
  border: 0;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}
.c-btn-arrow .icon-wrapper i {
  font-size: 1.25rem;
}
.c-btn-arrow:hover .icon-wrapper i {
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
}
.c-btn-arrow--blue {
  outline: solid 1px transparent;
  -webkit-box-shadow: 0 0 20px 0 #b8dfff;
          box-shadow: 0 0 20px 0 #b8dfff;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-50%, #42a0ff), color-stop(150%, #c6e2ff));
  background: linear-gradient(to top, #42a0ff -50%, #c6e2ff 150%);
  outline: solid 1px #b8dfff;
}
.c-btn-arrow--blue:hover:not(:disabled):not(.disabled) {
  color: #7ab8eb;
  background: #fff;
  outline: solid 2px #b8dfff;
  -webkit-box-shadow: 0 0 20px 0 #b8dfff;
          box-shadow: 0 0 20px 0 #b8dfff;
}
.c-btn-arrow--blue:disabled, .c-btn-arrow--blue.disabled {
  color: #fff;
  opacity: 0.5;
}
.c-btn-arrow--orange {
  outline: solid 1px transparent;
  -webkit-box-shadow: 0 0 20px 0 #ffdd9c;
          box-shadow: 0 0 20px 0 #ffdd9c;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-50%, #ffe0a4), color-stop(70%, #ffac0f), to(#ffac0f));
  background: linear-gradient(to bottom, #ffe0a4 -50%, #ffac0f 70%, #ffac0f 100%);
  outline: solid 1px #ffdd9c;
}
.c-btn-arrow--orange:hover:not(:disabled):not(.disabled) {
  color: #ffc456;
  background: #fff;
  outline: solid 2px #ffdd9c;
  -webkit-box-shadow: 0 0 20px 0 #ffdd9c;
          box-shadow: 0 0 20px 0 #ffdd9c;
}
.c-btn-arrow--orange:disabled, .c-btn-arrow--orange.disabled {
  color: #fff;
  opacity: 0.5;
}
.c-btn-arrow--pink {
  outline: solid 1px transparent;
  -webkit-box-shadow: 0 0 20px 0 #ffc5c0;
          box-shadow: 0 0 20px 0 #ffc5c0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-50%, #f24430), color-stop(150%, #fff2f0));
  background: linear-gradient(to top, #f24430 -50%, #fff2f0 150%);
  outline: solid 1px #ffc5c0;
}
.c-btn-arrow--pink:hover:not(:disabled):not(.disabled) {
  color: #ff998e;
  background: #fff;
  outline: solid 2px #ffc5c0;
  -webkit-box-shadow: 0 0 20px 0 #ffc5c0;
          box-shadow: 0 0 20px 0 #ffc5c0;
}
.c-btn-arrow--pink:disabled, .c-btn-arrow--pink.disabled {
  color: #fff;
  opacity: 0.5;
}
.c-btn-arrow .icon-wrapper {
  margin-left: 0;
}

.c-btn-close {
  border: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffac0f;
  outline: solid 1px #ffac0f;
}
.c-btn-close .icon-wrapper {
  margin-left: 0;
}
.c-btn-close .icon-wrapper i {
  font-size: 1.5rem;
}
.c-btn-close:hover .icon-wrapper i {
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
}
.c-btn-close:hover:not(:disabled):not(.disabled) {
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-50%, #ffe0a4), color-stop(70%, #ffac0f), to(#ffac0f));
  background: linear-gradient(to bottom, #ffe0a4 -50%, #ffac0f 70%, #ffac0f 100%);
  outline: solid 1px #ffdd9c;
}
.c-btn-close:focus:not(:focus-visible) {
  outline: solid 1px #ffac0f;
}

.l-main-header {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08);
}
@media (max-width: 1199.98px) {
  .l-main-header {
    padding: 16px 12px;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.l-main-header .navbar-brand img {
  height: 44px;
}
@media (max-width: 1199.98px) {
  .l-main-header .navbar-brand img {
    height: 36px;
  }
}
.l-main-header .c-header-wrapper {
  -webkit-transition: background-color ease-out 0.1s;
  transition: background-color ease-out 0.1s;
}
@media (max-width: 1199.98px) {
  .l-main-header .c-header-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 24px;
  }
}
.l-main-header .c-header-wrapper.show-bg {
  background: #fff;
}
.l-main-header .c-navbar {
  padding-top: 18px;
  padding-bottom: 18px;
}
@media (max-width: 1199.98px) {
  .l-main-header .c-navbar {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media (max-width: 1199.98px) {
  .l-main-header .c-navbar .c-navbar-nav-wrapper {
    width: 100%;
    padding-left: 28px;
    padding-right: 28px;
    padding-top: 18px;
  }
}
.l-main-header .c-navbar .nav-link {
  padding: 12px 16px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: #292929;
}
.l-main-header .c-navbar .nav-link:hover, .l-main-header .c-navbar .nav-link.active {
  color: #ffac0f;
}
@media (max-width: 1199.98px) {
  .l-main-header .c-navbar .nav-link {
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: solid 1px #d6d6d6;
  }
}
.l-main-header .c-navbar .navbar-toggler {
  width: 48px;
  height: 48px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-50%, #ffe0a4), color-stop(70%, #ffac0f), to(#ffac0f));
  background: linear-gradient(to bottom, #ffe0a4 -50%, #ffac0f 70%, #ffac0f 100%);
  color: #fff;
  border: 0;
  font-size: 1.25rem;
  position: relative;
  -webkit-transition: backgroundcolor ease-out 0.1s;
  transition: backgroundcolor ease-out 0.1s;
}
.l-main-header .c-navbar .navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.l-main-header .c-navbar .navbar-toggler .c-list-icon,
.l-main-header .c-navbar .navbar-toggler .c-close-icon {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  inset: 0;
  -webkit-transition: opacity ease-out 0.1s, -webkit-transform ease-out 0.1s;
  transition: opacity ease-out 0.1s, -webkit-transform ease-out 0.1s;
  transition: opacity ease-out 0.1s, transform ease-out 0.1s;
  transition: opacity ease-out 0.1s, transform ease-out 0.1s, -webkit-transform ease-out 0.1s;
}
.l-main-header .c-navbar .navbar-toggler.collapsed .c-list-icon {
  opacity: 1;
}
.l-main-header .c-navbar .navbar-toggler.collapsed .c-close-icon {
  opacity: 0;
}
.l-main-header .c-navbar .navbar-toggler:not(.collapsed) {
  background: #fff;
  color: #ffac0f;
  outline: solid 1px #ffac0f;
}
.l-main-header .c-navbar .navbar-toggler:not(.collapsed) .c-list-icon {
  opacity: 0;
}
.l-main-header .c-navbar .navbar-toggler:not(.collapsed) .c-close-icon {
  opacity: 1;
}
.l-main-header .c-nav-dropdown .dropdown-toggle {
  position: relative;
  padding: 12px 24px;
  background: #fff;
  color: #292929;
  border: none;
  outline: 1px solid #d6d6d6;
}
.l-main-header .c-nav-dropdown .dropdown-toggle:hover, .l-main-header .c-nav-dropdown .dropdown-toggle:active, .l-main-header .c-nav-dropdown .dropdown-toggle.show {
  background: #fff3dc;
  outline: solid 1px #ffc456;
  color: #fd8000;
}
.l-main-header .c-nav-dropdown .dropdown-toggle:hover .c-btn-text::before, .l-main-header .c-nav-dropdown .dropdown-toggle:active .c-btn-text::before, .l-main-header .c-nav-dropdown .dropdown-toggle.show .c-btn-text::before {
  background: #fd8000;
}
.l-main-header .c-nav-dropdown .dropdown-toggle::after {
  border-top: none;
  border-left: none;
  border-right: 1px solid #292929;
  border-bottom: 1px solid #292929;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  height: 8px;
  margin-right: 4px;
}
.l-main-header .c-nav-dropdown .dropdown-toggle.show::after, .l-main-header .c-nav-dropdown .dropdown-toggle:hover::after {
  border-right: 1px solid #fd8000;
  border-bottom: 1px solid #fd8000;
}
.l-main-header .c-nav-dropdown .dropdown-toggle .c-btn-text {
  padding-left: 8px;
  margin-left: 8px;
  position: relative;
}
.l-main-header .c-nav-dropdown .dropdown-toggle .c-btn-text::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 15px;
  width: 1px;
  border-radius: 50rem;
  background: #292929;
}
.l-main-header .c-nav-dropdown .dropdown-menu {
  border: none;
  padding: 12px;
  min-width: 133px;
  -webkit-box-shadow: 0 0 20px 0 #ffdd9c;
          box-shadow: 0 0 20px 0 #ffdd9c;
}
.l-main-header .c-nav-dropdown .dropdown-menu > li + li {
  margin-top: 8px;
}
.l-main-header .c-nav-dropdown .dropdown-menu[data-bs-popper] {
  margin-top: 8px;
}
.l-main-header .c-nav-dropdown .dropdown-menu .dropdown-item {
  padding: 0;
}
.l-main-header .c-nav-dropdown .dropdown-menu .dropdown-item:hover {
  color: #fd8000;
  background: none;
}
@media (max-width: 1199.98px) {
  .l-main-header .c-apply-wrapper {
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 28px;
    width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .l-main-header .c-apply-wrapper .c-btn-apply {
    width: 100%;
  }
}

.l-banner--home {
  padding-top: 120px;
  position: relative;
  background-image: url(../images/home/banner/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: darken;
}
@media (max-width: 991.98px) {
  .l-banner--home {
    padding-top: 112px;
    padding-bottom: 40px;
    background-image: url(../images/home/banner/bg-mobile.jpg);
    background-position: center;
  }
}
.l-banner--home .c-section-deco {
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 100%;
  -webkit-transform: translateY(30%);
      -ms-transform: translateY(30%);
          transform: translateY(30%);
  pointer-events: none;
}
.l-banner--home .c-section-deco img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-banner--home::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/home/banner/bg-city-back.png");
  width: 100%;
  height: 300px;
  bottom: -20px;
  z-index: -2;
  background-position: top center;
  background-size: contain;
  mix-blend-mode: hard-light;
}
@media (max-width: 1199.98px) {
  .l-banner--home::before {
    background-size: cover;
    bottom: -10px;
  }
}
@media (max-width: 767.98px) {
  .l-banner--home::before {
    background-image: url(../images/home/banner/bg-city-back_mobile.png);
    bottom: 0px;
    height: 150px;
    background-size: cover;
  }
}
.l-banner--home .c-slogan-wrapper {
  position: relative;
  padding-top: 92px;
}
@media (max-width: 991.98px) {
  .l-banner--home .c-slogan-wrapper {
    padding-top: 0;
  }
}
.l-banner--home .c-slogan-wrapper .c-feature-img {
  position: absolute;
  width: 52px;
  height: 52px;
  top: 0px;
  right: 114px;
  -webkit-animation: floatUpMore 1.5s ease-out alternate infinite;
          animation: floatUpMore 1.5s ease-out alternate infinite;
}
.l-banner--home .c-slogan-wrapper .c-feature-time {
  font-size: 28px;
  line-height: 1.7;
  font-weight: bold;
  letter-spacing: 3px;
  background: #ff998e;
  border-radius: 50rem;
  color: #fff;
  padding: 4px 28px;
}
.l-banner--home .c-slogan-wrapper .c-feature-title__text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
}
.l-banner--home .c-slogan-wrapper .c-feature-title__img {
  position: relative;
  background-image: none;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .l-banner--home .c-slogan-wrapper .c-feature-title__img {
    max-width: 318px;
  }
}
.l-banner--home .c-slogan-wrapper .c-feature-title__img img {
  -webkit-animation: fadeOut 0.3s ease-out forwards;
          animation: fadeOut 0.3s ease-out forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.l-banner--home .c-slogan-wrapper .c-feature-title__img::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/home/banner/slogan.png");
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-animation: fadeIn 0.1s ease-out forwards;
          animation: fadeIn 0.1s ease-out forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.l-banner--home .c-slogan-wrapper .c-feature-subtitle__display {
  font-size: 54px;
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: 4px;
}
@media (max-width: 991.98px) {
  .l-banner--home .c-slogan-wrapper .c-feature-subtitle__display {
    font-size: 28px;
  }
}
.l-banner--home .c-slogan-wrapper .c-feature-subtitle__zero {
  width: 63px;
  -webkit-animation: scale-bouncy 2.5s linear infinite both;
          animation: scale-bouncy 2.5s linear infinite both;
}
@media (max-width: 991.98px) {
  .l-banner--home .c-slogan-wrapper .c-feature-subtitle__zero {
    width: 30px;
  }
}
.l-banner--home .c-slogan-wrapper .c-feature-subtitle .c-btn-arrow {
  width: 48px;
  height: 48px;
}
@media (max-width: 991.98px) {
  .l-banner--home .c-slogan-wrapper .c-feature-subtitle .c-btn-arrow {
    width: 26px;
    height: 26px;
  }
}
.l-banner--home .c-slogan-wrapper .c-feature-subtitle .c-btn-arrow i {
  font-size: 1.25rem;
}
@media (max-width: 991.98px) {
  .l-banner--home .c-slogan-wrapper .c-feature-subtitle .c-btn-arrow i {
    font-size: 0.875rem;
  }
}
.l-banner--home .c-img-wrapper {
  position: relative;
  z-index: 1;
  padding-left: 62px;
}
@media (max-width: 991.98px) {
  .l-banner--home .c-img-wrapper {
    padding-left: 0;
  }
}
.l-banner--home .c-img-wrapper .c-feature-img {
  max-width: 365px;
  mix-blend-mode: darken;
  -webkit-animation: floatDown ease-out 4s infinite alternate;
          animation: floatDown ease-out 4s infinite alternate;
}
@media (max-width: 991.98px) {
  .l-banner--home .c-img-wrapper .c-feature-img {
    max-width: 175px;
  }
}
.l-banner--home .c-img-wrapper .c-deco-cloud {
  position: absolute;
  top: -20px;
  width: 176px;
  -webkit-animation: cloudFloat ease-out 3s infinite alternate;
          animation: cloudFloat ease-out 3s infinite alternate;
  left: -44px;
}
@media (max-width: 991.98px) {
  .l-banner--home .c-img-wrapper .c-deco-cloud {
    width: 83px;
    height: 58px;
    right: 40px;
    left: initial;
    top: 0;
    -webkit-animation: cloudFloat-mobile ease-out 3s infinite alternate;
            animation: cloudFloat-mobile ease-out 3s infinite alternate;
  }
}
.l-banner--home .c-img-wrapper .c-deco-cloud::before {
  z-index: -1;
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/home/banner/cloud-shadow.png");
  width: 100%;
  height: 100%;
  bottom: -44px;
  right: -20px;
}
@media (max-width: 991.98px) {
  .l-banner--home .c-img-wrapper .c-deco-cloud::before {
    bottom: -20px;
    right: -10px;
  }
}
.l-banner--home .c-img-wrapper .c-deco-chart {
  position: absolute;
  top: 144px;
  right: 0;
  width: 171px;
  height: 148px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .l-banner--home .c-img-wrapper .c-deco-chart {
    width: 80px;
    height: 79px;
  }
}
.l-banner--home .c-img-wrapper .c-deco-chart img {
  width: 128px;
  height: 109px;
  -webkit-filter: drop-shadow(10px 20px 10px rgba(186, 205, 217, 0.8));
          filter: drop-shadow(10px 20px 10px rgba(186, 205, 217, 0.8));
  -webkit-animation: rotateRightLeft 1s linear alternate infinite;
          animation: rotateRightLeft 1s linear alternate infinite;
}
@media (max-width: 991.98px) {
  .l-banner--home .c-img-wrapper .c-deco-chart img {
    width: 72px;
    height: 57px;
  }
}
.l-banner--home .c-img-wrapper .c-deco-chart::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/home/banner/lock-line.svg");
  width: 25px;
  height: 32px;
  top: 10px;
  right: 5px;
}
@media (max-width: 991.98px) {
  .l-banner--home .c-img-wrapper .c-deco-chart::before {
    width: 11px;
    height: 14px;
    right: 0;
  }
}

.l-banner--digit {
  overflow: hidden;
  background-image: url(../images/banner/bg-pc.png);
  background-size: cover;
  background-position: bottom;
  position: relative;
}
@media (max-width: 767.98px) {
  .l-banner--digit {
    background-image: url(../images/banner/bg-mobile.png);
    padding-bottom: 80px;
    background-position: bottom;
  }
}
.l-banner--digit::before {
  display: none;
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/banner/clock.png");
  width: 140px;
  height: 120px;
  bottom: 0px;
  left: 20%;
  -webkit-animation: rotateRight ease-out 1s infinite alternate;
          animation: rotateRight ease-out 1s infinite alternate;
}
@media (max-width: 991.98px) {
  .l-banner--digit::before {
    display: block;
    left: 30%;
  }
}
@media (max-width: 767.98px) {
  .l-banner--digit::before {
    width: 120px;
    left: 80px;
  }
}
.l-banner--digit .c-slogan-title {
  padding-top: 216px;
  padding-bottom: 218px;
}
@media (max-width: 991.98px) {
  .l-banner--digit .c-slogan-title {
    padding-top: 100px;
    padding-bottom: 0;
  }
}
.l-banner--digit .c-slogan-title__text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .l-banner--digit .c-slogan-title__img {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.l-banner--digit .c-slogan-title__img img {
  -webkit-animation: fadeOut 0.3s ease-out forwards;
          animation: fadeOut 0.3s ease-out forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.l-banner--digit .c-slogan-title__img::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/banner/slogan.png");
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-animation: fadeIn 0.1s ease-out forwards;
          animation: fadeIn 0.1s ease-out forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.l-banner--digit .c-slogan-title__img::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/banner/clock.png");
  width: 186px;
  height: 147px;
  bottom: -160px;
  left: 30px;
  -webkit-animation: rotateRight ease-out 1s infinite alternate;
          animation: rotateRight ease-out 1s infinite alternate;
}
@media (max-width: 991.98px) {
  .l-banner--digit .c-slogan-title__img::after {
    display: none;
  }
}
.l-banner--digit .c-img-wrapper--man {
  margin-top: 138px;
}
@media (max-width: 991.98px) {
  .l-banner--digit .c-img-wrapper--man {
    margin-top: 0;
    margin-right: 0;
  }
}
.l-banner--digit .c-img-wrapper--man .c-feature-img {
  width: 266px;
  -webkit-animation: floatDown ease-out 4s infinite alternate;
          animation: floatDown ease-out 4s infinite alternate;
}
@media (min-width: 1440px) {
  .l-banner--digit .c-img-wrapper--man .c-feature-img {
    left: 60px;
    position: relative;
  }
}
@media (max-width: 991.98px) {
  .l-banner--digit .c-img-wrapper--man .c-feature-img {
    width: 168px;
    position: initial;
  }
}
@media (max-width: 767.98px) {
  .l-banner--digit .c-img-wrapper--man .c-feature-img {
    width: 148px;
    position: initial;
  }
}
.l-banner--digit .c-img-wrapper--man .c-deco-img {
  position: absolute;
  top: -40px;
  right: -70px;
  max-width: 240px;
}
@media (max-width: 991.98px) {
  .l-banner--digit .c-img-wrapper--man .c-deco-img {
    left: 20px;
    right: auto;
    top: -40px;
  }
}
.l-banner--digit .c-img-wrapper--woman {
  margin-top: 300px;
  margin-left: -80px;
}
@media (max-width: 991.98px) {
  .l-banner--digit .c-img-wrapper--woman {
    margin-left: -20px;
    margin-top: 100px;
    max-width: 300px;
  }
}
.l-banner--digit .c-img-wrapper--woman .c-feature-img {
  -webkit-animation: floatDown ease-out 4s infinite alternate;
          animation: floatDown ease-out 4s infinite alternate;
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
@media (min-width: 1440px) {
  .l-banner--digit .c-img-wrapper--woman .c-feature-img {
    right: 48px;
    position: relative;
  }
}
.l-banner--digit .c-img-wrapper--woman .c-deco-img {
  position: absolute;
  top: 20px;
  left: 100px;
  max-width: 240px;
}
@media (max-width: 991.98px) {
  .l-banner--digit .c-img-wrapper--woman .c-deco-img {
    width: 220px;
    left: 0;
    top: 0;
  }
}
.l-banner--digit .c-img-wrapper--woman::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/banner/shield.png");
  width: 80px;
  height: 97px;
  top: -120px;
  right: 80px;
  -webkit-animation: rotateRight ease-out 1s infinite alternate;
          animation: rotateRight ease-out 1s infinite alternate;
}
@media (max-width: 991.98px) {
  .l-banner--digit .c-img-wrapper--woman::before {
    width: 70px;
    height: 64.5px;
    top: -100px;
    right: 50px;
  }
}

.l-float-tools {
  position: fixed;
  right: 50px;
  bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  z-index: 50;
}
@media (max-width: 991.98px) {
  .l-float-tools {
    right: 20px;
    bottom: 20px;
  }
}

.l-footer {
  background: #7ab8eb;
  color: #fff;
}
.l-footer__deco {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.l-footer__deco::before {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-left: 8px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #fff;
}

.l-bookmark .nav-link {
  border: none;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  -webkit-transition: width ease-out 0.1s;
  transition: width ease-out 0.1s;
}
@media (max-width: 991.98px) {
  .l-bookmark .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
.l-bookmark .tab-content {
  background: #fff;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
.l-bookmark--in-home-view {
  -webkit-filter: drop-shadow(0 0 20px #b8dfff);
          filter: drop-shadow(0 0 20px #b8dfff);
}
.l-bookmark--in-home-view .nav-link {
  width: 40%;
}
@media (max-width: 991.98px) {
  .l-bookmark--in-home-view .nav-link {
    width: 50%;
  }
}
.l-bookmark--in-home-view .nav-link.active {
  width: 60%;
}
@media (max-width: 991.98px) {
  .l-bookmark--in-home-view .nav-link.active {
    width: 50%;
  }
}
.l-bookmark--in-home-view.l-orange-style .nav-link {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-82%, #14b2ba), color-stop(223%, #b4eded));
  background: linear-gradient(0deg, #14b2ba -82%, #b4eded 223%);
  color: #fff;
}
.l-bookmark--in-home-view.l-orange-style .nav-link:hover {
  background: #edfcfc;
  color: #14b2ba;
  border-top: 3px solid #15c2cd;
  border-right: 3px solid #15c2cd;
  border-left: 3px solid #15c2cd;
}
.l-bookmark--in-home-view.l-orange-style .nav-link.active {
  color: #fd8000;
  background: #fff;
  border-top: 3px solid #ffdd9c;
  border-right: 3px solid #ffdd9c;
  border-left: 3px solid #ffdd9c;
  -webkit-box-shadow: 0 -8px 24px 0 #fff3dc inset;
          box-shadow: 0 -8px 24px 0 #fff3dc inset;
}
.l-bookmark--in-home-view.l-orange-style .nav-link:not(.active) {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-89.5%, #ffe0a4), color-stop(129.95%, #ffac0f), color-stop(208.32%, #ffac0f));
  background: linear-gradient(180deg, #ffe0a4 -89.5%, #ffac0f 129.95%, #ffac0f 208.32%);
  color: #fff;
}
.l-bookmark--in-home-view.l-orange-style .nav-link:not(.active):hover {
  background: #fff3dc;
  color: #ffac0f;
  border-top: 3px solid #ffc456;
  border-right: 3px solid #ffc456;
  border-left: 3px solid #ffc456;
}
.l-bookmark--in-home-view.l-orange-style .tab-content {
  border-bottom: 3px solid #ffdd9c;
  border-right: 3px solid #ffdd9c;
  border-left: 3px solid #ffdd9c;
}
.l-bookmark--in-home-view.l-teal-style .nav-link.active {
  color: #159ca1;
  background: #fff;
  border-top: 3px solid #84e2e2;
  border-right: 3px solid #84e2e2;
  border-left: 3px solid #84e2e2;
  -webkit-box-shadow: 0 -8px 24px 0 #edfcfc inset;
          box-shadow: 0 -8px 24px 0 #edfcfc inset;
  width: 60%;
}
@media (max-width: 991.98px) {
  .l-bookmark--in-home-view.l-teal-style .nav-link.active {
    width: 50%;
  }
}
.l-bookmark--in-home-view.l-teal-style .nav-link:not(.active) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-82%, var(--Teal-700, #40c5ca)), color-stop(223%, var(--Teal-100, #b4eded)));
  background: linear-gradient(0deg, var(--Teal-700, #40c5ca) -82%, var(--Teal-100, #b4eded) 223%);
  color: #fff;
}
.l-bookmark--in-home-view.l-teal-style .nav-link:not(.active):hover {
  background: #edfcfc;
  color: #14b2ba;
  border-top: 3px solid #14b2ba;
  border-right: 3px solid #14b2ba;
  border-left: 3px solid #14b2ba;
}
.l-bookmark--in-home-view.l-teal-style .tab-content {
  border-bottom: 3px solid #84e2e2;
  border-right: 3px solid #84e2e2;
  border-left: 3px solid #84e2e2;
}
.l-bookmark--in-digit-view {
  -webkit-filter: drop-shadow(0 0 20px #b8dfff);
          filter: drop-shadow(0 0 20px #b8dfff);
}
.l-bookmark--in-digit-view .nav-link {
  width: 25%;
  color: #fff;
  background: rgba(96, 172, 251, 0.4);
  border-top: solid 3px rgba(246, 250, 255, 0.7);
  border-left: solid 3px rgba(246, 250, 255, 0.7);
  border-right: solid 3px rgba(246, 250, 255, 0.7);
  position: relative;
  z-index: 1;
}
.l-bookmark--in-digit-view .nav-link::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-box-shadow: 0 0px 20px 0 #bcdfff;
          box-shadow: 0 0px 20px 0 #bcdfff;
  background: rgba(246, 250, 255, 0.3);
  z-index: -1;
}
@media (max-width: 991.98px) {
  .l-bookmark--in-digit-view .nav-link {
    width: 33%;
  }
}
.l-bookmark--in-digit-view .nav-link:hover {
  color: #2674c6;
  background: #e8f5ff;
  border-top: 3px solid #b8dfff;
  border-left: 3px solid #b8dfff;
  border-right: 3px solid #b8dfff;
}
.l-bookmark--in-digit-view .nav-link.active {
  width: 50%;
  background: #b8dfff;
  border-top: 3px solid #b8dfff;
  border-right: 3px solid #b8dfff;
  border-left: 3px solid #b8dfff;
  background: #fff;
  -webkit-box-shadow: 0 -8px 32px 0 rgba(166, 210, 253, 0.3) inset;
          box-shadow: 0 -8px 32px 0 rgba(166, 210, 253, 0.3) inset;
}
@media (max-width: 991.98px) {
  .l-bookmark--in-digit-view .nav-link.active {
    width: 33%;
  }
}
.l-bookmark--in-digit-view .nav-link.active::before {
  display: none;
}
.l-bookmark--in-digit-view .nav-link:nth-child(1).active {
  color: #fd8000;
}
.l-bookmark--in-digit-view .nav-link:nth-child(2).active {
  color: #159ca1;
}
.l-bookmark--in-digit-view .nav-link:nth-child(3).active {
  color: #0654a6;
}
.l-bookmark--in-digit-view .tab-content {
  border-bottom: solid 3px #b8dfff;
  border-right: solid 3px #b8dfff;
  border-left: solid 3px #b8dfff;
}

.l-faq {
  position: relative;
  mix-blend-mode: darken;
}
.l-faq ul {
  padding-left: 1em;
}
.l-faq ol {
  list-style-position: inside;
  padding-left: 0;
}
.l-faq--in-digit-view {
  background: #d5ebff;
}
.l-faq::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/home/banner/bg-city-back.png");
  width: 100%;
  height: 300px;
  bottom: -20px;
  z-index: -2;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: hard-light;
}
@media (max-width: 1199.98px) {
  .l-faq::before {
    background-size: cover;
    bottom: -10px;
  }
}
@media (max-width: 767.98px) {
  .l-faq::before {
    background-image: url(../images/home/banner/bg-city-back_mobile.png);
    bottom: 0px;
    height: 150px;
    background-size: cover;
  }
}
.l-faq .c-img-wrapper {
  max-width: 222px;
  position: relative;
}
@media (max-width: 991.98px) {
  .l-faq .c-img-wrapper {
    max-width: 165px;
  }
}
.l-faq .c-deco-wrapper {
  position: absolute;
  top: 50px;
  left: -60px;
}
@media (max-width: 991.98px) {
  .l-faq .c-deco-wrapper {
    left: -80px;
    top: 50px;
  }
}
.l-faq .c-deco-wrapper .c-deco-line {
  position: relative;
  width: 22px;
  height: 25px;
  left: -10px;
  top: -30px;
}
@media (max-width: 767.98px) {
  .l-faq .c-deco-wrapper .c-deco-line {
    width: 16px;
    height: 19px;
  }
}
.l-faq .c-deco-wrapper .c-feature-deco {
  width: 50px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: rotateRightLeft ease-out 2s infinite alternate;
          animation: rotateRightLeft ease-out 2s infinite alternate;
}
@media (max-width: 767.98px) {
  .l-faq .c-deco-wrapper .c-feature-deco {
    width: 37px;
    height: 52px;
  }
}

.l-home-view {
  scroll-behavior: smooth;
}
.l-home-view #benefit {
  scroll-margin-top: 120px;
}
.l-home-view .l-section {
  scroll-margin-top: 80px;
}
.l-home-view .c-square-wrapper {
  width: 58px;
  height: 61px;
  position: absolute;
}
.l-home-view .c-square-wrapper .c-deco-orange {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 0;
  left: 0;
  border-radius: 4px;
  background: linear-gradient(177deg, var(--Orange-700, #ffac0f) 8.12%, rgba(255, 172, 15, 0) 128.99%);
  -webkit-animation: floatUp 1s ease-out infinite alternate;
          animation: floatUp 1s ease-out infinite alternate;
}
.l-home-view .c-square-wrapper .c-deco-blue {
  position: absolute;
  right: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  border: 3px solid #b8dfff;
  -webkit-animation: floatDown 2s ease-out infinite alternate;
          animation: floatDown 2s ease-out infinite alternate;
}
.l-home-view .l-section--promo .c-content-wrapper {
  position: relative;
  z-index: 1;
}
.l-home-view .l-section--promo .c-content-wrapper::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/deco/home/rect-top.svg");
  width: 58px;
  height: 108px;
  bottom: 600px;
  right: -20px;
  -webkit-animation: floatDown ease-out 4s infinite alternate;
          animation: floatDown ease-out 4s infinite alternate;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--promo .c-content-wrapper::before {
    display: none;
  }
}
.l-home-view .l-section--promo .c-content-wrapper::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/deco/home/rect-bottom.svg");
  width: 114px;
  height: 158px;
  bottom: 50px;
  left: -20px;
  -webkit-animation: floatDown ease-out 4s infinite alternate;
          animation: floatDown ease-out 4s infinite alternate;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--promo .c-content-wrapper::after {
    display: none;
  }
}
.l-home-view .l-section--promo .c-content-wrapper__header::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/home/promo-bird.png");
  width: 83px;
  height: 91px;
  top: 40px;
  left: 100px;
  -webkit-animation: floatUp 2s ease-out alternate infinite;
          animation: floatUp 2s ease-out alternate infinite;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--promo .c-content-wrapper__header::before {
    background-image: url("../images/home/promo-bird-mobile.png");
    width: 50px;
    left: auto;
    right: 20px;
    top: 100px;
  }
}
.l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper {
  position: relative;
  border: solid 3px #ffdd9c;
  background: #fff;
  -webkit-box-shadow: 0 0 20px 0 #ffdd9c;
          box-shadow: 0 0 20px 0 #ffdd9c;
}
.l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper .c-title-display {
  font-size: 72px;
  letter-spacing: 1px;
  margin-left: 8px;
  margin-right: 8px;
  vertical-align: middle;
  line-height: 1;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper .c-title-display {
    font-size: 52px;
  }
}
.l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper .c-charge-top {
  position: relative;
}
.l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper .c-charge-top::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-image: radial-gradient(circle, #fff3dc 2px, transparent 2px);
  background-size: 12px 4px;
  background-repeat: repeat-x;
}
.l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper .c-charge-bottom .c-text-display {
  font-size: 52px;
  letter-spacing: 2px;
  line-height: 1.4;
  font-weight: bold;
}
.l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper__charge .c-feature-img {
  position: relative;
  left: 48px;
  bottom: -22px;
}
.l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper__charge .c-charge-img {
  width: 82px;
  position: relative;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper__charge .c-charge-img {
    width: 68px;
  }
}
.l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper__charge .c-charge-img img {
  -webkit-animation: scale-bouncy 2.5s linear infinite both;
          animation: scale-bouncy 2.5s linear infinite both;
}
.l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper__charge .c-charge-img::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/home/promo-charge-zero-line.svg");
  width: 30px;
  height: 37px;
  top: -40px;
  right: -30px;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper__charge .c-charge-img::before {
    top: 0px;
    right: -30px;
    width: 26px;
    height: 32px;
  }
}
.l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper__manage .c-manage-list .c-item-title {
  position: relative;
  padding-left: 48px;
}
.l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper__manage .c-manage-list .c-item-title::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/home/promo-check.svg");
  width: 32px;
  height: 44px;
  top: calc(50% - 0.1em);
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper__manage .c-manage-list .c-item-title::before {
    width: 20px;
    height: 40px;
    top: 0;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper__manage .c-manage-list .c-item-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.25rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 2px;
  margin-left: 4px;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--promo .c-content-wrapper__body .c-body-wrapper__manage .c-manage-list .c-item-number {
    font-size: 1.75rem;
  }
}
.l-home-view .l-section--promo .c-content-wrapper__footer {
  padding-left: 13.8%;
  padding-right: 13.8%;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--promo .c-content-wrapper__footer {
    padding-left: 0;
    padding-right: 0;
  }
}
.l-home-view .l-section--promo .l-accordion {
  --bs-accordion-btn-bg: url(../images/home/bg-orange.png);
  --bs-accordion-active-color: $orange-900;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke-width='1.5' fill='none' stroke='%23FD8000' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.l-home-view .l-section--promo .l-accordion .accordion-item:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.l-home-view .l-section--promo .l-accordion .accordion-button:not(.collapsed) {
  color: #fd8000;
}
.l-home-view .l-section--promo .l-accordion .accordion-button:hover {
  color: #fd8000;
}
.l-home-view .l-section--promo .l-accordion .accordion-button:hover::after {
  background: var(--bs-accordion-btn-active-icon);
}
.l-home-view .l-section--promo .l-accordion .accordion-button::after {
  position: static;
  margin-left: 12px;
}
.l-home-view .l-section--promo .l-accordion .accordion-body {
  font-size: inherit;
}
.l-home-view .l-section--promo .l-accordion .accordion-body ol {
  list-style-position: inside;
}
.l-home-view .l-section--promo .l-accordion .accordion-body ol li:nth-child(5),
.l-home-view .l-section--promo .l-accordion .accordion-body ol li:nth-child(6) {
  color: #fd8000;
}
.l-home-view .l-section--benefit {
  position: relative;
}
.l-home-view .l-section--benefit::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/deco/home/cloud.svg");
  width: 375px;
  height: 243px;
  top: 60px;
  right: 0;
  z-index: 1;
  background-position: 100px;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--benefit::before {
    display: none;
  }
}
.l-home-view .l-section--benefit .c-benefit-list .c-item-number {
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.l-home-view .l-section--benefit .c-benefit-list .c-item-img {
  width: 160px;
  height: 160px;
}
@media (max-width: 1199.98px) {
  .l-home-view .l-section--benefit .c-benefit-list .c-item-img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 767.98px) {
  .l-home-view .l-section--benefit .c-benefit-list .c-item-img {
    width: 80px;
    height: 80px;
  }
}
.l-home-view .l-section--story {
  position: relative;
  z-index: 1;
}
.l-home-view .l-section--story::before {
  z-index: -1;
  background-position: -160px;
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/deco/home/cloud.svg");
  width: 363px;
  height: 235px;
  top: 100px;
  left: 0;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--story::before {
    display: none;
  }
}
.l-home-view .l-section--story .c-story-wrapper {
  position: relative;
}
.l-home-view .l-section--story .c-story-wrapper::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/deco/home/bird.svg");
  width: 38px;
  height: 16px;
  top: 700px;
  left: 0;
}
@media (max-width: 1199.98px) {
  .l-home-view .l-section--story .c-story-wrapper::before {
    display: none;
  }
}
.l-home-view .l-section--story .c-story-wrapper__header {
  display: grid;
}
.l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper {
  grid-area: 1/1;
  opacity: 0;
  -webkit-transition: opacity ease-out 0.1s;
  transition: opacity ease-out 0.1s;
}
.l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper.show {
  opacity: 1;
}
.l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper__img {
  max-width: 412px;
}
@media (max-width: 1399.98px) {
  .l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper__img {
    max-width: 320px;
  }
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper__img {
    max-width: 250px;
  }
}
.l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper__desc {
  position: relative;
}
.l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper__desc .c-desc-title {
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper__desc .c-desc-title .c-deco-wrapper {
    display: none;
  }
}
.l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper__desc .c-desc-title .c-deco-wrapper--grandma .c-house-wrapper {
  position: absolute;
  right: -60px;
  bottom: -10px;
  width: 90px;
}
.l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper__desc .c-desc-title .c-deco-wrapper--grandma .c-house-wrapper .c-house-deco {
  position: absolute;
  right: -30px;
  bottom: -30px;
  -webkit-animation: rotateRightLeft 2s linear alternate infinite;
          animation: rotateRightLeft 2s linear alternate infinite;
}
.l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper__desc .c-desc-title .c-deco-wrapper--grandma .c-love-wrapper {
  position: absolute;
  right: -160px;
  top: -50px;
  width: 90px;
}
.l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper__desc .c-desc-title .c-deco-wrapper--grandma .c-love-wrapper img {
  -webkit-animation: diagonal-clip 5s ease-out infinite;
          animation: diagonal-clip 5s ease-out infinite;
}
.l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper__desc .c-desc-title .c-deco-wrapper--boy .c-love-wrapper {
  position: absolute;
  right: -160px;
  top: -50px;
  width: 90px;
}
.l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper__desc .c-desc-title .c-deco-wrapper--boy .c-love-wrapper img {
  -webkit-animation: floatUp 2s ease-out alternate infinite;
          animation: floatUp 2s ease-out alternate infinite;
}
.l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper__desc .c-desc-title::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: -29px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-right: 45px solid #fff;
  border-top: 14.5px solid transparent;
  border-bottom: 14.5px solid transparent;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper__desc .c-desc-title::before {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--story .c-story-wrapper__header .c-header-wrapper__desc .subtitles1 {
    font-weight: normal;
  }
}
.l-home-view .l-section--story .c-story-list .c-list-item {
  position: relative;
}
.l-home-view .l-section--story .c-story-list .c-list-item + .c-list-item::before {
  content: "\f063";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  font-size: 2rem;
  line-height: 1;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--story .c-story-list .c-list-item + .c-list-item::before {
    -webkit-transform: translate(-50%, -200%);
        -ms-transform: translate(-50%, -200%);
            transform: translate(-50%, -200%);
    font-size: 1.5rem;
  }
}
.l-home-view .l-section--story .c-story-list .c-list-item .c-item__number {
  width: 8.4%;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--story .c-story-list .c-list-item .c-item__number {
    width: 100%;
  }
}
.l-home-view .l-section--story .c-story-list .c-list-item .c-item__img {
  width: 28%;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--story .c-story-list .c-list-item .c-item__img {
    width: 100%;
    max-width: 180px;
  }
}
.l-home-view .l-section--story .c-story-list .c-list-item .c-item-text {
  width: 56.1%;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--story .c-story-list .c-list-item .c-item-text {
    width: 100%;
  }
}
.l-home-view .l-section--story .l-orange-style .c-list-item + .c-list-item::before {
  color: #ffac0f;
}
.l-home-view .l-section--story .l-orange-style .c-story-chart {
  border-width: 5px;
  border-style: solid;
  -o-border-image: url("../images/home/story-grandma/chart-border.svg") 10 10/10px stretch;
     border-image: url("../images/home/story-grandma/chart-border.svg") 10 10/10px stretch;
}
.l-home-view .l-section--story .l-teal-style .c-list-item + .c-list-item::before {
  color: #14b2ba;
}
.l-home-view .l-section--story .l-teal-style .c-story-chart {
  border-width: 5px;
  border-style: solid;
  -o-border-image: url("../images/home/story-boy/chart-border.svg") 10 10/10px stretch;
     border-image: url("../images/home/story-boy/chart-border.svg") 10 10/10px stretch;
}
.l-home-view .l-section--story .c-section-deco {
  position: relative;
}
.l-home-view .l-section--story .c-section-deco .c-deco-bg {
  z-index: -1;
  position: absolute;
  bottom: -50px;
  width: 100%;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  height: 300px;
  -webkit-mask-image: url("../images/deco/home/case-section-hr.png");
          mask-image: url("../images/deco/home/case-section-hr.png");
  -webkit-mask-size: 105%;
          mask-size: 105%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top;
          mask-position: top;
}
@media (max-width: 1440px) {
  .l-home-view .l-section--story .c-section-deco .c-deco-bg {
    bottom: -70px;
  }
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--story .c-section-deco .c-deco-bg {
    bottom: -20px;
  }
}
@media (max-width: 767.98px) {
  .l-home-view .l-section--story .c-section-deco .c-deco-bg {
    bottom: -25px;
  }
}
.l-home-view .l-section--story .c-section-deco .c-deco-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-home-view .l-section--story .c-footer-wrapper {
  position: absolute;
  width: 100%;
  bottom: -100px;
}
.l-home-view .l-section--story .c-footer-wrapper .c-deco-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 136px;
  padding-right: 136px;
  position: relative;
  bottom: -30px;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--story .c-footer-wrapper .c-deco-content {
    padding-left: 0;
    padding-right: 0;
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
  }
}
.l-home-view .l-section--story .c-footer-wrapper .c-cloud {
  overflow: hidden;
  width: 647px;
}
.l-home-view .l-section--story .c-footer-wrapper .c-cloud img {
  position: absolute;
  z-index: 0;
  left: -100px;
}
@media (max-width: 767.98px) {
  .l-home-view .l-section--story .c-footer-wrapper .c-cloud img {
    width: 200px;
    top: -28px;
  }
}
.l-home-view .l-section--story .c-footer-wrapper .c-balloon {
  width: 103px;
  -webkit-animation: floatUpMore 2s -0.5s linear alternate infinite;
          animation: floatUpMore 2s -0.5s linear alternate infinite;
}
@media (max-width: 767.98px) {
  .l-home-view .l-section--story .c-footer-wrapper .c-balloon {
    bottom: 40px;
    position: relative;
  }
}
.l-home-view .l-section--story .c-footer-wrapper .c-bird-red {
  width: 84px;
}
@media (max-width: 767.98px) {
  .l-home-view .l-section--story .c-footer-wrapper .c-bird-red {
    bottom: 52px;
    position: relative;
  }
}
.l-home-view .l-section--story .c-footer-wrapper .c-bird-blue {
  width: 83px;
  -webkit-animation: floatUpMore 2s linear alternate infinite;
          animation: floatUpMore 2s linear alternate infinite;
}
@media (max-width: 767.98px) {
  .l-home-view .l-section--story .c-footer-wrapper .c-bird-blue {
    bottom: 36px;
    position: relative;
  }
}
.l-home-view .l-section--story .c-footer-wrapper .c-heart-white {
  width: 63px;
  position: relative;
  top: -20px;
}
.l-home-view .l-section--story .c-footer-wrapper .c-heart-white img {
  -webkit-animation: diagonal-clip 5s ease-out infinite;
          animation: diagonal-clip 5s ease-out infinite;
}
.l-home-view .l-section--story .c-footer-wrapper .c-heart-red {
  position: relative;
  top: -50px;
  width: 95px;
}
.l-home-view .l-section--contact .c-square-wrapper {
  top: -50px;
  right: 10px;
}
.l-home-view .l-section--contact .c-feature-list .c-item__container {
  border: solid 1px transparent;
}
.l-home-view .l-section--contact .c-feature-list .c-item__container > * {
  -webkit-transition: all ease-out 0.1s;
  transition: all ease-out 0.1s;
}
.l-home-view .l-section--contact .c-feature-list .c-item__container:hover {
  background: #fff;
  border: solid 1px #ffdd9c;
  -webkit-box-shadow: 0 0 20px 0 #ffdd9c;
          box-shadow: 0 0 20px 0 #ffdd9c;
  color: #ffac0f;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--contact .c-feature-list .c-item__container img {
    max-width: 199px;
  }
}
.l-home-view .l-section--film .c-content-wrapper {
  position: relative;
}
.l-home-view .l-section--film .c-content-wrapper::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/deco/home/film-deco-start.png");
  width: 146px;
  height: 146px;
  top: -50px;
  left: 0px;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--film .c-content-wrapper::before {
    display: none;
  }
}
.l-home-view .l-section--film .c-content-wrapper::after {
  pointer-events: none;
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/deco/home/film-human.png");
  width: 222px;
  height: 308px;
  bottom: -50px;
  right: -40px;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .l-home-view .l-section--film .c-content-wrapper::after {
    width: 130px;
    height: 181px;
    right: -10px;
    bottom: -60px;
  }
}
.l-home-view .l-section--film .c-content-wrapper__body::before {
  display: none;
  z-index: 5;
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/deco/home/film-deco-start.png");
  width: 80px;
  height: 80px;
  top: -30px;
  left: -20px;
  background-position: -10px;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--film .c-content-wrapper__body::before {
    display: block;
  }
}
.l-home-view .l-section--film .c-content-wrapper__body .c-body-wrapper {
  background: #fff;
  border: solid 1px #ffdd9c;
  -webkit-box-shadow: 0 0 20px 0 #ffdd9c;
          box-shadow: 0 0 20px 0 #ffdd9c;
  background: #fff;
  position: relative;
}
.l-home-view .l-section--film .c-content-wrapper__body .c-body-wrapper .swiper-slide-active::before {
  content: "";
  width: 3px;
  height: calc(100% - 96px);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  border-width: 3px;
  border-style: solid;
  -o-border-image: url("../images/deco/home/film-border.svg") 1 2/5px repeat;
     border-image: url("../images/deco/home/film-border.svg") 1 2/5px repeat;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--film .c-content-wrapper__body .c-body-wrapper .swiper-slide-active::before {
    display: none;
  }
}
.l-home-view .l-section--film .c-content-wrapper__body .c-body-wrapper .c-list-item {
  position: relative;
  padding-top: 52px;
  padding-bottom: 52px;
  cursor: pointer;
}
.l-home-view .l-section--film .c-content-wrapper__body .c-body-wrapper .c-list-item::before, .l-home-view .l-section--film .c-content-wrapper__body .c-body-wrapper .c-list-item::after {
  content: "";
  height: 40px;
  width: 100%;
  position: absolute;
  left: 0;
  background-image: url(../images/deco/home/film-deco.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767.98px) {
  .l-home-view .l-section--film .c-content-wrapper__body .c-body-wrapper .c-list-item::before, .l-home-view .l-section--film .c-content-wrapper__body .c-body-wrapper .c-list-item::after {
    background-image: url(../images/deco/home/film-deco-mobile.png);
  }
}
.l-home-view .l-section--film .c-content-wrapper__body .c-body-wrapper .c-list-item::before {
  top: 0;
  left: 0;
}
.l-home-view .l-section--film .c-content-wrapper__body .c-body-wrapper .c-list-item::after {
  bottom: 0;
  left: 0;
}
.l-home-view .l-section--film .c-content-wrapper__body .c-body-wrapper .c-img-wrapper {
  position: relative;
}
.l-home-view .l-section--film .c-content-wrapper__body .c-body-wrapper .c-img-wrapper:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: opacity ease-out 0.1s;
  transition: opacity ease-out 0.1s;
  top: 0;
  left: 0;
  background: rgba(41, 41, 41, 0.6);
  pointer-events: none;
}
.l-home-view .l-section--film .c-content-wrapper__body .c-body-wrapper .c-img-wrapper:hover::after {
  opacity: 0;
}
.l-home-view .l-section--film .c-content-wrapper__body .c-body-wrapper .c-img-wrapper .c-item-icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 3rem;
  color: #fff;
}
.l-home-view .l-section--film .c-content-wrapper__body .c-film-swiper-prev,
.l-home-view .l-section--film .c-content-wrapper__body .c-film-swiper-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 991.98px) {
  .l-home-view .l-section--film .c-content-wrapper__body .c-film-swiper-prev,
  .l-home-view .l-section--film .c-content-wrapper__body .c-film-swiper-next {
    position: static;
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.l-home-view .l-section--film .c-content-wrapper__body .c-film-swiper-prev {
  left: -24px;
}
.l-home-view .l-section--film .c-content-wrapper__body .c-film-swiper-next {
  right: -24px;
}
.l-home-view .l-film-modal .modal-dialog {
  max-width: 920px;
}
.l-home-view .l-film-modal .modal-content {
  border: 3px solid #ffdd9c;
  background: #fff;
  -webkit-box-shadow: 0 0 20px 0 #ffdd9c;
          box-shadow: 0 0 20px 0 #ffdd9c;
}
@media (max-width: 1199.98px) {
  .l-home-view .l-film-modal .c-film-button-wrapper {
    width: 100%;
    position: absolute;
    bottom: -68px;
  }
}
.l-home-view .l-film-modal .c-film-swiper-prev,
.l-home-view .l-film-modal .c-film-swiper-next {
  position: absolute;
  top: 50%;
}
@media (max-width: 1199.98px) {
  .l-home-view .l-film-modal .c-film-swiper-prev,
  .l-home-view .l-film-modal .c-film-swiper-next {
    position: static;
  }
}
.l-home-view .l-film-modal .c-film-swiper-prev {
  left: -40px;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media (max-width: 1199.98px) {
  .l-home-view .l-film-modal .c-film-swiper-prev {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
.l-home-view .l-film-modal .c-film-swiper-next {
  right: -40px;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
@media (max-width: 1199.98px) {
  .l-home-view .l-film-modal .c-film-swiper-next {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}

.l-digit-view {
  position: relative;
  scroll-behavior: smooth;
}
.l-digit-view #main-video {
  scroll-margin-top: 240px;
}
.l-digit-view::before {
  z-index: 2;
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/deco/digit/star.svg");
  width: 254px;
  height: 476px;
  top: 500px;
  left: 0;
  mix-blend-mode: color-dodge;
}
@media (max-width: 991.98px) {
  .l-digit-view::before {
    display: none;
  }
}
.l-digit-view .l-section--service {
  position: relative;
  background: #d5ebff;
  z-index: 1;
}
.l-digit-view .l-section--service::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/deco/digit/dot-top.svg");
  width: 310px;
  height: 362px;
  top: -100px;
  right: 0;
}
@media (max-width: 991.98px) {
  .l-digit-view .l-section--service::before {
    width: 150px;
    height: 200px;
    top: -100px;
  }
}
.l-digit-view .l-section--service::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/deco/digit/dot-bottom.svg");
  width: 440px;
  height: 262px;
  bottom: -50px;
  left: 0;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .l-digit-view .l-section--service::after {
    display: none;
  }
}
.l-digit-view .l-section--service .c-service-wrapper::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/deco/digit/bling.png");
  width: 152px;
  height: 440px;
  bottom: 100px;
  right: 0;
  mix-blend-mode: screen;
}
.l-digit-view .l-section--service .c-service-wrapper::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/deco/digit/bling-single.svg");
  width: 68px;
  height: 68px;
  bottom: 500px;
  left: 20px;
  mix-blend-mode: screen;
}
.l-digit-view .l-section--service .l-bookmark--in-digit-view {
  position: relative;
}
.l-digit-view .l-section--service .l-bookmark--in-digit-view::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/deco/digit/square-single.svg");
  width: 25px;
  height: 25px;
  bottom: 200px;
  left: 0;
  -webkit-animation: floatDown ease-out 4s infinite alternate;
          animation: floatDown ease-out 4s infinite alternate;
}
@media (max-width: 991.98px) {
  .l-digit-view .l-section--service .l-bookmark--in-digit-view::before {
    display: none;
  }
}
.l-digit-view .l-section--service .l-bookmark--in-digit-view::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/deco/digit/square-double.svg");
  width: 98px;
  height: 136px;
  top: 300px;
  right: 50px;
  -webkit-animation: floatDown ease-out 4s infinite alternate;
          animation: floatDown ease-out 4s infinite alternate;
}
@media (max-width: 991.98px) {
  .l-digit-view .l-section--service .l-bookmark--in-digit-view::after {
    display: none;
  }
}
.l-digit-view .l-section--service .l-slider-wrapper__img {
  width: 42.73%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1199.98px) {
  .l-digit-view .l-section--service .l-slider-wrapper__img {
    max-width: 320px;
  }
}
@media (max-width: 991.98px) {
  .l-digit-view .l-section--service .l-slider-wrapper__img {
    width: 100%;
  }
}
.l-digit-view .l-section--service .l-slider-wrapper__btn {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 991.98px) {
  .l-digit-view .l-section--service .l-slider-wrapper__btn {
    width: 100%;
  }
}
.l-digit-view .l-section--service .l-slider-wrapper__btn .l-slider-button {
  padding: 20px;
  text-align: left;
  border-radius: 1.5rem;
  background: #fff;
  color: #fff;
}
.l-digit-view .l-section--service .l-slider-wrapper__btn .l-slider-button > * {
  -webkit-transition: all ease-out 0.1s;
  transition: all ease-out 0.1s;
}
@media (max-width: 991.98px) {
  .l-digit-view .l-section--service .l-slider-wrapper__btn .l-slider-button {
    padding: 16px 20px;
  }
}
.l-digit-view .l-section--service .l-slider-wrapper__btn .l-slider-button__number {
  background: #fff;
  padding: 5px 8px;
  border-radius: 12px;
}
.l-digit-view .l-section--service .l-slider-wrapper--teal .l-slider-button {
  color: #159ca1;
}
.l-digit-view .l-section--service .l-slider-wrapper--teal .l-slider-button__number {
  color: #159ca1;
  border: solid 2px #159ca1;
}
.l-digit-view .l-section--service .l-slider-wrapper--teal .l-slider-button:hover:not(.active) {
  outline: solid 2px #84e2e2;
  -webkit-box-shadow: 0 0 20px 0 #b4eded;
          box-shadow: 0 0 20px 0 #b4eded;
}
.l-digit-view .l-section--service .l-slider-wrapper--teal .l-slider-button:hover:not(.active) .l-slider-button__number {
  color: #159ca1;
  background: #b4eded;
  outline: solid 2px transparent;
}
.l-digit-view .l-section--service .l-slider-wrapper--teal .l-slider-button.active {
  color: #fff;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-82%, #14b2ba), color-stop(223%, #b4eded));
  background: linear-gradient(0deg, #14b2ba -82%, #b4eded 223%);
}
.l-digit-view .l-section--service .l-slider-wrapper--blue .l-slider-wrapper__img {
  border-radius: 1.5rem;
  outline: 2px solid #e8f5ff;
  -webkit-box-shadow: 0 0 20px 0 #b8dfff;
          box-shadow: 0 0 20px 0 #b8dfff;
  overflow: hidden;
}
.l-digit-view .l-section--service .l-slider-wrapper--blue .l-slider-button {
  color: #0654a6;
}
.l-digit-view .l-section--service .l-slider-wrapper--blue .l-slider-button__number {
  color: #0654a6;
  outline: solid 1px #0654a6;
}
.l-digit-view .l-section--service .l-slider-wrapper--blue .l-slider-button:hover:not(.active) {
  outline: solid 2px #b8dfff;
  -webkit-box-shadow: 0 0 20px 0 #d0eaff;
          box-shadow: 0 0 20px 0 #d0eaff;
}
.l-digit-view .l-section--service .l-slider-wrapper--blue .l-slider-button:hover:not(.active) .l-slider-button__number {
  color: #0654a6;
  background: #d0eaff;
  outline: solid 2px transparent;
}
.l-digit-view .l-section--service .l-slider-wrapper--blue .l-slider-button.active {
  color: #fff;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-82%, #42a0ff), color-stop(223%, #c6e2ff));
  background: linear-gradient(0deg, #42a0ff -82%, #c6e2ff 223%);
}
.l-digit-view .l-section--service .l-service-list .c-item-icon {
  width: 126px;
  height: 126px;
}
.l-digit-view .l-section--service .c-launch-wrapper .c-btn-feature {
  max-width: 400px;
}
@media (max-width: 991.98px) {
  .l-digit-view .l-section--service .c-detail-wrapper .c-btn-feature {
    max-width: 320px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.l-digit-view .l-section--service .c-detail-wrapper .c-btn-wrapper {
  padding-left: 94px;
  padding-right: 94px;
}
@media (max-width: 1199.98px) {
  .l-digit-view .l-section--service .c-detail-wrapper .c-btn-wrapper {
    padding-left: 4px;
    padding-right: 4px;
  }
}
.l-digit-view .l-section--service .c-detail-wrapper .c-detail-wrapper__content {
  position: relative;
}
.l-digit-view .l-section--service .c-detail-wrapper .c-detail-wrapper__content .c-outer-pagination {
  width: auto !important;
}
.l-digit-view .l-section--service .c-detail-wrapper .c-detail-wrapper__content .c-detail-swiper-prev {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -24px;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media (max-width: 1199.98px) {
  .l-digit-view .l-section--service .c-detail-wrapper .c-detail-wrapper__content .c-detail-swiper-prev {
    position: static;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-digit-view .l-section--service .c-detail-wrapper .c-detail-wrapper__content .c-detail-swiper-next {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -24px;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media (max-width: 1199.98px) {
  .l-digit-view .l-section--service .c-detail-wrapper .c-detail-wrapper__content .c-detail-swiper-next {
    position: static;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-digit-view .l-section--service .c-detail-wrapper .c-detail-wrapper__content .c-slider-img {
  border-radius: 1.5rem;
}
.l-digit-view .l-section--service .c-img-wrapper {
  position: relative;
}
.l-digit-view .l-section--service .c-img-wrapper:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: opacity ease-out 0.1s;
  transition: opacity ease-out 0.1s;
  top: 0;
  left: 0;
  background: rgba(41, 41, 41, 0.6);
  pointer-events: none;
}
.l-digit-view .l-section--service .c-img-wrapper:hover::after {
  opacity: 0;
}
.l-digit-view .l-section--service .c-img-wrapper .c-item-icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 3rem;
  color: #fff;
}
.l-digit-view .l-launch-modal .modal-dialog {
  max-width: 636px;
}
.l-digit-view .l-launch-modal .modal-content {
  -webkit-box-shadow: 0 0 20px 0 #b8dfff;
          box-shadow: 0 0 20px 0 #b8dfff;
}
/*# sourceMappingURL=main.css.map */
