/*************************
		UTILITY
************************/

/* Display */
.d-flex         { display: flex !important; }
.d-block        { display: block !important; }
.d-inline       { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-none         { display: none !important; }
.d-grid         { display: grid !important; }


@media (min-width: 576px) {
	.d-sm-flex         { display: flex !important; }
	.d-sm-block        { display: block !important; }
	.d-sm-inline       { display: inline !important; }
	.d-sm-inline-block { display: inline-block !important; }
	.d-sm-none         { display: none !important; }
}

@media (min-width: 768px) {
	.d-md-flex         { display: flex !important; }
	.d-md-block        { display: block !important; }
	.d-md-inline       { display: inline !important; }
	.d-md-inline-block { display: inline-block !important; }
	.d-md-none         { display: none !important; }
}

@media (min-width: 992px) {
	.d-lg-flex         { display: flex !important; }
	.d-lg-block        { display: block !important; }
	.d-lg-inline       { display: inline !important; }
	.d-lg-inline-block { display: inline-block !important; }
	.d-lg-none         { display: none !important; }
}

@media (min-width: 1200px) {
	.d-xl-flex         { display: flex !important; }
	.d-xl-block        { display: block !important; }
	.d-xl-inline       { display: inline !important; }
	.d-xl-inline-block { display: inline-block !important; }
	.d-xl-none         { display: none !important; }
}



/* ─────────────────────────────────────────
   BASE (all screen sizes)
───────────────────────────────────────── */
.flex-row            { flex-direction: row !important; }
.flex-row-reverse    { flex-direction: row-reverse !important; }
.flex-column         { flex-direction: column !important; }
.flex-column-reverse { flex-direction: column-reverse !important; }


/* ─────────────────────────────────────────
   ≥ 576px — sm
───────────────────────────────────────── */
@media (min-width: 576px) {
  .flex-sm-row            { flex-direction: row !important; }
  .flex-sm-row-reverse    { flex-direction: row-reverse !important; }
  .flex-sm-column         { flex-direction: column !important; }
  .flex-sm-column-reverse { flex-direction: column-reverse !important; }
}


/* ─────────────────────────────────────────
   ≥ 768px — md
───────────────────────────────────────── */
@media (min-width: 768px) {
  .flex-md-row            { flex-direction: row !important; }
  .flex-md-row-reverse    { flex-direction: row-reverse !important; }
  .flex-md-column         { flex-direction: column !important; }
  .flex-md-column-reverse { flex-direction: column-reverse !important; }
}


/* ─────────────────────────────────────────
   ≥ 992px — lg
───────────────────────────────────────── */
@media (min-width: 992px) {
  .flex-lg-row            { flex-direction: row !important; }
  .flex-lg-row-reverse    { flex-direction: row-reverse !important; }
  .flex-lg-column         { flex-direction: column !important; }
  .flex-lg-column-reverse { flex-direction: column-reverse !important; }
}


/* ─────────────────────────────────────────
   ≥ 1200px — xl
───────────────────────────────────────── */
@media (min-width: 1200px) {
  .flex-xl-row            { flex-direction: row !important; }
  .flex-xl-row-reverse    { flex-direction: row-reverse !important; }
  .flex-xl-column         { flex-direction: column !important; }
  .flex-xl-column-reverse { flex-direction: column-reverse !important; }
}


/* ─────────────────────────────────────────
   ≥ 1400px — xxl
───────────────────────────────────────── */
@media (min-width: 1400px) {
  .flex-xxl-row            { flex-direction: row !important; }
  .flex-xxl-row-reverse    { flex-direction: row-reverse !important; }
  .flex-xxl-column         { flex-direction: column !important; }
  .flex-xxl-column-reverse { flex-direction: column-reverse !important; }
}

.gap-1 { gap: 4px !important; }
.gap-2 { gap: 8px !important; }
.gap-3 { gap: 16px !important; }
.gap-4 { gap: 24px !important; }
.gap-5 { gap: 48px !important; }

@media (min-width: 768px) {
	.gap-md-1 { gap: 4px !important; }
	.gap-md-2 { gap: 8px !important; }
	.gap-md-3 { gap: 16px !important; }
	.gap-md-4 { gap: 24px !important; }
	.gap-md-5 { gap: 48px !important; }
}

@media (min-width: 992px) {
	.gap-lg-1 { gap: 4px !important; }
	.gap-lg-2 { gap: 8px !important; }
	.gap-lg-3 { gap: 16px !important; }
	.gap-lg-4 { gap: 24px !important; }
	.gap-lg-5 { gap: 48px !important; }
}

@media (min-width: 1200px) {
	.gap-xl-1 { gap: 4px !important; }
	.gap-xl-2 { gap: 8px !important; }
	.gap-xl-3 { gap: 16px !important; }
	.gap-xl-4 { gap: 24px !important; }
	.gap-xl-5 { gap: 48px !important; }
}

/* Base (all screens) */
.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; }

/* ≥ 576px — sm */
@media (min-width: 576px) {
	.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; }
}

/* ≥ 768px — md */
@media (min-width: 768px) {
	.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; }
}

/* ≥ 992px — lg */
@media (min-width: 992px) {
	.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; }
}

/* ≥ 1200px — xl */
@media (min-width: 1200px) {
	.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; }
}

/* ≥ 1400px — xxl */
@media (min-width: 1400px) {
	.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; }
}


/* =====================================================
   JUSTIFY-CONTENT  (main-axis alignment)
   ===================================================== */

/* Base (all screens) */
.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; }

/* ≥ 576px — sm */
@media (min-width: 576px) {
	.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; }
}

/* ≥ 768px — md */
@media (min-width: 768px) {
	.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; }
}

