@charset "UTF-8";
.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 {
  object-fit: contain !important;
}

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

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

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

.object-fit-none {
  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: flex !important;
}

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

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

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

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

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

.shadow-none {
  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 {
  transform: translate(-50%, -50%) !important;
}

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

.translate-middle-y {
  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 {
  flex: 1 1 auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

.justify-content-start {
  justify-content: flex-start !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

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

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

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

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

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

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-6px {
  margin: 0.375rem !important;
}

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

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

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

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

.m-30px {
  margin: 1.875rem !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-84px {
  margin: 5.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-6px {
  margin-right: 0.375rem !important;
  margin-left: 0.375rem !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-20px {
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important;
}

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

.mx-30px {
  margin-right: 1.875rem !important;
  margin-left: 1.875rem !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-84px {
  margin-right: 5.25rem !important;
  margin-left: 5.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-6px {
  margin-top: 0.375rem !important;
  margin-bottom: 0.375rem !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-20px {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

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

.my-30px {
  margin-top: 1.875rem !important;
  margin-bottom: 1.875rem !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-84px {
  margin-top: 5.25rem !important;
  margin-bottom: 5.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-6px {
  margin-top: 0.375rem !important;
}

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

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

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

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

.mt-30px {
  margin-top: 1.875rem !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-84px {
  margin-top: 5.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-6px {
  margin-right: 0.375rem !important;
}

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

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

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

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

.me-30px {
  margin-right: 1.875rem !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-84px {
  margin-right: 5.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-6px {
  margin-bottom: 0.375rem !important;
}

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

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

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

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

.mb-30px {
  margin-bottom: 1.875rem !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-84px {
  margin-bottom: 5.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-6px {
  margin-left: 0.375rem !important;
}

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

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

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

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

.ms-30px {
  margin-left: 1.875rem !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-84px {
  margin-left: 5.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-6px {
  padding: 0.375rem !important;
}

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

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

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

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

.p-30px {
  padding: 1.875rem !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-84px {
  padding: 5.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-6px {
  padding-right: 0.375rem !important;
  padding-left: 0.375rem !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-20px {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}

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

.px-30px {
  padding-right: 1.875rem !important;
  padding-left: 1.875rem !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-84px {
  padding-right: 5.25rem !important;
  padding-left: 5.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-6px {
  padding-top: 0.375rem !important;
  padding-bottom: 0.375rem !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-20px {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

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

.py-30px {
  padding-top: 1.875rem !important;
  padding-bottom: 1.875rem !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-84px {
  padding-top: 5.25rem !important;
  padding-bottom: 5.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-6px {
  padding-top: 0.375rem !important;
}

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

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

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

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

.pt-30px {
  padding-top: 1.875rem !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-84px {
  padding-top: 5.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-6px {
  padding-right: 0.375rem !important;
}

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

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

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

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

.pe-30px {
  padding-right: 1.875rem !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-84px {
  padding-right: 5.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-6px {
  padding-bottom: 0.375rem !important;
}

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

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

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

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

.pb-30px {
  padding-bottom: 1.875rem !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-84px {
  padding-bottom: 5.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-6px {
  padding-left: 0.375rem !important;
}

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

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

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

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

.ps-30px {
  padding-left: 1.875rem !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-84px {
  padding-left: 5.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-6px {
  gap: 0.375rem !important;
}

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

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

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

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

.gap-30px {
  gap: 1.875rem !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-84px {
  gap: 5.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-6px {
  row-gap: 0.375rem !important;
}

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

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

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

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

.row-gap-30px {
  row-gap: 1.875rem !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-84px {
  row-gap: 5.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-6px {
  column-gap: 0.375rem !important;
}

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

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

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

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

.column-gap-30px {
  column-gap: 1.875rem !important;
}

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

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

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

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

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

.column-gap-84px {
  column-gap: 5.25rem !important;
}

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

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

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

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

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

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

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

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

.fs-1 {
  font-size: calc(1.625rem + 4.5vw) !important;
}

.fs-2 {
  font-size: calc(1.525rem + 3.3vw) !important;
}

.fs-3 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-4 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-5 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

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

.fs-36px {
  font-size: calc(1.35rem + 1.2vw) !important;
}

.fs-32px {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-22px {
  font-size: calc(1.2625rem + 0.15vw) !important;
}

.fs-18px {
  font-size: 1.125rem !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 {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  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 {
    object-fit: contain !important;
  }
  .object-fit-sm-cover {
    object-fit: cover !important;
  }
  .object-fit-sm-fill {
    object-fit: fill !important;
  }
  .object-fit-sm-scale {
    object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    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: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-6px {
    margin: 0.375rem !important;
  }
  .m-sm-10px {
    margin: 0.625rem !important;
  }
  .m-sm-12px {
    margin: 0.75rem !important;
  }
  .m-sm-20px {
    margin: 1.25rem !important;
  }
  .m-sm-28px {
    margin: 1.75rem !important;
  }
  .m-sm-30px {
    margin: 1.875rem !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-84px {
    margin: 5.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-6px {
    margin-right: 0.375rem !important;
    margin-left: 0.375rem !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-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-30px {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !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-84px {
    margin-right: 5.25rem !important;
    margin-left: 5.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-6px {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !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-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-30px {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !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-84px {
    margin-top: 5.25rem !important;
    margin-bottom: 5.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-6px {
    margin-top: 0.375rem !important;
  }
  .mt-sm-10px {
    margin-top: 0.625rem !important;
  }
  .mt-sm-12px {
    margin-top: 0.75rem !important;
  }
  .mt-sm-20px {
    margin-top: 1.25rem !important;
  }
  .mt-sm-28px {
    margin-top: 1.75rem !important;
  }
  .mt-sm-30px {
    margin-top: 1.875rem !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-84px {
    margin-top: 5.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-6px {
    margin-right: 0.375rem !important;
  }
  .me-sm-10px {
    margin-right: 0.625rem !important;
  }
  .me-sm-12px {
    margin-right: 0.75rem !important;
  }
  .me-sm-20px {
    margin-right: 1.25rem !important;
  }
  .me-sm-28px {
    margin-right: 1.75rem !important;
  }
  .me-sm-30px {
    margin-right: 1.875rem !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-84px {
    margin-right: 5.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-6px {
    margin-bottom: 0.375rem !important;
  }
  .mb-sm-10px {
    margin-bottom: 0.625rem !important;
  }
  .mb-sm-12px {
    margin-bottom: 0.75rem !important;
  }
  .mb-sm-20px {
    margin-bottom: 1.25rem !important;
  }
  .mb-sm-28px {
    margin-bottom: 1.75rem !important;
  }
  .mb-sm-30px {
    margin-bottom: 1.875rem !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-84px {
    margin-bottom: 5.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-6px {
    margin-left: 0.375rem !important;
  }
  .ms-sm-10px {
    margin-left: 0.625rem !important;
  }
  .ms-sm-12px {
    margin-left: 0.75rem !important;
  }
  .ms-sm-20px {
    margin-left: 1.25rem !important;
  }
  .ms-sm-28px {
    margin-left: 1.75rem !important;
  }
  .ms-sm-30px {
    margin-left: 1.875rem !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-84px {
    margin-left: 5.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-6px {
    padding: 0.375rem !important;
  }
  .p-sm-10px {
    padding: 0.625rem !important;
  }
  .p-sm-12px {
    padding: 0.75rem !important;
  }
  .p-sm-20px {
    padding: 1.25rem !important;
  }
  .p-sm-28px {
    padding: 1.75rem !important;
  }
  .p-sm-30px {
    padding: 1.875rem !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-84px {
    padding: 5.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-6px {
    padding-right: 0.375rem !important;
    padding-left: 0.375rem !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-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-30px {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !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-84px {
    padding-right: 5.25rem !important;
    padding-left: 5.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-6px {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !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-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-30px {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !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-84px {
    padding-top: 5.25rem !important;
    padding-bottom: 5.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-6px {
    padding-top: 0.375rem !important;
  }
  .pt-sm-10px {
    padding-top: 0.625rem !important;
  }
  .pt-sm-12px {
    padding-top: 0.75rem !important;
  }
  .pt-sm-20px {
    padding-top: 1.25rem !important;
  }
  .pt-sm-28px {
    padding-top: 1.75rem !important;
  }
  .pt-sm-30px {
    padding-top: 1.875rem !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-84px {
    padding-top: 5.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-6px {
    padding-right: 0.375rem !important;
  }
  .pe-sm-10px {
    padding-right: 0.625rem !important;
  }
  .pe-sm-12px {
    padding-right: 0.75rem !important;
  }
  .pe-sm-20px {
    padding-right: 1.25rem !important;
  }
  .pe-sm-28px {
    padding-right: 1.75rem !important;
  }
  .pe-sm-30px {
    padding-right: 1.875rem !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-84px {
    padding-right: 5.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-6px {
    padding-bottom: 0.375rem !important;
  }
  .pb-sm-10px {
    padding-bottom: 0.625rem !important;
  }
  .pb-sm-12px {
    padding-bottom: 0.75rem !important;
  }
  .pb-sm-20px {
    padding-bottom: 1.25rem !important;
  }
  .pb-sm-28px {
    padding-bottom: 1.75rem !important;
  }
  .pb-sm-30px {
    padding-bottom: 1.875rem !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-84px {
    padding-bottom: 5.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-6px {
    padding-left: 0.375rem !important;
  }
  .ps-sm-10px {
    padding-left: 0.625rem !important;
  }
  .ps-sm-12px {
    padding-left: 0.75rem !important;
  }
  .ps-sm-20px {
    padding-left: 1.25rem !important;
  }
  .ps-sm-28px {
    padding-left: 1.75rem !important;
  }
  .ps-sm-30px {
    padding-left: 1.875rem !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-84px {
    padding-left: 5.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-6px {
    gap: 0.375rem !important;
  }
  .gap-sm-10px {
    gap: 0.625rem !important;
  }
  .gap-sm-12px {
    gap: 0.75rem !important;
  }
  .gap-sm-20px {
    gap: 1.25rem !important;
  }
  .gap-sm-28px {
    gap: 1.75rem !important;
  }
  .gap-sm-30px {
    gap: 1.875rem !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-84px {
    gap: 5.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-6px {
    row-gap: 0.375rem !important;
  }
  .row-gap-sm-10px {
    row-gap: 0.625rem !important;
  }
  .row-gap-sm-12px {
    row-gap: 0.75rem !important;
  }
  .row-gap-sm-20px {
    row-gap: 1.25rem !important;
  }
  .row-gap-sm-28px {
    row-gap: 1.75rem !important;
  }
  .row-gap-sm-30px {
    row-gap: 1.875rem !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-84px {
    row-gap: 5.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-6px {
    column-gap: 0.375rem !important;
  }
  .column-gap-sm-10px {
    column-gap: 0.625rem !important;
  }
  .column-gap-sm-12px {
    column-gap: 0.75rem !important;
  }
  .column-gap-sm-20px {
    column-gap: 1.25rem !important;
  }
  .column-gap-sm-28px {
    column-gap: 1.75rem !important;
  }
  .column-gap-sm-30px {
    column-gap: 1.875rem !important;
  }
  .column-gap-sm-32px {
    column-gap: 2rem !important;
  }
  .column-gap-sm-36px {
    column-gap: 2.25rem !important;
  }
  .column-gap-sm-40px {
    column-gap: 2.5rem !important;
  }
  .column-gap-sm-60px {
    column-gap: 3.75rem !important;
  }
  .column-gap-sm-80px {
    column-gap: 5rem !important;
  }
  .column-gap-sm-84px {
    column-gap: 5.25rem !important;
  }
  .column-gap-sm-120px {
    column-gap: 7.5rem !important;
  }
  .column-gap-sm-0 {
    column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    column-gap: 1rem !important;
  }
  .column-gap-sm-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-sm-5 {
    column-gap: 3rem !important;
  }
  .fs-sm-1 {
    font-size: calc(1.625rem + 4.5vw) !important;
  }
  .fs-sm-2 {
    font-size: calc(1.525rem + 3.3vw) !important;
  }
  .fs-sm-3 {
    font-size: calc(1.375rem + 1.5vw) !important;
  }
  .fs-sm-4 {
    font-size: calc(1.3rem + 0.6vw) !important;
  }
  .fs-sm-5 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-sm-6 {
    font-size: 1.25rem !important;
  }
  .fs-sm-36px {
    font-size: calc(1.35rem + 1.2vw) !important;
  }
  .fs-sm-32px {
    font-size: calc(1.325rem + 0.9vw) !important;
  }
  .fs-sm-22px {
    font-size: calc(1.2625rem + 0.15vw) !important;
  }
  .fs-sm-18px {
    font-size: 1.125rem !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 {
    object-fit: contain !important;
  }
  .object-fit-md-cover {
    object-fit: cover !important;
  }
  .object-fit-md-fill {
    object-fit: fill !important;
  }
  .object-fit-md-scale {
    object-fit: scale-down !important;
  }
  .object-fit-md-none {
    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: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-6px {
    margin: 0.375rem !important;
  }
  .m-md-10px {
    margin: 0.625rem !important;
  }
  .m-md-12px {
    margin: 0.75rem !important;
  }
  .m-md-20px {
    margin: 1.25rem !important;
  }
  .m-md-28px {
    margin: 1.75rem !important;
  }
  .m-md-30px {
    margin: 1.875rem !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-84px {
    margin: 5.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-6px {
    margin-right: 0.375rem !important;
    margin-left: 0.375rem !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-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-30px {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !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-84px {
    margin-right: 5.25rem !important;
    margin-left: 5.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-6px {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !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-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-30px {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !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-84px {
    margin-top: 5.25rem !important;
    margin-bottom: 5.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-6px {
    margin-top: 0.375rem !important;
  }
  .mt-md-10px {
    margin-top: 0.625rem !important;
  }
  .mt-md-12px {
    margin-top: 0.75rem !important;
  }
  .mt-md-20px {
    margin-top: 1.25rem !important;
  }
  .mt-md-28px {
    margin-top: 1.75rem !important;
  }
  .mt-md-30px {
    margin-top: 1.875rem !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-84px {
    margin-top: 5.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-6px {
    margin-right: 0.375rem !important;
  }
  .me-md-10px {
    margin-right: 0.625rem !important;
  }
  .me-md-12px {
    margin-right: 0.75rem !important;
  }
  .me-md-20px {
    margin-right: 1.25rem !important;
  }
  .me-md-28px {
    margin-right: 1.75rem !important;
  }
  .me-md-30px {
    margin-right: 1.875rem !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-84px {
    margin-right: 5.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-6px {
    margin-bottom: 0.375rem !important;
  }
  .mb-md-10px {
    margin-bottom: 0.625rem !important;
  }
  .mb-md-12px {
    margin-bottom: 0.75rem !important;
  }
  .mb-md-20px {
    margin-bottom: 1.25rem !important;
  }
  .mb-md-28px {
    margin-bottom: 1.75rem !important;
  }
  .mb-md-30px {
    margin-bottom: 1.875rem !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-84px {
    margin-bottom: 5.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-6px {
    margin-left: 0.375rem !important;
  }
  .ms-md-10px {
    margin-left: 0.625rem !important;
  }
  .ms-md-12px {
    margin-left: 0.75rem !important;
  }
  .ms-md-20px {
    margin-left: 1.25rem !important;
  }
  .ms-md-28px {
    margin-left: 1.75rem !important;
  }
  .ms-md-30px {
    margin-left: 1.875rem !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-84px {
    margin-left: 5.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-6px {
    padding: 0.375rem !important;
  }
  .p-md-10px {
    padding: 0.625rem !important;
  }
  .p-md-12px {
    padding: 0.75rem !important;
  }
  .p-md-20px {
    padding: 1.25rem !important;
  }
  .p-md-28px {
    padding: 1.75rem !important;
  }
  .p-md-30px {
    padding: 1.875rem !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-84px {
    padding: 5.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-6px {
    padding-right: 0.375rem !important;
    padding-left: 0.375rem !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-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-30px {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !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-84px {
    padding-right: 5.25rem !important;
    padding-left: 5.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-6px {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !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-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-30px {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !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-84px {
    padding-top: 5.25rem !important;
    padding-bottom: 5.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-6px {
    padding-top: 0.375rem !important;
  }
  .pt-md-10px {
    padding-top: 0.625rem !important;
  }
  .pt-md-12px {
    padding-top: 0.75rem !important;
  }
  .pt-md-20px {
    padding-top: 1.25rem !important;
  }
  .pt-md-28px {
    padding-top: 1.75rem !important;
  }
  .pt-md-30px {
    padding-top: 1.875rem !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-84px {
    padding-top: 5.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-6px {
    padding-right: 0.375rem !important;
  }
  .pe-md-10px {
    padding-right: 0.625rem !important;
  }
  .pe-md-12px {
    padding-right: 0.75rem !important;
  }
  .pe-md-20px {
    padding-right: 1.25rem !important;
  }
  .pe-md-28px {
    padding-right: 1.75rem !important;
  }
  .pe-md-30px {
    padding-right: 1.875rem !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-84px {
    padding-right: 5.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-6px {
    padding-bottom: 0.375rem !important;
  }
  .pb-md-10px {
    padding-bottom: 0.625rem !important;
  }
  .pb-md-12px {
    padding-bottom: 0.75rem !important;
  }
  .pb-md-20px {
    padding-bottom: 1.25rem !important;
  }
  .pb-md-28px {
    padding-bottom: 1.75rem !important;
  }
  .pb-md-30px {
    padding-bottom: 1.875rem !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-84px {
    padding-bottom: 5.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-6px {
    padding-left: 0.375rem !important;
  }
  .ps-md-10px {
    padding-left: 0.625rem !important;
  }
  .ps-md-12px {
    padding-left: 0.75rem !important;
  }
  .ps-md-20px {
    padding-left: 1.25rem !important;
  }
  .ps-md-28px {
    padding-left: 1.75rem !important;
  }
  .ps-md-30px {
    padding-left: 1.875rem !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-84px {
    padding-left: 5.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-6px {
    gap: 0.375rem !important;
  }
  .gap-md-10px {
    gap: 0.625rem !important;
  }
  .gap-md-12px {
    gap: 0.75rem !important;
  }
  .gap-md-20px {
    gap: 1.25rem !important;
  }
  .gap-md-28px {
    gap: 1.75rem !important;
  }
  .gap-md-30px {
    gap: 1.875rem !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-84px {
    gap: 5.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-6px {
    row-gap: 0.375rem !important;
  }
  .row-gap-md-10px {
    row-gap: 0.625rem !important;
  }
  .row-gap-md-12px {
    row-gap: 0.75rem !important;
  }
  .row-gap-md-20px {
    row-gap: 1.25rem !important;
  }
  .row-gap-md-28px {
    row-gap: 1.75rem !important;
  }
  .row-gap-md-30px {
    row-gap: 1.875rem !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-84px {
    row-gap: 5.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-6px {
    column-gap: 0.375rem !important;
  }
  .column-gap-md-10px {
    column-gap: 0.625rem !important;
  }
  .column-gap-md-12px {
    column-gap: 0.75rem !important;
  }
  .column-gap-md-20px {
    column-gap: 1.25rem !important;
  }
  .column-gap-md-28px {
    column-gap: 1.75rem !important;
  }
  .column-gap-md-30px {
    column-gap: 1.875rem !important;
  }
  .column-gap-md-32px {
    column-gap: 2rem !important;
  }
  .column-gap-md-36px {
    column-gap: 2.25rem !important;
  }
  .column-gap-md-40px {
    column-gap: 2.5rem !important;
  }
  .column-gap-md-60px {
    column-gap: 3.75rem !important;
  }
  .column-gap-md-80px {
    column-gap: 5rem !important;
  }
  .column-gap-md-84px {
    column-gap: 5.25rem !important;
  }
  .column-gap-md-120px {
    column-gap: 7.5rem !important;
  }
  .column-gap-md-0 {
    column-gap: 0 !important;
  }
  .column-gap-md-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    column-gap: 1rem !important;
  }
  .column-gap-md-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-md-5 {
    column-gap: 3rem !important;
  }
  .fs-md-1 {
    font-size: calc(1.625rem + 4.5vw) !important;
  }
  .fs-md-2 {
    font-size: calc(1.525rem + 3.3vw) !important;
  }
  .fs-md-3 {
    font-size: calc(1.375rem + 1.5vw) !important;
  }
  .fs-md-4 {
    font-size: calc(1.3rem + 0.6vw) !important;
  }
  .fs-md-5 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-md-6 {
    font-size: 1.25rem !important;
  }
  .fs-md-36px {
    font-size: calc(1.35rem + 1.2vw) !important;
  }
  .fs-md-32px {
    font-size: calc(1.325rem + 0.9vw) !important;
  }
  .fs-md-22px {
    font-size: calc(1.2625rem + 0.15vw) !important;
  }
  .fs-md-18px {
    font-size: 1.125rem !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 {
    object-fit: contain !important;
  }
  .object-fit-lg-cover {
    object-fit: cover !important;
  }
  .object-fit-lg-fill {
    object-fit: fill !important;
  }
  .object-fit-lg-scale {
    object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    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: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-6px {
    margin: 0.375rem !important;
  }
  .m-lg-10px {
    margin: 0.625rem !important;
  }
  .m-lg-12px {
    margin: 0.75rem !important;
  }
  .m-lg-20px {
    margin: 1.25rem !important;
  }
  .m-lg-28px {
    margin: 1.75rem !important;
  }
  .m-lg-30px {
    margin: 1.875rem !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-84px {
    margin: 5.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-6px {
    margin-right: 0.375rem !important;
    margin-left: 0.375rem !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-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-30px {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !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-84px {
    margin-right: 5.25rem !important;
    margin-left: 5.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-6px {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !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-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-30px {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !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-84px {
    margin-top: 5.25rem !important;
    margin-bottom: 5.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-6px {
    margin-top: 0.375rem !important;
  }
  .mt-lg-10px {
    margin-top: 0.625rem !important;
  }
  .mt-lg-12px {
    margin-top: 0.75rem !important;
  }
  .mt-lg-20px {
    margin-top: 1.25rem !important;
  }
  .mt-lg-28px {
    margin-top: 1.75rem !important;
  }
  .mt-lg-30px {
    margin-top: 1.875rem !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-84px {
    margin-top: 5.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-6px {
    margin-right: 0.375rem !important;
  }
  .me-lg-10px {
    margin-right: 0.625rem !important;
  }
  .me-lg-12px {
    margin-right: 0.75rem !important;
  }
  .me-lg-20px {
    margin-right: 1.25rem !important;
  }
  .me-lg-28px {
    margin-right: 1.75rem !important;
  }
  .me-lg-30px {
    margin-right: 1.875rem !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-84px {
    margin-right: 5.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-6px {
    margin-bottom: 0.375rem !important;
  }
  .mb-lg-10px {
    margin-bottom: 0.625rem !important;
  }
  .mb-lg-12px {
    margin-bottom: 0.75rem !important;
  }
  .mb-lg-20px {
    margin-bottom: 1.25rem !important;
  }
  .mb-lg-28px {
    margin-bottom: 1.75rem !important;
  }
  .mb-lg-30px {
    margin-bottom: 1.875rem !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-84px {
    margin-bottom: 5.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-6px {
    margin-left: 0.375rem !important;
  }
  .ms-lg-10px {
    margin-left: 0.625rem !important;
  }
  .ms-lg-12px {
    margin-left: 0.75rem !important;
  }
  .ms-lg-20px {
    margin-left: 1.25rem !important;
  }
  .ms-lg-28px {
    margin-left: 1.75rem !important;
  }
  .ms-lg-30px {
    margin-left: 1.875rem !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-84px {
    margin-left: 5.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-6px {
    padding: 0.375rem !important;
  }
  .p-lg-10px {
    padding: 0.625rem !important;
  }
  .p-lg-12px {
    padding: 0.75rem !important;
  }
  .p-lg-20px {
    padding: 1.25rem !important;
  }
  .p-lg-28px {
    padding: 1.75rem !important;
  }
  .p-lg-30px {
    padding: 1.875rem !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-84px {
    padding: 5.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-6px {
    padding-right: 0.375rem !important;
    padding-left: 0.375rem !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-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-30px {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !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-84px {
    padding-right: 5.25rem !important;
    padding-left: 5.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-6px {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !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-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-30px {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !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-84px {
    padding-top: 5.25rem !important;
    padding-bottom: 5.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-6px {
    padding-top: 0.375rem !important;
  }
  .pt-lg-10px {
    padding-top: 0.625rem !important;
  }
  .pt-lg-12px {
    padding-top: 0.75rem !important;
  }
  .pt-lg-20px {
    padding-top: 1.25rem !important;
  }
  .pt-lg-28px {
    padding-top: 1.75rem !important;
  }
  .pt-lg-30px {
    padding-top: 1.875rem !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-84px {
    padding-top: 5.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-6px {
    padding-right: 0.375rem !important;
  }
  .pe-lg-10px {
    padding-right: 0.625rem !important;
  }
  .pe-lg-12px {
    padding-right: 0.75rem !important;
  }
  .pe-lg-20px {
    padding-right: 1.25rem !important;
  }
  .pe-lg-28px {
    padding-right: 1.75rem !important;
  }
  .pe-lg-30px {
    padding-right: 1.875rem !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-84px {
    padding-right: 5.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-6px {
    padding-bottom: 0.375rem !important;
  }
  .pb-lg-10px {
    padding-bottom: 0.625rem !important;
  }
  .pb-lg-12px {
    padding-bottom: 0.75rem !important;
  }
  .pb-lg-20px {
    padding-bottom: 1.25rem !important;
  }
  .pb-lg-28px {
    padding-bottom: 1.75rem !important;
  }
  .pb-lg-30px {
    padding-bottom: 1.875rem !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-84px {
    padding-bottom: 5.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-6px {
    padding-left: 0.375rem !important;
  }
  .ps-lg-10px {
    padding-left: 0.625rem !important;
  }
  .ps-lg-12px {
    padding-left: 0.75rem !important;
  }
  .ps-lg-20px {
    padding-left: 1.25rem !important;
  }
  .ps-lg-28px {
    padding-left: 1.75rem !important;
  }
  .ps-lg-30px {
    padding-left: 1.875rem !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-84px {
    padding-left: 5.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-6px {
    gap: 0.375rem !important;
  }
  .gap-lg-10px {
    gap: 0.625rem !important;
  }
  .gap-lg-12px {
    gap: 0.75rem !important;
  }
  .gap-lg-20px {
    gap: 1.25rem !important;
  }
  .gap-lg-28px {
    gap: 1.75rem !important;
  }
  .gap-lg-30px {
    gap: 1.875rem !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-84px {
    gap: 5.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-6px {
    row-gap: 0.375rem !important;
  }
  .row-gap-lg-10px {
    row-gap: 0.625rem !important;
  }
  .row-gap-lg-12px {
    row-gap: 0.75rem !important;
  }
  .row-gap-lg-20px {
    row-gap: 1.25rem !important;
  }
  .row-gap-lg-28px {
    row-gap: 1.75rem !important;
  }
  .row-gap-lg-30px {
    row-gap: 1.875rem !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-84px {
    row-gap: 5.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-6px {
    column-gap: 0.375rem !important;
  }
  .column-gap-lg-10px {
    column-gap: 0.625rem !important;
  }
  .column-gap-lg-12px {
    column-gap: 0.75rem !important;
  }
  .column-gap-lg-20px {
    column-gap: 1.25rem !important;
  }
  .column-gap-lg-28px {
    column-gap: 1.75rem !important;
  }
  .column-gap-lg-30px {
    column-gap: 1.875rem !important;
  }
  .column-gap-lg-32px {
    column-gap: 2rem !important;
  }
  .column-gap-lg-36px {
    column-gap: 2.25rem !important;
  }
  .column-gap-lg-40px {
    column-gap: 2.5rem !important;
  }
  .column-gap-lg-60px {
    column-gap: 3.75rem !important;
  }
  .column-gap-lg-80px {
    column-gap: 5rem !important;
  }
  .column-gap-lg-84px {
    column-gap: 5.25rem !important;
  }
  .column-gap-lg-120px {
    column-gap: 7.5rem !important;
  }
  .column-gap-lg-0 {
    column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    column-gap: 1rem !important;
  }
  .column-gap-lg-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-lg-5 {
    column-gap: 3rem !important;
  }
  .fs-lg-1 {
    font-size: calc(1.625rem + 4.5vw) !important;
  }
  .fs-lg-2 {
    font-size: calc(1.525rem + 3.3vw) !important;
  }
  .fs-lg-3 {
    font-size: calc(1.375rem + 1.5vw) !important;
  }
  .fs-lg-4 {
    font-size: calc(1.3rem + 0.6vw) !important;
  }
  .fs-lg-5 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-lg-6 {
    font-size: 1.25rem !important;
  }
  .fs-lg-36px {
    font-size: calc(1.35rem + 1.2vw) !important;
  }
  .fs-lg-32px {
    font-size: calc(1.325rem + 0.9vw) !important;
  }
  .fs-lg-22px {
    font-size: calc(1.2625rem + 0.15vw) !important;
  }
  .fs-lg-18px {
    font-size: 1.125rem !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 {
    object-fit: contain !important;
  }
  .object-fit-xl-cover {
    object-fit: cover !important;
  }
  .object-fit-xl-fill {
    object-fit: fill !important;
  }
  .object-fit-xl-scale {
    object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    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: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-6px {
    margin: 0.375rem !important;
  }
  .m-xl-10px {
    margin: 0.625rem !important;
  }
  .m-xl-12px {
    margin: 0.75rem !important;
  }
  .m-xl-20px {
    margin: 1.25rem !important;
  }
  .m-xl-28px {
    margin: 1.75rem !important;
  }
  .m-xl-30px {
    margin: 1.875rem !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-84px {
    margin: 5.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-6px {
    margin-right: 0.375rem !important;
    margin-left: 0.375rem !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-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-30px {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !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-84px {
    margin-right: 5.25rem !important;
    margin-left: 5.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-6px {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !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-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-30px {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !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-84px {
    margin-top: 5.25rem !important;
    margin-bottom: 5.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-6px {
    margin-top: 0.375rem !important;
  }
  .mt-xl-10px {
    margin-top: 0.625rem !important;
  }
  .mt-xl-12px {
    margin-top: 0.75rem !important;
  }
  .mt-xl-20px {
    margin-top: 1.25rem !important;
  }
  .mt-xl-28px {
    margin-top: 1.75rem !important;
  }
  .mt-xl-30px {
    margin-top: 1.875rem !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-84px {
    margin-top: 5.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-6px {
    margin-right: 0.375rem !important;
  }
  .me-xl-10px {
    margin-right: 0.625rem !important;
  }
  .me-xl-12px {
    margin-right: 0.75rem !important;
  }
  .me-xl-20px {
    margin-right: 1.25rem !important;
  }
  .me-xl-28px {
    margin-right: 1.75rem !important;
  }
  .me-xl-30px {
    margin-right: 1.875rem !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-84px {
    margin-right: 5.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-6px {
    margin-bottom: 0.375rem !important;
  }
  .mb-xl-10px {
    margin-bottom: 0.625rem !important;
  }
  .mb-xl-12px {
    margin-bottom: 0.75rem !important;
  }
  .mb-xl-20px {
    margin-bottom: 1.25rem !important;
  }
  .mb-xl-28px {
    margin-bottom: 1.75rem !important;
  }
  .mb-xl-30px {
    margin-bottom: 1.875rem !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-84px {
    margin-bottom: 5.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-6px {
    margin-left: 0.375rem !important;
  }
  .ms-xl-10px {
    margin-left: 0.625rem !important;
  }
  .ms-xl-12px {
    margin-left: 0.75rem !important;
  }
  .ms-xl-20px {
    margin-left: 1.25rem !important;
  }
  .ms-xl-28px {
    margin-left: 1.75rem !important;
  }
  .ms-xl-30px {
    margin-left: 1.875rem !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-84px {
    margin-left: 5.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-6px {
    padding: 0.375rem !important;
  }
  .p-xl-10px {
    padding: 0.625rem !important;
  }
  .p-xl-12px {
    padding: 0.75rem !important;
  }
  .p-xl-20px {
    padding: 1.25rem !important;
  }
  .p-xl-28px {
    padding: 1.75rem !important;
  }
  .p-xl-30px {
    padding: 1.875rem !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-84px {
    padding: 5.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-6px {
    padding-right: 0.375rem !important;
    padding-left: 0.375rem !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-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-30px {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !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-84px {
    padding-right: 5.25rem !important;
    padding-left: 5.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-6px {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !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-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-30px {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !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-84px {
    padding-top: 5.25rem !important;
    padding-bottom: 5.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-6px {
    padding-top: 0.375rem !important;
  }
  .pt-xl-10px {
    padding-top: 0.625rem !important;
  }
  .pt-xl-12px {
    padding-top: 0.75rem !important;
  }
  .pt-xl-20px {
    padding-top: 1.25rem !important;
  }
  .pt-xl-28px {
    padding-top: 1.75rem !important;
  }
  .pt-xl-30px {
    padding-top: 1.875rem !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-84px {
    padding-top: 5.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-6px {
    padding-right: 0.375rem !important;
  }
  .pe-xl-10px {
    padding-right: 0.625rem !important;
  }
  .pe-xl-12px {
    padding-right: 0.75rem !important;
  }
  .pe-xl-20px {
    padding-right: 1.25rem !important;
  }
  .pe-xl-28px {
    padding-right: 1.75rem !important;
  }
  .pe-xl-30px {
    padding-right: 1.875rem !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-84px {
    padding-right: 5.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-6px {
    padding-bottom: 0.375rem !important;
  }
  .pb-xl-10px {
    padding-bottom: 0.625rem !important;
  }
  .pb-xl-12px {
    padding-bottom: 0.75rem !important;
  }
  .pb-xl-20px {
    padding-bottom: 1.25rem !important;
  }
  .pb-xl-28px {
    padding-bottom: 1.75rem !important;
  }
  .pb-xl-30px {
    padding-bottom: 1.875rem !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-84px {
    padding-bottom: 5.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-6px {
    padding-left: 0.375rem !important;
  }
  .ps-xl-10px {
    padding-left: 0.625rem !important;
  }
  .ps-xl-12px {
    padding-left: 0.75rem !important;
  }
  .ps-xl-20px {
    padding-left: 1.25rem !important;
  }
  .ps-xl-28px {
    padding-left: 1.75rem !important;
  }
  .ps-xl-30px {
    padding-left: 1.875rem !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-84px {
    padding-left: 5.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-6px {
    gap: 0.375rem !important;
  }
  .gap-xl-10px {
    gap: 0.625rem !important;
  }
  .gap-xl-12px {
    gap: 0.75rem !important;
  }
  .gap-xl-20px {
    gap: 1.25rem !important;
  }
  .gap-xl-28px {
    gap: 1.75rem !important;
  }
  .gap-xl-30px {
    gap: 1.875rem !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-84px {
    gap: 5.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-6px {
    row-gap: 0.375rem !important;
  }
  .row-gap-xl-10px {
    row-gap: 0.625rem !important;
  }
  .row-gap-xl-12px {
    row-gap: 0.75rem !important;
  }
  .row-gap-xl-20px {
    row-gap: 1.25rem !important;
  }
  .row-gap-xl-28px {
    row-gap: 1.75rem !important;
  }
  .row-gap-xl-30px {
    row-gap: 1.875rem !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-84px {
    row-gap: 5.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-6px {
    column-gap: 0.375rem !important;
  }
  .column-gap-xl-10px {
    column-gap: 0.625rem !important;
  }
  .column-gap-xl-12px {
    column-gap: 0.75rem !important;
  }
  .column-gap-xl-20px {
    column-gap: 1.25rem !important;
  }
  .column-gap-xl-28px {
    column-gap: 1.75rem !important;
  }
  .column-gap-xl-30px {
    column-gap: 1.875rem !important;
  }
  .column-gap-xl-32px {
    column-gap: 2rem !important;
  }
  .column-gap-xl-36px {
    column-gap: 2.25rem !important;
  }
  .column-gap-xl-40px {
    column-gap: 2.5rem !important;
  }
  .column-gap-xl-60px {
    column-gap: 3.75rem !important;
  }
  .column-gap-xl-80px {
    column-gap: 5rem !important;
  }
  .column-gap-xl-84px {
    column-gap: 5.25rem !important;
  }
  .column-gap-xl-120px {
    column-gap: 7.5rem !important;
  }
  .column-gap-xl-0 {
    column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    column-gap: 1rem !important;
  }
  .column-gap-xl-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-xl-5 {
    column-gap: 3rem !important;
  }
  .fs-xl-1 {
    font-size: calc(1.625rem + 4.5vw) !important;
  }
  .fs-xl-2 {
    font-size: calc(1.525rem + 3.3vw) !important;
  }
  .fs-xl-3 {
    font-size: calc(1.375rem + 1.5vw) !important;
  }
  .fs-xl-4 {
    font-size: calc(1.3rem + 0.6vw) !important;
  }
  .fs-xl-5 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-xl-6 {
    font-size: 1.25rem !important;
  }
  .fs-xl-36px {
    font-size: calc(1.35rem + 1.2vw) !important;
  }
  .fs-xl-32px {
    font-size: calc(1.325rem + 0.9vw) !important;
  }
  .fs-xl-22px {
    font-size: calc(1.2625rem + 0.15vw) !important;
  }
  .fs-xl-18px {
    font-size: 1.125rem !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 {
    object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    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: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-6px {
    margin: 0.375rem !important;
  }
  .m-xxl-10px {
    margin: 0.625rem !important;
  }
  .m-xxl-12px {
    margin: 0.75rem !important;
  }
  .m-xxl-20px {
    margin: 1.25rem !important;
  }
  .m-xxl-28px {
    margin: 1.75rem !important;
  }
  .m-xxl-30px {
    margin: 1.875rem !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-84px {
    margin: 5.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-6px {
    margin-right: 0.375rem !important;
    margin-left: 0.375rem !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-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-30px {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !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-84px {
    margin-right: 5.25rem !important;
    margin-left: 5.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-6px {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !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-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-30px {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !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-84px {
    margin-top: 5.25rem !important;
    margin-bottom: 5.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-6px {
    margin-top: 0.375rem !important;
  }
  .mt-xxl-10px {
    margin-top: 0.625rem !important;
  }
  .mt-xxl-12px {
    margin-top: 0.75rem !important;
  }
  .mt-xxl-20px {
    margin-top: 1.25rem !important;
  }
  .mt-xxl-28px {
    margin-top: 1.75rem !important;
  }
  .mt-xxl-30px {
    margin-top: 1.875rem !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-84px {
    margin-top: 5.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-6px {
    margin-right: 0.375rem !important;
  }
  .me-xxl-10px {
    margin-right: 0.625rem !important;
  }
  .me-xxl-12px {
    margin-right: 0.75rem !important;
  }
  .me-xxl-20px {
    margin-right: 1.25rem !important;
  }
  .me-xxl-28px {
    margin-right: 1.75rem !important;
  }
  .me-xxl-30px {
    margin-right: 1.875rem !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-84px {
    margin-right: 5.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-6px {
    margin-bottom: 0.375rem !important;
  }
  .mb-xxl-10px {
    margin-bottom: 0.625rem !important;
  }
  .mb-xxl-12px {
    margin-bottom: 0.75rem !important;
  }
  .mb-xxl-20px {
    margin-bottom: 1.25rem !important;
  }
  .mb-xxl-28px {
    margin-bottom: 1.75rem !important;
  }
  .mb-xxl-30px {
    margin-bottom: 1.875rem !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-84px {
    margin-bottom: 5.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-6px {
    margin-left: 0.375rem !important;
  }
  .ms-xxl-10px {
    margin-left: 0.625rem !important;
  }
  .ms-xxl-12px {
    margin-left: 0.75rem !important;
  }
  .ms-xxl-20px {
    margin-left: 1.25rem !important;
  }
  .ms-xxl-28px {
    margin-left: 1.75rem !important;
  }
  .ms-xxl-30px {
    margin-left: 1.875rem !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-84px {
    margin-left: 5.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-6px {
    padding: 0.375rem !important;
  }
  .p-xxl-10px {
    padding: 0.625rem !important;
  }
  .p-xxl-12px {
    padding: 0.75rem !important;
  }
  .p-xxl-20px {
    padding: 1.25rem !important;
  }
  .p-xxl-28px {
    padding: 1.75rem !important;
  }
  .p-xxl-30px {
    padding: 1.875rem !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-84px {
    padding: 5.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-6px {
    padding-right: 0.375rem !important;
    padding-left: 0.375rem !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-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-30px {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !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-84px {
    padding-right: 5.25rem !important;
    padding-left: 5.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-6px {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !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-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-30px {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !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-84px {
    padding-top: 5.25rem !important;
    padding-bottom: 5.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-6px {
    padding-top: 0.375rem !important;
  }
  .pt-xxl-10px {
    padding-top: 0.625rem !important;
  }
  .pt-xxl-12px {
    padding-top: 0.75rem !important;
  }
  .pt-xxl-20px {
    padding-top: 1.25rem !important;
  }
  .pt-xxl-28px {
    padding-top: 1.75rem !important;
  }
  .pt-xxl-30px {
    padding-top: 1.875rem !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-84px {
    padding-top: 5.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-6px {
    padding-right: 0.375rem !important;
  }
  .pe-xxl-10px {
    padding-right: 0.625rem !important;
  }
  .pe-xxl-12px {
    padding-right: 0.75rem !important;
  }
  .pe-xxl-20px {
    padding-right: 1.25rem !important;
  }
  .pe-xxl-28px {
    padding-right: 1.75rem !important;
  }
  .pe-xxl-30px {
    padding-right: 1.875rem !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-84px {
    padding-right: 5.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-6px {
    padding-bottom: 0.375rem !important;
  }
  .pb-xxl-10px {
    padding-bottom: 0.625rem !important;
  }
  .pb-xxl-12px {
    padding-bottom: 0.75rem !important;
  }
  .pb-xxl-20px {
    padding-bottom: 1.25rem !important;
  }
  .pb-xxl-28px {
    padding-bottom: 1.75rem !important;
  }
  .pb-xxl-30px {
    padding-bottom: 1.875rem !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-84px {
    padding-bottom: 5.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-6px {
    padding-left: 0.375rem !important;
  }
  .ps-xxl-10px {
    padding-left: 0.625rem !important;
  }
  .ps-xxl-12px {
    padding-left: 0.75rem !important;
  }
  .ps-xxl-20px {
    padding-left: 1.25rem !important;
  }
  .ps-xxl-28px {
    padding-left: 1.75rem !important;
  }
  .ps-xxl-30px {
    padding-left: 1.875rem !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-84px {
    padding-left: 5.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-6px {
    gap: 0.375rem !important;
  }
  .gap-xxl-10px {
    gap: 0.625rem !important;
  }
  .gap-xxl-12px {
    gap: 0.75rem !important;
  }
  .gap-xxl-20px {
    gap: 1.25rem !important;
  }
  .gap-xxl-28px {
    gap: 1.75rem !important;
  }
  .gap-xxl-30px {
    gap: 1.875rem !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-84px {
    gap: 5.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-6px {
    row-gap: 0.375rem !important;
  }
  .row-gap-xxl-10px {
    row-gap: 0.625rem !important;
  }
  .row-gap-xxl-12px {
    row-gap: 0.75rem !important;
  }
  .row-gap-xxl-20px {
    row-gap: 1.25rem !important;
  }
  .row-gap-xxl-28px {
    row-gap: 1.75rem !important;
  }
  .row-gap-xxl-30px {
    row-gap: 1.875rem !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-84px {
    row-gap: 5.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-6px {
    column-gap: 0.375rem !important;
  }
  .column-gap-xxl-10px {
    column-gap: 0.625rem !important;
  }
  .column-gap-xxl-12px {
    column-gap: 0.75rem !important;
  }
  .column-gap-xxl-20px {
    column-gap: 1.25rem !important;
  }
  .column-gap-xxl-28px {
    column-gap: 1.75rem !important;
  }
  .column-gap-xxl-30px {
    column-gap: 1.875rem !important;
  }
  .column-gap-xxl-32px {
    column-gap: 2rem !important;
  }
  .column-gap-xxl-36px {
    column-gap: 2.25rem !important;
  }
  .column-gap-xxl-40px {
    column-gap: 2.5rem !important;
  }
  .column-gap-xxl-60px {
    column-gap: 3.75rem !important;
  }
  .column-gap-xxl-80px {
    column-gap: 5rem !important;
  }
  .column-gap-xxl-84px {
    column-gap: 5.25rem !important;
  }
  .column-gap-xxl-120px {
    column-gap: 7.5rem !important;
  }
  .column-gap-xxl-0 {
    column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    column-gap: 1rem !important;
  }
  .column-gap-xxl-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-xxl-5 {
    column-gap: 3rem !important;
  }
  .fs-xxl-1 {
    font-size: calc(1.625rem + 4.5vw) !important;
  }
  .fs-xxl-2 {
    font-size: calc(1.525rem + 3.3vw) !important;
  }
  .fs-xxl-3 {
    font-size: calc(1.375rem + 1.5vw) !important;
  }
  .fs-xxl-4 {
    font-size: calc(1.3rem + 0.6vw) !important;
  }
  .fs-xxl-5 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-xxl-6 {
    font-size: 1.25rem !important;
  }
  .fs-xxl-36px {
    font-size: calc(1.35rem + 1.2vw) !important;
  }
  .fs-xxl-32px {
    font-size: calc(1.325rem + 0.9vw) !important;
  }
  .fs-xxl-22px {
    font-size: calc(1.2625rem + 0.15vw) !important;
  }
  .fs-xxl-18px {
    font-size: 1.125rem !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 (min-width: 1200px) {
  .fs-1 {
    font-size: 5rem !important;
  }
  .fs-2 {
    font-size: 4rem !important;
  }
  .fs-3 {
    font-size: 2.5rem !important;
  }
  .fs-4 {
    font-size: 1.75rem !important;
  }
  .fs-5 {
    font-size: 1.5rem !important;
  }
  .fs-36px {
    font-size: 2.25rem !important;
  }
  .fs-32px {
    font-size: 2rem !important;
  }
  .fs-22px {
    font-size: 1.375rem !important;
  }
  .fs-sm-1 {
    font-size: 5rem !important;
  }
  .fs-sm-2 {
    font-size: 4rem !important;
  }
  .fs-sm-3 {
    font-size: 2.5rem !important;
  }
  .fs-sm-4 {
    font-size: 1.75rem !important;
  }
  .fs-sm-5 {
    font-size: 1.5rem !important;
  }
  .fs-sm-36px {
    font-size: 2.25rem !important;
  }
  .fs-sm-32px {
    font-size: 2rem !important;
  }
  .fs-sm-22px {
    font-size: 1.375rem !important;
  }
  .fs-md-1 {
    font-size: 5rem !important;
  }
  .fs-md-2 {
    font-size: 4rem !important;
  }
  .fs-md-3 {
    font-size: 2.5rem !important;
  }
  .fs-md-4 {
    font-size: 1.75rem !important;
  }
  .fs-md-5 {
    font-size: 1.5rem !important;
  }
  .fs-md-36px {
    font-size: 2.25rem !important;
  }
  .fs-md-32px {
    font-size: 2rem !important;
  }
  .fs-md-22px {
    font-size: 1.375rem !important;
  }
  .fs-lg-1 {
    font-size: 5rem !important;
  }
  .fs-lg-2 {
    font-size: 4rem !important;
  }
  .fs-lg-3 {
    font-size: 2.5rem !important;
  }
  .fs-lg-4 {
    font-size: 1.75rem !important;
  }
  .fs-lg-5 {
    font-size: 1.5rem !important;
  }
  .fs-lg-36px {
    font-size: 2.25rem !important;
  }
  .fs-lg-32px {
    font-size: 2rem !important;
  }
  .fs-lg-22px {
    font-size: 1.375rem !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: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
hi,
.h1 {
  line-height: 1.5;
  font-weight: 900;
}
@media (max-width: 991.98px) {
  hi,
  .h1 {
    font-weight: 600;
  }
}

hi,
.h2 {
  line-height: 1.5;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  hi,
  .h2 {
    font-weight: 600;
  }
}

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

hi,
.h4 {
  line-height: 1.5;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  hi,
  .h4 {
    font-weight: 600;
  }
}

hi,
.h5,
.view-home .l-home-view .l-section--choose .l-choose-table .c-other-wrapper__title,
.view-home .l-home-view .l-section--choose .l-choose-table .c-feature-wrapper__title,
.view-home .l-home-view .l-section--choose .l-choose-table thead th:nth-of-type(3),
.view-home .l-home-view .l-section--choose .l-choose-table thead th:nth-child(1),
.view-home .l-home-view .l-section--choose .l-choose-table tbody th,
.view-article-item .l-article-item-page .l-section--content h2 {
  line-height: 1.5;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  hi,
  .h5,
  .view-home .l-home-view .l-section--choose .l-choose-table .c-other-wrapper__title,
  .view-home .l-home-view .l-section--choose .l-choose-table .c-feature-wrapper__title,
  .view-home .l-home-view .l-section--choose .l-choose-table thead th:nth-of-type(3),
  .view-home .l-home-view .l-section--choose .l-choose-table thead th:nth-child(1),
  .view-home .l-home-view .l-section--choose .l-choose-table tbody th,
  .view-article-item .l-article-item-page .l-section--content h2 {
    font-weight: 600;
  }
}

hi,
.h6,
.view-article-item .l-article-item-page .l-section--content .c-page-btn__desc .c-desc-title,
.l-subscription-view .l-section--compare .l-compare-table .c-item-wrapper__title,
.l-subscription-view .l-section--compare .l-compare-table tbody tr:last-child td .c-icon-wrapper {
  line-height: 1.5;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  hi,
  .h6,
  .view-article-item .l-article-item-page .l-section--content .c-page-btn__desc .c-desc-title,
  .l-subscription-view .l-section--compare .l-compare-table .c-item-wrapper__title,
  .l-subscription-view .l-section--compare .l-compare-table tbody tr:last-child td .c-icon-wrapper {
    font-weight: 600;
  }
}

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

.subtitles2, .l-main-header .nav-link,
.l-main-header .dropdown-item, .c-tag {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}

.subtitles3, .c-tag--sm {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.4;
}

.body1, .view-home .l-home-view .l-section--choose .l-choose-table .c-other-wrapper__text, .view-home .l-home-view .l-section--choose .l-choose-table .c-feature-wrapper__text, .view-article-item .l-article-item-page .l-section--content p {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.6;
}

.body2, .view-article-item .l-article-item-page .l-section--content .c-page-btn__desc .c-desc-text, .l-subscription-view .l-section--compare .l-compare-table .c-item-wrapper__text, .l-main-footer .c-list-wrapper:not(.c-list-wrapper--social) a, .c-search-input__input, .btn-link {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
}

.body3 {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.4;
}

.u-line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.u-line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.u-glass, .l-subscription-view .l-section--compare .c-table-wrapper, .l-main-header .dropdown .dropdown-menu, .l-main-header .navbar {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(0.8px);
  -webkit-backdrop-filter: blur(0.8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.u-title-gradient, .c-article-card:hover .c-article-card__title {
  background: linear-gradient(90deg, #00bba7 0%, #8e51ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.u-title-gradient-reverse {
  background: linear-gradient(90deg, #8e51ff 0%, #00bba7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.u-text-gradient-purple, .l-subscription-view .l-section--compare .l-compare-table tbody tr:last-child td:nth-of-type(2), .l-subscription-view .l-section--compare .l-compare-table tbody td:nth-of-type(2) .c-icon-wrapper, .l-subscription-view .l-section--compare .l-compare-table tbody th[colspan] > * {
  background: linear-gradient(90deg, #8e51ff 0%, #ad46ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.u-subtitle-gradient {
  background: linear-gradient(90deg, #ff409a 0%, #ad46ff 50%, #00d5be 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.u-title-star {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
}
.u-title-star::before, .u-title-star::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
  width: 20px;
  height: 20px;
}
.u-title-star::before {
  left: 0;
}
.u-title-star::after {
  right: 0;
}
.u-title-star--white::before, .u-title-star--white::after {
  background-image: url(../../images/front/deco/star-title-white.svg);
}
.u-title-star--gradient::before, .u-title-star--gradient::after {
  background-image: url(../../images/front/deco/star-title-linear.svg);
}

.u-text-tertiary {
  color: #a6a6a6;
}

.u-text-pink {
  color: #ff409a;
}

.u-text-purple-100 {
  color: #e2d0ff;
}

.u-text-purple-300 {
  color: #9c62ef;
}

.u-bg-gray-50 {
  background: #fafafa;
}

.no-transition {
  transition: none;
}

.h-editor-content img,
.h-editor-content iframe {
  max-width: 100%;
  height: auto;
}
.h-editor-content p:has(iframe),
.h-editor-content .txt:has(iframe) {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.h-editor-content p:has(iframe) iframe, .h-editor-content p:has(iframe) object, .h-editor-content p:has(iframe) embed,
.h-editor-content .txt:has(iframe) iframe,
.h-editor-content .txt:has(iframe) object,
.h-editor-content .txt:has(iframe) embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.breadcrumb a {
  color: #9c62ef;
}
.breadcrumb a:not([href]):not([class]), .breadcrumb a a:not([href]):not([class]):hover {
  color: #575757;
}

.btn-sm {
  --bs-btn-line-height: 1.3;
  --bs-btn-font-weight: 600;
}

.btn {
  position: relative;
  overflow: hidden;
}
.btn .c-icon-wrapper--left {
  margin-right: 10px;
}
.btn .c-icon-wrapper--right {
  margin-left: 10px;
}
.btn:not(.disabled):not(:disabled) .c-btn-noise::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: url(../../images/front/deco/noise-texture.png);
  background-size: contain;
  background-repeat: repeat;
  mix-blend-mode: multiply;
  border-radius: var(--bs-btn-border-radius);
}
.btn.c-btn-outline .c-btn-noise::before {
  display: none;
}
.btn.c-btn-outline:hover .c-btn-noise::before {
  display: block;
}

.c-cta-btn {
  overflow: hidden;
  --bs-btn-border-width: 0;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-disabled-opacity: 1;
}
.c-cta-btn::before {
  border-radius: var(--bs-btn-border-radius);
}
.c-cta-btn.btn {
  --bs-btn-padding-x: 3rem;
  --bs-btn-padding-y: 0.75rem;
}
.c-cta-btn.btn-lg {
  --bs-btn-font-size: 1.25rem;
  --bs-btn-padding-x: 3rem;
  --bs-btn-padding-y: 1.25rem;
}
.c-cta-btn.btn-sm {
  --bs-btn-padding-x: 3rem;
  --bs-btn-padding-y: 0.5rem;
}
.c-cta-btn:disabled, .c-cta-btn.disabled {
  background: #ebebeb;
}
.c-cta-btn--purple {
  position: relative;
  color: #fff;
  background: linear-gradient(90deg, #8e51ff 0%, #ad46ff 100%);
  transition: transform 0.1s ease-out;
}
.c-cta-btn--purple:hover:not(:disabled):not(.disabled) {
  background: #ff409a;
  color: #fff;
}
.c-cta-btn--purple::before, .c-cta-btn--purple::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(200%);
  opacity: 0;
  transition: transform ease-out 0.1s, opacity ease-out 0.1s;
}
.c-cta-btn--purple::before {
  top: calc(50% - 4px);
  left: 23px;
  width: 8px;
  height: 8px;
  background-image: url(../../images/front/deco/btn-left-deco.svg);
}
.c-cta-btn--purple::after {
  top: calc(50% - 4px);
  right: 20px;
  width: 23px;
  height: 18px;
  background-image: url(../../images/front/deco/btn-right-deco.svg);
}
.c-cta-btn--purple:hover::before, .c-cta-btn--purple:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.c-cta-btn--light-purple {
  position: relative;
  color: #7226fd;
  background: #e2d0ff;
  transition: transform 0.1s ease-out;
}
.c-cta-btn--light-purple:hover:not(:disabled):not(.disabled) {
  background: #ff409a;
  color: #fff;
}
.c-cta-btn--light-purple::before, .c-cta-btn--light-purple::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(200%);
  opacity: 0;
  transition: transform ease-out 0.1s, opacity ease-out 0.1s;
}
.c-cta-btn--light-purple::before {
  top: calc(50% - 4px);
  left: 23px;
  width: 8px;
  height: 8px;
  background-image: url(../../images/front/deco/btn-left-deco.svg);
}
.c-cta-btn--light-purple::after {
  top: calc(50% - 4px);
  right: 20px;
  width: 23px;
  height: 18px;
  background-image: url(../../images/front/deco/btn-right-deco.svg);
}
.c-cta-btn--light-purple:hover::before, .c-cta-btn--light-purple:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.c-cta-btn--green-star {
  position: relative;
  color: #fff;
  background: #00bba7;
  transition: transform 0.1s ease-out;
}
.c-cta-btn--green-star:hover:not(:disabled):not(.disabled) {
  background: #ff409a;
  color: #fff;
}
.c-cta-btn--green-star::before, .c-cta-btn--green-star::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(200%);
  opacity: 0;
  transition: transform ease-out 0.1s, opacity ease-out 0.1s;
}
.c-cta-btn--green-star::before {
  top: calc(50% - 4px);
  left: 23px;
  width: 8px;
  height: 8px;
  background-image: url(../../images/front/deco/btn-left-deco.svg);
}
.c-cta-btn--green-star::after {
  top: calc(50% - 4px);
  right: 20px;
  width: 23px;
  height: 18px;
  background-image: url(../../images/front/deco/btn-right-deco.svg);
}
.c-cta-btn--green-star:hover::before, .c-cta-btn--green-star:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.c-cta-btn--green {
  position: relative;
  z-index: 0;
  background: #00bba7;
  overflow: hidden;
}
.c-cta-btn--green::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #ff409a 0%, #ad46ff 50%, #00d5be 100%);
  transition: transform ease-out 0.3s;
}
.c-cta-btn--green:hover {
  color: #fff;
  background: #00bba7;
}
.c-cta-btn--green:hover::before {
  transform: scaleX(1);
}
.c-cta-btn--outline-purple {
  position: relative;
  z-index: 1;
  background: #fff;
  color: transparent;
  overflow: hidden;
  background: linear-gradient(90deg, #8e51ff 0%, #ad46ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.c-cta-btn--outline-purple::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0px;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(90deg, #8e51ff 0%, #ad46ff 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  transition: opacity ease-out 0.3s;
}
.c-cta-btn--outline-purple::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #ff409a 0%, #ad46ff 50%, #00d5be 100%);
  transition: transform ease-out 0.3s;
}
.c-cta-btn--outline-purple:hover {
  color: #fff;
}
.c-cta-btn--outline-purple:hover::before {
  opacity: 0;
}
.c-cta-btn--outline-purple:hover::after {
  transform: scaleX(1);
}
.c-cta-btn--outline-purple:disabled,
.c-cta-btn--outline-purple .disabled {
  -webkit-background-clip: border-box;
  background: #ebebeb;
}
.c-cta-btn--outline-purple:disabled::before,
.c-cta-btn--outline-purple .disabled::before {
  display: none;
}

.c-feature-btn {
  --bs-btn-border-width: 0;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-disabled-opacity: 1;
}
.c-feature-btn:disabled, .c-feature-btn.disabled {
  background: #ebebeb;
}
.c-feature-btn--purple {
  background: linear-gradient(90deg, #8e51ff 0%, #ad46ff 100%);
  transition: none;
}
.c-feature-btn--purple:hover {
  background: #ff409a;
}
.c-feature-btn--dark-purple {
  background: #7226fd;
  transition: none;
}
.c-feature-btn--dark-purple:hover {
  background: #ff409a;
}
.c-feature-btn--light-purple {
  background: #e2d0ff;
  color: #7226fd;
}
.c-feature-btn--light-purple:hover {
  background: #ff409a;
}
.c-feature-btn--gray {
  background: #f7f7f7;
  color: #575757;
}
.c-feature-btn--gray:hover {
  background: #f3eefb;
  color: #7226fd;
}
.c-feature-btn--outline-purple {
  background: transparent;
  color: #7226fd;
  border: 1px solid #7226fd;
}
.c-feature-btn--outline-purple:hover {
  background: #ff409a;
}
.c-feature-btn--outline-gray {
  background: transparent;
  border: 1px solid #d6d6d6;
  color: #575757;
}
.c-feature-btn--outline-gray:hover {
  color: #7226fd;
}
.c-feature-btn--ghost-purple {
  color: #7226fd;
}
.c-feature-btn--ghost-purple:hover {
  color: #ff409a;
  background: none;
}
.c-feature-btn--ghost-gray {
  color: #575757;
}
.c-feature-btn--ghost-gray:hover {
  color: #7226fd;
  background: none;
}

.btn-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.btn-link:hover {
  color: #ff409a;
}
.btn-link.disabled, .btn-link:disabled {
  color: #a6a6a6;
}

.pagination .page-item:first-child {
  font-size: 1rem;
}
@media (min-width: 576px) {
  .pagination .page-item:first-child {
    margin-right: 28px;
  }
}
@media (min-width: 576px) {
  .pagination .page-item:last-child {
    margin-left: 28px;
  }
}
.pagination .page-link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 0.25rem;
}

.c-test-card {
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
}
.c-test-card:hover {
  border: 1px solid #9c62ef;
}
.c-test-card__badge {
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #575757;
  background-color: #f7f7f7;
  padding: 4px 12px;
  border-radius: 999px;
}
.c-test-card__label {
  color: #a6a6a6;
}
.c-test-card__progress {
  color: #a6a6a6;
}
.c-test-card__progress .progress {
  --bs-progress-height: 10px;
  --bs-progress-bg: #ebebeb;
  border: 2px solid #ebebeb;
}
.c-test-card__progress .progress-bar {
  background: linear-gradient(90deg, #00BBA7 0%, #8E51FF 100%);
}
.c-test-card__update {
  color: #ff409a;
  font-size: 14px;
}
.c-test-card__update:hover {
  color: #9c62ef;
}
.c-test-card__last {
  color: #9c62ef;
  font-size: 14px;
}
.c-test-card__renew {
  min-width: 34px;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.c-test-card__continue {
  font-size: 14px;
}
.c-test-card__accuracy {
  font-size: 14px;
  color: #00bba7;
}
.c-test-card__num {
  opacity: 0.4;
  background: linear-gradient(90deg, #00bba7 0%, #8e51ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-test-slider__item {
  height: auto !important;
}
.c-test-slider__nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.c-test-slider__pagination {
  --swiper-pagination-bullet-horizontal-gap: 6px;
  --swiper-pagination-bullet-inactive-color: #d6d6d6;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-color: linear-gradient(90deg, #00bba7 0%, #8e51ff 100%);
  margin: 0 2px;
}
.c-test-slider__pagination .swiper-pagination-bullet-active {
  --swiper-pagination-bullet-width: 64px;
  --swiper-pagination-bullet-border-radius: 999px;
}
.c-test-slider__action {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.c-test-slider__action:hover {
  background-color: #f3eefb;
  color: #7226fd;
}

.c-filter-card__label {
  color: #a6a6a6;
  font-size: 14px;
}
.c-filter-card .l-filter__collapse {
  background-color: #f7f7f7;
  border-radius: 12px;
}
.c-filter-card .l-filter__item {
  --bs-btn-font-size: 14px;
  --bs-btn-font-weight: 400;
  --bs-btn-bg: #ffffff;
  --bs-btn-border-color: #ffffff;
  --bs-btn-padding-x: 8px;
  --bs-btn-hover-color: #7226fd;
  --bs-btn-hover-bg: #f3eefb;
  --bs-btn-focus-color: #7226fd;
  --bs-btn-focus-bg: #f3eefb;
  --bs-btn-active-color: #7226fd;
  --bs-btn-active-bg: #f3eefb;
  --bs-btn-active-border-color: #f3eefb;
}
.c-filter-card .l-filter__item.selected {
  pointer-events: none;
}
@media (min-width: 768px) {
  .c-filter-card .l-filter__item {
    --bs-btn-bg: #fafafa;
    --bs-btn-border-color: #fafafa;
  }
}
.c-filter-card .l-filter__selected-label {
  color: #a6a6a6;
  font-size: 14px;
}

.c-question-item__label {
  color: #575757;
  font-size: 14px;
  padding: 4px 12px;
}
.c-question-item__label:not(:last-child) {
  border-right: 1px solid #d6d6d6;
}
.c-question-item__collapse {
  background-color: #f3eefb;
  border-radius: 12px;
}
.c-question-item__explanation {
  background-color: #f3eefb;
}
.c-question-item__placeholder {
  margin: 0 0 0 36px;
  font-size: 18px;
}
.c-question-item .l-option {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 24px;
  border: 2px solid #fafafa;
  background-color: #fafafa;
  font-size: 18px;
}
.c-question-item .l-option.incorrect {
  background-color: rgba(255, 64, 154, 0.1);
  border: 2px solid rgba(255, 64, 154, 0.1);
}
.c-question-item .l-option.correct {
  background-color: rgba(162, 255, 243, 0.1);
  border: 2px solid #a2fff3;
}
@media (min-width: 992px) {
  .c-question-item .l-option {
    align-items: center;
    flex-direction: row;
  }
}
.c-question-item .l-option:not(:last-child) {
  margin: 0 0 24px;
}
.c-question-item .l-option input {
  --bs-form-check-bg: #fff;
  width: 24px;
  height: 24px;
  margin-top: 0;
}
.c-question-item .l-option__label {
  margin: 0 0 12px 36px;
}
@media (min-width: 992px) {
  .c-question-item .l-option__label {
    margin: 0 0 0 28px;
  }
}
.c-question-item .l-option__label.correct {
  color: #00bba7;
}
.c-question-item .l-option__label.incorrect {
  color: #ff409a;
}

.swal-modal {
  border-radius: 24px;
}
@media (min-width: 768px) {
  .swal-modal {
    width: 700px;
  }
}
.swal-modal .swal-title {
  padding: 40px 40px 0;
  margin: 0;
}
.swal-modal .swal-title + .swal-text {
  margin: 12px 0 0;
}
.swal-modal .swal-content {
  margin: 0;
  padding: 20px 20px 0;
}
@media (min-width: 768px) {
  .swal-modal .swal-content {
    padding: 40px 40px 0;
  }
}
.swal-modal .swal-footer {
  display: flex;
  justify-content: center;
  text-align: inherit;
  margin: 0;
  padding: 20px;
}
@media (min-width: 768px) {
  .swal-modal .swal-footer {
    padding: 40px;
  }
}
.swal-modal .swal-footer .swal-button-container {
  flex-grow: 1;
}
.swal-modal .swal-footer .swal-button {
  width: 100%;
}
.swal-modal .swal-footer .btn-secondary {
  box-shadow: none;
  background-color: #f7f7f7;
  border: 1px solid #f7f7f7;
  color: #575757;
}
.swal-modal .swal-footer .btn-secondary:hover {
  background-color: #f3eefb;
  border: 1px solid #f3eefb;
  color: #7226fd;
}
.swal-modal .swal-footer .btn-primary {
  box-shadow: none;
}
.swal-modal .swal-footer .btn-primary:hover {
  background-color: #ff409a;
  border: 1px solid #ff409a;
}
.swal-modal .l-icon {
  display: flex;
  justify-content: center;
}
.swal-modal .l-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  padding: 10px;
  margin: 0 0 32px;
  border-radius: 50%;
  background-color: #f3eefb;
  font-size: 28px;
  color: #7226fd;
}
.swal-modal .h-text-pink {
  color: #ff409a;
}

.c-plan-card {
  position: relative;
}
.c-plan-card__pro {
  padding: 6px 10px;
  border: 1px solid #00bba7;
  color: #00bba7;
  font-size: 14px;
  border-radius: 999px;
}
.c-plan-card__cost {
  border-radius: 12px;
  border: 1px solid #f3eefb;
  background-color: #fafafa;
  padding: 12px;
  color: #575757;
}
.c-plan-card__compare {
  background-color: #00bba7;
  padding: 6px 10px;
  border-radius: 999px;
}
.c-plan-card.plan-180 .c-plan-card__crown {
  opacity: 0;
}
.c-plan-card.plan-180 .c-plan-card__border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-plan-card.plan-180 .c-plan-card__border svg {
  width: 100%;
  height: 100%;
}
.c-plan-card.plan-180 .c-plan-card__border rect {
  opacity: 0;
}

.c-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  color: #9c62ef;
  background: #f3eefb;
}
.c-copyright {
  padding: 12px 0;
  background-color: #fff;
  color: #575757;
}
@media (min-width: 992px) {
  .c-copyright {
    padding: 16px 44px;
    border-radius: 24px;
  }
}
.c-copyright__link {
  padding: 0;
  color: #575757;
  border-radius: 0;
  font-size: 14px;
}

.c-search-input {
  position: relative;
}
.c-search-input__icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: #a6a6a6;
}
.c-search-input__input {
  padding-left: 48px;
}
.c-search-input__input:hover:not(.disabled):not(:disabled) {
  border: solid 1px #9c62ef;
}

.c-article-card {
  border: solid 1px transparent;
}
.c-article-card__icon {
  font-size: 0.75rem;
}
.c-article-card:hover {
  border: solid 1px #7226fd;
}
.l-feature-section {
  position: relative;
  padding-top: 110px;
  padding-bottom: 100px;
  background: linear-gradient(90deg, #00bba7 0%, #8e51ff 100%);
}
@media (max-width: 1199.98px) {
  .l-feature-section {
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.l-feature-section .c-deco-star {
  position: absolute;
  opacity: 0;
}
.l-feature-section .c-deco-star--top-left {
  width: 300px;
  height: 300px;
  left: -40px;
  top: 5px;
  transform: rotate(64deg);
  object-position: right;
  object-fit: cover;
}
.l-feature-section .c-deco-star--top-right {
  width: 78px;
  height: 88px;
  right: 5px;
  top: 124px;
  transform: rotate(-64deg);
}
.l-feature-section .c-deco-star--bottom-left {
  width: 44px;
  height: 44px;
  left: 18px;
  bottom: 56px;
}
.l-feature-section .c-deco-star--bottom-right {
  width: 250px;
  height: 353px;
  right: -10px;
  bottom: 68px;
  transform: rotate(-8deg);
  object-position: left;
  object-fit: cover;
}
.l-feature-section .c-feature-card {
  background: rgba(255, 255, 255, 0.8);
}

.c-test-item-header .l-header {
  padding: 8px 0;
  background-color: #fff;
}
@media (min-width: 992px) {
  .c-test-item-header .l-header {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 999px;
  }
}
.c-test-item-header .l-header__container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .c-test-item-header .l-header__container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .c-test-item-header .l-header__container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .c-test-item-header .l-header__container {
    padding-right: 8px;
    padding-left: 8px;
    margin-right: inherit;
    margin-left: inherit;
    max-width: inherit;
  }
}
.c-test-item-header .l-header__hr {
  width: 1px;
  height: 36px;
  border-right: 1px solid #ced4da;
}
.c-test-item-header .l-header__bars {
  color: #575757;
  min-width: 46px;
}
.c-test-item-header .l-header__title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.c-test-item-header .l-header .l-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: #e2d0ff;
  border-radius: 50%;
  padding: 8px;
  transition: all 0.3s ease;
  color: #7226fd;
  font-weight: 600;
}
@media (min-width: 992px) {
  .c-test-item-header .l-header .l-avatar {
    width: auto;
    height: auto;
    padding: 8px 8px 8px 28px;
    border-radius: 999px;
  }
}
.c-test-item-header .l-header .l-avatar:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: url(../../images/front/deco/noise-texture.png);
  background-size: contain;
  background-repeat: repeat;
  mix-blend-mode: multiply;
}
@media (min-width: 992px) {
  .c-test-item-header .l-header .l-avatar:before {
    border-radius: 999px;
  }
}
.c-test-item-header .l-header .l-avatar:hover {
  background-color: #ff409a;
  color: #fff;
}
.c-test-item-header .l-header .l-avatar__img {
  max-width: 100%;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
}
@media (min-width: 992px) {
  .c-test-item-header .l-header .l-avatar__img {
    width: 32px;
    height: auto;
  }
}
.c-test-item-header .l-question-menu {
  --bs-offcanvas-bg: #fff;
  height: 100vh;
}
@media (min-width: 992px) {
  .c-test-item-header .l-question-menu {
    top: 20px;
    left: 20px;
    bottom: 20px;
    height: auto;
    border-radius: 24px;
  }
}
.c-test-item-header .l-question-menu .infinite-scroll-wrapper {
  overflow-y: scroll;
  max-height: calc(100vh - 250px);
}
@media (min-width: 992px) {
  .c-test-item-header .l-question-menu .infinite-scroll-wrapper {
    max-height: calc(100vh - 210px);
  }
}
.c-test-item-header .l-question-menu__body {
  overflow: hidden;
}
.c-test-item-header .l-question-menu__footer {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (min-width: 992px) {
  .c-test-item-header .l-question-menu__footer {
    justify-content: space-between;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
}
.c-test-item-header .l-question-menu__item {
  color: #1f1f1f;
  border-radius: 8px;
}
.c-test-item-header .l-question-menu__item:hover {
  background-color: #f7f7f7;
}
.c-test-item-header .l-question-menu__item.active {
  background-color: #f3eefb;
}
.c-test-item-header .l-question-menu__correct {
  background: linear-gradient(90deg, #00BBA7 0%, #8E51FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-test-item-header .l-question-menu__incorrect {
  color: #ff409a;
}
.c-test-item-header .l-question-menu__empty {
  color: #e2d0ff;
}

.l-float-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  position: fixed;
  right: 24px;
  bottom: 24px;
  transition: all 0.3s ease-in-out;
  color: #06C755;
  z-index: 1000;
}
.l-float-contact:hover i {
  color: rgb(4.5073170732, 149.4926829268, 63.8536585366);
}
.l-float-contact i {
  font-size: 36px;
  transition: all 0.3s ease-in-out;
}

#login-modal {
  --bs-modal-border-width: 0;
  --bs-modal-width: 478px;
}
@media (min-width: 768px) {
  #login-modal {
    --bs-modal-width: 700px;
  }
}
#login-modal .l-icon {
  display: flex;
  justify-content: center;
}
#login-modal .l-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  padding: 10px;
  margin: 0 0 32px;
  border-radius: 50%;
  background-color: #f3eefb;
  font-size: 28px;
  color: #7226fd;
}
#login-modal .l-social {
  padding: 10px 12px;
  border-radius: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
}
#login-modal .l-social.line {
  --bs-btn-bg: #06C755;
  --bs-btn-color: #fff;
  --bs-btn-border-color: #06C755;
  --bs-btn-hover-bg: rgb(5.2536585366, 174.2463414634, 74.4268292683);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-border-color: rgb(5.2536585366, 174.2463414634, 74.4268292683);
  --bs-btn-active-bg: rgb(4.5073170732, 149.4926829268, 63.8536585366);
  --bs-btn-active-border-color: rgb(4.5073170732, 149.4926829268, 63.8536585366);
  --bs-btn-active-color: #fff;
  position: relative;
}
#login-modal .l-social.line:after {
  content: "";
  width: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  position: absolute;
  left: 47px;
  top: 0;
  bottom: 0;
}

.alertify-notifier.ajs-top {
  top: 110px !important;
}
.alertify-notifier .ajs-message {
  color: #fff !important;
  background: rgba(var(--bs-primary-rgb), 0.7) !important;
  word-break: break-all;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

.l-main-header .navbar {
  --bs-navbar-toggler-focus-width: 0;
  border-radius: 50rem;
}
@media (max-width: 1399.98px) {
  .l-main-header .navbar {
    background: #fff;
    border-radius: 0;
  }
}
.l-main-header .navbar-toggler {
  border: none;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.l-main-header .navbar-toggler[data-bs-target="#login-modal"] .c-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: #a6a6a6;
  color: #fff;
  border-radius: 50%;
}
.l-main-header .navbar-toggler[data-bs-target="#login-modal"]:hover {
  color: #7226fd;
}
.l-main-header .navbar-toggler[data-bs-target="#login-modal"]:hover .c-icon-wrapper {
  color: #fff;
  background: #7226fd;
}
.l-main-header .nav-link,
.l-main-header .dropdown-item {
  color: #1f1f1f;
  transition: opacity 0.1s ease-out;
}
.l-main-header .nav-link:hover,
.l-main-header .dropdown-item:hover {
  background: none;
  color: #7226fd;
}
@media (max-width: 1399.98px) {
  .l-main-header .nav-link,
  .l-main-header .dropdown-item {
    padding-left: 32px;
    padding-right: 12px;
  }
}
.l-main-header .dropdown .dropdown-toggle {
  position: relative;
  padding-right: 40px;
  box-shadow: none;
}
.l-main-header .dropdown .dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform-origin: center;
  transform: translateY(-50%);
  color: rgba(31, 31, 31, 0.5);
  border: none;
  margin-left: 8px;
  transition: transform 0.1s ease-out;
}
@media (max-width: 1399.98px) {
  .l-main-header .dropdown .dropdown-toggle::after {
    right: 12px;
  }
}
.l-main-header .dropdown .dropdown-toggle.show {
  color: #7226fd;
}
.l-main-header .dropdown .dropdown-toggle.show::after {
  color: #7226fd;
  transform: translateY(-50%) rotate(-180deg);
}
.l-main-header .dropdown .dropdown-menu {
  --bs-dropdown-padding-y: 1rem;
  --bs-dropdown-padding-x: 1.5rem;
  --bs-dropdown-item-padding-y: 0.375rem;
  --bs-dropdown-item-padding-x: 1.25rem;
}
@media (min-width: 1400px) {
  .l-main-header .dropdown .dropdown-menu {
    position: absolute;
    text-align: center;
    border-radius: 0.75rem;
    top: calc(100% + 24px);
  }
}
@media (max-width: 1399.98px) {
  .l-main-header .dropdown .dropdown-menu {
    border-radius: 0;
    padding: 0;
  }
}
@media (max-width: 1399.98px) {
  .l-main-header .dropdown .dropdown-menu .dropdown-item {
    padding-left: 60px;
    padding-right: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.l-main-header .dropdown .dropdown-menu li + li {
  margin-top: 4px;
}
@media (max-width: 1399.98px) {
  .l-main-header .dropdown .dropdown-menu li + li {
    margin-top: 0;
  }
}
@media (min-width: 1400px) {
  .l-main-header #searchCollapse,
  .l-main-header #userCollapse {
    display: none !important;
  }
}
.l-main-header .c-dropdown-login .nav-link {
  padding-right: 1.625rem;
}
.l-main-header .c-dropdown-login .nav-link::after {
  display: none;
}
.l-main-header .c-dropdown-login .dropdown-menu {
  padding: 1rem 1.5rem;
  text-align: left;
  min-width: 300px;
}
.l-main-header .c-dropdown-login .c-login-btn {
  padding: 8px 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  transition: opacity 0.1s ease-out;
  width: 100%;
}
.l-main-header .c-dropdown-login .c-login-btn:hover {
  opacity: 0.85;
}
.l-main-header .c-dropdown-login .c-login-btn .c-icon-wrapper {
  padding: 5px 1px;
  margin-right: 8px;
}
.l-main-header .c-dropdown-login .c-login-btn--line {
  background: #06c755;
}
.l-main-header .c-dropdown-login .c-login-btn--apple {
  background: #1f1f1f;
}
.l-main-header .c-cta-btn-wrapper {
  padding-left: 12px;
  padding-right: 0px;
}
@media (max-width: 1399.98px) {
  .l-main-header .c-cta-btn-wrapper {
    width: 100%;
  }
}
@media (max-width: 1399.98px) {
  .l-main-header .c-cta-btn-wrapper .c-cta-btn {
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .l-main-header #navbarCollapse .nav-link {
    --bs-nav-link-padding-y: 6px;
  }
}

#globalBlur {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background: rgba(128, 128, 128, 0.3);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.1s ease-out;
  z-index: 998;
}

#globalBlur.active {
  opacity: 1;
}

.c-main-banner {
  padding-top: 100px;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 36.06%, #fafafa 100%), linear-gradient(90deg, #00ffe4 0%, #e991ff 100%), #fafafa;
}
@media (max-width: 1199.98px) {
  .c-main-banner {
    padding-top: 80px;
    padding-bottom: 58px;
  }
}
.c-main-banner__video {
  filter: opacity(0.5);
  mix-blend-mode: luminosity;
  background-color: #e0e0e0;
  object-position: top right;
}
.c-main-banner__img {
  max-width: 300px;
}
@media (max-width: 991.98px) {
  .c-main-banner__img {
    max-width: 223px;
  }
}
.c-main-banner .c-banner-wrapper {
  position: relative;
  z-index: 1;
}
.c-main-banner .c-banner-wrapper__text {
  margin: 0 0 60px;
  opacity: 0;
}
@media (min-width: 992px) {
  .c-main-banner .c-banner-wrapper__text {
    margin: 0 0 120px;
  }
}
.c-main-banner .c-banner-wrapper__text .c-title-wrapper {
  color: #1f1f1f;
  background: linear-gradient(90deg, #00bba7 0%, #8e51ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #1f1f1f;
}
.c-main-banner .c-banner-wrapper__button {
  opacity: 0;
  transform: translateY(120px);
}
.c-main-banner .c-deco-star {
  position: absolute;
}
.c-main-banner .c-deco-star--top-left {
  width: 56px;
  height: 56px;
  top: 362px;
  left: 619px;
}
@media (max-width: 991.98px) {
  .c-main-banner .c-deco-star--top-left {
    top: calc(50% - 100px);
    left: calc(50% - 100px);
    width: 37px;
    height: 37px;
  }
}
.c-main-banner .c-deco-star--top-right {
  width: 44px;
  height: 44px;
  top: 391px;
  right: 571px;
  transform: rotate(-135deg);
}
@media (max-width: 991.98px) {
  .c-main-banner .c-deco-star--top-right {
    top: calc(50% - 100px);
    right: calc(50% - 100px);
    width: 21px;
    height: 21px;
  }
}
.c-main-banner .c-deco-star--bottom-left {
  width: 33px;
  height: 33px;
  top: 525px;
  left: 528px;
  transform: rotate(-135deg);
}
@media (max-width: 991.98px) {
  .c-main-banner .c-deco-star--bottom-left {
    top: calc(50% + 100px);
    left: calc(50% - 100px);
    width: 23px;
    height: 23px;
  }
}
.c-main-banner .c-deco-star--bottom-right {
  width: 34px;
  height: 34px;
  top: 494px;
  right: 628px;
  transform: rotate(-45deg);
}
@media (max-width: 991.98px) {
  .c-main-banner .c-deco-star--bottom-right {
    top: calc(50% + 100px);
    right: calc(50% - 100px);
    width: 28px;
    height: 28px;
  }
}

.l-main-footer {
  background: linear-gradient(180deg, rgba(142, 81, 255, 0) 0%, rgba(142, 81, 255, 0.6) 100%);
}
.l-main-footer .c-main-wrapper__nav .c-nav-body {
  padding: 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1.5rem;
}
.l-main-footer .c-main-wrapper__nav .c-nav-body__end {
  width: 31%;
}
.l-main-footer .c-main-wrapper__nav .c-nav-footer {
  padding: 16px 44px;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
}
.l-main-footer .c-main-wrapper__nav .c-nav-footer .c-nav-deco {
  padding-left: 20px;
  position: relative;
}
.l-main-footer .c-main-wrapper__nav .c-nav-footer .c-nav-deco::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  left: 4px;
  width: 4px;
  height: 4px;
  background: #575757;
}
@media (max-width: 1399.98px) {
  .l-main-footer .c-main-wrapper__nav .c-nav-footer .c-nav-deco::before {
    display: none;
  }
}
.l-main-footer .c-list-wrapper {
  padding: 16px;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 6px 32px 0 rgba(0, 0, 0, 0.08);
}
.l-main-footer .c-list-wrapper:not(.c-list-wrapper--social) a {
  color: #1f1f1f;
  padding: 8px 16px;
  display: inline-block;
}
.l-main-footer .c-list-wrapper:not(.c-list-wrapper--social) a:hover {
  color: #7226fd;
}
.l-main-footer .c-list-wrapper--social a:hover {
  opacity: 0.8;
}
.l-main-footer .c-main-wrapper__slogan {
  padding: 42px 40px;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  width: 31.5%;
}
@media (max-width: 991.98px) {
  .l-main-footer .c-main-wrapper__slogan {
    padding: 20px;
  }
}
.l-main-footer .c-main-wrapper__slogan .body1, .l-main-footer .c-main-wrapper__slogan .view-home .l-home-view .l-section--choose .l-choose-table .c-other-wrapper__text, .view-home .l-home-view .l-section--choose .l-choose-table .l-main-footer .c-main-wrapper__slogan .c-other-wrapper__text, .l-main-footer .c-main-wrapper__slogan .view-home .l-home-view .l-section--choose .l-choose-table .c-feature-wrapper__text, .view-home .l-home-view .l-section--choose .l-choose-table .l-main-footer .c-main-wrapper__slogan .c-feature-wrapper__text, .l-main-footer .c-main-wrapper__slogan .view-article-item .l-article-item-page .l-section--content p, .view-article-item .l-article-item-page .l-section--content .l-main-footer .c-main-wrapper__slogan p {
  font-weight: bold;
}
@media (max-width: 1399.98px) {
  .l-main-footer .c-main-wrapper__slogan {
    width: 100%;
  }
  .l-main-footer .c-main-wrapper__slogan .body1, .l-main-footer .c-main-wrapper__slogan .view-home .l-home-view .l-section--choose .l-choose-table .c-other-wrapper__text, .view-home .l-home-view .l-section--choose .l-choose-table .l-main-footer .c-main-wrapper__slogan .c-other-wrapper__text, .l-main-footer .c-main-wrapper__slogan .view-home .l-home-view .l-section--choose .l-choose-table .c-feature-wrapper__text, .view-home .l-home-view .l-section--choose .l-choose-table .l-main-footer .c-main-wrapper__slogan .c-feature-wrapper__text, .l-main-footer .c-main-wrapper__slogan .view-article-item .l-article-item-page .l-section--content p, .view-article-item .l-article-item-page .l-section--content .l-main-footer .c-main-wrapper__slogan p {
    font-weight: normal;
  }
}
.l-main-footer .c-main-wrapper__slogan .c-slogan-img img {
  max-width: 240px;
  width: 100%;
}
.l-main-footer .l-social .youtube {
  color: #FF0000 !important;
}
.l-main-footer .l-social .facebook {
  color: #1877F2 !important;
}
.l-main-footer .l-social .line {
  color: #06C755 !important;
}
.l-main-footer .l-social .instagram {
  background: linear-gradient(45deg, #405DE6, #833AB4, #FD1D1D, #FCAF45, #FFDC80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* 標準語法，兼容性較差 */
  color: transparent;
}
.l-main-footer .l-social i {
  font-size: 28px;
}
.l-main-footer .c-copyright {
  padding: 20px;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
}
.l-main-footer--in-system {
  background: #fafafa;
  padding-top: 56px;
  padding-bottom: 56px;
}
.l-main-footer--in-system .c-nav-footer {
  background: #fff;
  padding: 16px 44px;
  border-radius: 24px;
}
@media (max-width: 1199.98px) {
  .l-main-footer--in-system .c-nav-footer {
    padding: 12px 20px;
    border-radius: 0px;
  }
}

.layout-member-body {
  padding-top: 0;
  padding-bottom: 0;
  scroll-padding-top: 0;
}
.layout-member-body .l-member-layout__wrapper {
  min-height: 100vh;
  width: 100%;
  position: relative;
}
@media (min-width: 992px) {
  .layout-member-body .l-member-layout__wrapper {
    height: 100vh;
    overflow: scroll;
  }
}
.layout-member-body .l-member-layout__body {
  display: flex;
  flex-direction: column;
  background-color: #fafafa;
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 68px;
}
@media (min-width: 576px) {
  .layout-member-body .l-member-layout__body {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .layout-member-body .l-member-layout__body {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .layout-member-body .l-member-layout__body {
    padding-left: 48px;
    margin-left: 0;
    padding-right: 24px;
    margin-right: 0;
    max-width: inherit;
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .layout-member-body .l-member-layout__body {
    padding-right: 48px;
  }
}
@media (min-width: 1400px) {
  .layout-member-body .l-member-layout__body {
    padding-right: 72px;
  }
}
@media (min-width: 1600px) {
  .layout-member-body .l-member-layout__body {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 1320px;
  }
}
.layout-member-body .l-member-layout__bg {
  position: absolute;
  top: 320px;
  right: 0;
}
.layout-member-body .l-member-layout__content {
  padding: 105px 0 60px;
}
@media (min-width: 992px) {
  .layout-member-body .l-member-layout__content {
    padding: 60px 0;
  }
}
.layout-member-body .l-member-layout .l-member-sidebar {
  height: 100vh;
  width: 280px;
  min-width: 280px;
  padding: 28px 0;
  background-color: #f3eefb;
}
.layout-member-body .l-member-layout .l-member-menu__hr {
  border-top-color: #e2d0ff;
  opacity: 1;
}
.layout-member-body .l-member-layout .l-member-menu__link {
  padding: 8px 12px;
  color: #1f1f1f;
  font-weight: 600;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
}
.layout-member-body .l-member-layout .l-member-menu__link:hover, .layout-member-body .l-member-layout .l-member-menu__link.active {
  background-color: #fff;
}
.layout-member-body .l-member-layout .l-member-header {
  position: fixed;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 3;
}
@media (min-width: 992px) {
  .layout-member-body .l-member-layout .l-member-header {
    position: static;
    background-color: inherit;
  }
}
.layout-member-body .l-member-layout .l-member-header__container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .layout-member-body .l-member-layout .l-member-header__container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .layout-member-body .l-member-layout .l-member-header__container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .layout-member-body .l-member-layout .l-member-header__container {
    padding-right: 0;
    padding-left: 0;
    margin-right: inherit;
    margin-left: inherit;
    max-width: inherit;
  }
}
.layout-member-body .l-member-layout .l-member-header__logo {
  width: 38px;
}
.layout-member-body .l-member-layout .l-member-header__bar {
  font-size: 20px;
  color: #a6a6a6;
}
.layout-member-body .l-member-layout .l-member-header .l-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: #e2d0ff;
  border-radius: 50%;
  padding: 8px;
  transition: all 0.3s ease;
  color: #7226fd;
  font-weight: 600;
}
@media (min-width: 992px) {
  .layout-member-body .l-member-layout .l-member-header .l-avatar {
    width: auto;
    height: auto;
    padding: 8px 8px 8px 28px;
    border-radius: 999px;
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 2;
  }
}
.layout-member-body .l-member-layout .l-member-header .l-avatar:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: url(../../images/front/deco/noise-texture.png);
  background-size: contain;
  background-repeat: repeat;
  mix-blend-mode: multiply;
}
@media (min-width: 992px) {
  .layout-member-body .l-member-layout .l-member-header .l-avatar:before {
    border-radius: 999px;
  }
}
.layout-member-body .l-member-layout .l-member-header .l-avatar:hover {
  background-color: #ff409a;
  color: #fff;
}
.layout-member-body .l-member-layout .l-member-header .l-avatar__img {
  max-width: 100%;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
}
@media (min-width: 992px) {
  .layout-member-body .l-member-layout .l-member-header .l-avatar__img {
    width: 32px;
    height: auto;
  }
}
.layout-member-body .l-member-layout .l-member-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (min-width: 992px) {
  .layout-member-body .l-member-layout .l-member-footer {
    position: static;
  }
}
.layout-member-body .l-member-layout .l-member-footer__container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .layout-member-body .l-member-layout .l-member-footer__container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .layout-member-body .l-member-layout .l-member-footer__container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .layout-member-body .l-member-layout .l-member-footer__container {
    padding-right: 0;
    padding-left: 0;
    margin-right: inherit;
    margin-left: inherit;
    max-width: inherit;
  }
}
.layout-member-body .l-member-layout #member-offcanvas {
  padding: 0 0 28px;
  background-color: #f3eefb;
}

.view-term-layout {
  position: relative;
  padding-top: 58px;
}
@media (min-width: 1400px) {
  .view-term-layout {
    padding-top: 88px;
  }
}
.view-term-layout .l-term-layout {
  padding-top: 40px;
}
@media (min-width: 1400px) {
  .view-term-layout .l-term-layout {
    padding-top: 0;
  }
}
.view-term-layout .l-term-layout__bg {
  position: absolute;
  top: 58px;
  left: 0;
  width: 100%;
  background: url("../../images/front/term/bg-m.png") center center no-repeat;
  background-size: cover;
  aspect-ratio: 375/170;
  z-index: -1;
}
@media (min-width: 1200px) {
  .view-term-layout .l-term-layout__bg {
    top: 0;
    background: url("../../images/front/term/bg.png") center center no-repeat;
    aspect-ratio: 1440/457;
    background-size: cover;
  }
}

.l-subscription-view .c-main-banner .c-img-wrapper {
  display: none;
}
@media (max-width: 767.98px) {
  .l-subscription-view .c-main-banner .c-img-wrapper {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .l-subscription-view .c-main-banner .c-title-wrapper {
    font-size: 1.75rem;
  }
}
.l-subscription-view .js-fadeup {
  opacity: 0;
}
.l-subscription-view .l-section--compare {
  position: relative;
  overflow: hidden;
}
.l-subscription-view .l-section--compare .c-table-container {
  padding-left: 160px;
  padding-right: 160px;
}
@media (max-width: 991.98px) {
  .l-subscription-view .l-section--compare .c-table-container {
    padding-left: 0;
    padding-right: 0;
  }
}
.l-subscription-view .l-section--compare .c-deco-wrapper .c-deco-star--left {
  width: 100px;
  height: 209px;
  transform: rotate(-8deg);
  object-fit: cover;
  object-position: right;
  top: 56px;
  position: absolute;
}
.l-subscription-view .l-section--compare .c-deco-wrapper .c-deco-star--right {
  position: absolute;
  top: 8px;
  right: 0;
  width: 148px;
  height: 148px;
  transform: rotate(-8deg);
  object-fit: cover;
  object-position: left;
}
.l-subscription-view .l-section--compare .c-table-wrapper {
  padding: 40px;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 991.98px) {
  .l-subscription-view .l-section--compare .c-table-wrapper {
    padding: 0;
  }
}
.l-subscription-view .l-section--compare .l-compare-table {
  --bs-table-bg: $white-50;
  border-collapse: separate;
  border-spacing: 0px 8px;
}
.l-subscription-view .l-section--compare .l-compare-table thead th {
  padding: 0;
  border-bottom: none;
  vertical-align: middle;
}
.l-subscription-view .l-section--compare .l-compare-table thead th:nth-of-type(1) {
  padding: 16px;
}
.l-subscription-view .l-section--compare .l-compare-table thead th:nth-of-type(2) {
  color: #575757;
}
.l-subscription-view .l-section--compare .l-compare-table tbody tr:nth-of-type(4),
.l-subscription-view .l-section--compare .l-compare-table tbody tr:nth-of-type(7) {
  border-bottom: transparent;
}
.l-subscription-view .l-section--compare .l-compare-table tbody th[colspan] {
  background: #fafafa;
  border-bottom: none;
  padding: 0;
}
.l-subscription-view .l-section--compare .l-compare-table tbody th[colspan] > * {
  border-radius: 0.75rem;
  border: solid 1px #f3eefb;
  padding: 12px;
}
.l-subscription-view .l-section--compare .l-compare-table tbody th {
  padding: 16px;
}
@media (max-width: 991.98px) {
  .l-subscription-view .l-section--compare .l-compare-table tbody th {
    padding: 12px;
  }
}
.l-subscription-view .l-section--compare .l-compare-table tbody td {
  text-align: center;
  vertical-align: middle;
  padding-left: 0;
  padding-right: 0;
}
.l-subscription-view .l-section--compare .l-compare-table tbody td:nth-of-type(1) {
  color: #00bba7;
}
.l-subscription-view .l-section--compare .l-compare-table tbody tr:last-child td:nth-of-type(1) {
  color: #a6a6a6;
}
.l-subscription-view .l-section--compare .l-compare-table tbody tr:nth-of-type(9) td:nth-of-type(1),
.l-subscription-view .l-section--compare .l-compare-table tbody tr:nth-of-type(10) td:nth-of-type(1) {
  color: #ff409a;
}
.l-subscription-view .l-section--compare .l-compare-table .c-head-title {
  padding: 10px 20px;
}
@media (max-width: 991.98px) {
  .l-subscription-view .l-section--compare .l-compare-table .c-head-title {
    padding: 8px;
  }
}
.l-subscription-view .l-section--compare .l-compare-table .c-head-title__test {
  border-right: 1px dashed #d6d6d6;
}
.l-subscription-view .l-section--compare .l-compare-table .c-item-wrapper__title {
  margin-bottom: 8px;
}
.l-subscription-view .l-section--compare .l-compare-table .c-item-wrapper__text {
  color: #575757;
}
.l-subscription-view .l-section--compare .l-compare-table td:nth-of-type(1) .c-icon-wrapper {
  border-right: 1px dashed #d6d6d6;
  height: 100%;
}
.l-subscription-view .l-section--compare .l-compare-table .c-icon-wrapper {
  font-size: 1.5rem;
  padding: 16px;
}
.l-subscription-view .l-layout--plan {
  padding-top: 100px;
  padding-bottom: 100px;
  height: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.l-subscription-view .l-layout--plan::before, .l-subscription-view .l-layout--plan::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  width: 647px;
  height: 647px;
  opacity: 0.15;
  background: radial-gradient(50% 50% at 50% 50%, #8e51ff 10%, rgba(142, 81, 255, 0) 100%);
}
@media (max-width: 991.98px) {
  .l-subscription-view .l-layout--plan::before, .l-subscription-view .l-layout--plan::after {
    display: none;
  }
}
.l-subscription-view .l-layout--plan::before {
  top: 207px;
  left: -200px;
}
.l-subscription-view .l-layout--plan::after {
  top: 207px;
  right: -200px;
}
.l-subscription-view .l-layout--feature {
  padding-top: 100px;
  padding-bottom: 100px;
  height: auto;
}

.view-error .error-item {
  height: 70dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.view-article-item {
  padding-top: 0;
}
.view-article-item .l-article-item-page .l-section--banner {
  position: relative;
  padding-top: 87px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #fafafa 100%), linear-gradient(90deg, #00ffe4 0%, #e991ff 100%);
}
@media (max-width: 1399.98px) {
  .view-article-item .l-article-item-page .l-section--banner {
    padding-top: 118px;
  }
}
@media (max-width: 767.98px) {
  .view-article-item .l-article-item-page .l-section--banner {
    padding-top: 98px;
  }
}
.view-article-item .l-article-item-page .l-section--banner .c-star-deco {
  position: absolute;
}
@media (max-width: 1199.98px) {
  .view-article-item .l-article-item-page .l-section--banner .c-star-deco {
    display: none;
  }
}
.view-article-item .l-article-item-page .l-section--banner .c-star-deco--left {
  width: 108px;
  height: 99px;
  top: 187px;
  left: 0;
}
.view-article-item .l-article-item-page .l-section--banner .c-star-deco--right {
  width: 82px;
  height: 126px;
  top: 32px;
  right: 0;
}
.view-article-item .l-article-item-page .l-section--content .c-img-wrapper {
  background: linear-gradient(90deg, #00ffe4 0%, #e991ff 100%);
  padding: 16px;
  border-radius: 1.5rem;
}
.view-article-item .l-article-item-page .l-section--content .c-img-wrapper img {
  border-radius: 1.5rem;
}
.view-article-item .l-article-item-page .l-section--content h2 {
  margin-bottom: 8px;
}
@media (max-width: 991.98px) {
  .view-article-item .l-article-item-page .l-section--content h2 {
    font-size: 1.25rem;
  }
}
.view-article-item .l-article-item-page .l-section--content p {
  margin-bottom: 16px;
  color: #575757;
}
@media (max-width: 991.98px) {
  .view-article-item .l-article-item-page .l-section--content p {
    font-size: 1rem;
  }
}
.view-article-item .l-article-item-page .l-section--content .c-page-btn {
  padding: 16px 24px;
  background: #f3eefb;
  border-radius: 0.75rem;
}
.view-article-item .l-article-item-page .l-section--content .c-page-btn__icon {
  color: #9c62ef;
}
.view-article-item .l-article-item-page .l-section--content .c-page-btn__desc .c-desc-title {
  margin-bottom: 8px;
  color: #9c62ef;
}
.view-article-item .l-article-item-page .l-section--content .c-page-btn__desc .c-desc-text {
  color: #575757;
}
@media (max-width: 991.98px) {
  .view-article-item .l-article-item-page .l-section--content .c-page-btn__desc .c-desc-text {
    display: none;
  }
}

.view-article-list {
  padding-top: 0;
}
.view-article-list .l-article-list-page .l-section--banner {
  position: relative;
  padding-top: 87px;
  background: var(--main-background, linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #fafafa 100%), linear-gradient(90deg, #00ffe4 0%, #e991ff 100%));
}
@media (max-width: 1399.98px) {
  .view-article-list .l-article-list-page .l-section--banner {
    padding-top: 116px;
  }
}
@media (min-width: 992px) {
  .view-article-list .l-article-list-page .l-section--banner .u-title-star::before, .view-article-list .l-article-list-page .l-section--banner .u-title-star::after {
    display: none;
  }
}
.view-article-list .l-article-list-page .l-section--banner .c-star-deco {
  position: absolute;
}
@media (max-width: 991.98px) {
  .view-article-list .l-article-list-page .l-section--banner .c-star-deco {
    display: none;
  }
}
.view-article-list .l-article-list-page .l-section--banner .c-star-deco--left {
  width: 108px;
  height: 99px;
  top: 187px;
  left: 0;
}
.view-article-list .l-article-list-page .l-section--banner .c-star-deco--right {
  width: 82px;
  height: 126px;
  top: 32px;
  right: 0;
}
.view-article-list .l-article-list-page .l-section--banner .c-form-search__icon {
  pointer-events: none;
  text-align: right;
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
}
.view-article-list .l-article-list-page .l-section--banner .c-form-search__input {
  padding: 12px 48px 12px 20px;
}
@media (max-width: 991.98px) {
  .view-article-list .l-article-list-page .l-section--content {
    padding-top: 30px;
  }
}

.view-favorite-list .l-favorite-list-page .l-card {
  margin: 0 0 60px;
}
.view-favorite-list .l-favorite-list-page .l-card:not(:last-child) {
  margin: 0 0 12px;
}
.view-favorite-list .l-favorite-list-page .l-card.correct {
  background-color: rgba(162, 255, 243, 0.1);
}
.view-favorite-list .l-favorite-list-page .l-card.incorrect {
  background-color: rgba(255, 64, 154, 0.1);
}
.view-favorite-list .l-favorite-list-page .l-card__label {
  color: #575757;
  font-size: 14px;
  padding: 4px 12px;
}
.view-favorite-list .l-favorite-list-page .l-card__label:not(:last-child) {
  border-right: 1px solid #d6d6d6;
}
.view-favorite-list .l-favorite-list-page .l-card__collapse {
  background-color: #f3eefb;
  border-radius: 12px;
}

.view-home .l-home-view {
  overflow-x: hidden;
}
@media (max-width: 991.98px) {
  .view-home .l-home-view .btn {
    font-weight: 600;
  }
}
.view-home .l-home-view .js-fadeup {
  opacity: 0;
}
.view-home .l-home-view .l-section--system {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
  background: #fafafa;
}
@media (max-width: 1199.98px) {
  .view-home .l-home-view .l-section--system {
    padding-top: 60px;
    padding-bottom: 60px;
    height: auto;
  }
}
.view-home .l-home-view .l-section--system .c-deco-star {
  position: absolute;
  opacity: 0;
}
.view-home .l-home-view .l-section--system .c-deco-star--left {
  top: 105px;
  left: 30px;
  transform: rotate(30deg);
}
.view-home .l-home-view .l-section--system .c-deco-star--right {
  top: 41px;
  right: 56px;
}
.view-home .l-home-view .l-section--system .c-system-wrapper {
  padding-left: 86px;
  padding-right: 86px;
}
@media (max-width: 1399.98px) {
  .view-home .l-home-view .l-section--system .c-system-wrapper {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (max-width: 991.98px) {
  .view-home .l-home-view .l-section--system .c-system-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767.98px) {
  .view-home .l-home-view .l-section--system .c-system-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .view-home .l-home-view .l-section--system .l-swiper-system {
    overflow: visible;
  }
}
.view-home .l-home-view .l-section--system .l-swiper-system .swiper-slide {
  opacity: 0.6;
  transform: scale(0.98);
  transition: transform ease-out 0.5s;
  height: auto;
}
.view-home .l-home-view .l-section--system .l-swiper-system .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.view-home .l-home-view .l-section--system .l-swiper-system .swiper-pagination {
  top: 50%;
  pointer-events: none;
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item {
  padding-left: 52px;
  padding-right: 52px;
}
@media (max-width: 991.98px) {
  .view-home .l-home-view .l-section--system .c-system-list .c-list-item {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item__img {
  width: 58.7%;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 214, 172, 0.2) 0%, rgba(9, 209, 178, 0.2) 9%, rgba(36, 197, 195, 0.2) 24%, rgba(80, 178, 223, 0.2) 43%, rgba(128, 158, 255, 0.2) 61%, rgba(149, 98, 239, 0.2) 100%);
}
@media (max-width: 1199.98px) {
  .view-home .l-home-view .l-section--system .c-system-list .c-list-item__img {
    width: 100%;
  }
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item__img img {
  border-radius: 12px;
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item__desc {
  width: 38.7%;
  background: linear-gradient(180deg, rgba(0, 214, 172, 0.2) 0%, rgba(9, 209, 178, 0.2) 9%, rgba(36, 197, 195, 0.2) 24%, rgba(80, 178, 223, 0.2) 43%, rgba(128, 158, 255, 0.2) 61%, rgba(149, 98, 239, 0.2) 100%);
}
@media (max-width: 1199.98px) {
  .view-home .l-home-view .l-section--system .c-system-list .c-list-item__desc {
    width: 100%;
  }
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item__desc .c-desc-title__number {
  background: linear-gradient(90deg, #00bba7 0%, #8e51ff 100%);
  width: 48px;
  height: 48px;
  display: inline-block;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item__desc .c-desc-title__text {
  background: linear-gradient(90deg, #00bba7 0%, #8e51ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item__desc .c-desc-list {
  list-style-type: disc;
  padding-left: 1.5rem;
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--green .c-list-item__img {
  background: linear-gradient(180deg, rgba(0, 214, 172, 0.2) 0%, rgba(9, 209, 178, 0.2) 9%, rgba(36, 197, 195, 0.2) 24%, rgba(80, 178, 223, 0.2) 43%, rgba(128, 158, 255, 0.2) 61%, rgba(149, 98, 239, 0.2) 100%);
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--green .c-list-item__desc {
  background: linear-gradient(180deg, rgba(0, 214, 172, 0.2) 0%, rgba(9, 209, 178, 0.2) 9%, rgba(36, 197, 195, 0.2) 24%, rgba(80, 178, 223, 0.2) 43%, rgba(128, 158, 255, 0.2) 61%, rgba(149, 98, 239, 0.2) 100%);
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--green .c-desc-title__number {
  background: linear-gradient(90deg, #00bba7 0%, #8e51ff 100%);
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--green .c-desc-title__text,
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--green .c-desc-title__p {
  background: linear-gradient(90deg, #00bba7 0%, #8e51ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--pink .c-list-item__img {
  background: linear-gradient(135deg, rgba(152, 16, 250, 0.2) 0%, rgba(246, 51, 154, 0.2) 100%);
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--pink .c-list-item__desc {
  background: linear-gradient(135deg, rgba(152, 16, 250, 0.2) 0%, rgba(246, 51, 154, 0.2) 100%);
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--pink .c-desc-title__number {
  background: linear-gradient(135deg, #9810fa 0%, #f6339a 100%);
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--pink .c-desc-title__text,
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--pink .c-desc-title__p {
  background: linear-gradient(135deg, #9810fa 0%, #f6339a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--blue .c-list-item__img {
  background: linear-gradient(135deg, rgba(0, 187, 167, 0.2) 0%, rgba(0, 98, 255, 0.2) 100%);
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--blue .c-list-item__desc {
  background: linear-gradient(135deg, rgba(0, 187, 167, 0.2) 0%, rgba(0, 98, 255, 0.2) 100%);
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--blue .c-desc-title__number {
  background: linear-gradient(135deg, #00bba7 0%, #0062ff 100%);
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--blue .c-desc-title__text,
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--blue .c-desc-title__p {
  background: linear-gradient(135deg, #00bba7 0%, #0062ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--purple .c-list-item__img {
  background: linear-gradient(180deg, rgba(173, 70, 255, 0.2) 0%, rgba(89, 0, 255, 0.2) 100%);
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--purple .c-list-item__desc {
  background: linear-gradient(180deg, rgba(173, 70, 255, 0.2) 0%, rgba(89, 0, 255, 0.2) 100%);
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--purple .c-desc-title__number {
  background: linear-gradient(90deg, #8e51ff 0%, #ad46ff 100%);
}
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--purple .c-desc-title__text,
.view-home .l-home-view .l-section--system .c-system-list .c-list-item.c-list-item--purple .c-desc-title__p {
  background: linear-gradient(90deg, #8e51ff 0%, #ad46ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.view-home .l-home-view .l-section--mode {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
  background: linear-gradient(180deg, rgba(0, 214, 172, 0.2) 0%, rgba(9, 209, 178, 0.2) 9%, rgba(36, 197, 195, 0.2) 24%, rgba(80, 178, 223, 0.2) 43%, rgba(128, 158, 255, 0.2) 61%, rgba(149, 98, 239, 0.2) 100%), #fafafa;
}
@media (max-width: 1199.98px) {
  .view-home .l-home-view .l-section--mode {
    padding-top: 60px;
    padding-bottom: 60px;
    height: auto;
  }
}
.view-home .l-home-view .l-section--mode .c-deco-star {
  position: absolute;
  transform: rotate(-8deg);
  object-fit: cover;
  opacity: 0;
}
.view-home .l-home-view .l-section--mode .c-deco-star--left {
  width: 150px;
  height: 190px;
  top: 102px;
  left: 0;
  object-position: right;
}
@media (max-width: 991.98px) {
  .view-home .l-home-view .l-section--mode .c-deco-star--left {
    top: 102px;
  }
}
.view-home .l-home-view .l-section--mode .c-deco-star--right {
  width: 180px;
  height: 353px;
  right: -20px;
  top: 284px;
  object-position: left;
}
.view-home .l-home-view .l-section--mode .l-card {
  padding: 20px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .view-home .l-home-view .l-section--mode .l-card {
    padding: 24px;
  }
}
.view-home .l-home-view .l-section--mode .l-card__list {
  list-style-type: disc;
}
.view-home .l-home-view .l-section--choose {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
}
@media (max-width: 1199.98px) {
  .view-home .l-home-view .l-section--choose {
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.view-home .l-home-view .l-section--choose .c-deco-star {
  position: absolute;
  opacity: 0;
}
.view-home .l-home-view .l-section--choose .c-deco-star--top-left {
  width: 100px;
  height: 209px;
  left: -10px;
  top: 56px;
  transform: rotate(-8deg);
  object-position: right;
  object-fit: cover;
}
.view-home .l-home-view .l-section--choose .c-deco-star--top-right {
  width: 148px;
  height: 148px;
  right: -10px;
  top: 8px;
  transform: rotate(-8deg);
}
.view-home .l-home-view .l-section--choose .c-deco-star--bottom-right {
  width: 120px;
  height: 255px;
  right: -10px;
  bottom: 106px;
  transform: rotate(-8deg);
  object-position: left;
  object-fit: cover;
}
.view-home .l-home-view .l-section--choose .l-choose-table {
  --bs-body-bg: $white;
  border-collapse: separate;
  border-spacing: 24px 0px;
}
.view-home .l-home-view .l-section--choose .l-choose-table th,
.view-home .l-home-view .l-section--choose .l-choose-table td {
  padding: 16px;
  text-align: center;
  vertical-align: middle;
  border: none;
}
.view-home .l-home-view .l-section--choose .l-choose-table thead th:nth-child(1),
.view-home .l-home-view .l-section--choose .l-choose-table tbody th {
  padding-left: 0;
  padding-right: 0;
  background: linear-gradient(90deg, #8e51ff 0%, #ad46ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  border-bottom: 1px dashed #a6a6a6;
}
.view-home .l-home-view .l-section--choose .l-choose-table thead th:nth-child(2) {
  background: linear-gradient(90deg, #00bba7 0%, #8e51ff 100%);
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.view-home .l-home-view .l-section--choose .l-choose-table thead th:nth-of-type(3) {
  color: #a6a6a6;
  border-bottom: 1px dashed #a6a6a6;
}
.view-home .l-home-view .l-section--choose .l-choose-table tbody td:nth-of-type(1) {
  background: linear-gradient(90deg, #00bba7 0%, #8e51ff 100%);
}
.view-home .l-home-view .l-section--choose .l-choose-table tbody td:nth-of-type(2) {
  border-bottom: 1px dashed #a6a6a6;
}
.view-home .l-home-view .l-section--choose .l-choose-table tbody tr:last-child td:nth-of-type(1) {
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}
.view-home .l-home-view .l-section--choose .l-choose-table .c-feature-wrapper {
  min-height: 140px;
  text-align: left;
  background: #fff;
  border-radius: 0.75rem;
  padding: 16px;
  position: relative;
}
.view-home .l-home-view .l-section--choose .l-choose-table .c-feature-wrapper::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -24px;
  width: 60px;
  height: 45px;
  background-image: url(../../images/front/deco/crown.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.view-home .l-home-view .l-section--choose .l-choose-table .c-feature-wrapper__title {
  margin-bottom: 8px;
  background: linear-gradient(90deg, #00bba7 0%, #8e51ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: flex;
  align-items: start;
}
.view-home .l-home-view .l-section--choose .l-choose-table .c-feature-wrapper__title i {
  margin-right: 8px;
  margin-top: 4px;
}
.view-home .l-home-view .l-section--choose .l-choose-table .c-feature-wrapper__text {
  color: #575757;
}
.view-home .l-home-view .l-section--choose .l-choose-table .c-other-wrapper {
  min-height: 140px;
  text-align: left;
}
.view-home .l-home-view .l-section--choose .l-choose-table .c-other-wrapper__title {
  margin-bottom: 8px;
  color: #a6a6a6;
}
.view-home .l-home-view .l-section--choose .l-choose-table .c-other-wrapper__text {
  color: #a6a6a6;
}
.view-home .l-home-view .l-section--choose .l-choose-table--mobile {
  border-radius: 0.75rem;
  border-spacing: 12px;
  background: #fff;
}
.view-home .l-home-view .l-section--choose .l-choose-table--mobile tbody td:nth-of-type(1) {
  background: none;
}
.view-home .l-home-view .l-section--choose .l-choose-table--mobile td {
  padding: 0;
}
.view-home .l-home-view .l-section--choose .l-choose-table--mobile thead th:nth-child(1) {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: none;
}
.view-home .l-home-view .l-section--choose .l-choose-table--mobile thead th:nth-child(1) img {
  max-width: 209px;
}
.view-home .l-home-view .l-section--choose .l-choose-table--mobile .c-feature-wrapper {
  min-height: auto;
  padding: 20px;
  background: #fafafa;
}
.view-home .l-home-view .l-section--choose .l-choose-table--mobile .c-feature-wrapper__title {
  font-size: 1.375rem;
}
.view-home .l-home-view .l-section--choose .l-choose-table--mobile .c-feature-wrapper__text {
  font-size: 1rem;
}
.view-home .l-home-view .l-section--choose .l-table-wrapper {
  position: relative;
  background: linear-gradient(90deg, #00bba7 0%, #8e51ff 100%);
  padding: 2px;
  border-radius: 0.75rem;
}
.view-home .l-home-view .l-layout--plan {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .view-home .l-home-view .l-layout--plan {
    padding: 110px 0;
    position: relative;
  }
}
.view-home .l-home-view .l-layout--plan .c-deco-wrapper {
  position: absolute;
}
@media (min-width: 992px) {
  .view-home .l-home-view .l-layout--plan .c-deco-wrapper {
    top: 110px;
    left: 0;
  }
}
.view-home .l-home-view .l-slogan .c-banner-wrapper__text {
  margin: 0 0 60px;
}
.view-home .l-home-view .l-section--comment {
  background: #f3eefb;
}
@media (min-width: 992px) {
  .view-home .l-home-view .l-section--comment .l-swiper-comment {
    overflow: visible;
  }
}
.view-home .l-home-view .l-section--comment .l-swiper-comment .swiper-slide {
  opacity: 0.6;
  height: auto;
}
@media (min-width: 992px) {
  .view-home .l-home-view .l-section--comment .l-swiper-comment .swiper-slide {
    padding: 0 64px;
  }
}
.view-home .l-home-view .l-section--comment .l-swiper-comment .swiper-slide-active {
  opacity: 1;
}
.view-home .l-home-view .l-section--comment .l-swiper-comment .l-swiper-button--prev {
  top: 40%;
  left: 12px;
}
.view-home .l-home-view .l-section--comment .l-swiper-comment .l-swiper-button--next {
  top: 40%;
  right: 12px;
}
.view-home .l-home-view .l-section--comment .c-card {
  position: relative;
  z-index: 0;
}
.view-home .l-home-view .l-section--comment .c-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-image: url(../../images/front/deco/quote.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 112px;
  height: 80px;
  top: 54px;
  left: 16px;
}
.view-home .l-home-view .l-section--comment .swiper-pagination {
  bottom: 0;
}
.view-home .l-home-view .l-section--question {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #fafafa 100%), linear-gradient(90deg, #00ffe4 0%, #e991ff 100%);
}
@media (min-width: 768px) {
  .view-home .l-home-view .l-section--question .swiper-slide {
    height: auto;
  }
}
.view-home .l-home-view .l-section--question .c-deco-star {
  position: absolute;
  opacity: 0;
}
.view-home .l-home-view .l-section--question .c-deco-star--left {
  width: 200px;
  height: 265px;
  left: -10px;
  top: 18px;
  transform: rotate(-8deg);
  object-position: right;
  object-fit: cover;
}
.view-home .l-home-view .l-section--question .c-deco-star--right {
  width: 200px;
  height: 353px;
  right: -10px;
  bottom: 33px;
  transform: rotate(-8deg);
  object-position: left;
  object-fit: cover;
}
.view-home .l-home-view .l-section--question .c-question-wrapper {
  padding-left: 84px;
  padding-right: 84px;
}
@media (max-width: 991.98px) {
  .view-home .l-home-view .l-section--question .c-question-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.view-home .l-home-view .l-section--question .c-card-img {
  border-radius: 6px;
  overflow: hidden;
}
.view-home .l-home-view .l-section--question .c-card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.view-home .l-home-view .l-section--question .c-card-tag {
  padding: 6px 12px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(90deg, #00bba7 0%, #8e51ff 100%);
}
.view-home .l-home-view .l-section--question .c-card-subtitle {
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}
@media (max-width: 991.98px) {
  .view-home .l-home-view .l-section--question .c-card-subtitle {
    font-size: 0.875rem;
  }
}
.view-home .l-home-view .l-section--question .c-card-subtitle .c-icon-wrapper {
  font-size: 0.75rem;
  vertical-align: middle;
  margin-bottom: 0.4em;
  margin-right: 4px;
}
.view-home .l-home-view .l-section--question .c-card-subtitle .c-icon-wrapper i {
  color: #e2d0ff;
  margin-bottom: 0.7em;
}
@media (max-width: 991.98px) {
  .view-home .l-home-view .l-section--question .c-card-subtitle .c-icon-wrapper {
    margin-right: 4px;
  }
}
.view-home .l-home-view .l-section--rank {
  position: relative;
}
.view-home .l-home-view .l-section--rank .c-deco-star {
  position: absolute;
  opacity: 0;
}
.view-home .l-home-view .l-section--rank .c-deco-star--left {
  width: 120px;
  height: 164px;
  left: -10px;
  top: 56px;
  transform: rotate(-8deg);
  object-position: right;
  object-fit: cover;
}
@media (min-width: 992px) {
  .view-home .l-home-view .l-section--rank .l-swiper-rank {
    overflow: visible;
  }
}
.view-home .l-home-view .l-section--rank .l-swiper-rank .swiper-slide {
  opacity: 0.6;
  height: auto;
}
.view-home .l-home-view .l-section--rank .l-swiper-rank .swiper-slide-active {
  opacity: 1;
}
.view-home .l-home-view .l-section--rank .c-card {
  height: 100%;
  box-shadow: 0 6px 32px 0 rgba(0, 0, 0, 0.08);
}
.view-home .l-home-view .l-section--rank .c-card .card-body {
  background: #f3eefb;
  border-radius: 0.75rem;
  position: relative;
}
.view-home .l-home-view .l-section--rank .c-card .card-body::before {
  content: "";
  background-image: url(../../images/front/home/rank-dialog-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 24px;
  top: -28px;
  width: 28px;
  height: 31px;
}
.view-home .l-home-view .l-section--rank .c-card .c-card-img-wrapper {
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(90deg, #00bba7 0%, #8e51ff 100%);
  width: 80px;
}
.view-home .l-home-view .l-section--rank .c-card .c-card-img-wrapper img {
  border-radius: 50%;
}
.view-home .l-home-view .l-section--rank .l-swiper-button--prev {
  top: 44%;
  left: 20px;
}
@media (min-width: 1600px) {
  .view-home .l-home-view .l-section--rank .l-swiper-button--prev {
    left: 0;
  }
}
.view-home .l-home-view .l-section--rank .l-swiper-button--next {
  top: 44%;
  right: 20px;
}
@media (min-width: 1600px) {
  .view-home .l-home-view .l-section--rank .l-swiper-button--next {
    right: 0;
  }
}
@media (min-width: 992px) {
  .view-home .l-home-view .l-section--activity .l-swiper-activity {
    overflow: visible;
  }
}
.view-home .l-home-view .l-section--activity .l-swiper-activity .swiper-slide {
  opacity: 0.6;
}
.view-home .l-home-view .l-section--activity .l-swiper-activity .swiper-slide-active {
  opacity: 1;
}
.view-home .l-home-view .l-section--activity .c-img-wrapper {
  background: linear-gradient(180deg, rgba(0, 214, 172, 0.2) 0%, rgba(9, 209, 178, 0.2) 9%, rgba(36, 197, 195, 0.2) 24%, rgba(80, 178, 223, 0.2) 43%, rgba(128, 158, 255, 0.2) 61%, rgba(149, 98, 239, 0.2) 100%);
  padding: 16px;
  border-radius: 0.75rem;
}
.view-home .l-home-view .l-section--activity .c-img-wrapper img {
  border-radius: 0.75rem;
}
.view-home .l-home-view .l-section--activity .l-swiper-button--prev {
  top: 40%;
  left: 20px;
}
.view-home .l-home-view .l-section--activity .l-swiper-button--next {
  top: 40%;
  right: 20px;
}
.view-home .l-home-view .l-swiper-button {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: none;
}
.view-home .l-home-view .swiper-pagination .swiper-pagination-bullet-active {
  width: 64px;
  border-radius: 8px;
  background: linear-gradient(90deg, #00bba7 0%, #8e51ff 100%);
}

.view-profile-edit .l-profile-page__btn {
  width: 120px;
}
@media (min-width: 768px) {
  .view-profile-edit .l-profile-page__btn {
    width: 200px;
  }
}

.view-profile-portal .l-profile-portal-page__to-edit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #ebebeb;
  color: #575757;
}
.view-profile-portal .l-profile-portal-page__to-edit:hover {
  background-color: #f3eefb;
  color: #7226fd;
}
.view-profile-portal .l-profile-portal-page__text {
  font-size: 14px;
  color: #a6a6a6;
}
.view-profile-portal .l-profile-portal-page__canceled {
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 8px;
  color: #FF409A;
  background-color: #FFECF5;
}
.view-profile-portal .l-profile-portal-page .l-transaction-card__title {
  color: #7226fd;
}
.view-profile-portal .l-profile-portal-page .l-transaction-card__label {
  color: #575757;
}
.view-profile-portal .l-profile-portal-page .l-transaction-card__success {
  color: #00bba7;
}
.view-profile-portal .l-profile-portal-page .l-transaction-card__failed {
  color: #ff409a;
}
.view-profile-portal .l-profile-portal-page #cancel-modal {
  --bs-modal-border-width: 0;
  --bs-modal-bg: #fff;
}
@media (min-width: 768px) {
  .view-profile-portal .l-profile-portal-page #cancel-modal {
    --bs-modal-width: 700px;
  }
}
.view-profile-portal .l-profile-portal-page #cancel-modal .l-icon {
  padding: 12px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f3eefb;
  font-size: 28px;
}

.view-subscription .l-subscription-plan-list__discount {
  color: #ff409a;
}
.view-subscription .l-subscription-checkout__label {
  min-width: 115px;
  width: 115px;
  color: #575757;
}
.view-subscription .l-subscription-checkout input {
  --bs-body-bg: #fff;
}
.view-subscription .l-subscription-checkout__btn {
  width: 150px;
}
@media (min-width: 768px) {
  .view-subscription .l-subscription-checkout__btn {
    width: 200px;
  }
}
.view-subscription .l-subscription-checkout__check {
  color: #575757;
}
.view-subscription .l-subscription-checkout__terms {
  color: #575757;
  padding-left: 45px;
}
.view-subscription .l-feature-section {
  min-height: auto;
}
@media (min-width: 1400px) {
  .view-subscription .l-feature-section__container {
    max-width: 1076px;
  }
}
@media (min-width: 1600px) {
  .view-subscription .l-feature-section__container {
    max-width: 1320px;
  }
}

.view-test-item-summary .l-test-summary-page {
  min-height: 100vh;
}
.view-test-item-summary .l-test-summary-page__bg-left {
  position: absolute;
  top: 300px;
  left: 0;
}
.view-test-item-summary .l-test-summary-page__bg-right {
  position: absolute;
  top: 400px;
  right: 0;
}
.view-test-item-summary .l-test-summary-page__content {
  padding: 40px 0 0;
}
@media (min-width: 992px) {
  .view-test-item-summary .l-test-summary-page__content {
    padding: 140px 0 0;
  }
}
.view-test-item-summary .l-test-summary-page__label {
  color: #575757;
  font-size: 14px;
  padding: 4px 12px;
}
.view-test-item-summary .l-test-summary-page__label:not(:last-child) {
  border-right: 1px solid #d6d6d6;
}
.view-test-item-summary .l-test-summary-page__collapse {
  background-color: #f3eefb;
  border-radius: 12px;
}
.view-test-item-summary .l-test-summary-page__result {
  --bs-gutter-x: 80px;
}
.view-test-item-summary .l-test-summary-page__accuracy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.view-test-item-summary .l-test-summary-page__comment {
  background-color: #f7f7f7;
  border-radius: 12px;
}
@media (min-width: 576px) {
  .view-test-item-summary .l-test-summary-page__comment {
    max-width: 280px;
  }
}
@media (min-width: 768px) {
  .view-test-item-summary .l-test-summary-page__comment {
    max-width: 370px;
  }
}
.view-test-item-summary .l-test-summary-page .l-recommend {
  position: relative;
}
.view-test-item-summary .l-test-summary-page .l-recommend:after {
  content: "";
  width: calc(100% - 48px);
  border-bottom: 1px solid #ebebeb;
  height: 1px;
  position: absolute;
  top: -40px;
  left: 24px;
}
@media (min-width: 992px) {
  .view-test-item-summary .l-test-summary-page .l-recommend:after {
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    border-bottom: none;
    border-right: 1px solid #ebebeb;
  }
}
.view-test-item-summary .l-test-summary-page .l-recommend__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  min-width: 40px;
  height: 40px;
}
.view-test-item-summary .l-test-summary-page .l-recommend__content {
  background-color: #f3eefb;
  padding: 12px 20px;
  border-radius: 12px;
}
.view-test-item-summary .l-test-summary-page .l-recommend__btn {
  min-width: 100px;
  font-size: 14px;
  margin: 32px 0 0;
}
@media (min-width: 1400px) {
  .view-test-item-summary .l-test-summary-page .l-recommend__btn {
    margin: 0 0 0 32px;
  }
}
.view-test-item-summary .l-test-summary-page .l-item {
  background-color: #f7f7f7;
  border-radius: 12px;
}
.view-test-item-summary .l-test-summary-page .l-item:not(:last-child) {
  margin-bottom: 12px;
}
.view-test-item-summary .l-test-summary-page .l-item__correct {
  min-width: 20px;
  background: linear-gradient(90deg, #00BBA7 0%, #8E51FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.view-test-item-summary .l-test-summary-page .l-item__incorrect {
  min-width: 20px;
  color: #ff409a;
}
.view-test-item-summary .l-test-summary-page .l-item__title {
  display: -webkit-box;
  -webkit-line-clamp: 1; /* 顯示 3 行，多餘省略 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.view-test-item-summary .l-test-summary-page .l-item__btn {
  min-width: 72px;
}
.view-test-item-summary .l-test-summary-page .infinite-scroll-wrapper {
  max-height: 400px;
  overflow: scroll;
}

.view-test-item {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #f7f7f7;
  position: relative;
}
.view-test-item .l-test-item-page {
  min-height: 100vh;
}
.view-test-item .l-test-item-page__bg-left {
  position: absolute;
  top: 300px;
  left: 0;
}
.view-test-item .l-test-item-page__bg-right {
  position: absolute;
  top: 400px;
  right: 0;
}
.view-test-item .l-test-item-page__progress {
  color: #a6a6a6;
}
.view-test-item .l-test-item-page__progress .progress {
  --bs-progress-height: 20px;
  --bs-progress-bg: #ebebeb;
  border: 4px solid #ebebeb;
}
.view-test-item .l-test-item-page__progress .progress-bar {
  background: linear-gradient(90deg, #00BBA7 0%, #8E51FF 100%);
}
.view-test-item .l-test-item-page__content {
  padding: 40px 0 0;
}
@media (min-width: 992px) {
  .view-test-item .l-test-item-page__content {
    padding: 140px 0 0;
  }
}
.view-test-item .l-test-item-page__actions {
  padding-bottom: 108px;
}
@media (min-width: 992px) {
  .view-test-item .l-test-item-page__actions {
    padding-bottom: 168px;
  }
}
.view-test-item .l-member-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 0;
  background-color: #fff;
  color: #575757;
}
@media (min-width: 992px) {
  .view-test-item .l-member-footer {
    bottom: 40px;
    background-color: #f7f7f7;
  }
}
.view-test-item .l-member-footer__container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .view-test-item .l-member-footer__container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .view-test-item .l-member-footer__container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .view-test-item .l-member-footer__container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .view-test-item .l-member-footer__container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .view-test-item .l-member-footer__container {
    max-width: 1320px;
  }
}
.view-test-item .l-member-footer__link {
  padding: 0;
  color: #575757;
  border-radius: 0;
  font-size: 14px;
}

.view-test-list .l-test-list-page .l-test-list__total {
  color: #a6a6a6;
}

.view-transaction-item .l-transaction-item__label {
  min-width: 65px;
  width: 65px;
  color: #575757;
}
.view-transaction-item .l-transaction-item__list {
  font-size: 14px;
  color: #a6a6a6;
}
@media (min-width: 768px) {
  .view-transaction-item .l-transaction-item__back {
    width: 200px;
  }
}