@charset "UTF-8";
/*----------------------------------------------------------
    File Name  : main.scss
    Desc       : File ini merupakan file utama yang akan dicompile
                 berisikan beberapa @use/@import secara modularisasi   

------------------------------------------------------------*/
/**
 * TABLE OF CONTENTS
 *
 * 1. Configuration And Helpers
 * 2. Vendors
 * 3. Base Configuration
 * 4. Layout
 * 5. Components
 *
 */
/*----------------------------------------------------------
    File Name  : _variables.scss
    Desc       : File ini merupakan file untuk membuat variable CSS 
                 yang nanti akan digunakan secara berulang-ulang

------------------------------------------------------------*/
/**
 * TABLE OF CONTENTS
 *
 * 1. Font Family
 * 2. Color Text
 * 3. Color Background
 * 4. Media Query
 *
 */
/*----------------------------------------------------------
1. Font Family Start
------------------------------------------------------------*/
/*----------------------------------------------------------
1. Font Family End
------------------------------------------------------------*/
/*----------------------------------------------------------
2. Color text Start
------------------------------------------------------------*/
/*----------------------------------------------------------
2. Color Text End
------------------------------------------------------------*/
/*----------------------------------------------------------
3. Color background Start
------------------------------------------------------------*/
/*----------------------------------------------------------
3. Color background End
------------------------------------------------------------*/
/*----------------------------------------------------------
4. Additional Color
------------------------------------------------------------*/
/*----------------------------------------------------------
4. Additional Color
------------------------------------------------------------*/
/*----------------------------------------------------------
5. Breakpoints Start
------------------------------------------------------------*/
/*----------------------------------------------------------
4. Breakpoints End
------------------------------------------------------------*/
/*----------------------------------------------------------
    File Name  : _mixin.scss
    Desc       : File ini merupakan file untuk membuat mixin / gabungan bebebrapa property
                 nanti akan digunakan secara berulang di file lain
                 Mixin sama seperti function di bahasa pemrogranan

    Cara Pakai : Panggil directory ini dengan @use '../abstracts/mixins' as mix
                 di file yang akan menggunakan mixins
                 @include mix.sm {...property}


------------------------------------------------------------*/
/**
 * TABLE OF CONTENTS
 *
 * 1. Layouting
 * 2. Breakpoints
 * 3. Animation
 *
 */
/*----------------------------------------------------------
1. Layouting Start
------------------------------------------------------------*/
/*----------------------------------------------------------
1. Layouting End
------------------------------------------------------------*/
/*----------------------------------------------------------
2. Breakpoints Start
------------------------------------------------------------*/
/*----------------------------------------------------------
//  Untuk Media Query Min Width untuk mengubah suatu
// ukuran tertentu dan seterusnya sampai ukuran terbesar
------------------------------------------------------------*/
/*----------------------------------------------------------
//  Untuk Media Query Max Width untuk mengubah suatu
// ukuran tertentu dan seterusnya sampai ukuran terkecil
------------------------------------------------------------*/
/*----------------------------------------------------------
2. Breakpoints End
------------------------------------------------------------*/
/*----------------------------------------------------------
3. Animation Start
------------------------------------------------------------*/
/*----------------------------------------------------------
3. Animation End
------------------------------------------------------------*/
/*!
 * Bootstrap v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

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

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

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

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

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

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

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container-xs, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container-xs, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container-xs, .container {
    max-width: 960px;
  }
}
@media (min-width: 1024px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container-xs, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1200px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container-xs, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

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

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

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

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 375px) {
  .col-xs {
    flex: 1 0 0%;
  }
  .row-cols-xs-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xs-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xs-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xs-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xs-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xs-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xs-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xs-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xs-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xs-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xs-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xs-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xs-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xs-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xs-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xs-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xs-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xs-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xs-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xs-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xs-0 {
    margin-left: 0;
  }
  .offset-xs-1 {
    margin-left: 8.33333333%;
  }
  .offset-xs-2 {
    margin-left: 16.66666667%;
  }
  .offset-xs-3 {
    margin-left: 25%;
  }
  .offset-xs-4 {
    margin-left: 33.33333333%;
  }
  .offset-xs-5 {
    margin-left: 41.66666667%;
  }
  .offset-xs-6 {
    margin-left: 50%;
  }
  .offset-xs-7 {
    margin-left: 58.33333333%;
  }
  .offset-xs-8 {
    margin-left: 66.66666667%;
  }
  .offset-xs-9 {
    margin-left: 75%;
  }
  .offset-xs-10 {
    margin-left: 83.33333333%;
  }
  .offset-xs-11 {
    margin-left: 91.66666667%;
  }
  .g-xs-0,
  .gx-xs-0 {
    --bs-gutter-x: 0;
  }
  .g-xs-0,
  .gy-xs-0 {
    --bs-gutter-y: 0;
  }
  .g-xs-1,
  .gx-xs-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xs-1,
  .gy-xs-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xs-2,
  .gx-xs-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xs-2,
  .gy-xs-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xs-3,
  .gx-xs-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xs-3,
  .gy-xs-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xs-4,
  .gx-xs-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xs-4,
  .gy-xs-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xs-5,
  .gx-xs-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xs-5,
  .gy-xs-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1024px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl2 {
    flex: 1 0 0%;
  }
  .row-cols-xxl2-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl2-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl2-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl2-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl2-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl2-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl2-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl2-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl2-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl2-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl2-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl2-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl2-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl2-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl2-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl2-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl2-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl2-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl2-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl2-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl2-0 {
    margin-left: 0;
  }
  .offset-xxl2-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl2-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl2-3 {
    margin-left: 25%;
  }
  .offset-xxl2-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl2-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl2-6 {
    margin-left: 50%;
  }
  .offset-xxl2-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl2-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl2-9 {
    margin-left: 75%;
  }
  .offset-xxl2-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl2-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl2-0,
  .gx-xxl2-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl2-0,
  .gy-xxl2-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl2-1,
  .gx-xxl2-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl2-1,
  .gy-xxl2-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl2-2,
  .gx-xxl2-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl2-2,
  .gy-xxl2-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl2-3,
  .gx-xxl2-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl2-3,
  .gy-xxl2-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl2-4,
  .gx-xxl2-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl2-4,
  .gy-xxl2-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl2-5,
  .gx-xxl2-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl2-5,
  .gy-xxl2-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table > :not(:first-child) {
  border-top: 2px solid currentColor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-bg: rgb(206.6, 226, 254.6);
  --bs-table-striped-bg: rgb(196.27, 214.7, 241.87);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(185.94, 203.4, 229.14);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(191.105, 209.05, 235.505);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(185.94, 203.4, 229.14);
}

.table-secondary {
  --bs-table-bg: rgb(225.6, 227.4, 229);
  --bs-table-striped-bg: rgb(214.32, 216.03, 217.55);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(203.04, 204.66, 206.1);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(208.68, 210.345, 211.825);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(203.04, 204.66, 206.1);
}

.table-success {
  --bs-table-bg: rgb(209, 231, 220.8);
  --bs-table-striped-bg: rgb(198.55, 219.45, 209.76);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(188.1, 207.9, 198.72);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(193.325, 213.675, 204.24);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(188.1, 207.9, 198.72);
}

.table-info {
  --bs-table-bg: rgb(206.6, 244.4, 252);
  --bs-table-striped-bg: rgb(196.27, 232.18, 239.4);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(185.94, 219.96, 226.8);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(191.105, 226.07, 233.1);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(185.94, 219.96, 226.8);
}

.table-warning {
  --bs-table-bg: rgb(255, 242.6, 205.4);
  --bs-table-striped-bg: rgb(242.25, 230.47, 195.13);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(229.5, 218.34, 184.86);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(235.875, 224.405, 189.995);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(229.5, 218.34, 184.86);
}

.table-danger {
  --bs-table-bg: rgb(248, 214.6, 217.8);
  --bs-table-striped-bg: rgb(235.6, 203.87, 206.91);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(223.2, 193.14, 196.02);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(229.4, 198.505, 201.465);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(223.2, 193.14, 196.02);
}

.table-light {
  --bs-table-bg: #f8f9fa;
  --bs-table-striped-bg: rgb(235.6, 236.55, 237.5);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(223.2, 224.1, 225);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(229.4, 230.325, 231.25);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(223.2, 224.1, 225);
}

.table-dark {
  --bs-table-bg: #212529;
  --bs-table-striped-bg: rgb(44.1, 47.9, 51.7);
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: rgb(55.2, 58.8, 62.4);
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: rgb(49.65, 53.35, 57.05);
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: rgb(55.2, 58.8, 62.4);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 374.98px) {
  .table-responsive-xs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1023.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl2 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: rgb(221.35, 224.2, 227.05);
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: rgb(221.35, 224.2, 227.05);
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: rgb(182.4, 211.5, 254.4);
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: rgb(182.4, 211.5, 254.4);
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
}
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-primary:hover {
  color: #fff;
  background-color: rgb(11.05, 93.5, 215.05);
  border-color: rgb(10.4, 88, 202.4);
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #fff;
  background-color: rgb(11.05, 93.5, 215.05);
  border-color: rgb(10.4, 88, 202.4);
  box-shadow: 0 0 0 0.25rem rgba(49.3, 131.75, 253.3, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgb(10.4, 88, 202.4);
  border-color: rgb(9.75, 82.5, 189.75);
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(49.3, 131.75, 253.3, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: rgb(91.8, 99.45, 106.25);
  border-color: rgb(86.4, 93.6, 100);
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #fff;
  background-color: rgb(91.8, 99.45, 106.25);
  border-color: rgb(86.4, 93.6, 100);
  box-shadow: 0 0 0 0.25rem rgba(130.05, 137.7, 144.5, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: rgb(86.4, 93.6, 100);
  border-color: rgb(81, 87.75, 93.75);
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(130.05, 137.7, 144.5, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-success:hover {
  color: #fff;
  background-color: rgb(21.25, 114.75, 71.4);
  border-color: rgb(20, 108, 67.2);
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #fff;
  background-color: rgb(21.25, 114.75, 71.4);
  border-color: rgb(20, 108, 67.2);
  box-shadow: 0 0 0 0.25rem rgba(59.5, 153, 109.65, 0.5);
}
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(20, 108, 67.2);
  border-color: rgb(18.75, 101.25, 63);
}
.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(59.5, 153, 109.65, 0.5);
}
.btn-success:disabled, .btn-success.disabled {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

.btn-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-info:hover {
  color: #000;
  background-color: rgb(49.3, 209.95, 242.25);
  border-color: rgb(37.2, 207.3, 241.5);
}
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #000;
  background-color: rgb(49.3, 209.95, 242.25);
  border-color: rgb(37.2, 207.3, 241.5);
  box-shadow: 0 0 0 0.25rem rgba(11.05, 171.7, 204, 0.5);
}
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  color: #000;
  background-color: rgb(61.4, 212.6, 243);
  border-color: rgb(37.2, 207.3, 241.5);
}
.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(11.05, 171.7, 204, 0.5);
}
.btn-info:disabled, .btn-info.disabled {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #000;
  background-color: rgb(255, 202.3, 44.2);
  border-color: rgb(255, 199.2, 31.8);
}
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #000;
  background-color: rgb(255, 202.3, 44.2);
  border-color: rgb(255, 199.2, 31.8);
  box-shadow: 0 0 0 0.25rem rgba(216.75, 164.05, 5.95, 0.5);
}
.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  color: #000;
  background-color: rgb(255, 205.4, 56.6);
  border-color: rgb(255, 199.2, 31.8);
}
.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(216.75, 164.05, 5.95, 0.5);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: rgb(187, 45.05, 58.65);
  border-color: rgb(176, 42.4, 55.2);
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #fff;
  background-color: rgb(187, 45.05, 58.65);
  border-color: rgb(176, 42.4, 55.2);
  box-shadow: 0 0 0 0.25rem rgba(225.25, 83.3, 96.9, 0.5);
}
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(176, 42.4, 55.2);
  border-color: rgb(165, 39.75, 51.75);
}
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(225.25, 83.3, 96.9, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #000;
  background-color: rgb(249.05, 249.9, 250.75);
  border-color: rgb(248.7, 249.6, 250.5);
}
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000;
  background-color: rgb(249.05, 249.9, 250.75);
  border-color: rgb(248.7, 249.6, 250.5);
  box-shadow: 0 0 0 0.25rem rgba(210.8, 211.65, 212.5, 0.5);
}
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  color: #000;
  background-color: rgb(249.4, 250.2, 251);
  border-color: rgb(248.7, 249.6, 250.5);
}
.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(210.8, 211.65, 212.5, 0.5);
}
.btn-light:disabled, .btn-light.disabled {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-dark:hover {
  color: #fff;
  background-color: rgb(28.05, 31.45, 34.85);
  border-color: rgb(26.4, 29.6, 32.8);
}
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #fff;
  background-color: rgb(28.05, 31.45, 34.85);
  border-color: rgb(26.4, 29.6, 32.8);
  box-shadow: 0 0 0 0.25rem rgba(66.3, 69.7, 73.1, 0.5);
}
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: rgb(26.4, 29.6, 32.8);
  border-color: rgb(24.75, 27.75, 30.75);
}
.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(66.3, 69.7, 73.1, 0.5);
}
.btn-dark:disabled, .btn-dark.disabled {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}

.btn-outline-primary {
  color: #0d6efd;
  border-color: #0d6efd;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #0d6efd;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-success {
  color: #198754;
  border-color: #198754;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #198754;
  background-color: transparent;
}

.btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-outline-info:hover {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #0dcaf0;
  background-color: transparent;
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-dark {
  color: #212529;
  border-color: #212529;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #212529;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #0d6efd;
  text-decoration: underline;
}
.btn-link:hover {
  color: rgb(10.4, 88, 202.4);
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 375px) {
  .dropdown-menu-xs-start {
    --bs-position: start;
  }
  .dropdown-menu-xs-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xs-end {
    --bs-position: end;
  }
  .dropdown-menu-xs-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1024px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl2-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl2-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl2-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl2-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: rgb(29.7, 33.3, 36.9);
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

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

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: rgb(10.4, 88, 202.4);
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

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

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 375px) {
  .navbar-expand-xs {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xs .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xs .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xs .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xs .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xs .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xs .navbar-toggler {
    display: none;
  }
  .navbar-expand-xs .offcanvas-header {
    display: none;
  }
  .navbar-expand-xs .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xs .offcanvas-top,
  .navbar-expand-xs .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xs .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-sm .offcanvas-top,
  .navbar-expand-sm .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-md .offcanvas-top,
  .navbar-expand-md .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-lg .offcanvas-top,
  .navbar-expand-lg .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1024px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xl .offcanvas-top,
  .navbar-expand-xl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xxl .offcanvas-top,
  .navbar-expand-xxl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl2 {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl2 .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl2 .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl2 .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl2 .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl2 .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl2 .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl2 .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl2 .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xxl2 .offcanvas-top,
  .navbar-expand-xxl2 .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xxl2 .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas {
  position: inherit;
  bottom: 0;
  z-index: 1000;
  flex-grow: 1;
  visibility: visible !important;
  background-color: transparent;
  border-right: 0;
  border-left: 0;
  transition: none;
  transform: none;
}
.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
  height: auto;
  border-top: 0;
  border-bottom: 0;
}
.navbar-expand .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-group > .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: rgb(11.7, 99, 227.7);
  background-color: rgb(230.8, 240.5, 254.8);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%2811.7, 99, 227.7%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: #0d6efd;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: rgb(10.4, 88, 202.4);
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  color: rgb(10.4, 88, 202.4);
  background-color: #e9ecef;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  color: rgb(7.8, 66, 151.8);
  background-color: rgb(206.6, 226, 254.6);
  border-color: rgb(182.4, 211.5, 254.4);
}
.alert-primary .alert-link {
  color: rgb(6.24, 52.8, 121.44);
}

.alert-secondary {
  color: rgb(64.8, 70.2, 75);
  background-color: rgb(225.6, 227.4, 229);
  border-color: rgb(210.9, 213.6, 216);
}
.alert-secondary .alert-link {
  color: rgb(51.84, 56.16, 60);
}

.alert-success {
  color: rgb(15, 81, 50.4);
  background-color: rgb(209, 231, 220.8);
  border-color: rgb(186, 219, 203.7);
}
.alert-success .alert-link {
  color: rgb(12, 64.8, 40.32);
}

.alert-info {
  color: rgb(5.2, 80.8, 96);
  background-color: rgb(206.6, 244.4, 252);
  border-color: rgb(182.4, 239.1, 250.5);
}
.alert-info .alert-link {
  color: rgb(4.16, 64.64, 76.8);
}

.alert-warning {
  color: rgb(102, 77.2, 2.8);
  background-color: rgb(255, 242.6, 205.4);
  border-color: rgb(255, 236.4, 180.6);
}
.alert-warning .alert-link {
  color: rgb(81.6, 61.76, 2.24);
}

.alert-danger {
  color: rgb(132, 31.8, 41.4);
  background-color: rgb(248, 214.6, 217.8);
  border-color: rgb(244.5, 194.4, 199.2);
}
.alert-danger .alert-link {
  color: rgb(105.6, 25.44, 33.12);
}

.alert-light {
  color: rgb(99.2, 99.6, 100);
  background-color: rgb(253.6, 253.8, 254);
  border-color: rgb(252.9, 253.2, 253.5);
}
.alert-light .alert-link {
  color: rgb(79.36, 79.68, 80);
}

.alert-dark {
  color: rgb(19.8, 22.2, 24.6);
  background-color: rgb(210.6, 211.4, 212.2);
  border-color: rgb(188.4, 189.6, 190.8);
}
.alert-dark .alert-link {
  color: rgb(15.84, 17.76, 19.68);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #0d6efd;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 375px) {
  .list-group-horizontal-xs {
    flex-direction: row;
  }
  .list-group-horizontal-xs > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xs > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xs > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xs > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xs > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1024px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl2 {
    flex-direction: row;
  }
  .list-group-horizontal-xxl2 > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl2 > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl2 > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl2 > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl2 > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: rgb(7.8, 66, 151.8);
  background-color: rgb(206.6, 226, 254.6);
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: rgb(7.8, 66, 151.8);
  background-color: rgb(185.94, 203.4, 229.14);
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(7.8, 66, 151.8);
  border-color: rgb(7.8, 66, 151.8);
}

.list-group-item-secondary {
  color: rgb(64.8, 70.2, 75);
  background-color: rgb(225.6, 227.4, 229);
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: rgb(64.8, 70.2, 75);
  background-color: rgb(203.04, 204.66, 206.1);
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(64.8, 70.2, 75);
  border-color: rgb(64.8, 70.2, 75);
}

.list-group-item-success {
  color: rgb(15, 81, 50.4);
  background-color: rgb(209, 231, 220.8);
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: rgb(15, 81, 50.4);
  background-color: rgb(188.1, 207.9, 198.72);
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: rgb(15, 81, 50.4);
  border-color: rgb(15, 81, 50.4);
}

.list-group-item-info {
  color: rgb(5.2, 80.8, 96);
  background-color: rgb(206.6, 244.4, 252);
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: rgb(5.2, 80.8, 96);
  background-color: rgb(185.94, 219.96, 226.8);
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: rgb(5.2, 80.8, 96);
  border-color: rgb(5.2, 80.8, 96);
}

.list-group-item-warning {
  color: rgb(102, 77.2, 2.8);
  background-color: rgb(255, 242.6, 205.4);
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: rgb(102, 77.2, 2.8);
  background-color: rgb(229.5, 218.34, 184.86);
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: rgb(102, 77.2, 2.8);
  border-color: rgb(102, 77.2, 2.8);
}

.list-group-item-danger {
  color: rgb(132, 31.8, 41.4);
  background-color: rgb(248, 214.6, 217.8);
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: rgb(132, 31.8, 41.4);
  background-color: rgb(223.2, 193.14, 196.02);
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: rgb(132, 31.8, 41.4);
  border-color: rgb(132, 31.8, 41.4);
}

.list-group-item-light {
  color: rgb(99.2, 99.6, 100);
  background-color: rgb(253.6, 253.8, 254);
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: rgb(99.2, 99.6, 100);
  background-color: rgb(228.24, 228.42, 228.6);
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: rgb(99.2, 99.6, 100);
  border-color: rgb(99.2, 99.6, 100);
}

.list-group-item-dark {
  color: rgb(19.8, 22.2, 24.6);
  background-color: rgb(210.6, 211.4, 212.2);
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: rgb(19.8, 22.2, 24.6);
  background-color: rgb(189.54, 190.26, 190.98);
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: rgb(19.8, 22.2, 24.6);
  border-color: rgb(19.8, 22.2, 24.6);
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}

.toast-container {
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.toast-header .btn-close {
  margin-right: -0.375rem;
  margin-left: 0.75rem;
}

.toast-body {
  padding: 0.75rem;
  word-wrap: break-word;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1024px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 374.98px) {
  .modal-fullscreen-xs-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xs-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xs-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xs-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xs-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1023.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl2-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl2-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl2-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl2-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl2-down .modal-footer {
    border-radius: 0;
  }
}
.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid rgb(239.7, 239.7, 239.7);
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: rgb(239.7, 239.7, 239.7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

/* rtl:end:ignore */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    animation-duration: 1.5s;
  }
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}
.offcanvas-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}

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

.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
}

.offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
}

.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
}

.offcanvas-bottom {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
}

.offcanvas.show {
  transform: none;
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentColor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

.placeholder-xs {
  min-height: 0.6em;
}

.placeholder-sm {
  min-height: 0.8em;
}

.placeholder-lg {
  min-height: 1.2em;
}

.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
.placeholder-wave {
  mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
  100% {
    mask-position: -200% 0%;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #0d6efd;
}
.link-primary:hover, .link-primary:focus {
  color: rgb(10.4, 88, 202.4);
}

.link-secondary {
  color: #6c757d;
}
.link-secondary:hover, .link-secondary:focus {
  color: rgb(86.4, 93.6, 100);
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: rgb(20, 108, 67.2);
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: rgb(61.4, 212.6, 243);
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: rgb(255, 205.4, 56.6);
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: rgb(176, 42.4, 55.2);
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: rgb(249.4, 250.2, 251);
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: rgb(26.4, 29.6, 32.8);
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

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

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

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 375px) {
  .sticky-xs-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1024px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl2-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}

.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;
}

.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;
}

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

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

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

.d-grid {
  display: 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: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

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

.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: 1px solid #dee2e6 !important;
}

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

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

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

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

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

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

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

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

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

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

.border-white {
  border-color: #fff !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;
}

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

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

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

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

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

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

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

.w-90 {
  width: 90% !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-30 {
  height: 30% !important;
}

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

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

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

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

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

.h-90 {
  height: 90% !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;
}

.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;
}

.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-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-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-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-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-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-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-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-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-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-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-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-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-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-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;
}

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

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

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

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

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

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

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

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

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

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

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

.fw-normal {
  font-weight: 400 !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: #6c757d !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-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;
}

.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-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-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: 0.25rem !important;
}

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

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

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