/* ≥ 992px — lg */
@media (min-width: 992px) {
	.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; }
}

/* ≥ 1200px — xl */
@media (min-width: 1200px) {
	.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; }
}

/* ≥ 1400px — xxl */
@media (min-width: 1400px) {
	.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; }
}


/* Base */
.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; }

/* ≥ 576px — sm */
@media (min-width: 576px) {
	.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; }
}

/* ≥ 768px — md */
@media (min-width: 768px) {
	.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; }
}

/* ≥ 992px — lg */
@media (min-width: 992px) {
	.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; }
}

/* ≥ 1200px — xl */
@media (min-width: 1200px) {
	.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; }
}

/* ≥ 1400px — xxl */
@media (min-width: 1400px) {
	.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; }
}

.flex-shrink-0 { flex-shrink: 0 !important; }
.flex-shrink-1 { flex-shrink: 1 !important; }
.flex-grow-0   { flex-grow: 0 !important; }
.flex-grow-1   { flex-grow: 1 !important; }

.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.flex-1 { flex: 1 !important; }
/* =====================
   ROOT / DEFAULTS
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
}

/* =====================
   ROW
   ===================== */
.row {
  display: flex;
  flex-wrap: wrap;
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  margin-top: calc(var(--gutter-y) * -1);
  margin-right: calc(var(--gutter-x) / -2);
  margin-left: calc(var(--gutter-x) / -2);
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin-top: var(--gutter-y);
  padding-right: calc(var(--gutter-x) / 2);
  padding-left: calc(var(--gutter-x) / 2);
}

/* =====================
   COLUMNS
   ===================== */
.col      { flex: 1 1 0%; }
.col-auto { flex: 0 0 auto; width: auto; }
.col-1  { flex: 0 0 auto; width: 8.3333%; }
.col-2  { flex: 0 0 auto; width: 16.6666%; }
.col-3  { flex: 0 0 auto; width: 25%; }
.col-4  { flex: 0 0 auto; width: 33.3333%; }
.col-5  { flex: 0 0 auto; width: 41.6666%; }
.col-6  { flex: 0 0 auto; width: 50%; }
.col-7  { flex: 0 0 auto; width: 58.3333%; }
.col-8  { flex: 0 0 auto; width: 66.6666%; }
.col-9  { flex: 0 0 auto; width: 75%; }
.col-10 { flex: 0 0 auto; width: 83.3333%; }
.col-11 { flex: 0 0 auto; width: 91.6666%; }
.col-12 { flex: 0 0 auto; width: 100%; }

/* =====================
   GUTTERS
   ===================== */
.g-0  { --gutter-x: 0;       --gutter-y: 0; }
.g-1  { --gutter-x: 0.25rem; --gutter-y: 0.25rem; }
.g-2  { --gutter-x: 0.5rem;  --gutter-y: 0.5rem; }
.g-3  { --gutter-x: 1rem;    --gutter-y: 1rem; }
.g-4  { --gutter-x: 1.5rem;  --gutter-y: 1.5rem; }
.g-5  { --gutter-x: 3rem;    --gutter-y: 3rem; }

.gx-0 { --gutter-x: 0; }
.gx-1 { --gutter-x: 0.25rem; }
.gx-2 { --gutter-x: 0.5rem; }
.gx-3 { --gutter-x: 1rem; }
.gx-4 { --gutter-x: 1.5rem; }
.gx-5 { --gutter-x: 3rem; }

.gy-0 { --gutter-y: 0; }
.gy-1 { --gutter-y: 0.25rem; }
.gy-2 { --gutter-y: 0.5rem; }
.gy-3 { --gutter-y: 1rem; }
.gy-4 { --gutter-y: 1.5rem; }
.gy-5 { --gutter-y: 3rem; }

/* =====================
   RESPONSIVE — SM (576px+)
   ===================== */
@media (min-width: 576px) {
  .col-sm      { flex: 1 1 0%; }
  .col-sm-auto { flex: 0 0 auto; width: auto; }
  .col-sm-1  { flex: 0 0 auto; width: 8.3333%; }
  .col-sm-2  { flex: 0 0 auto; width: 16.6666%; }
  .col-sm-3  { flex: 0 0 auto; width: 25%; }
  .col-sm-4  { flex: 0 0 auto; width: 33.3333%; }
  .col-sm-5  { flex: 0 0 auto; width: 41.6666%; }
  .col-sm-6  { flex: 0 0 auto; width: 50%; }
  .col-sm-7  { flex: 0 0 auto; width: 58.3333%; }
  .col-sm-8  { flex: 0 0 auto; width: 66.6666%; }
  .col-sm-9  { flex: 0 0 auto; width: 75%; }
  .col-sm-10 { flex: 0 0 auto; width: 83.3333%; }
  .col-sm-11 { flex: 0 0 auto; width: 91.6666%; }
  .col-sm-12 { flex: 0 0 auto; width: 100%; }

  .g-sm-0  { --gutter-x: 0;       --gutter-y: 0; }
  .g-sm-1  { --gutter-x: 0.25rem; --gutter-y: 0.25rem; }
  .g-sm-2  { --gutter-x: 0.5rem;  --gutter-y: 0.5rem; }
  .g-sm-3  { --gutter-x: 1rem;    --gutter-y: 1rem; }
  .g-sm-4  { --gutter-x: 1.5rem;  --gutter-y: 1.5rem; }
  .g-sm-5  { --gutter-x: 3rem;    --gutter-y: 3rem; }

  .gx-sm-0 { --gutter-x: 0; }
  .gx-sm-1 { --gutter-x: 0.25rem; }
  .gx-sm-2 { --gutter-x: 0.5rem; }
  .gx-sm-3 { --gutter-x: 1rem; }
  .gx-sm-4 { --gutter-x: 1.5rem; }
  .gx-sm-5 { --gutter-x: 3rem; }

  .gy-sm-0 { --gutter-y: 0; }
  .gy-sm-1 { --gutter-y: 0.25rem; }
  .gy-sm-2 { --gutter-y: 0.5rem; }
  .gy-sm-3 { --gutter-y: 1rem; }
  .gy-sm-4 { --gutter-y: 1.5rem; }
  .gy-sm-5 { --gutter-y: 3rem; }
}

