@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
:root {
  --color-primary: #081C3F;
  --white: #fff;
  --color-primary-hover: #4338ca;
  --color-primary-light: #eef2ff;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --color-bg: #04050E;
  --color-surface: #ffffff;
  --color-heading: #fff;
  --color-text: rgba(255, 255, 255, 0.55);
  --color-text-muted: rgba(255, 255, 255, 0.35);
  --color-border: rgba(255, 255, 255, 0.05);
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-bg-dark: rgba(8, 28, 63, 0.45);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-border-dark: rgba(255, 255, 255, 0.08);
  --glass-blur: 12px;
  --glass-saturate: 180%;
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-effect-dark {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  border: 1px solid var(--glass-border-dark);
  box-shadow: var(--glass-shadow);
}

.text-gradient {
  font-style: normal;
  font-weight: 500;
  background: linear-gradient(90deg, #FFFFFF 0%, #F7B865 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-white {
  color: var(--color-surface);
}

/* ==========================================================================
   Modern CSS Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: rgba(255, 255, 255, 0.55);
  background-color: #1c2229;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease-in-out;
}
a:hover {
  opacity: 0.8;
}

.glassy {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

/* SM ≥576px */
@media (min-width: 576px) {
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-55 {
    width: 55% !important;
  }
  .w-sm-60 {
    width: 60% !important;
  }
  .w-sm-65 {
    width: 65% !important;
  }
  .w-sm-70 {
    width: 70% !important;
  }
  .w-sm-75 {
    width: 75% !important;
  }
  .w-sm-80 {
    width: 80% !important;
  }
  .w-sm-85 {
    width: 85% !important;
  }
  .w-sm-90 {
    width: 90% !important;
  }
  .w-sm-95 {
    width: 95% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
}
/* MD ≥768px */
@media (min-width: 768px) {
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-55 {
    width: 55% !important;
  }
  .w-md-60 {
    width: 60% !important;
  }
  .w-md-65 {
    width: 65% !important;
  }
  .w-md-70 {
    width: 70% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-80 {
    width: 80% !important;
  }
  .w-md-85 {
    width: 85% !important;
  }
  .w-md-90 {
    width: 90% !important;
  }
  .w-md-95 {
    width: 95% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
}
/* LG ≥992px */
@media (min-width: 992px) {
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-55 {
    width: 55% !important;
  }
  .w-lg-60 {
    width: 60% !important;
  }
  .w-lg-65 {
    width: 65% !important;
  }
  .w-lg-70 {
    width: 70% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-80 {
    width: 80% !important;
  }
  .w-lg-85 {
    width: 85% !important;
  }
  .w-lg-90 {
    width: 90% !important;
  }
  .w-lg-95 {
    width: 95% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
}
/* XL ≥1200px */
@media (min-width: 1200px) {
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-55 {
    width: 55% !important;
  }
  .w-xl-60 {
    width: 60% !important;
  }
  .w-xl-65 {
    width: 65% !important;
  }
  .w-xl-70 {
    width: 70% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
  .w-xl-80 {
    width: 80% !important;
  }
  .w-xl-85 {
    width: 85% !important;
  }
  .w-xl-90 {
    width: 90% !important;
  }
  .w-xl-95 {
    width: 95% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
}
/* XXL ≥1400px */
@media (min-width: 1400px) {
  .w-xxl-50 {
    width: 50% !important;
  }
  .w-xxl-55 {
    width: 55% !important;
  }
  .w-xxl-60 {
    width: 60% !important;
  }
  .w-xxl-65 {
    width: 65% !important;
  }
  .w-xxl-70 {
    width: 70% !important;
  }
  .w-xxl-75 {
    width: 75% !important;
  }
  .w-xxl-80 {
    width: 80% !important;
  }
  .w-xxl-85 {
    width: 85% !important;
  }
  .w-xxl-90 {
    width: 90% !important;
  }
  .w-xxl-95 {
    width: 95% !important;
  }
  .w-xxl-100 {
    width: 100% !important;
  }
}
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.static {
  position: static;
}

.btn-primary {
  width: auto;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0px 2px 6px rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 0px 16px;
}

.bt-close {
  width: 37px;
  height: 37px;
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  z-index: 9;
  border-radius: 160px;
  background: rgba(8, 28, 63, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  flex: none;
  order: 0;
  flex-grow: 0;
}
@media (min-width: 992px) {
  .bt-close {
    width: 47px;
    height: 47px;
    top: 20px;
    right: 20px;
  }
}

.box-icons {
  height: 50px;
  width: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .box-icons {
    height: 60px;
    width: 114px;
  }
}

header {
  padding: 30px 20px;
  gap: 10px;
  position: fixed;
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(23px);
  z-index: 9;
}

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

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

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

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

@media (min-width: 576px) {
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-justify {
    text-align: justify !important;
  }
}
@media (min-width: 768px) {
  .text-md-start {
    text-align: left !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-justify {
    text-align: justify !important;
  }
}
@media (min-width: 992px) {
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-justify {
    text-align: justify !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-justify {
    text-align: justify !important;
  }
}
@media (min-width: 1400px) {
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-justify {
    text-align: justify !important;
  }
}
.paragraph {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #FFFFFF;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

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

.fs-8 {
  font-size: 8px !important;
}

.fs-9 {
  font-size: 9px !important;
}

.fs-10 {
  font-size: 10px !important;
}

.fs-11 {
  font-size: 11px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

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

.fs-15 {
  font-size: 15px !important;
}

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

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-21 {
  font-size: 21px !important;
}

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

.fs-23 {
  font-size: 23px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-25 {
  font-size: 25px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-27 {
  font-size: 27px !important;
}

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

.fs-29 {
  font-size: 29px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-31 {
  font-size: 31px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-33 {
  font-size: 33px !important;
}

.fs-34 {
  font-size: 34px !important;
}

.fs-35 {
  font-size: 35px !important;
}

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

.fs-37 {
  font-size: 37px !important;
}

.fs-38 {
  font-size: 38px !important;
}

.fs-39 {
  font-size: 39px !important;
}

.fs-40 {
  font-size: 40px !important;
}

.fs-41 {
  font-size: 41px !important;
}

.fs-42 {
  font-size: 42px !important;
}

.fs-43 {
  font-size: 43px !important;
}

.fs-44 {
  font-size: 44px !important;
}

.fs-45 {
  font-size: 45px !important;
}

.fs-46 {
  font-size: 46px !important;
}

.fs-47 {
  font-size: 47px !important;
}

.fs-48 {
  font-size: 48px !important;
}

h1 {
  font-weight: 600;
  font-size: 36px;
  color: #FFFFFF;
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 56px;
  }
}

.font-weight-semibold {
  font-weight: 600;
}

.viewer-container {
  width: 100%;
  height: 340px;
  background-color: var(--color-surface);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 992px) {
  .viewer-container {
    height: 720px;
  }
}
.viewer-container:fullscreen {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  background-color: #0d1117;
}

.viewer-tabs {
  display: flex;
  gap: 4px;
  padding: 8px 8px 0;
  overflow-x: auto;
  flex-shrink: 0;
  background-color: #1c2228;
}
.viewer-tabs::-webkit-scrollbar {
  height: 0;
}

.viewer-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px 10px 0 0;
  border: none;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  background-color: #1c2228;
}
.viewer-tab i {
  font-size: 16px;
}
.viewer-tab span {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.viewer-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}
.viewer-tab--active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.viewer-display {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.viewer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(255, 255, 255, 0.25);
  gap: 12px;
}
.viewer-empty i {
  font-size: 48px;
}
.viewer-empty p {
  font-size: 14px;
  margin: 0;
}

.viewer-pdf {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
}

.viewer-img-wrapper {
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.viewer-img-wrapper::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.viewer-img-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.viewer-img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.2s ease;
  transform-origin: center center;
}

.viewer-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #1c2228;
}

.viewer-toolbar__left,
.viewer-toolbar__right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.viewer-toolbar__btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 18px;
}
.viewer-toolbar__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.viewer-toolbar__btn:disabled {
  cursor: default;
}

.viewer-toolbar__counter {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 8px;
  min-width: 40px;
  text-align: center;
}

.padding-top {
  padding-top: 70px;
}
@media (min-width: 992px) {
  .padding-top {
    padding-top: 120px;
  }
}

.padding-bottom {
  padding-bottom: 70px;
}
@media (min-width: 992px) {
  .padding-bottom {
    padding-bottom: 120px;
  }
}

.banner-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 571px;
  border-radius: 38px;
  background: #161c24;
  margin-top: 70px;
  border: 0.04rem solid rgb(17, 42, 63);
  padding: 48px;
}
@media (min-width: 992px) {
  .banner-container {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 100px;
  }
}
.banner-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  padding-bottom: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, #5FE2FF 60deg, transparent 120deg);
  animation: border-spin 10s linear infinite;
  z-index: 0;
}
.banner-container::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  border-radius: 36.5px;
  background: #1b2129;
  z-index: 1;
}
.banner-container > * {
  position: relative;
  z-index: 2;
}

.banner-img {
  opacity: 0;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  animation: img-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards, img-float 4s ease-in-out infinite;
}

.banner-img--1 {
  animation-delay: 0.2s, 1.2s;
  animation-duration: 0.9s, 4.2s;
}

.banner-img--2 {
  animation-delay: 0.45s, 1.45s;
  animation-duration: 0.9s, 4.8s;
}

.banner-img--3 {
  animation-delay: 0.7s, 1.7s;
  animation-duration: 0.9s, 3.8s;
}

.bg-features {
  background-image: url(../img/bg-features.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  height: auto;
  background-attachment: fixed;
}

.feature-box {
  width: 100%;
  height: 100%;
  min-height: 191px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.feature-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  padding-bottom: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, #5FE2FF 60deg, transparent 120deg);
  animation: border-spin 10s linear infinite;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-box::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 19px;
  background: #262f3a;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-box:hover {
  border-color: transparent;
  cursor: pointer;
}
.feature-box:hover::before, .feature-box:hover::after {
  opacity: 1;
}
.feature-box > * {
  position: relative;
  z-index: 2;
}
.feature-box h3 {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  display: flex;
  padding-top: 16px;
  padding-bottom: 12px;
}
.feature-box p {
  font-size: 16px;
  color: var(--white);
  opacity: 0.6;
}

.center-image {
  background-position: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
}

.number-circle {
  display: flex;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 160px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(23px);
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
@media (min-width: 992px) {
  .number-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 16px;
  }
}

.content-block {
  flex: 1;
}
.content-block strong {
  font-size: 14px;
  color: var(--white);
}
@media (min-width: 992px) {
  .content-block strong {
    font-size: 16px;
  }
}
.content-block p {
  font-size: 13px;
}
@media (min-width: 992px) {
  .content-block p {
    font-size: 14px;
  }
}

.blur-back {
  position: absolute;
  z-index: -1;
  top: -130px;
}

.active-list {
  padding: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.0645) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 16px 0px 16px 0px;
  transition: all 0.4s ease;
}
@media (min-width: 992px) {
  .active-list {
    padding: 24px;
    border-radius: 16px 0px 16px 0px;
  }
}
.active-list .active {
  background-color: #5FE2FF;
  color: #081C3F;
  transition: all 0.4s ease;
}

.step-images {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  margin-bottom: 32px;
  overflow: hidden;
}
@media (min-width: 767px) {
  .step-images {
    aspect-ratio: 4/5;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .step-images {
    aspect-ratio: 5/5;
    margin-bottom: 0;
  }
}

.step-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 16px;
  will-change: transform, opacity;
}
.step-img.active {
  opacity: 1;
  transform: translateX(0);
}
.step-img.exit {
  opacity: 0;
  transform: translateX(-40px);
}

.step {
  transition: all 0.35s ease;
  position: relative;
  flex-wrap: wrap;
  margin-bottom: 16px !important;
}
@media (min-width: 992px) {
  .step {
    margin-bottom: 48px !important;
  }
}

.step-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 992px) {
  .step-progress {
    border-radius: 0 0 20px 20px;
  }
}

.active-list .step-progress {
  opacity: 1;
}

.step-progress__fill {
  height: 100%;
  width: 0%;
  background: #5FE2FF;
  border-radius: 2px;
}

.how-it-works-row {
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .how-it-works-row {
    flex-direction: row;
  }
}

.box-testimonials {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 20px;
  min-width: 280px;
  width: 280px;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .box-testimonials {
    min-width: auto;
    width: calc(20vw - 24px);
  }
}
.box-testimonials .head {
  display: flex;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 160px;
  background-color: #fff;
}
.box-testimonials .head img {
  width: 100%;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
.box-testimonials h3 {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}
.box-testimonials span {
  font-size: 14px;
  color: var(--white);
  opacity: 0.6;
}

.testimonial-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: -moz-max-content;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.testimonial-track:hover {
  animation-play-state: paused;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media (min-width: 992px) {
  .faq-list {
    width: 70%;
  }
}

.faq-item {
  display: flex;
  flex-direction: column;
  position: relative;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  padding-bottom: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, #5FE2FF 60deg, transparent 120deg);
  animation: border-spin 10s linear infinite;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faq-item::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  background: #262f3a;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faq-item.open {
  border: 1px solid rgba(255, 255, 255, 0.11);
}
.faq-item.open::before, .faq-item.open::after {
  opacity: 1;
}
.faq-item > * {
  position: relative;
  z-index: 2;
}
.faq-item h3 {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}
@media (min-width: 992px) {
  .faq-item h3 {
    font-size: 18px;
  }
}
.faq-item i {
  color: var(--white);
  font-size: 24px;
  transition: transform 0.3s ease;
}
.faq-item.open i {
  transform: rotate(180deg);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 30px;
}
.faq-answer p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}
@media (min-width: 992px) {
  .faq-answer p {
    font-size: 15px;
  }
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 30px 24px;
}

footer {
  background-image: url(../img/footer-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: auto;
}
footer h4 {
  font-weight: 500;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 0;
}
footer a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover {
  color: #5FE2FF;
}
footer .footer-brand {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  footer .footer-brand {
    margin-bottom: 0;
  }
}
footer .footer-links {
  margin-top: 0;
}
@media (min-width: 992px) {
  footer .footer-links {
    margin-top: 0;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
@media (min-width: 992px) {
  .footer-bottom {
    padding: 48px 0;
  }
}

.footer-copyright {
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .footer-copyright {
    text-align: left;
    margin-bottom: 0;
  }
}

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}
@media (min-width: 992px) {
  .footer-social {
    justify-content: flex-end;
  }
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0px 2px 6px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.footer-social a i {
  font-size: 16px;
  color: var(--white);
}

.form-control:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.form-label {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  margin-bottom: 8px;
}

.custom-input {
  box-sizing: border-box;
  width: 100%;
  height: 62px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0px 16px;
}

.custom-input i {
  color: #fff;
  font-size: 22px;
}

.custom-input .form-control {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #fff;
  font-size: 14px;
  padding: 0px;
  width: 100%;
  height: 100%;
}

.otp .custom-input {
  padding: 0px;
  width: auto;
  height: auto;
}
.otp .custom-input .form-control {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #fff;
  font-size: 14px;
  padding: 0px;
  width: 44px;
  height: 44px;
  text-align: center;
}
@media (min-width: 992px) {
  .otp .custom-input .form-control {
    width: 62px;
    height: 62px;
  }
}

.custom-input .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.custom-input .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.upload-content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 36px 24px;
  width: 100%;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px dotted rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.upload-content i {
  font-size: 28px;
  margin-bottom: 20px;
}

.upload-content h4 {
  font-size: 14px;
  font-weight: 500;
}

.upload-content span {
  text-decoration: underline;
}

.upload-content p {
  font-size: 14px;
  opacity: 0.9;
}

.captcha-text {
  text-align: center;
  color: #fff;
  font-size: 10px;
}

.share-btn {
  width: 100%;
  max-width: 300px;
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.form {
  max-width: 600px;
  margin: 0px auto;
}

.custom-input:focus-within {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 8px 24px rgba(255, 255, 255, 0.05);
}

.custom-checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 8px 4px;
}
.custom-checkbox-group input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox-group .checkbox-box {
  height: 24px;
  width: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.custom-checkbox-group .checkbox-box i {
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.custom-checkbox-group:hover .checkbox-box {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}
.custom-checkbox-group input[type=checkbox]:focus-visible ~ .checkbox-box {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}
.custom-checkbox-group input[type=checkbox]:checked ~ .checkbox-box {
  background: var(--color-primary, #081C3F);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(8, 28, 63, 0.5);
}
.custom-checkbox-group input[type=checkbox]:checked ~ .checkbox-box i {
  opacity: 1;
  transform: scale(1);
}
.custom-checkbox-group .checkbox-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.4;
}
.custom-checkbox-group .checkbox-text a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.custom-checkbox-group .checkbox-text a:hover {
  color: rgba(255, 255, 255, 0.8);
}

@keyframes border-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes text-shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes word-fade-up {
  0% {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes cursor-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes img-enter {
  0% {
    opacity: 0;
    transform: translateY(48px) scale(0.93);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes img-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}
.scroll-fade--d1 {
  transition-delay: 0.1s;
}
.scroll-fade--d2 {
  transition-delay: 0.2s;
}
.scroll-fade--d3 {
  transition-delay: 0.3s;
}
.scroll-fade--d4 {
  transition-delay: 0.4s;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}
.row.g-0 {
  margin-right: 0;
  margin-left: 0;
}
.row.g-0 > [class*=col-],
.row.g-0 > .col {
  padding-right: 0;
  padding-left: 0;
}

.col, .col-auto, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xxl, .col-xxl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12 {
  position: relative;
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

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

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

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

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

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

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

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

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

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

.offset-0 {
  margin-left: 0%;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0%;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-md-0 {
    margin-left: 0%;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0%;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0%;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0%;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

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

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

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

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

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

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

@media (min-width: 576px) {
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
@media (min-width: 768px) {
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
@media (min-width: 992px) {
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
@media (min-width: 1200px) {
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
@media (min-width: 1400px) {
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
.d-flex {
  display: flex !important;
}

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

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

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

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

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

.flex-fill {
  flex: 1 1 auto !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;
}

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

@media (min-width: 576px) {
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .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;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !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;
  }
  .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;
  }
}
@media (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .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;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !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;
  }
  .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;
  }
}
@media (min-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .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;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !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;
  }
  .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;
  }
}
@media (min-width: 1200px) {
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .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;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !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;
  }
  .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;
  }
}
@media (min-width: 1400px) {
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .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;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !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;
  }
  .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;
  }
}
/* =========================
   BASE (xs)
========================= */
.d-none {
  display: none !important;
}

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

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

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

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

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

/* =========================
   SM ≥ 576px
========================= */
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
/* =========================
   MD ≥ 768px
========================= */
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
/* =========================
   LG ≥ 992px
========================= */
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
/* =========================
   XL ≥ 1200px
========================= */
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
/* =========================
   XXL ≥ 1400px
========================= */
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
.w-25 {
  width: 25% !important;
}

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

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

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

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

@media (min-width: 576px) {
  .w-sm-25 {
    width: 25% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-75 {
    width: 75% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
  .w-sm-auto {
    width: auto !important;
  }
}
@media (min-width: 768px) {
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .w-md-auto {
    width: auto !important;
  }
}
@media (min-width: 992px) {
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
  .w-lg-auto {
    width: auto !important;
  }
}
@media (min-width: 1200px) {
  .w-xl-25 {
    width: 25% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
  .w-xl-auto {
    width: auto !important;
  }
}
@media (min-width: 1400px) {
  .w-xxl-25 {
    width: 25% !important;
  }
  .w-xxl-50 {
    width: 50% !important;
  }
  .w-xxl-75 {
    width: 75% !important;
  }
  .w-xxl-100 {
    width: 100% !important;
  }
  .w-xxl-auto {
    width: auto !important;
  }
}
.m-0 {
  margin: 0px !important;
}

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

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

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

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

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

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

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

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

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

.ml-0 {
  margin-left: 0px !important;
}

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

.mr-0 {
  margin-right: 0px !important;
}

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

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

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

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

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

.m-4 {
  margin: 4px !important;
}

.p-4 {
  padding: 4px !important;
}

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

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

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

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

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

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

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

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

.ml-4 {
  margin-left: 4px !important;
}

.pl-4 {
  padding-left: 4px !important;
}

.mr-4 {
  margin-right: 4px !important;
}

.pr-4 {
  padding-right: 4px !important;
}

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

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

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

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

.m-8 {
  margin: 8px !important;
}

.p-8 {
  padding: 8px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.ms-8 {
  margin-left: 8px !important;
}

.ps-8 {
  padding-left: 8px !important;
}

.me-8 {
  margin-right: 8px !important;
}

.pe-8 {
  padding-right: 8px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.pl-8 {
  padding-left: 8px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.pr-8 {
  padding-right: 8px !important;
}

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

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

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

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

.m-16 {
  margin: 16px !important;
}

.p-16 {
  padding: 16px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.ms-16 {
  margin-left: 16px !important;
}

.ps-16 {
  padding-left: 16px !important;
}

.me-16 {
  margin-right: 16px !important;
}

.pe-16 {
  padding-right: 16px !important;
}

.ml-16 {
  margin-left: 16px !important;
}

.pl-16 {
  padding-left: 16px !important;
}

.mr-16 {
  margin-right: 16px !important;
}

.pr-16 {
  padding-right: 16px !important;
}

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

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

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

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

.m-24 {
  margin: 24px !important;
}

.p-24 {
  padding: 24px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.pt-24 {
  padding-top: 24px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.pb-24 {
  padding-bottom: 24px !important;
}

.ms-24 {
  margin-left: 24px !important;
}

.ps-24 {
  padding-left: 24px !important;
}

.me-24 {
  margin-right: 24px !important;
}

.pe-24 {
  padding-right: 24px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.pl-24 {
  padding-left: 24px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

.pr-24 {
  padding-right: 24px !important;
}

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

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

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

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

.m-48 {
  margin: 48px !important;
}

.p-48 {
  padding: 48px !important;
}

.mt-48 {
  margin-top: 48px !important;
}

.pt-48 {
  padding-top: 48px !important;
}

.mb-48 {
  margin-bottom: 48px !important;
}

.pb-48 {
  padding-bottom: 48px !important;
}

.ms-48 {
  margin-left: 48px !important;
}

.ps-48 {
  padding-left: 48px !important;
}

.me-48 {
  margin-right: 48px !important;
}

.pe-48 {
  padding-right: 48px !important;
}

.ml-48 {
  margin-left: 48px !important;
}

.pl-48 {
  padding-left: 48px !important;
}

.mr-48 {
  margin-right: 48px !important;
}

.pr-48 {
  padding-right: 48px !important;
}

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

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

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

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

.m-96 {
  margin: 96px !important;
}

.p-96 {
  padding: 96px !important;
}

.mt-96 {
  margin-top: 96px !important;
}

.pt-96 {
  padding-top: 96px !important;
}

.mb-96 {
  margin-bottom: 96px !important;
}

.pb-96 {
  padding-bottom: 96px !important;
}

.ms-96 {
  margin-left: 96px !important;
}

.ps-96 {
  padding-left: 96px !important;
}

.me-96 {
  margin-right: 96px !important;
}

.pe-96 {
  padding-right: 96px !important;
}

.ml-96 {
  margin-left: 96px !important;
}

.pl-96 {
  padding-left: 96px !important;
}

.mr-96 {
  margin-right: 96px !important;
}

.pr-96 {
  padding-right: 96px !important;
}

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

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

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

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

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

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

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

.gap-4 {
  gap: 4px !important;
}

.row-gap-4 {
  row-gap: 4px !important;
}

.column-gap-4 {
  -moz-column-gap: 4px !important;
       column-gap: 4px !important;
}

.gap-8 {
  gap: 8px !important;
}

.row-gap-8 {
  row-gap: 8px !important;
}

.column-gap-8 {
  -moz-column-gap: 8px !important;
       column-gap: 8px !important;
}

.gap-16 {
  gap: 16px !important;
}

.row-gap-16 {
  row-gap: 16px !important;
}

.column-gap-16 {
  -moz-column-gap: 16px !important;
       column-gap: 16px !important;
}

.gap-24 {
  gap: 24px !important;
}

.row-gap-24 {
  row-gap: 24px !important;
}

.column-gap-24 {
  -moz-column-gap: 24px !important;
       column-gap: 24px !important;
}

.gap-48 {
  gap: 48px !important;
}

.row-gap-48 {
  row-gap: 48px !important;
}

.column-gap-48 {
  -moz-column-gap: 48px !important;
       column-gap: 48px !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0px !important;
  }
  .p-sm-0 {
    padding: 0px !important;
  }
  .mt-sm-0 {
    margin-top: 0px !important;
  }
  .pt-sm-0 {
    padding-top: 0px !important;
  }
  .mb-sm-0 {
    margin-bottom: 0px !important;
  }
  .pb-sm-0 {
    padding-bottom: 0px !important;
  }
  .ms-sm-0 {
    margin-left: 0px !important;
  }
  .ps-sm-0 {
    padding-left: 0px !important;
  }
  .me-sm-0 {
    margin-right: 0px !important;
  }
  .pe-sm-0 {
    padding-right: 0px !important;
  }
  .ml-sm-0 {
    margin-left: 0px !important;
  }
  .pl-sm-0 {
    padding-left: 0px !important;
  }
  .mr-sm-0 {
    margin-right: 0px !important;
  }
  .pr-sm-0 {
    padding-right: 0px !important;
  }
  .mx-sm-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .px-sm-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .my-sm-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .py-sm-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-sm-4 {
    margin: 4px !important;
  }
  .p-sm-4 {
    padding: 4px !important;
  }
  .mt-sm-4 {
    margin-top: 4px !important;
  }
  .pt-sm-4 {
    padding-top: 4px !important;
  }
  .mb-sm-4 {
    margin-bottom: 4px !important;
  }
  .pb-sm-4 {
    padding-bottom: 4px !important;
  }
  .ms-sm-4 {
    margin-left: 4px !important;
  }
  .ps-sm-4 {
    padding-left: 4px !important;
  }
  .me-sm-4 {
    margin-right: 4px !important;
  }
  .pe-sm-4 {
    padding-right: 4px !important;
  }
  .ml-sm-4 {
    margin-left: 4px !important;
  }
  .pl-sm-4 {
    padding-left: 4px !important;
  }
  .mr-sm-4 {
    margin-right: 4px !important;
  }
  .pr-sm-4 {
    padding-right: 4px !important;
  }
  .mx-sm-4 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .px-sm-4 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .my-sm-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .py-sm-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-sm-8 {
    margin: 8px !important;
  }
  .p-sm-8 {
    padding: 8px !important;
  }
  .mt-sm-8 {
    margin-top: 8px !important;
  }
  .pt-sm-8 {
    padding-top: 8px !important;
  }
  .mb-sm-8 {
    margin-bottom: 8px !important;
  }
  .pb-sm-8 {
    padding-bottom: 8px !important;
  }
  .ms-sm-8 {
    margin-left: 8px !important;
  }
  .ps-sm-8 {
    padding-left: 8px !important;
  }
  .me-sm-8 {
    margin-right: 8px !important;
  }
  .pe-sm-8 {
    padding-right: 8px !important;
  }
  .ml-sm-8 {
    margin-left: 8px !important;
  }
  .pl-sm-8 {
    padding-left: 8px !important;
  }
  .mr-sm-8 {
    margin-right: 8px !important;
  }
  .pr-sm-8 {
    padding-right: 8px !important;
  }
  .mx-sm-8 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .px-sm-8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .my-sm-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .py-sm-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-sm-16 {
    margin: 16px !important;
  }
  .p-sm-16 {
    padding: 16px !important;
  }
  .mt-sm-16 {
    margin-top: 16px !important;
  }
  .pt-sm-16 {
    padding-top: 16px !important;
  }
  .mb-sm-16 {
    margin-bottom: 16px !important;
  }
  .pb-sm-16 {
    padding-bottom: 16px !important;
  }
  .ms-sm-16 {
    margin-left: 16px !important;
  }
  .ps-sm-16 {
    padding-left: 16px !important;
  }
  .me-sm-16 {
    margin-right: 16px !important;
  }
  .pe-sm-16 {
    padding-right: 16px !important;
  }
  .ml-sm-16 {
    margin-left: 16px !important;
  }
  .pl-sm-16 {
    padding-left: 16px !important;
  }
  .mr-sm-16 {
    margin-right: 16px !important;
  }
  .pr-sm-16 {
    padding-right: 16px !important;
  }
  .mx-sm-16 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .px-sm-16 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .my-sm-16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .py-sm-16 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-sm-24 {
    margin: 24px !important;
  }
  .p-sm-24 {
    padding: 24px !important;
  }
  .mt-sm-24 {
    margin-top: 24px !important;
  }
  .pt-sm-24 {
    padding-top: 24px !important;
  }
  .mb-sm-24 {
    margin-bottom: 24px !important;
  }
  .pb-sm-24 {
    padding-bottom: 24px !important;
  }
  .ms-sm-24 {
    margin-left: 24px !important;
  }
  .ps-sm-24 {
    padding-left: 24px !important;
  }
  .me-sm-24 {
    margin-right: 24px !important;
  }
  .pe-sm-24 {
    padding-right: 24px !important;
  }
  .ml-sm-24 {
    margin-left: 24px !important;
  }
  .pl-sm-24 {
    padding-left: 24px !important;
  }
  .mr-sm-24 {
    margin-right: 24px !important;
  }
  .pr-sm-24 {
    padding-right: 24px !important;
  }
  .mx-sm-24 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .px-sm-24 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .my-sm-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .py-sm-24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-sm-48 {
    margin: 48px !important;
  }
  .p-sm-48 {
    padding: 48px !important;
  }
  .mt-sm-48 {
    margin-top: 48px !important;
  }
  .pt-sm-48 {
    padding-top: 48px !important;
  }
  .mb-sm-48 {
    margin-bottom: 48px !important;
  }
  .pb-sm-48 {
    padding-bottom: 48px !important;
  }
  .ms-sm-48 {
    margin-left: 48px !important;
  }
  .ps-sm-48 {
    padding-left: 48px !important;
  }
  .me-sm-48 {
    margin-right: 48px !important;
  }
  .pe-sm-48 {
    padding-right: 48px !important;
  }
  .ml-sm-48 {
    margin-left: 48px !important;
  }
  .pl-sm-48 {
    padding-left: 48px !important;
  }
  .mr-sm-48 {
    margin-right: 48px !important;
  }
  .pr-sm-48 {
    padding-right: 48px !important;
  }
  .mx-sm-48 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .px-sm-48 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .my-sm-48 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .py-sm-48 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-sm-96 {
    margin: 96px !important;
  }
  .p-sm-96 {
    padding: 96px !important;
  }
  .mt-sm-96 {
    margin-top: 96px !important;
  }
  .pt-sm-96 {
    padding-top: 96px !important;
  }
  .mb-sm-96 {
    margin-bottom: 96px !important;
  }
  .pb-sm-96 {
    padding-bottom: 96px !important;
  }
  .ms-sm-96 {
    margin-left: 96px !important;
  }
  .ps-sm-96 {
    padding-left: 96px !important;
  }
  .me-sm-96 {
    margin-right: 96px !important;
  }
  .pe-sm-96 {
    padding-right: 96px !important;
  }
  .ml-sm-96 {
    margin-left: 96px !important;
  }
  .pl-sm-96 {
    padding-left: 96px !important;
  }
  .mr-sm-96 {
    margin-right: 96px !important;
  }
  .pr-sm-96 {
    padding-right: 96px !important;
  }
  .mx-sm-96 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }
  .px-sm-96 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }
  .my-sm-96 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
  .py-sm-96 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
  .gap-sm-0 {
    gap: 0px !important;
  }
  .row-gap-sm-0 {
    row-gap: 0px !important;
  }
  .column-gap-sm-0 {
    -moz-column-gap: 0px !important;
         column-gap: 0px !important;
  }
  .gap-sm-4 {
    gap: 4px !important;
  }
  .row-gap-sm-4 {
    row-gap: 4px !important;
  }
  .column-gap-sm-4 {
    -moz-column-gap: 4px !important;
         column-gap: 4px !important;
  }
  .gap-sm-8 {
    gap: 8px !important;
  }
  .row-gap-sm-8 {
    row-gap: 8px !important;
  }
  .column-gap-sm-8 {
    -moz-column-gap: 8px !important;
         column-gap: 8px !important;
  }
  .gap-sm-16 {
    gap: 16px !important;
  }
  .row-gap-sm-16 {
    row-gap: 16px !important;
  }
  .column-gap-sm-16 {
    -moz-column-gap: 16px !important;
         column-gap: 16px !important;
  }
  .gap-sm-24 {
    gap: 24px !important;
  }
  .row-gap-sm-24 {
    row-gap: 24px !important;
  }
  .column-gap-sm-24 {
    -moz-column-gap: 24px !important;
         column-gap: 24px !important;
  }
  .gap-sm-48 {
    gap: 48px !important;
  }
  .row-gap-sm-48 {
    row-gap: 48px !important;
  }
  .column-gap-sm-48 {
    -moz-column-gap: 48px !important;
         column-gap: 48px !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0px !important;
  }
  .p-md-0 {
    padding: 0px !important;
  }
  .mt-md-0 {
    margin-top: 0px !important;
  }
  .pt-md-0 {
    padding-top: 0px !important;
  }
  .mb-md-0 {
    margin-bottom: 0px !important;
  }
  .pb-md-0 {
    padding-bottom: 0px !important;
  }
  .ms-md-0 {
    margin-left: 0px !important;
  }
  .ps-md-0 {
    padding-left: 0px !important;
  }
  .me-md-0 {
    margin-right: 0px !important;
  }
  .pe-md-0 {
    padding-right: 0px !important;
  }
  .ml-md-0 {
    margin-left: 0px !important;
  }
  .pl-md-0 {
    padding-left: 0px !important;
  }
  .mr-md-0 {
    margin-right: 0px !important;
  }
  .pr-md-0 {
    padding-right: 0px !important;
  }
  .mx-md-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .px-md-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .my-md-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .py-md-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-md-4 {
    margin: 4px !important;
  }
  .p-md-4 {
    padding: 4px !important;
  }
  .mt-md-4 {
    margin-top: 4px !important;
  }
  .pt-md-4 {
    padding-top: 4px !important;
  }
  .mb-md-4 {
    margin-bottom: 4px !important;
  }
  .pb-md-4 {
    padding-bottom: 4px !important;
  }
  .ms-md-4 {
    margin-left: 4px !important;
  }
  .ps-md-4 {
    padding-left: 4px !important;
  }
  .me-md-4 {
    margin-right: 4px !important;
  }
  .pe-md-4 {
    padding-right: 4px !important;
  }
  .ml-md-4 {
    margin-left: 4px !important;
  }
  .pl-md-4 {
    padding-left: 4px !important;
  }
  .mr-md-4 {
    margin-right: 4px !important;
  }
  .pr-md-4 {
    padding-right: 4px !important;
  }
  .mx-md-4 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .px-md-4 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .my-md-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .py-md-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-md-8 {
    margin: 8px !important;
  }
  .p-md-8 {
    padding: 8px !important;
  }
  .mt-md-8 {
    margin-top: 8px !important;
  }
  .pt-md-8 {
    padding-top: 8px !important;
  }
  .mb-md-8 {
    margin-bottom: 8px !important;
  }
  .pb-md-8 {
    padding-bottom: 8px !important;
  }
  .ms-md-8 {
    margin-left: 8px !important;
  }
  .ps-md-8 {
    padding-left: 8px !important;
  }
  .me-md-8 {
    margin-right: 8px !important;
  }
  .pe-md-8 {
    padding-right: 8px !important;
  }
  .ml-md-8 {
    margin-left: 8px !important;
  }
  .pl-md-8 {
    padding-left: 8px !important;
  }
  .mr-md-8 {
    margin-right: 8px !important;
  }
  .pr-md-8 {
    padding-right: 8px !important;
  }
  .mx-md-8 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .px-md-8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .my-md-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .py-md-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-md-16 {
    margin: 16px !important;
  }
  .p-md-16 {
    padding: 16px !important;
  }
  .mt-md-16 {
    margin-top: 16px !important;
  }
  .pt-md-16 {
    padding-top: 16px !important;
  }
  .mb-md-16 {
    margin-bottom: 16px !important;
  }
  .pb-md-16 {
    padding-bottom: 16px !important;
  }
  .ms-md-16 {
    margin-left: 16px !important;
  }
  .ps-md-16 {
    padding-left: 16px !important;
  }
  .me-md-16 {
    margin-right: 16px !important;
  }
  .pe-md-16 {
    padding-right: 16px !important;
  }
  .ml-md-16 {
    margin-left: 16px !important;
  }
  .pl-md-16 {
    padding-left: 16px !important;
  }
  .mr-md-16 {
    margin-right: 16px !important;
  }
  .pr-md-16 {
    padding-right: 16px !important;
  }
  .mx-md-16 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .px-md-16 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .my-md-16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .py-md-16 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-md-24 {
    margin: 24px !important;
  }
  .p-md-24 {
    padding: 24px !important;
  }
  .mt-md-24 {
    margin-top: 24px !important;
  }
  .pt-md-24 {
    padding-top: 24px !important;
  }
  .mb-md-24 {
    margin-bottom: 24px !important;
  }
  .pb-md-24 {
    padding-bottom: 24px !important;
  }
  .ms-md-24 {
    margin-left: 24px !important;
  }
  .ps-md-24 {
    padding-left: 24px !important;
  }
  .me-md-24 {
    margin-right: 24px !important;
  }
  .pe-md-24 {
    padding-right: 24px !important;
  }
  .ml-md-24 {
    margin-left: 24px !important;
  }
  .pl-md-24 {
    padding-left: 24px !important;
  }
  .mr-md-24 {
    margin-right: 24px !important;
  }
  .pr-md-24 {
    padding-right: 24px !important;
  }
  .mx-md-24 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .px-md-24 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .my-md-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .py-md-24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-md-48 {
    margin: 48px !important;
  }
  .p-md-48 {
    padding: 48px !important;
  }
  .mt-md-48 {
    margin-top: 48px !important;
  }
  .pt-md-48 {
    padding-top: 48px !important;
  }
  .mb-md-48 {
    margin-bottom: 48px !important;
  }
  .pb-md-48 {
    padding-bottom: 48px !important;
  }
  .ms-md-48 {
    margin-left: 48px !important;
  }
  .ps-md-48 {
    padding-left: 48px !important;
  }
  .me-md-48 {
    margin-right: 48px !important;
  }
  .pe-md-48 {
    padding-right: 48px !important;
  }
  .ml-md-48 {
    margin-left: 48px !important;
  }
  .pl-md-48 {
    padding-left: 48px !important;
  }
  .mr-md-48 {
    margin-right: 48px !important;
  }
  .pr-md-48 {
    padding-right: 48px !important;
  }
  .mx-md-48 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .px-md-48 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .my-md-48 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .py-md-48 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-md-96 {
    margin: 96px !important;
  }
  .p-md-96 {
    padding: 96px !important;
  }
  .mt-md-96 {
    margin-top: 96px !important;
  }
  .pt-md-96 {
    padding-top: 96px !important;
  }
  .mb-md-96 {
    margin-bottom: 96px !important;
  }
  .pb-md-96 {
    padding-bottom: 96px !important;
  }
  .ms-md-96 {
    margin-left: 96px !important;
  }
  .ps-md-96 {
    padding-left: 96px !important;
  }
  .me-md-96 {
    margin-right: 96px !important;
  }
  .pe-md-96 {
    padding-right: 96px !important;
  }
  .ml-md-96 {
    margin-left: 96px !important;
  }
  .pl-md-96 {
    padding-left: 96px !important;
  }
  .mr-md-96 {
    margin-right: 96px !important;
  }
  .pr-md-96 {
    padding-right: 96px !important;
  }
  .mx-md-96 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }
  .px-md-96 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }
  .my-md-96 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
  .py-md-96 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
  .gap-md-0 {
    gap: 0px !important;
  }
  .row-gap-md-0 {
    row-gap: 0px !important;
  }
  .column-gap-md-0 {
    -moz-column-gap: 0px !important;
         column-gap: 0px !important;
  }
  .gap-md-4 {
    gap: 4px !important;
  }
  .row-gap-md-4 {
    row-gap: 4px !important;
  }
  .column-gap-md-4 {
    -moz-column-gap: 4px !important;
         column-gap: 4px !important;
  }
  .gap-md-8 {
    gap: 8px !important;
  }
  .row-gap-md-8 {
    row-gap: 8px !important;
  }
  .column-gap-md-8 {
    -moz-column-gap: 8px !important;
         column-gap: 8px !important;
  }
  .gap-md-16 {
    gap: 16px !important;
  }
  .row-gap-md-16 {
    row-gap: 16px !important;
  }
  .column-gap-md-16 {
    -moz-column-gap: 16px !important;
         column-gap: 16px !important;
  }
  .gap-md-24 {
    gap: 24px !important;
  }
  .row-gap-md-24 {
    row-gap: 24px !important;
  }
  .column-gap-md-24 {
    -moz-column-gap: 24px !important;
         column-gap: 24px !important;
  }
  .gap-md-48 {
    gap: 48px !important;
  }
  .row-gap-md-48 {
    row-gap: 48px !important;
  }
  .column-gap-md-48 {
    -moz-column-gap: 48px !important;
         column-gap: 48px !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0px !important;
  }
  .p-lg-0 {
    padding: 0px !important;
  }
  .mt-lg-0 {
    margin-top: 0px !important;
  }
  .pt-lg-0 {
    padding-top: 0px !important;
  }
  .mb-lg-0 {
    margin-bottom: 0px !important;
  }
  .pb-lg-0 {
    padding-bottom: 0px !important;
  }
  .ms-lg-0 {
    margin-left: 0px !important;
  }
  .ps-lg-0 {
    padding-left: 0px !important;
  }
  .me-lg-0 {
    margin-right: 0px !important;
  }
  .pe-lg-0 {
    padding-right: 0px !important;
  }
  .ml-lg-0 {
    margin-left: 0px !important;
  }
  .pl-lg-0 {
    padding-left: 0px !important;
  }
  .mr-lg-0 {
    margin-right: 0px !important;
  }
  .pr-lg-0 {
    padding-right: 0px !important;
  }
  .mx-lg-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .px-lg-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .my-lg-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .py-lg-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-lg-4 {
    margin: 4px !important;
  }
  .p-lg-4 {
    padding: 4px !important;
  }
  .mt-lg-4 {
    margin-top: 4px !important;
  }
  .pt-lg-4 {
    padding-top: 4px !important;
  }
  .mb-lg-4 {
    margin-bottom: 4px !important;
  }
  .pb-lg-4 {
    padding-bottom: 4px !important;
  }
  .ms-lg-4 {
    margin-left: 4px !important;
  }
  .ps-lg-4 {
    padding-left: 4px !important;
  }
  .me-lg-4 {
    margin-right: 4px !important;
  }
  .pe-lg-4 {
    padding-right: 4px !important;
  }
  .ml-lg-4 {
    margin-left: 4px !important;
  }
  .pl-lg-4 {
    padding-left: 4px !important;
  }
  .mr-lg-4 {
    margin-right: 4px !important;
  }
  .pr-lg-4 {
    padding-right: 4px !important;
  }
  .mx-lg-4 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .px-lg-4 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .my-lg-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .py-lg-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-lg-8 {
    margin: 8px !important;
  }
  .p-lg-8 {
    padding: 8px !important;
  }
  .mt-lg-8 {
    margin-top: 8px !important;
  }
  .pt-lg-8 {
    padding-top: 8px !important;
  }
  .mb-lg-8 {
    margin-bottom: 8px !important;
  }
  .pb-lg-8 {
    padding-bottom: 8px !important;
  }
  .ms-lg-8 {
    margin-left: 8px !important;
  }
  .ps-lg-8 {
    padding-left: 8px !important;
  }
  .me-lg-8 {
    margin-right: 8px !important;
  }
  .pe-lg-8 {
    padding-right: 8px !important;
  }
  .ml-lg-8 {
    margin-left: 8px !important;
  }
  .pl-lg-8 {
    padding-left: 8px !important;
  }
  .mr-lg-8 {
    margin-right: 8px !important;
  }
  .pr-lg-8 {
    padding-right: 8px !important;
  }
  .mx-lg-8 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .px-lg-8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .my-lg-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .py-lg-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-lg-16 {
    margin: 16px !important;
  }
  .p-lg-16 {
    padding: 16px !important;
  }
  .mt-lg-16 {
    margin-top: 16px !important;
  }
  .pt-lg-16 {
    padding-top: 16px !important;
  }
  .mb-lg-16 {
    margin-bottom: 16px !important;
  }
  .pb-lg-16 {
    padding-bottom: 16px !important;
  }
  .ms-lg-16 {
    margin-left: 16px !important;
  }
  .ps-lg-16 {
    padding-left: 16px !important;
  }
  .me-lg-16 {
    margin-right: 16px !important;
  }
  .pe-lg-16 {
    padding-right: 16px !important;
  }
  .ml-lg-16 {
    margin-left: 16px !important;
  }
  .pl-lg-16 {
    padding-left: 16px !important;
  }
  .mr-lg-16 {
    margin-right: 16px !important;
  }
  .pr-lg-16 {
    padding-right: 16px !important;
  }
  .mx-lg-16 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .px-lg-16 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .my-lg-16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .py-lg-16 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-lg-24 {
    margin: 24px !important;
  }
  .p-lg-24 {
    padding: 24px !important;
  }
  .mt-lg-24 {
    margin-top: 24px !important;
  }
  .pt-lg-24 {
    padding-top: 24px !important;
  }
  .mb-lg-24 {
    margin-bottom: 24px !important;
  }
  .pb-lg-24 {
    padding-bottom: 24px !important;
  }
  .ms-lg-24 {
    margin-left: 24px !important;
  }
  .ps-lg-24 {
    padding-left: 24px !important;
  }
  .me-lg-24 {
    margin-right: 24px !important;
  }
  .pe-lg-24 {
    padding-right: 24px !important;
  }
  .ml-lg-24 {
    margin-left: 24px !important;
  }
  .pl-lg-24 {
    padding-left: 24px !important;
  }
  .mr-lg-24 {
    margin-right: 24px !important;
  }
  .pr-lg-24 {
    padding-right: 24px !important;
  }
  .mx-lg-24 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .px-lg-24 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .my-lg-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .py-lg-24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-lg-48 {
    margin: 48px !important;
  }
  .p-lg-48 {
    padding: 48px !important;
  }
  .mt-lg-48 {
    margin-top: 48px !important;
  }
  .pt-lg-48 {
    padding-top: 48px !important;
  }
  .mb-lg-48 {
    margin-bottom: 48px !important;
  }
  .pb-lg-48 {
    padding-bottom: 48px !important;
  }
  .ms-lg-48 {
    margin-left: 48px !important;
  }
  .ps-lg-48 {
    padding-left: 48px !important;
  }
  .me-lg-48 {
    margin-right: 48px !important;
  }
  .pe-lg-48 {
    padding-right: 48px !important;
  }
  .ml-lg-48 {
    margin-left: 48px !important;
  }
  .pl-lg-48 {
    padding-left: 48px !important;
  }
  .mr-lg-48 {
    margin-right: 48px !important;
  }
  .pr-lg-48 {
    padding-right: 48px !important;
  }
  .mx-lg-48 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .px-lg-48 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .my-lg-48 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .py-lg-48 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-lg-96 {
    margin: 96px !important;
  }
  .p-lg-96 {
    padding: 96px !important;
  }
  .mt-lg-96 {
    margin-top: 96px !important;
  }
  .pt-lg-96 {
    padding-top: 96px !important;
  }
  .mb-lg-96 {
    margin-bottom: 96px !important;
  }
  .pb-lg-96 {
    padding-bottom: 96px !important;
  }
  .ms-lg-96 {
    margin-left: 96px !important;
  }
  .ps-lg-96 {
    padding-left: 96px !important;
  }
  .me-lg-96 {
    margin-right: 96px !important;
  }
  .pe-lg-96 {
    padding-right: 96px !important;
  }
  .ml-lg-96 {
    margin-left: 96px !important;
  }
  .pl-lg-96 {
    padding-left: 96px !important;
  }
  .mr-lg-96 {
    margin-right: 96px !important;
  }
  .pr-lg-96 {
    padding-right: 96px !important;
  }
  .mx-lg-96 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }
  .px-lg-96 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }
  .my-lg-96 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
  .py-lg-96 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
  .gap-lg-0 {
    gap: 0px !important;
  }
  .row-gap-lg-0 {
    row-gap: 0px !important;
  }
  .column-gap-lg-0 {
    -moz-column-gap: 0px !important;
         column-gap: 0px !important;
  }
  .gap-lg-4 {
    gap: 4px !important;
  }
  .row-gap-lg-4 {
    row-gap: 4px !important;
  }
  .column-gap-lg-4 {
    -moz-column-gap: 4px !important;
         column-gap: 4px !important;
  }
  .gap-lg-8 {
    gap: 8px !important;
  }
  .row-gap-lg-8 {
    row-gap: 8px !important;
  }
  .column-gap-lg-8 {
    -moz-column-gap: 8px !important;
         column-gap: 8px !important;
  }
  .gap-lg-16 {
    gap: 16px !important;
  }
  .row-gap-lg-16 {
    row-gap: 16px !important;
  }
  .column-gap-lg-16 {
    -moz-column-gap: 16px !important;
         column-gap: 16px !important;
  }
  .gap-lg-24 {
    gap: 24px !important;
  }
  .row-gap-lg-24 {
    row-gap: 24px !important;
  }
  .column-gap-lg-24 {
    -moz-column-gap: 24px !important;
         column-gap: 24px !important;
  }
  .gap-lg-48 {
    gap: 48px !important;
  }
  .row-gap-lg-48 {
    row-gap: 48px !important;
  }
  .column-gap-lg-48 {
    -moz-column-gap: 48px !important;
         column-gap: 48px !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0px !important;
  }
  .p-xl-0 {
    padding: 0px !important;
  }
  .mt-xl-0 {
    margin-top: 0px !important;
  }
  .pt-xl-0 {
    padding-top: 0px !important;
  }
  .mb-xl-0 {
    margin-bottom: 0px !important;
  }
  .pb-xl-0 {
    padding-bottom: 0px !important;
  }
  .ms-xl-0 {
    margin-left: 0px !important;
  }
  .ps-xl-0 {
    padding-left: 0px !important;
  }
  .me-xl-0 {
    margin-right: 0px !important;
  }
  .pe-xl-0 {
    padding-right: 0px !important;
  }
  .ml-xl-0 {
    margin-left: 0px !important;
  }
  .pl-xl-0 {
    padding-left: 0px !important;
  }
  .mr-xl-0 {
    margin-right: 0px !important;
  }
  .pr-xl-0 {
    padding-right: 0px !important;
  }
  .mx-xl-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .px-xl-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .my-xl-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .py-xl-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-xl-4 {
    margin: 4px !important;
  }
  .p-xl-4 {
    padding: 4px !important;
  }
  .mt-xl-4 {
    margin-top: 4px !important;
  }
  .pt-xl-4 {
    padding-top: 4px !important;
  }
  .mb-xl-4 {
    margin-bottom: 4px !important;
  }
  .pb-xl-4 {
    padding-bottom: 4px !important;
  }
  .ms-xl-4 {
    margin-left: 4px !important;
  }
  .ps-xl-4 {
    padding-left: 4px !important;
  }
  .me-xl-4 {
    margin-right: 4px !important;
  }
  .pe-xl-4 {
    padding-right: 4px !important;
  }
  .ml-xl-4 {
    margin-left: 4px !important;
  }
  .pl-xl-4 {
    padding-left: 4px !important;
  }
  .mr-xl-4 {
    margin-right: 4px !important;
  }
  .pr-xl-4 {
    padding-right: 4px !important;
  }
  .mx-xl-4 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .px-xl-4 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .my-xl-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .py-xl-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-xl-8 {
    margin: 8px !important;
  }
  .p-xl-8 {
    padding: 8px !important;
  }
  .mt-xl-8 {
    margin-top: 8px !important;
  }
  .pt-xl-8 {
    padding-top: 8px !important;
  }
  .mb-xl-8 {
    margin-bottom: 8px !important;
  }
  .pb-xl-8 {
    padding-bottom: 8px !important;
  }
  .ms-xl-8 {
    margin-left: 8px !important;
  }
  .ps-xl-8 {
    padding-left: 8px !important;
  }
  .me-xl-8 {
    margin-right: 8px !important;
  }
  .pe-xl-8 {
    padding-right: 8px !important;
  }
  .ml-xl-8 {
    margin-left: 8px !important;
  }
  .pl-xl-8 {
    padding-left: 8px !important;
  }
  .mr-xl-8 {
    margin-right: 8px !important;
  }
  .pr-xl-8 {
    padding-right: 8px !important;
  }
  .mx-xl-8 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .px-xl-8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .my-xl-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .py-xl-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-xl-16 {
    margin: 16px !important;
  }
  .p-xl-16 {
    padding: 16px !important;
  }
  .mt-xl-16 {
    margin-top: 16px !important;
  }
  .pt-xl-16 {
    padding-top: 16px !important;
  }
  .mb-xl-16 {
    margin-bottom: 16px !important;
  }
  .pb-xl-16 {
    padding-bottom: 16px !important;
  }
  .ms-xl-16 {
    margin-left: 16px !important;
  }
  .ps-xl-16 {
    padding-left: 16px !important;
  }
  .me-xl-16 {
    margin-right: 16px !important;
  }
  .pe-xl-16 {
    padding-right: 16px !important;
  }
  .ml-xl-16 {
    margin-left: 16px !important;
  }
  .pl-xl-16 {
    padding-left: 16px !important;
  }
  .mr-xl-16 {
    margin-right: 16px !important;
  }
  .pr-xl-16 {
    padding-right: 16px !important;
  }
  .mx-xl-16 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .px-xl-16 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .my-xl-16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .py-xl-16 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-xl-24 {
    margin: 24px !important;
  }
  .p-xl-24 {
    padding: 24px !important;
  }
  .mt-xl-24 {
    margin-top: 24px !important;
  }
  .pt-xl-24 {
    padding-top: 24px !important;
  }
  .mb-xl-24 {
    margin-bottom: 24px !important;
  }
  .pb-xl-24 {
    padding-bottom: 24px !important;
  }
  .ms-xl-24 {
    margin-left: 24px !important;
  }
  .ps-xl-24 {
    padding-left: 24px !important;
  }
  .me-xl-24 {
    margin-right: 24px !important;
  }
  .pe-xl-24 {
    padding-right: 24px !important;
  }
  .ml-xl-24 {
    margin-left: 24px !important;
  }
  .pl-xl-24 {
    padding-left: 24px !important;
  }
  .mr-xl-24 {
    margin-right: 24px !important;
  }
  .pr-xl-24 {
    padding-right: 24px !important;
  }
  .mx-xl-24 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .px-xl-24 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .my-xl-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .py-xl-24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-xl-48 {
    margin: 48px !important;
  }
  .p-xl-48 {
    padding: 48px !important;
  }
  .mt-xl-48 {
    margin-top: 48px !important;
  }
  .pt-xl-48 {
    padding-top: 48px !important;
  }
  .mb-xl-48 {
    margin-bottom: 48px !important;
  }
  .pb-xl-48 {
    padding-bottom: 48px !important;
  }
  .ms-xl-48 {
    margin-left: 48px !important;
  }
  .ps-xl-48 {
    padding-left: 48px !important;
  }
  .me-xl-48 {
    margin-right: 48px !important;
  }
  .pe-xl-48 {
    padding-right: 48px !important;
  }
  .ml-xl-48 {
    margin-left: 48px !important;
  }
  .pl-xl-48 {
    padding-left: 48px !important;
  }
  .mr-xl-48 {
    margin-right: 48px !important;
  }
  .pr-xl-48 {
    padding-right: 48px !important;
  }
  .mx-xl-48 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .px-xl-48 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .my-xl-48 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .py-xl-48 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-xl-96 {
    margin: 96px !important;
  }
  .p-xl-96 {
    padding: 96px !important;
  }
  .mt-xl-96 {
    margin-top: 96px !important;
  }
  .pt-xl-96 {
    padding-top: 96px !important;
  }
  .mb-xl-96 {
    margin-bottom: 96px !important;
  }
  .pb-xl-96 {
    padding-bottom: 96px !important;
  }
  .ms-xl-96 {
    margin-left: 96px !important;
  }
  .ps-xl-96 {
    padding-left: 96px !important;
  }
  .me-xl-96 {
    margin-right: 96px !important;
  }
  .pe-xl-96 {
    padding-right: 96px !important;
  }
  .ml-xl-96 {
    margin-left: 96px !important;
  }
  .pl-xl-96 {
    padding-left: 96px !important;
  }
  .mr-xl-96 {
    margin-right: 96px !important;
  }
  .pr-xl-96 {
    padding-right: 96px !important;
  }
  .mx-xl-96 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }
  .px-xl-96 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }
  .my-xl-96 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
  .py-xl-96 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
  .gap-xl-0 {
    gap: 0px !important;
  }
  .row-gap-xl-0 {
    row-gap: 0px !important;
  }
  .column-gap-xl-0 {
    -moz-column-gap: 0px !important;
         column-gap: 0px !important;
  }
  .gap-xl-4 {
    gap: 4px !important;
  }
  .row-gap-xl-4 {
    row-gap: 4px !important;
  }
  .column-gap-xl-4 {
    -moz-column-gap: 4px !important;
         column-gap: 4px !important;
  }
  .gap-xl-8 {
    gap: 8px !important;
  }
  .row-gap-xl-8 {
    row-gap: 8px !important;
  }
  .column-gap-xl-8 {
    -moz-column-gap: 8px !important;
         column-gap: 8px !important;
  }
  .gap-xl-16 {
    gap: 16px !important;
  }
  .row-gap-xl-16 {
    row-gap: 16px !important;
  }
  .column-gap-xl-16 {
    -moz-column-gap: 16px !important;
         column-gap: 16px !important;
  }
  .gap-xl-24 {
    gap: 24px !important;
  }
  .row-gap-xl-24 {
    row-gap: 24px !important;
  }
  .column-gap-xl-24 {
    -moz-column-gap: 24px !important;
         column-gap: 24px !important;
  }
  .gap-xl-48 {
    gap: 48px !important;
  }
  .row-gap-xl-48 {
    row-gap: 48px !important;
  }
  .column-gap-xl-48 {
    -moz-column-gap: 48px !important;
         column-gap: 48px !important;
  }
}
@media (min-width: 1400px) {
  .m-xxl-0 {
    margin: 0px !important;
  }
  .p-xxl-0 {
    padding: 0px !important;
  }
  .mt-xxl-0 {
    margin-top: 0px !important;
  }
  .pt-xxl-0 {
    padding-top: 0px !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0px !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0px !important;
  }
  .ms-xxl-0 {
    margin-left: 0px !important;
  }
  .ps-xxl-0 {
    padding-left: 0px !important;
  }
  .me-xxl-0 {
    margin-right: 0px !important;
  }
  .pe-xxl-0 {
    padding-right: 0px !important;
  }
  .ml-xxl-0 {
    margin-left: 0px !important;
  }
  .pl-xxl-0 {
    padding-left: 0px !important;
  }
  .mr-xxl-0 {
    margin-right: 0px !important;
  }
  .pr-xxl-0 {
    padding-right: 0px !important;
  }
  .mx-xxl-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .px-xxl-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .my-xxl-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .py-xxl-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-xxl-4 {
    margin: 4px !important;
  }
  .p-xxl-4 {
    padding: 4px !important;
  }
  .mt-xxl-4 {
    margin-top: 4px !important;
  }
  .pt-xxl-4 {
    padding-top: 4px !important;
  }
  .mb-xxl-4 {
    margin-bottom: 4px !important;
  }
  .pb-xxl-4 {
    padding-bottom: 4px !important;
  }
  .ms-xxl-4 {
    margin-left: 4px !important;
  }
  .ps-xxl-4 {
    padding-left: 4px !important;
  }
  .me-xxl-4 {
    margin-right: 4px !important;
  }
  .pe-xxl-4 {
    padding-right: 4px !important;
  }
  .ml-xxl-4 {
    margin-left: 4px !important;
  }
  .pl-xxl-4 {
    padding-left: 4px !important;
  }
  .mr-xxl-4 {
    margin-right: 4px !important;
  }
  .pr-xxl-4 {
    padding-right: 4px !important;
  }
  .mx-xxl-4 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .px-xxl-4 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .my-xxl-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .py-xxl-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-xxl-8 {
    margin: 8px !important;
  }
  .p-xxl-8 {
    padding: 8px !important;
  }
  .mt-xxl-8 {
    margin-top: 8px !important;
  }
  .pt-xxl-8 {
    padding-top: 8px !important;
  }
  .mb-xxl-8 {
    margin-bottom: 8px !important;
  }
  .pb-xxl-8 {
    padding-bottom: 8px !important;
  }
  .ms-xxl-8 {
    margin-left: 8px !important;
  }
  .ps-xxl-8 {
    padding-left: 8px !important;
  }
  .me-xxl-8 {
    margin-right: 8px !important;
  }
  .pe-xxl-8 {
    padding-right: 8px !important;
  }
  .ml-xxl-8 {
    margin-left: 8px !important;
  }
  .pl-xxl-8 {
    padding-left: 8px !important;
  }
  .mr-xxl-8 {
    margin-right: 8px !important;
  }
  .pr-xxl-8 {
    padding-right: 8px !important;
  }
  .mx-xxl-8 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .px-xxl-8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .my-xxl-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .py-xxl-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-xxl-16 {
    margin: 16px !important;
  }
  .p-xxl-16 {
    padding: 16px !important;
  }
  .mt-xxl-16 {
    margin-top: 16px !important;
  }
  .pt-xxl-16 {
    padding-top: 16px !important;
  }
  .mb-xxl-16 {
    margin-bottom: 16px !important;
  }
  .pb-xxl-16 {
    padding-bottom: 16px !important;
  }
  .ms-xxl-16 {
    margin-left: 16px !important;
  }
  .ps-xxl-16 {
    padding-left: 16px !important;
  }
  .me-xxl-16 {
    margin-right: 16px !important;
  }
  .pe-xxl-16 {
    padding-right: 16px !important;
  }
  .ml-xxl-16 {
    margin-left: 16px !important;
  }
  .pl-xxl-16 {
    padding-left: 16px !important;
  }
  .mr-xxl-16 {
    margin-right: 16px !important;
  }
  .pr-xxl-16 {
    padding-right: 16px !important;
  }
  .mx-xxl-16 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .px-xxl-16 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .my-xxl-16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .py-xxl-16 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-xxl-24 {
    margin: 24px !important;
  }
  .p-xxl-24 {
    padding: 24px !important;
  }
  .mt-xxl-24 {
    margin-top: 24px !important;
  }
  .pt-xxl-24 {
    padding-top: 24px !important;
  }
  .mb-xxl-24 {
    margin-bottom: 24px !important;
  }
  .pb-xxl-24 {
    padding-bottom: 24px !important;
  }
  .ms-xxl-24 {
    margin-left: 24px !important;
  }
  .ps-xxl-24 {
    padding-left: 24px !important;
  }
  .me-xxl-24 {
    margin-right: 24px !important;
  }
  .pe-xxl-24 {
    padding-right: 24px !important;
  }
  .ml-xxl-24 {
    margin-left: 24px !important;
  }
  .pl-xxl-24 {
    padding-left: 24px !important;
  }
  .mr-xxl-24 {
    margin-right: 24px !important;
  }
  .pr-xxl-24 {
    padding-right: 24px !important;
  }
  .mx-xxl-24 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .px-xxl-24 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .my-xxl-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .py-xxl-24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-xxl-48 {
    margin: 48px !important;
  }
  .p-xxl-48 {
    padding: 48px !important;
  }
  .mt-xxl-48 {
    margin-top: 48px !important;
  }
  .pt-xxl-48 {
    padding-top: 48px !important;
  }
  .mb-xxl-48 {
    margin-bottom: 48px !important;
  }
  .pb-xxl-48 {
    padding-bottom: 48px !important;
  }
  .ms-xxl-48 {
    margin-left: 48px !important;
  }
  .ps-xxl-48 {
    padding-left: 48px !important;
  }
  .me-xxl-48 {
    margin-right: 48px !important;
  }
  .pe-xxl-48 {
    padding-right: 48px !important;
  }
  .ml-xxl-48 {
    margin-left: 48px !important;
  }
  .pl-xxl-48 {
    padding-left: 48px !important;
  }
  .mr-xxl-48 {
    margin-right: 48px !important;
  }
  .pr-xxl-48 {
    padding-right: 48px !important;
  }
  .mx-xxl-48 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .px-xxl-48 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .my-xxl-48 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .py-xxl-48 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-xxl-96 {
    margin: 96px !important;
  }
  .p-xxl-96 {
    padding: 96px !important;
  }
  .mt-xxl-96 {
    margin-top: 96px !important;
  }
  .pt-xxl-96 {
    padding-top: 96px !important;
  }
  .mb-xxl-96 {
    margin-bottom: 96px !important;
  }
  .pb-xxl-96 {
    padding-bottom: 96px !important;
  }
  .ms-xxl-96 {
    margin-left: 96px !important;
  }
  .ps-xxl-96 {
    padding-left: 96px !important;
  }
  .me-xxl-96 {
    margin-right: 96px !important;
  }
  .pe-xxl-96 {
    padding-right: 96px !important;
  }
  .ml-xxl-96 {
    margin-left: 96px !important;
  }
  .pl-xxl-96 {
    padding-left: 96px !important;
  }
  .mr-xxl-96 {
    margin-right: 96px !important;
  }
  .pr-xxl-96 {
    padding-right: 96px !important;
  }
  .mx-xxl-96 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }
  .px-xxl-96 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }
  .my-xxl-96 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
  .py-xxl-96 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
  .gap-xxl-0 {
    gap: 0px !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0px !important;
  }
  .column-gap-xxl-0 {
    -moz-column-gap: 0px !important;
         column-gap: 0px !important;
  }
  .gap-xxl-4 {
    gap: 4px !important;
  }
  .row-gap-xxl-4 {
    row-gap: 4px !important;
  }
  .column-gap-xxl-4 {
    -moz-column-gap: 4px !important;
         column-gap: 4px !important;
  }
  .gap-xxl-8 {
    gap: 8px !important;
  }
  .row-gap-xxl-8 {
    row-gap: 8px !important;
  }
  .column-gap-xxl-8 {
    -moz-column-gap: 8px !important;
         column-gap: 8px !important;
  }
  .gap-xxl-16 {
    gap: 16px !important;
  }
  .row-gap-xxl-16 {
    row-gap: 16px !important;
  }
  .column-gap-xxl-16 {
    -moz-column-gap: 16px !important;
         column-gap: 16px !important;
  }
  .gap-xxl-24 {
    gap: 24px !important;
  }
  .row-gap-xxl-24 {
    row-gap: 24px !important;
  }
  .column-gap-xxl-24 {
    -moz-column-gap: 24px !important;
         column-gap: 24px !important;
  }
  .gap-xxl-48 {
    gap: 48px !important;
  }
  .row-gap-xxl-48 {
    row-gap: 48px !important;
  }
  .column-gap-xxl-48 {
    -moz-column-gap: 48px !important;
         column-gap: 48px !important;
  }
}
.modal-container {
  padding: 24px;
  width: 100%;
  position: fixed;
  z-index: 10;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-container .modal {
  pointer-events: auto;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  opacity: 0;
}
.modal-container.show {
  opacity: 1;
  visibility: visible;
}
.modal-container.show .modal {
  transform: translateY(0);
  opacity: 1;
}

.modal {
  display: flex;
  max-width: 1024px;
  width: 100%;
  position: relative;
  min-height: 530px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 45px 0 rgba(255, 255, 255, 0.1), 0 27px 80px 18px rgba(0, 0, 0, 0.5);
  border-radius: 28px;
  padding: 24px;
}
@media (min-width: 992px) {
  .modal {
    padding: 32px 48px;
    max-width: 1024px;
  }
}

.modal-heading {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  color: #FFFFFF;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}
@media (min-width: 767px) {
  .modal-heading {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .modal-heading {
    font-size: 32px;
  }
}

.form-group {
  padding-bottom: 16px;
}

.full-screen-modal {
  width: 100vw;
  height: 100%;
  overflow-y: scroll;
  position: fixed;
  z-index: 10;
  top: 0px;
  left: 0px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(23px);
  background-image: url(../img/bg-modal.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.full-screen-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.full-screen-modal ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.full-screen-modal ul li {
  background-image: url(../img/dot.svg);
  background-repeat: no-repeat;
  background-position: left;
  padding-left: 24px;
  display: flex;
}
.full-screen-modal .bt-close {
  top: 20px;
  right: 20px;
}
@media (min-width: 992px) {
  .full-screen-modal .bt-close {
    top: 48px;
    right: 48px;
  }
}

.banner {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  padding-top: 150px;
}
.banner #banner-nodes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.banner .text-animate {
  opacity: 0;
  animation: word-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.15s;
}
.banner .text-animate--shimmer {
  opacity: 0;
  animation: word-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards, text-shimmer 2.4s linear 1.1s 2;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 35%, #a8c7ff 50%, #ffffff 65%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.banner .text-animate--shimmer::after {
  content: "";
  display: none;
}
.banner .text-animate--cursor::after {
  content: "|";
  display: inline-block;
  margin-left: 0.05em;
  animation: cursor-blink 0.85s step-start infinite;
  animation-delay: 1.1s;
  opacity: 0;
}

.bg-shadow {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ── 404 Page ─────────────────────────────────────────────────── */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.page-404-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.page-404-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Ambient glow behind 404 */
.glow-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 226, 255, 0.12) 0%, rgba(95, 226, 255, 0.04) 40%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -60%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -60%) scale(1.15);
  }
}
/* Giant 404 number */
.error-code {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.6) 20%, #5fe2ff 50%, rgba(255, 255, 255, 0.6) 80%, rgba(255, 255, 255, 0.15) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shimmer 4s linear infinite;
  margin-bottom: 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  /* Glitch flicker */
}
.error-code::after {
  content: "404";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(95, 226, 255, 0.3) 50%, transparent 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shimmer 4s linear infinite, glitch-flicker 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glitch-flicker {
  0%, 92%, 94%, 96%, 100% {
    opacity: 0;
    transform: none;
  }
  93% {
    opacity: 0.8;
    transform: translate(-2px, 1px);
  }
  95% {
    opacity: 0.6;
    transform: translate(2px, -1px);
  }
}
/* Card container */
.error-card {
  text-align: center;
  max-width: 560px;
  padding: 0 24px;
}
.error-card h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.error-card p {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* Action buttons */
.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-home {
  height: 54px;
  padding: 0 32px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.btn-home i {
  font-size: 20px;
}
.btn-home--primary {
  background: linear-gradient(135deg, #5fe2ff 0%, #3b82f6 100%);
  box-shadow: 0 4px 24px rgba(95, 226, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-home--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(95, 226, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  opacity: 1;
}
.btn-home--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}
.btn-home--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  opacity: 1;
}

/* Floating decorative elements */
.float-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.float-shape--1 {
  width: 6px;
  height: 6px;
  background: #5fe2ff;
  top: 25%;
  left: 15%;
  animation: float-drift 6s ease-in-out infinite;
  opacity: 0.6;
}
.float-shape--2 {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  top: 35%;
  right: 20%;
  animation: float-drift 8s ease-in-out infinite reverse;
  opacity: 0.5;
}
.float-shape--3 {
  width: 8px;
  height: 8px;
  background: rgba(95, 226, 255, 0.3);
  bottom: 30%;
  left: 25%;
  animation: float-drift 7s ease-in-out infinite 1s;
  opacity: 0.4;
}
.float-shape--4 {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  bottom: 25%;
  right: 15%;
  animation: float-drift 5s ease-in-out infinite 0.5s;
  opacity: 0.6;
}
.float-shape--5 {
  width: 5px;
  height: 5px;
  background: rgba(95, 226, 255, 0.2);
  top: 20%;
  right: 35%;
  animation: float-drift 9s ease-in-out infinite 2s;
  opacity: 0.3;
}

@keyframes float-drift {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(15px, -20px);
  }
  50% {
    transform: translate(-10px, -35px);
  }
  75% {
    transform: translate(20px, -15px);
  }
}
/* Entrance animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up-in 0.8s ease forwards;
}
.fade-up--d1 {
  animation-delay: 0.1s;
}
.fade-up--d2 {
  animation-delay: 0.3s;
}
.fade-up--d3 {
  animation-delay: 0.5s;
}
.fade-up--d4 {
  animation-delay: 0.7s;
}

@keyframes fade-up-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 404 footer (minimal) */
.footer-404 {
  position: relative;
  z-index: 2;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-404 span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-404 a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
  font-size: 13px;
}
.footer-404 a:hover {
  color: #5fe2ff;
  opacity: 1;
}

/* ── Careers Page ──────────────────────────────────────────────── */
/* Thin icon strokes inside feature boxes */
.feature-box > i.ti {
  -webkit-text-stroke: 1px var(--color-bg);
  paint-order: stroke fill;
}

.careers-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media (min-width: 992px) {
  .careers-list {
    width: 70%;
  }
}

.careers-department__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.careers-department__title i {
  font-size: 24px;
  color: #5fe2ff;
}

/* ── Accordion Cards (FAQ-style) ───────────────────────────── */
.careers-item {
  display: flex;
  flex-direction: column;
  position: relative;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  /* Conic gradient border spin (hidden by default) */
}
.careers-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  padding-bottom: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, #5fe2ff 60deg, transparent 120deg);
  animation: border-spin 10s linear infinite;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.careers-item {
  /* Inner fill to create border effect */
}
.careers-item::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  background: #04050e;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.careers-item {
  /* Open state — show animated border */
}
.careers-item.open {
  border: 1px solid rgba(255, 255, 255, 0.11);
}
.careers-item.open::before, .careers-item.open::after {
  opacity: 1;
}
.careers-item {
  /* All direct children above the pseudo-elements */
}
.careers-item > * {
  position: relative;
  z-index: 2;
}
.careers-item {
  /* Title */
}
.careers-item h3 {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}
@media (min-width: 992px) {
  .careers-item h3 {
    font-size: 18px;
  }
}
.careers-item {
  /* Chevron icon */
}
.careers-item > .careers-header > i {
  color: var(--white);
  font-size: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.careers-item.open > .careers-header > i {
  transform: rotate(180deg);
}

/* Clickable header row */
.careers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 16px;
}
.careers-header__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .careers-header__left {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}

/* Collapsible body */
.careers-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 30px;
}
.careers-body p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .careers-body p {
    font-size: 15px;
  }
}

.careers-item.open .careers-body {
  max-height: 400px;
  padding: 0 30px 24px;
}

/* Tags */
.careers-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.careers-tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(95, 226, 255, 0.08);
  border: 1px solid rgba(95, 226, 255, 0.15);
  white-space: nowrap;
}

/* Apply button inside body */
.careers-card__apply {
  height: 42px !important;
  padding: 0 20px !important;
  font-size: 14px !important;
  gap: 8px !important;
  width: -moz-fit-content;
  width: fit-content;
}
.careers-card__apply i {
  font-size: 16px !important;
  transition: transform 0.25s ease;
}
.careers-card__apply:hover i {
  transform: translateX(4px);
}

/* CTA block */
.careers-cta {
  text-align: center;
  padding: 64px 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.11);
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
  /* Animated conic border */
}
.careers-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  padding-bottom: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, #5fe2ff 60deg, transparent 120deg);
  animation: border-spin 10s linear infinite;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.careers-cta {
  /* Inner fill */
}
.careers-cta::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  background: #04050e;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.careers-cta:hover {
  border-color: transparent;
}
.careers-cta:hover::before, .careers-cta:hover::after {
  opacity: 1;
}
.careers-cta > * {
  position: relative;
  z-index: 2;
}
.careers-cta h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .careers-cta h2 {
    font-size: 28px;
  }
}
.careers-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .careers-cta p {
    font-size: 16px;
  }
}

/* ── Legal Pages (Privacy, Terms) ──────────────────────────────── */
.legal-date {
  display: inline-block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.legal-content {
  width: 100%;
}

.legal-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 992px) {
  .legal-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
}
.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.legal-section h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .legal-section h2 {
    font-size: 24px;
  }
}
.legal-section h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-top: 28px;
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .legal-section h3 {
    font-size: 18px;
  }
}
.legal-section p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.legal-section ul li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 8px;
}
.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5fe2ff;
  opacity: 0.6;
}

/* Highlighted feature blocks (security section) */
.legal-highlight {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.legal-highlight__item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease;
}
.legal-highlight__item:hover {
  border-color: rgba(95, 226, 255, 0.2);
}
.legal-highlight__item i {
  font-size: 28px;
  color: #5fe2ff;
  flex-shrink: 0;
  margin-top: 2px;
  -webkit-text-stroke: 1px var(--color-bg);
  paint-order: stroke fill;
}
.legal-highlight__item strong {
  display: block;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}
.legal-highlight__item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Compliance badges */
.legal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.legal-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease;
}
.legal-badge:hover {
  border-color: rgba(95, 226, 255, 0.2);
}
.legal-badge i {
  font-size: 22px;
  color: #5fe2ff;
  -webkit-text-stroke: 1px var(--color-bg);
  paint-order: stroke fill;
}
.legal-badge span {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* Contact block */
.legal-contact {
  margin-top: 20px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.legal-contact p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-contact p:last-child {
  margin-bottom: 0;
}
.legal-contact p i {
  font-size: 18px;
  color: #5fe2ff;
  flex-shrink: 0;
}

/* Inline links */
.legal-link {
  color: #5fe2ff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.legal-link:hover {
  opacity: 0.8;
}

/* ── Contact Page Cards ───────────────────────────────────────── */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease;
  height: 100%;
}
.contact-card:hover {
  border-color: rgba(95, 226, 255, 0.2);
}
.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(95, 226, 255, 0.08);
  border: 1px solid rgba(95, 226, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon i {
  font-size: 22px;
  color: #5fe2ff;
}
.contact-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}
.contact-card a {
  font-size: 14px;
}

/* ── About Page Stats ─────────────────────────────────────────── */
.about-stat {
  text-align: center;
  padding: 32px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.02);
  height: 100%;
}
.about-stat__number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #5fe2ff, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .about-stat__number {
    font-size: 42px;
  }
}
.about-stat__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}/*# sourceMappingURL=style.css.map */