.rounded-pill {
  border-radius: 50rem !important;
}

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

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

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

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 375px) {
  .float-xs-start {
    float: left !important;
  }
  .float-xs-end {
    float: right !important;
  }
  .float-xs-none {
    float: none !important;
  }
  .d-xs-inline {
    display: inline !important;
  }
  .d-xs-inline-block {
    display: inline-block !important;
  }
  .d-xs-block {
    display: block !important;
  }
  .d-xs-grid {
    display: grid !important;
  }
  .d-xs-table {
    display: table !important;
  }
  .d-xs-table-row {
    display: table-row !important;
  }
  .d-xs-table-cell {
    display: table-cell !important;
  }
  .d-xs-flex {
    display: flex !important;
  }
  .d-xs-inline-flex {
    display: inline-flex !important;
  }
  .d-xs-none {
    display: none !important;
  }
  .w-xs-25 {
    width: 25% !important;
  }
  .w-xs-30 {
    width: 30% !important;
  }
  .w-xs-35 {
    width: 35% !important;
  }
  .w-xs-50 {
    width: 50% !important;
  }
  .w-xs-65 {
    width: 65% !important;
  }
  .w-xs-75 {
    width: 75% !important;
  }
  .w-xs-80 {
    width: 80% !important;
  }
  .w-xs-90 {
    width: 90% !important;
  }
  .w-xs-100 {
    width: 100% !important;
  }
  .w-xs-auto {
    width: auto !important;
  }
  .h-xs-25 {
    height: 25% !important;
  }
  .h-xs-30 {
    height: 30% !important;
  }
  .h-xs-35 {
    height: 35% !important;
  }
  .h-xs-50 {
    height: 50% !important;
  }
  .h-xs-65 {
    height: 65% !important;
  }
  .h-xs-75 {
    height: 75% !important;
  }
  .h-xs-80 {
    height: 80% !important;
  }
  .h-xs-90 {
    height: 90% !important;
  }
  .h-xs-100 {
    height: 100% !important;
  }
  .h-xs-auto {
    height: auto !important;
  }
  .flex-xs-fill {
    flex: 1 1 auto !important;
  }
  .flex-xs-row {
    flex-direction: row !important;
  }
  .flex-xs-column {
    flex-direction: column !important;
  }
  .flex-xs-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xs-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xs-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xs-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xs-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xs-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xs-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xs-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xs-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xs-0 {
    gap: 0 !important;
  }
  .gap-xs-1 {
    gap: 0.25rem !important;
  }
  .gap-xs-2 {
    gap: 0.5rem !important;
  }
  .gap-xs-3 {
    gap: 1rem !important;
  }
  .gap-xs-4 {
    gap: 1.5rem !important;
  }
  .gap-xs-5 {
    gap: 3rem !important;
  }
  .justify-content-xs-start {
    justify-content: flex-start !important;
  }
  .justify-content-xs-end {
    justify-content: flex-end !important;
  }
  .justify-content-xs-center {
    justify-content: center !important;
  }
  .justify-content-xs-between {
    justify-content: space-between !important;
  }
  .justify-content-xs-around {
    justify-content: space-around !important;
  }
  .justify-content-xs-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xs-start {
    align-items: flex-start !important;
  }
  .align-items-xs-end {
    align-items: flex-end !important;
  }
  .align-items-xs-center {
    align-items: center !important;
  }
  .align-items-xs-baseline {
    align-items: baseline !important;
  }
  .align-items-xs-stretch {
    align-items: stretch !important;
  }
  .align-content-xs-start {
    align-content: flex-start !important;
  }
  .align-content-xs-end {
    align-content: flex-end !important;
  }
  .align-content-xs-center {
    align-content: center !important;
  }
  .align-content-xs-between {
    align-content: space-between !important;
  }
  .align-content-xs-around {
    align-content: space-around !important;
  }
  .align-content-xs-stretch {
    align-content: stretch !important;
  }
  .align-self-xs-auto {
    align-self: auto !important;
  }
  .align-self-xs-start {
    align-self: flex-start !important;
  }
  .align-self-xs-end {
    align-self: flex-end !important;
  }
  .align-self-xs-center {
    align-self: center !important;
  }
  .align-self-xs-baseline {
    align-self: baseline !important;
  }
  .align-self-xs-stretch {
    align-self: stretch !important;
  }
  .order-xs-first {
    order: -1 !important;
  }
  .order-xs-0 {
    order: 0 !important;
  }
  .order-xs-1 {
    order: 1 !important;
  }
  .order-xs-2 {
    order: 2 !important;
  }
  .order-xs-3 {
    order: 3 !important;
  }
  .order-xs-4 {
    order: 4 !important;
  }
  .order-xs-5 {
    order: 5 !important;
  }
  .order-xs-last {
    order: 6 !important;
  }
  .m-xs-0 {
    margin: 0 !important;
  }
  .m-xs-1 {
    margin: 0.25rem !important;
  }
  .m-xs-2 {
    margin: 0.5rem !important;
  }
  .m-xs-3 {
    margin: 1rem !important;
  }
  .m-xs-4 {
    margin: 1.5rem !important;
  }
  .m-xs-5 {
    margin: 3rem !important;
  }
  .m-xs-auto {
    margin: auto !important;
  }
  .mx-xs-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xs-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xs-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xs-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xs-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xs-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xs-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xs-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xs-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xs-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xs-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xs-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xs-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xs-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xs-0 {
    margin-top: 0 !important;
  }
  .mt-xs-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xs-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xs-3 {
    margin-top: 1rem !important;
  }
  .mt-xs-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xs-5 {
    margin-top: 3rem !important;
  }
  .mt-xs-auto {
    margin-top: auto !important;
  }
  .me-xs-0 {
    margin-right: 0 !important;
  }
  .me-xs-1 {
    margin-right: 0.25rem !important;
  }
  .me-xs-2 {
    margin-right: 0.5rem !important;
  }
  .me-xs-3 {
    margin-right: 1rem !important;
  }
  .me-xs-4 {
    margin-right: 1.5rem !important;
  }
  .me-xs-5 {
    margin-right: 3rem !important;
  }
  .me-xs-auto {
    margin-right: auto !important;
  }
  .mb-xs-0 {
    margin-bottom: 0 !important;
  }
  .mb-xs-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xs-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xs-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xs-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xs-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xs-auto {
    margin-bottom: auto !important;
  }
  .ms-xs-0 {
    margin-left: 0 !important;
  }
  .ms-xs-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xs-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xs-3 {
    margin-left: 1rem !important;
  }
  .ms-xs-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xs-5 {
    margin-left: 3rem !important;
  }
  .ms-xs-auto {
    margin-left: auto !important;
  }
  .p-xs-0 {
    padding: 0 !important;
  }
  .p-xs-1 {
    padding: 0.25rem !important;
  }
  .p-xs-2 {
    padding: 0.5rem !important;
  }
  .p-xs-3 {
    padding: 1rem !important;
  }
  .p-xs-4 {
    padding: 1.5rem !important;
  }
  .p-xs-5 {
    padding: 3rem !important;
  }
  .px-xs-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xs-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xs-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xs-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xs-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xs-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xs-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xs-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xs-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xs-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xs-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xs-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xs-0 {
    padding-top: 0 !important;
  }
  .pt-xs-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xs-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xs-3 {
    padding-top: 1rem !important;
  }
  .pt-xs-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xs-5 {
    padding-top: 3rem !important;
  }
  .pe-xs-0 {
    padding-right: 0 !important;
  }
  .pe-xs-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xs-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xs-3 {
    padding-right: 1rem !important;
  }
  .pe-xs-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xs-5 {
    padding-right: 3rem !important;
  }
  .pb-xs-0 {
    padding-bottom: 0 !important;
  }
  .pb-xs-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xs-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xs-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xs-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xs-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xs-0 {
    padding-left: 0 !important;
  }
  .ps-xs-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xs-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xs-3 {
    padding-left: 1rem !important;
  }
  .ps-xs-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xs-5 {
    padding-left: 3rem !important;
  }
  .text-xs-start {
    text-align: left !important;
  }
  .text-xs-end {
    text-align: right !important;
  }
  .text-xs-center {
    text-align: center !important;
  }
}
@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: 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-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;
  }
  .w-sm-25 {
    width: 25% !important;
  }
  .w-sm-30 {
    width: 30% !important;
  }
  .w-sm-35 {
    width: 35% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-65 {
    width: 65% !important;
  }
  .w-sm-75 {
    width: 75% !important;
  }
  .w-sm-80 {
    width: 80% !important;
  }
  .w-sm-90 {
    width: 90% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
  .w-sm-auto {
    width: auto !important;
  }
  .h-sm-25 {
    height: 25% !important;
  }
  .h-sm-30 {
    height: 30% !important;
  }
  .h-sm-35 {
    height: 35% !important;
  }
  .h-sm-50 {
    height: 50% !important;
  }
  .h-sm-65 {
    height: 65% !important;
  }
  .h-sm-75 {
    height: 75% !important;
  }
  .h-sm-80 {
    height: 80% !important;
  }
  .h-sm-90 {
    height: 90% !important;
  }
  .h-sm-100 {
    height: 100% !important;
  }
  .h-sm-auto {
    height: auto !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;
  }
  .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;
  }
  .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-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-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-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-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-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-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-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-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-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-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-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-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-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-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;
  }
  .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;
  }
  .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-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;
  }
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-30 {
    width: 30% !important;
  }
  .w-md-35 {
    width: 35% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-65 {
    width: 65% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-80 {
    width: 80% !important;
  }
  .w-md-90 {
    width: 90% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .w-md-auto {
    width: auto !important;
  }
  .h-md-25 {
    height: 25% !important;
  }
  .h-md-30 {
    height: 30% !important;
  }
  .h-md-35 {
    height: 35% !important;
  }
  .h-md-50 {
    height: 50% !important;
  }
  .h-md-65 {
    height: 65% !important;
  }
  .h-md-75 {
    height: 75% !important;
  }
  .h-md-80 {
    height: 80% !important;
  }
  .h-md-90 {
    height: 90% !important;
  }
  .h-md-100 {
    height: 100% !important;
  }
  .h-md-auto {
    height: auto !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;
  }
  .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;
  }
  .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-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-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-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-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-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-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-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-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-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-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-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-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-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-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;
  }
  .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;
  }
  .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-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;
  }
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-30 {
    width: 30% !important;
  }
  .w-lg-35 {
    width: 35% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-65 {
    width: 65% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-80 {
    width: 80% !important;
  }
  .w-lg-90 {
    width: 90% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
  .w-lg-auto {
    width: auto !important;
  }
  .h-lg-25 {
    height: 25% !important;
  }
  .h-lg-30 {
    height: 30% !important;
  }
  .h-lg-35 {
    height: 35% !important;
  }
  .h-lg-50 {
    height: 50% !important;
  }
  .h-lg-65 {
    height: 65% !important;
  }
  .h-lg-75 {
    height: 75% !important;
  }
  .h-lg-80 {
    height: 80% !important;
  }
  .h-lg-90 {
    height: 90% !important;
  }
  .h-lg-100 {
    height: 100% !important;
  }
  .h-lg-auto {
    height: auto !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;
  }
  .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;
  }
  .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-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-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-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-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-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-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-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-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-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-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-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-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-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-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;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1024px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: 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-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;
  }
  .w-xl-25 {
    width: 25% !important;
  }
  .w-xl-30 {
    width: 30% !important;
  }
  .w-xl-35 {
    width: 35% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-65 {
    width: 65% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
  .w-xl-80 {
    width: 80% !important;
  }
  .w-xl-90 {
    width: 90% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
  .w-xl-auto {
    width: auto !important;
  }
  .h-xl-25 {
    height: 25% !important;
  }
  .h-xl-30 {
    height: 30% !important;
  }
  .h-xl-35 {
    height: 35% !important;
  }
  .h-xl-50 {
    height: 50% !important;
  }
  .h-xl-65 {
    height: 65% !important;
  }
  .h-xl-75 {
    height: 75% !important;
  }
  .h-xl-80 {
    height: 80% !important;
  }
  .h-xl-90 {
    height: 90% !important;
  }
  .h-xl-100 {
    height: 100% !important;
  }
  .h-xl-auto {
    height: auto !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;
  }
  .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;
  }
  .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-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-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-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-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-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-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-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-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-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-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-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-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-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-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;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: 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-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;
  }
  .w-xxl-25 {
    width: 25% !important;
  }
  .w-xxl-30 {
    width: 30% !important;
  }
  .w-xxl-35 {
    width: 35% !important;
  }
  .w-xxl-50 {
    width: 50% !important;
  }
  .w-xxl-65 {
    width: 65% !important;
  }
  .w-xxl-75 {
    width: 75% !important;
  }
  .w-xxl-80 {
    width: 80% !important;
  }
  .w-xxl-90 {
    width: 90% !important;
  }
  .w-xxl-100 {
    width: 100% !important;
  }
  .w-xxl-auto {
    width: auto !important;
  }
  .h-xxl-25 {
    height: 25% !important;
  }
  .h-xxl-30 {
    height: 30% !important;
  }
  .h-xxl-35 {
    height: 35% !important;
  }
  .h-xxl-50 {
    height: 50% !important;
  }
  .h-xxl-65 {
    height: 65% !important;
  }
  .h-xxl-75 {
    height: 75% !important;
  }
  .h-xxl-80 {
    height: 80% !important;
  }
  .h-xxl-90 {
    height: 90% !important;
  }
  .h-xxl-100 {
    height: 100% !important;
  }
  .h-xxl-auto {
    height: auto !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;
  }
  .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;
  }
  .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-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-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-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-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-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-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-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-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-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-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-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-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-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-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;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl2-start {
    float: left !important;
  }
  .float-xxl2-end {
    float: right !important;
  }
  .float-xxl2-none {
    float: none !important;
  }
  .d-xxl2-inline {
    display: inline !important;
  }
  .d-xxl2-inline-block {
    display: inline-block !important;
  }
  .d-xxl2-block {
    display: block !important;
  }
  .d-xxl2-grid {
    display: grid !important;
  }
  .d-xxl2-table {
    display: table !important;
  }
  .d-xxl2-table-row {
    display: table-row !important;
  }
  .d-xxl2-table-cell {
    display: table-cell !important;
  }
  .d-xxl2-flex {
    display: flex !important;
  }
  .d-xxl2-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl2-none {
    display: none !important;
  }
  .w-xxl2-25 {
    width: 25% !important;
  }
  .w-xxl2-30 {
    width: 30% !important;
  }
  .w-xxl2-35 {
    width: 35% !important;
  }
  .w-xxl2-50 {
    width: 50% !important;
  }
  .w-xxl2-65 {
    width: 65% !important;
  }
  .w-xxl2-75 {
    width: 75% !important;
  }
  .w-xxl2-80 {
    width: 80% !important;
  }
  .w-xxl2-90 {
    width: 90% !important;
  }
  .w-xxl2-100 {
    width: 100% !important;
  }
  .w-xxl2-auto {
    width: auto !important;
  }
  .h-xxl2-25 {
    height: 25% !important;
  }
  .h-xxl2-30 {
    height: 30% !important;
  }
  .h-xxl2-35 {
    height: 35% !important;
  }
  .h-xxl2-50 {
    height: 50% !important;
  }
  .h-xxl2-65 {
    height: 65% !important;
  }
  .h-xxl2-75 {
    height: 75% !important;
  }
  .h-xxl2-80 {
    height: 80% !important;
  }
  .h-xxl2-90 {
    height: 90% !important;
  }
  .h-xxl2-100 {
    height: 100% !important;
  }
  .h-xxl2-auto {
    height: auto !important;
  }
  .flex-xxl2-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl2-row {
    flex-direction: row !important;
  }
  .flex-xxl2-column {
    flex-direction: column !important;
  }
  .flex-xxl2-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl2-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl2-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl2-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl2-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl2-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl2-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl2-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl2-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xxl2-0 {
    gap: 0 !important;
  }
  .gap-xxl2-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl2-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl2-3 {
    gap: 1rem !important;
  }
  .gap-xxl2-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl2-5 {
    gap: 3rem !important;
  }
  .justify-content-xxl2-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl2-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl2-center {
    justify-content: center !important;
  }
  .justify-content-xxl2-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl2-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl2-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl2-start {
    align-items: flex-start !important;
  }
  .align-items-xxl2-end {
    align-items: flex-end !important;
  }
  .align-items-xxl2-center {
    align-items: center !important;
  }
  .align-items-xxl2-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl2-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl2-start {
    align-content: flex-start !important;
  }
  .align-content-xxl2-end {
    align-content: flex-end !important;
  }
  .align-content-xxl2-center {
    align-content: center !important;
  }
  .align-content-xxl2-between {
    align-content: space-between !important;
  }
  .align-content-xxl2-around {
    align-content: space-around !important;
  }
  .align-content-xxl2-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl2-auto {
    align-self: auto !important;
  }
  .align-self-xxl2-start {
    align-self: flex-start !important;
  }
  .align-self-xxl2-end {
    align-self: flex-end !important;
  }
  .align-self-xxl2-center {
    align-self: center !important;
  }
  .align-self-xxl2-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl2-stretch {
    align-self: stretch !important;
  }
  .order-xxl2-first {
    order: -1 !important;
  }
  .order-xxl2-0 {
    order: 0 !important;
  }
  .order-xxl2-1 {
    order: 1 !important;
  }
  .order-xxl2-2 {
    order: 2 !important;
  }
  .order-xxl2-3 {
    order: 3 !important;
  }
  .order-xxl2-4 {
    order: 4 !important;
  }
  .order-xxl2-5 {
    order: 5 !important;
  }
  .order-xxl2-last {
    order: 6 !important;
  }
  .m-xxl2-0 {
    margin: 0 !important;
  }
  .m-xxl2-1 {
    margin: 0.25rem !important;
  }
  .m-xxl2-2 {
    margin: 0.5rem !important;
  }
  .m-xxl2-3 {
    margin: 1rem !important;
  }
  .m-xxl2-4 {
    margin: 1.5rem !important;
  }
  .m-xxl2-5 {
    margin: 3rem !important;
  }
  .m-xxl2-auto {
    margin: auto !important;
  }
  .mx-xxl2-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl2-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl2-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl2-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl2-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl2-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl2-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl2-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl2-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl2-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl2-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl2-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl2-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl2-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl2-0 {
    margin-top: 0 !important;
  }
  .mt-xxl2-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl2-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl2-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl2-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl2-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl2-auto {
    margin-top: auto !important;
  }
  .me-xxl2-0 {
    margin-right: 0 !important;
  }
  .me-xxl2-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl2-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl2-3 {
    margin-right: 1rem !important;
  }
  .me-xxl2-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl2-5 {
    margin-right: 3rem !important;
  }
  .me-xxl2-auto {
    margin-right: auto !important;
  }
  .mb-xxl2-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl2-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl2-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl2-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl2-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl2-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl2-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl2-0 {
    margin-left: 0 !important;
  }
  .ms-xxl2-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl2-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl2-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl2-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl2-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl2-auto {
    margin-left: auto !important;
  }
  .p-xxl2-0 {
    padding: 0 !important;
  }
  .p-xxl2-1 {
    padding: 0.25rem !important;
  }
  .p-xxl2-2 {
    padding: 0.5rem !important;
  }
  .p-xxl2-3 {
    padding: 1rem !important;
  }
  .p-xxl2-4 {
    padding: 1.5rem !important;
  }
  .p-xxl2-5 {
    padding: 3rem !important;
  }
  .px-xxl2-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl2-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl2-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl2-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl2-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl2-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl2-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl2-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl2-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl2-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl2-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl2-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl2-0 {
    padding-top: 0 !important;
  }
  .pt-xxl2-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl2-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl2-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl2-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl2-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl2-0 {
    padding-right: 0 !important;
  }
  .pe-xxl2-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl2-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl2-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl2-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl2-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl2-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl2-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl2-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl2-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl2-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl2-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl2-0 {
    padding-left: 0 !important;
  }
  .ps-xxl2-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl2-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl2-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl2-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl2-5 {
    padding-left: 3rem !important;
  }
  .text-xxl2-start {
    text-align: left !important;
  }
  .text-xxl2-end {
    text-align: right !important;
  }
  .text-xxl2-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !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-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;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
  outline: none;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  appearance: button;
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  appearance: textfield;
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*----------------------------------------------------------
    File Name  : _base.scss
    Desc       : File ini digunakan untuk konfigurasi CSS secara
                 Global

------------------------------------------------------------*/
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body {
  font-family: "Noto Serif", serif;
}

a {
  color: #000;
  text-decoration: none;
}

input:focus, input:active {
  outline: none;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

ul li {
  list-style: none;
}

.content {
  padding: 2rem 0;
}

/*----------------------------------------------------------
    File Name  : typography.scss
    Desc       : File ini digunakan untuk mengatur Typography
                 suatu text

------------------------------------------------------------*/
/**
 * TABLE OF CONTENTS
 *
 * 1. Tags Typography
 * 2. Class Font
 *
 */
/*----------------------------------------------------------
1. Tags Typography Start 
------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0px;
  margin: 0px;
}

h1 {
  font-size: 30px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 24px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 18px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 25px;
  }
}

h4 {
  font-size: 16px;
}
@media (min-width: 768px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 16px;
  line-height: 160%;
}
@media (min-width: 768px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 14px;
}
@media (min-width: 768px) {
  h6 {
    font-size: 16px;
  }
}

title {
  font-size: 23px;
}
@media (min-width: 768px) {
  title {
    font-size: 25px;
  }
}

p {
  font-size: 15px;
}
@media (min-width: 768px) {
  p {
    font-size: 16px;
  }
}

/*----------------------------------------------------------
1. Tags Typography End
------------------------------------------------------------*/
/*----------------------------------------------------------
2. Class Font Start
------------------------------------------------------------*/
.f-inter {
  font-family: "Inter", sans-serif;
}

.f-odor {
  font-family: "Odor Mean Chey", serif;
}

.f-lato {
  font-family: "Lato", sans-serif;
}

.f-noto {
  font-family: "Noto Serif", serif;
}

.f-poppins {
  font-family: "Poppins", sans-serif;
}

/*----------------------------------------------------------
2. Class Font End
------------------------------------------------------------*/
/*----------------------------------------------------------
    File Name  : _navbar.scss
    Desc       : File ini merupakan styling untuk navbar Homepage

------------------------------------------------------------*/
/**
 * TABLE OF CONTENTS
 *
 * 1. Navbar Homepage
 *
 */
/*----------------------------------------------------------
1. Navbar Homepage Start
------------------------------------------------------------*/
.navbar {
  /* background-color: rgba(217, 217, 217, 0.15); */
  background-color: rgba(9, 9, 9, 0.75);
  position: absolute;
  top: 0;
  z-index: 999;
  width: 100%;
}
.navbar.navbar-dark-full {
  background-color: #000 !important;
}
.navbar .logo {
  height: 50px;
  width: auto;
}
.navbar .logo-text {
  font-family: "Odor Mean Chey", serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  text-transform: uppercase;
  display: flex;
  gap: 0.5rem;
}
.navbar .logo-text .text-gold {
  color: #bda069;
}
.navbar .logo-text .text-white {
  color: #ffffff;
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }
}
.navbar .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 2rem;
}
@media (max-width: 991px) {
  .navbar .navbar-nav {
    flex-direction: column;
    gap: 1rem;
  }
}
.navbar .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  text-align: center;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #bda069;
}
@media (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 0.5rem 0;
  }
}
.navbar .navbar-nav .dropdown {
  position: relative;
}
.navbar .navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .navbar .navbar-nav .dropdown:hover .dropdown-menu {
    display: none;
    transform: none;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-nav .dropdown {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-nav .dropdown .dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-nav .dropdown .dropdown-toggle::after {
    margin-left: auto;
  }
}
.navbar .navbar-nav .dropdown .dropdown-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: #0b0a08;
  border: none;
  text-align: center;
  min-width: 350px;
  width: max-content;
  max-width: 600px;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .navbar .navbar-nav .dropdown .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    min-width: 100%;
    max-width: 100%;
    padding: 0;
    margin-top: 0;
    display: none;
    visibility: visible;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-nav .dropdown .dropdown-menu.show {
    display: block;
  }
}
.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item {
  color: #d1b06b;
  transition: all 0.3s ease;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 68px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Poppins", sans-serif;
  width: 100%;
}
@media (max-width: 991px) {
  .navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item {
    padding: 8px 0;
  }
}
.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #d1b06b;
  color: #0b0a08;
  width: 100%;
  font-weight: 800;
  line-height: 25px;
}
.navbar .nav-buttons {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}
@media (max-width: 991px) {
  .navbar .nav-buttons {
    width: 100%;
    margin-top: 1rem;
  }
}
.navbar .nav-buttons .btn-navbar-referral {
  width: 122px;
  height: 43px;
  background-color: #bfa573;
  display: flex;
  align-items: center;
  font-size: 13px;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}