/* =====================
   RESPONSIVE — MD (768px+)
   ===================== */
@media (min-width: 768px) {
  .col-md      { flex: 1 1 0%; }
  .col-md-auto { flex: 0 0 auto; width: auto; }
  .col-md-1  { flex: 0 0 auto; width: 8.3333%; }
  .col-md-2  { flex: 0 0 auto; width: 16.6666%; }
  .col-md-3  { flex: 0 0 auto; width: 25%; }
  .col-md-4  { flex: 0 0 auto; width: 33.3333%; }
  .col-md-5  { flex: 0 0 auto; width: 41.6666%; }
  .col-md-6  { flex: 0 0 auto; width: 50%; }
  .col-md-7  { flex: 0 0 auto; width: 58.3333%; }
  .col-md-8  { flex: 0 0 auto; width: 66.6666%; }
  .col-md-9  { flex: 0 0 auto; width: 75%; }
  .col-md-10 { flex: 0 0 auto; width: 83.3333%; }
  .col-md-11 { flex: 0 0 auto; width: 91.6666%; }
  .col-md-12 { flex: 0 0 auto; width: 100%; }

  .g-md-0  { --gutter-x: 0;       --gutter-y: 0; }
  .g-md-1  { --gutter-x: 0.25rem; --gutter-y: 0.25rem; }
  .g-md-2  { --gutter-x: 0.5rem;  --gutter-y: 0.5rem; }
  .g-md-3  { --gutter-x: 1rem;    --gutter-y: 1rem; }
  .g-md-4  { --gutter-x: 1.5rem;  --gutter-y: 1.5rem; }
  .g-md-5  { --gutter-x: 3rem;    --gutter-y: 3rem; }

  .gx-md-0 { --gutter-x: 0; }
  .gx-md-1 { --gutter-x: 0.25rem; }
  .gx-md-2 { --gutter-x: 0.5rem; }
  .gx-md-3 { --gutter-x: 1rem; }
  .gx-md-4 { --gutter-x: 1.5rem; }
  .gx-md-5 { --gutter-x: 3rem; }

  .gy-md-0 { --gutter-y: 0; }
  .gy-md-1 { --gutter-y: 0.25rem; }
  .gy-md-2 { --gutter-y: 0.5rem; }
  .gy-md-3 { --gutter-y: 1rem; }
  .gy-md-4 { --gutter-y: 1.5rem; }
  .gy-md-5 { --gutter-y: 3rem; }
}

/* =====================
   RESPONSIVE — LG (992px+)
   ===================== */
@media (min-width: 992px) {
  .col-lg      { flex: 1 1 0%; }
  .col-lg-auto { flex: 0 0 auto; width: auto; }
  .col-lg-1  { flex: 0 0 auto; width: 8.3333%; }
  .col-lg-2  { flex: 0 0 auto; width: 16.6666%; }
  .col-lg-3  { flex: 0 0 auto; width: 25%; }
  .col-lg-4  { flex: 0 0 auto; width: 33.3333%; }
  .col-lg-5  { flex: 0 0 auto; width: 41.6666%; }
  .col-lg-6  { flex: 0 0 auto; width: 50%; }
  .col-lg-7  { flex: 0 0 auto; width: 58.3333%; }
  .col-lg-8  { flex: 0 0 auto; width: 66.6666%; }
  .col-lg-9  { flex: 0 0 auto; width: 75%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.3333%; }
  .col-lg-11 { flex: 0 0 auto; width: 91.6666%; }
  .col-lg-12 { flex: 0 0 auto; width: 100%; }

  .g-lg-0  { --gutter-x: 0;       --gutter-y: 0; }
  .g-lg-1  { --gutter-x: 0.25rem; --gutter-y: 0.25rem; }
  .g-lg-2  { --gutter-x: 0.5rem;  --gutter-y: 0.5rem; }
  .g-lg-3  { --gutter-x: 1rem;    --gutter-y: 1rem; }
  .g-lg-4  { --gutter-x: 1.5rem;  --gutter-y: 1.5rem; }
  .g-lg-5  { --gutter-x: 3rem;    --gutter-y: 3rem; }

  .gx-lg-0 { --gutter-x: 0; }
  .gx-lg-1 { --gutter-x: 0.25rem; }
  .gx-lg-2 { --gutter-x: 0.5rem; }
  .gx-lg-3 { --gutter-x: 1rem; }
  .gx-lg-4 { --gutter-x: 1.5rem; }
  .gx-lg-5 { --gutter-x: 3rem; }

  .gy-lg-0 { --gutter-y: 0; }
  .gy-lg-1 { --gutter-y: 0.25rem; }
  .gy-lg-2 { --gutter-y: 0.5rem; }
  .gy-lg-3 { --gutter-y: 1rem; }
  .gy-lg-4 { --gutter-y: 1.5rem; }
  .gy-lg-5 { --gutter-y: 3rem; }
}

/* =====================
   RESPONSIVE — XL (1200px+)
   ===================== */