@media (max-width: 991px) {
  .navbar .nav-buttons .btn-navbar-referral {
    width: 100%;
    justify-content: center;
  }
}
.navbar .nav-buttons .btn-navbar-referral:hover {
  color: #0b0a08;
  background-color: #ffffff;
}
.navbar .navbar-toggler:focus,
.navbar .navbar-toggler:active,
.navbar .navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
}
.navbar .openbtn {
  background: #bfa573;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}
.navbar .openbtn span {
  position: absolute;
  background: #fff;
  display: inline-block;
  border-radius: 3px;
  right: 14px;
  height: 3px;
  transition: all 0.4s;
}
.navbar .openbtn span:nth-of-type(1) {
  top: 13px;
  width: 45%;
}
.navbar .openbtn span:nth-of-type(2) {
  top: 21px;
  width: 35%;
}
.navbar .openbtn span:nth-of-type(3) {
  top: 29px;
  width: 20%;
}
.navbar .openbtn.active span:nth-of-type(1) {
  width: 45%;
  top: 16px;
  left: 12px;
  transform: translateY(6px) rotate(-135deg);
}
.navbar .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.navbar .openbtn.active span:nth-of-type(3) {
  width: 45%;
  top: 28px;
  left: 12px;
  transform: translateY(-6px) rotate(135deg);
}

/*----------------------------------------------------------
1. Navbar Homepage End
------------------------------------------------------------*/
/*----------------------------------------------------------
    File Name  : _footer.scss
    Desc       : File ini merupakan styling untuk Footer Homepage

------------------------------------------------------------*/
/**
 * TABLE OF CONTENTS
 *
 * 1. Contactform
 * 2. Footer
 *
 */
/*----------------------------------------------------------
1. ContactForm Start
------------------------------------------------------------*/
.bg-contactform {
  background: rgb(30, 30, 30);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 3rem 1rem;
  color: #ffffff;
  position: relative;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.bg-contactform .left-side {
  padding-left: 0rem;
}
@media (min-width: 992px) {
  .bg-contactform .left-side {
    padding-left: 3rem;
  }
}
.bg-contactform .left-side #g-getintouch {
  color: #bfa573;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}
.bg-contactform .left-side #g-subgetintouch {
  margin-top: 1rem;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.bg-contactform .left-side #g-textgetintouch {
  margin: 3rem 0 1rem;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.bg-contactform .logo-contactform {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.bg-contactform .logo-contactform .logo-text-contactform {
  margin-top: 1rem;
  text-align: center;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 700;
}

.bg-trainingform {
  background-color: #000000;
  padding: 1rem 0;
  overflow: hidden;
}
.bg-trainingform .wrapper-trainingform {
  padding-top: 3rem;
  padding-left: 3rem;
}
.bg-trainingform .wrapper-trainingform h2 {
  color: #bfa573;
}
.bg-trainingform .wrapper-trainingform p {
  color: #ffffff;
  line-height: 30px;
  padding: 2rem 2rem 2rem 0rem;
}
@media (min-width: 1200px) {
  .bg-trainingform .wrapper-trainingform p {
    padding: 2rem 6rem 2rem 0rem;
  }
}
.bg-trainingform .wrapper-trainingform .video-trainingform video {
  position: relative;
  width: 100%;
  height: auto;
}
.bg-trainingform .wrapper-trainingform .img-gear-footer {
  height: auto;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
@media (min-width: 992px) {
  .bg-trainingform .wrapper-trainingform .img-gear-footer {
    display: block;
    width: 8rem;
    left: 52%;
  }
}
@media (min-width: 1200px) {
  .bg-trainingform .wrapper-trainingform .img-gear-footer {
    width: 11rem;
    left: 50%;
  }
}
.bg-trainingform.blockchain {
  background-color: #ccb78f !important;
}
.bg-trainingform.blockchain .wrapper-trainingform {
  padding-top: 0;
}
.bg-trainingform.blockchain .wrapper-trainingform h2,
.bg-trainingform.blockchain .wrapper-trainingform h5,
.bg-trainingform.blockchain .wrapper-trainingform p {
  color: #1e1e1e;
}
.bg-trainingform.blockchain .wrapper-trainingform h5 {
  margin-top: 1rem;
}
.bg-trainingform.blockchain .wrapper-trainingform video {
  border-radius: 10px 0px 0px 10px;
}

/*----------------------------------------------------------
1. ContactForm End
------------------------------------------------------------*/
.bg-footer {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../../img/bg-footer.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 4rem 0;
  color: #ffffff;
}
.bg-footer .logo-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.bg-footer .logo-footer img {
  height: 150px;
  width: auto;
  transition: transform 0.3s ease;
}
.bg-footer .logo-footer img:hover {
  transform: scale(1.05);
}
.bg-footer .col-12.col-md-4 .d-flex.flex-column {
  min-height: 200px;
  justify-content: center;
}
.bg-footer .col-12.col-md-4 .d-flex.flex-column .logo-text-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-family: "Odor Mean Chey", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  text-transform: uppercase;
  margin-bottom: 1rem !important;
}
.bg-footer .col-12.col-md-4 .d-flex.flex-column .logo-text-footer .text-gold {
  color: #bfa573;
}
.bg-footer .col-12.col-md-4 .d-flex.flex-column .btn-contact-form {
  background: #000;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  padding: 0.75rem 5rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}
.bg-footer .col-12.col-md-4 .d-flex.flex-column .btn-contact-form:hover {
  background: #1a1a1a;
}
.bg-footer .list {
  border-left: 2px solid #bfa573;
  padding-left: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: fit-content;
}
.bg-footer .list .footer-link {
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: uppercase;
  padding: 0.25rem 0;
}
.bg-footer .list .footer-link .d-flex.flex-column {
  width: 100%;
  align-items: flex-start;
}
.bg-footer .list .footer-link:hover {
  color: #bfa573 !important;
}
@media (max-width: 768px) {
  .bg-footer .list {
    border-left: none;
    padding-left: 0;
    margin-top: 2rem;
    justify-content: center;
  }
  .bg-footer .list .d-flex.flex-column {
    align-items: center;
  }
}
.bg-footer .border-hr-footer {
  border-top: 2px solid #bfa573;
  opacity: 1;
  margin: 2rem auto;
}
.bg-footer .footer-list li {
  position: relative;
  padding-left: 1.5rem;
  list-style-type: none;
  text-align: justify;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
.bg-footer .footer-list li strong {
  text-transform: uppercase;
  display: inline;
  margin-bottom: 0.5rem;
}
.bg-footer .footer-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 1.2rem;
}
.bg-footer .address .row {
  display: flex;
  flex-wrap: wrap;
}
.bg-footer .address .row > [class*=col-] {
  display: flex;
  flex-direction: column;
}
.bg-footer .address .row > .col-md-4:last-child {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.bg-footer .address .row > .col-md-4:last-child .d-flex.gap-4 {
  margin-top: auto;
  padding-left: 1.65rem;
}
.bg-footer .address .row > .col-md-4:last-child .footer-link {
  color: #fff;
  text-decoration: underline;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
.bg-footer .address .row > .col-md-4:last-child .footer-link:hover {
  padding-left: 0;
}
.bg-footer .address .row > .col-md-4:last-child .mif-link {
  display: block;
  text-align: right;
  margin-top: 2rem;
  margin-left: auto;
  padding-right: 1rem;
}
.bg-footer .address .row > .col-md-4:last-child .mif-link img {
  max-width: 150px;
}
.bg-footer .address .row > .col-md-4:last-child .mif-link .mif-text {
  text-align: right;
  color: #d1b06b;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.bg-footer .address .row p {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}
.bg-footer .address .row p svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
  margin-right: 0.5rem;
}
.bg-footer .address .row p strong {
  display: block;
  margin-bottom: 0.25rem;
}
.bg-footer .address .row .text-gold {
  color: #bfa573 !important;
  text-decoration: none;
  font-size: 0.875rem;
  transition: opacity 0.3s ease;
}
.bg-footer .address .row .text-gold:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .bg-footer .address .row {
    text-align: center;
  }
  .bg-footer .address .row > [class*=col-] {
    align-items: center;
  }
  .bg-footer .address .row p {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .bg-footer .address .row p svg {
    margin-bottom: 0.5rem;
  }
  .bg-footer .address .row .d-flex.gap-4 {
    justify-content: center;
  }
}
.bg-footer .mif-link {
  display: block;
  text-align: right;
  margin-top: 2rem;
  margin-left: auto;
  padding-right: 1rem;
}
.bg-footer .mif-link img {
  max-width: 150px;
}
.bg-footer .mif-link .mif-text {
  text-align: right;
}
@media (max-width: 992px) {
  .bg-footer .logo-footer img {
    height: 120px;
  }
  .bg-footer .logo-text-footer {
    font-size: 1.25rem;
  }
  .bg-footer .btn-contact-form {
    font-size: 0.8rem;
    padding: 0.5rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .bg-footer {
    padding: 3rem 0;
  }
  .bg-footer .border-hr-footer {
    margin: 1.5rem auto;
  }
  .bg-footer .address .row {
    gap: 2rem;
  }
}

/*----------------------------------------------------------
    File Name  : _homepage.scss
    Desc       : File ini merupakan styling untuk Homepage

------------------------------------------------------------*/
/**
 * TABLE OF CONTENTS
 *
 * 1. Banner Homepage
 * 2. Team Expert
 * 3. Consulting
 * 4. Why
 * 5. Service
 * 6. About Us
 * 7. Account Deletion
 *
 */
.page-wrapper-homepage {
  background-color: #000;
}

/*----------------------------------------------------------
1. Banner Homepage Start
------------------------------------------------------------*/
.banner-homepage {
  position: relative;
  overflow: hidden;
}
.banner-homepage .wrapper-banner-homepage {
  display: flex;
  min-height: 100vh !important;
}
.banner-homepage .wrapper-banner-homepage video {
  width: 100%;
  min-height: 100vh !important;
  position: absolute;
  z-index: 1;
  object-fit: cover;
  object-position: 50% 50%;
}
.banner-homepage .wrapper-banner-homepage .logo-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.banner-homepage .wrapper-banner-homepage .logo-banner .button-wrapper {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2.75rem;
}
.banner-homepage .wrapper-banner-homepage .logo-banner .button-wrapper .btn-primary,
.banner-homepage .wrapper-banner-homepage .logo-banner .button-wrapper .btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 268px;
  height: auto;
  min-height: 64px;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  transition: transform 0.3s ease;
}
.banner-homepage .wrapper-banner-homepage .logo-banner .button-wrapper .btn-primary:hover,
.banner-homepage .wrapper-banner-homepage .logo-banner .button-wrapper .btn-secondary:hover {
  transform: translateY(-5px);
}
.banner-homepage .wrapper-banner-homepage .logo-banner .button-wrapper .btn-primary .btn-text,
.banner-homepage .wrapper-banner-homepage .logo-banner .button-wrapper .btn-secondary .btn-text {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  line-height: 1.4;
}
.banner-homepage .wrapper-banner-homepage .logo-banner .button-wrapper .btn-primary {
  background-color: #bfa573;
}
.banner-homepage .wrapper-banner-homepage .logo-banner .button-wrapper .btn-primary:hover .btn-text {
  color: #1e1e1e !important;
}
.banner-homepage .wrapper-banner-homepage .logo-banner .button-wrapper .btn-primary .btn-text {
  color: #ffffff;
  transition: color 0.3s ease;
}
.banner-homepage .wrapper-banner-homepage .logo-banner .button-wrapper .btn-secondary {
  background-color: #ffffff;
}
.banner-homepage .wrapper-banner-homepage .logo-banner .button-wrapper .btn-secondary:hover .btn-text {
  color: #bda069 !important;
}
.banner-homepage .wrapper-banner-homepage .logo-banner .button-wrapper .btn-secondary .btn-text {
  color: #1e1e1e;
  transition: color 0.3s ease;
}
.banner-homepage .wrapper-banner-homepage .logo-banner .text-wrapper {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 20px;
  width: 100%;
  border-radius: 5px;
}
.banner-homepage .wrapper-banner-homepage .logo-banner .text-wrapper .discover-text {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-size: 1.375rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}
.banner-homepage .wrapper-banner-homepage .logo-banner .logo-text-banner {
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 11px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}
@media (min-width: 768px) {
  .banner-homepage .wrapper-banner-homepage .logo-banner .logo-text-banner {
    letter-spacing: 8px;
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .banner-homepage .wrapper-banner-homepage .logo-banner .logo-text-banner {
    font-size: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .banner-homepage .wrapper-banner-homepage .logo-banner .logo-text-banner {
    padding: 0rem 3rem;
    font-size: 2.5rem;
  }
}
.banner-homepage .wrapper-banner-homepage .logo-banner .logo-text-banner .goal-text {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  line-height: 50px;
  font-size: 1.5625rem;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .banner-homepage .wrapper-banner-homepage .logo-banner .logo-text-banner .goal-text {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .banner-homepage .wrapper-banner-homepage .logo-banner .logo-text-banner .goal-text {
    font-size: 2.5rem;
  }
}
.banner-homepage .wrapper-banner-homepage .logo-banner .logo-text-banner .goal-text span {
  color: #bfa573;
  display: block;
}

@media (max-width: 576px) {
  .banner-homepage .logo-banner .button-wrapper {
    flex-direction: column;
    gap: 1.25rem;
    padding: 0 1rem;
  }
  .banner-homepage .logo-banner .button-wrapper .btn-primary,
  .banner-homepage .logo-banner .button-wrapper .btn-secondary {
    max-width: 100%;
    width: 100%;
    padding: 0.75rem 1.5rem;
    min-height: 60px;
  }
  .banner-homepage .logo-banner .button-wrapper .btn-primary .btn-text,
  .banner-homepage .logo-banner .button-wrapper .btn-secondary .btn-text {
    font-size: 0.8125rem;
    line-height: 1.3;
    text-align: center;
    word-break: break-word;
    white-space: normal;
  }
  .banner-homepage .logo-banner .text-wrapper {
    padding: 15px;
    margin-bottom: 1.5rem;
  }
  .banner-homepage .logo-banner .text-wrapper .discover-text {
    font-size: 1rem;
  }
  .banner-homepage .logo-banner .logo-text-banner .goal-text {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .banner-homepage .logo-banner .button-wrapper {
    flex-direction: row;
    gap: 1.5rem;
  }
  .banner-homepage .logo-banner .button-wrapper .btn-primary,
  .banner-homepage .logo-banner .button-wrapper .btn-secondary {
    max-width: 200px;
    padding: 0.75rem 1rem;
  }
  .banner-homepage .logo-banner .button-wrapper .btn-primary .btn-text,
  .banner-homepage .logo-banner .button-wrapper .btn-secondary .btn-text {
    font-size: 0.9375rem;
  }
}
/*----------------------------------------------------------
1. Banner Homepage End
------------------------------------------------------------*/
/*----------------------------------------------------------
2. Future Start
------------------------------------------------------------*/
.homepage-future-section {
  background-color: #141414;
}

.homepage-future-heading {
  color: #bfa573;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px;
  text-transform: uppercase;
}

.homepage-future-text {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
}

.homepage-future-cta {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  padding: 0 15px;
  margin: 0 auto;
}

/*----------------------------------------------------------
2. Future End
------------------------------------------------------------*/
/*----------------------------------------------------------
3. Why Choose Start
------------------------------------------------------------*/
.why-choose {
  background-color: #000;
  overflow: hidden;
  padding: 55px 0;
}
.why-choose .row {
  margin: 0;
}
.why-choose .col-12.col-lg-6:last-child {
  padding-right: 0;
  display: flex;
  justify-content: flex-end;
}
.why-choose .col-12.col-lg-6.text-column .why-title {
  color: #bfa573;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 2rem;
  margin-left: 98px;
  margin-right: 67px;
}
.why-choose .col-12.col-lg-6.text-column .why-desc {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 2rem;
  margin-left: 98px;
  margin-right: 67px;
}
.why-choose .col-12.col-lg-6.text-column .why-cta {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-left: 98px;
  margin-right: 67px;
}
.why-choose .col-12.col-lg-6.image-column .why-image-container {
  height: 300px;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 992px) {
  .why-choose .col-12.col-lg-6.image-column .why-image-container {
    height: 413px;
    margin-right: 0;
  }
}
.why-choose .col-12.col-lg-6.image-column .why-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .why-choose {
    padding-top: 0;
  }
  .why-choose .row {
    flex-direction: column-reverse;
  }
  .why-choose .col-12.col-lg-6 {
    padding: 0;
  }
  .why-choose .col-12.col-lg-6.text-column {
    text-align: center;
  }
  .why-choose .col-12.col-lg-6.text-column .why-title,
  .why-choose .col-12.col-lg-6.text-column .why-desc,
  .why-choose .col-12.col-lg-6.text-column .why-cta {
    margin-left: 15px;
    margin-right: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .why-choose .col-12.col-lg-6.text-column .why-title {
    font-size: 24px;
  }
  .why-choose .col-12.col-lg-6.text-column .why-desc {
    font-size: 16px;
  }
  .why-choose .col-12.col-lg-6.text-column .why-cta {
    font-size: 18px;
  }
  .why-choose .col-12.col-lg-6.image-column {
    margin: 0;
    padding: 0;
  }
  .why-choose .col-12.col-lg-6.image-column .why-image-container {
    width: 100%;
    height: auto;
    position: relative;
    left: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
    overflow: hidden;
  }
  .why-choose .col-12.col-lg-6.image-column .why-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .why-choose .col-12.col-lg-6.text-column .why-title,
  .why-choose .col-12.col-lg-6.text-column .why-desc,
  .why-choose .col-12.col-lg-6.text-column .why-cta {
    margin-left: 15px;
    margin-right: 15px;
  }
  .why-choose .col-12.col-lg-6.text-column .why-title {
    font-size: 26px;
  }
  .why-choose .col-12.col-lg-6.text-column .why-desc {
    font-size: 17px;
  }
  .why-choose .col-12.col-lg-6.text-column .why-cta {
    font-size: 19px;
  }
}
@media (min-width: 992px) {
  .why-choose {
    padding-top: 55px;
  }
  .why-choose .row {
    flex-direction: row;
    align-items: center;
  }
  .why-choose .col-12.col-lg-6:last-child {
    padding-right: 0;
    display: flex;
    justify-content: flex-end;
  }
  .why-choose .col-12.col-lg-6.image-column .why-image-container {
    height: 413px;
    width: 100%;
    margin-right: 0;
    position: static;
    margin-bottom: 0;
  }
}

/*----------------------------------------------------------
3. Why Choose End
------------------------------------------------------------*/
/*----------------------------------------------------------
4. Newsletter Start
------------------------------------------------------------*/
.newsletter {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #fff;
}
.newsletter .newsletter-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.newsletter .newsletter-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
}
.newsletter .newsletter-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.newsletter .newsletter-content {
  position: relative;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 10rem;
}
.newsletter .newsletter-content .bg-title-something-big {
  background-color: #d9d9d9;
  padding: 2rem;
}
.newsletter .newsletter-content header {
  width: 100%;
  padding: 1rem;
  text-align: center;
  text-transform: uppercase;
}
.newsletter .newsletter-content header h1 {
  font-family: "Poppins", sans-serif;
  margin: 0;
  color: #000;
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px; /* 142.857% */
  text-transform: uppercase;
}
.newsletter .newsletter-content .lead-wrapper .lead {
  margin: 0;
  padding: 1rem 0;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 35px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
}
.newsletter .newsletter-content .newsletter-text {
  width: 100%;
  padding: 2rem;
}
.newsletter .newsletter-content .newsletter-text .col-md-6:last-child {
  text-align: left;
  padding-right: 110px;
  padding-left: 0;
}
.newsletter .newsletter-content .newsletter-text .countdown {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 35px;
  text-align: left;
}
.newsletter .newsletter-content .newsletter-text .description,
.newsletter .newsletter-content .newsletter-text .highlight {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px;
  text-align: left;
}
.newsletter .newsletter-content .newsletter-text .highlight-bold {
  font-weight: 700;
}
.newsletter .newsletter-content .newsletter-text .highlight-1 {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  text-align: left;
}
.newsletter .newsletter-content .mt-4 .col-md-6:last-child {
  position: relative;
  padding-top: 2rem;
  margin-left: 0;
  padding-bottom: 2rem;
  text-align: center;
}
.newsletter .newsletter-content .mt-4 .col-md-6:last-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 75px;
  bottom: 0;
  background: rgba(189, 160, 105, 0.54);
  z-index: -1;
}
.newsletter .newsletter-content .mt-4 .col-md-6:last-child .opportunity,
.newsletter .newsletter-content .mt-4 .col-md-6:last-child .signup,
.newsletter .newsletter-content .mt-4 .col-md-6:last-child .btn {
  padding-left: 46px;
  padding-right: 126px;
  margin: 0 auto;
  display: block;
  max-width: 600px;
}
.newsletter .newsletter-content .mt-4 .col-md-6:last-child .opportunity {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.newsletter .newsletter-content .mt-4 .col-md-6:last-child .signup {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 1rem;
}
.newsletter .newsletter-content .mt-4 .col-md-6:last-child .button-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-left: 46px;
  padding-right: 126px;
}
.newsletter .newsletter-content .mt-4 .col-md-6:last-child .button-wrapper .btn.custom-btn {
  margin: 35px auto;
  width: auto;
  min-width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #bda069;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
.newsletter .newsletter-content .mt-4 .col-md-6:last-child .button-wrapper .btn.custom-btn:hover {
  background-color: #fff;
}
@media (max-width: 767.98px) {
  .newsletter .newsletter-content {
    padding-bottom: 0 !important;
  }
  .newsletter .newsletter-bg video {
    object-fit: contain !important;
    object-position: center !important;
  }
  .newsletter header h1 {
    font-size: 26px;
    line-height: 36px;
  }
  .newsletter .lead-wrapper .lead {
    font-size: 20px;
    line-height: 28px;
  }
  .newsletter .newsletter-text {
    padding: 1rem !important;
  }
  .newsletter .newsletter-text .col-md-6:last-child {
    text-align: center !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .newsletter .newsletter-text .countdown {
    font-size: 22px !important;
    line-height: 30px !important;
    text-align: center !important;
  }
  .newsletter .newsletter-text .description,
  .newsletter .newsletter-text .highlight,
  .newsletter .newsletter-text .highlight-1 {
    font-size: 18px !important;
    line-height: 28px !important;
    padding: 0 10px !important;
    text-align: center !important;
  }
  .newsletter .mt-4 {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .newsletter .mt-4 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  .newsletter .mt-4 .col-md-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .newsletter .mt-4 .col-md-6:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .newsletter .mt-4 .col-md-6:last-child::before {
    right: 0 !important;
    left: 0 !important;
  }
  .newsletter .mt-4 .col-md-6:last-child .opportunity,
  .newsletter .mt-4 .col-md-6:last-child .signup,
  .newsletter .mt-4 .col-md-6:last-child .btn {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .newsletter .mt-4 .col-md-6:last-child .button-wrapper {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
  }
  .newsletter .mt-4 .col-md-6:last-child .button-wrapper .btn.custom-btn {
    margin: 20px auto !important;
    min-width: 85% !important;
    max-width: 85% !important;
    font-size: 20px !important;
    padding: 15px 10px !important;
  }
}
@media (max-width: 599px) {
  .newsletter .mt-4 {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .newsletter .mt-4 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  .newsletter .mt-4 .col-md-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .newsletter .mt-4 .col-md-6:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .newsletter .mt-4 .col-md-6:last-child::before {
    right: 0 !important;
    left: 0 !important;
  }
  .newsletter .mt-4 .col-md-6:last-child .opportunity,
  .newsletter .mt-4 .col-md-6:last-child .signup,
  .newsletter .mt-4 .col-md-6:last-child .btn {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .newsletter .mt-4 .col-md-6:last-child .button-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }
  .newsletter .mt-4 .col-md-6:last-child .button-wrapper .btn.custom-btn {
    margin: 20px auto !important;
    min-width: 80% !important;
    max-width: 80% !important;
    font-size: 20px !important;
    padding: 15px 10px !important;
  }
}
@media (max-width: 430px) {
  .newsletter .mt-4 {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .newsletter .mt-4 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  .newsletter .mt-4 .col-md-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .newsletter .mt-4 .col-md-6:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .newsletter .mt-4 .col-md-6:last-child::before {
    right: 0 !important;
    left: 0 !important;
  }
  .newsletter .mt-4 .col-md-6:last-child .opportunity,
  .newsletter .mt-4 .col-md-6:last-child .signup,
  .newsletter .mt-4 .col-md-6:last-child .btn {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .newsletter .mt-4 .col-md-6:last-child .button-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }
  .newsletter .mt-4 .col-md-6:last-child .button-wrapper .btn.custom-btn {
    margin: 20px auto !important;
    min-width: 90% !important;
    max-width: 90% !important;
    font-size: 24px !important;
    padding: 15px 5px !important;
  }
}

/*----------------------------------------------------------
4. Newsletter End
------------------------------------------------------------*/
/*----------------------------------------------------------
5. Earning Section Start
------------------------------------------------------------*/
.earning-title {
  background-color: #1e1e1e;
  padding: 20px 0;
}
.earning-title .container {
  position: relative;
  z-index: 2;
}
.earning-title .title-wrapper {
  background-color: transparent;
  text-align: center;
}
.earning-title .title-wrapper .title {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 800px;
}
.earning-title .title-wrapper .subtitle {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 144.687%;
  margin: 10px auto 0;
  max-width: 700px;
}
@media (max-width: 767.98px) {
  .earning-title {
    padding: 15px 0;
  }
  .earning-title .title-wrapper .title {
    font-size: 30px;
    line-height: 40px;
  }
  .earning-title .title-wrapper .subtitle {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (max-width: 575.98px) {
  .earning-title .title-wrapper .title {
    font-size: 24px;
    line-height: 30px;
  }
  .earning-title .title-wrapper .subtitle {
    font-size: 16px;
  }
}

.earning-section {
  position: relative;
  background-color: #1e1e1e;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  overflow: visible;
}
.earning-section .earning-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.earning-section .earning-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.earning-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 115px 0;
  margin: 0 auto;
}
.earning-section .cards-container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 25px;
  background: none;
}
.earning-section .cards-container .custom-card {
  border: 1px solid #000;
  background: rgba(0, 0, 0, 0.76);
  border: 1px solid #bfa573;
  overflow: hidden;
  padding: 3rem;
  margin-bottom: 1rem;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.earning-section .cards-container .divider {
  width: 80%;
  height: 4px;
  background: #e98c1b;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin: 1rem auto;
  text-align: center;
  align-self: flex-start;
}
.earning-section .cards-container .card-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  line-height: 144.687%;
}
.earning-section .button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.earning-section .cta {
  max-width: 333px;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
  text-transform: uppercase;
  border-radius: 5px;
  border: 0.5px solid #fff;
  background: #000;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.earning-section .cta:hover {
  color: #000;
  border: 0.5px solid #bda069;
  background: #bda069;
  border-radius: 5px;
}
@media (max-width: 1199.98px) {
  .earning-section {
    min-height: auto;
    padding-bottom: 50px;
  }
  .earning-section .earning-bg {
    height: 100%;
  }
  .earning-section .earning-bg video {
    height: 100%;
  }
  .earning-section .container {
    padding: 50px 15px 0;
  }
  .earning-section .cards-container {
    padding: 15px 0;
  }
  .earning-section .cards-container .custom-card {
    padding: 2rem;
    min-height: 400px;
  }
}
@media (max-width: 991.98px) and (min-width: 768px) {
  .earning-section .cards-container .row {
    display: flex;
  }
  .earning-section .cards-container .row .col-md-6 {
    display: flex;
  }
  .earning-section .cards-container .row .custom-card {
    flex: 1;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.75rem;
  }
  .earning-section .cards-container .row .custom-card .card-text {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media (max-width: 767.98px) {
  .earning-section .container {
    padding: 30px 10px 0;
  }
  .earning-section .earning-bg video {
    object-fit: cover;
  }
  .earning-section .cards-container {
    padding: 10px 0;
  }
  .earning-section .cards-container .custom-card {
    padding: 1.5rem;
    min-height: 300px;
    margin-bottom: 0.75rem;
  }
  .earning-section .cards-container .card-text {
    font-size: 18px;
  }
  .earning-section .cta {
    font-size: 15px;
    padding: 10px 20px;
  }
}
@media (max-width: 575.98px) {
  .earning-section .cards-container .custom-card {
    padding: 1.25rem;
    min-height: 250px;
    box-shadow: 0px 4px 10px 5px #fff;
  }
  .earning-section .cards-container .card-text {
    font-size: 16px;
    line-height: 1.5;
  }
}

/*----------------------------------------------------------
5. Earning Section End
------------------------------------------------------------*/
/*----------------------------------------------------------
6. Service Start
------------------------------------------------------------*/
.service-homepage {
  position: relative;
  margin: 0;
  padding-bottom: 30px;
  background: #000;
}
.service-homepage .container {
  padding: 0 28px;
}
.service-homepage .container .row {
  margin: 0 -12px;
}
.service-homepage .col-12.col-lg-6 {
  padding: 0 100px;
}
.service-homepage .col-12.col-lg-6:first-child {
  padding-right: 40px;
}
.service-homepage .col-12.col-lg-6:last-child {
  padding-left: 40px;
}
.service-homepage .col-12.col-lg-6:last-child .service-cards {
  justify-content: flex-start;
}
.service-homepage .section-title-bg {
  width: 100%;
  padding: 30px 0;
  background: #d9d9d9;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 30px;
}
.service-homepage .section-title {
  position: relative;
  z-index: 2;
  color: #000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  margin: 0;
}
.service-homepage .service-cards {
  display: flex;
  flex-direction: column;
  gap: 75px;
  margin-top: 50px;
}
.service-homepage .service-card {
  border-radius: 5px;
  background: #000;
  padding: 24px;
  min-height: 200px;
  position: relative;
  margin: 0 5px;
  border: 1px solid #d1b06b;
}
.service-homepage .service-card .row {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.service-homepage .service-card .row .col-3 {
  width: auto;
  position: relative;
}
.service-homepage .service-card .row .col-9 {
  width: calc(100% - 80px);
  padding-left: 65px;
  margin-top: 20px;
}
.service-homepage .service-card .service-image {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  overflow: visible;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.service-homepage .service-card .service-image img {
  width: 125px;
  height: 125px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
@media (min-width: 567px) {
  .service-homepage .service-card .service-image img {
    width: 100px;
    height: 100px;
  }
}
.service-homepage .service-card .service-title {
  color: #d1b06b;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.service-homepage .service-card .service-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: lowercase;
  margin-bottom: 20px;
}
.service-homepage .service-card .service-description::first-letter {
  text-transform: uppercase;
}
.service-homepage .service-card .service-btn {
  color: #000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
  border-radius: 5px;
  background: #bfa573;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 3px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  min-height: 45px;
}
@media (min-width: 992px) {
  .service-homepage .row {
    margin: 0 -12px;
  }
  .service-homepage .col-lg-6 {
    padding: 0 12px;
  }
}
@media (max-width: 991.98px) {
  .service-homepage .container {
    padding: 0 15px;
  }
  .service-homepage .col-12.col-lg-6 {
    padding: 0 15px;
  }
  .service-homepage .col-12.col-lg-6:first-child {
    padding-right: 15px;
  }
  .service-homepage .col-12.col-lg-6:last-child {
    padding-left: 15px;
  }
  .service-homepage .service-card .row .col-9 {
    padding-left: 55px;
  }
  .service-homepage .service-card .service-title {
    font-size: 22px;
    line-height: 26px;
  }
  .service-homepage .service-card .service-description {
    font-size: 14px;
    line-height: 22px;
  }
  .service-homepage .service-card .service-btn {
    min-width: 250px;
    min-height: 40px;
  }
}
@media (max-width: 767.98px) {
  .service-homepage .container {
    padding: 0 10px;
  }
  .service-homepage .col-12.col-lg-6 {
    padding: 0 20px;
  }
  .service-homepage .col-12.col-lg-6:first-child {
    padding-right: 20px;
  }
  .service-homepage .col-12.col-lg-6:last-child {
    padding-left: 20px;
  }
  .service-homepage .service-card .row .col-9 {
    padding-left: 45px;
    margin-top: 15px;
  }
  .service-homepage .service-card .service-title {
    font-size: 20px;
    line-height: 24px;
  }
  .service-homepage .service-card .service-description {
    font-size: 13px;
    line-height: 20px;
  }
  .service-homepage .service-card .service-btn {
    min-width: 200px;
    min-height: 35px;
    font-size: 12px;
  }
}

/*----------------------------------------------------------
6. Service End
------------------------------------------------------------*/
/*----------------------------------------------------------
7. Who We Are Start
------------------------------------------------------------*/
.who-we-are {
  margin-top: 100px;
}
.who-we-are .container {
  background: #141414;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 100%;
  margin: 0;
}
.who-we-are .section-title-bg {
  width: 100%;
  padding: 30px 0;
  background: #d9d9d9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.who-we-are .section-title {
  color: #000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
.who-we-are .who-image {
  position: relative;
  left: 0;
  width: 100%;
  height: 100%;
}
.who-we-are .who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.who-we-are .who-content {
  padding: 20px;
}
.who-we-are .who-content .who-title {
  color: #bfa573;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 40px;
  text-transform: capitalize;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}
.who-we-are .who-content .who-title .title-main {
  white-space: normal;
  margin-bottom: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.who-we-are .who-content .who-title .subtitle {
  display: block;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
  text-transform: capitalize;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.who-we-are .who-content .who-description p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.who-we-are .who-content .who-description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .who-we-are .section-title {
    font-size: 32px;
    line-height: 36px;
  }
  .who-we-are .who-content .who-title {
    font-size: 26px;
    line-height: 32px;
  }
  .who-we-are .who-content .who-title .subtitle {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 767.98px) {
  .who-we-are {
    margin-top: 50px;
  }
  .who-we-are .section-title-bg {
    padding: 20px 0;
  }
  .who-we-are .section-title {
    font-size: 28px;
    line-height: 32px;
  }
  .who-we-are .who-content {
    padding: 15px;
  }
  .who-we-are .who-content .who-title {
    font-size: 24px;
    line-height: 30px;
  }
  .who-we-are .who-content .who-title .subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .who-we-are .who-content .who-description p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 575.98px) {
  .who-we-are {
    margin-top: 30px;
  }
  .who-we-are .section-title {
    font-size: 24px;
    line-height: 28px;
    padding: 0 10px;
  }
  .who-we-are .who-content {
    padding: 10px;
  }
  .who-we-are .who-content .who-title {
    font-size: 22px;
    line-height: 28px;
  }
  .who-we-are .who-content .who-title .title-main {
    font-size: 20px;
  }
  .who-we-are .who-content .who-title .subtitle {
    font-size: 16px;
    line-height: 22px;
  }
  .who-we-are .who-content .who-description p {
    font-size: 14px;
    line-height: 22px;
  }
}

/*----------------------------------------------------------
7. Who We Are End
------------------------------------------------------------*/
/*----------------------------------------------------------
8. Quotes Start
------------------------------------------------------------*/
.quotes {
  position: relative;
  padding: 150px 0;
}
.quotes .quotes-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.quotes .quotes-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quotes .quotes-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.quotes .container {
  position: relative;
  z-index: 2;
}
.quotes .quotes-content {
  max-width: 748px;
  margin: 0 auto;
  text-align: center;
}
.quotes .quote-text {
  color: #fff;
  text-align: center;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke: 1.5px rgba(56, 55, 52, 0.76);
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 900;
  line-height: 40px;
  margin: 0;
}

/*----------------------------------------------------------
8. Quotes End
------------------------------------------------------------*/
/*----------------------------------------------------------
9. Invest Start
------------------------------------------------------------*/
.invest {
  position: relative;
  background-color: #fff;
  min-height: 400px;
  z-index: 2;
}
.invest .invest-title-wrapper {
  background-color: #bfa573;
  padding: 20px 0;
  width: 100%;
  position: relative;
  top: 0;
}
.invest .invest-title-wrapper .invest-title {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  text-transform: uppercase;
  margin: 0;
}
.invest .invest-title-wrapper .invest-title .dark {
  color: #000;
  display: inline-block;
}
.invest .invest-title-wrapper .invest-title .light {
  color: #fff;
  display: inline-block;
}
.invest .invest-content {
  padding: 40px 0;
  max-width: 795px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-bottom: calc(100px + var(--content-overflow, 0px));
}
.invest .invest-content .invest-description {
  color: #000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 30px;
}
.invest .invest-content .invest-cta {
  color: #000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  margin: 0;
}

.cards-section {
  position: relative;
  background-color: #000;
  min-height: 400px;
  margin-top: -250px;
  padding-bottom: 100px;
}
.cards-section .container {
  position: relative;
  padding-top: 180px;
}
.cards-section .cards-wrapper {
  position: relative;
  display: flex;
  gap: 30px;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  z-index: 3;
}
.cards-section .cards-wrapper .card {
  flex: 1;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.cards-section .cards-wrapper .card.dark-card {
  border-radius: 5px;
  background: #1e1e1e;
}
.cards-section .cards-wrapper .card.dark-card .card-title {
  color: #fff;
}
.cards-section .cards-wrapper .card.light-card {
  border-radius: 5px;
  background: #ccb78f;
}
.cards-section .cards-wrapper .card.light-card .card-title {
  color: #000;
}
.cards-section .cards-wrapper .card .card-title {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  text-transform: uppercase;
}
.cards-section .cards-wrapper .card .card-image {
  max-width: 100%;
  height: auto;
  margin-top: 15px;
}
@media (max-width: 991.98px) {
  .cards-section {
    background-color: #fff;
    margin-top: -200px;
    padding-bottom: 70px;
  }
  .cards-section .container {
    padding-top: 150px;
  }
  .cards-section .cards-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .cards-section .cards-wrapper .card {
    min-height: 180px;
    padding: 25px;
  }
  .cards-section .cards-wrapper .card.dark-card {
    background: #1e1e1e;
  }
  .cards-section .cards-wrapper .card.dark-card .card-title {
    color: #fff;
  }
  .cards-section .cards-wrapper .card.dark-card:hover {
    box-shadow: 0px 4px 15px 5px rgba(189, 160, 105, 0.7);
  }
  .cards-section .cards-wrapper .card.light-card {
    background: #ccb78f;
  }
  .cards-section .cards-wrapper .card.light-card:hover {
    box-shadow: 0px 4px 15px 5px rgba(255, 255, 255, 0.7);
  }
  .cards-section .cards-wrapper .card .card-title {
    font-size: 18px;
    line-height: 30px;
  }
  .cards-section .cards-wrapper .card .card-image {
    max-width: 80%;
    margin-top: 10px;
  }
}
@media (max-width: 767.98px) {
  .cards-section {
    margin-top: -180px;
    padding-bottom: 60px;
  }
  .cards-section .container {
    padding-top: 130px;
  }
  .cards-section .cards-wrapper {
    gap: 15px;
  }
  .cards-section .cards-wrapper .card {
    min-height: 160px;
    padding: 20px;
  }
  .cards-section .cards-wrapper .card .card-title {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 575.98px) {
  .cards-section {
    margin-top: -150px;
    padding-bottom: 50px;
  }
  .cards-section .container {
    padding-top: 110px;
  }
  .cards-section .cards-wrapper {
    gap: 10px;
  }
  .cards-section .cards-wrapper .card {
    min-height: 140px;
    padding: 15px;
  }
  .cards-section .cards-wrapper .card .card-title {
    font-size: 14px;
    line-height: 22px;
  }
  .cards-section .cards-wrapper .card .card-image {
    max-width: 70%;
    margin-top: 8px;
  }
}

/*----------------------------------------------------------
9. Invest End
------------------------------------------------------------*/
/*----------------------------------------------------------
10. First Step Start
------------------------------------------------------------*/
.first-steps {
  position: relative;
  height: auto;
  min-height: 637px;
  background-color: transparent;
  overflow: visible;
  margin-bottom: 50px;
}
.first-steps .first-steps-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.first-steps .first-steps-bg .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.first-steps .container {
  position: relative;
  z-index: 2;
  max-width: 746px;
  height: auto;
  margin: 0 auto;
  padding: 50px 0;
  margin-left: 25%;
  margin-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.first-steps .content-box {
  border: 1px solid #000;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 30px 40px 50px;
  position: relative;
  margin-bottom: 40px;
  border-radius: 5px;
  width: 100%;
  height: auto;
  min-height: auto;
}
.first-steps .title {
  color: #bfa573;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.first-steps .description {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 30px;
  padding: 0 20px;
}
.first-steps .cta-button {
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  border-radius: 5px;
  background: #bfa573;
  color: #000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  min-width: 300px;
  z-index: 10;
}
.first-steps .cta-button:hover {
  color: #fff;
}
.first-steps .logo-big {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 2;
  display: block;
}
.first-steps .logo-big .logo-image {
  max-width: 150px;
  height: auto;
}
@media (max-width: 991.98px) {
  .first-steps {
    min-height: auto;
    margin-bottom: 40px;
  }
  .first-steps::after {
    height: 40px;
  }
  .first-steps .container {
    margin: 0 auto;
    padding: 40px 20px;
    max-width: 100%;
  }
  .first-steps .content-box {
    padding: 25px 20px 40px;
    min-height: auto;
    background: rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
  }
  .first-steps .title {
    font-size: 28px;
    line-height: 36px;
  }
  .first-steps .description {
    font-size: 18px;
    line-height: 28px;
    padding: 0 10px;
  }
  .first-steps .cta-button {
    min-width: 250px;
    font-size: 16px;
    padding: 12px 20px;
    bottom: -22px;
  }
  .first-steps .logo-big {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .first-steps {
    margin-bottom: 35px;
  }
  .first-steps::after {
    height: 35px;
  }
  .first-steps .container {
    padding: 30px 15px;
  }
  .first-steps .content-box {
    padding: 20px 15px 40px;
    background: rgba(0, 0, 0, 0.6);
    margin-bottom: 25px;
  }
  .first-steps .title {
    font-size: 24px;
    line-height: 32px;
  }
  .first-steps .description {
    font-size: 16px;
    line-height: 26px;
  }
  .first-steps .cta-button {
    min-width: 220px;
    font-size: 14px;
    padding: 10px 15px;
    bottom: -20px;
  }
}
@media (max-width: 575.98px) {
  .first-steps {
    margin-bottom: 30px;
  }
  .first-steps::after {
    height: 30px;
  }
  .first-steps .container {
    padding: 20px 10px;
  }
  .first-steps .content-box {
    padding: 15px 10px 35px;
    background: rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
  }
  .first-steps .title {
    font-size: 22px;
    line-height: 28px;
  }
  .first-steps .description {
    font-size: 14px;
    line-height: 22px;
    padding: 0 5px;
  }
  .first-steps .cta-button {
    min-width: 200px;
    font-size: 13px;
    padding: 8px 12px;
    bottom: -18px;
  }
}

/*----------------------------------------------------------
10. First Step End
------------------------------------------------------------*/
.newsletter-card-section {
  background: #000;
  padding: 50px 0;
}
.newsletter-card-section .container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1200px;
}
.newsletter-card-section .newsletter-card {
  background: #fff;
  padding: 30px;
  min-height: 350px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newsletter-card-section .newsletter-card .card-title {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px; /* 93.75% */
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .newsletter-card-section .newsletter-card .card-title {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media (max-width: 566px) {
  .newsletter-card-section .newsletter-card .card-title {
    font-size: 24px;
  }
}
.newsletter-card-section .newsletter-card .card-description {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px; /* 150% */
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .newsletter-card-section .newsletter-card .card-description {
    font-size: 18px;
    line-height: 1.5;
    padding: 0 10px;
  }
}
@media (max-width: 566px) {
  .newsletter-card-section .newsletter-card .card-description {
    font-size: 16px;
    padding: 0;
  }
}
.newsletter-card-section .newsletter-card .newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 566px) {
  .newsletter-card-section .newsletter-card .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
}
.newsletter-card-section .newsletter-card .newsletter-form input {
  border: none;
  padding: 10px;
  border-radius: 5px;
  background: #d4d0d0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  width: 60%;
  min-height: 50px;
}
@media (max-width: 767px) {
  .newsletter-card-section .newsletter-card .newsletter-form input {
    width: 70%;
  }
}
@media (max-width: 566px) {
  .newsletter-card-section .newsletter-card .newsletter-form input {
    width: 100%;
    margin-bottom: 10px;
  }
}
.newsletter-card-section .newsletter-card .newsletter-form button {
  border: none;
  border-radius: 5px;
  background: #bfa573;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 150% */
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 566px) {
  .newsletter-card-section .newsletter-card .newsletter-form button {
    width: 100%;
    font-size: 18px;
  }
}
.newsletter-card-section .newsletter-card .newsletter-form button:hover {
  background: rgb(175, 142.5, 80);
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .newsletter-card-section .newsletter-card {
    min-height: 300px;
    padding: 25px 20px;
  }
}
@media (max-width: 566px) {
  .newsletter-card-section .newsletter-card {
    min-height: auto;
    padding: 20px 15px;
  }
}
@media (max-width: 767px) {
  .newsletter-card-section {
    padding: 40px 0;
  }
}
@media (max-width: 566px) {
  .newsletter-card-section {
    padding: 30px 0;
  }
}

/*----------------------------------------------------------
    File Name  : _service.scss
    Desc       : File ini merupakan styling untuk seluruh service

------------------------------------------------------------*/
/**
 * TABLE OF CONTENTS
 *
 * 1. Banner All Service
 * 2. General Service
 * 3. Finance Advice
 * 4. Strategic Tax
 * 5. Legal
 * 6. Training 
 * 7. Blockchain
 * 8. Satoshi
 * 9. Connection
 *
 */
/*----------------------------------------------------------
1. Banner All Service Start
------------------------------------------------------------*/
.banner-service {
  position: relative;
  overflow: hidden;
}
.banner-service .wrapper-service {
  display: flex;
  min-height: 100vh;
  position: relative;
}
.banner-service .wrapper-service video {
  width: 100%;
  min-height: 100vh !important;
  position: absolute;
  z-index: 1;
  object-fit: cover;
  object-position: 50% 50%;
}
.banner-service .wrapper-service .img-banner {
  width: 100%;
  min-height: 100vh !important;
  position: absolute;
  z-index: 1;
  object-fit: cover;
  object-position: 50% 50%;
}
.banner-service .wrapper-service .download-video {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.banner-service .wrapper-service .download-video h1 {
  color: #ffffff;
  text-align: center;
}
.banner-service .wrapper-service .download-video .button-download {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.banner-service .wrapper-service .download-video .button-download .top {
  margin-top: 0.5rem;
  /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); */
  /* .btn-download {
       @include mix.animation-reveal;
  } */
}
.banner-service .wrapper-service .download-video .button-download .bottom {
  /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); */
  /* .btn-download {
       @include mix.animation-reveal;
  } */
}
.banner-service .wrapper-service .download-video .button-download .btn-download {
  padding: 0.5rem;
  width: 140px;
}
@media (min-width: 375px) {
  .banner-service .wrapper-service .download-video .button-download .btn-download {
    width: 165px;
  }
}
@media (min-width: 1200px) {
  .banner-service .wrapper-service .download-video .button-download .btn-download {
    width: 210px;
  }
}
.banner-service .wrapper-service .banner-text-video {
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: start;
  align-items: end;
  margin-bottom: 4rem;
}
.banner-service .wrapper-service .banner-text-video .bg-text-video {
  border-radius: 0px 5px 5px 0px;
  -webkit-border-radius: 0px 5px 5px 0px;
  -moz-border-radius: 0px 5px 5px 0px;
  -ms-border-radius: 0px 5px 5px 0px;
  -o-border-radius: 0px 5px 5px 0px;
  padding: 1rem 3rem;
  font-weight: 700;
}
.banner-service .wrapper-service .banner-text-video .bg-text-video.finance {
  background: rgba(56, 55, 52, 0.82);
  color: #bfa573;
}
.banner-service .wrapper-service .banner-text-video .bg-text-video.strategic {
  background: rgba(106, 98, 91, 0.86);
  color: #e8d9bd;
}
.banner-service .wrapper-service .banner-text-video .bg-text-video.international {
  background: rgba(149, 125, 76, 0.81);
  color: #ffffff;
}
.banner-service .wrapper-service .banner-text-video .bg-text-video.legal {
  background: rgba(106, 98, 91, 0.86);
  color: #e8d9bd;
  padding: 2rem 3rem;
}
.banner-service .wrapper-service .banner-text-video .bg-text-video.training {
  background: rgba(191, 165, 115, 0.8);
  color: #1e1e1e;
}
.banner-service .wrapper-service .banner-text-video .bg-text-video.blockchain {
  background: #1e1e1e;
  color: #ffffff;
}
.banner-service .wrapper-service .banner-text-video .bg-text-video.satoshi {
  background: #ccb78f;
  color: #383734;
}
.banner-service .wrapper-service .banner-text-video .bg-text-video.satoshi h2 {
  font-weight: 700;
}
.banner-service .wrapper-service .banner-text-video .bg-text-video.connection {
  background: #d7d7d7;
  color: #383734;
  padding: 1.5rem 3rem !important;
}

/*----------------------------------------------------------
1. Banner All Service End
------------------------------------------------------------*/
/*----------------------------------------------------------
2. General Service Start
------------------------------------------------------------*/
.service {
  overflow-x: hidden;
  margin-bottom: 4rem;
}
.service .box-service {
  border-radius: 10px;
  padding: 2rem;
}
@media (min-width: 768px) {
  .service .box-service {
    padding: 4rem;
  }
}
.service .box-service.right {
  margin-left: 5rem;
}
@media (min-width: 1200px) {
  .service .box-service.right {
    margin-left: 6rem;
  }
}
@media (min-width: 1400px) {
  .service .box-service.right {
    margin-left: 15rem;
  }
}
.service .box-service.left {
  margin-right: 5rem;
}
@media (min-width: 1200px) {
  .service .box-service.left {
    margin-right: 6rem;
  }
}
@media (min-width: 1400px) {
  .service .box-service.left {
    margin-right: 15rem;
  }
}
.service .box-service.black {
  background-color: #1e1e1e;
  margin-top: 0rem;
}
@media (min-width: 992px) {
  .service .box-service.black {
    margin-top: 8rem;
  }
}
.service .box-service.black .box-content {
  background-color: #585858;
  border-radius: 10px;
  padding: 1.5rem;
}
@media (min-width: 1200px) {
  .service .box-service.black .box-content {
    padding: 3rem;
  }
}
.service .box-service.black .box-content .box-content-title {
  color: #bfa573;
  text-transform: uppercase;
}
.service .box-service.black .box-content .box-content-subtitle {
  color: #ffffff;
  font-weight: 300;
  margin-top: 1rem;
}
.service .box-service.black .box-content .box-content-text {
  color: #ffffff;
  margin-top: 1rem;
  line-height: 30px;
  text-align: justify;
  padding-right: 0;
}
@media (min-width: 768px) {
  .service .box-service.black .box-content .box-content-text {
    padding-right: 4rem;
  }
}
.service .box-service.gold {
  background-color: #bfa573;
  margin-top: 2rem;
}
.service .box-service.gold .box-content {
  background-color: rgba(217, 217, 217, 0.31);
  border-radius: 10px;
  padding: 1.5rem;
}
@media (min-width: 1200px) {
  .service .box-service.gold .box-content {
    padding: 3rem;
  }
}
.service .box-service.gold .box-content .box-content-title {
  color: #756147;
}
.service .box-service.gold .box-content .box-content-subtitle {
  margin-top: 1rem;
  color: #6a625b;
}
.service .box-service.gold .box-content .box-content-text {
  color: #6a625b;
  margin-top: 1rem;
  line-height: 30px;
  text-align: justify;
  padding-right: 0;
}
@media (min-width: 768px) {
  .service .box-service.gold .box-content .box-content-text {
    padding-right: 4rem;
  }
}
.service .box-service.brownis {
  background-color: #b2a291;
  border-radius: 0px 10px 10px 0px;
  margin-top: 2.5rem;
  padding: 2rem;
}
.service .box-service.brownis .wrapping-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: start;
}
@media (min-width: 992px) {
  .service .box-service.brownis .wrapping-title {
    align-items: center;
  }
}
.service .box-service.brownis .wrapping-title .box-content-title {
  color: #ffffff;
  text-transform: uppercase;
}
.service .box-service.brownis .wrapping-title .box-content-title hr {
  margin-top: 2rem;
  width: 70% !important;
  height: 3px;
  color: #6a625b;
  background-color: #6a625b;
  opacity: 1;
}
.service .box-service.brownis .box-content .box-content-subtitle {
  padding: 0rem 0rem;
}
@media (min-width: 1200px) {
  .service .box-service.brownis .box-content .box-content-subtitle {
    padding: 0rem 3rem;
  }
}
.service .box-service.brownis .box-content .box-content-text {
  line-height: 25px;
  padding: 1rem 0rem 0rem 0rem;
}
@media (min-width: 1200px) {
  .service .box-service.brownis .box-content .box-content-text {
    padding: 2rem 3rem 2rem 3rem;
  }
}
.service .box-service.brown-strategic {
  background-color: #ab8d6d;
  margin-top: 1rem;
  border-radius: 0px 10px 10px 0px;
  padding: 2rem 2rem 4rem 2rem;
}
.service .box-service.brown-strategic .wrapping-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: start;
}
@media (min-width: 992px) {
  .service .box-service.brown-strategic .wrapping-title {
    align-items: center;
  }
}
.service .box-service.brown-strategic .wrapping-title .box-content-title {
  color: #ffffff;
  text-transform: uppercase;
}
.service .box-service.brown-strategic .wrapping-title .box-content-title hr {
  margin-top: 2rem;
  width: 80% !important;
  height: 3px;
  color: #bfa573;
  background-color: #bfa573;
  opacity: 1;
}
.service .box-service.brown-strategic .box-content .box-content-subtitle {
  padding: 0rem 0rem;
}
@media (min-width: 1200px) {
  .service .box-service.brown-strategic .box-content .box-content-subtitle {
    padding: 0rem 3rem;
  }
}
.service .box-service.brown-strategic .box-content .box-content-text {
  line-height: 25px;
  padding: 1rem 0rem 0rem 0rem;
}
@media (min-width: 1200px) {
  .service .box-service.brown-strategic .box-content .box-content-text {
    padding: 2rem 3rem 0rem 3rem;
  }
}
.service .box-service.gold-international {
  background-color: #bfa573;
  margin-top: 2rem;
  border-radius: 0px 10px 10px 0px;
  padding: 2rem 2rem 4rem 2rem;
}
.service .box-service.gold-international .wrapping-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: start;
}
@media (min-width: 992px) {
  .service .box-service.gold-international .wrapping-title {
    align-items: center;
  }
}
.service .box-service.gold-international .wrapping-title .box-content-title {
  color: #ffffff;
  text-transform: uppercase;
}
.service .box-service.gold-international .wrapping-title .box-content-title hr {
  margin-top: 1rem;
  width: 80% !important;
  height: 3px;
  color: #1e1e1e;
  background-color: #1e1e1e;
  opacity: 1;
}
.service .box-service.gold-international .box-content .box-content-subtitle {
  padding: 0rem 0rem;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .service .box-service.gold-international .box-content .box-content-subtitle {
    padding: 0rem 3rem;
  }
}
.service .box-service.gold-international .box-content .box-content-text {
  line-height: 25px;
  padding: 1rem 0rem 0rem 0rem;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .service .box-service.gold-international .box-content .box-content-text {
    padding: 2rem 3rem 0rem 3rem;
  }
}
.service .box-service.black-international {
  background-color: #1e1e1e;
  margin-top: 0rem;
  border-radius: 10px 0px 0px 10px;
  padding: 3rem 2rem 4rem 0rem;
}
.service .box-service.black-international .wrapping-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: start;
}
@media (min-width: 992px) {
  .service .box-service.black-international .wrapping-title {
    align-items: center;
  }
}
.service .box-service.black-international .wrapping-title .box-content-title {
  color: #ffffff;
  text-transform: uppercase;
  text-align: start;
}
@media (min-width: 992px) {
  .service .box-service.black-international .wrapping-title .box-content-title {
    text-align: end;
  }
}
.service .box-service.black-international .wrapping-title .box-content-title hr {
  margin-top: 1rem;
  width: 80% !important;
  height: 3px;
  color: #bfa573;
  background-color: #bfa573;
  opacity: 1;
  margin-left: 0;
}
@media (min-width: 992px) {
  .service .box-service.black-international .wrapping-title .box-content-title hr {
    margin-left: auto;
  }
}
.service .box-service.black-international .box-content .box-content-subtitle {
  padding: 0rem 0rem;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .service .box-service.black-international .box-content .box-content-subtitle {
    padding: 0rem 3rem;
  }
}
.service .box-service.black-international .box-content .box-content-text {
  line-height: 25px;
  padding: 1rem 0rem 0rem 0rem;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .service .box-service.black-international .box-content .box-content-text {
    padding: 2rem 3rem 0rem 3rem;
  }
}
.service .box-service.brownis-international {
  background-color: #b2a291;
  margin-top: 0rem;
  border-radius: 0px 10px 10px 0px;
  padding: 2rem 2rem 4rem 2rem;
}
.service .box-service.brownis-international .wrapping-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: start;
}
@media (min-width: 992px) {
  .service .box-service.brownis-international .wrapping-title {
    align-items: center;
  }
}
.service .box-service.brownis-international .wrapping-title .box-content-title {
  color: #ffffff;
  text-transform: uppercase;
}
.service .box-service.brownis-international .wrapping-title .box-content-title hr {
  margin-top: 1rem;
  width: 80% !important;
  height: 3px;
  color: #1e1e1e;
  background-color: #1e1e1e;
  opacity: 1;
}
.service .box-service.brownis-international .box-content .box-content-subtitle {
  padding: 0rem 0rem;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .service .box-service.brownis-international .box-content .box-content-subtitle {
    padding: 0rem 3rem;
  }
}
.service .box-service.brownis-international .box-content .box-content-text {
  line-height: 25px;
  padding: 1rem 0rem 0rem 0rem;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .service .box-service.brownis-international .box-content .box-content-text {
    padding: 2rem 3rem 0rem 3rem;
  }
}
.service .box-service.brown-legal {
  background-color: #7c6553;
  margin-top: 0rem;
  border-radius: 10px 0px 0px 10px;
  padding: 1rem !important;
}
.service .box-service.brown-legal .wrapping-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-top: 1rem;
}
@media (min-width: 992px) {
  .service .box-service.brown-legal .wrapping-title {
    align-items: center;
    margin-top: 5rem;
  }
}
.service .box-service.brown-legal .wrapping-title .box-content-title {
  color: #ffffff;
  text-transform: uppercase;
  text-align: start;
}
.service .box-service.brown-legal .wrapping-title .box-content-title hr {
  margin-top: 1rem;
  width: 140% !important;
  height: 3px;
  color: #bfa573;
  background-color: #bfa573;
  opacity: 1;
  margin-left: 0;
}
.service .box-service.brown-legal .box-content .box-content-text {
  line-height: 25px;
  padding: 1rem 0rem 0rem 0rem;
  color: #ffffff;
  text-align: start;
}
@media (min-width: 1200px) {
  .service .box-service.brown-legal .box-content .box-content-text {
    padding: 1rem 2rem 0rem 5rem;
  }
}
.service .box-service.brown-legal .box-content .box-content-text span {
  font-weight: bold;
  color: #bfa573;
}
.service .box-service.gold-legal {
  background-color: #ae9a72;
  margin-top: 0rem;
  border-radius: 0px 10px 10px 0px;
  padding: 2rem !important;
}
.service .box-service.gold-legal .wrapping-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: start;
}
@media (min-width: 992px) {
  .service .box-service.gold-legal .wrapping-title {
    align-items: center;
  }
}
.service .box-service.gold-legal .wrapping-title .box-content-title {
  color: #ffffff;
  text-transform: uppercase;
  text-align: start;
}
@media (min-width: 992px) {
  .service .box-service.gold-legal .wrapping-title .box-content-title {
    text-align: end;
  }
}
.service .box-service.gold-legal .wrapping-title .box-content-title hr {
  margin-top: 1rem;
  width: 120% !important;
  height: 3px;
  color: #a0714a;
  background-color: #a0714a;
  opacity: 1;
  margin-left: 0;
}
.service .box-service.gold-legal .box-content .box-content-text {
  line-height: 25px;
  padding: 1rem 0rem 0rem 0rem;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .service .box-service.gold-legal .box-content .box-content-text {
    padding: 1rem 3rem 0rem 3rem;
  }
}
.service .box-service.gold-legal .box-content .box-content-text span {
  font-weight: bold;
  color: #a0714a;
}
.service .box-service.black-training {
  background-color: #42413f;
  margin-top: 2rem;
  border-radius: 0px;
  padding: 1rem;
}
.service .box-service.black-training .wrapping-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: start;
}
@media (min-width: 992px) {
  .service .box-service.black-training .wrapping-title {
    align-items: center;
  }
}
.service .box-service.black-training .wrapping-title .box-content-title {
  color: #ffffff;
  text-transform: uppercase;
}
.service .box-service.black-training .wrapping-title .box-content-title hr {
  margin-top: 1rem;
  width: 120% !important;
  height: 3px;
  color: #bfa573;
  background-color: #bfa573;
  opacity: 1;
}
.service .box-service.black-training .box-content .box-content-text {
  line-height: 25px;
  padding: 1rem 0rem 0rem 0rem;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .service .box-service.black-training .box-content .box-content-text {
    padding: 2rem 3rem 0rem 3rem;
  }
}
.service .box-service.black-training .box-content .box-content-text span {
  color: #bfa573;
  font-weight: 700;
}
.service .box-service.gold-training {
  background-color: rgba(191, 165, 115, 0.9411764706);
  margin-top: 2rem;
  border-radius: 0px;
  padding: 2rem;
}
.service .box-service.gold-training .wrapping-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: start;
}
@media (min-width: 992px) {
  .service .box-service.gold-training .wrapping-title {
    align-items: center;
  }
}
.service .box-service.gold-training .wrapping-title .box-content-title {
  color: #ffffff;
  text-transform: uppercase;
}
.service .box-service.gold-training .wrapping-title .box-content-title hr {
  margin-top: 1rem;
  width: 100% !important;
  height: 3px;
  color: #7c6553;
  background-color: #7c6553;
  opacity: 1;
}
.service .box-service.gold-training .box-content .box-content-text {
  line-height: 25px;
  padding: 0.3rem 0rem 0rem 0rem;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .service .box-service.gold-training .box-content .box-content-text {
    padding: 0.5rem 3rem 0rem 3rem;
  }
}
.service .box-service.gold-training .box-content .box-content-text span {
  color: #7c6553;
  font-weight: 700;
}
.service .box-service.black-blockchain {
  background-color: #1e1e1e;
  border-radius: 0px;
  padding: 2rem;
}
.service .box-service.black-blockchain .wrapping-title {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-top: 0rem;
}
@media (min-width: 992px) {
  .service .box-service.black-blockchain .wrapping-title {
    align-items: center;
  }
}
.service .box-service.black-blockchain .wrapping-title .box-content-title {
  color: #bfa573;
  text-align: start;
  line-height: 40px;
}
.service .box-service.black-blockchain .wrapping-title .box-content-title hr {
  margin-top: 1rem;
  width: 100% !important;
  height: 3px;
  color: #bfa573;
  background-color: #bfa573;
  opacity: 1;
  margin-left: 0;
}
.service .box-service.black-blockchain .box-content .box-content-subtitle {
  padding: 0rem 0rem;
  color: #bfa573;
}
@media (min-width: 1200px) {
  .service .box-service.black-blockchain .box-content .box-content-subtitle {
    padding: 0rem 3rem;
  }
}
.service .box-service.black-blockchain .box-content .box-content-text {
  line-height: 25px;
  padding: 1rem 0rem 0rem 0rem;
  color: #ffffff;
  text-align: start;
}
@media (min-width: 1200px) {
  .service .box-service.black-blockchain .box-content .box-content-text {
    padding: 1rem 3rem 0rem 3rem;
  }
}
.service .box-service.black-blockchain .box-content .box-content-text span {
  font-weight: bold;
  color: #bfa573;
}
.service .box-service.gold-blockchain {
  background-color: #bfa573;
  border-radius: 0px;
  padding: 2rem !important;
  margin-top: 23rem;
}
@media (min-width: 768px) {
  .service .box-service.gold-blockchain {
    margin-top: 23rem;
  }
}
@media (min-width: 992px) {
  .service .box-service.gold-blockchain {
    margin-top: 17rem;
  }
}
.service .box-service.gold-blockchain .wrapping-title {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-top: 0rem;
}
@media (min-width: 992px) {
  .service .box-service.gold-blockchain .wrapping-title {
    align-items: end;
  }
}
.service .box-service.gold-blockchain .wrapping-title .box-content-title {
  color: #1e1e1e;
  text-transform: uppercase;
  text-align: center;
}
.service .box-service.gold-blockchain .wrapping-title .box-content-title hr {
  margin-top: 1rem;
  width: 100% !important;
  height: 3px;
  color: #ffffff;
  background-color: #ffffff;
  opacity: 1;
  margin-left: 0;
}
.service .box-service.gold-blockchain .box-content .box-content-subtitle {
  padding: 0rem 0rem;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .service .box-service.gold-blockchain .box-content .box-content-subtitle {
    padding: 0rem 3rem;
  }
}
.service .box-service.gold-blockchain .box-content .box-content-text {
  line-height: 25px;
  padding: 1rem 0rem 0rem 0rem;
  color: #1e1e1e;
  text-align: start;
}
@media (min-width: 1200px) {
  .service .box-service.gold-blockchain .box-content .box-content-text {
    padding: 2rem 3rem 0rem 3rem;
  }
}
.service .box-service.gold-blockchain .box-content .box-content-text span {
  font-weight: bold;
  color: #bfa573;
}
.service .box-service .wrapping-img {
  display: flex;
  justify-content: end;
  padding-left: 2rem;
}
.service .box-service .wrapping-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.wrapper-box-service .wrapper-img-absolute {
  position: relative;
  width: 100%;
}
.wrapper-box-service .wrapper-img-absolute .img-plane-dollar:nth-child(1) {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: -2rem;
  right: 2rem;
}
@media (min-width: 992px) {
  .wrapper-box-service .wrapper-img-absolute .img-plane-dollar:nth-child(1) {
    top: -4rem;
  }
}
.wrapper-box-service .wrapper-img-absolute .img-plane-dollar:nth-child(2) {
  max-width: 100%;
  height: auto;
  position: relative;
  opacity: 0;
}
.wrapper-box-service .wrapper-img-absolute .img-expansion-international:nth-child(1) {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: -2rem;
  right: 0;
}
@media (min-width: 992px) {
  .wrapper-box-service .wrapper-img-absolute .img-expansion-international:nth-child(1) {
    top: -4rem;
  }
}
.wrapper-box-service .wrapper-img-absolute .img-expansion-international:nth-child(2) {
  max-width: 100%;
  height: auto;
  position: relative;
  opacity: 0;
}
.wrapper-box-service .wrapper-img-absolute .img-visa-international:nth-child(1) {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: -2rem;
  left: 0;
}
@media (min-width: 992px) {
  .wrapper-box-service .wrapper-img-absolute .img-visa-international:nth-child(1) {
    top: -4rem;
  }
}
.wrapper-box-service .wrapper-img-absolute .img-visa-international:nth-child(2) {
  max-width: 100%;
  height: auto;
  position: relative;
  opacity: 0;
}
.wrapper-box-service .wrapper-img-absolute .img-legal-advice:nth-child(1) {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: -2rem;
  left: 0;
}
@media (min-width: 992px) {
  .wrapper-box-service .wrapper-img-absolute .img-legal-advice:nth-child(1) {
    top: -10rem;
  }
}
.wrapper-box-service .wrapper-img-absolute .img-legal-advice:nth-child(2) {
  max-width: 100%;
  height: 17rem;
  position: relative;
  opacity: 0;
}
@media (min-width: 992px) {
  .wrapper-box-service .wrapper-img-absolute .img-legal-advice:nth-child(2) {
    height: 8rem;
  }
}
.wrapper-box-service .wrapper-img-absolute .img-tax-advice:nth-child(1) {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: -2rem;
  right: 0;
}
@media (min-width: 992px) {
  .wrapper-box-service .wrapper-img-absolute .img-tax-advice:nth-child(1) {
    top: -3rem;
  }
}
.wrapper-box-service .wrapper-img-absolute .img-tax-advice:nth-child(2) {
  max-width: 100%;
  height: auto;
  position: relative;
  opacity: 0;
}
.wrapper-box-service .wrapper-img-absolute .img-blockchain-design:nth-child(1) {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: -2rem;
  left: 0;
}
@media (min-width: 992px) {
  .wrapper-box-service .wrapper-img-absolute .img-blockchain-design:nth-child(1) {
    top: -8rem;
    left: -5rem;
  }
}
@media (min-width: 1200px) {
  .wrapper-box-service .wrapper-img-absolute .img-blockchain-design:nth-child(1) {
    left: 0rem;
  }
}
.wrapper-box-service .wrapper-img-absolute .img-blockchain-design:nth-child(2) {
  max-width: 100%;
  height: auto;
  position: relative;
  opacity: 0;
}
.wrapper-box-service .wrapper-img-absolute .img-blockchain-mining:nth-child(1) {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: -2rem;
  right: 0;
}
@media (min-width: 992px) {
  .wrapper-box-service .wrapper-img-absolute .img-blockchain-mining:nth-child(1) {
    top: -12rem;
    right: -9rem;
  }
}
@media (min-width: 1200px) {
  .wrapper-box-service .wrapper-img-absolute .img-blockchain-mining:nth-child(1) {
    right: 0rem;
  }
}
.wrapper-box-service .wrapper-img-absolute .img-blockchain-mining:nth-child(2) {
  max-width: 100%;
  height: auto;
  position: relative;
  opacity: 0;
}

.img-small-binance:hover {
  filter: drop-shadow(0px 4px 20px #F5BF25);
}

/*----------------------------------------------------------
2. General Service End
------------------------------------------------------------*/
/*----------------------------------------------------------
3. Finance Advice Start
------------------------------------------------------------*/
#finance-ourconsulting {
  overflow: hidden;
}

.win-finance {
  overflow: hidden !important;
  background-color: #d3c19e;
}
.win-finance #g-financeconsultingtext {
  display: flex;
  justify-content: start;
  align-items: start;
  margin-top: 3rem;
}
.win-finance #g-financeconsultingtext p {
  line-height: 35px;
}
.win-finance #g-financeconsultingimg {
  display: flex;
  justify-content: end;
  align-items: end;
}

.finance-service-one {
  position: relative;
  background-color: transparent;
  margin: 0;
  padding: 2rem 0rem 0rem 0rem;
}
.finance-service-one .row {
  padding: 0;
  margin: 0;
}
.finance-service-one .row .wraping-img {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .finance-service-one .row .wraping-img {
    justify-content: end;
  }
}
.finance-service-one .row .wraping-img .img-finance-service-one {
  height: auto;
  overflow-x: hidden;
  border-radius: 20px;
  max-width: 100%;
  top: 0rem;
  position: absolute;
}
@media (min-width: 992px) {
  .finance-service-one .row .wraping-img .img-finance-service-one {
    top: -3rem;
  }
}
@media (min-width: 1200px) {
  .finance-service-one .row .wraping-img .img-finance-service-one {
    top: -6rem;
  }
}
@media (min-width: 1280px) {
  .finance-service-one .row .wraping-img .img-finance-service-one {
    top: -8rem;
  }
}
.finance-service-one .row .wrap-text-service-one {
  margin: 2rem 0;
}
@media (min-width: 992px) {
  .finance-service-one .row .wrap-text-service-one {
    margin: 0 1rem;
  }
}
.finance-service-one .row .wrap-text-service-one .text-service-one {
  line-height: 35px;
}

/*----------------------------------------------------------
3. Finance Advice End
------------------------------------------------------------*/
/*----------------------------------------------------------
4. Strategic Tax Start
------------------------------------------------------------*/
.strategic-for-corproat {
  background-color: #e6e0d4;
}
.strategic-for-corproat .wrapper-img {
  background-image: url("../../img/img-33.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 20rem;
}
@media (min-width: 992px) {
  .strategic-for-corproat .wrapper-img {
    height: auto;
  }
}
.strategic-for-corproat .wrapper-box-content .box-content-title {
  text-transform: uppercase;
  color: #bfa573;
  padding: 2rem 0rem 0rem 0rem;
  text-align: center;
}
@media (min-width: 768px) {
  .strategic-for-corproat .wrapper-box-content .box-content-title {
    text-align: start;
    padding: 2rem 3rem 0rem 3rem;
  }
}
@media (min-width: 992px) {
  .strategic-for-corproat .wrapper-box-content .box-content-title {
    text-align: start;
    padding: 0rem 3rem 0rem 3rem;
  }
}
.strategic-for-corproat .wrapper-box-content .box-content-subtitle {
  padding: 1rem 0rem 0rem 0rem;
  text-align: center;
}
@media (min-width: 768px) {
  .strategic-for-corproat .wrapper-box-content .box-content-subtitle {
    text-align: start;
    padding: 0.5rem 3rem 0rem 3rem;
  }
}
.strategic-for-corproat .wrapper-box-content .box-content-text {
  line-height: 30px;
  text-align: center;
  padding: 2rem 0rem 0rem 0rem;
}
@media (min-width: 768px) {
  .strategic-for-corproat .wrapper-box-content .box-content-text {
    text-align: start;
    padding: 1.5rem 3rem 0rem 3rem;
  }
}

.international-tax-planning {
  background-color: #8f8379;
  margin: 3rem 0rem;
}
.international-tax-planning .wrapper-img {
  background-image: url("../../img/img-13.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 20rem;
}
@media (min-width: 992px) {
  .international-tax-planning .wrapper-img {
    height: auto;
  }
}
.international-tax-planning .wrapper-box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .international-tax-planning .wrapper-box-content {
    align-items: start;
  }
}
.international-tax-planning .wrapper-box-content .box-content-title {
  color: #e8d9bd;
  text-transform: uppercase;
  padding: 2rem 0rem 0rem 0rem;
  text-align: center;
}
@media (min-width: 768px) {
  .international-tax-planning .wrapper-box-content .box-content-title {
    text-align: start;
    padding: 2rem 3rem 0rem 3rem;
  }
}
@media (min-width: 992px) {
  .international-tax-planning .wrapper-box-content .box-content-title {
    text-align: start;
    padding: 0rem 3rem 0rem 3rem;
  }
}
.international-tax-planning .wrapper-box-content .box-content-subtitle {
  color: #ffffff;
  padding: 1rem 0rem 0rem 0rem;
  text-align: center;
}
@media (min-width: 768px) {
  .international-tax-planning .wrapper-box-content .box-content-subtitle {
    text-align: start;
    padding: 0.5rem 3rem 0rem 3rem;
  }
}
.international-tax-planning .wrapper-box-content .box-content-text {
  line-height: 30px;
  color: #ffffff;
  text-align: center;
  padding: 2rem 0rem 0rem 0rem;
}
@media (min-width: 768px) {
  .international-tax-planning .wrapper-box-content .box-content-text {
    text-align: start;
    padding: 1.5rem 3rem 0rem 3rem;
  }
}

/*----------------------------------------------------------
4. Strategic Tax End
------------------------------------------------------------*/
/*----------------------------------------------------------
5. Legal Start
------------------------------------------------------------*/
.legal-short-desc {
  overflow: hidden;
}
.legal-short-desc h1 {
  color: #bfa573;
  text-align: center;
}
.legal-short-desc h3 {
  margin-top: 1rem;
  text-align: center;
}
.legal-short-desc p {
  text-align: center;
}

.legal-hand {
  background: url("../../img/bg-hand.jpg"), #ded1c0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.legal-hand .wrapper-hand h1 {
  padding-top: 4rem;
  text-align: center;
  color: #2f1a07;
}
.legal-hand .wrapper-hand h2 {
  padding-top: 1rem;
  text-align: center;
  color: #2f1a07;
}
.legal-hand .wrapper-hand p {
  text-align: center;
  color: #000000;
  padding-top: 3rem;
  padding-bottom: 10rem;
  font-size: 18px !important;
  line-height: 35px;
}

.legal-video {
  margin-top: 5rem;
  overflow: hidden;
}
.legal-video .wrapper-left {
  display: flex;
  justify-content: end;
}
.legal-video .wrapper-left video {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 50px 0px 0px 50px;
  border: 3px solid #bfa573;
  right: -0.5rem;
}
.legal-video .wrapper-right video {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 0px 50px 50px 0px;
  border: 3px solid #bfa573;
  top: -5rem;
  left: -0.5rem;
}

/*----------------------------------------------------------
5. Legal End
------------------------------------------------------------*/
/*----------------------------------------------------------
6. Training Start
------------------------------------------------------------*/
.advance-training {
  background-color: #1e1e1e;
  margin: 0;
}
.advance-training h2 {
  color: #bfa573;
  margin-top: 3rem;
}
.advance-training h4 {
  margin-top: 1rem;
  color: #ffffff;
}
.advance-training p {
  color: #ffffff;
  margin-top: 2rem;
  line-height: 35px;
  padding-bottom: 3rem;
}
.training-aspire {
  margin: 2rem 0;
}
.training-aspire h2 hr {
  margin: auto;
  margin-top: 1rem;
  width: 50% !important;
  height: 3px;
  color: #bfa573;
  background-color: #bfa573;
  opacity: 1;
}

.training-grow {
  position: relative;
  background-color: transparent;
  margin: 0;
  padding: 2rem 0rem 0rem 0rem;
}
.training-grow .row {
  padding: 0;
  margin: 0;
}
.training-grow .row .bg-training-grow {
  background-image: url("../../img/img-28.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}
.training-grow .row .wrap-text-grow-one {
  margin: 4rem 0;
  padding: 1rem;
}
@media (min-width: 992px) {
  .training-grow .row .wrap-text-grow-one {
    margin: 0 1rem;
  }
}
.training-grow .row .wrap-text-grow-one .text-grow-one {
  line-height: 35px;
  margin-top: 2rem;
}

/*----------------------------------------------------------
6. Training End
------------------------------------------------------------*/
/*----------------------------------------------------------
7. Blockchain Start
------------------------------------------------------------*/
.blockchain-short-desc {
  padding-top: 1rem;
  position: relative;
  overflow: hidden;
}
.blockchain-short-desc .el-blockchain-1 {
  display: none;
  position: absolute;
  left: 0;
  bottom: -2%;
  z-index: 2;
  height: 105%;
}
@media (min-width: 992px) {
  .blockchain-short-desc .el-blockchain-1 {
    display: block;
  }
}
.blockchain-short-desc .el-blockchain-2 {
  display: none;
  position: absolute;
  right: 0;
  bottom: -2%;
  height: 105%;
}
@media (min-width: 992px) {
  .blockchain-short-desc .el-blockchain-2 {
    display: block;
  }
}
.blockchain-short-desc .container {
  position: relative;
}
.blockchain-short-desc .container h1 {
  color: #bfa573;
  text-align: center;
}
.blockchain-short-desc .container p {
  text-align: center;
  padding-bottom: 3rem;
}

.blockchain-from-basic {
  background-color: #3e3e3d;
  margin-top: 20rem;
}
@media (min-width: 768px) {
  .blockchain-from-basic {
    margin-top: 22rem;
  }
}
@media (min-width: 1024px) {
  .blockchain-from-basic {
    margin-top: 10rem;
  }
}
.blockchain-from-basic .wrapper-img {
  background-image: url("../../img/img-29.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 25rem;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .blockchain-from-basic .wrapper-img {
    height: auto;
  }
}
.blockchain-from-basic .wrapper-box-content .box-content-title {
  text-transform: uppercase;
  color: #ffffff;
  padding: 2rem 0rem 0rem 0rem;
  text-align: center;
}
@media (min-width: 768px) {
  .blockchain-from-basic .wrapper-box-content .box-content-title {
    text-align: start;
    padding: 2rem 3rem 0rem 3rem;
  }
}
@media (min-width: 992px) {
  .blockchain-from-basic .wrapper-box-content .box-content-title {
    text-align: start;
    padding: 0rem 1rem 0rem 3rem;
  }
}
.blockchain-from-basic .wrapper-box-content .box-content-subtitle {
  padding: 1rem 0rem 0rem 0rem;
  text-align: center;
  color: #bfa573;
}
@media (min-width: 768px) {
  .blockchain-from-basic .wrapper-box-content .box-content-subtitle {
    text-align: start;
    padding: 1rem 3rem 0rem 3rem;
  }
}
.blockchain-from-basic .wrapper-box-content .box-content-text {
  line-height: 30px;
  text-align: center;
  padding: 2rem 0rem 0rem 0rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .blockchain-from-basic .wrapper-box-content .box-content-text {
    text-align: start;
    padding: 3rem 3rem 0rem 3rem;
  }
}

.blockchain-why .wrapper-why {
  padding: 2rem;
}
.blockchain-why .wrapper-why .box-why {
  background-color: #1e1e1e;
  padding: 4rem;
  height: 100%;
  border-radius: 10px;
}
.blockchain-why .wrapper-why .box-why h3,
.blockchain-why .wrapper-why .box-why h5 {
  color: #bfa573;
}
.blockchain-why .wrapper-why .box-why p {
  margin-top: 3rem;
  color: #ffffff;
  line-height: 25px;
}
.blockchain-why .wrapper-cat {
  padding: 2rem;
}
.blockchain-why .wrapper-cat .bg-cat {
  background-image: url("../../img/img-32.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  height: 600px;
}
@media (min-width: 992px) {
  .blockchain-why .wrapper-cat .bg-cat {
    height: 100%;
  }
}

/*----------------------------------------------------------
7. Blockchain End
------------------------------------------------------------*/
/*----------------------------------------------------------
8. Satoshi Start
------------------------------------------------------------*/
.main-section-otp {
  /* Styling untuk section OTP wrapper */
  background-color: #272626;
  min-height: 100vh;
  overflow: hidden;
  bottom: 0;
}

.main-section-register {
  /* Styling untuk section OTP wrapper */
  background-color: #272626;
  height: 100vh;
  overflow: hidden;
  bottom: 0;
}

#bg-satoshi-join {
  background: url("../../img/bg-satoshi-join.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
}
#bg-satoshi-join .wrapper-big-title {
  padding-top: 3rem;
}
#bg-satoshi-join .wrapper-big-title .big-title {
  background-color: #000000;
  color: #bfa573;
  padding: 2rem;
}
#bg-satoshi-join .wrapper-big-title .big-title h1 {
  text-align: center;
  font-size: 24px;
}
@media (min-width: 768px) {
  #bg-satoshi-join .wrapper-big-title .big-title h1 {
    font-size: 30px;
  }
}
#bg-satoshi-join .wrapper-join-now {
  width: 100%;
  height: 78vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#bg-satoshi-join .wrapper-join-now .btn-join-now {
  background-color: #252c32;
  border: 1px solid #a8771a;
  padding: 1rem 3rem;
  border-radius: 9999999px;
}
#bg-satoshi-join .wrapper-join-now .btn-join-now h1 {
  background: linear-gradient(92deg, #a8771a 0%, #eee4a0 48.28%, #a8771a 95.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 42px;
}
@media (min-width: 768px) {
  #bg-satoshi-join .wrapper-join-now .btn-join-now h1 {
    font-size: 64px;
  }
}

#bg-satoshi-price {
  background: url("../../img/bg-satoshi-price.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding: 5rem 0rem;
}

.satoshi-pricing {
  background-color: #201e1d;
  margin-top: 2rem;
  padding: 4rem 0rem;
}
.satoshi-pricing .row-satoshi-pricing {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.satoshi-pricing .row-satoshi-pricing .col-duration {
  width: 0%;
  padding: 0.3rem;
  display: none;
}
@media (min-width: 992px) {
  .satoshi-pricing .row-satoshi-pricing .col-duration {
    width: 16%;
    display: block;
  }
}
.satoshi-pricing .row-satoshi-pricing .col-duration .wrapper {
  background-color: #201e1d;
  border-radius: 10px;
}
.satoshi-pricing .row-satoshi-pricing .col-duration .wrapper .header {
  text-align: center;
  padding: 0.7rem 0.7rem 0rem 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
  height: 4rem;
}
.satoshi-pricing .row-satoshi-pricing .col-duration .wrapper .el-line {
  width: 100%;
}
.satoshi-pricing .row-satoshi-pricing .col-duration .wrapper .el-line svg {
  width: 100%;
}
.satoshi-pricing .row-satoshi-pricing .col-duration .wrapper .body-content {
  padding: 1rem 0rem;
}
.satoshi-pricing .row-satoshi-pricing .col-duration .wrapper .body-content .list .text {
  background-color: #6f6969;
  color: #ffffff;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  text-align: center;
  border-radius: 5px;
  height: 3rem;
  font-size: 14px;
  line-height: 2rem;
}
.satoshi-pricing .row-satoshi-pricing .col-card {
  width: 95%;
  padding: 0.3rem;
}
@media (min-width: 567px) {
  .satoshi-pricing .row-satoshi-pricing .col-card {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .satoshi-pricing .row-satoshi-pricing .col-card {
    width: 21% !important;
  }
}
.satoshi-pricing .row-satoshi-pricing .col-card .wrapper {
  background-color: #bfa573;
  border-radius: 10px;
}
.satoshi-pricing .row-satoshi-pricing .col-card .wrapper .header {
  height: 4rem;
  text-align: center;
  padding: 0.7rem 0.7rem 0rem 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.satoshi-pricing .row-satoshi-pricing .col-card .wrapper .header img {
  height: 3rem;
}
.satoshi-pricing .row-satoshi-pricing .col-card .wrapper .header .wrapper-title {
  display: flex;
  flex-direction: column;
}
.satoshi-pricing .row-satoshi-pricing .col-card .wrapper .header .wrapper-title .title {
  text-align: start;
  font-size: 24px;
  line-height: 20px;
}
.satoshi-pricing .row-satoshi-pricing .col-card .wrapper .header .wrapper-title .referral {
  line-height: 20px;
  text-align: end;
  font-size: 20px;
  color: #cb161d;
  -webkit-text-stroke: 0.5px #fff;
}
.satoshi-pricing .row-satoshi-pricing .col-card .wrapper .el-line {
  width: 100%;
}
.satoshi-pricing .row-satoshi-pricing .col-card .wrapper .el-line svg {
  width: 100%;
}
.satoshi-pricing .row-satoshi-pricing .col-card .wrapper .body-content {
  padding: 1rem;
}
.satoshi-pricing .row-satoshi-pricing .col-card .wrapper .body-content .list .text {
  background-color: #1e1e1e;
  color: #ffffff;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  text-align: center;
  border-radius: 5px;
  height: 3rem;
  line-height: 2rem;
}
.satoshi-pricing .row-satoshi-pricing .col-card .wrapper.use-referral {
  background-color: #eccf98;
}
.satoshi-pricing .row-satoshi-pricing .col-card .wrapper.use-referral .header {
  justify-content: space-around;
}
.satoshi-pricing .row-satoshi-pricing .col-card .wrapper.use-referral .body-content .list .text {
  background-color: #d49a1d;
}

.satoshi-register {
  background-color: #272626;
  padding: 4rem 0rem;
}
.satoshi-register h1 {
  color: #bfa573;
}
.satoshi-register .bg-satoshi-register {
  background-color: #bfa573;
  border-radius: 10px;
  padding: 4rem;
}
.satoshi-register .bg-satoshi-register .register-form .form-control {
  background-color: #ffffff;
}
.satoshi-register .bg-satoshi-register .form-group-pass .icon-pass-login {
  font-size: 18px;
  position: absolute;
  display: block;
  right: 20px;
  bottom: 10px;
}
.satoshi-register .btn-satoshi-price-register {
  padding: 20px 30px;
  color: #000;
  font-family: "Noto Serif";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px; /* 104.167% */
  text-transform: capitalize;
}

.satoshi-activation-title {
  margin-top: 77px;
}
.satoshi-activation-title .wrapper-big-title {
  background: #272626;
  padding: 2rem 0;
}
.satoshi-activation-title .wrapper-big-title h1 {
  color: #bda069;
  text-align: center;
  font-family: "Noto Serif", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px;
  text-transform: uppercase;
}

.satoshi-activation {
  background-color: #d9d9d9;
}
.satoshi-activation .otp-area .inputs input {
  width: 80px !important;
  height: 80px !important;
  background-color: #aaa6a6 !important;
}
.satoshi-activation .otp-area .inputs input:focus {
  box-shadow: none;
  border: 3px solid #c5a571;
}

.satoshi-register-payment {
  margin: 5rem 0rem;
}
.satoshi-register-payment .summary-box {
  border: 1px solid #000;
  padding: 10px;
  text-align: start;
  border-radius: 5px;
}

.satoshi-short-desc {
  background-color: #b2a291;
  padding-top: 3rem;
  position: relative;
}
.satoshi-short-desc .container {
  position: relative;
}
.satoshi-short-desc .container h2 {
  color: #1e1e1e;
  text-align: center;
  font-weight: 600;
}
.satoshi-short-desc .container p {
  text-align: center;
  padding-bottom: 3rem;
  line-height: 30px;
}
.satoshi-short-desc .container .el-satoshi-3 {
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  z-index: 2;
}
.satoshi-short-desc .container .el-satoshi-4 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.satoshi-short-desc.method {
  background-color: #ffffff;
  padding-top: 1rem;
}
.satoshi-short-desc.method .container {
  position: relative;
}
.satoshi-short-desc.method .container h4 {
  padding-top: 0.5rem;
  text-align: center;
  color: #bfa573;
}
.satoshi-short-desc.method .container p {
  line-height: 25px;
  padding-bottom: 0rem;
  margin: 0px;
}

.satoshi-buy-sell.buy {
  background-color: #1e1e1e;
  padding: 4rem 0rem;
  margin-top: 2rem;
}
.satoshi-buy-sell.buy .title {
  padding: 1rem;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.buy .title {
    padding: 2rem;
  }
}
.satoshi-buy-sell.buy .title .wrapping-box {
  width: 16rem;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.buy .title .wrapping-box {
    width: 7rem;
  }
}
.satoshi-buy-sell.buy .title .wrapping-box .box-buy {
  width: auto;
  border-radius: 8px;
  background: linear-gradient(180deg, #b48b3d 0%, #bfa573 100%);
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.buy .title .wrapping-box .box-buy {
    border-radius: 25px;
  }
}
.satoshi-buy-sell.buy .title .wrapping-box .box-buy h4 {
  text-align: center;
  color: #1e1e1e;
  font-weight: 700;
}
.satoshi-buy-sell.buy .title .wrapping-box .box-buy img {
  width: 50px;
  margin-top: 0rem;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.buy .title .wrapping-box .box-buy img {
    margin-top: 1rem;
  }
}
.satoshi-buy-sell.buy .title .wrapping-box .button-buy {
  width: auto;
  color: #1e1e1e;
  background-color: #e8d9bd;
  padding: 0.5rem;
  text-align: center;
  margin-top: 0.3rem;
  border-radius: 9999px;
  display: none;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.buy .title .wrapping-box .button-buy {
    display: block;
  }
}
.satoshi-buy-sell.buy .instruction .card-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.satoshi-buy-sell.buy .instruction .card-container ul {
  list-style: none;
  font-size: 50px;
  color: transparent;
}
.satoshi-buy-sell.buy .instruction .card-container ul li {
  position: relative;
  margin-top: 1.5rem;
}
.satoshi-buy-sell.buy .instruction .card-container ul li::before {
  content: "";
  position: absolute;
  left: -3rem;
  font-size: 1.2em;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #b48b3d 0%, #bfa573 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.buy .instruction .card-container ul li::before {
    content: "•";
  }
}
.satoshi-buy-sell.buy .instruction .card-container ul li .card {
  width: 250px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: none;
  position: relative;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.buy .instruction .card-container ul li .card {
    width: 170px;
  }
}
@media (min-width: 992px) {
  .satoshi-buy-sell.buy .instruction .card-container ul li .card {
    width: 240px;
  }
}
@media (min-width: 1200px) {
  .satoshi-buy-sell.buy .instruction .card-container ul li .card {
    width: 300px;
  }
}
.satoshi-buy-sell.buy .instruction .card-container ul li .card .card-header {
  background: linear-gradient(90deg, #b48b3d 0%, #bfa573 100%);
  color: #1e1e1e;
  padding: 6px;
  border-radius: 15px 15px 0px 0px;
  text-align: center;
}
.satoshi-buy-sell.buy .instruction .card-container ul li .card .card-header h4 {
  font-size: 19px !important;
  font-weight: 800;
}
.satoshi-buy-sell.buy .instruction .card-container ul li .card .card-body {
  padding: 20px;
  text-align: center;
  font-size: 14px !important;
  color: #1e1e1e;
  font-weight: 600;
}
.satoshi-buy-sell.buy .instruction .card-container ul li .card .blink-white {
  position: absolute;
  top: -1rem;
  right: -1rem;
}
.satoshi-buy-sell.buy .instruction .card-container ul li .card .blink-gold {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
}
.satoshi-buy-sell.buy .desc {
  padding: 2rem;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.buy .desc {
    padding: 0.5rem;
  }
}
@media (min-width: 992px) {
  .satoshi-buy-sell.buy .desc {
    padding: 0rem;
  }
}
@media (min-width: 1200px) {
  .satoshi-buy-sell.buy .desc {
    padding: 2rem;
  }
}
.satoshi-buy-sell.buy .desc .wrapper-desc {
  width: 100%;
  height: 220px;
  background: url("../../img/bg-satoshi-box-2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.buy .desc .wrapper-desc {
    height: 100%;
  }
}
.satoshi-buy-sell.buy .desc .wrapper-desc p {
  width: 315px;
  color: #ffffff;
  padding: 0rem 1.5rem;
  text-align: center;
  font-size: 12px;
}
@media (min-width: 375px) {
  .satoshi-buy-sell.buy .desc .wrapper-desc p {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .satoshi-buy-sell.buy .desc .wrapper-desc p {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .satoshi-buy-sell.buy .desc .wrapper-desc p {
    font-size: 16px;
  }
}
.satoshi-buy-sell.sell {
  background-color: #e2d6bf;
  padding: 4rem 0rem;
}
.satoshi-buy-sell.sell .title {
  padding: 1rem;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.sell .title {
    padding: 2rem;
  }
}
.satoshi-buy-sell.sell .title .wrapping-box {
  width: 16rem;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.sell .title .wrapping-box {
    width: 10rem;
  }
}
.satoshi-buy-sell.sell .title .wrapping-box .box-sell {
  width: auto;
  border-radius: 8px;
  background: #000000;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.sell .title .wrapping-box .box-sell {
    border-radius: 25px;
  }
}
.satoshi-buy-sell.sell .title .wrapping-box .box-sell h4 {
  text-align: center;
  color: #bfa573;
  font-weight: 700;
}
.satoshi-buy-sell.sell .title .wrapping-box .box-sell img {
  width: 50px;
  margin-top: 0rem;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.sell .title .wrapping-box .box-sell img {
    margin-top: 1rem;
  }
}
.satoshi-buy-sell.sell .title .wrapping-box .button-sell {
  width: auto;
  color: #1e1e1e;
  background: linear-gradient(180deg, #b48b3d 0%, #bfa573 100%);
  padding: 0.5rem;
  text-align: center;
  margin-top: 0.3rem;
  border-radius: 9999px;
  display: none;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.sell .title .wrapping-box .button-sell {
    display: block;
  }
}
.satoshi-buy-sell.sell .instruction .card-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.satoshi-buy-sell.sell .instruction .card-container ul {
  list-style: none;
  font-size: 50px;
  color: transparent;
}
.satoshi-buy-sell.sell .instruction .card-container ul li {
  position: relative;
  margin-top: 1.5rem;
}
.satoshi-buy-sell.sell .instruction .card-container ul li::before {
  content: "";
  position: absolute;
  left: -3rem;
  font-size: 1.2em;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #000000 0%, #000000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.sell .instruction .card-container ul li::before {
    content: "•";
  }
}
.satoshi-buy-sell.sell .instruction .card-container ul li .card {
  width: 250px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: none;
  position: relative;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.sell .instruction .card-container ul li .card {
    width: 170px;
  }
}
@media (min-width: 992px) {
  .satoshi-buy-sell.sell .instruction .card-container ul li .card {
    width: 240px;
  }
}
@media (min-width: 1200px) {
  .satoshi-buy-sell.sell .instruction .card-container ul li .card {
    width: 300px;
  }
}
.satoshi-buy-sell.sell .instruction .card-container ul li .card .card-header {
  background: #000000;
  color: #bfa573;
  padding: 6px;
  border-radius: 15px 15px 0px 0px;
  text-align: center;
}
.satoshi-buy-sell.sell .instruction .card-container ul li .card .card-header h4 {
  font-size: 19px !important;
  font-weight: 800;
}
.satoshi-buy-sell.sell .instruction .card-container ul li .card .card-header h4 span {
  color: #ffffff;
}
.satoshi-buy-sell.sell .instruction .card-container ul li .card .card-body {
  padding: 20px;
  text-align: center;
  font-size: 14px !important;
  color: #1e1e1e;
  font-weight: 600;
}
.satoshi-buy-sell.sell .instruction .card-container ul li .card .blink-white {
  position: absolute;
  top: -1rem;
  right: -1rem;
}
.satoshi-buy-sell.sell .instruction .card-container ul li .card .blink-gold {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
}
.satoshi-buy-sell.sell .desc {
  padding: 2rem;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.sell .desc {
    padding: 0.5rem;
  }
}
@media (min-width: 992px) {
  .satoshi-buy-sell.sell .desc {
    padding: 0rem;
  }
}
@media (min-width: 1200px) {
  .satoshi-buy-sell.sell .desc {
    padding: 2rem;
  }
}
.satoshi-buy-sell.sell .desc .wrapper-desc {
  width: 100%;
  height: 220px;
  background: url("../../img/bg-satoshi-box.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.sell .desc .wrapper-desc {
    height: 100%;
  }
}
.satoshi-buy-sell.sell .desc .wrapper-desc p {
  width: 315px;
  color: #1e1e1e;
  padding: 0rem 1.5rem;
  text-align: center;
  font-size: 12px;
}
@media (min-width: 375px) {
  .satoshi-buy-sell.sell .desc .wrapper-desc p {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .satoshi-buy-sell.sell .desc .wrapper-desc p {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .satoshi-buy-sell.sell .desc .wrapper-desc p {
    font-size: 16px;
  }
}
.satoshi-buy-sell.multiple {
  background-color: #e0e0e0;
  padding: 4rem 0rem;
  margin-top: 2rem;
}
.satoshi-buy-sell.multiple .title {
  padding: 1rem;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.multiple .title {
    padding: 2rem;
  }
}
.satoshi-buy-sell.multiple .title .wrapping-box {
  width: 16rem;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.multiple .title .wrapping-box {
    width: 10rem;
  }
}
.satoshi-buy-sell.multiple .title .wrapping-box .box-multiple {
  width: auto;
  border-radius: 8px;
  background: linear-gradient(180deg, #383734 0%, #383734 100%);
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.multiple .title .wrapping-box .box-multiple {
    border-radius: 25px;
  }
}
.satoshi-buy-sell.multiple .title .wrapping-box .box-multiple h4 {
  text-align: center;
  color: #ffffff;
  font-weight: 700;
}
.satoshi-buy-sell.multiple .title .wrapping-box .box-multiple h4 span {
  color: #bfa573;
}
.satoshi-buy-sell.multiple .title .wrapping-box .box-multiple img {
  width: 50px;
  margin-top: 0rem;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.multiple .title .wrapping-box .box-multiple img {
    margin-top: 1rem;
  }
}
.satoshi-buy-sell.multiple .title .wrapping-box .button-buy {
  width: auto;
  color: #1e1e1e;
  background-color: #bfa573;
  padding: 0.5rem;
  text-align: center;
  margin-top: 0.3rem;
  border-radius: 9999px;
  display: none;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.multiple .title .wrapping-box .button-buy {
    display: block;
  }
}
.satoshi-buy-sell.multiple .instruction .card-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.satoshi-buy-sell.multiple .instruction .card-container ul {
  list-style: none;
  font-size: 50px;
  color: transparent;
}
.satoshi-buy-sell.multiple .instruction .card-container ul li {
  position: relative;
  margin-top: 1.5rem;
}
.satoshi-buy-sell.multiple .instruction .card-container ul li::before {
  content: "";
  position: absolute;
  left: -3rem;
  font-size: 1.2em;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #000000 0%, #000000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.multiple .instruction .card-container ul li::before {
    content: "•";
  }
}
.satoshi-buy-sell.multiple .instruction .card-container ul li .card {
  width: 250px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: none;
  position: relative;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.multiple .instruction .card-container ul li .card {
    width: 170px;
  }
}
@media (min-width: 992px) {
  .satoshi-buy-sell.multiple .instruction .card-container ul li .card {
    width: 240px;
  }
}
@media (min-width: 1200px) {
  .satoshi-buy-sell.multiple .instruction .card-container ul li .card {
    width: 300px;
  }
}
.satoshi-buy-sell.multiple .instruction .card-container ul li .card .card-header {
  background: linear-gradient(90deg, #383734 0%, #9a9a9a 100%);
  color: #bfa573;
  padding: 6px;
  border-radius: 15px 15px 0px 0px;
  text-align: center;
}
.satoshi-buy-sell.multiple .instruction .card-container ul li .card .card-header h4 {
  font-size: 19px !important;
  font-weight: 800;
}
.satoshi-buy-sell.multiple .instruction .card-container ul li .card .card-body {
  padding: 20px;
  text-align: center;
  font-size: 14px !important;
  color: #1e1e1e;
  font-weight: 600;
}
.satoshi-buy-sell.multiple .instruction .card-container ul li .card .blink-white {
  position: absolute;
  top: -1rem;
  right: -1rem;
}
.satoshi-buy-sell.multiple .instruction .card-container ul li .card .blink-gold {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
}
.satoshi-buy-sell.multiple .desc {
  padding: 2rem;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.multiple .desc {
    padding: 0.5rem;
  }
}
@media (min-width: 992px) {
  .satoshi-buy-sell.multiple .desc {
    padding: 0rem;
  }
}
@media (min-width: 1200px) {
  .satoshi-buy-sell.multiple .desc {
    padding: 2rem;
  }
}
.satoshi-buy-sell.multiple .desc .wrapper-desc {
  width: 100%;
  height: 220px;
  background: url("../../img/bg-satoshi-box.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .satoshi-buy-sell.multiple .desc .wrapper-desc {
    height: 100%;
  }
}
.satoshi-buy-sell.multiple .desc .wrapper-desc p {
  width: 315px;
  color: #1e1e1e;
  padding: 0rem 1.5rem;
  text-align: center;
  font-size: 12px;
}
@media (min-width: 375px) {
  .satoshi-buy-sell.multiple .desc .wrapper-desc p {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .satoshi-buy-sell.multiple .desc .wrapper-desc p {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .satoshi-buy-sell.multiple .desc .wrapper-desc p {
    font-size: 16px;
  }
}

.buy-noted {
  padding: 2rem;
}
.buy-noted p {
  font-weight: 700;
}

.mediation-satoshi {
  margin-top: 2rem;
  position: relative;
}
.mediation-satoshi .wrapper-mediaton .mediation h2 {
  color: #c5a571;
  text-align: center;
}
.mediation-satoshi .wrapper-mediaton .mediation p {
  text-align: center;
  margin: 1rem 0rem;
}
.mediation-satoshi .wrapper-mediaton .mediation h5 {
  text-align: center;
  margin: 1rem 0rem;
  font-weight: 700;
}
.mediation-satoshi .el-left {
  position: absolute;
  left: 0;
  top: -4rem;
}
.mediation-satoshi .el-right {
  position: absolute;
  right: 0;
  top: -10rem;
}

.satoshi-profit .wrapper-big-title {
  width: 100%;
  background-color: #000000;
  margin: 1rem 0rem;
}
.satoshi-profit .wrapper-big-title h3 {
  text-align: center;
  color: #ffffff;
  padding: 1.5rem;
}
.satoshi-profit .wrapper-big-title h2 {
  text-align: center;
  color: #ffffff;
  padding: 1.5rem;
}
.satoshi-profit .timeline {
  background-color: #c9b6a2;
  margin: 0;
}
.satoshi-profit .timeline .row {
  padding: 0;
  margin: 0;
}
.satoshi-profit .timeline .row .bg-timeline {
  background-image: url("../../img/img-34.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}
.satoshi-profit .timeline .row .wrap-text-timeline {
  padding: 2rem;
}
@media (min-width: 992px) {
  .satoshi-profit .timeline .row .wrap-text-timeline {
    padding: 2rem 0rem 0rem 4rem;
  }
}
.satoshi-profit .timeline .row .wrap-text-timeline h3 {
  text-align: center;
}
@media (min-width: 992px) {
  .satoshi-profit .timeline .row .wrap-text-timeline h3 {
    text-align: start;
  }
}
.satoshi-profit .timeline .row .wrap-text-timeline .text-timeline {
  line-height: 35px;
  padding-bottom: 3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .satoshi-profit .timeline .row .wrap-text-timeline .text-timeline {
    text-align: start;
  }
}
.satoshi-profit .commision {
  position: relative;
  background-color: #1e1e1e;
  margin: 0;
}
.satoshi-profit .commision .row {
  padding: 0;
  margin: 0;
}
.satoshi-profit .commision .row .bg-commision {
  background-image: url("../../img/img-35.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}
.satoshi-profit .commision .row .wrap-text-commision {
  padding: 2rem;
}
@media (min-width: 992px) {
  .satoshi-profit .commision .row .wrap-text-commision {
    padding: 4rem 7rem 0rem 7rem;
  }
}
.satoshi-profit .commision .row .wrap-text-commision h3 {
  text-align: center;
  color: #ffffff;
}
@media (min-width: 992px) {
  .satoshi-profit .commision .row .wrap-text-commision h3 {
    text-align: start;
  }
}
.satoshi-profit .commision .row .wrap-text-commision .text-commision {
  color: #ffffff;
  line-height: 35px;
  padding-bottom: 3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .satoshi-profit .commision .row .wrap-text-commision .text-commision {
    text-align: start;
  }
}
.satoshi-profit .commision-note {
  background-color: #e8d9bd;
  padding: 1rem;
}
.satoshi-profit .wrapping-satoshi-key {
  background-color: #1e1e1e;
}
.satoshi-profit .wrapping-satoshi-key .bg-satoshi-key {
  background-image: url("../../img/img-36.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
}
@media (min-width: 768px) {
  .satoshi-profit .wrapping-satoshi-key .bg-satoshi-key {
    height: auto;
  }
}
.satoshi-profit .wrapping-satoshi-key .text-satoshi-key {
  padding: 3rem;
}
.satoshi-profit .wrapping-satoshi-key .text-satoshi-key h3 {
  color: #bfa573;
  margin-bottom: 2rem;
}
.satoshi-profit .wrapping-satoshi-key .text-satoshi-key ul li {
  color: #ffffff;
  list-style: circle;
  margin-bottom: 2rem;
}
.satoshi-profit .bg-why-satoshi {
  background-image: url("../../img/bg-why-satoshi.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  width: 100%;
  height: auto;
  padding: 4rem 0rem;
}
.satoshi-profit .bg-why-satoshi .whitie {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  margin-top: 5rem;
  position: relative;
}
.satoshi-profit .bg-why-satoshi .whitie .title {
  text-align: center;
  color: #bfa573;
  font-weight: bold;
}
.satoshi-profit .bg-why-satoshi .whitie .text {
  color: #1e1e1e;
  font-weight: 600;
}
.satoshi-profit .bg-why-satoshi .bg-expert {
  width: 250px;
  margin-right: 4rem;
}
@media (min-width: 768px) {
  .satoshi-profit .bg-why-satoshi .bg-expert {
    width: 550px;
  }
}
@media (min-width: 992px) {
  .satoshi-profit .bg-why-satoshi .bg-expert {
    width: 360px;
  }
}
.satoshi-profit .bg-why-satoshi .bg-expert .bitcoin {
  width: 80px;
  display: inline-block;
  position: absolute;
  bottom: -2rem;
  right: -2rem;
}
.satoshi-profit .bg-why-satoshi .uptodate {
  width: 320px;
}
@media (min-width: 768px) {
  .satoshi-profit .bg-why-satoshi .uptodate {
    width: 550px;
  }
}
@media (min-width: 992px) {
  .satoshi-profit .bg-why-satoshi .uptodate {
    width: 320px;
  }
}
.satoshi-profit .bg-why-satoshi .uptodate .bitcoin {
  width: 70px;
  display: inline-block;
  position: absolute;
  top: -2rem;
  right: -2rem;
}
.satoshi-profit .bg-why-satoshi .strategy {
  width: 650px;
}
.satoshi-profit .bg-why-satoshi .strategy .bitcoin {
  width: 70px;
  display: inline-block;
  position: absolute;
  bottom: -2rem;
  right: 10rem;
}

.satoshi-useapp {
  background-color: #f0eade;
  padding-top: 2rem;
}
.satoshi-useapp .left-side {
  padding-bottom: 2rem;
}
.satoshi-useapp .left-side p {
  margin-top: 3rem;
  text-align: justify;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .satoshi-useapp .left-side p {
    padding-right: 10rem;
  }
}
.satoshi-useapp .left-side .button-download {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.banner-satoshi {
  position: relative;
  overflow: hidden;
}
.banner-satoshi .wrapper-satoshi {
  display: flex;
  justify-content: center;
  position: relative;
  height: 100%;
}
.banner-satoshi .wrapper-satoshi video {
  width: 100%;
  object-fit: contain;
}

/*----------------------------------------------------------
8. Satoshi End
------------------------------------------------------------*/
/*----------------------------------------------------------
9. Connection Start
------------------------------------------------------------*/
.united-connections .left-side {
  padding: 2rem;
}
@media (min-width: 992px) {
  .united-connections .left-side {
    padding: 0rem 3rem;
  }
}
.united-connections .left-side p {
  text-align: justify;
}
.united-connections .bg-united-connections {
  background-image: url("../../img/img-37.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 200px;
}
@media (min-width: 425px) {
  .united-connections .bg-united-connections {
    height: 400px;
  }
}
@media (min-width: 992px) {
  .united-connections .bg-united-connections {
    height: auto;
  }
}

#partner-connections .cayman-wrapper {
  margin-top: 2rem;
  padding: 2rem 0rem;
  background-color: rgba(175, 190, 168, 0.7882352941);
}
#partner-connections .cayman-wrapper .cayman-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
#partner-connections .cayman-wrapper .cayman-logo img {
  width: 24rem;
}
#partner-connections .cayman-wrapper .cayman-text .title {
  text-transform: uppercase;
  color: #01471f;
  font-weight: 700;
}
#partner-connections .cayman-wrapper .cayman-text .desc {
  text-align: justify;
  color: rgba(56, 55, 52, 0.8196078431);
  padding-right: 0rem;
}
@media (min-width: 992px) {
  #partner-connections .cayman-wrapper .cayman-text .desc {
    padding-right: 6rem;
  }
}
#partner-connections .mif-wrapper {
  padding: 2rem 0rem;
  background-color: #ffffff;
}
#partner-connections .mif-wrapper .mif-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
#partner-connections .mif-wrapper .mif-logo img {
  width: 24rem;
}
#partner-connections .mif-wrapper .mif-text .title {
  text-transform: uppercase;
  color: #bfa573;
  font-weight: 700;
  padding-left: 6rem;
}
#partner-connections .mif-wrapper .mif-text .desc {
  text-align: justify;
  color: rgba(56, 55, 52, 0.8196078431);
  padding-left: 0rem;
}
@media (min-width: 992px) {
  #partner-connections .mif-wrapper .mif-text .desc {
    padding-left: 6rem;
  }
}
#partner-connections .gp-wrapper {
  padding: 2rem 0rem;
  background-color: rgba(232, 221, 220, 0.5294117647);
}
#partner-connections .gp-wrapper .gp-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
#partner-connections .gp-wrapper .gp-logo img {
  width: 24rem;
}
#partner-connections .gp-wrapper .gp-text .title {
  text-transform: uppercase;
  color: #bfa573;
  font-weight: 700;
}
#partner-connections .gp-wrapper .gp-text .desc {
  text-align: justify;
  color: rgba(56, 55, 52, 0.8196078431);
  padding-right: 0rem;
}
@media (min-width: 992px) {
  #partner-connections .gp-wrapper .gp-text .desc {
    padding-right: 6rem;
  }
}

/*----------------------------------------------------------
9. Connection End
------------------------------------------------------------*/
/*----------------------------------------------------------
    File Name  : _contactus.scss
    Desc       : File ini merupakan styling untuk 3 jenis contact us

------------------------------------------------------------*/
/**
 * TABLE OF CONTENTS
 *
 * 1. General Contact US
 * 2. Contact Us Book Consultant
 *
 */
/*----------------------------------------------------------
1. General Contact Us Start
------------------------------------------------------------*/
input {
  border: none;
  padding: 0px 24px;
}

input:active, input:focus, textarea:active, textarea:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

input::-webkit-input-placeholder {
  color: rgb(122, 122, 122);
}

input:-moz-placeholder {
  color: rgb(27, 27, 27);
}

.inp-fname {
  height: 45px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.08);
  background-color: transparent;
  border: 2px solid #BFA573;
  color: #080808;
}

.inp-file-identity {
  height: 45px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.08);
  background-color: transparent;
  border: 2px solid #BFA573;
  color: #080808;
}

.inp-email,
.inp-email2 {
  height: 45px;
  width: 100%;
  max-width: 520px;
  border-radius: 10px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.08);
  background-color: transparent;
  border: 2px solid #BFA573;
  color: #080808;
}

.nohp-select.input-nohp {
  height: 45px;
  width: 100% !important;
  max-width: 520px !important;
  border-radius: 10px;
  padding: 20px 20px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.08);
  background-color: transparent;
  border: 2px solid #BFA573;
  color: #080808;
}

.textarea-desc {
  width: 100%;
  max-width: 520px;
  height: 120px;
  padding: 20px 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.08);
  background-color: transparent;
  border: 2px solid #BFA573;
  color: #080808;
}

.inp-date {
  border: 2px solid #BFA573;
  height: 45px;
  width: 100%;
  max-width: 520px;
  border-radius: 8px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.08);
  background-color: #F0EADE;
  color: #000000;
}

.select2-results__option--highlighted {
  color: white !important;
  background-color: #BFA573 !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #BFA573;
}

.select2 {
  width: 100% !important;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove {
  border: none;
  padding: 0px 3px;
}

.select2-container--default .select2-selection--single {
  background-color: #F0EADE !important;
  border: 2px solid #BFA573 !important;
  border-radius: 4px !important;
  height: 45px !important;
  max-width: 520px !important;
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -ms-border-radius: 4px !important;
  -o-border-radius: 4px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px !important;
  color: #000000 !important;
}

.select2-container--open .select2-dropdown--above {
  background-color: #bc8e37 !important;
}

.select2-container--default .select2-results__option .select2-results__option {
  color: #FFFFFF;
}

.select2-container--default .select2-results__group {
  color: #F0EADE;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 21px !important;
  right: 18px !important;
  display: none !important;
}

/*----------------------------------------------------------
1. General Contact Us End
------------------------------------------------------------*/
/*----------------------------------------------------------
2. Contact Us Book Consyltant Start
------------------------------------------------------------*/
.contact {
  overflow: hidden;
}
.contact .bg-contact-wrap {
  background-color: #000000;
}
.contact .bg-contact-wrap .bg-contact {
  margin-top: 4rem;
  height: 100%;
  overflow: hidden;
}
.contact .bg-contact-wrap .bg-contact .logo {
  width: 90%;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact .bg-contact-wrap .bg-contact .logo img {
  width: 40%;
}
.contact .bg-contact-wrap .bg-contact .logo .text {
  margin-top: 1rem;
}
.contact .bg-contact-wrap .bg-contact .logo .text p {
  letter-spacing: 8px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  font-size: 20px;
}
.contact .bg-contact-wrap .bg-contact .bg-dollar {
  margin-top: 3rem;
  height: 100%;
  overflow: hidden;
  display: flex;
}
.contact .bg-contact-wrap .bg-contact .bg-dollar img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.contact form .wrapper-field .bg-field {
  background-color: #F0EADE;
  border-radius: 15px;
  width: 100%;
}

/*----------------------------------------------------------
2. Contact Us Book Consyltant End
------------------------------------------------------------*/
/*----------------------------------------------------------
    File Name  : _teamwork.scss
    Desc       : File ini merupakan styling untuk Teamwork Homepage

------------------------------------------------------------*/
/**
 * TABLE OF CONTENTS
 *
 * 1. General
 * 2. Teamwork
 * 3. Teamwork Detail
 *
 */
/*----------------------------------------------------------
1. General Start
------------------------------------------------------------*/
/*----------------------------------------------------------
1. General End
------------------------------------------------------------*/
/*----------------------------------------------------------
2. Teamwork Start
------------------------------------------------------------*/
#teamwork-preview {
  margin-bottom: 3rem;
}
#teamwork-preview .persona {
  padding: 3rem;
}
#teamwork-preview .persona .wrapper-persona {
  display: flex;
}
#teamwork-preview .persona .wrapper-persona .img-persona {
  width: 15rem;
}
#teamwork-preview .persona .wrapper-persona .img-persona img {
  width: 15rem;
}
#teamwork-preview .persona .wrapper-persona .bio {
  margin: 0rem 2rem;
  padding: 1rem 0rem;
}
#teamwork-preview .persona .wrapper-persona .bio .name {
  color: #bfa573;
  text-transform: uppercase;
}
#teamwork-preview .persona .wrapper-persona .bio .position {
  margin: 1rem 0;
  text-transform: uppercase;
}
#teamwork-preview .persona .wrapper-persona .bio .readmore {
  color: #bfa573;
}
#teamwork-preview .persona.one, #teamwork-preview .persona.three, #teamwork-preview .persona.five {
  background-color: #FFFFFF;
}
#teamwork-preview .persona.two {
  background-color: #D9D9D9;
}
#teamwork-preview .persona.four {
  background-color: #D3CAC1;
}
#teamwork-preview .persona.six {
  background-color: #E9E0CE;
}