@media (min-width: 1200px) {
  .col-xl      { flex: 1 1 0%; }
  .col-xl-auto { flex: 0 0 auto; width: auto; }
  .col-xl-1  { flex: 0 0 auto; width: 8.3333%; }
  .col-xl-2  { flex: 0 0 auto; width: 16.6666%; }
  .col-xl-3  { flex: 0 0 auto; width: 25%; }
  .col-xl-4  { flex: 0 0 auto; width: 33.3333%; }
  .col-xl-5  { flex: 0 0 auto; width: 41.6666%; }
  .col-xl-6  { flex: 0 0 auto; width: 50%; }
  .col-xl-7  { flex: 0 0 auto; width: 58.3333%; }
  .col-xl-8  { flex: 0 0 auto; width: 66.6666%; }
  .col-xl-9  { flex: 0 0 auto; width: 75%; }
  .col-xl-10 { flex: 0 0 auto; width: 83.3333%; }
  .col-xl-11 { flex: 0 0 auto; width: 91.6666%; }
  .col-xl-12 { flex: 0 0 auto; width: 100%; }

  .g-xl-0  { --gutter-x: 0;       --gutter-y: 0; }
  .g-xl-1  { --gutter-x: 0.25rem; --gutter-y: 0.25rem; }
  .g-xl-2  { --gutter-x: 0.5rem;  --gutter-y: 0.5rem; }
  .g-xl-3  { --gutter-x: 1rem;    --gutter-y: 1rem; }
  .g-xl-4  { --gutter-x: 1.5rem;  --gutter-y: 1.5rem; }
  .g-xl-5  { --gutter-x: 3rem;    --gutter-y: 3rem; }

  .gx-xl-0 { --gutter-x: 0; }
  .gx-xl-1 { --gutter-x: 0.25rem; }
  .gx-xl-2 { --gutter-x: 0.5rem; }
  .gx-xl-3 { --gutter-x: 1rem; }
  .gx-xl-4 { --gutter-x: 1.5rem; }
  .gx-xl-5 { --gutter-x: 3rem; }

  .gy-xl-0 { --gutter-y: 0; }
  .gy-xl-1 { --gutter-y: 0.25rem; }
  .gy-xl-2 { --gutter-y: 0.5rem; }
  .gy-xl-3 { --gutter-y: 1rem; }
  .gy-xl-4 { --gutter-y: 1.5rem; }
  .gy-xl-5 { --gutter-y: 3rem; }
}

/* =====================
   RESPONSIVE — XXL (1400px+)
   ===================== */
@media (min-width: 1400px) {
  .col-xxl      { flex: 1 1 0%; }
  .col-xxl-auto { flex: 0 0 auto; width: auto; }
  .col-xxl-1  { flex: 0 0 auto; width: 8.3333%; }
  .col-xxl-2  { flex: 0 0 auto; width: 16.6666%; }
  .col-xxl-3  { flex: 0 0 auto; width: 25%; }
  .col-xxl-4  { flex: 0 0 auto; width: 33.3333%; }
  .col-xxl-5  { flex: 0 0 auto; width: 41.6666%; }
  .col-xxl-6  { flex: 0 0 auto; width: 50%; }
  .col-xxl-7  { flex: 0 0 auto; width: 58.3333%; }
  .col-xxl-8  { flex: 0 0 auto; width: 66.6666%; }
  .col-xxl-9  { flex: 0 0 auto; width: 75%; }
  .col-xxl-10 { flex: 0 0 auto; width: 83.3333%; }
  .col-xxl-11 { flex: 0 0 auto; width: 91.6666%; }
  .col-xxl-12 { flex: 0 0 auto; width: 100%; }
}


/* Width */
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.w-auto { width: auto; }
.h-auto { height: auto; }
.max-w-500 { max-width: 500px !important; }
.max-w-600 { max-width: 600px !important; }
.max-w-700 { max-width: 700px !important; }
.max-w-800 { max-width: 800px !important; }
.max-w-900 { max-width: 900px !important; }
.max-w-1000 { max-width: 1000px !important; }
.max-w-1200 { max-width: 1200px !important; }
.max-w-1400 { max-width: 1400px !important; }
.max-w-1620 { max-width: 1620px !important; }
.section-max-w-1620 { max-width: calc(1620px + 170px) !important; }

/* Image */
.object-fit-cover   { object-fit: cover; }
.object-fit-contain { object-fit: contain; }
.object-position-center { object-position: center; }
.background-norepeat { background-repeat: no-repeat; }
.background-position-center { background-position: center; }
.background-fit-cover { background-size: cover; }
.background-fit-contain { background-size: contain; }

/*************************
	MARGIN AND PADDING
************************/
.negative-mt { margin-top: -2px; }
.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; }

.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; }

.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; }

.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; }

.mx-0 { margin-left: 0; margin-right: 0 !important; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem !important; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem !important; }
.mx-3 { margin-left: 1rem; margin-right: 1rem !important; }
.mx-4 { margin-left: 1.5rem; margin-right: 1.5rem !important; }
.mx-5 { margin-left: 3rem; margin-right: 3rem !important; }

.my-0 { margin-top: 0; margin-bottom: 0 !important; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem !important; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem !important; }
.my-3 { margin-top: 1rem; margin-bottom: 1rem !important; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem !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-auto { margin-left: auto; margin-right: auto !important; }
.ms-auto { margin-left: auto !important; }
.me-auto { margin-right: auto !important; }

@media (min-width: 768px) {
    .mx-md-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (min-width: 992px) {
    .mx-lg-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* padding */
.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; }

.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; }

.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; }

.px-0 { padding-left: 0; padding-right: 0 !important; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem; padding-right: 3rem !important; }

.py-0 { padding-top: 0; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem !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-12 { padding-left: 12px !important;  padding-right: 12px !important; }
.py-12 { padding-top: 12px !important;   padding-bottom: 12px !important; }
.p-12  { padding: 12px !important; }
.pt-12 { padding-top: 12px !important; }
.pb-12 { padding-bottom: 12px !important; }
.ps-12 { padding-left: 12px !important; }
.pe-12 { padding-right: 12px !important; }

.px-20 { padding-left: 20px !important;  padding-right: 20px !important; }
.py-20 { padding-top: 20px !important;   padding-bottom: 20px !important; }
.p-20  { padding: 20px !important; }
.pt-20 { padding-top: 20px !important; }
.pb-20 { padding-bottom: 20px !important; }
.ps-20 { padding-left: 20px !important; }
.pe-20 { padding-right: 20px !important; }

@media (min-width: 768px) {
  .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; }

  .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; }

  .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; }

  .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; }

  .mx-md-0 { margin-left: 0; margin-right: 0 !important; }
  .mx-md-1 { margin-left: 0.25rem; margin-right: 0.25rem !important; }
  .mx-md-2 { margin-left: 0.5rem; margin-right: 0.5rem !important; }
  .mx-md-3 { margin-left: 1rem; margin-right: 1rem !important; }
  .mx-md-4 { margin-left: 1.5rem; margin-right: 1.5rem !important; }
  .mx-md-5 { margin-left: 3rem; margin-right: 3rem !important; }

  .my-md-0 { margin-top: 0; margin-bottom: 0 !important; }
  .my-md-1 { margin-top: 0.25rem; margin-bottom: 0.25rem !important; }
  .my-md-2 { margin-top: 0.5rem; margin-bottom: 0.5rem !important; }
  .my-md-3 { margin-top: 1rem; margin-bottom: 1rem !important; }
  .my-md-4 { margin-top: 1.5rem; margin-bottom: 1.5rem !important; }
  .my-md-5 { margin-top: 3rem; margin-bottom: 3rem !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-auto { margin-left: auto; margin-right: auto !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; }

  .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; }

  .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; }

  .px-md-0 { padding-left: 0; padding-right: 0 !important; }
  .px-md-1 { padding-left: 0.25rem; padding-right: 0.25rem !important; }
  .px-md-2 { padding-left: 0.5rem; padding-right: 0.5rem !important; }
  .px-md-3 { padding-left: 1rem; padding-right: 1rem !important; }
  .px-md-4 { padding-left: 1.5rem; padding-right: 1.5rem !important; }
  .px-md-5 { padding-left: 3rem; padding-right: 3rem !important; }

  .py-md-0 { padding-top: 0; padding-bottom: 0 !important; }
  .py-md-1 { padding-top: 0.25rem; padding-bottom: 0.25rem !important; }
  .py-md-2 { padding-top: 0.5rem; padding-bottom: 0.5rem !important; }
  .py-md-3 { padding-top: 1rem; padding-bottom: 1rem !important; }
  .py-md-4 { padding-top: 1.5rem; padding-bottom: 1.5rem !important; }
  .py-md-5 { padding-top: 3rem; padding-bottom: 3rem !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; }
}

@media (min-width: 992px) {
  .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; }

  .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; }

  .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; }

  .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; }

  .mx-lg-0 { margin-left: 0; margin-right: 0 !important; }
  .mx-lg-1 { margin-left: 0.25rem; margin-right: 0.25rem !important; }
  .mx-lg-2 { margin-left: 0.5rem; margin-right: 0.5rem !important; }
  .mx-lg-3 { margin-left: 1rem; margin-right: 1rem !important; }
  .mx-lg-4 { margin-left: 1.5rem; margin-right: 1.5rem !important; }
  .mx-lg-5 { margin-left: 3rem; margin-right: 3rem !important; }

  .my-lg-0 { margin-top: 0; margin-bottom: 0 !important; }
  .my-lg-1 { margin-top: 0.25rem; margin-bottom: 0.25rem !important; }
  .my-lg-2 { margin-top: 0.5rem; margin-bottom: 0.5rem !important; }
  .my-lg-3 { margin-top: 1rem; margin-bottom: 1rem !important; }
  .my-lg-4 { margin-top: 1.5rem; margin-bottom: 1.5rem !important; }
  .my-lg-5 { margin-top: 3rem; margin-bottom: 3rem !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-auto { margin-left: auto; margin-right: auto !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; }

  .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; }

  .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; }

  .px-lg-0 { padding-left: 0; padding-right: 0 !important; }
  .px-lg-1 { padding-left: 0.25rem; padding-right: 0.25rem !important; }
  .px-lg-2 { padding-left: 0.5rem; padding-right: 0.5rem !important; }
  .px-lg-3 { padding-left: 1rem; padding-right: 1rem !important; }
  .px-lg-4 { padding-left: 1.5rem; padding-right: 1.5rem !important; }
  .px-lg-5 { padding-left: 3rem; padding-right: 3rem !important; }

  .py-lg-0 { padding-top: 0; padding-bottom: 0 !important; }
  .py-lg-1 { padding-top: 0.25rem; padding-bottom: 0.25rem !important; }
  .py-lg-2 { padding-top: 0.5rem; padding-bottom: 0.5rem !important; }
  .py-lg-3 { padding-top: 1rem; padding-bottom: 1rem !important; }
  .py-lg-4 { padding-top: 1.5rem; padding-bottom: 1.5rem !important; }
  .py-lg-5 { padding-top: 3rem; padding-bottom: 3rem !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; }
}