/*----------------------------------------------------------
2. Teamwork End
------------------------------------------------------------*/
/*----------------------------------------------------------
3. Teamwork Detail Start
------------------------------------------------------------*/
/*----------------------------------------------------------
3. Teamwork Detail End
------------------------------------------------------------*/
/*----------------------------------------------------------
    File Name  : _trainingcourse.scss
    Desc       : File ini merupakan styling untuk Training Course

------------------------------------------------------------*/
/**
 * TABLE OF CONTENTS
 *
 * //semua//
 *
 */
.dark-bg-sections {
  background-color: #000;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 85px 0 125px;
}
.dark-bg-sections > section {
  margin: 85px 0 125px;
  width: 100%;
}
.dark-bg-sections > section:first-child {
  margin-top: 0;
}
.dark-bg-sections > section:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .dark-bg-sections {
    padding: 0;
  }
  .dark-bg-sections > section {
    margin: 0;
  }
}

.advanced-training {
  position: relative;
  overflow: visible;
  background: #1e1e1e;
  z-index: 2;
}
.advanced-training .section-title {
  color: #bfa573;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 45px; /* 150% */
  margin-bottom: 1rem;
}
.advanced-training .section-subtitle {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 4rem;
}
.advanced-training .section-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 166.667% */
}
.advanced-training img {
  min-width: 473px;
  min-height: 418px;
  object-fit: contain;
  margin-bottom: -50px;
  position: relative;
  z-index: 3;
}
@media (max-width: 991px) {
  .advanced-training .section-title {
    padding-top: 50px;
    text-align: center;
  }
  .advanced-training img {
    margin-bottom: 0;
    min-width: 100%;
    min-height: auto;
    max-width: 473px;
    max-height: 418px;
    margin-left: auto;
    display: block;
    transform: translateX(20%);
  }
}