@media (min-width: 1200px) {
  .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; }

  .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; }

  .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; }

  .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; }

  .mx-xl-0 { margin-left: 0; margin-right: 0 !important; }
  .mx-xl-1 { margin-left: 0.25rem; margin-right: 0.25rem !important; }
  .mx-xl-2 { margin-left: 0.5rem; margin-right: 0.5rem !important; }
  .mx-xl-3 { margin-left: 1rem; margin-right: 1rem !important; }
  .mx-xl-4 { margin-left: 1.5rem; margin-right: 1.5rem !important; }
  .mx-xl-5 { margin-left: 3rem; margin-right: 3rem !important; }

  .my-xl-0 { margin-top: 0; margin-bottom: 0 !important; }
  .my-xl-1 { margin-top: 0.25rem; margin-bottom: 0.25rem !important; }
  .my-xl-2 { margin-top: 0.5rem; margin-bottom: 0.5rem !important; }
  .my-xl-3 { margin-top: 1rem; margin-bottom: 1rem !important; }
  .my-xl-4 { margin-top: 1.5rem; margin-bottom: 1.5rem !important; }
  .my-xl-5 { margin-top: 3rem; margin-bottom: 3rem !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-auto { margin-left: auto; margin-right: auto !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; }

  .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; }

  .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; }

  .px-xl-0 { padding-left: 0; padding-right: 0 !important; }
  .px-xl-1 { padding-left: 0.25rem; padding-right: 0.25rem !important; }
  .px-xl-2 { padding-left: 0.5rem; padding-right: 0.5rem !important; }
  .px-xl-3 { padding-left: 1rem; padding-right: 1rem !important; }
  .px-xl-4 { padding-left: 1.5rem; padding-right: 1.5rem !important; }
  .px-xl-5 { padding-left: 3rem; padding-right: 3rem !important; }

  .py-xl-0 { padding-top: 0; padding-bottom: 0 !important; }
  .py-xl-1 { padding-top: 0.25rem; padding-bottom: 0.25rem !important; }
  .py-xl-2 { padding-top: 0.5rem; padding-bottom: 0.5rem !important; }
  .py-xl-3 { padding-top: 1rem; padding-bottom: 1rem !important; }
  .py-xl-4 { padding-top: 1.5rem; padding-bottom: 1.5rem !important; }
  .py-xl-5 { padding-top: 3rem; padding-bottom: 3rem !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; }
}
/* =====================================================
		BORDERs
===================================================== */
.border { border: 1px solid var(--light-line) !important; }
.border-bottom { border-bottom: 1px solid var(--light-line) !important; }
.border-top { border-top: 1px solid var(--light-line) !important; }
.border-start { border-left: 1px solid var(--light-line) !important; }
.border-end { border-right: 1px solid var(--light-line) !important; }

@media (min-width: 768px) {
   .border-md-bottom { border-bottom: 1px solid var(--light-line) !important; }
   .border-md-top { border-top: 1px solid var(--light-line) !important; }
   .border-md-start { border-left: 1px solid var(--light-line) !important; }
   .border-md-end { border-right: 1px solid var(--light-line) !important; }

}

@media (min-width: 992px) {
	.border { border: 1px solid var(--light-line) !important; }
   .border-lg-bottom { border-bottom: 1px solid var(--light-line) !important; }
   .border-lg-top { border-top: 1px solid var(--light-line) !important; }
   .border-lg-start { border-left: 1px solid var(--light-line) !important; }
   .border-lg-end { border-right: 1px solid var(--light-line) !important; }

}

/* =====================================================
		BORDER RADIUS
===================================================== */
.rounded-1 { border-radius: 6px !important; }
.rounded-2 { border-radius: 8px !important; }
.rounded-3 { border-radius: 10px !important; }
.rounded-4 { border-radius: 12px !important; }

/* =====================================================
		BORDER RADIUS
===================================================== */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }

@media (min-width: 768px) {
	.position-md-relative { position: relative !important; }
	.position-md-absolute { position: absolute !important; }
	.position-md-fixed { position: fixed !important; }
}

@media (min-width: 992px) {
	.position-lg-relative { position: relative !important; }
	.position-lg-absolute { position: absolute !important; }
	.position-lg-fixed { position: fixed !important; }
}

@media (min-width: 1200px) {
	.position-xl-relative { position: relative !important; }
	.position-xl-absolute { position: absolute !important; }
	.position-xl-fixed { position: fixed !important; }
}

.top-0 { top: 0 !important; }
.bottom-0 { bottom: 0 !important; }
.start-0 { left: 0 !important; }
.end-0 { right: 0 !important; }


/* ================================
   CONTAINERS
================================ */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
	position: relative;
}

@media (min-width: 992px) {
	.container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.container-sm  { max-width: 640px;  }
.container-md  { max-width: 768px;  }
.container-lg  { max-width: 1024px; }
.container-xl  { max-width: 1280px; }
.container  { max-width: 1600px; }

/* ─────────────────────────────────────────
   OFFCANVAS
───────────────────────────────────────── */

/* ─────────────────────────────────────────
   OFFCANVAS TOGGLE BUTTON (hamburger)
───────────────────────────────────────── */
.btn-offcanvas {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0.375rem;
	cursor: pointer;
	flex-shrink: 0;
	transition: background-color 0.15s ease, opacity 0.15s ease;
}

.btn-offcanvas:active,
.btn-offcanvas:focus {
	background: none;
	border: none;
}

.btn-offcanvas svg {
	display: block;
	width: 28px;
	height: 28px;
}

.btn-offcanvas svg path { stroke: var(--offcanvas-btn-color, #070919); transition: stroke 0.15s ease; }
.btn-offcanvas[disabled] { pointer-events: none; opacity: 0.35; }

/* White variant — for dark navbars */
.btn-offcanvas-white { --offcanvas-btn-color: #ffffff; }

/* ─────────────────────────────────────────
   OFFCANVAS CLOSE BUTTON
───────────────────────────────────────── */
.btn-close {
	height: 36px;
	width: 36px;
	padding: 4px;
	background-color: transparent;
	border: none;
	outline: none;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: normal;
}

.btn-close:active,
.btn-close:focus {
	border: none;
	outline: none;
}

/* ─────────────────────────────────────────
   SHARED INNER STRUCTURE
───────────────────────────────────────── */
.offcanvas-md .offcanvas-header,
.offcanvas-lg .offcanvas-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--offcanvas-padding-y) var(--offcanvas-padding-x);
	min-height: var(--offcanvas-header-height);
}

.offcanvas-md .offcanvas-title,
.offcanvas-lg .offcanvas-title {
	margin: 0;
	line-height: 1.5;
	font-weight: 600;
}

.offcanvas-md .offcanvas-body,
.offcanvas-lg .offcanvas-body {
	flex-grow: 1;
	padding: var(--offcanvas-padding-y) var(--offcanvas-padding-x);
	overflow-y: auto;
}

/* ─────────────────────────────────────────
   BACKDROP
───────────────────────────────────────── */
.offcanvas-backdrop {
	position: fixed;
	inset: 0;
	z-index: var(--offcanvas-backdrop-zindex);
	background: var(--offcanvas-backdrop-bg);
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.offcanvas-backdrop.show { opacity: 1; }


/* =====================================================
   offcanvas-md
   ===================================================== */

@media (max-width: 767.98px) {
	.offcanvas-md {
		position: fixed;
		bottom: 0;
		z-index: var(--offcanvas-zindex);
		display: flex;
		flex-direction: column;
		max-width: 100%;
		visibility: hidden;
		background-color: var(--offcanvas-bg);
		background-clip: padding-box;
		outline: 0;
		transition: var(--offcanvas-transition);
	}

	.offcanvas-md.offcanvas-start {
		top: 0;
		left: 0;
		width: var(--offcanvas-width);
		height: 100%;
		border-right: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
		box-shadow: var(--offcanvas-box-shadow);
		transform: translateX(-100%);
	}

	.offcanvas-md.offcanvas-end {
		top: 0;
		right: 0;
		width: var(--offcanvas-width);
		height: 100%;
		border-left: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
		box-shadow: 4px 0 16px rgba(0, 0, 0, .15);
		transform: translateX(100%);
	}

	.offcanvas-md.offcanvas-top {
		top: 0;
		left: 0;
		right: 0;
		height: var(--offcanvas-height);
		max-height: 100%;
		border-bottom: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
		box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
		transform: translateY(-100%);
	}

	.offcanvas-md.offcanvas-bottom {
		right: 0;
		left: 0;
		height: var(--offcanvas-height);
		max-height: 100%;
		border-top: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
		box-shadow: 0 -4px 16px rgba(0, 0, 0, .15);
		transform: translateY(100%);
	}

	.offcanvas-md.show,
	.offcanvas-md.showing { transform: none; visibility: visible; }

	.offcanvas-md.hiding { visibility: visible; }
}

@media (min-width: 768px) {
	.offcanvas-md {
		--offcanvas-height: auto;
		position: relative !important;
		visibility: visible !important;
		transform: none !important;
		background: none !important;
		border: none !important;
		box-shadow: none !important;
		width: auto !important;
		height: auto !important;
		z-index: auto !important;
		transition: none !important;
	}

	.offcanvas-md .offcanvas-header { display: none; }

	.offcanvas-md .offcanvas-body {
		display: flex;
		flex-grow: 0;
		padding: 0;
		overflow: visible;
	}
}


/* =====================================================
   offcanvas-lg
   ===================================================== */

@media (max-width: 991.98px) {
	.offcanvas-lg {
		position: fixed;
		bottom: 0;
		z-index: var(--offcanvas-zindex);
		display: flex;
		flex-direction: column;
		max-width: 100%;
		visibility: hidden;
		background-color: var(--offcanvas-bg);
		background-clip: padding-box;
		outline: 0;
		transition: var(--offcanvas-transition);
	}

	.offcanvas-lg.offcanvas-start {
		top: 0;
		left: 0;
		width: var(--offcanvas-width);
		height: 100%;
		border-right: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
		box-shadow: var(--offcanvas-box-shadow);
		transform: translateX(-100%);
	}

	.offcanvas-lg.offcanvas-end {
		top: 0;
		right: 0;
		width: var(--offcanvas-width);
		height: 100%;
		border-left: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
		box-shadow: 4px 0 16px rgba(0, 0, 0, .15);
		transform: translateX(100%);
	}

	.offcanvas-lg.offcanvas-top {
		top: 0;
		left: 0;
		right: 0;
		height: var(--offcanvas-height);
		max-height: 100%;
		border-bottom: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
		box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
		transform: translateY(-100%);
	}

	.offcanvas-lg.offcanvas-bottom {
		right: 0;
		left: 0;
		height: var(--offcanvas-height);
		max-height: 100%;
		border-top: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
		box-shadow: 0 -4px 16px rgba(0, 0, 0, .15);
		transform: translateY(100%);
	}

	.offcanvas-lg.show,
	.offcanvas-lg.showing { transform: none; visibility: visible; }

	.offcanvas-lg.hiding { visibility: visible; }
}

@media (min-width: 992px) {
	.offcanvas-lg {
		--offcanvas-height: auto;
		position: relative !important;
		visibility: visible !important;
		transform: none !important;
		background: none !important;
		border: none !important;
		box-shadow: none !important;
		width: auto !important;
		height: auto !important;
		z-index: auto !important;
		transition: none !important;
	}

	.offcanvas-lg .offcanvas-header { display: none; }

	.offcanvas-lg .offcanvas-body {
		display: flex;
		flex-grow: 0;
		padding: 0;
		overflow: visible;
	}
}

[data-oc-breakpoint="sm"] { display: none; }
@media (max-width: 575.98px)  { [data-oc-breakpoint="sm"]  { display: inline-flex; } }

[data-oc-breakpoint="md"] { display: none; }
@media (max-width: 767.98px)  { [data-oc-breakpoint="md"]  { display: inline-flex; } }

[data-oc-breakpoint="lg"] { display: none; }
@media (max-width: 991.98px)  { [data-oc-breakpoint="lg"]  { display: inline-flex; } }

[data-oc-breakpoint="xl"] { display: none; }
@media (max-width: 1199.98px) { [data-oc-breakpoint="xl"]  { display: inline-flex; } }

[data-oc-breakpoint="xxl"] { display: none; }
@media (max-width: 1399.98px) { [data-oc-breakpoint="xxl"] { display: inline-flex; } }



/* ======================================
		TABS
========================================= */
.tabs-nav {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	padding-bottom: 36px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 768px) {
	.tabs-nav {
		overflow-x: visible; 
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 10px;
		padding-bottom: 64px;
	}
}

.tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex-shrink: 0;
}

.tab-btn {
	width: auto;
	padding: 8px 12px;
	border-radius: 6px;
	height: auto;
	line-height: normal;
	border: 1px solid var(--light-line);
	background-color: transparent;
	cursor: pointer;
	color: var(--text-dark);
	font-size: 16px;
	transition: color 0.2s ease, border-color 0.2s ease, background-color .2s ease;
}

.tab-btn:hover {
	background-color: var(--white-background);
    border-color: var(--dark-background);
}

.tab-btn.active {
	color: var(--white);
    background-color: var(--dark-background);
    border-color: var(--dark-background);
}

.tab-pane {
    display: none;
    padding: 16px 0;
    opacity: 0;
    transform: translateY(8px);
}

.tab-pane.active {
    display: block;
    animation: tabFadeIn 0.25s ease forwards;
}

@keyframes tabFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================================
		ACCORDION
========================================= */
.accordion {
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--dark-line);
}


.accordion-btn {
   width: 100%;
   height: auto;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 24px 16px 24px 16px;
   background: #fff;
   border: none;
   cursor: pointer;
   font-size: 15px;
   font-weight: 500;
   color: #1a1a2e;
   text-align: left;
   transition: background 0.15s ease;
}

@media (min-width: 992px) {
   .accordion-btn {
      padding: 32px 16px 32px 16px;
   }
}

.accordion-btn:hover,
.accordion-item.is-open .accordion-btn {
    background: #f8f9fa;
}

/* +/- icon using pseudo-elements */
.accordion-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--white-background);
    border-radius: 2px;
    transition: transform 0.25s ease;
}