.course-content {
  padding: 30px 0;
  background-color: #000;
  z-index: 1;
}
.course-content .section-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  text-transform: capitalize;
  text-align: center;
  margin: 0 auto 1rem;
  width: fit-content;
}
.course-content .section-title:after {
  content: "";
  display: block;
  width: calc(100% + 30px);
  height: 3px;
  background: #bfa573;
  margin: 20px -15px;
}
.course-content .section-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 2rem;
}
.course-content .section-description strong {
  color: #bfa573;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
}
@media (max-width: 991px) {
  .course-content .section-description {
    text-align: center;
  }
}

.aspiring-entrepreneurs {
  padding: 50px 0;
  background: #fff;
}
.aspiring-entrepreneurs .section-title {
  color: rgba(56, 55, 52, 0.82);
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  margin: 0 auto 1rem;
  width: fit-content;
}
.aspiring-entrepreneurs .section-title:after {
  content: "";
  display: block;
  width: calc(100% + 30px);
  height: 3px;
  background: #bfa573;
  margin: 20px -15px;
}
.aspiring-entrepreneurs .section-subtitle {
  color: #1e1e1e;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 2rem;
}
.aspiring-entrepreneurs .section-description {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 991px) {
  .aspiring-entrepreneurs .section-subtitle {
    margin-top: 1rem;
  }
}

.understand-bitcoin {
  padding: 30px 0 0;
  background: rgba(97, 95, 91, 0.84);
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  position: relative;
  overflow: visible;
}
.understand-bitcoin .section-description {
  color: #bfa573;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 2rem;
}
.understand-bitcoin .section-content {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.understand-bitcoin .bitcoin-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  margin: 0 auto 2rem;
  text-align: left;
  width: fit-content;
  position: relative;
}
.understand-bitcoin .bitcoin-title:after {
  content: "";
  display: block;
  width: calc(100% + 30px);
  height: 3px;
  background: #bfa573;
  margin: 10px -15px;
}
.understand-bitcoin img {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: -50px;
  z-index: 2;
}
@media (max-width: 991px) {
  .understand-bitcoin .row {
    display: flex;
    flex-direction: column;
  }
  .understand-bitcoin .col-12.col-lg-6:last-child {
    order: -1;
    margin-bottom: 2rem;
  }
  .understand-bitcoin .bitcoin-title {
    text-align: center;
    margin: 0 auto 1rem;
  }
  .understand-bitcoin img {
    margin-bottom: 2rem;
  }
}

.blockchain-design {
  padding: 30px 0 0;
  background: #1e1e1e;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  position: relative;
  overflow: visible;
}
.blockchain-design .section-description {
  color: #bfa573;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 2rem;
}
.blockchain-design .section-content {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.blockchain-design .blockchain-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  margin: 0 auto 2rem;
  text-align: left;
  width: fit-content;
  position: relative;
}
.blockchain-design .blockchain-title:after {
  content: "";
  display: block;
  width: calc(100% + 30px);
  height: 3px;
  background: #bfa573;
  margin: 10px -15px;
}
.blockchain-design img {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: -50px;
  z-index: 2;
}

.bitcoin-mining {
  padding: 30px 0 0;
  background: #bfa573;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  position: relative;
  overflow: visible;
}
.bitcoin-mining .section-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 2rem;
}
.bitcoin-mining .section-content {
  color: #1e1e1e;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.bitcoin-mining .mining-title {
  color: #1e1e1e;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  margin: 0 auto 2rem;
  text-align: left;
  width: fit-content;
  position: relative;
}
.bitcoin-mining .mining-title:after {
  content: "";
  display: block;
  width: calc(100% + 30px);
  height: 3px;
  background: #fff;
  margin: 10px -15px;
}
.bitcoin-mining img {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: -50px;
  z-index: 2;
}
@media (max-width: 991px) {
  .bitcoin-mining .row {
    display: flex;
    flex-direction: column;
  }
  .bitcoin-mining .col-12.col-lg-6:last-child {
    order: -1;
    margin-bottom: 2rem;
  }
  .bitcoin-mining .mining-title {
    text-align: center;
    margin: 0 auto 1rem;
  }
  .bitcoin-mining img {
    margin-bottom: 2rem;
  }
}

.dark-bg-sections > * {
  margin: 0;
}

.benefits-training {
  padding: 50px 0 60px;
  background: #fff;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  overflow: visible;
}
.benefits-training .section-description {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 2rem;
}
.benefits-training .section-description strong {
  color: #bfa573;
  font-weight: 600;
}
.benefits-training .col-12.col-lg-6:last-child {
  display: flex;
  align-items: center;
  min-height: 100%;
}
.benefits-training .benefits-title {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  margin: 0 auto 2rem;
  text-align: left;
  width: fit-content;
  position: relative;
}
.benefits-training .benefits-title:after {
  content: "";
  display: block;
  width: calc(100% + 30px);
  height: 3px;
  background: #bfa573;
  margin: 10px -15px;
}
@media (max-width: 991px) {
  .benefits-training .row {
    display: flex;
    flex-direction: column;
  }
  .benefits-training .col-12.col-lg-6:last-child {
    order: -1;
    margin-bottom: 2rem;
  }
  .benefits-training .benefits-title {
    text-align: center;
    margin: 0 auto 2rem;
  }
}

.training-features {
  background: #000;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
.training-features .container .row {
  margin: 0;
  gap: 0;
}
.training-features .col-12.col-lg-6 {
  padding: 0 30px;
}
.training-features .col-12.col-lg-6:first-child .feature-card {
  margin-right: 0;
  margin-left: auto;
}
.training-features .col-12.col-lg-6:last-child .feature-card {
  margin-left: 0;
  margin-right: auto;
}
.training-features .feature-card {
  background: #1e1e1e;
  padding: 40px;
  border-radius: 10px;
  height: 100%;
  max-width: 470px;
  max-height: 554px;
  margin: 0 auto;
}
.training-features .feature-card:has(img) {
  padding: 0;
}
.training-features .feature-card:has(img) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.training-features .section-title {
  color: #bfa573;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 1rem;
}
.training-features .section-subtitle {
  color: #bfa573;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 2rem;
}
.training-features .section-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}
@media (max-width: 991px) {
  .training-features {
    position: relative;
    padding: 50px 0;
  }
  .training-features:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../../../../assets/img/ic_bitcoin_cat.png");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
  }
  .training-features .container {
    position: relative;
    z-index: 1;
  }
  .training-features .col-12.col-lg-6 {
    padding: 0 15px;
  }
  .training-features .feature-card {
    background: none;
    padding: 20px;
    text-align: center;
    max-height: none;
  }
  .training-features .col-12.col-lg-6:last-child {
    display: none;
  }
  .training-features .section-title {
    font-size: 28px;
    margin-bottom: 1.5rem;
  }
  .training-features .section-subtitle {
    font-size: 20px;
  }
  .training-features .section-description {
    font-size: 18px;
    line-height: 32px;
  }
}

.online-training {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.online-training video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 773px;
  object-fit: cover;
  z-index: 1;
}
.online-training .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.online-training .container {
  position: relative;
  z-index: 3;
}
.online-training .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.62);
  padding: 50px;
  border-radius: 10px;
}
.online-training .section-title {
  color: #bfa573;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 1rem;
}
.online-training .section-title .title-white {
  color: #fff;
  text-transform: uppercase;
}
.online-training .section-title .title-gold {
  color: #bda069;
  text-transform: uppercase;
}
.online-training .section-subtitle {
  color: #eccf98;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 166.667% */
  margin-bottom: 2rem;
}
.online-training .steps-container .step-list {
  list-style: none;
  counter-reset: step-counter;
  padding-left: 0;
}
.online-training .steps-container .step-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 40px;
  margin-bottom: 1rem;
}
.online-training .steps-container .step-list li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.online-training .step-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 1rem;
}
.online-training .instagram-link {
  color: #bda069;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
  word-break: break-all;
}
.online-training .instagram-link:hover {
  text-decoration: underline;
}
.online-training .button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.online-training .follow-button {
  border-radius: 5px;
  background: #bda069;
  border: none;
  padding: 10px 30px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.online-training .follow-button:hover {
  background: #fff;
  color: #000;
}
@media (max-width: 991px) {
  .online-training {
    min-height: auto;
    padding: 0;
  }
  .online-training .content-wrapper {
    max-width: 100%;
    border-radius: 0;
    padding: 30px 15px;
  }
  .online-training .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
}

.banner-about {
  position: relative;
  overflow: hidden;
}
.banner-about .wrapper-about {
  display: flex;
  min-height: 100vh;
}
.banner-about .wrapper-about video {
  width: 100%;
  min-height: 100vh !important;
  position: absolute;
  z-index: 1;
  object-fit: cover;
  object-position: 50% 50%;
}
.banner-about .wrapper-about .banner-text-video {
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: start;
  align-items: end;
  margin-bottom: 4rem;
}
.banner-about .wrapper-about .banner-text-video .bg-text-video {
  border-radius: 0px 5px 5px 0px;
  padding: 1rem 3rem;
  font-weight: 700;
}
.banner-about .wrapper-about .banner-text-video .bg-text-video.about {
  background: rgba(232, 217, 189, 0.75);
  color: #383734;
  margin-bottom: 200px;
}
.banner-about .wrapper-about .banner-text-video .bg-text-video.about .about-banner {
  color: #383734;
  margin-left: 75px;
  font-family: "Lato", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  text-transform: capitalize;
}
.banner-about .wrapper-about .banner-text-video .bg-text-video.about .about-banner span {
  font-family: inherit;
  font-weight: inherit;
}

.about-formation {
  background-color: #f3ebdc;
}
.about-formation .row .wrapper-about-formation-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.about-formation .row .wrapper-about-formation-left h2 {
  color: rgba(56, 55, 52, 0.82);
  font-family: "Noto Serif", serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.about-formation .row .wrapper-about-formation-left h2 .line-animation span {
  font-family: inherit;
  font-weight: inherit;
}
.about-formation .row .wrapper-about-formation-left h2 hr {
  margin-top: 2rem;
  width: 70% !important;
  height: 3px;
  color: #bfa573;
  background-color: #bfa573;
  opacity: 1;
}
.about-formation .row .wrapper-about-formation-right .skill-training h3 {
  text-transform: uppercase;
  color: #bfa573;
  margin-bottom: 1rem;
}
.about-formation .row .wrapper-about-formation-right .skill-training p span {
  font-weight: 700;
}

.about-climb {
  background: url("../../img/bg-climb.png"), #000000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 185vh;
}
@media (min-width: 1200px) {
  .about-climb {
    height: 150vh;
  }
}
.about-climb .container {
  height: auto;
  min-height: 100vh;
  padding: 4rem 0;
}
.about-climb .container .row .wrapper-about-climb-left {
  height: auto;
  display: flex;
  align-items: flex-start;
  margin-top: 800px;
}
.about-climb .container .row .wrapper-about-climb-left .wrapper-content {
  padding-right: 30px;
}
.about-climb .container .row .wrapper-about-climb-left .wrapper-content p {
  color: #ffffff;
  line-height: 35px;
  text-align: justify;
}
.about-climb .container .row .wrapper-about-climb-left .wrapper-content p span {
  color: #bfa573;
  margin-bottom: 10px;
}
.about-climb .container .row .wrapper-about-climb-right {
  height: auto;
  margin-top: 600px;
}
.about-climb .container .row .wrapper-about-climb-right .wrapper-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-left: 30px;
  min-height: calc(100% - 65px);
}
.about-climb .container .row .wrapper-about-climb-right .wrapper-content p {
  color: #ffffff;
  line-height: 35px;
  text-align: justify;
}
.about-climb .container .row .wrapper-about-climb-right .wrapper-content p span {
  color: #bfa573;
}
.about-climb .container .row .wrapper-about-climb-right .wrapper-content img {
  margin: auto auto 65px auto;
  display: block;
}

.bg-about-collab {
  background-color: #ccb78f;
}
.bg-about-collab .about-plan img {
  display: block;
  width: 100%;
  height: 95%;
  object-fit: cover;
  object-position: right;
  padding-right: 3rem;
}
.bg-about-collab .about-plan p {
  padding: 2rem 5rem 2rem 2rem;
  text-align: justify;
  line-height: 35px;
}
.bg-about-collab .about-plan p span {
  font-weight: 600;
  line-height: 30px; /* 166.667% */
  text-transform: uppercase;
}
.bg-about-collab .about-vision .wrapping-video {
  display: flex;
  justify-content: end;
}
.bg-about-collab .about-vision .wrapping-video video {
  width: 100%;
  height: auto;
}
.bg-about-collab .about-vision p {
  padding: 2rem;
  text-align: justify;
  line-height: 35px;
}
.bg-about-collab .about-vision p span {
  font-weight: 600;
  line-height: 30px; /* 166.667% */
  text-transform: uppercase;
}

.legal-short-desc {
  padding: 5rem 0;
}
.legal-short-desc .container .col-8 h1 {
  color: #bfa573;
  text-align: center;
  font-family: "Odor Mean Chey", serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 133.333% */
  text-transform: uppercase;
}
.legal-short-desc .container .col-8 p {
  text-align: center;
}
.legal-short-desc .btn-know-team {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.legal-short-desc .btn-know-team:hover {
  background: #bfa573;
  color: #fff;
}

.page-wrapper {
  background-color: #000;
}

.banner-luxbtc {
  position: relative;
  overflow: hidden;
}
.banner-luxbtc .wrapper-banner-luxbtc {
  display: flex;
  min-height: 100vh !important;
}
.banner-luxbtc .wrapper-banner-luxbtc video {
  width: 100%;
  min-height: 100vh !important;
  position: absolute;
  z-index: 1;
  object-fit: cover;
  object-position: 50% 50%;
  filter: brightness(2);
}
.banner-luxbtc .wrapper-banner-luxbtc .logo-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.banner-luxbtc .wrapper-banner-luxbtc .logo-banner .text-wrapper {
  background: rgba(0, 0, 0, 0.71);
  padding: 2rem;
  width: 100%;
  border-radius: 5px;
}
.banner-luxbtc .wrapper-banner-luxbtc .logo-banner .text-wrapper .logo-text-banner {
  text-transform: uppercase;
  margin-bottom: 11px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .banner-luxbtc .wrapper-banner-luxbtc .logo-banner .text-wrapper .logo-text-banner {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .banner-luxbtc .wrapper-banner-luxbtc .logo-banner .text-wrapper .logo-text-banner {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  .banner-luxbtc .wrapper-banner-luxbtc .logo-banner .text-wrapper .logo-text-banner {
    padding: 0rem 3rem;
    font-size: 40px;
  }
}
.banner-luxbtc .wrapper-banner-luxbtc .logo-banner .text-wrapper .logo-text-banner .goal-text {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  /* 125% */
  text-transform: uppercase;
}
.banner-luxbtc .wrapper-banner-luxbtc .logo-banner .text-wrapper .logo-text-banner .goal-text .lux {
  color: #bda069;
  display: inline;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.banner-luxbtc .wrapper-banner-luxbtc .logo-banner .text-wrapper .logo-text-banner .goal-text .brokers {
  color: #fff;
  display: inline;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.banner-luxbtc .wrapper-banner-luxbtc .logo-banner .text-wrapper .discover-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 144.687%;
  /* 31.831px */
  text-align: center;
  margin-top: 1rem;
}
.banner-luxbtc .wrapper-banner-luxbtc .logo-banner .button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.banner-luxbtc .wrapper-banner-luxbtc .logo-banner .button-wrapper .btn-primary {
  background: #bda069;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 350px;
  height: 84px;
  border-radius: 5px;
}
.banner-luxbtc .wrapper-banner-luxbtc .logo-banner .button-wrapper .btn-primary:hover {
  background: #fff;
}
.banner-luxbtc .wrapper-banner-luxbtc .logo-banner .button-wrapper .btn-primary .btn-text {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem;
}

.exclusive-trading {
  position: relative;
  padding: 44px 0;
  background-color: #000;
}
.exclusive-trading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 1;
}
.exclusive-trading .container {
  position: relative;
  z-index: 2;
}
.exclusive-trading .container .row {
  align-items: center;
}
.exclusive-trading .container .row h2 {
  color: #bda069;
  font-family: "Odor Mean Chey", serif;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
  /* 160% */
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}
.exclusive-trading .container .row .main-desc {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 715px;
  margin-left: auto;
  margin-right: auto;
}
.exclusive-trading .container .row .sub-desc {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  /* 150% */
  text-align: center;
}
.exclusive-trading .container .row .exclusive-icon {
  width: 100%;
  min-width: 150px;
  display: block;
  margin: 0 auto;
  position: relative;
  margin-top: -50px;
}

.optimized-security {
  position: relative;
  padding: 30px 0;
  background: black;
}
.optimized-security::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.optimized-security .container {
  position: relative;
  z-index: 2;
}
.optimized-security .container h2 {
  color: #bda069;
  font-family: "Odor Mean Chey", serif;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  /* 160% */
  text-transform: uppercase;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.optimized-security .container .divider {
  width: 100%;
  height: 3px;
  background: #bda069;
  margin: 0.5rem 0 3rem;
  max-width: 346px;
  margin-left: auto;
  margin-right: auto;
}
.optimized-security .container .security-content .content-block {
  margin-bottom: 2.5rem;
}
.optimized-security .container .security-content .content-block .main-text {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 150% */
  margin-bottom: 1rem;
}
.optimized-security .container .security-content .content-block .sub-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  /* 166.667% */
}
.optimized-security .container .security-image {
  width: 100%;
  max-width: 580px;
  display: block;
  margin: 0 auto;
}

.expertise-section {
  position: relative;
  padding: 36px 0;
  margin-top: 40px;
  background: rgba(18, 18, 18, 0.88);
}
.expertise-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.expertise-section .container {
  position: relative;
  z-index: 2;
}
.expertise-section .container h2 {
  color: #bda069;
  font-family: "Odor Mean Chey", serif;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  /* 160% */
  text-transform: uppercase;
  max-width: 484px;
  margin-left: auto;
  margin-right: auto;
}
.expertise-section .container .divider {
  width: 100%;
  height: 3px;
  background: #bda069;
  margin: 0.5rem 0 3rem;
  max-width: 346px;
  margin-left: auto;
  margin-right: auto;
}
.expertise-section .container .expertise-image {
  width: 100%;
  max-width: 580px;
  display: block;
  margin: 0 auto;
}
.expertise-section .container .expertise-content .main-text {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 1rem;
}
.expertise-section .container .expertise-content .sub-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 1rem;
}

.benefit-section {
  position: relative;
  padding: 36px 0;
  margin-top: 40px;
  background: black;
}
.benefit-section .container {
  background: rgb(11, 10, 8);
  position: relative;
  z-index: 2;
}
.benefit-section .container h2 {
  color: #bda069;
  font-family: "Odor Mean Chey", serif;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  /* 181.818% */
  text-transform: uppercase;
}
.benefit-section .container .divider {
  width: 100%;
  height: 3px;
  background: #bda069;
  margin: 0.5rem 0 3rem;
  max-width: 161px;
  margin-left: auto;
  margin-right: auto;
}
.benefit-section .container .benefits-wrapper {
  margin: 0 auto;
}
.benefit-section .container .benefits-wrapper .row {
  display: flex;
  justify-content: center;
}
.benefit-section .container .benefit-item {
  margin-bottom: 2.5rem;
  padding: 0 4rem;
}
.benefit-section .container .benefit-item h3 {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  /* 175% */
  position: relative;
  padding-left: 25px;
}
.benefit-section .container .benefit-item h3::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #bda069;
}
.benefit-section .container .benefit-item p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 155.556% */
}

.opportunities-section {
  position: relative;
  padding: 36px 0 70px;
  margin-top: 40px;
  background: #000;
  overflow-x: hidden;
}
.opportunities-section .container {
  position: relative;
  z-index: 2;
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 0;
}
.opportunities-section .container .row {
  width: 100%;
  margin: 0;
  gap: 46px;
}
@media (min-width: 375px) {
  .opportunities-section .container .row {
    flex-direction: column;
  }
  .opportunities-section .container .row .col-6 {
    width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .opportunities-section .container .row {
    flex-direction: row;
  }
  .opportunities-section .container .row .col-6 {
    width: 50%;
  }
  .opportunities-section .container .row .col-6:last-child {
    padding-right: 40px;
    width: calc(50% - 46px);
  }
}
@media (min-width: 992px) {
  .opportunities-section .container .row {
    display: flex;
    justify-content: flex-start;
  }
  .opportunities-section .container .row .col-6:first-child {
    margin-left: -20vw;
    width: calc(50% + 20vw);
  }
  .opportunities-section .container .row .col-6:last-child {
    width: calc(50% - 46px);
    padding-right: 50px;
  }
}
.opportunities-section .container .row .opportunities-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 375px) {
  .opportunities-section .container .row .opportunities-image {
    height: 300px;
  }
}
@media (min-width: 768px) {
  .opportunities-section .container .row .opportunities-image {
    height: 400px;
  }
}
@media (min-width: 992px) {
  .opportunities-section .container .row .opportunities-image {
    height: 600px;
  }
}
.opportunities-section .container .opportunities-content h2 {
  color: #bda069;
  font-family: "Odor Mean Chey", serif;
  font-size: 29px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 103.448% */
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.opportunities-section .container .opportunities-content h3 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 166.667% */
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}
.opportunities-section .container .opportunities-content .main-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  /* 166.667% */
  margin-bottom: 1.5rem;
}
.opportunities-section .container .opportunities-content .sub-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  /* 166.667% */
  margin-bottom: 2rem;
}
.opportunities-section .container .opportunities-content .sub-text .highlight {
  color: #bda069;
  font-weight: 600;
}
.opportunities-section .container .opportunities-content .button-wrapper .btn-primary {
  background: #bda069;
  padding: 15px 30px;
  display: inline-block;
  transition: all 0.3s ease;
  max-width: 256px;
  width: 100%;
  border-radius: 5px;
  text-align: center;
}
.opportunities-section .container .opportunities-content .button-wrapper .btn-primary .btn-text {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  /* 138.889% */
  text-transform: uppercase;
}
.opportunities-section .container .opportunities-content .button-wrapper .btn-primary:hover {
  background: #fff;
}

.page-wrapper {
  background-color: #000;
}