/* Horizontal bar — always visible */
.accordion-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Vertical bar — scales to 0 when open, making + become - */
.accordion-icon::after {
    width: 2px;
    height: 16px;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleY(1);
    transform-origin: center;
}

.accordion-item.is-open .accordion-icon::after {
    transform: translateX(-50%) scaleY(0);
}

/* Grid trick for smooth height animation without knowing exact height */
.accordion-collapse {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.accordion-item.is-open .accordion-collapse {
    grid-template-rows: 1fr;
}

.accordion-collapse-inner {
    overflow: hidden;
}

.accordion-body {
    padding: 0 16px 32px 16px;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
}

@keyframes icon-spin-open {
    from { transform: rotate(0deg); }
    to   { transform: rotate(180deg); }
}

/* Counter-clockwise on close — feels like rewinding */
@keyframes icon-spin-close {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-180deg); }
}

.accordion-icon.spin-open {
    animation: icon-spin-open 0.4s ease;
}

.accordion-icon.spin-close {
    animation: icon-spin-close 0.4s ease;
}

.accordion-media-img {
    transition: opacity 0.4s ease;
}

/* Sakrij target ispod 1400px */
@media (max-width: 1399px) {
    .accordion-image-target {
        display: none;
    }
}

.accordion-media-img {
   border-radius: 8px;
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.accordion-image-target {
    height: 100%;
}

.accordion-media-img:not([src]),
.accordion-media-img[src=""] {
    visibility: hidden;
}

/* ======================================
		TEXT
========================================= */
.text-nowrap { text-wrap: nowrap !important; }
.text-wrap   { text-wrap: wrap !important; }
.fst-italic { font-style: italic !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-capitalize { text-transform: capitalize !important; }

.vertical-separator {
   height: 100%;
   min-height: 20px;
   width: 1px;
}

.horizontal-separator {
   height: 1px;
   width: 100%;
   min-width: 20px;
}

.aspect-square { aspect-ratio: 1 / 1 !important; }
.overflow-hidden { overflow: hidden !important; }
.overflow-visible { overflow: visible !important; }


.line-h-1 {
	line-height: 1;
}

.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }

@media (min-width: 768px) {
	.text-md-center { text-align: center !important; }
	.text-md-start { text-align: left !important; }
	.text-md-end { text-align: right !important; }
}

@media (min-width: 992px) {
	.text-lg-center { text-align: center !important; }
	.text-lg-start { text-align: left !important; }
	.text-lg-end { text-align: right !important; }
}

@media (min-width: 1200px) {
	.text-xl-center { text-align: center !important; }
	.text-xl-start { text-align: left !important; }
	.text-xl-end { text-align: right !important; }
}