.banner-btcelite {
  position: relative;
  overflow: hidden;
}
.banner-btcelite .wrapper-banner-btcelite {
  display: flex;
  min-height: 100vh !important;
}
.banner-btcelite .wrapper-banner-btcelite video {
  width: 100%;
  min-height: 100vh !important;
  position: absolute;
  z-index: 1;
  object-fit: cover;
  object-position: 50% 50%;
}
.banner-btcelite .wrapper-banner-btcelite .logo-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.banner-btcelite .wrapper-banner-btcelite .logo-banner .text-wrapper {
  background: rgba(0, 0, 0, 0.71);
  padding: 2rem;
  width: 100%;
  border-radius: 5px;
}
.banner-btcelite .wrapper-banner-btcelite .logo-banner .text-wrapper .logo-text-banner {
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 11px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.banner-btcelite .wrapper-banner-btcelite .logo-banner .text-wrapper .logo-text-banner .goal-text {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  text-transform: uppercase;
}
.banner-btcelite .wrapper-banner-btcelite .logo-banner .text-wrapper .logo-text-banner .goal-text .elite {
  color: #bda069;
  display: inline;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.banner-btcelite .wrapper-banner-btcelite .logo-banner .text-wrapper .logo-text-banner .goal-text .management {
  color: #fff;
  display: inline;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.banner-btcelite .wrapper-banner-btcelite .logo-banner .text-wrapper .discover-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 144.687%;
  text-align: center;
  margin-top: 1rem;
}
.banner-btcelite .wrapper-banner-btcelite .logo-banner .button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.banner-btcelite .wrapper-banner-btcelite .logo-banner .button-wrapper .btn-primary {
  background: #bda069;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 311px;
  height: 85px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.banner-btcelite .wrapper-banner-btcelite .logo-banner .button-wrapper .btn-primary:hover {
  background: #fff;
}
.banner-btcelite .wrapper-banner-btcelite .logo-banner .button-wrapper .btn-primary .btn-text {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem;
}

.security-section {
  position: relative;
  background: rgba(56, 55, 52, 0.82) 0%;
  width: 100%;
}
.security-section .container {
  padding: 4rem 0;
}
.security-section .container h2 {
  color: #bda069;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
}
.security-section .container h3 {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 30px;
}
.security-section .container .description {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.security-section .container .security-image {
  position: absolute;
  bottom: -100px;
  width: 380px;
  height: auto;
  z-index: 2;
}

.total-security-section {
  position: relative;
  margin-top: 80px;
  background: rgba(56, 55, 52, 0.2) 0%;
  width: 100%;
}
.total-security-section .container {
  position: relative;
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 55px 0;
}
.total-security-section .container .row {
  width: 100%;
  margin: 0;
  gap: 30px;
}
@media (min-width: 992px) {
  .total-security-section .container .row {
    display: flex;
    align-items: center;
    position: relative;
  }
  .total-security-section .container .row .col-6:first-child {
    position: relative;
    margin-left: -10vw;
    z-index: 1;
  }
  .total-security-section .container .row .col-6:first-child .security-icon {
    width: 100%;
    height: auto;
    margin-top: -100px;
    margin-bottom: -100px;
  }
  .total-security-section .container .row .col-6:last-child {
    position: relative;
    z-index: 2;
    padding-right: 50px;
    padding-left: 50px;
    width: 50%;
  }
}
.total-security-section .container h2 {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 160% */
  text-transform: uppercase;
}
.total-security-section .container h3 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px; /* 125% */
  margin-bottom: 30px;
}
.total-security-section .container .description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 166.667% */
}

.personal-broker-section {
  position: relative;
  margin-top: 80px;
  width: 100%;
  overflow: hidden;
}
.personal-broker-section .container {
  position: relative;
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 0;
}
.personal-broker-section .container .row:first-child {
  padding: 0 calc((100vw - 1320px) / 2);
}
.personal-broker-section .container .row:last-child {
  position: relative;
  width: 100%;
  margin: 0;
  min-height: 400px;
  background: black;
}
.personal-broker-section .container .row:last-child .col-6:first-child {
  padding: 0 70px;
}
.personal-broker-section .container .row:last-child .col-6:last-child {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.personal-broker-section .container .row:last-child .col-6:last-child .broker-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 414px;
}
.personal-broker-section .container h2 {
  color: #d1b06b;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.personal-broker-section .container h3 {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 20px;
}
.personal-broker-section .container .description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 30px;
}

.freedom-section {
  position: relative;
  margin-top: 80px;
  width: 100%;
  background: black;
  padding: 55px 0;
}
.freedom-section .container .row {
  display: flex;
  align-items: center;
}
.freedom-section .container .row h2 {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
}
.freedom-section .container .row h2:after {
  content: "";
  display: block;
  width: 350px;
  height: 2px;
  background: #bda069;
  margin-top: 20px;
}
.freedom-section .container .row .col-2 img {
  width: 100%;
  height: auto;
}
.freedom-section .container .row .col-5:last-of-type {
  padding: 0 40px;
}
.freedom-section .container .row .col-5:last-of-type h3 {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 20px;
}
.freedom-section .container .row .col-5:last-of-type .description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.freedom-section .container .row .col-5:last-of-type .description li {
  list-style-type: disc;
}

.nocost-section {
  position: relative;
  margin-top: 80px;
  width: 100%;
  background-color: #ADADAD;
  padding: 55px 0;
}
.nocost-section .container .row {
  display: flex;
  align-items: center;
}
.nocost-section .container .row h2 {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
}
.nocost-section .container .row h2:after {
  content: "";
  display: block;
  width: 350px;
  height: 2px;
  background: black;
  margin-top: 20px;
}
.nocost-section .container .row .col-2 img {
  width: 100%;
  height: auto;
}
.nocost-section .container .row .col-5:last-of-type {
  padding: 0 40px;
}
.nocost-section .container .row .col-5:last-of-type h3 {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 20px;
}
.nocost-section .container .row .col-5:last-of-type .description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.nocost-section .container .row .col-5:last-of-type .description li {
  list-style-type: disc;
}

.start-growing-section {
  position: relative;
  margin-top: 80px;
  width: 100%;
  padding: 55px 0;
  background: #514734 45%;
}
.start-growing-section .container .row {
  display: flex;
  align-items: center;
}
.start-growing-section .container .row .col-6:first-child img {
  width: 100%;
  height: auto;
}
.start-growing-section .container .row .col-6:last-child {
  padding: 0 40px;
}
.start-growing-section .container .row .col-6:last-child h2 {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.start-growing-section .container .row .col-6:last-child .description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 30px;
}
.start-growing-section .container .row .col-6:last-child .btn-activate {
  display: inline-block;
  max-width: 245.963px;
  background: #bda069;
  border-radius: 5px;
  color: #000;
  text-decoration: none;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  text-transform: uppercase;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.start-growing-section .container .row .col-6:last-child .btn-activate:hover {
  background: #fff;
  color: #000;
}

.page-wrapper {
  background-color: #000;
}

.banner-satoshi {
  position: relative;
  overflow: hidden;
}
.banner-satoshi .wrapper-banner-satoshi {
  display: flex;
  min-height: 100vh !important;
}
.banner-satoshi .wrapper-banner-satoshi video {
  width: 100%;
  min-height: 100vh !important;
  position: absolute;
  z-index: 1;
  object-fit: cover;
  object-position: 50% 50%;
  filter: brightness(0.7);
}
.banner-satoshi .wrapper-banner-satoshi .logo-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.banner-satoshi .wrapper-banner-satoshi .logo-banner .text-wrapper {
  background: rgba(0, 0, 0, 0.71);
  padding: 2rem;
  width: 100%;
  border-radius: 5px;
}
.banner-satoshi .wrapper-banner-satoshi .logo-banner .text-wrapper .logo-text-banner {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 11px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .banner-satoshi .wrapper-banner-satoshi .logo-banner .text-wrapper .logo-text-banner {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .banner-satoshi .wrapper-banner-satoshi .logo-banner .text-wrapper .logo-text-banner {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  .banner-satoshi .wrapper-banner-satoshi .logo-banner .text-wrapper .logo-text-banner {
    padding: 0rem 3rem;
    font-size: 40px;
  }
}
.banner-satoshi .wrapper-banner-satoshi .logo-banner .text-wrapper .logo-text-banner .goal-text {
  color: #bda069;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 800;
  line-height: 45px; /* 128.571% */
  text-transform: uppercase;
}
.banner-satoshi .wrapper-banner-satoshi .logo-banner .text-wrapper .discover-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 37.5px */
  text-align: center;
  margin-top: 1rem;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.success-section {
  padding: 60px 0;
  background-color: #fff;
}
.success-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}
.success-section .container h2 {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 30px;
}
.success-section .container .description {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  max-width: 1030px;
  margin: 0 auto 50px;
}
.success-section .container .button-wrapper {
  display: flex;
  justify-content: center;
}
.success-section .container .button-wrapper .activate-button {
  width: 334px;
  height: 64px;
  border: none;
  border-radius: 5px;
  background: #bda069;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 20px;
  transition: all 0.3s ease;
}
.success-section .container .button-wrapper .activate-button:hover {
  background: #000;
  color: #bda069;
}

.revolutionize-section .top-content {
  background-color: #000;
  padding: 60px 0;
}
.revolutionize-section .top-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.revolutionize-section .top-content .container h2 {
  color: #bda069;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-weight: 600;
  line-height: 144.687%;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.revolutionize-section .top-content .container .description {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
  margin: 0 auto;
}
.revolutionize-section .top-content .container .description .highlight {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 35px;
}
.revolutionize-section .bottom-content {
  background-image: url("../../img/bg_satoshi_165.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  position: relative;
  padding: 60px 0;
}
.revolutionize-section .bottom-content .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.revolutionize-section .bottom-content .container .row {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  padding: 0 120px;
  margin-bottom: 40px;
}
.revolutionize-section .bottom-content .container .row.top-row {
  justify-content: space-between;
}
.revolutionize-section .bottom-content .container .row.bottom-row {
  justify-content: center;
}
.revolutionize-section .bottom-content .signal-card {
  width: 419px;
  min-height: 224px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #C9C9C9;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.revolutionize-section .bottom-content .signal-card .card-title {
  background: black;
  padding: 15px;
  margin-bottom: 20px;
  width: 100%;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.revolutionize-section .bottom-content .signal-card .card-title h3 {
  color: #bda069;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 144.687%;
  text-transform: uppercase;
}
.revolutionize-section .bottom-content .signal-card .card-text {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  text-align: center;
}

.app-features-section .top-content {
  background-color: #000;
  padding: 60px 0;
}
.app-features-section .top-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}
.app-features-section .top-content .container .main-title {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  line-height: 144.687%;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.app-features-section .top-content .container .sub-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 144.687%;
  text-transform: uppercase;
}
.app-features-section .bottom-content {
  background-image: url("../../img/bg_app_provides.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  scale: 0.95;
}
.app-features-section .bottom-content .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.app-features-section .bottom-content .row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}
.app-features-section .bottom-content .feature-card-title {
  width: 286.966px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
}
.app-features-section .bottom-content .feature-card-title h3 {
  color: #eccf98;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 144.687%;
  text-transform: uppercase;
}
.app-features-section .bottom-content .feature-card-content {
  width: 287px;
  min-height: 221px;
  flex-shrink: 0;
  border-radius: 5px;
  background: rgba(189, 160, 105, 0.9490196078);
  display: flex;
  align-items: center;
  padding: 20px;
  align-items: flex-start;
}
.app-features-section .bottom-content .feature-card-content p {
  color: #000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 144.687%;
  text-transform: capitalize;
}

.farewell-section {
  background: #000;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  padding: 100px 0 12px;
}
.farewell-section .container {
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.farewell-section .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 480px;
  margin: 0 auto;
  padding: 0;
}
.farewell-section .text-content {
  width: 50%;
  padding: 0 100px;
}
.farewell-section .text-content h2 {
  color: #bfa573;
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-weight: 600;
  line-height: 45px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.farewell-section .text-content .description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 150%;
  text-transform: capitalize;
  margin-bottom: 40px;
}
.farewell-section .text-content .description li {
  list-style: disc;
}
.farewell-section .text-content .highlight {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 150%;
  text-transform: capitalize;
  margin-bottom: 60px;
}
.farewell-section .text-content .button-wrapper .profit-button {
  width: 289.966px;
  height: 77px;
  flex-shrink: 0;
  border: none;
  background: #bda069 68.96%;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.farewell-section .text-content .button-wrapper .profit-button:hover {
  background: #fff;
}
.farewell-section .image-content {
  width: 50%;
  text-align: right;
  height: 100%;
  display: flex;
  align-items: center;
}
.farewell-section .image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.referral-section .top-content {
  background: #000;
  min-height: 400px;
  padding: 60px 0;
}
.referral-section .top-content .container {
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 0;
}
.referral-section .top-content .container h2 {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-weight: 600;
  line-height: 40px;
  text-transform: uppercase;
  margin: 0 auto 40px;
}
.referral-section .top-content .container h2 .highlight {
  color: #bda069;
}
.referral-section .top-content .container h2 .white {
  color: #fff;
}
.referral-section .top-content .container .row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.referral-section .top-content .container .referral-card {
  width: calc(50% - 10px);
  min-height: 400px;
  padding: 50px 100px 40px 60px;
  margin-bottom: -300px;
  z-index: 2;
}
.referral-section .top-content .container .referral-card h3 {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 30px;
  margin-bottom: 20px;
}
.referral-section .top-content .container .referral-card .card-text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  text-align: justify;
}
.referral-section .top-content .container .referral-card .card-text .highlight {
  font-weight: 800;
}
.referral-section .top-content .container .referral-card.left-card {
  background: #fff;
}
.referral-section .top-content .container .referral-card.right-card {
  background: #323232;
}
.referral-section .top-content .container .referral-card.right-card h3,
.referral-section .top-content .container .referral-card.right-card .card-text {
  color: #fff;
}
.referral-section .bottom-content {
  min-height: 400px;
  background: linear-gradient(133deg, #bda069 47.58%, #f7f4ee 99.09%, #fff 106.05%);
  padding-top: 200px;
}
.referral-section .bottom-content .container {
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 20px 0;
}
.referral-section .bottom-content .warning-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  list-style: none;
}
.referral-section .bottom-content .warning-list li {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 20px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

.subscription-section {
  background-image: url("../../img/bg_subscription.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subscription-section .subs-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.subscription-section .subs-wrapper .text-yellow {
  color: #F1B94F;
  font-size: 35px;
  font-weight: 600;
  line-height: 40px;
}
.subscription-section .subs-wrapper .referral-card {
  color: white;
  margin: 2rem 4rem;
  margin-top: 5rem;
  padding: 2rem 5rem;
  background-color: #323232;
  border-radius: 10px;
}
.subscription-section .subs-wrapper .referral-card .card-text {
  font-size: 23px;
  line-height: 40px;
  font-weight: 500;
}
.subscription-section .subs-wrapper .share-button {
  border: none;
  border-radius: 5px;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  box-shadow: 0px 4px 10px 0px rgba(56, 55, 52, 0.88);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  min-width: 334px;
  text-transform: uppercase;
}
.subscription-section .subs-wrapper .share-button:hover {
  border-radius: 5px;
  background: #000;
  color: #c4a46f;
  font-size: 19px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
}

.sharing-section {
  min-height: 300px;
  margin-top: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  z-index: 2;
}
.sharing-section .container {
  width: 100vw;
  max-width: none;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sharing-section .sharing-content {
  width: 898px;
  height: 275px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(133deg, #bda069 47.58%, #f7f4ee 99.09%, #fff 106.05%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  z-index: 2;
}
.sharing-section .sharing-content h2 {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 20px;
}
.sharing-section .sharing-content .description {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  padding: 0 20px;
  margin-bottom: 20px;
}

.payout-section {
  background: #fff;
}
.payout-section .bottom-content {
  padding: 20px 0 30px;
}
.payout-section .bottom-content h2 {
  font-size: 25px;
  font-weight: 800;
  margin: 2rem 0;
}
.payout-section .bottom-content .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
  margin-left: 3rem;
  padding: 0;
}
.payout-section .bottom-content .text-content {
  width: 60%;
  padding-right: 40px;
}
.payout-section .bottom-content .text-content .payout-list {
  max-width: 100%;
  list-style: none;
}
.payout-section .bottom-content .text-content .payout-list li {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  list-style-type: disc;
  margin-left: 20px;
  text-align: justify;
}
.payout-section .bottom-content .text-content h3 {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 20px;
}
.payout-section .bottom-content .text-content .description {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 20px;
}
.payout-section .bottom-content .text-content .withdraw-list {
  padding-left: 20px;
}
.payout-section .bottom-content .text-content .withdraw-list li {
  list-style: disc;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 45px;
  margin-bottom: 5px;
}
.payout-section .bottom-content .text-content .withdraw-list li strong {
  font-weight: 900;
}
.payout-section .bottom-content .image-content {
  width: 40%;
  height: 70%;
  text-align: end;
}
.payout-section .bottom-content .image-content img {
  width: 70%;
  object-fit: contain;
}
.payout-section .opportunity-content {
  background: rgba(0, 0, 0, 0.78);
  width: 100%;
  margin: 25px 0;
  padding: 40px 0;
}
.payout-section .opportunity-content .container {
  width: 100vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.payout-section .opportunity-content .opportunity-text {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.binance-section {
  background-image: url("../../img/bg_binance.png");
  background-size: contain;
  background-position: center 10px;
  background-repeat: no-repeat;
  min-height: 450px;
  padding: 60px;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.binance-section .container {
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 0 40px;
  text-align: center;
}
.binance-section .container h2 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.binance-section .container h2 .highlight {
  color: #ffe440;
}
.binance-section .container .description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 20px;
}
.binance-section .container .description .highlight {
  color: #ffe440;
}
.binance-section .container .link-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 20px;
}
.binance-section .container .link-text .click-link {
  color: #ffe440;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.binance-section .container .warning-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.binance-section .container .warning-text .highlight {
  color: #ffe440;
}

.formula-section {
  overflow: hidden;
}
.formula-section .top-content {
  padding: 60px 0;
  background: #000;
}
.formula-section .top-content .container {
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 0 40px;
  text-align: center;
}
.formula-section .top-content .container h2 {
  color: #bd9f69;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 144.687%;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.formula-section .top-content .container .description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 140%;
  text-transform: capitalize;
  max-width: 1200px;
  margin: 0 auto;
}
.formula-section .bottom-content {
  background: #000;
  padding: 0 0 60px;
}
.formula-section .bottom-content .container {
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.formula-section .bottom-content .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.formula-section .bottom-content .text-content {
  width: 50%;
  padding-left: 100px;
  padding-right: 50px;
}
.formula-section .bottom-content .text-content h3 {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 150%;
  font-variant: all-small-caps;
  margin-bottom: 30px;
}
.formula-section .bottom-content .text-content .description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 40px;
  text-transform: capitalize;
  margin-bottom: 60px;
}
.formula-section .bottom-content .text-content .discover-our-secret-formula-button {
  border: none;
  border-radius: 5px;
  background: #bda069;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.formula-section .bottom-content .text-content .discover-our-secret-formula-button:hover {
  background: #fff;
}
.formula-section .bottom-content .image-content {
  position: relative;
  right: 0;
  height: 100%;
  display: flex;
  width: 50%;
  align-items: center;
}
.formula-section .bottom-content .image-content img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-wrapper {
  background-color: #000;
}

.crypto-consulting {
  position: relative;
  overflow: hidden;
  padding-top: 77px;
}
.crypto-consulting .container-fluid .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.crypto-consulting .container-fluid .row .bg-crypto-consulting {
  height: 100%;
  position: relative;
}
.crypto-consulting .container-fluid .row .bg-crypto-consulting img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.crypto-consulting .container-fluid .row .consulting-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.crypto-consulting .container-fluid .row .consulting-content .title {
  color: #d1b06b;
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-weight: 800;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.crypto-consulting .container-fluid .row .consulting-content .subtitle {
  color: #bfa573;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.crypto-consulting .container-fluid .row .consulting-content .description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 2rem;
}
.crypto-consulting .container-fluid .row .consulting-content .cta-button {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  text-transform: uppercase;
  text-decoration: underline;
  background: #bfa573;
  border-radius: 5px;
  box-shadow: 0px 4px 4px 0px #e8d9bd;
  padding: 1rem 3rem;
  border: none;
  width: fit-content;
  transition: all 0.3s ease;
}
.crypto-consulting .container-fluid .row .consulting-content .cta-button:hover {
  background: #fff;
}
@media (min-width: 768px) {
  .crypto-consulting .consulting-content {
    padding: 3rem !important;
  }
}
@media (min-width: 992px) {
  .crypto-consulting .consulting-content {
    padding: 4rem !important;
  }
}

.advisor-section {
  background: rgba(56, 55, 52, 0.6);
  padding: 60px 0;
}
.advisor-section .row {
  min-height: 300px;
}
.advisor-section .col-lg-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.advisor-section .title-wrapper {
  width: fit-content;
}
.advisor-section .title-wrapper .advisor-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.advisor-section .title-wrapper .divider {
  background: #bda069;
  height: 3px;
  width: 100%;
}
.advisor-section .advisor-icon {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.advisor-section .content-title {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 20px;
}
.advisor-section .content-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

.service-cards-consulting {
  padding: 50px 70px 100px;
}
.service-cards-consulting .service-card {
  background: rgba(56, 55, 52, 0.6);
  border-radius: 10px;
  padding: 40px 100px;
  height: 100%;
  min-height: 300px;
}
.service-cards-consulting .service-card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-cards-consulting .service-card .icon-wrapper {
  margin-bottom: 25px;
}
.service-cards-consulting .service-card .icon-wrapper .card-icon {
  max-height: 105px;
  width: auto;
}
.service-cards-consulting .service-card .title-container {
  position: relative;
  width: fit-content;
  margin-bottom: 40px;
}
.service-cards-consulting .service-card .title-container .card-title {
  color: #d1b06b;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.service-cards-consulting .service-card .title-container .card-divider {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 3px;
  background: #bda069;
}
.service-cards-consulting .service-card .title-container .card-divider {
  background: #bda069;
  height: 3px;
  width: 80%;
}
.service-cards-consulting .service-card .card-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 20px;
  text-align: left;
}
.service-cards-consulting .service-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  width: 100%;
  text-align: left;
}
.service-cards-consulting .service-card .feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.service-cards-consulting .service-card .feature-list li:before {
  content: "•";
  position: absolute;
  left: 0;
}
.service-cards-consulting .service-card .feature-list.primary li {
  color: #d1b06b;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 35px;
}
.service-cards-consulting .service-card .feature-list.secondary li {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 35px;
  text-align: justify;
}
@media (min-width: 992px) {
  .service-cards-consulting .row {
    margin: 0 -35px;
  }
  .service-cards-consulting .col-lg-6 {
    padding: 0 35px;
  }
}

.starting-section {
  padding: 60px 0;
  position: relative;
  overflow: visible;
  background: rgb(45, 44, 43);
}
.starting-section .top-content {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.starting-section .middle-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.starting-section .middle-content .description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
.starting-section .middle-content .description span {
  font-weight: 700;
}
.starting-section .section-title {
  color: #bfa573;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.starting-section .floating-image {
  position: relative;
  text-align: right;
  margin-top: -120px;
}
.starting-section .floating-image img {
  max-width: 300px;
  height: auto;
}
.starting-section .content-row {
  margin-top: 50px;
}
.starting-section .content-block {
  margin-bottom: 30px;
}
.starting-section .content-block .content-title {
  color: #d1b06b;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 20px;
}
.starting-section .content-block .content-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.knowledge-section {
  padding: 80px 0;
  background-image: url("../../img/bg_knowledge.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.knowledge-section .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.knowledge-section .section-title {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.knowledge-section .main-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 40px;
}
.knowledge-section .subtitle {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 45px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.knowledge-section .sub-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 40px;
}
.knowledge-section .cta-button {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
  background: #d1b06b;
  border: none;
  border-radius: 5px;
  padding: 15px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.knowledge-section .cta-button:hover {
  background: #fff;
}

.passive-income {
  background-color: #bda069;
  position: relative;
  overflow: hidden;
  padding: 77px 0 0;
  margin-top: 0;
}
.passive-income .container-fluid .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.passive-income .container-fluid .row .bg-passive-income {
  height: 100%;
  position: relative;
}
.passive-income .container-fluid .row .bg-passive-income img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.passive-income .container-fluid .row .passive-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.passive-income .container-fluid .row .passive-content .title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.passive-income .container-fluid .row .passive-content .subtitle {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.passive-income .container-fluid .row .passive-content .description {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 2rem;
}
.passive-income .container-fluid .row .passive-content .cta-button {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  text-transform: uppercase;
  text-decoration: underline;
  background: #000;
  border-radius: 5px;
  box-shadow: 0px 4px 4px 0px rgba(56, 55, 52, 0.88);
  padding: 1rem 3rem;
  border: none;
  width: fit-content;
  text-align: center;
  transition: all 0.3s ease;
}
.passive-income .container-fluid .row .passive-content .cta-button:hover {
  background: #fff;
  color: #000;
}
@media (min-width: 768px) {
  .passive-income .passive-content {
    padding: 3rem !important;
  }
}
@media (min-width: 992px) {
  .passive-income .passive-content {
    padding: 4rem !important;
  }
}

.transform-section {
  position: relative;
  padding: 100px 0;
  background: rgb(11, 10, 8);
  overflow: visible;
}
.transform-section .transform-title {
  color: #d1b06b;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.transform-section .transform-description {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
.transform-section .transform-image {
  position: absolute;
  max-width: 100%;
  height: auto;
  bottom: -200px;
  left: -100px;
  transform: translateY(50px);
}

.choose-section {
  position: relative;
  padding: 50px 200px;
}
.choose-section .choose-title {
  color: #bda069;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 25px;
}
.choose-section .choose-card {
  background: #0B0A08;
  border-radius: 10px;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0 50px;
}
.choose-section .choose-card h3 {
  color: #d1b06b;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.choose-section .choose-card p {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

.invest-section {
  position: relative;
  padding: 50px 0;
}
.invest-section .invest-title {
  color: #d1b06b;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
}
.invest-section .invest-description {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
  max-width: 1200px;
  margin: 0;
}
.invest-section .invest-image {
  position: absolute;
  max-width: 100%;
  height: auto;
}
.invest-section .invest-content {
  padding: 2rem;
}

.investment-section {
  position: relative;
  padding: 100px 0;
  background: #76684C;
}
.investment-section .investment-card {
  background: rgba(28, 28, 27, 0.88);
  border-radius: 10px;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.investment-section .investment-card h3 {
  color: #eccf98;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.investment-section .investment-card p {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 144.687%;
  text-transform: capitalize;
  margin-bottom: 0;
}

.collateral-section {
  position: relative;
  padding: 40px 0;
  background: rgba(42, 41, 40, 0.88);
}
.collateral-section .collateral-title {
  color: #d1b06b;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 40px;
  /* 160% */
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.collateral-section .collateral-description {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  /* 166.667% */
  margin-bottom: 2rem;
}
.collateral-section .collateral-btn {
  border: none;
  border-radius: 5px;
  background: #d1b06b;
  color: #161513;
  font-family: "Poppins", sans-serif;
  padding: 0.75rem 3rem;
  cursor: pointer;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 156.25% */
  text-transform: uppercase;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.collateral-section .collateral-btn:hover {
  background: #fff;
}
.collateral-section .collateral-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
  position: relative;
  top: -150px;
}

.portfolio-creation {
  background-color: #000;
  position: relative;
  overflow: hidden;
  padding: 77px 0 0;
  margin-top: 0;
}
.portfolio-creation .container-fluid .row {
  display: flex;
  align-items: center;
}
.portfolio-creation .container-fluid .row .bg-portfolio {
  flex: 0 0 50%;
  height: 100%;
}
.portfolio-creation .container-fluid .row .bg-portfolio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-creation .container-fluid .row .portfolio-content {
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 50%;
}
.portfolio-creation .container-fluid .row .portfolio-content .title {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.portfolio-creation .container-fluid .row .portfolio-content .subtitle {
  color: #bfa573;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.portfolio-creation .container-fluid .row .portfolio-content .description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 2rem;
}
.portfolio-creation .container-fluid .row .portfolio-content .cta-button {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
  border-radius: 5px;
  background: #bfa573;
  box-shadow: 0px 4px 4px 0px #e8d9bd;
  border: none;
  padding: 1rem 3rem;
  width: fit-content;
  text-align: center;
  transition: all 0.3s ease;
}
.portfolio-creation .container-fluid .row .portfolio-content .cta-button:hover {
  background: #fff;
}
@media (min-width: 768px) {
  .portfolio-creation .portfolio-content {
    padding: 3rem !important;
  }
}
@media (min-width: 992px) {
  .portfolio-creation .portfolio-content {
    padding: 0 4rem !important;
  }
}

.profile-priority {
  background: rgb(23, 23, 22);
  padding: 4rem 0;
  background-blend-mode: screen;
}
.profile-priority .container {
  text-align: center;
}
.profile-priority .container .profile-content {
  max-width: 800px;
  margin: 0 auto;
}
.profile-priority .container .profile-content .profile-title {
  color: #d1b06b;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.profile-priority .container .profile-content .profile-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

.tailored-section {
  padding: 4rem 0;
}
.tailored-section .container {
  position: relative;
  margin: 0 auto;
}
.tailored-section .tailored-card {
  background: rgb(23, 23, 22);
  padding: 3rem;
  border-radius: 10px;
  position: relative;
  overflow: visible;
  min-height: 300px;
}
.tailored-section .tailored-card .tailored-icon {
  position: absolute;
  top: -150px;
  left: -100px;
  min-width: 215px;
  height: auto;
  z-index: 1;
}
.tailored-section .tailored-card .row {
  display: flex;
  align-items: center;
}
.tailored-section .tailored-card .col-lg-4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: center;
}
.tailored-section .tailored-card .tailored-title {
  color: #d1b06b;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.tailored-section .tailored-card .divider {
  height: 3px;
  background: #bda069;
  width: 80%;
  margin: 0 auto 2rem;
}
.tailored-section .tailored-card .bullet-points .bullet-item {
  margin-bottom: 1.5rem;
}
.tailored-section .tailored-card .bullet-points .bullet-item:last-child {
  margin-bottom: 0;
}
.tailored-section .tailored-card .bullet-points .bullet-item .bullet-title {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  text-align: justify;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 20px;
}
.tailored-section .tailored-card .bullet-points .bullet-item .bullet-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #bda069;
  border-radius: 50%;
}
.tailored-section .tailored-card .bullet-points .bullet-item .bullet-desc {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 0;
}

.future-section {
  padding: 4rem 0;
  background: rgb(23, 23, 22);
}
.future-section .future-content {
  padding-right: 2rem;
}
.future-section .future-content .future-title {
  color: #d1b06b;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 35px;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}
.future-section .future-content .future-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
.future-section .keeps-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.future-section .keeps-content .keeps-title {
  color: #d1b06b;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.future-section .keeps-content .divider {
  height: 3px;
  background: #bda069;
  width: 60%;
  margin-bottom: 2rem;
}
.future-section .keeps-content .keeps-image {
  max-width: 280px;
  height: auto;
}

.custom-portfolio-section {
  padding: 4rem 0;
}
.custom-portfolio-section .container-fluid {
  padding: 0;
}
.custom-portfolio-section .container-fluid .row {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.custom-portfolio-section .container-fluid .custom-portfolio-image {
  text-align: left;
}
.custom-portfolio-section .container-fluid .custom-portfolio-image img {
  width: 100%;
  height: auto;
}
.custom-portfolio-section .container-fluid .custom-portfolio-content {
  padding: 0 50px;
}
.custom-portfolio-section .container-fluid .custom-portfolio-content .custom-title {
  color: #d1b06b;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.custom-portfolio-section .container-fluid .custom-portfolio-content .custom-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 4rem;
}
.custom-portfolio-section .container-fluid .custom-portfolio-content .custom-highlight {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 2rem;
}
.custom-portfolio-section .container-fluid .custom-portfolio-content .custom-button {
  display: inline-block;
  border-radius: 5px;
  background: #d1b06b;
  color: #000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.custom-portfolio-section .container-fluid .custom-portfolio-content .custom-button:hover {
  background: #fff;
}

.accumulation-wrapper {
  padding-bottom: 75px;
}

.accumulation-plans {
  background-color: #bda069;
  position: relative;
  overflow: hidden;
  padding: 77px 0 0;
  margin-top: 0;
}
.accumulation-plans .container-fluid {
  width: 100%;
  max-width: none;
}
.accumulation-plans .container-fluid .row {
  width: 100%;
  display: flex;
  align-items: center;
}
.accumulation-plans .container-fluid .row .bg-accumulation {
  flex: 0 0 50%;
  position: relative;
  margin: 0;
}
.accumulation-plans .container-fluid .row .bg-accumulation img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.accumulation-plans .container-fluid .row .accumulation-content {
  flex: 0 0 50%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.accumulation-plans .container-fluid .row .accumulation-content .title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.accumulation-plans .container-fluid .row .accumulation-content .subtitle {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.accumulation-plans .container-fluid .row .accumulation-content .description {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 2rem;
}
.accumulation-plans .container-fluid .row .accumulation-content .cta-button {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  text-transform: uppercase;
  text-decoration: underline;
  background: #000;
  border-radius: 5px;
  box-shadow: 0px 4px 4px 0px rgba(56, 55, 52, 0.88);
  padding: 1rem 3rem;
  border: none;
  width: fit-content;
  text-align: center;
  transition: all 0.3s ease;
}
.accumulation-plans .container-fluid .row .accumulation-content .cta-button:hover {
  background: #fff;
  color: #000;
}
@media (min-width: 768px) {
  .accumulation-plans .accumulation-content {
    padding: 3rem !important;
  }
}
@media (min-width: 992px) {
  .accumulation-plans .accumulation-content {
    padding: 4rem !important;
  }
}

.systematic-section {
  background: #000;
  padding: 4rem 0;
}
.systematic-section .container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}
.systematic-section .systematic-title {
  color: #d1b06b;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.systematic-section .systematic-description {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-choose-section {
  padding: 4rem 0;
  background: rgba(56, 55, 52, 0.82);
}
.why-choose-section .why-choose-content .why-title {
  color: #d1b06b;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.why-choose-section .why-choose-content .divider {
  height: 3px;
  background: #bda069;
  width: 70%;
  margin-bottom: 2rem;
}
.why-choose-section .why-choose-content .why-image {
  width: 100%;
  height: auto;
  max-width: 280px;
}
.why-choose-section .benefits-content .benefits-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 1.5rem;
}
.why-choose-section .benefits-content .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-choose-section .benefits-content .benefits-list li {
  color: #d1b06b;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 35px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 30px;
}
.why-choose-section .benefits-content .benefits-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #d1b06b;
  border-radius: 50%;
}

.transparency-section {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.2);
}
.transparency-section .transparency-content {
  padding-right: 2rem;
}
.transparency-section .transparency-content .transparency-title {
  color: #d1b06b;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.transparency-section .transparency-content .transparency-description p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 1.5rem;
}
.transparency-section .transparency-content .transparency-description p:last-child {
  margin-bottom: 0;
}
.transparency-section .transparency-image {
  text-align: center;
}
.transparency-section .transparency-image img {
  max-width: 100%;
  height: auto;
}

.prosperity-section {
  margin: 75px 0 0;
  padding: 50px 0;
  background: rgba(204, 183, 143, 0.5);
}
.prosperity-section .prosperity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prosperity-section .prosperity-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.prosperity-section .prosperity-content .prosperity-title {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 29px;
  font-weight: 600;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}
.prosperity-section .prosperity-content .prosperity-subtitle {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 1rem;
}
.prosperity-section .prosperity-content .prosperity-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 2rem;
}
.prosperity-section .prosperity-content .prosperity-button {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  text-transform: uppercase;
  text-align: center;
  background: #d1b06b;
  border-radius: 5px;
  padding: 1rem 2rem;
  border: none;
  width: fit-content;
  transition: all 0.3s ease;
}
.prosperity-section .prosperity-content .prosperity-button:hover {
  background: #fff;
}

.funds-reallocation {
  background-color: #bda069;
  position: relative;
  overflow: hidden;
  padding-top: 77px;
  margin-top: 0;
}
.funds-reallocation .container-fluid {
  width: 100%;
  max-width: none;
  padding: 0;
}
.funds-reallocation .container-fluid .row {
  width: 100%;
  display: flex;
  align-items: center;
}
.funds-reallocation .container-fluid .row .fr-image {
  flex: 0 0 50%;
  margin: 0;
}
.funds-reallocation .container-fluid .row .fr-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.funds-reallocation .container-fluid .row .fr-content {
  flex: 0 0 50%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.funds-reallocation .container-fluid .row .fr-content .fr-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.funds-reallocation .container-fluid .row .fr-content .fr-subtitle {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.funds-reallocation .container-fluid .row .fr-content .fr-description {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 2rem;
}
.funds-reallocation .container-fluid .row .fr-content .fr-button {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-transform: uppercase;
  background: #000;
  border-radius: 5px;
  box-shadow: 0px 4px 4px 0px rgba(56, 55, 52, 0.88);
  padding: 1rem 3rem;
  border: none;
  width: fit-content;
  transition: all 0.3s ease;
}
.funds-reallocation .container-fluid .row .fr-content .fr-button:hover {
  background: #fff;
  color: #000;
}

.funds-solution-section {
  margin-top: 55px;
  background: rgba(40, 40, 39, 0.6);
  padding: 2rem 0;
}
.funds-solution-section .container-fluid {
  width: 100%;
  max-width: none;
  padding: 0;
}
.funds-solution-section .container-fluid .top-row {
  padding-top: 2rem;
}
.funds-solution-section .container-fluid .top-row .fs-title {
  color: #d1b06b;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.funds-solution-section .container-fluid .top-row .fs-subtitle {
  color: #fff;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
}
.funds-solution-section .container-fluid .bottom-row {
  align-items: center;
}
.funds-solution-section .container-fluid .bottom-row .fs-content {
  padding: 2rem 2rem 2rem 6rem;
}
.funds-solution-section .container-fluid .bottom-row .fs-content p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
.funds-solution-section .container-fluid .bottom-row .fs-content p:first-of-type {
  margin-bottom: 2rem;
}
.funds-solution-section .container-fluid .bottom-row .fs-image {
  padding: 2rem 6rem 2rem 2rem;
}
.funds-solution-section .container-fluid .bottom-row .fs-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.how-it-works-section {
  background: #000;
  padding: 4rem 0;
}
.how-it-works-section .hiw-title {
  color: #bda069;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 1.5rem;
}
.how-it-works-section .hiw-description {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 3rem;
}
.how-it-works-section .process-card {
  background: #1a1917;
  padding: 3rem;
  height: 100%;
  border-radius: 10px;
}
.how-it-works-section .process-card .card-title {
  color: #d1b06b;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.how-it-works-section .process-card .card-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 0;
}

.advantages-section {
  background: rgba(18, 18, 18, 0.88);
  padding: 2rem 0;
}
.advantages-section .adv-title {
  color: #d1b06b;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.advantages-section .divider {
  height: 3px;
  background: #bda069;
  width: 30%;
  margin: 0 auto 1.5rem;
}
.advantages-section .adv-subtitle {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 3rem;
}
.advantages-section .adv-image {
  text-align: center;
  margin-bottom: 2rem;
}
.advantages-section .adv-image img {
  max-width: 100%;
  height: auto;
}
.advantages-section .advantages-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.advantages-section .advantages-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 1.5rem;
}
.advantages-section .advantages-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background-color: #d1b06b;
  border-radius: 50%;
}
.advantages-section .advantages-list li .list-title {
  color: #d1b06b;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
}
.advantages-section .advantages-list li .list-desc {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

.complex-regulations-section {
  background: #000;
  padding: 4rem 0;
}
.complex-regulations-section .cr-title {
  color: #bda069;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 29px;
  font-weight: 600;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}
.complex-regulations-section .cr-subtitle {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 3rem;
}
.complex-regulations-section .cr-content {
  padding: 2rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.complex-regulations-section .cr-content .cr-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 1.5rem;
}
.complex-regulations-section .cr-content .cr-description:last-of-type {
  margin-bottom: 4rem;
}
.complex-regulations-section .cr-content .cr-button {
  color: #000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  text-transform: uppercase;
  background: #d1b06b;
  border-radius: 5px;
  padding: 1rem 3rem;
  border: none;
  width: fit-content;
  transition: all 0.3s ease;
}
.complex-regulations-section .cr-content .cr-button:hover {
  background: #fff;
}
.complex-regulations-section .cr-image {
  height: 100%;
  padding-right: 5rem;
}
.complex-regulations-section .cr-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wealth-consulting {
  background-color: #000;
  position: relative;
  overflow: hidden;
  padding-top: 77px;
  margin-top: 0;
}
.wealth-consulting .container-fluid {
  width: 100%;
  max-width: none;
  padding: 0;
}
.wealth-consulting .container-fluid .row {
  width: 100%;
  display: flex;
  align-items: center;
}
.wealth-consulting .container-fluid .row .wc-image {
  flex: 0 0 50%;
  margin: 0;
}
.wealth-consulting .container-fluid .row .wc-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.wealth-consulting .container-fluid .row .wc-content {
  flex: 0 0 50%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wealth-consulting .container-fluid .row .wc-content .wc-title {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.wealth-consulting .container-fluid .row .wc-content .wc-subtitle {
  color: #bfa573;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.wealth-consulting .container-fluid .row .wc-content .wc-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 2rem;
}
.wealth-consulting .container-fluid .row .wc-content .wc-button {
  color: #000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip: none;
  text-transform: uppercase;
  background: #bfa573;
  border-radius: 5px;
  box-shadow: 0px 4px 4px 0px #e8d9bd;
  padding: 1rem 3rem;
  border: none;
  width: fit-content;
  transition: all 0.3s ease;
}
.wealth-consulting .container-fluid .row .wc-content .wc-button:hover {
  background: #fff;
}

.personalized-path-section {
  background: rgba(56, 55, 52, 0.5);
  background-blend-mode: screen;
  padding: 4rem 0;
}
.personalized-path-section .pp-title {
  color: #d1b06b;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.personalized-path-section .pp-description {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 1.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.personalized-path-section .pp-subtitle {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 3rem;
}
.personalized-path-section .service-card {
  background: #0b0a08;
  padding: 3rem;
  height: 100%;
  border-radius: 10px;
  text-align: center;
}
.personalized-path-section .service-card .card-title {
  color: #d1b06b;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.personalized-path-section .service-card .card-image {
  margin: 1.5rem 0;
}
.personalized-path-section .service-card .card-image img {
  max-width: 100px;
  height: auto;
}
.personalized-path-section .service-card .card-description {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 0;
}

.partnership-section {
  margin-top: 50px;
  background: black;
}
.partnership-section .row {
  min-height: 600px;
}
.partnership-section .partnership-image {
  padding: 50px 0;
  height: 100%;
}
.partnership-section .partnership-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.partnership-section .partnership-content {
  padding: 4rem 10rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.partnership-section .partnership-content .partnership-title {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.partnership-section .partnership-content .partnership-subtitle {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 40px;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}
.partnership-section .partnership-content .partnership-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 1.5rem;
}
.partnership-section .partnership-content .partnership-description:last-of-type {
  margin-bottom: 2rem;
}
.partnership-section .partnership-content .partnership-button {
  color: #000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  background: #d1b06b;
  border-radius: 5px;
  padding: 1rem 3rem;
  border: none;
  width: fit-content;
  transition: all 0.3s ease;
}
.partnership-section .partnership-content .partnership-button:hover {
  background: #fff;
}

.tax-reduction {
  background-color: #000;
  position: relative;
  overflow: hidden;
  padding-top: 77px;
  margin-top: 0;
}
.tax-reduction .container-fluid {
  width: 100%;
  max-width: none;
  padding: 0;
}
.tax-reduction .container-fluid .row {
  width: 100%;
  display: flex;
  align-items: center;
}
.tax-reduction .container-fluid .row .tr-image {
  flex: 0 0 50%;
  margin: 0;
}
.tax-reduction .container-fluid .row .tr-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.tax-reduction .container-fluid .row .tr-content {
  flex: 0 0 50%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tax-reduction .container-fluid .row .tr-content .tr-title {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.tax-reduction .container-fluid .row .tr-content .tr-subtitle {
  color: #bfa573;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.tax-reduction .container-fluid .row .tr-content .tr-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 2rem;
}
.tax-reduction .container-fluid .row .tr-content .tr-button {
  color: #000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-transform: uppercase;
  background: #bfa573;
  border-radius: 5px;
  box-shadow: 0px 4px 4px 0px #e8d9bd;
  padding: 1rem 3rem;
  border: none;
  width: fit-content;
  transition: all 0.3s ease;
}
.tax-reduction .container-fluid .row .tr-content .tr-button:hover {
  background: #fff;
}

.optimize-finances-section {
  background: rgba(92, 82, 64, 0.45);
  padding: 4rem 0;
}
.optimize-finances-section .of-title {
  color: #d1b06b;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.optimize-finances-section .of-description {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.key-services-section {
  background: #000;
  padding: 4rem 0;
}
.key-services-section .ks-title {
  color: #bda069;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.key-services-section .divider {
  height: 3px;
  background: #fff;
  width: 20%;
  margin: 0 auto 3rem;
}
.key-services-section .service-card {
  background: rgba(92, 82, 64, 0.45);
  padding: 2rem;
  border-radius: 10px;
}
.key-services-section .service-card .card-title {
  color: #bda069;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 1rem;
}
.key-services-section .service-card .card-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
.key-services-section .row:last-child .service-card {
  max-width: 800px;
  margin: 0 auto;
}

.benefits-section {
  background: rgba(92, 82, 64, 0.5);
}
.benefits-section .benefits-content .benefits-title {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: left;
}
.benefits-section .benefits-content .benefits-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 1.5rem;
}
.benefits-section .benefits-image {
  position: relative;
  overflow: visible;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefits-section .benefits-image img {
  position: absolute;
  width: 70%;
  height: auto;
  object-fit: cover;
  top: -100px;
  right: 10%;
}

.increased-net-worth-section {
  background: #000;
  padding: 4rem 0;
}
.increased-net-worth-section .inw-image {
  text-align: center;
  margin-bottom: 2rem;
}
.increased-net-worth-section .inw-image img {
  max-width: 100%;
  height: auto;
}
.increased-net-worth-section .inw-content .inw-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0.5rem;
}
.increased-net-worth-section .inw-content .inw-list .list-title {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
}
.increased-net-worth-section .inw-content .inw-list .list-title:before {
  content: "•";
  color: #bda069;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.increased-net-worth-section .inw-content .inw-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 1.5rem;
}

.say-goodbye-section {
  background: rgba(92, 82, 64, 0.4);
}
.say-goodbye-section .sg-content {
  padding: 4rem 6rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.say-goodbye-section .sg-content .sg-title {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.say-goodbye-section .sg-content .sg-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 1.5rem;
}
.say-goodbye-section .sg-content .sg-button {
  color: #000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  background: #d1b06b;
  border-radius: 5px;
  padding: 1rem 3rem;
  border: none;
  width: fit-content;
  transition: all 0.3s ease;
}
.say-goodbye-section .sg-content .sg-button:hover {
  background: #fff;
}
.say-goodbye-section .sg-image {
  height: 100%;
}
.say-goodbye-section .sg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.capital-protection {
  background-color: #bda069;
  position: relative;
  overflow: hidden;
  padding-top: 77px;
  margin-top: 0;
}
.capital-protection .container-fluid {
  width: 100%;
  max-width: none;
  padding: 0;
}
.capital-protection .container-fluid .row {
  width: 100%;
  display: flex;
  align-items: center;
}
.capital-protection .container-fluid .row .cp-image {
  flex: 0 0 50%;
  margin: 0;
}
.capital-protection .container-fluid .row .cp-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.capital-protection .container-fluid .row .cp-content {
  flex: 0 0 50%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.capital-protection .container-fluid .row .cp-content .cp-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.capital-protection .container-fluid .row .cp-content .cp-subtitle {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.capital-protection .container-fluid .row .cp-content .cp-description {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 2rem;
}
.capital-protection .container-fluid .row .cp-content .cp-button {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-transform: uppercase;
  border-radius: 5px;
  background: #000;
  box-shadow: 0px 4px 4px 0px rgba(56, 55, 52, 0.88);
  padding: 1rem 3rem;
  border: none;
  width: fit-content;
  transition: all 0.3s ease;
}
.capital-protection .container-fluid .row .cp-content .cp-button:hover {
  color: #000;
  background: #fff;
}

.secure-future-section {
  background: #000;
  padding: 4rem 0;
}
.secure-future-section .sf-title {
  color: #d1b06b;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.secure-future-section .sf-description {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 3rem;
}
.secure-future-section .sf-left-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.secure-future-section .sf-left-content .sf-subtitle {
  color: #d1b06b;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.secure-future-section .sf-left-content .sf-divider {
  width: 30%;
  height: 3px;
  background: #bda069;
  margin-bottom: 2rem;
}
.secure-future-section .sf-left-content img {
  min-height: 240px;
  width: auto;
  object-fit: contain;
}
.secure-future-section .row:last-child {
  background: #76684c;
  padding: 2rem;
  margin: 0;
}
.secure-future-section .sf-list {
  list-style: none;
  padding: 0;
}
.secure-future-section .sf-list li {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}
.secure-future-section .sf-list li:before {
  content: "•";
  color: #bda069;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.secure-future-section .sf-list .sf-list-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-transform: none;
  margin-bottom: 1.5rem;
}

.protection-plan-section {
  background: rgba(40, 40, 39, 0.6);
  padding: 4rem 0;
}
.protection-plan-section .pp-title-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.protection-plan-section .pp-title-content .pp-title {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.protection-plan-section .pp-title-content .pp-divider {
  width: 80%;
  height: 3px;
  background: #bda069;
  margin-bottom: 2rem;
}
.protection-plan-section .pp-image {
  text-align: center;
}
.protection-plan-section .pp-image img {
  max-width: 100%;
  height: auto;
}
.protection-plan-section .pp-content .pp-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 1.5rem;
}
.protection-plan-section .pp-content .pp-description:last-child {
  margin-bottom: 0;
}

.capital-benefits-section {
  background: #000;
  padding: 4rem 0;
}
.capital-benefits-section .benefit-card {
  background: rgba(40, 40, 39, 0.88);
  padding: 2rem;
  border-radius: 10px;
  height: 100%;
  min-height: 170px;
}
.capital-benefits-section .benefit-card .card-title {
  color: #bda069;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.capital-benefits-section .benefit-card .card-description {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 144.687%;
  text-transform: capitalize;
  margin-bottom: 0;
}

.legacy-protection-section {
  background: rgb(81, 71, 52);
  min-height: 500px;
}
.legacy-protection-section .row {
  height: 100%;
}
.legacy-protection-section .lp-image {
  height: 100%;
}
.legacy-protection-section .lp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.legacy-protection-section .lp-content {
  padding: 2rem;
}
.legacy-protection-section .lp-content .lp-title {
  color: #bda069;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 144.687%;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.legacy-protection-section .lp-content .lp-description {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 1.5rem;
}
.legacy-protection-section .lp-content .lp-button {
  color: #000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  text-transform: uppercase;
  background: #d1b06b;
  border-radius: 5px;
  padding: 1rem 3rem;
  border: none;
  width: fit-content;
  transition: all 0.3s ease;
}
.legacy-protection-section .lp-content .lp-button:hover {
  background: #fff;
}

.investment-capital {
  margin: 0 auto;
  padding: 20px;
  background: #272626;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.investment-capital .container {
  max-width: 850px;
}
.investment-capital .investment-title {
  color: #bda069;
  text-align: center;
  font-family: "Noto Serif", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.investment-capital .investment-description,
.investment-capital .payment-description,
.investment-capital .min-capital-text,
.investment-capital .additional-capital-text,
.investment-capital .total-capital-text {
  color: #fff;
  text-align: center;
  font-family: "Noto Serif", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 15px;
}
.investment-capital .min-capital-value,
.investment-capital .total-capital-display {
  background-color: #e0e0e0;
  border: none;
  height: 60px;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Serif", serif;
}
.investment-capital .total-capital-display {
  background-color: #bda069;
  color: #000;
  border: 2px solid #fff;
}
.investment-capital .membership-days {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  color: #ffffff;
  font-family: "Noto Serif", serif;
}
.investment-capital input.investment-input,
.investment-capital input.payment-input,
.investment-capital input.additional-capital-input {
  background-color: #e0e0e0;
  border: none;
  height: 60px;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
  border-radius: 5px;
  font-family: "Noto Serif", serif;
}
.investment-capital input.payment-input {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 10px;
}
.investment-capital .input-group {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.investment-capital .input-group .form-control {
  width: 100%;
  border-radius: 5px;
  margin: 0;
}
.investment-capital .input-group .additional-capital-input {
  margin-bottom: 0 !important;
}
.investment-capital .input-group .input-group-prepend,
.investment-capital .input-group .input-group-append {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.investment-capital .input-group .input-group-prepend {
  left: -75px;
}
.investment-capital .input-group .input-group-append {
  right: -75px;
}
.investment-capital .input-group .input-group-prepend button,
.investment-capital .input-group .input-group-append button {
  background-color: #e0e0e0;
  color: #000 !important;
  font-size: 28px;
  font-weight: 700;
  border: none;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin: 0;
  font-family: "Noto Serif", serif;
}
.investment-capital .confirm-button {
  background: linear-gradient(90deg, #b48b3d 0%, #bfa573 100%);
  color: #000 !important;
  border: none;
  font-size: 24px;
  font-weight: 600;
  padding: 10px 0;
  width: 100%;
  margin: 20px auto 30px;
  border-radius: 5px;
  max-width: 200px;
  display: block;
  font-family: "Noto Serif", serif;
}
.investment-capital .confirm-button:hover {
  background: linear-gradient(90deg, #a37b2d 0%, #af9563 100%);
}
.investment-capital .investment-note {
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  margin-top: 20px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* Tambahan untuk total capital display */
#additional-capital::-webkit-inner-spin-button,
#additional-capital::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#additional-capital {
  -moz-appearance: textfield;
}

/* Styling khusus untuk halaman set investment capital */
.set-investment-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 0;
  transition: all 0.3s ease;
  width: 100%;
  font-family: "Noto Serif", serif;
}

/* Responsif untuk sidebar collapse */
body.sidebar-main .content-page .set-investment-container {
  max-width: 800px;
  transition: all 0.3s ease;
}

/* Media query untuk layar yang lebih kecil */
@media (max-width: 992px) {
  .set-investment-container {
    max-width: 100%;
    padding: 20px 15px;
  }
}
/* _login.scss */
.forgot-password {
  text-align: right;
  font-family: "Numans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 50px;
  text-transform: capitalize;
  color: #000;
}
.forgot-password a {
  color: #000;
  text-decoration: none;
}

.register-section {
  text-align: center;
  font-family: "Numans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
}
.register-section a {
  color: #3d33fd;
  text-decoration: none;
}

.payment-option-page {
  background: #272626;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.payment-option-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem 0;
  max-width: 400px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.payment-option-title {
  color: #b48b3d;
  font-family: "Noto Serif", serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.payment-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.payment-btn {
  background-color: #bfa573;
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 1.5rem 0;
  font-size: 24px;
  font-weight: 600;
  font-family: "Noto Serif", serif;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}
.payment-btn:hover {
  background: linear-gradient(90deg, #a37b2d 0%, #af9563 100%);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.usdt-payment-info {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.usdt-qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.usdt-qr-code {
  width: 250px;
  height: 250px;
  margin: 0 auto;
  padding: 10px;
  background-color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.usdt-qr-code img {
  max-width: 100%;
  max-height: 100%;
}

.usdt-payment-details {
  width: 100%;
  margin-top: 25px;
}
.usdt-payment-details input.form-control {
  color: #fff !important;
  background-color: transparent !important;
  background: linear-gradient(107deg, rgba(180, 139, 61, 0.1) 50.42%, rgba(191, 165, 115, 0.1) 100%) !important;
  border: 2px solid #b48b3d !important;
  box-shadow: none !important;
}
.usdt-payment-details input[readonly] {
  background-color: transparent !important;
  background-image: linear-gradient(107deg, rgba(180, 139, 61, 0.1) 50.42%, rgba(191, 165, 115, 0.1) 100%) !important;
}

.address-label,
.amount-label,
.instructions-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.address-value,
.amount-value {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.address-value {
  display: flex !important;
  position: relative !important;
  align-items: center !important;
  gap: 10px !important; /* Jarak antara input dan tombol */
}
.address-value input.form-control {
  width: 100% !important; /* Mengembalikan lebar input menjadi 100% */
  padding-right: 15px !important;
}
.address-value input {
  background-color: transparent !important;
  height: 45px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif !important;
  color: #fff !important;
  padding: 0 15px;
  width: 100% !important;
  border-radius: 5px;
  border: 2px solid #b48b3d;
  background: linear-gradient(107deg, rgba(180, 139, 61, 0.1) 50.42%, rgba(191, 165, 115, 0.1) 100%) !important;
}

.amount-value input {
  background-color: transparent !important;
  height: 45px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif !important;
  color: #fff !important;
  padding: 0 15px;
  width: 100% !important;
  border-radius: 5px;
  border: 2px solid #b48b3d;
  background: linear-gradient(107deg, rgba(180, 139, 61, 0.1) 50.42%, rgba(191, 165, 115, 0.1) 100%) !important;
}

.copy-btn {
  position: absolute !important;
  right: -45px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  height: 45px !important;
  width: 45px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: none !important;
  color: #b48b3d !important;
  font-size: 20px !important;
  cursor: pointer !important;
  z-index: 1 !important;
}
.copy-btn:hover {
  color: #a37b2d !important;
}

.instructions-list {
  color: #ffffff !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  padding-left: 0 !important;
  list-style-type: none !important;
  text-align: center !important;
}
.instructions-list li {
  margin-bottom: 10px !important;
  color: #ffffff !important;
}

.confirm-payment-btn {
  background: linear-gradient(90deg, #b48b3d 0%, #bfa573 100%) !important;
  color: #000 !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 15px 30px !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  font-family: "Noto Serif", serif !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  width: auto !important;
  margin: 0 auto !important;
  display: block !important;
  text-align: center !important;
  leading-trim: both !important;
  text-edge: cap !important;
  font-style: normal !important;
  line-height: 25px !important;
  text-transform: capitalize !important;
}
.confirm-payment-btn:hover {
  background: linear-gradient(90deg, #a37b2d 0%, #af9563 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.payment-confirmation {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}

.usdt-wallet-address {
  position: relative !important;
  margin-bottom: 15px !important;
}
.usdt-wallet-address .form-control {
  background-color: transparent !important;
  background: linear-gradient(107deg, rgba(180, 139, 61, 0.1) 50.42%, rgba(191, 165, 115, 0.1) 100%) !important;
}

@media (max-width: 992px) {
  .payment-option-container {
    max-width: 90%;
    padding: 20px 15px;
  }
}
@media (max-width: 768px) {
  .usdt-qr-container {
    flex-direction: column;
  }
  .usdt-qr-code {
    width: 200px;
    height: 200px;
    margin-bottom: 5px;
  }
  .usdt-payment-details {
    margin-top: 20px;
  }
  .copy-btn {
    right: -35px !important;
    width: 35px !important;
    height: 35px !important;
    font-size: 16px !important;
  }
  .usdt-wallet-address {
    padding-right: 35px !important;
  }
}
@media (max-width: 480px) {
  .copy-btn {
    right: -30px !important;
    width: 30px !important;
    height: 30px !important;
  }
  .usdt-wallet-address {
    padding-right: 30px !important;
  }
}
.card-payment-page {
  background: #272626;
  min-height: 100vh;
  overflow: hidden;
}

.usdt-payment-page {
  background: #272626;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.usdt-payment-info {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.usdt-payment-info .usdt-qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.usdt-payment-info .usdt-qr-code {
  width: 250px;
  height: 250px;
  margin: 0 auto;
  padding: 10px;
  background-color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.usdt-payment-info .usdt-qr-code img {
  max-width: 100%;
  max-height: 100%;
}
.usdt-payment-info .usdt-payment-details {
  width: 100%;
  margin-top: 25px;
}
.usdt-payment-info .usdt-payment-details .address-label,
.usdt-payment-info .usdt-payment-details .amount-label,
.usdt-payment-info .usdt-payment-details .instructions-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.usdt-payment-info .usdt-payment-details .address-value,
.usdt-payment-info .usdt-payment-details .amount-value {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.usdt-payment-info .usdt-payment-details .address-value {
  display: flex !important;
  position: relative !important;
  align-items: center !important;
  gap: 10px !important; /* Jarak antara input dan tombol */
}
.usdt-payment-info .usdt-payment-details .amount-value {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.usdt-payment-info .usdt-payment-details .address-value input,
.usdt-payment-info .usdt-payment-details .amount-value input {
  background-color: transparent !important;
  height: 45px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif !important;
  color: #fff !important;
  padding: 0 15px;
  width: 100% !important;
  border-radius: 5px;
  border: 2px solid #b48b3d;
  background: linear-gradient(107deg, rgba(180, 139, 61, 0.1) 50.42%, rgba(191, 165, 115, 0.1) 100%) !important;
}
.usdt-payment-info .usdt-payment-details .copy-btn {
  position: absolute !important;
  right: -45px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  height: 45px !important;
  width: 45px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: none !important;
  color: #b48b3d !important;
  font-size: 20px !important;
  cursor: pointer !important;
  z-index: 1 !important;
}
.usdt-payment-info .usdt-payment-details .copy-btn i {
  color: #b48b3d !important;
}
.usdt-payment-info .usdt-payment-details .copy-btn:hover {
  color: #a37b2d !important;
}
.usdt-payment-info .usdt-payment-details .copy-btn:hover i {
  color: #a37b2d !important;
}
.usdt-payment-info .instructions-list {
  color: #ffffff !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  padding-left: 0 !important;
  list-style-type: none !important;
  text-align: center !important;
}
.usdt-payment-info .instructions-list li {
  margin-bottom: 10px !important;
  color: #ffffff !important;
}
.usdt-payment-info .confirm-payment-btn {
  background: linear-gradient(90deg, #b48b3d 0%, #bfa573 100%) !important;
  color: #000 !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 15px 30px !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  font-family: "Noto Serif", serif !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  width: auto !important;
  margin: 0 auto !important;
  display: block !important;
  text-align: center !important;
  leading-trim: both !important;
  text-edge: cap !important;
  font-style: normal !important;
  line-height: 25px !important;
  text-transform: capitalize !important;
}
.usdt-payment-info .confirm-payment-btn:hover {
  background: linear-gradient(90deg, #a37b2d 0%, #af9563 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.usdt-payment-details .form-control {
  background-color: transparent !important;
  background-image: linear-gradient(107deg, rgba(180, 139, 61, 0.1) 50.42%, rgba(191, 165, 115, 0.1) 100%) !important;
  border: 2px solid #b48b3d !important;
  color: #fff !important;
  box-shadow: none !important;
}
.usdt-payment-details input[readonly] {
  background-color: transparent !important;
  background-image: linear-gradient(107deg, rgba(180, 139, 61, 0.1) 50.42%, rgba(191, 165, 115, 0.1) 100%) !important;
}

.usdt-wallet-address {
  position: relative !important;
  margin-bottom: 15px !important;
}

.payment-confirmation {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}

button.copy-btn {
  color: #b48b3d !important;
}
button.copy-btn i {
  color: #b48b3d !important;
}
button.copy-btn:hover {
  color: #a37b2d !important;
}
button.copy-btn:hover i {
  color: #a37b2d !important;
}

.usdt-wallet-address .address-value .copy-btn i.ri-file-copy-line {
  color: #b48b3d !important;
}

.usdt-wallet-address .address-value .copy-btn:hover i.ri-file-copy-line {
  color: #a37b2d !important;
}

@media (max-width: 768px) {
  .usdt-qr-container {
    flex-direction: column;
  }
  .usdt-qr-code {
    width: 200px;
    height: 200px;
    margin-bottom: 5px;
  }
  .usdt-payment-details {
    margin-top: 20px;
  }
  .copy-btn {
    right: -35px !important;
    width: 35px !important;
    height: 35px !important;
    font-size: 16px !important;
  }
  .usdt-wallet-address {
    padding-right: 35px !important;
  }
}
@media (max-width: 480px) {
  .copy-btn {
    right: -30px !important;
    width: 30px !important;
    height: 30px !important;
  }
  .usdt-wallet-address {
    padding-right: 30px !important;
  }
}
/* Tutorial Page Styling */
.tutorial-page {
  background: #272626;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.tutorial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .tutorial-container {
    padding: 20px 15px;
  }
}

.tutorial-title {
  text-align: center;
  color: #fff;
  font-family: "Noto Serif";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px; /* 104.167% */
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .tutorial-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

.api-title {
  text-align: center;
  color: #bfa573;
  font-family: "Noto Serif";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px; /* 104.167% */
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .api-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

/* Tab Navigation */
.tutorial-tabs {
  overflow: hidden;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .tab-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.tab-button {
  background-color: #4d4c48;
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-family: "Noto Serif";
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 300px;
  min-height: 70px;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px; /* 104.167% */
  text-transform: capitalize;
}
.tab-button:hover {
  background-color: #333;
  color: #ccc;
}
.tab-button.active {
  background-color: #bda069;
  color: #000000;
}
@media (max-width: 768px) {
  .tab-button {
    font-size: 14px;
    padding: 10px 20px;
    min-width: 120px;
  }
}

/* Tab Content */
.tab-content {
  padding: 20px 0;
}

.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Tutorial Steps */
.tutorial-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tutorial-step h3 {
  color: #fff;
  font-family: "Noto Serif";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px; /* 125% */
  font-variant: small-caps;
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 768px) {
  .tutorial-step h3 {
    font-size: 18px;
  }
}
.tutorial-step .highlight {
  color: #ffe440;
  font-family: "Noto Serif";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px;
  font-variant: small-caps;
}

/* Images */
.tutorial-image {
  margin-top: 10px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.tutorial-image img {
  width: auto;
  height: auto;
  margin: 0 auto;
  display: block;
  max-width: 100%;
}
.tutorial-image .image-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ffe440;
  color: #000;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
}

.tutorial-image-container {
  display: flex;
  margin-top: 10px;
  gap: 0;
}
@media (max-width: 768px) {
  .tutorial-image-container {
    flex-direction: column;
    gap: 5px;
  }
}
.tutorial-image-container .tutorial-image {
  flex: 1;
  margin-top: 0;
}

/* Register Button Styling */
.register-button-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.register-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 40px;
  border-radius: 10px;
  background: #bda069;
  color: #000;
  font-size: 20px;
  text-decoration: none;
  color: #000;
  text-align: center;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 400;
  font-variant: small-caps;
  min-width: 200px;
  min-height: 70px;
  transition: all 0.3s ease;
}
.register-button:hover {
  background: rgb(168.75, 136.125, 74.25);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .register-button {
    font-size: 18px;
    padding: 12px 30px;
  }
}

/* Binance Card Styling */
.binance-fullcard {
  width: 100%;
  min-width: 800px;
  border: 2px solid #bfa573;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 2rem;
}

.binance-fullcard-header {
  font-weight: bold;
  color: #bfa573;
  padding: 8px 20px;
  text-align: center;
  font-size: 18px;
}

.binance-detailcard {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) minmax(300px, 3fr);
  gap: 0.5rem;
  margin: 1rem auto;
  width: 80%;
}
.binance-detailcard .label {
  margin: 0;
  color: #bfa573;
  justify-content: start;
  font-weight: 600;
  padding: 10px 15px;
  border: 1px solid #bfa573;
  display: flex;
  align-items: center;
}
.binance-detailcard .value {
  padding: 8px 20px;
  border: 1px solid #bfa573;
  display: flex;
  align-items: center;
  margin: 0;
}
.binance-detailcard input {
  width: 100%;
  padding: 8px;
  background: transparent;
  border: none;
  color: #bfa573;
  font-size: inherit;
  font-family: inherit;
  outline: none;
}
.binance-detailcard input:focus {
  outline: none;
}
.binance-detailcard input:disabled {
  background: transparent;
  cursor: not-allowed;
}

.wallet-detailcard {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(300px, 3fr);
  gap: 0.5rem;
  margin: 1rem 0;
  width: 90%;
  max-width: 800px;
}
.wallet-detailcard .label,
.wallet-detailcard .value {
  padding: 8px 20px;
  border: 1px solid #bfa573;
  display: flex;
  align-items: center;
  margin: 0;
  margin-left: 0;
  margin-right: 0;
  color: #bfa573;
  justify-content: start;
  text-align: left;
  font-weight: bold;
}

.binance-fullcard-footer {
  text-align: center;
  margin-top: 20px;
}
.binance-fullcard-footer .save-btn {
  background: linear-gradient(90deg, #b48b3d 0%, #bfa573 100%);
  color: black;
  border: none;
  padding: 8px 30px;
  border-radius: 5px;
  color: #000;
  text-align: center;
  font-family: "Noto Serif";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  margin: 0 5px;
  transition: all 0.3s ease;
}
.binance-fullcard-footer .save-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.binance-fullcard-footer .save-btn:disabled {
  background-color: #575757;
  color: black;
  border: none;
  cursor: not-allowed;
}

.binance-button-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin: 2rem 0;
}
.binance-button-row a {
  border: 1px solid #bfa573;
  background: transparent;
  color: #000;
  background: linear-gradient(90deg, #b48b3d 0%, #bfa573 100%);
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Video Background */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.video-background video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* Access Portal Styling */
.access-page {
  min-height: 100vh;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.access-options {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.access-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 2px solid #B48B3D;
  border-radius: 8px;
  padding: 30px 40px;
  width: 800px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.access-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}
.access-card h2 {
  font-size: 3rem;
  font-weight: bold;
  color: white;
}
.access-card h2 span {
  color: #B48B3D;
}
.access-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
@media (max-width: 599px) {
  .access-card {
    width: 90%;
    padding: 20px 30px;
  }
  .access-card h2 {
    font-size: 2rem;
  }
  .access-card p {
    font-size: 0.9rem;
  }
}
@media (max-width: 400px) {
  .access-card {
    width: 95%;
    padding: 15px 20px;
  }
  .access-card h2 {
    font-size: 1.8rem;
  }
  .access-card p {
    font-size: 0.85rem;
  }
}

/* ==================== */
/* Global Styles        */
/* ==================== */
.elite-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
  /* ==================== */
  /* Header Styling       */
  /* ==================== */
  /* ==================== */
  /* Sign-in Box          */
  /* ==================== */
  /* ==================== */
  /* Form Styling         */
  /* ==================== */
  /* ==================== */
  /* Button Styling       */
  /* ==================== */
  /* ==================== */
  /* Bottom Button        */
  /* ==================== */
  /* ==================== */
  /* Responsive Styling   */
  /* ==================== */
}
.elite-page body {
  background-color: black !important;
  color: white;
  overflow-x: hidden;
}
.elite-page .container {
  min-height: 90vh;
  margin-top: -30px;
}
.elite-page .site-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
}
.elite-page .site-title span {
  color: #B48B3D;
}
.elite-page .site-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.elite-page .sign-in-box {
  background: white;
  padding: 20px 60px;
  border-radius: 12px;
  width: 100%;
  height: 100vh;
  max-height: 500px;
  max-width: 800px;
  text-align: left;
}
.elite-page .sign-in-text {
  color: black;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.elite-page .form-label {
  font-weight: bold;
  color: black;
  display: block;
}
.elite-page .form-control {
  background-color: #d6d6d6;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 1rem;
}
.elite-page .form-control:focus {
  background-color: #d6d6d6 !important;
  box-shadow: none;
  border: none;
}
.elite-page .btn-primary {
  background-color: #B48B3D;
  border: none;
  font-size: 18px;
  font-weight: bold;
  width: 150px;
  padding: 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease-in-out;
}
.elite-page .btn-primary:hover {
  background-color: #a07a30;
}
.elite-page .text-muted {
  color: #ccc;
  text-decoration: none;
}
.elite-page .text-muted:hover {
  color: #fff;
}
.elite-page .dont-have-account {
  color: black;
  font-weight: bold;
  text-align: center;
}
.elite-page .register-link {
  color: #3D33FD;
  font-weight: bold;
  text-decoration: none;
}
.elite-page .register-link:hover {
  text-decoration: underline;
}
.elite-page .bottom-button {
  margin-top: auto;
  padding-top: 20px;
  text-align: center;
  width: 100%;
}
.elite-page .bottom-button .btn {
  border: 1px solid #B48B3D;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
}
.elite-page .btn-dark:hover {
  background-color: rgb(30, 31, 41);
  color: white;
}
.elite-page .bottom-button span {
  color: #B48B3D;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .elite-page .sign-in-box {
    padding: 20px 40px;
  }
  .elite-page .site-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .elite-page .sign-in-box {
    padding: 20px 30px;
  }
  .elite-page .site-title {
    font-size: 2.5rem;
  }
  .elite-page .site-subtitle {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .elite-page .sign-in-box {
    padding: 20px;
  }
  .elite-page .site-title {
    font-size: 2rem;
  }
  .elite-page .site-subtitle {
    font-size: 0.8rem;
  }
  .elite-page .btn-primary {
    width: 100%;
  }
}

.elite-investment {
  margin: 0 auto;
  padding: 20px;
  background: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.elite-investment .container {
  max-width: 850px;
}
.elite-investment .investment-title {
  color: #B48B3D;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.elite-investment .investment-description,
.elite-investment .payment-description,
.elite-investment .min-capital-text,
.elite-investment .additional-capital-text,
.elite-investment .total-capital-text {
  color: black;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 15px;
}
.elite-investment .min-capital-value,
.elite-investment .total-capital-display {
  background-color: #ccc;
  border: none;
  height: 60px;
  font-size: 32px;
  font-weight: 700;
  color: black;
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.elite-investment .total-capital-display {
  background-color: #B48B3D;
  color: black;
  border: 2px solid white;
}
.elite-investment .membership-days {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  color: white;
}
.elite-investment input.investment-input,
.elite-investment input.payment-input,
.elite-investment input.additional-capital-input {
  background-color: #ccc;
  border: none;
  height: 60px;
  font-size: 32px;
  font-weight: 700;
  color: black;
  text-align: center;
  border-radius: 5px;
}
.elite-investment input.payment-input {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 10px;
}
.elite-investment .input-group {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.elite-investment .input-group .form-control {
  width: 100%;
  border-radius: 5px;
  margin: 0;
}
.elite-investment .input-group .input-group-prepend,
.elite-investment .input-group .input-group-append {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.elite-investment .input-group .input-group-prepend {
  left: -75px;
}
.elite-investment .input-group .input-group-append {
  right: -75px;
}
.elite-investment .input-group .input-group-prepend button,
.elite-investment .input-group .input-group-append button {
  background-color: #ccc;
  color: black !important;
  font-size: 28px;
  font-weight: 700;
  border: none;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.elite-investment .confirm-button {
  background: linear-gradient(90deg, #B48B3D 0%, #a07a30 100%);
  color: black !important;
  border: none;
  font-size: 24px;
  font-weight: 600;
  padding: 10px 0;
  width: 100%;
  margin: 20px auto 30px;
  border-radius: 5px;
  max-width: 200px;
  display: block;
}
.elite-investment .confirm-button:hover {
  background: linear-gradient(90deg, #a07a30 0%, #fff 100%);
}
.elite-investment .investment-note {
  color: white;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  margin-top: 20px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

#set-investment-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 0;
  transition: all 0.3s ease;
  width: 100%;
}

body.sidebar-main .content-page .set-investment-container {
  max-width: 800px;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .set-investment-container {
    max-width: 100%;
    padding: 20px 15px;
  }
}
.news-card {
  border: 1px solid #4b3a1f;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: rgb(30, 30, 30);
}
.news-card h5 {
  font-weight: 700;
  color: #bfa573;
}
.news-card p {
  color: #ffffff;
  margin-bottom: 0;
}

.news-image {
  max-width: 100%;
  border-radius: 8px;
}

.news-source-time {
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.finance-blogs {
  margin-top: 70px;
}

@media (max-width: 768px) {
  .finance-blogs {
    margin-top: 50px;
  }
}
/*----------------------------------------------------------
    File Name  : _navbar.scss
    Desc       : File ini merupakan styling untuk 
                 Component Button yang akan dipakai berulang

------------------------------------------------------------*/
/**
 * TABLE OF CONTENTS
 *
 * 1. Buttons Landing Page
 *
 */
/*----------------------------------------------------------
1. Buttons Landing page Start 
------------------------------------------------------------*/
.btn-navbar-contactform {
  display: block;
  background-color: #bfa573;
  color: #1e1e1e;
  padding: 0.3rem 0.5rem !important;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
}
.btn-navbar-contactform:hover {
  background-color: #bfa573;
  color: #1e1e1e;
  font-weight: 700;
}

.btn-navbar-about {
  display: block;
  background-color: #1e1e1e;
  color: #bfa573;
  padding: 0.3rem 0.5rem !important;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
}
.btn-navbar-about:hover {
  background-color: #1e1e1e;
  color: #bfa573;
  box-shadow: 0px 4px 4px 0px #e8d9bd;
  font-weight: 700;
}

.btn-navbar-referral {
  display: block;
  background-color: #ffffff;
  color: #bfa573;
  padding: 0.3rem 0.5rem !important;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
}
.btn-navbar-referral:hover {
  background-color: #ffffff;
  color: #bfa573;
  font-weight: 700;
}

.btn-flip {
  background-color: #bfa573;
  padding: 1rem 1.5rem;
  border-radius: 999999px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 600;
}

.btn-zoom {
  width: 100%;
  background-color: #bfa573;
  padding: 1rem 0.5rem;
  border-radius: 999999px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
}

.btn-footer-contactform {
  background-color: #bfa573;
  color: #1e1e1e;
  font-family: "Poppins", sans-serif;
  padding: 0.8rem 1rem !important;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
}
.btn-footer-contactform:hover {
  background-color: #bfa573;
  color: #ffffff;
  font-weight: 700;
}

.btn-footer-enrollnow {
  background-color: #1e1e1e;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  padding: 0.8rem 1rem !important;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
}
.btn-footer-enrollnow:hover {
  background-color: #1e1e1e;
  color: #ffffff;
  box-shadow: 0px 4px 4px 0px #e8d9bd;
  font-weight: 700;
}

.btn-know-team {
  background-color: #000000;
  color: #bfa573;
  padding: 0.8rem 3rem !important;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
}

.btn-satoshi-price-register {
  background-color: #c5a571;
  color: #000000;
  font-weight: 900;
  -webkit-text-stroke: 0.3px #eccf98;
  font-weight: 800;
  font-size: 22px;
}

.plan-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
}
.plan-btn input[type=radio] {
  appearance: auto;
  accent-color: green;
}
.plan-btn input[type=radio]:hover {
  accent-color: green;
}
.plan-btn input[type=radio]:checked + span {
  color: rgb(1, 1, 1);
}
.plan-btn span {
  color: #000000;
  font-weight: 700;
}

/*----------------------------------------------------------
1. Buttons Landing page End 
------------------------------------------------------------*/
.dropdown-toggle::after {
  display: none;
}

/*----------------------------------------------------------
    File Name  : _colors.scss
    Desc       : File ini merupakan styling untuk 
                 Color yang dapat dipanggil secara berulang

------------------------------------------------------------*/
/**
 * TABLE OF CONTENTS
 *
 * 1. Text Color
 * 2. Background Color
 *
 */
/*----------------------------------------------------------
1. Text Color Start 
------------------------------------------------------------*/
.text-primary-pnglobal {
  color: #bfa573;
}

.text-gold {
  color: #B48B3D;
  font-weight: bold;
}

/*----------------------------------------------------------
1. Text Color End
------------------------------------------------------------*/
/*----------------------------------------------------------
2. Background Color Start
------------------------------------------------------------*/
/*----------------------------------------------------------
2. Background Color End
------------------------------------------------------------*/
/*----------------------------------------------------------
    File Name  : _inputs.scss
    Desc       : File ini merupakan styling untuk 
                 Input yang dapat dipanggil secara berulang

------------------------------------------------------------*/
/**
 * TABLE OF CONTENTS
 *
 * 1. Input Booking
 *
 */

/*# sourceMappingURL=main.css.map */
