@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primary: #6e86ff;
  --primary-two: #ff367c;
  --secondary: #192024;
  --success: #22c55e;
  --info: #16C7F9;
  --warning: #f97316;
  --danger: #F81F58;
  --light: #e2e8f01f;
  --extra-light: #e2e8f08a;
  --muted: #8094ae;
  --dark: #2c323f;
  --white: #ffffff;
  --bg-white: #fff;
  --body-bg: #000;
  --surface-bg: #fff;
  --sidebar-bg: #fff;
  --display-color: #ffffffde;
  --body-color: #7b7c8c;
  --input-bg: #fff;
  --input-border: #e5e5e5;
  --placeholder-color: #858484;
  --border-color: #e5e5e5;
  --display-font: "Poppins", sans-serif;
  --body-font: "Poppins", sans-serif;
  --font-2xxl: 2rem;
  --font-2xl: 1.75rem;
  --font-xxl: 1.5rem;
  --font-xl: 1.25rem;
  --font-lg: 1.125rem;
  --font-md: 1rem;
  --font-sm: 0.875rem;
  --font-xs: 0.75rem;
  --font-xxs: 0.625rem;
  --display-1: 4.625rem; /* 74px */
  --display-2: 3.625rem; /* 58px */
  --display-3: 1.875rem; /* 30px */
  --display-4: 1.5rem; /* 24px */
  --display-5: 1.25rem; /* 20px */
  --display-6: 1.125rem; /* 18px */
}

@media (max-width: 1199px) {
  :root {
    --display-1: 3.375rem; /* 24px */
    --display-2: 2.625rem; /* 22px */
    --display-3: 1.625rem; /* 20px */
    --display-4: 1.25rem; /* 18px */
    --display-5: 1.125rem; /* 18px */
    --display-6: 1rem; /* 16px */
  }
}
@media (max-width: 575px) {
  :root {
    --display-1: 1.5rem; /* 24px */
    --display-2: 1.375rem; /* 22px */
    --display-3: 1.25rem; /* 20px */
    --display-4: 1.125rem; /* 18px */
    --display-5: 1.125rem; /* 18px */
    --display-6: 1rem; /* 16px */
  }
}
/* === reset css start === */
/* === reset css start === */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--body-bg);
  color: var(--body-color);
  font-family: var(--body-font);
  font-size: 1rem;
  padding: 0;
  margin: 0;
  font-weight: 400;
  position: relative;
  line-height: 1.7;
  overflow-x: hidden;
}

@media (min-width: 576px) {
  body {
    font-size: 1rem;
  }
}
img {
  max-width: 100%;
  height: auto;
  user-select: none;
}

select {
  cursor: pointer;
}

dt {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  clear: both;
  color: inherit;
  opacity: 0.15;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
  font-size: 0.875rem;
}

pre::before, pre::after {
  box-shadow: none !important;
}

pre code {
  max-height: 400px !important;
  overflow-y: auto;
}

pre[class*=language-] > code {
  border-left-color: var(--primary);
  box-shadow: -1px 0 0 0 var(--primary), 0 0 0 1px var(--border-color);
}

address {
  font-style: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  cursor: pointer;
}

*:focus {
  outline: none;
}

button {
  border: none;
}

button:focus {
  outline: none;
}

a {
  text-decoration: none;
  display: inline-block;
  background-color: transparent;
  color: inherit;
}

a, button {
  cursor: revert;
}

a:hover {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

a:hover {
  color: var(--primary);
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

code {
  color: var(--danger);
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.2em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

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

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

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

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

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

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* === reset css end === */
.top-action-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary);
  z-index: 2;
  display: flex;
  flex-flow: column;
  align-items: center;
  color: #fff;
  padding: 10px 6px;
  font-size: 14px;
  border-radius: 99px;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.top-action-btn i {
  font-size: 18px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1224px;
  }
}
/* === reset css end === */
/* === flex css start === */
.item-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === flex css end === */
/* === color css start === */
.text-hover-primary:hover {
  color: var(--primary) !important;
}

.text-hover-primary-two:hover {
  color: var(--primary-two) !important;
}

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

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

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

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

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

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

.text-hover-extra-light:hover {
  color: var(--extra-light) !important;
}

.text-hover-muted:hover {
  color: var(--muted) !important;
}

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

.text-hover-white:hover {
  color: var(--white) !important;
}

.display-color {
  color: var(--display-color) !important;
}

.body-color {
  color: var(--body-color) !important;
}

.text-main,
.text-primary {
  color: var(--primary) !important;
}

.text-main-two {
  color: var(--primary-two) !important;
}

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

/* === color css end === */
/* === bg css start === */
.bg-light-primary {
  background-color: rgba(110, 134, 255, 0.1254901961) !important;
}

.bg-light-primary-two {
  background-color: rgba(255, 54, 124, 0.1254901961) !important;
}

.bg-light-secondary {
  background-color: rgba(25, 32, 36, 0.1254901961) !important;
}

.bg-light-success {
  background-color: rgba(34, 197, 94, 0.1254901961) !important;
}

.bg-light-info {
  background-color: rgba(22, 199, 249, 0.1254901961) !important;
}

.bg-light-warning {
  background-color: rgba(249, 115, 22, 0.1254901961) !important;
}

.bg-light-danger {
  background-color: rgba(248, 31, 88, 0.1254901961) !important;
}

.bg-light-light {
  background-color: #e2e8f01f20 !important;
}

.bg-light-extra-light {
  background-color: #e2e8f08a20 !important;
}

.bg-light-muted {
  background-color: rgba(128, 148, 174, 0.1254901961) !important;
}

.bg-light-dark {
  background-color: rgba(44, 50, 63, 0.1254901961) !important;
}

.bg-light-white {
  background-color: rgba(255, 255, 255, 0.1254901961) !important;
}

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

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

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

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

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

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

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

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

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

.bg-muted {
  background-color: var(--muted) !important;
}

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

.bg-white {
  background-color: var(--white) !important;
}

.surface-bg {
  background-color: var(--surface-bg);
}

.body-bg {
  background-color: var(--body-bg);
}

/* === bg css end === */
/* === shadow css start === */
/* === shadow css end === */
/* === size css start === */
/* === size css end === */
/* === spacing css start === */
.pt-50 {
  padding-block-start: 3.125rem;
}

.pb-50 {
  padding-block-end: 3.125rem;
}

.py-50 {
  padding-block: 3.125rem;
}

.py-100 {
  padding-block: 50px;
}

@media (min-width: 992px) {
  .py-100 {
    padding-block: 80px;
  }
}
@media (min-width: 1200px) {
  .py-100 {
    padding-block: 100px;
  }
}
/* === spacing css end === */
/* === spacing css start === */
/* === spacing css end === */
/* === animation css start === */
/* === animation css end === */
/* === typography css start === */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  color: var(--display-color);
  font-weight: 600;
  font-family: var(--dispplay-font);
  line-height: 1.3;
}

h1, .h1 {
  font-size: var(--display-1);
}

h2, .h2 {
  font-size: var(--display-2);
}

h3, .h3 {
  font-size: var(--display-3);
}

h4, .h4 {
  font-size: var(--display-4);
}

h5, .h5 {
  font-size: var(--display-5);
}

h6, .h6 {
  font-size: var(--display-6);
}

h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: var(--primary);
}

.text-2xxl {
  font-size: var(--font-2xxl) !important;
}

.text-2xl {
  font-size: var(--font-2xl) !important;
}

.text-xxl {
  font-size: var(--font-xxl) !important;
}

.text-xl {
  font-size: var(--font-xl) !important;
}

.text-lg {
  font-size: var(--font-lg) !important;
}

.text-md {
  font-size: var(--font-md) !important;
}

.text-sm {
  font-size: var(--font-sm) !important;
}

.text-xs {
  font-size: var(--font-xs) !important;
}

.text-xxs {
  font-size: var(--font-xxs) !important;
}

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

.text-line-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

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

/* === typography css end === */
/* === text-align css start === */
.text-start {
  text-align: start !important;
}

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

/* === text-align css end === */
/* === border css start === */
.border {
  border-color: var(--border-color) !important;
}

.border-start {
  border-inline-start: 1px solid var(--border-color) !important;
}

.border-end {
  border-inline-end: 1px solid var(--border-color) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--border-color) !important;
}

@media (min-width: 992px) {
  .border-lg-end {
    border-inline-end: 1px solid var(--border-color) !important;
  }
}
/* === border css end === */
/* === hover css start === */
/* === hover css end === */
/* === overlay css start === */
/* Overlay Css Start */
.gradient-overlay {
  position: relative;
  z-index: 1;
}

.gradient-overlay.top-0::before {
  transform: rotate(180deg);
}

.gradient-overlay::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 22%, rgba(0, 0, 0, 0.69) 57.92%, rgba(0, 0, 0, 0.7) 100%);
  left: inherit;
  bottom: inherit;
}

/* Overlay Css End */
/* === overlay css end === */
/* === position css start === */
.z-index-1 {
  z-index: 1;
}

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

.opacity-15 {
  opacity: 0.15;
}

.start-10 {
  inset-inline-start: 0.625rem;
}

.top-middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* === position css end === */
/* === section header css start === */
.section-header {
  margin-bottom: 2.8125rem;
}

.section-top-title {
  display: inline-flex;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 5px 12px;
  background-image: linear-gradient(274deg, #6e86ff 0%, #ff367c 100%);
  border: 1px solid #1a1d31;
  background-color: #0d0d12;
  border-radius: 99px;
  font-size: 14px;
  margin-bottom: 16px;
}

.section-title {
  font-weight: 500;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .section-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .section-title {
    font-size: 2.625rem;
  }
}
@media (min-width: 1400px) {
  .section-title {
    font-size: 3.25rem;
  }
}
.section-subtitle {
  margin-top: 16px;
}

/* === section header css end === */
/* === preloader css start === */
.rt-preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary);
  z-index: 99999;
}

.rt-cube-grid {
  width: 60px;
  height: 60px;
}

.rt-cube-grid .rt-cube {
  width: 33%;
  height: 33%;
  background-color: var(--primary);
  float: left;
  -webkit-animation: rt-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: rt-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.rt-cube-grid .rt-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.rt-cube-grid .rt-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.rt-cube-grid .rt-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.rt-cube-grid .rt-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.rt-cube-grid .rt-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.rt-cube-grid .rt-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.rt-cube-grid .rt-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.rt-cube-grid .rt-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.rt-cube-grid .rt-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes rt-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
@keyframes rt-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
/* === preloader css end === */
/* === buttons css start === */
.cmn-btn-dark {
  background: radial-gradient(35% 100% at 7% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  border-radius: 99px;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  overflow: hidden;
  padding: 1px;
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8705882353);
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 600;
  overflow: hidden;
  min-width: 120px;
  text-align: center;
}

.cmn-btn-dark:hover {
  color: rgba(255, 255, 255, 0.8705882353);
  animation: btnAnim1 0.5s linear forwards;
}

.cmn-btn-dark:hover .btn-layer {
  animation: btnLayerAnim1 0.5s linear forwards;
}

.cmn-btn-dark:not(:hover) {
  animation: btnAnim2 0.5s linear forwards;
}

.cmn-btn-dark:not(:hover) .btn-layer {
  animation: btnLayerAnim2 0.5s linear forwards;
}

.cmn-btn-dark .btn-layer {
  background: radial-gradient(59% 170% at 1.2% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  border-radius: 99px;
  padding: 9px 16px;
  min-width: 120px;
}

@-webkit-keyframes btnAnim1 {
  0% {
    background: radial-gradient(35% 100% at 7% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  25% {
    background: radial-gradient(35% 100% at 20% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  50% {
    background: radial-gradient(35% 100% at 40% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  75% {
    background: radial-gradient(35% 100% at 60% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  100% {
    background: radial-gradient(35% 100% at 75% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
}
@-moz-keyframes btnAnim1 {
  0% {
    background: radial-gradient(35% 100% at 7% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  25% {
    background: radial-gradient(35% 100% at 20% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  50% {
    background: radial-gradient(35% 100% at 40% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  75% {
    background: radial-gradient(35% 100% at 60% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  100% {
    background: radial-gradient(35% 100% at 75% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
}
@-ms-keyframes btnAnim1 {
  0% {
    background: radial-gradient(35% 100% at 7% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  25% {
    background: radial-gradient(35% 100% at 20% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  50% {
    background: radial-gradient(35% 100% at 40% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  75% {
    background: radial-gradient(35% 100% at 60% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  100% {
    background: radial-gradient(35% 100% at 75% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
}
@keyframes btnAnim1 {
  0% {
    background: radial-gradient(35% 100% at 7% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  25% {
    background: radial-gradient(35% 100% at 20% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  50% {
    background: radial-gradient(35% 100% at 40% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  75% {
    background: radial-gradient(35% 100% at 60% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  100% {
    background: radial-gradient(35% 100% at 75% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
}
@-webkit-keyframes btnAnim2 {
  0% {
    background: radial-gradient(35% 100% at 75% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  25% {
    background: radial-gradient(35% 100% at 60% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  50% {
    background: radial-gradient(35% 100% at 40% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  75% {
    background: radial-gradient(35% 100% at 20% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  100% {
    background: radial-gradient(35% 100% at 7% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
}
@-moz-keyframes btnAnim2 {
  0% {
    background: radial-gradient(35% 100% at 75% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  25% {
    background: radial-gradient(35% 100% at 60% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  50% {
    background: radial-gradient(35% 100% at 40% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  75% {
    background: radial-gradient(35% 100% at 20% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  100% {
    background: radial-gradient(35% 100% at 7% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
}
@-ms-keyframes btnAnim2 {
  0% {
    background: radial-gradient(35% 100% at 75% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  25% {
    background: radial-gradient(35% 100% at 60% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  50% {
    background: radial-gradient(35% 100% at 40% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  75% {
    background: radial-gradient(35% 100% at 20% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  100% {
    background: radial-gradient(35% 100% at 7% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
}
@keyframes btnAnim2 {
  0% {
    background: radial-gradient(35% 100% at 75% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  25% {
    background: radial-gradient(35% 100% at 60% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  50% {
    background: radial-gradient(35% 100% at 40% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  75% {
    background: radial-gradient(35% 100% at 20% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
  100% {
    background: radial-gradient(35% 100% at 7% 44%, #f58327 0%, rgba(207, 207, 207, 0.2) 100%);
  }
}
@-webkit-keyframes btnLayerAnim1 {
  0% {
    background: radial-gradient(59% 170% at 1.2% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  25% {
    background: radial-gradient(59% 170% at 20% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  50% {
    background: radial-gradient(59% 170% at 40% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  75% {
    background: radial-gradient(59% 170% at 60% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  100% {
    background: radial-gradient(59% 170% at 75% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
}
@-moz-keyframes btnLayerAnim1 {
  0% {
    background: radial-gradient(59% 170% at 1.2% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  25% {
    background: radial-gradient(59% 170% at 20% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  50% {
    background: radial-gradient(59% 170% at 40% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  75% {
    background: radial-gradient(59% 170% at 60% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  100% {
    background: radial-gradient(59% 170% at 75% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
}
@-ms-keyframes btnLayerAnim1 {
  0% {
    background: radial-gradient(59% 170% at 1.2% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  25% {
    background: radial-gradient(59% 170% at 20% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  50% {
    background: radial-gradient(59% 170% at 40% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  75% {
    background: radial-gradient(59% 170% at 60% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  100% {
    background: radial-gradient(59% 170% at 75% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
}
@keyframes btnLayerAnim1 {
  0% {
    background: radial-gradient(59% 170% at 1.2% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  25% {
    background: radial-gradient(59% 170% at 20% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  50% {
    background: radial-gradient(59% 170% at 40% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  75% {
    background: radial-gradient(59% 170% at 60% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  100% {
    background: radial-gradient(59% 170% at 75% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
}
@-webkit-keyframes btnLayerAnim2 {
  0% {
    background: radial-gradient(59% 170% at 75% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  25% {
    background: radial-gradient(59% 170% at 60% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  50% {
    background: radial-gradient(59% 170% at 40% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  75% {
    background: radial-gradient(59% 170% at 20% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  100% {
    background: radial-gradient(59% 170% at 1.2% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
}
@-moz-keyframes btnLayerAnim2 {
  0% {
    background: radial-gradient(59% 170% at 75% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  25% {
    background: radial-gradient(59% 170% at 60% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  50% {
    background: radial-gradient(59% 170% at 40% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  75% {
    background: radial-gradient(59% 170% at 20% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  100% {
    background: radial-gradient(59% 170% at 1.2% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
}
@-ms-keyframes btnLayerAnim2 {
  0% {
    background: radial-gradient(59% 170% at 75% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  25% {
    background: radial-gradient(59% 170% at 60% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  50% {
    background: radial-gradient(59% 170% at 40% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  75% {
    background: radial-gradient(59% 170% at 20% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  100% {
    background: radial-gradient(59% 170% at 1.2% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
}
@keyframes btnLayerAnim2 {
  0% {
    background: radial-gradient(59% 170% at 75% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  25% {
    background: radial-gradient(59% 170% at 60% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  50% {
    background: radial-gradient(59% 170% at 40% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  75% {
    background: radial-gradient(59% 170% at 20% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
  100% {
    background: radial-gradient(59% 170% at 1.2% 50%, #6b3305 0%, #000000 57%, #000000 100%);
  }
}
.cmn-btn-white {
  background: radial-gradient(59% 170% at 1.2% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
  box-shadow: rgba(255, 89, 0, 0.7019607843) -12px 0px 21px -3px, #ff3884 -7px 0px 10px -5px;
  border-radius: 99px;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  overflow: hidden;
  padding: 1px;
  position: relative;
  text-decoration: none;
  color: #000;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 600;
  overflow: hidden;
}

.cmn-btn-white:hover {
  color: #000;
  animation: btnWhiteAnim1 0.5s linear forwards;
}

.cmn-btn-white:not(:hover) {
  animation: btnWhiteAnim2 0.5s linear forwards;
}

.cmn-btn-white .btn-layer {
  background: transparent;
  border-radius: 99px;
  padding: 9px 16px;
}

@-webkit-keyframes btnWhiteAnim1 {
  0% {
    background: radial-gradient(59% 170% at 1.2% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) -12px 0px 21px -3px, #ff3884 -7px 0px 10px -5px;
  }
  25% {
    background: radial-gradient(59% 170% at 20% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) -6px 0px 21px -3px, #ff3884 -3px 0px 10px -5px;
  }
  50% {
    background: radial-gradient(59% 170% at 40% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 0px 0px 21px -3px, #ff3884 0px 0px 10px -5px;
  }
  75% {
    background: radial-gradient(59% 170% at 60% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 6px 0px 21px -3px, #ff3884 5px 0px 10px -5px;
  }
  100% {
    background: radial-gradient(59% 170% at 75% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 12px 0px 21px -3px, #ff3884 10px 0px 10px -5px;
  }
}
@-moz-keyframes btnWhiteAnim1 {
  0% {
    background: radial-gradient(59% 170% at 1.2% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) -12px 0px 21px -3px, #ff3884 -7px 0px 10px -5px;
  }
  25% {
    background: radial-gradient(59% 170% at 20% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) -6px 0px 21px -3px, #ff3884 -3px 0px 10px -5px;
  }
  50% {
    background: radial-gradient(59% 170% at 40% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 0px 0px 21px -3px, #ff3884 0px 0px 10px -5px;
  }
  75% {
    background: radial-gradient(59% 170% at 60% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 6px 0px 21px -3px, #ff3884 5px 0px 10px -5px;
  }
  100% {
    background: radial-gradient(59% 170% at 75% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 12px 0px 21px -3px, #ff3884 10px 0px 10px -5px;
  }
}
@-ms-keyframes btnWhiteAnim1 {
  0% {
    background: radial-gradient(59% 170% at 1.2% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) -12px 0px 21px -3px, #ff3884 -7px 0px 10px -5px;
  }
  25% {
    background: radial-gradient(59% 170% at 20% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) -6px 0px 21px -3px, #ff3884 -3px 0px 10px -5px;
  }
  50% {
    background: radial-gradient(59% 170% at 40% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 0px 0px 21px -3px, #ff3884 0px 0px 10px -5px;
  }
  75% {
    background: radial-gradient(59% 170% at 60% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 6px 0px 21px -3px, #ff3884 5px 0px 10px -5px;
  }
  100% {
    background: radial-gradient(59% 170% at 75% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 12px 0px 21px -3px, #ff3884 10px 0px 10px -5px;
  }
}
@keyframes btnWhiteAnim1 {
  0% {
    background: radial-gradient(59% 170% at 1.2% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) -12px 0px 21px -3px, #ff3884 -7px 0px 10px -5px;
  }
  25% {
    background: radial-gradient(59% 170% at 20% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) -6px 0px 21px -3px, #ff3884 -3px 0px 10px -5px;
  }
  50% {
    background: radial-gradient(59% 170% at 40% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 0px 0px 21px -3px, #ff3884 0px 0px 10px -5px;
  }
  75% {
    background: radial-gradient(59% 170% at 60% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 6px 0px 21px -3px, #ff3884 5px 0px 10px -5px;
  }
  100% {
    background: radial-gradient(59% 170% at 75% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 12px 0px 21px -3px, #ff3884 10px 0px 10px -5px;
  }
}
@-webkit-keyframes btnWhiteAnim2 {
  0% {
    background: radial-gradient(59% 170% at 75% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 12px 0px 21px -3px, #ff3884 10px 0px 10px -5px;
  }
  25% {
    background: radial-gradient(59% 170% at 60% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 6px 0px 21px -3px, #ff3884 5px 0px 10px -5px;
  }
  50% {
    background: radial-gradient(59% 170% at 40% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 0px 0px 21px -3px, #ff3884 0px 0px 10px -5px;
  }
  75% {
    background: radial-gradient(59% 170% at 20% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) -6px 0px 21px -3px, #ff3884 -3px 0px 10px -5px;
  }
  100% {
    background: radial-gradient(59% 170% at 1.2% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) -12px 0px 21px -3px, #ff3884 -7px 0px 10px -5px;
  }
}
@-moz-keyframes btnWhiteAnim2 {
  0% {
    background: radial-gradient(59% 170% at 75% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 12px 0px 21px -3px, #ff3884 10px 0px 10px -5px;
  }
  25% {
    background: radial-gradient(59% 170% at 60% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 6px 0px 21px -3px, #ff3884 5px 0px 10px -5px;
  }
  50% {
    background: radial-gradient(59% 170% at 40% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 0px 0px 21px -3px, #ff3884 0px 0px 10px -5px;
  }
  75% {
    background: radial-gradient(59% 170% at 20% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) -6px 0px 21px -3px, #ff3884 -3px 0px 10px -5px;
  }
  100% {
    background: radial-gradient(59% 170% at 1.2% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) -12px 0px 21px -3px, #ff3884 -7px 0px 10px -5px;
  }
}
@-ms-keyframes btnWhiteAnim2 {
  0% {
    background: radial-gradient(59% 170% at 75% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 12px 0px 21px -3px, #ff3884 10px 0px 10px -5px;
  }
  25% {
    background: radial-gradient(59% 170% at 60% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 6px 0px 21px -3px, #ff3884 5px 0px 10px -5px;
  }
  50% {
    background: radial-gradient(59% 170% at 40% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 0px 0px 21px -3px, #ff3884 0px 0px 10px -5px;
  }
  75% {
    background: radial-gradient(59% 170% at 20% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) -6px 0px 21px -3px, #ff3884 -3px 0px 10px -5px;
  }
  100% {
    background: radial-gradient(59% 170% at 1.2% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) -12px 0px 21px -3px, #ff3884 -7px 0px 10px -5px;
  }
}
@keyframes btnWhiteAnim2 {
  0% {
    background: radial-gradient(59% 170% at 75% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 12px 0px 21px -3px, #ff3884 10px 0px 10px -5px;
  }
  25% {
    background: radial-gradient(59% 170% at 60% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 6px 0px 21px -3px, #ff3884 5px 0px 10px -5px;
  }
  50% {
    background: radial-gradient(59% 170% at 40% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) 0px 0px 21px -3px, #ff3884 0px 0px 10px -5px;
  }
  75% {
    background: radial-gradient(59% 170% at 20% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) -6px 0px 21px -3px, #ff3884 -3px 0px 10px -5px;
  }
  100% {
    background: radial-gradient(59% 170% at 1.2% 50%, #ffffff 0%, #ffffff 37%, #d0d0d0 100%);
    box-shadow: rgba(255, 89, 0, 0.7019607843) -12px 0px 21px -3px, #ff3884 -7px 0px 10px -5px;
  }
}
/* === buttons css end === */
/* === alert css start === */
.alert {
  padding: 0.625rem 0.9375rem;
}

.alert-primary {
  color: var(--primary) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-primary::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-primary::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--primary);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-primary.border-0::after {
  display: none;
}

.alert-primary-two {
  color: var(--primary-two) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-primary-two::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--primary-two);
  border: 1px solid var(--primary-two);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-primary-two::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--primary-two);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-primary-two.border-0::after {
  display: none;
}

.alert-secondary {
  color: var(--secondary) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-secondary::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-secondary::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--secondary);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-secondary.border-0::after {
  display: none;
}

.alert-success {
  color: var(--success) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-success::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--success);
  border: 1px solid var(--success);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-success::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--success);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-success.border-0::after {
  display: none;
}

.alert-info {
  color: var(--info) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-info::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--info);
  border: 1px solid var(--info);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-info::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--info);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-info.border-0::after {
  display: none;
}

.alert-warning {
  color: var(--warning) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-warning::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--warning);
  border: 1px solid var(--warning);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-warning::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--warning);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-warning.border-0::after {
  display: none;
}

.alert-danger {
  color: var(--danger) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-danger::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--danger);
  border: 1px solid var(--danger);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-danger::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--danger);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-danger.border-0::after {
  display: none;
}

.alert-light {
  color: var(--light) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-light::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--light);
  border: 1px solid var(--light);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-light::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--light);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-light.border-0::after {
  display: none;
}

.alert-extra-light {
  color: var(--extra-light) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-extra-light::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--extra-light);
  border: 1px solid var(--extra-light);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-extra-light::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--extra-light);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-extra-light.border-0::after {
  display: none;
}

.alert-muted {
  color: var(--muted) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-muted::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--muted);
  border: 1px solid var(--muted);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-muted::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--muted);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-muted.border-0::after {
  display: none;
}

.alert-dark {
  color: var(--dark) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-dark::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--dark);
  border: 1px solid var(--dark);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-dark::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--dark);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-dark.border-0::after {
  display: none;
}

.alert-white {
  color: var(--white) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-white::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--white);
  border: 1px solid var(--white);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-white::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--white);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-white.border-0::after {
  display: none;
}

.alert-light {
  color: var(--display-color) !important;
}

.alert-dismissible .btn-close {
  width: 10px;
  height: 7px;
  background-size: 10px;
}

.alert-dismissible .btn-close:focus {
  box-shadow: none;
}

/* === alert css end === */
/* === badge css start === */
.badge {
  font-weight: 500;
  font-size: 0.75rem;
}

.badge-primary {
  background-color: #6e86ff !important;
  color: #fff !important;
}

.badge-primary-two {
  background-color: #ff367c !important;
  color: #fff !important;
}

.badge-secondary {
  background-color: #192024 !important;
  color: #fff !important;
}

.badge-success {
  background-color: #22c55e !important;
  color: #fff !important;
}

.badge-info {
  background-color: #16C7F9 !important;
  color: #fff !important;
}

.badge-warning {
  background-color: #f97316 !important;
  color: #fff !important;
}

.badge-danger {
  background-color: #F81F58 !important;
  color: #fff !important;
}

.badge-light {
  background-color: rgba(226, 232, 240, 0.1215686275) !important;
  color: #fff !important;
}

.badge-extra-light {
  background-color: rgba(226, 232, 240, 0.5411764706) !important;
  color: #fff !important;
}

.badge-muted {
  background-color: #8094ae !important;
  color: #fff !important;
}

.badge-dark {
  background-color: #2c323f !important;
  color: #fff !important;
}

.badge-white {
  background-color: #ffffff !important;
  color: #fff !important;
}

.badge-light-primary {
  background-color: rgba(110, 134, 255, 0.1254901961) !important;
  color: #6e86ff !important;
}

.badge-light-primary-two {
  background-color: rgba(255, 54, 124, 0.1254901961) !important;
  color: #ff367c !important;
}

.badge-light-secondary {
  background-color: rgba(25, 32, 36, 0.1254901961) !important;
  color: #192024 !important;
}

.badge-light-success {
  background-color: rgba(34, 197, 94, 0.1254901961) !important;
  color: #22c55e !important;
}

.badge-light-info {
  background-color: rgba(22, 199, 249, 0.1254901961) !important;
  color: #16C7F9 !important;
}

.badge-light-warning {
  background-color: rgba(249, 115, 22, 0.1254901961) !important;
  color: #f97316 !important;
}

.badge-light-danger {
  background-color: rgba(248, 31, 88, 0.1254901961) !important;
  color: #F81F58 !important;
}

.badge-light-light {
  background-color: #e2e8f01f20 !important;
  color: rgba(226, 232, 240, 0.1215686275) !important;
}

.badge-light-extra-light {
  background-color: #e2e8f08a20 !important;
  color: rgba(226, 232, 240, 0.5411764706) !important;
}

.badge-light-muted {
  background-color: rgba(128, 148, 174, 0.1254901961) !important;
  color: #8094ae !important;
}

.badge-light-dark {
  background-color: rgba(44, 50, 63, 0.1254901961) !important;
  color: #2c323f !important;
}

.badge-light-white {
  background-color: rgba(255, 255, 255, 0.1254901961) !important;
  color: #ffffff !important;
}

.badge-light {
  color: var(--display-color) !important;
}

/* === badge css end === */
/* === table css start === */
.table thead th {
  font-size: 0.875rem;
  color: var(--display-color);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

@media (min-width: 992px) {
  .table thead th:last-child {
    text-align: right;
  }
}
.table tbody td {
  font-size: 1rem;
  vertical-align: middle;
  color: var(--body-color);
  padding: 0.875rem 1.5rem;
}

@media (min-width: 992px) {
  .table tbody td:last-child {
    text-align: right;
  }
  .table tbody td:last-child .d-flex {
    justify-content: flex-end;
  }
}
.table.head-light-bg thead th {
  background-color: var(--light);
}

.table.head-rounded thead th {
  border: none;
}

.table.head-rounded thead th:first-child {
  border-radius: 8px 0 0 8px;
}

.table.head-rounded thead th:last-child {
  border-radius: 0 8px 8px 0;
}

.table.head-primary-bg thead th {
  background-color: var(--primary);
  color: #fff;
}

.default-table thead th {
  border-color: var(--border-color);
}

.default-table tbody tr:last-child td {
  border: none;
}

.default-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 8px;
  -webkit-border-radius: 0 0 0 8px;
  -moz-border-radius: 0 0 0 8px;
  -ms-border-radius: 0 0 0 8px;
  -o-border-radius: 0 0 0 8px;
}

.default-table tbody tr:last-child td:last-child {
  border-radius: 0 0 8px 0;
  -webkit-border-radius: 0 0 8px 0;
  -moz-border-radius: 0 0 8px 0;
  -ms-border-radius: 0 0 8px 0;
  -o-border-radius: 0 0 8px 0;
}

.default-table tbody td {
  border-color: var(--border-color);
  background-color: transparent;
}

.bordered-table thead th {
  border: 1px solid var(--border-color);
}

.bordered-table tbody td {
  border: 1px solid var(--border-color);
}

.borderless-table thead th {
  border: none;
}

.borderless-table tbody td {
  border: none;
}

/* === table css end === */
/* === table responsive css start === */
/*
 * jQuery Basic Table
 * Author: Jerry Low
 */
@media (max-width: 991px) {
  .responsive-table tbody tr td {
    padding: 0;
    border: 1px solid var(--border-color) !important;
    border-bottom: none !important;
  }
  .responsive-table tbody tr td:last-child {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color) !important;
  }
  .responsive-table tbody tr td::before {
    background-color: var(--light);
    padding: 10px;
    color: var(--display-color);
    font-weight: 600 !important;
  }
  .responsive-table tbody tr td .bt-content {
    padding: 7px 15px;
  }
}
table.bt thead,
table.bt tbody th {
  display: none;
}

table.bt tfoot th,
table.bt tfoot td,
table.bt tbody td {
  border: none;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  vertical-align: top;
  /* IE 9 */
  float: left\9 ;
  width: 100% \9 ;
}

table.bt tfoot th::before,
table.bt tfoot td::before,
table.bt tbody td::before {
  content: attr(data-th) ": ";
  display: inline-block;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  font-weight: bold;
  width: 6.5em;
}

table.bt tfoot th.bt-hide,
table.bt tfoot td.bt-hide,
table.bt tbody td.bt-hide {
  display: none;
}

table.bt tfoot th .bt-content,
table.bt tfoot td .bt-content,
table.bt tbody td .bt-content {
  vertical-align: top;
}

.bt-wrapper.active {
  max-height: 310px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

table.bt.bt--no-header tfoot td::before,
table.bt.bt--no-header tbody td::before {
  display: none;
}

/* === table responsive css end === */
/* === form css start === */
/* === form css end === */
/* === form select two css start === */
.form-select-two ~ .select2-container {
  display: block;
  width: 100% !important;
}

.form-select-two ~ .select2-container .selection {
  display: block;
}

.form-select-two ~ .select2-container .select2-selection--single {
  min-height: 44px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

.form-select-two ~ .select2-container .select2-selection--single .select2-selection__rendered {
  color: var(--display-color);
  line-height: 42px;
  padding: 0 0.9375rem;
  font-size: 0.875rem;
}

.form-select-two ~ .select2-container .select2-selection--single .select2-selection__arrow b {
  margin-left: -12px;
  margin-top: 5px;
}

.form-select-two ~ .select2-container .select2-selection--multiple {
  min-height: 44px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding-inline: 1rem;
}

.form-select-two ~ .select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
  height: 28px;
  margin-top: 10px;
  font-size: 0.875rem;
}

.form-select-two ~ .select2-container .select2-selection--multiple .select2-selection__choice {
  background-color: var(--light);
  border: 1px solid var(--border-color);
}

.form-select-two ~ .select2-container .select2-selection--multiple .select2-selection__choice:first-child {
  margin-left: 0;
}

.form-select-two ~ .select2-container .select2-selection--multiple .select2-selection__choice__remove {
  border-right: 1px solid var(--border-color);
}

.form-select-two ~ .select2-container .select2-selection--multiple .select2-selection__choice__display {
  font-size: 0.875rem;
}

.select-two-templating ~ .select2-container .select2-selection--single .select2-selection__rendered > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.select2-dropdown {
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

.select2-dropdown .select2-search__field {
  border: 1px solid var(--border-color) !important;
  border-radius: 4px;
  padding: 0 1rem;
  font-size: 0.875rem;
}

.select2-dropdown .select2-results__option {
  font-size: 0.875rem;
  padding: 0.375rem 1rem;
}

.select2-dropdown .select2-results__option--selected {
  background-color: var(--light) !important;
}

.select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--primary) !important;
}

.select2-container {
  transition: all 0s;
  z-index: 9999;
}

/* === form select two css end === */
/* === card css start === */
.card {
  background-color: var(--surface-bg);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border: none;
  position: initial;
  color: var(--body-color);
}

.card .card-header {
  background-color: var(--surface-bg);
  padding: 0.875rem 1rem;
  border-color: var(--border-color);
  color: var(--body-color);
}

@media (min-width: 768px) {
  .card .card-header {
    padding: 0.875rem 1.5rem;
  }
}
.card .card-title {
  font-size: 1.125rem !important;
  color: var(--display-color);
}

.card .card-body {
  padding: 0.875rem 1rem;
  color: var(--body-color);
}

@media (min-width: 768px) {
  .card .card-body {
    padding: 0.875rem 1.5rem;
  }
}
.card .card-footer {
  background-color: var(--surface-bg);
  border-color: var(--border-color);
  padding: 0.875rem 1rem;
}

@media (min-width: 768px) {
  .card .card-footer {
    padding: 0.875rem 1.5rem;
  }
}
/* === card css end === */
/* === modal css start === */
.modal-header .btn-close {
  margin-inline-start: auto;
  margin-inline-end: 0;
}

.modal-title {
  font-size: 1.125rem;
}

/* === modal css end === */
/* === accordion css start === */
/* === accordion css end === */
/* === nav-tabs css start === */
.nav-tabs.bordered-tab {
  border-color: var(--border-color);
}

.nav-tabs.bordered-tab .nav-item .nav-link {
  border: none;
  position: relative;
  color: var(--body-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.nav-tabs.bordered-tab .nav-item .nav-link::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  opacity: 0;
}

.nav-tabs.bordered-tab .nav-item .nav-link.active {
  margin-bottom: 0;
  color: var(--primary);
}

.nav-tabs.bordered-tab .nav-item .nav-link.active::after {
  opacity: 1;
}

.nav-tabs.bordered-tab .nav-item .nav-link.active .nav-tabs-badge {
  background-color: var(--primary);
}

.nav-tabs.bordered-tab .nav-item .nav-link .nav-tabs-badge {
  width: 18px;
  height: 18px;
  background-color: var(--body-color);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.nav-tabs.pill-tab {
  border: none;
}

.nav-tabs.pill-tab .nav-item .nav-link {
  border: none;
  position: relative;
  color: var(--body-color);
  border-radius: 6px !important;
  padding: 0.375rem 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-tabs.pill-tab .nav-item .nav-link.active {
  margin-bottom: 0;
  background-color: var(--primary);
  color: #fff;
}

.nav-tabs.pill-tab .nav-item .nav-link.active .nav-tabs-badge {
  background-color: #fff;
  color: var(--primary);
}

.nav-tabs.pill-tab .nav-item .nav-link .nav-tabs-badge {
  width: 18px;
  height: 18px;
  background-color: var(--body-color);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.nav-tabs.pill-light-tab {
  border: none;
}

.nav-tabs.pill-light-tab .nav-item .nav-link {
  border: none;
  position: relative;
  color: var(--body-color);
  border-radius: 6px !important;
  padding: 0.375rem 0.9375rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-tabs.pill-light-tab .nav-item .nav-link::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  opacity: 0;
  z-index: -1;
  border-radius: 6px !important;
}

.nav-tabs.pill-light-tab .nav-item .nav-link.active {
  margin-bottom: 0;
  color: var(--primary);
}

.nav-tabs.pill-light-tab .nav-item .nav-link.active::before {
  opacity: 0.25;
}

.nav-tabs.pill-light-tab .nav-item .nav-link.active .nav-tabs-badge {
  background-color: var(--primary);
  color: #fff;
}

.nav-tabs.pill-light-tab .nav-item .nav-link .nav-tabs-badge {
  width: 18px;
  height: 18px;
  background-color: var(--body-color);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.nav-tabs.light-bg-tab {
  background-color: #f1f5f9;
  border-bottom: none;
  padding: 5px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.nav-tabs.light-bg-tab .nav-item .nav-link {
  border: none;
  position: relative;
  color: var(--body-color);
  border-radius: 6px !important;
  padding: 0.375rem 0.9375rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
}

.nav-tabs.light-bg-tab .nav-item .nav-link.active {
  margin-bottom: 0;
  color: var(--display-color);
  background-color: #fff;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.05);
}

.nav-tabs.light-bg-tab .nav-item .nav-link.active .nav-tabs-badge {
  background-color: var(--primary);
  color: #fff;
}

.nav-tabs.light-bg-tab .nav-item .nav-link .nav-tabs-badge {
  width: 18px;
  height: 18px;
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--body-color);
  font-size: 0.625rem;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}

.nav-tabs.nav-tabs-sm .nav-item .nav-link {
  font-size: 0.8125rem;
  padding: 0.25rem 0.5rem;
}

.nav-tabs.nav-tabs-gap-0 .nav-item {
  padding-inline: 0.375rem;
}

@media (min-width: 1400px) {
  .nav-tabs.nav-tabs-gap-0 .nav-item {
    padding-inline: 0.75rem;
  }
}
.nav-tabs.nav-tabs-gap-0 .nav-item .nav-link {
  padding-inline: 0;
  padding-block: 0.75rem;
  font-size: 0.875rem;
}

.tab-content {
  margin-top: 1rem;
}

/* === nav-tabs css end === */
/* === pagination css start === */
.pagination .page-item.active .page-link {
  background-color: var(--primary);
  color: #fff;
}

.pagination .page-item .page-link {
  color: var(--body-color);
}

.pagination .page-item .page-link:focus {
  box-shadow: none;
  background-color: var(--light);
  color: var(--display-color);
}

.pagination-style-one .pagination {
  gap: 0.625rem;
}

.pagination-style-one .pagination .page-item.active .page-link {
  background-color: var(--primary);
  color: #fff;
}

.pagination-style-one .pagination .page-item .page-link {
  color: var(--body-color);
  border-radius: 0.25rem !important;
  width: 35px;
  height: 35px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-style-one .pagination .page-item .page-link:focus {
  box-shadow: none;
  background-color: var(--light);
  color: var(--display-color);
}

.pagination-style-two .pagination {
  gap: 0.625rem;
}

.pagination-style-two .pagination .page-item.active .page-link {
  background-color: var(--primary);
  color: #fff;
}

.pagination-style-two .pagination .page-item .page-link {
  color: var(--body-color);
  border-radius: 0.25rem !important;
  width: 35px;
  height: 35px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.pagination-style-two .pagination .page-item .page-link:focus {
  box-shadow: none;
  background-color: var(--light);
  color: var(--display-color);
}

/* === pagination css end === */
/* === list-style css start === */
.list-group-item {
  border-color: var(--border-color);
}

.list-group-item.active {
  background-color: var(--primary);
}

/* === list-style css end === */
/* === Dropdown css start === */
/* Dropdown Css Start */
.dropdown-toggle::after {
  content: "\ea4e";
  border: none;
  font-family: remixicon !important;
  font-style: normal;
  vertical-align: 0;
}

.dropdown.dropend .dropdown-toggle::after {
  content: "\ea6e";
  border: none;
  font-family: remixicon !important;
  font-style: normal;
  vertical-align: 0;
}

.dropdown.dropup .dropdown-toggle::after {
  content: "\ea78";
  border: none;
  font-family: remixicon !important;
  font-style: normal;
  vertical-align: 0;
}

.dropdown.dropstart .dropdown-toggle::after {
  content: "\ea64";
  border: none;
  font-family: remixicon !important;
  font-style: normal;
  vertical-align: 0;
}

.dropdown-menu {
  background-color: var(--bg-white);
  border-color: var(--border-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0s;
}

.dropdown-item {
  color: var(--body-color);
  font-size: 0.875rem;
  padding: 0.375rem 0.9375rem;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: var(--light);
  color: var(--display-color);
}

.dropdown-item:focus {
  background-color: var(--light) !important;
  color: var(--display-color);
}

.dropdown-menu.language-dropdown-menu .dropdown-item::after {
  content: "\eb79";
  font-family: remixicon !important;
  font-style: normal;
  opacity: 0;
  margin-left: auto;
}

.dropdown-menu.language-dropdown-menu .dropdown-item.active {
  background-color: var(--light);
  color: var(--display-color);
}

.dropdown-menu.language-dropdown-menu .dropdown-item.active::after {
  opacity: 1;
}

.dropdown-menu .dropdown-divider {
  border-color: var(--border-color);
}

.dropdown-menu-lg {
  width: 295px;
}

@media (min-width: 576px) {
  .dropdown-menu-lg {
    width: 380px;
  }
}
.max-h-300 {
  max-height: 300px;
  overflow-y: auto;
}

.max-h-300::-webkit-scrollbar {
  width: 6px;
  background-color: #fff;
}

.max-h-300::-webkit-scrollbar-thumb {
  background-color: var(--light);
}

/* Dropdown Css End */
/* === Dropdown css end === */
/* === tooltip css start === */
/* Tooltip css start */
.tooltip {
  font-size: 0.75rem;
  --bs-tooltip-color: #fff;
}

.tooltip-primary {
  --bs-tooltip-bg: var(--primary);
}

.tooltip-secondary {
  --bs-tooltip-bg: var(--secondary);
}

.tooltip-success {
  --bs-tooltip-bg: var(--success);
}

.tooltip-info {
  --bs-tooltip-bg: var(--info);
}

.tooltip-warning {
  --bs-tooltip-bg: var(--warning);
}

.tooltip-danger {
  --bs-tooltip-bg: var(--danger);
}

.tooltip-dark {
  --bs-tooltip-bg: var(--dark);
}

.tooltip-light {
  --bs-tooltip-bg: var(--light);
  --bs-tooltip-color: var(--display-color);
}

/* Tooltip css End */
/* === tooltip css end === */
/* === image upload css start === */
.image-upload {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.image-upload .image-edit-btn input {
  display: none;
}

.image-upload .image-edit-btn input + label {
  display: inline-block;
  padding-inline: 0.75rem;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  font-size: 0.75rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}

.image-upload .image-edit-btn input + label:hover {
  background: var(--primary);
  color: #fff;
}

.image-upload .image-edit-btn input + label:before {
  content: "\f603";
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  margin-right: 6px;
}

.image-upload .image-edit-btn input + label:after {
  content: attr(data-text);
}

.image-upload .image-preview {
  width: 200px;
  height: 200px;
  position: relative;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 0px 0 4px 0px rgba(0, 0, 0, 0.15);
}

.image-upload .image-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid #fff;
}

.image-upload.image-upload-sm .image-preview {
  width: 100px;
  height: 100px;
}

.bg-size-contain {
  background-size: contain !important;
}

.mutiple-img-preview-style-one .img-div + .img-div {
  margin-top: 1rem;
}

.mutiple-img-preview-style-one .img-div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}

.mutiple-img-preview-style-one .img-div img {
  max-height: 40px;
}

.mutiple-img-preview-style-two {
  display: flex;
  flex-wrap: wrap;
}

.mutiple-img-preview-style-two .img-div {
  position: relative;
  width: calc(33.3333333333% - 20px);
  padding: 10px !important;
  margin: 10px;
}

.mutiple-img-preview-style-two .img-div-thumb {
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mutiple-img-preview-style-two .img-div-thumb img {
  max-height: 200px;
}

.mutiple-img-preview-style-two .img-div-content {
  text-align: center;
  margin-top: 1rem;
}

.mutiple-img-preview-style-two .img-div .btn {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none !important;
}

/* === image upload css end === */
/* === date picker css start === */
.ui-datepicker {
  transition: all 0s;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color) !important;
  border-radius: 8px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 0.375rem;
}

.ui-datepicker .ui-datepicker-header {
  background-color: #fff;
  color: var(--display-color);
  border: none;
}

.ui-datepicker .ui-datepicker-title {
  font-size: 0.9375rem;
}

.ui-datepicker .ui-datepicker-title .ui-datepicker-year {
  color: var(--body-color);
}

.ui-datepicker .ui-datepicker-title select {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin: 3px;
  margin-top: -4px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
}

.ui-datepicker .ui-datepicker-prev::after,
.ui-datepicker .ui-datepicker-next::after {
  position: absolute;
  top: 55%;
  transform: translate(-50%, -50%);
  font-family: remixicon !important;
  font-style: normal;
  font-size: 14px;
  color: var(--display-color);
}

.ui-datepicker .ui-datepicker-prev.ui-state-hover,
.ui-datepicker .ui-datepicker-next.ui-state-hover {
  color: var(--display-color);
  font-weight: inherit;
}

.ui-datepicker .ui-datepicker-prev.ui-state-hover {
  left: 2px !important;
  top: 2px !important;
}

.ui-datepicker .ui-datepicker-prev::after {
  content: "\ea64";
  left: 46%;
}

.ui-datepicker .ui-datepicker-next.ui-state-hover {
  right: 2px !important;
  top: 2px !important;
}

.ui-datepicker .ui-datepicker-next::after {
  content: "\ea6e";
  left: 56%;
}

.ui-datepicker .ui-datepicker-calendar th {
  font-size: 0.75rem;
  color: #7c7c7c;
  font-weight: 600;
}

.ui-datepicker .ui-datepicker-calendar td {
  padding: 2px;
}

.ui-datepicker .ui-datepicker-calendar td .ui-state-default {
  background-color: var(--light);
  width: 1.875rem;
  height: 1.875rem;
  border: 1px solid var(--border-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
}

.ui-datepicker .ui-datepicker-calendar td .ui-state-default.ui-state-highlight {
  background-color: var(--primary);
  color: #fff;
  font-weight: 600;
}

.ui-datepicker .ui-datepicker-calendar td .ui-state-default.ui-state-active {
  border-color: var(--primary);
  color: var(--primary);
}

.ui-datepicker-trigger {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 0;
  width: 20px;
}

.ui-datepicker-trigger::after {
  position: absolute;
  content: "\eb27";
  top: 0;
  left: 0;
  font-family: remixicon !important;
  font-style: normal;
  font-size: 18px;
}

.form-control-sm ~ .ui-datepicker-trigger {
  top: 2px;
  right: 10px;
}

/* === date picker css end === */
/* === time picker css start === */
.ti_tx,
.mi_tx,
.mer_tx {
  width: 100%;
  text-align: center;
  margin: 10px 0;
}

.time,
.mins,
.meridian {
  width: 33.3333333333%;
  float: left;
  font-size: 20px;
  color: #2d2e2e;
  font-family: "arial";
  font-weight: 700;
}

.time input,
.mins input,
.meridian input {
  width: 100%;
}

.meridian {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: var(--light);
}

.timepicker_wrap .prev,
.timepicker_wrap .next {
  cursor: pointer;
  padding: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timepicker_wrap .prev::after,
.timepicker_wrap .next::after {
  color: #777;
  font-family: remixicon !important;
  font-style: normal;
  font-size: 0.875rem;
}

.timepicker_wrap .prev {
  background-position: 50% -50%;
}

.timepicker_wrap .prev::after {
  content: "\ea78";
}

.timepicker_wrap .next {
  background-position: 50% 150%;
}

.timepicker_wrap .next::after {
  content: "\ea4e";
}

.time_pick {
  position: relative;
}

/*input{ float:left;}*/
.timepicker_wrap {
  padding: 10px;
  border-radius: 5px;
  z-index: 2;
  display: none;
  width: 240px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  float: left;
  position: absolute;
  top: 27px;
  left: 0px;
  transition: all 0s;
}

.arrow_top {
  position: absolute;
  top: -10px;
  left: 20px;
  background: url(../images/top_arr.png) no-repeat;
  width: 18px;
  height: 10px;
  z-index: 3;
}

/* === time picker css end === */
/* === transfer money css start === */
.rt-transfer-box {
  padding: 2.5rem;
  background-color: #fff;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .rt-transfer-box.style-inner {
    padding: 1.25rem 0;
  }
}
@media (max-width: 575px) {
  .rt-transfer-box.rt-banner-transfer-box {
    padding: 1.25rem;
  }
}
@media (min-width: 1400px) {
  .rt-transfer-box.rt-banner-transfer-box {
    margin-inline-start: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .rt-transfer-box.rt-banner-transfer-box .rt-single-transfer > input {
    width: 170px;
  }
}
.rt-single-transfer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.5rem 0.625rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

@media (min-width: 576px) {
  .rt-single-transfer {
    padding: 0.75rem 1rem;
  }
}
.rt-single-transfer > input {
  flex-grow: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--display-color);
  width: 100px;
}

@media (min-width: 576px) {
  .rt-single-transfer > input {
    width: 240px;
    font-size: 1.375rem;
  }
}
.rt-single-transfer > button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  position: relative;
  width: 75px;
  padding-inline-end: 0.625rem;
}

@media (min-width: 576px) {
  .rt-single-transfer > button {
    width: 120px;
    padding-inline-end: 1.5625rem;
  }
}
.rt-single-transfer > button.active::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.rt-single-transfer > button::after {
  position: absolute;
  top: 2px;
  inset-inline-end: 0;
  content: "\ea4e";
  font-family: remixicon !important;
  font-style: normal;
  color: var(--display-color);
  font-size: 0.875rem;
  font-weight: 600;
}

@media (min-width: 576px) {
  .rt-single-transfer > button::after {
    font-size: 1.25rem;
  }
}
.rt-single-transfer > button img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  object-fit: cover;
  -o-object-fit: cover;
}

@media (min-width: 576px) {
  .rt-single-transfer > button img {
    width: 25px;
    height: 25px;
  }
}
.rt-single-transfer > button span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--display-color);
}

@media (min-width: 576px) {
  .rt-single-transfer > button span {
    font-size: 1.375rem;
  }
}
.rt-single-transfer .rt-single-transfer-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-start: 0;
  width: 100%;
  display: none;
  z-index: 9;
}

.rt-single-transfer .rt-single-transfer-dropdown.active {
  display: block;
}

.rt-single-transfer-dropdown {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.rt-single-transfer-dropdown .form-control {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 12px 12px 0 0;
  -webkit-border-radius: 12px 12px 0 0;
  -moz-border-radius: 12px 12px 0 0;
  -ms-border-radius: 12px 12px 0 0;
  -o-border-radius: 12px 12px 0 0;
}

.rt-single-transfer-dropdown .form-control:focus {
  border-color: var(--border-color) !important;
}

.rt-single-transfer-dropdown .rt-currency-list {
  max-height: 200px;
  overflow-y: auto;
}

@media (min-width: 576px) {
  .rt-single-transfer-dropdown .rt-currency-list {
    max-height: 300px;
  }
}
.rt-single-transfer-dropdown .rt-currency-list::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}

.rt-single-transfer-dropdown .rt-currency-list::-webkit-scrollbar-thumb {
  background-color: #c4c4c4;
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
}

.rt-single-transfer-dropdown .rt-currency-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

.rt-single-transfer-dropdown .rt-currency-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  cursor: pointer;
  font-size: 0.875rem;
}

@media (min-width: 992px) {
  .rt-single-transfer-dropdown .rt-currency-list li {
    font-size: 1rem;
    gap: 1rem;
  }
}
.rt-single-transfer-dropdown .rt-currency-list li:hover {
  background-color: #f1f5f9;
}

.rt-single-transfer-dropdown .rt-currency-list li .currency-code {
  font-weight: 600;
  margin-inline-start: auto;
}

.rt-single-transfer-dropdown .rt-currency-list li img {
  height: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  object-fit: cover;
  -o-object-fit: cover;
}

@media (min-width: 992px) {
  .rt-single-transfer-dropdown .rt-currency-list li img {
    height: 25px;
    height: 25px;
  }
}
.rt-single-transfer-dropdown .rt-currency-list .no-data {
  display: none;
  padding: 1rem;
}

.rt-transfer-info-list {
  margin-top: 1.875rem;
}

.rt-transfer-info-list li + li {
  margin-top: 0.5rem;
}

.rt-transfer-info-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.rt-transfer-info-list li span:first-child {
  font-weight: 400;
}

.rt-transfer-info-list li span:last-child {
  font-weight: 600;
  color: var(--display-color);
}

.rt-transfer-info-list li .form-select {
  width: auto;
  padding: 0.125rem 1.25rem 0.125rem 0.625rem;
  height: auto;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  background-size: 20px 10px;
  border: 1px solid var(--border-color);
  font-weight: 500;
}

.rt-transfer-info-list li .form-select:focus {
  border-color: var(--border-color);
}

/* === transfer money css end === */
/* === faq css start === */
/* Faq Css Start */
.responsive-padding-40-150 {
  padding-inline-start: clamp(2rem, -27.4754rem + 39.3333vw, 9.375rem) !important;
  padding-inline-end: clamp(2rem, -27.4754rem + 39.3333vw, 9.375rem) !important;
  padding-block-start: 40px !important;
  padding-block-end: 40px !important;
}

/* Faq Css End */
/* === faq css end === */
/* === referral css start === */
.referral-tree .sub-referral-tree {
  padding-inline-start: 3.125rem;
  padding-top: 8px;
  display: none;
  transition: all 0s;
}

.referral-tree .sub-referral-tree.active {
  display: block;
}

.referral-tree .sub-referral-tree li {
  padding: 0.4375rem 0;
}

.referral-tree .sub-referral-tree li.has-referral::before {
  height: calc(100% - 69px);
}

.referral-tree .sub-referral-tree .single-referral {
  position: relative;
}

.referral-tree .sub-referral-tree .single-referral::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -31px;
  width: 20px;
  height: 1px;
  background-color: var(--border-color);
}

.referral-tree .sub-referral-tree .single-referral::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -13px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background-color: var(--border-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.referral-tree .has-referral {
  position: relative;
}

.referral-tree .has-referral::before {
  position: absolute;
  content: "";
  top: 25px;
  left: 20px;
  width: 1px;
  height: calc(100% - 62px);
  background-color: var(--border-color);
}

.referral-tree .has-referral .single-referral {
  padding-left: 1.25rem;
}

.single-referral {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.9375rem;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #fff;
  border: 1px solid var(--border-color);
}

.single-referral:hover {
  border-color: var(--primary);
}

.single-referral .amount {
  text-align: right;
}

.single-referral .expand-btn {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-referral .expand-btn.active::after {
  content: "\ea13";
}

.single-referral .expand-btn::after {
  position: absolute;
  content: "\f1af";
  font-family: remixicon !important;
  font-style: normal;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

/* === referral css end === */
/* === toggle-btn css start === */
.toggle-handle {
  background-color: #fff;
}

.btn.toggle.btn-xs {
  height: 30px !important;
  padding: 0;
}

.btn .toggle-group .btn-xs {
  padding: 4px 10px;
  padding-left: 5px;
  font-size: 13px !important;
}

.btn .toggle-group .btn-xs.toggle-off {
  padding-left: 12px;
}

/* === toggle-btn css end === */
/* === payment gateway css start === */
.gateway-img {
  max-height: 40px;
  width: 100px;
}

/* === payment gateway css end === */
/* === drop zone css start === */
.drop-zone {
  min-height: 300px;
  position: relative;
}

.drop-zone.drop-zone-sm {
  min-height: 200px;
}

.drop-zone .drop-zone-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.drop-zone .drop-zone-thumb:hover .overlay {
  opacity: 1;
}

.drop-zone .drop-zone-thumb .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.drop-zone .drop-zone-thumb .overlay button {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0.25rem 0.625rem;
  background-color: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: var(--danger);
  font-size: 0.625rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* === drop zone css end === */
/* === support ticket css start === */
.all-reply-body {
  max-height: 400px;
  overflow-y: auto;
  padding-inline-end: 0.75rem;
}

.all-reply-body::-webkit-scrollbar {
  width: 6px;
}

.all-reply-body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 20px;
}

.all-reply-body::-webkit-scrollbar-track {
  background-color: var(--light);
  border-radius: 20px;
}

/* === support ticket css end === */
/* === icon list css start === */
.icon-list li + li {
  margin-top: 1.25rem;
}

.icon-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.icon-list-icon {
  width: 12px;
  height: 12px;
  position: relative;
  margin-inline-start: 6px;
  margin-block-start: 8px;
  flex-shrink: 0;
}

.icon-list-icon::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.icon-list-icon::after {
  position: absolute;
  content: "";
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  background-color: var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 0.35;
}

.icon-list-content {
  width: 100%;
  margin-top: 1.25rem;
}

@media (min-width: 576px) {
  .icon-list-content {
    width: calc(100% - 40px);
    margin-top: 0;
  }
}
/* === icon list css end === */
/* === social media css start === */
.social-media-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}

.social-media-links li a {
  width: 36px;
  height: 36px;
  background-color: var(--secondary);
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.social-media-links li a:hover {
  background-color: var(--primary);
  color: #fff;
}

/* === social media css end === */
/* === avatar css start === */
*[class*=avatar-] {
  object-fit: cover;
  -o-object-fit: cover;
}

*[class*=avatar-].has-circle::before {
  content: "/";
}

.avatar-6xl {
  width: 6.25rem;
  height: 6.25rem;
}

.avatar-5xl {
  width: 5rem;
  height: 5rem;
}

.avatar-4xl {
  width: 4.375rem;
  height: 4.375rem;
}

.avatar-3xl {
  width: 3.75rem;
  height: 3.75rem;
}

.avatar-2xl {
  width: 3.125rem;
  height: 3.125rem;
}

.avatar-xl {
  width: 2.75rem;
  height: 2.75rem;
}

.avatar-lg {
  width: 2.5rem;
  height: 2.5rem;
}

.avatar-md {
  width: 2rem;
  height: 2rem;
}

.avatar-sm {
  width: 1.5rem;
  height: 1.5rem;
}

.avatar-xs {
  width: 1.25rem;
  height: 1.25rem;
}

.avatar-chain-list {
  display: flex;
  align-items: center;
}

.avatar-chain-list li + li {
  margin-left: -0.625rem;
}

/* === avatar css end === */
/* === progressbar css start === */
/* Progress bar css start */
.max-w-66 {
  max-width: 66px;
}

.max-w-112 {
  max-width: 112px;
}

.progress {
  background-color: #efefef;
}

.progress-xs {
  height: 4px;
}

.progress-sm {
  height: 8px;
}

.progress-md {
  height: 12px;
}

.progress-lg {
  height: 12px;
}

/* Progress bar css End */
/* === progressbar css end === */
/* === scroll css start === */
.scroll-y {
  overflow-y: auto;
}

.scroll-y::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
}

.scroll-y::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
}

.scroll-y ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

/* === scroll css end === */
/* === divider css start === */
.or-divider {
  text-align: center;
  position: relative;
  z-index: 1;
}

.or-divider::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  z-index: -1;
}

.or-divider span {
  background-color: #fff;
  padding: 0 0.9375rem;
  font-weight: 500;
}

/* === divider css end === */
/* === header css start === */
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0);
}

.header-section .header-inner {
  display: flex;
}

.header-section .logo-part img {
  max-height: 42px;
}

.header-section .main-part {
  width: calc(100% - 150px);
  padding-left: 30px;
}

@media (max-width: 575px) {
  .header-section .main-part {
    width: calc(100% - 90px);
    padding-left: 10px;
  }
}
.header-main-part-wrapper {
  padding-block: 1rem;
}

@media (min-width: 1200px) {
  .header-main-part-wrapper {
    padding-block: 0.6875rem;
  }
}
.header-main-part {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .header-main-part {
    padding-block: 8px;
  }
}
.header-menu-list-wrapper {
  transition: all 0.3s;
  margin-inline-start: 3.75rem;
  display: none;
}

@media (min-width: 1200px) {
  .header-menu-list-wrapper {
    display: block;
  }
}
.header-menu-list-wrapper .mobile-menu-close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 18px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

@media (min-width: 992px) {
  .header-menu-list-wrapper .mobile-menu-close-btn {
    display: none;
  }
}
.mobile-menu-open-btn {
  font-size: 28px;
  color: #fff;
}

@media (min-width: 992px) {
  .mobile-menu-open-btn {
    display: none;
  }
}
.header-menu-list {
  display: flex;
  align-items: center;
}

.header-menu-list li:first-child a {
  padding-left: 0;
}

.header-menu-list li a {
  text-transform: capitalize;
  font-weight: 400;
  color: var(--body-color);
  padding: 19px 16px;
}

.header-menu-list li a:hover {
  color: #d0d0d0;
}

.header-menu-list li a:hover span::after {
  width: 100%;
  background-color: #d0d0d0;
  opacity: 1;
}

.header-menu-list li a span {
  position: relative;
}

.header-menu-list li a span::after {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 0;
  width: 6px;
  height: 1px;
  background-color: rgba(207, 207, 207, 0.2);
  transform-origin: 50% 50% 0px;
  opacity: 0;
  transition: cubic-bezier(0.17, 0.67, 0.83, 0.67) 0.5s;
}

.res-menu-toggle-btn {
  width: 24px;
  height: 20px;
  background-color: transparent;
  border: none;
  position: relative;
  margin-left: 30px;
  transition: all 0.3s;
}

@media (min-width: 1200px) {
  .res-menu-toggle-btn {
    display: none;
  }
}
.res-menu-toggle-btn::before, .res-menu-toggle-btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.res-menu-toggle-btn::before {
  top: 0;
  transition: all 0.3s;
}

.res-menu-toggle-btn::after {
  bottom: 0;
  transition: all 0.3s;
}

.res-menu-toggle-btn.active {
  height: 2px;
}

.res-menu-toggle-btn.active::before {
  transform: rotate(45deg);
}

.res-menu-toggle-btn.active::after {
  transform: rotate(-45deg);
}

.responsive-menu {
  position: fixed;
  top: -100px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5411764706);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 100px 20px 20px 20px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.responsive-menu.active {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.responsive-menu ul {
  text-align: center;
}

.responsive-menu ul li + li {
  margin-top: 12px;
}

.responsive-menu-btn {
  margin-top: 20px;
}

@media (min-width: 576px) {
  .responsive-menu-btn {
    display: none;
  }
}
/* === header css end === */
/* === footer css start === */
.footer-section {
  padding-top: 100px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.footer-section-shade-bg {
  position: absolute;
  filter: brightness(1.27);
  -webkit-filter: brightness(1.27);
  inset: 0 -182px 0 -181px;
  z-index: -2;
}

.footer-section-shade-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.footer-section .footer-top-globe {
  position: absolute;
  top: -250px;
  right: 20%;
  z-index: -1;
  width: 600px;
}

.footer-section .footer-top-globe img {
  width: 100%;
}

.footer-section .section-subtitle {
  max-width: 45ch;
  margin-bottom: 24px;
}

.footer-section .cmn-btn-white .btn-layer {
  padding-inline: 32px;
}

.footer-menu-area {
  margin-top: 60px;
}

.footer-menu-widget-title {
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-menu-list li + li {
  margin-top: 12px;
}

.footer-menu-list li a {
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.footer-menu-list li a:hover {
  color: var(--display-color);
}

.footer-menu-list li a:hover i {
  transform: rotate(0);
}

.footer-menu-list li a span {
  max-width: calc(100% - 40px);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-menu-list li a i {
  font-size: 26px;
  line-height: 1;
  font-weight: 600;
  transform: rotate(-45deg);
  transition: all 0.3s;
}

.footer-copyright {
  background: #0d0d12;
  border-radius: 20px;
  text-align: center;
  margin-top: 60px;
  padding: 16px;
}

.footer-copyright p {
  font-size: 14px;
}

.footer-bottom-logo-text {
  margin-top: 40px;
  mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.footer-bottom-logo-text img {
  opacity: 0.2;
}

/* === footer css end === */
/* === breadcrumb css start === */
/* === breadcrumb css end === */
/* === user sidebar css start === */
/* === user sidebar css end === */
/* === user nav css start === */
/* === user nav css end === */
/* === user body css start === */
/* === user body css end === */
/* === user footer css start === */
/* === user footer css end === */
/* === banner css start === */
.banner-section {
  position: relative;
  padding-top: 120px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .banner-section {
    padding-top: 140px;
  }
}
@media (min-width: 1200px) {
  .banner-section {
    padding-top: 150px;
  }
}
@media (min-width: 1400px) {
  .banner-section {
    padding-top: 170px;
  }
}
.banner-section .banner-title {
  margin-bottom: 20px;
  font-size: 28px;
}

@media (min-width: 576px) {
  .banner-section .banner-title {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .banner-section .banner-title {
    font-size: 48px;
  }
}
@media (min-width: 1400px) {
  .banner-section .banner-title {
    font-size: 56px;
  }
}
.banner-section .banner-subtitle {
  max-width: 70ch;
  margin-inline: auto;
}

.banner-top-title {
  padding: 4px 12px 4px 40px;
  display: inline-flex;
  border: 1px solid rgba(207, 207, 207, 0.2);
  background: linear-gradient(90deg, rgba(207, 207, 207, 0.0392156863) 0%, rgba(207, 207, 207, 0.2) 45.045045045%, rgba(0, 0, 0, 0) 100%);
  border-radius: 99px;
  margin-bottom: 20px;
  position: relative;
}

.banner-top-title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 20px;
  width: 7px;
  height: 7px;
  background-color: #4dff64;
  border-radius: 50%;
  transform: translateY(-50%);
  animation: dotGlow 1.5s infinite forwards;
}

.banner-top-title span {
  color: var(--display-color);
}

.banner-btns {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.banner-main-img-wrapper {
  box-shadow: 0 -6px 8px -6px #fff;
  position: relative;
  z-index: 0;
  border-radius: 12px;
  overflow: visible;
  margin-top: 40px;
  z-index: -1;
}

@media (min-width: 576px) {
  .banner-main-img-wrapper {
    margin-top: 60px;
  }
}
@media (min-width: 1200px) {
  .banner-main-img-wrapper {
    margin-top: 100px;
  }
}
.banner-main-img-wrapper .banner-main-img-shade {
  transform: translate(-50%, -50%);
  will-change: transform;
  filter: brightness(1.28);
  -webkit-filter: brightness(1.28);
  aspect-ratio: 1.3994732221/1;
  height: 1400px;
  left: 49%;
  top: 16%;
  width: 200%;
  position: absolute;
  z-index: -1;
  opacity: 0.25;
}

.banner-main-img-wrapper .banner-main-img-shade img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
  object-position: center;
}

.banner-main-img {
  border-radius: 12px;
  overflow: visible;
  position: relative;
  width: 100%;
  mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 7%, rgb(0, 0, 0) 47%) add;
  -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 7%, rgb(0, 0, 0) 47%) add;
}

.banner-main-img img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: top;
  -o-object-position: top;
}

@media (min-width: 576px) {
  .banner-main-img img {
    height: 400px;
  }
}
@media (min-width: 992px) {
  .banner-main-img img {
    height: 500px;
  }
}
@media (min-width: 1200px) {
  .banner-main-img img {
    height: 600px;
  }
}
@media (min-width: 1400px) {
  .banner-main-img img {
    height: 700px;
  }
}
.banner-video-container {
  position: absolute;
  flex: none;
  height: 100%;
  left: 0;
  right: 0;
  filter: grayscale(1);
  mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 17.1171171171%, rgb(0, 0, 0) 100%) add;
  -webkit-filter: grayscale(1);
  -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 17.1171171171%, rgb(0, 0, 0) 100%) add;
  opacity: 0.1;
  top: 0%;
  z-index: -3;
}

.banner-video-container video {
  cursor: auto;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  display: block;
  object-fit: cover;
  background-color: #000;
  object-position: 50% 50%;
}

.banner-overylay-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  flex: none;
  mask: radial-gradient(59% 39% at 50% 45.8%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 76.0663006757%, rgba(0, 0, 0, 0) 100%) add;
  -webkit-mask: radial-gradient(59% 39% at 50% 45.8%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 76.0663006757%, rgba(0, 0, 0, 0) 100%) add;
  z-index: -2;
}

.banner-overylay-1-inner {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background-image: radial-gradient(rgba(207, 207, 207, 0.2) 0.1px, transparent 0.9px);
  background-size: 6px 6px;
  background-position: 50% 50%;
  background-repeat: repeat;
  width: 100%;
  height: 100%;
}

.banner-overylay-1 .inner-two {
  position: absolute;
  inset: 0;
  mask-image: radial-gradient(white 0.1px, transparent 0.9px);
  mask-size: 6px 6px;
  mask-position: 50% 50%;
  mask-repeat: repeat;
  -webkit-mask-image: radial-gradient(white 0.1px, transparent 0.9px);
  -webkit-mask-size: 6px 6px;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-repeat: repeat;
}

@-webkit-keyframes dotGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(77, 255, 101, 0.6196078431);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(77, 255, 100, 0);
  }
}
@-moz-keyframes dotGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(77, 255, 101, 0.6196078431);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(77, 255, 100, 0);
  }
}
@-ms-keyframes dotGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(77, 255, 101, 0.6196078431);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(77, 255, 100, 0);
  }
}
@keyframes dotGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(77, 255, 101, 0.6196078431);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(77, 255, 100, 0);
  }
}
.presale-box {
  border-radius: 30px;
  background: linear-gradient(150deg, #ff367c 0%, rgba(0, 0, 0, 0) 48%, #a963ff 100%);
  box-shadow: rgba(255, 128, 176, 0.28) 0px -4px 32px 0px, rgba(87, 95, 255, 0.25) 0px 10px 26px 0px;
  padding: 2px 1px 1px;
  border-radius: 20px;
}

.presale-box-inner {
  background: radial-gradient(59% 35% at 2.3% 1.6%, #1a1d31 0%, #0d0d12 100%);
  border-radius: 20px;
  padding: 20px;
}

@media (min-width: 768px) {
  .presale-box-inner {
    padding: 30px 30px;
  }
}
.presale-box .title {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  font-family: var(--third-font);
  text-align: center;
  line-height: 1.1;
}

.presale-box .presale-price {
  font-size: 18px;
  color: #fff;
}

.presale-box .presale-status {
  font-size: 20px;
}

.presale-box .cmn-btn-white {
  width: 100%;
}

.presale-progress {
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background-color: #000;
  border-radius: 99px;
  position: relative;
}

.presale-progress .presale-progress-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 99px;
  background: #a235a6;
  background: -webkit-linear-gradient(to bottom, #a235a6, #CC586D);
  background: linear-gradient(to bottom, #a235a6, #CC586D);
}

.presale-currency {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.presale-currency-single {
  width: 100px;
  height: 32px;
  background-color: #000;
  border-radius: 99px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.presale-currency-single span {
  background: linear-gradient(to right, #a235a6 0%, #CC586D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.presale-field {
  text-align: center;
}

.presale-field input {
  height: 44px;
  background-color: #000;
  border-radius: 8px;
  padding: 8px 16px;
  width: 100%;
  color: #fff;
  font-weight: 500;
  text-align: left;
}

.presale-button {
  margin-top: 16px;
  width: 100%;
  background-color: var(--primary);
  color: #fff;
  border: none;
  font-family: var(--third-font);
  font-weight: 600;
  font-size: 22px;
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
}

.presale-qns-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
}

.presale-qns-links .cmn-btn-dark {
  font-size: 12px;
  font-weight: 500;
  min-width: auto;
}

.presale-qns-links .cmn-btn-dark .btn-layer {
  min-width: auto;
}

.breadcrumb-banner {
  position: relative;
  padding-top: 200px;
  padding-bottom: 50px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.breadcrumb-banner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(12, 21, 55, 0.8196078431), rgba(31, 36, 55, 0.15));
  z-index: -1;
}

.breadcrumb-banner .title {
  font-size: 42px;
}

/* === banner css end === */
/* === brand css start === */
.brand-section {
  padding-block: 1.25rem;
  overflow: hidden;
}

@media (min-width: 576px) {
  .brand-section {
    padding-block: 1.875rem;
  }
}
@media (min-width: 992px) {
  .brand-section {
    padding-block: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .brand-section {
    padding-block: 3.75rem;
  }
}
@media (min-width: 1400px) {
  .brand-section {
    padding-block: 5rem;
  }
}
.brand-section .brand-title {
  color: var(--display-color);
}

.brand-slider {
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%);
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item img {
  max-height: 48px;
}

/* === brand css end === */
/* === experience css start === */
.products-section {
  padding-block: 20px;
}

@media (min-width: 576px) {
  .products-section {
    padding-block: 1.875rem;
  }
}
@media (min-width: 992px) {
  .products-section {
    padding-block: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .products-section {
    padding-block: 3.75rem;
  }
}
@media (min-width: 1400px) {
  .products-section {
    padding-block: 5rem;
  }
}
.products-section .section-subtitle {
  max-width: 45ch;
  margin-inline: auto;
}

.products-item {
  border: 1px solid #1a1d31;
  background-color: #000;
  border-radius: 20px;
  height: 100%;
}

.products-item:hover .thumb figure {
  filter: brightness(1.5);
}

.products-item .thumb {
  aspect-ratio: 1.6033057851/1;
  height: 215px;
  position: relative;
  width: 100%;
}

@media (min-width: 576px) {
  .products-item .thumb {
    height: 242px;
  }
}
.products-item .thumb figure {
  filter: brightness(1.2);
  mask: linear-gradient(#000000 0%, #000000 81.989%, rgba(0, 0, 0, 0.5019607843) 90.991%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: rgba(255, 230, 219, 0.1215686275) 0px -1px 0px 0px;
  transition: all 0.3s ease;
}

.products-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: inherit;
  object-position: center;
  -o-object-position: center;
}

.products-item .content {
  padding: 20px 24px 24px 24px;
}

.products-item .content p {
  font-size: 15px;
}

.products-item.style-lg .thumb {
  height: 215px;
}

@media (min-width: 576px) {
  .products-item.style-lg .thumb {
    height: 362px;
  }
}
/* === experience css end === */
/* === process css start === */
.process-section {
  padding-block: 20px;
}

@media (min-width: 576px) {
  .process-section {
    padding-block: 1.875rem;
  }
}
@media (min-width: 992px) {
  .process-section {
    padding-block: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .process-section {
    padding-block: 3.75rem;
  }
}
@media (min-width: 1400px) {
  .process-section {
    padding-block: 5rem;
  }
}
.process-section .section-title {
  max-width: 20ch;
}

.process-left-item {
  border: 1px solid #1a1d31;
  background-color: #000;
  border-radius: 20px;
  box-shadow: rgba(170, 128, 255, 0.09) 0px 24px 50px 0px;
  overflow: hidden;
  position: sticky;
  top: 300px;
  display: none;
}

@media (min-width: 992px) {
  .process-left-item {
    display: block;
  }
}
.process-left-item .thumb figure {
  filter: drop-shadow(rgba(0, 0, 0, 0.09) 0px -10px 6px);
  mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 17.1171%, rgb(0, 0, 0) 100%);
  -webkit-mak: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 17.1171%, rgb(0, 0, 0) 100%);
  height: 311px;
}

.process-left-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: inherit;
  object-position: center;
  -o-object-position: center;
  display: none;
}

.process-left-item .thumb img.active {
  display: block;
}

.process-left-item .content {
  padding: 0 28px 28px 28px;
}

.process-left-item .content > div {
  display: none;
}

.process-left-item .content > div.active {
  display: block;
}

.process-left-item .content p {
  font-size: 14px;
}

.single-process-item {
  margin-top: 50px;
}

.single-process-item .description {
  max-width: 70ch;
  margin-bottom: 20px;
}

.single-process-item .thumb {
  border: 1px solid #1a1d31;
  border-top-width: 2px;
  background: radial-gradient(52% 37% at 50% -0.0000018357%, #1a1d31 0%, #0d0d12 100%);
  border-radius: 20px;
  overflow: hidden;
}

.single-process-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: inherit;
}

/* === process css end === */
/* === integration css start === */
.integration-section {
  padding-block: 20px;
  overflow: hidden;
}

@media (min-width: 576px) {
  .integration-section {
    padding-block: 1.875rem;
  }
}
@media (min-width: 992px) {
  .integration-section {
    padding-block: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .integration-section {
    padding-block: 3.75rem;
  }
}
@media (min-width: 1400px) {
  .integration-section {
    padding-block: 5rem;
  }
}
.integration-feature-list {
  margin-top: 40px;
}

.integration-feature-list li + li {
  margin-top: 16px;
}

.integration-feature-list li {
  position: relative;
  padding-inline-start: 30px;
}

.integration-feature-list li::before {
  position: absolute;
  top: -2px;
  left: 0;
  font-size: 20px;
  content: "\f272";
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 700 !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(274deg, #6e86ff 0%, #ff367c 100%);
}

.integration-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 730px;
  position: relative;
  z-index: 0;
}

.integration-slider-wrapper .integration-grad-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  aspect-ratio: 1.0119250426/1;
  filter: contrast(0.62) saturate(1.01);
  height: 350px;
  transform-origin: 50% 50%;
  animation: spin 10s linear infinite;
  will-change: transform;
}

@media (min-width: 576px) {
  .integration-slider-wrapper .integration-grad-shape {
    height: 570px;
  }
}
@-webkit-keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-moz-keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-ms-keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.integration-slider-box {
  width: 280px;
  height: 280px;
  background: linear-gradient(131deg, #d0d0d0 15%, rgba(207, 207, 207, 0.2) 50%, #d0d0d0 85%);
  border-radius: 50%;
  padding: 8px;
}

@media (min-width: 576px) {
  .integration-slider-box {
    width: 415px;
    height: 415px;
  }
}
.integration-slider-box-inner {
  width: 100%;
  height: 100%;
  background: radial-gradient(59% 61% at 15.8% 14%, #000000 0%, #0d0d12 100%);
  border-radius: 50%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  overflow: hidden;
}

.integration-slider-one {
  transform: rotate(180deg);
  margin-bottom: 20px;
}

.integration-slider-one .single-slide {
  transform: rotate(180deg);
}

.integration-slider-one .slick-list,
.integration-slider-two .slick-list {
  margin: 0 -10px;
}

.integration-slider-one .single-slide,
.integration-slider-two .single-slide {
  padding: 0 10px;
}

.integration-item {
  border: 1px solid #1a1d31;
  border-radius: 16px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(50% 50% at 50% 50%, #1a1d31 0%, #000000 100%);
}

.integration-item img {
  max-width: 48px;
  max-height: 48px;
}

.integration-items-wrapper {
  margin-top: 100px;
}

.integration-card {
  text-align: center;
}

@media (min-width: 992px) {
  .integration-card {
    text-align: left;
  }
}
.integration-card-icon {
  max-height: 60px;
}

.integration-card .title {
  margin-top: 30px;
}

/* === integration css end === */
/* === testimonial css start === */
.testimonial-section {
  position: relative;
  padding-block: 20px;
  z-index: 0;
  overflow: hidden;
}

@media (min-width: 576px) {
  .testimonial-section {
    padding-block: 1.875rem;
  }
}
@media (min-width: 992px) {
  .testimonial-section {
    padding-block: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .testimonial-section {
    padding-block: 3.75rem;
  }
}
@media (min-width: 1400px) {
  .testimonial-section {
    padding-block: 5rem;
  }
}
.testimonial-section .section-subtitle {
  max-width: 45ch;
  margin-inline: auto;
}

.testimonial-section-dot-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 923px;
  height: 625px;
  filter: brightness(1.24);
  -webkit-filter: brightness(1.24);
  z-index: -1;
}

.testimonial-item {
  padding: 2px 1px 1px;
  border-radius: 20px;
  background: linear-gradient(180deg, #323648 0%, #1a1d31 100%);
}

.testimonial-item-inner {
  padding: 12px 12px 24px;
  border-radius: 20px;
  background: radial-gradient(59% 35% at 2.3% 1.6%, #1a1d31 0%, #0d0d12 100%);
}

.testimonial-item .details {
  padding: 16px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5411764706);
}

.testimonial-item .details .quote-icon {
  color: #323648;
  margin-bottom: 12px;
}

.testimonial-item .details p {
  color: #d0d0d0;
}

.testimonial-item .client {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline: 16px;
  margin-top: 30px;
}

.testimonial-item .client .thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.testimonial-item .client .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.testimonial-item .client .content h6 {
  font-size: 16px;
  margin-bottom: 2px;
}

.testimonial-slider-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
  justify-content: center;
}

.testimonial-slider-nav button {
  border: none;
  background: #0d0d12;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.testimonial-slider .slick-list {
  margin: 0 -15px;
}

.testimonial-slider .single-slide {
  padding: 0 15px;
}

/* === testimonial css end === */
/* === security css start === */
.security-section {
  padding-block: 20px;
  position: relative;
  z-index: 0;
}

@media (min-width: 576px) {
  .security-section {
    padding-block: 1.875rem;
  }
}
@media (min-width: 992px) {
  .security-section {
    padding-block: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .security-section {
    padding-block: 3.75rem;
  }
}
@media (min-width: 1400px) {
  .security-section {
    padding-block: 5rem;
  }
}
.security-section .section-subtitle {
  max-width: 50ch;
  margin-inline: auto;
}

.security-section-dot-bg {
  position: absolute;
  bottom: 80px;
  right: 15%;
  width: 853px;
  height: 595px;
  filter: brightness(1.24);
  -webkit-filter: brightness(1.24);
  z-index: -1;
}

.security-card {
  text-align: center;
}

@media (min-width: 992px) {
  .security-card {
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .security-card {
    padding-right: 40px;
  }
}
.security-card-icon {
  max-height: 60px;
}

.security-card .title {
  margin-top: 30px;
}

.security-box {
  position: relative;
}

.security-box .security-anim-box {
  position: absolute;
  animation: boxAnim 1.5s ease-in-out infinite alternate;
}

.security-box .box-top-left {
  top: 0;
  left: 0;
  height: 117px;
}

.security-box .box-bottom-left {
  bottom: 0;
  left: 0;
  height: 153px;
  animation-delay: 1s;
}

.security-box .box-top-right {
  top: 0;
  right: 0;
  height: 80px;
  animation-delay: 0.5s;
}

.security-box .box-bottom-right {
  bottom: 0;
  right: 0;
  height: 119px;
  animation-delay: 0.3s;
}

@-webkit-keyframes boxAnim {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(-25px) rotate(15deg);
  }
}
@-moz-keyframes boxAnim {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(-25px) rotate(15deg);
  }
}
@-ms-keyframes boxAnim {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(-25px) rotate(15deg);
  }
}
@keyframes boxAnim {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(-25px) rotate(15deg);
  }
}
/* === security css end === */
/* === tokenomics css start === */
.tokenomics-section {
  position: relative;
  padding-block: 20px;
  z-index: 0;
}

@media (min-width: 576px) {
  .tokenomics-section {
    padding-block: 1.875rem;
  }
}
@media (min-width: 992px) {
  .tokenomics-section {
    padding-block: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .tokenomics-section {
    padding-block: 3.75rem;
  }
}
@media (min-width: 1400px) {
  .tokenomics-section {
    padding-block: 5rem;
  }
}
.tokenomics-info-wrapper {
  padding: 2px 1px 1px;
  border-radius: 20px;
  background: linear-gradient(180deg, #323648 0%, #1a1d31 100%);
  margin-top: 40px;
}

@media (min-width: 576px) {
  .tokenomics-info-wrapper {
    margin-top: 80px;
  }
}
.tokenomics-info-wrapper-inner {
  padding: 20px;
  border-radius: 20px;
  background: radial-gradient(59% 35% at 2.3% 1.6%, #1a1d31 0%, #0d0d12 100%);
}

@media (min-width: 576px) {
  .tokenomics-info-wrapper-inner {
    padding: 40px;
  }
}
.tokenomics-info-item {
  padding-left: 20px;
}

.tokenomics-info-item .title {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 4px;
  position: relative;
  z-index: 0;
}

@media (min-width: 576px) {
  .tokenomics-info-item .title {
    font-size: 16px;
  }
}
.tokenomics-info-item .title::before {
  position: absolute;
  content: "";
  top: 5px;
  left: -20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(150deg, #ff367c 0%, #a963ff 100%);
}

.token-address-group {
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
}

.token-address-group .token-address-link {
  padding: 12px 16px;
  font-size: 18px;
  flex-grow: 1;
}

.token-address-group .token-address-icon {
  width: 56px;
  background: linear-gradient(150deg, #ff367c 0%, #a963ff 100%);
  font-size: 20px;
  color: #fff;
  border-radius: 0 8px 8px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* === tokenomics css end === */
/* === pricing css start === */
.pricing-section {
  padding-block: 20px;
}

@media (min-width: 576px) {
  .pricing-section {
    padding-block: 1.875rem;
  }
}
@media (min-width: 992px) {
  .pricing-section {
    padding-block: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .pricing-section {
    padding-block: 3.75rem;
  }
}
@media (min-width: 1400px) {
  .pricing-section {
    padding-block: 5rem;
  }
}
.pricing-section .section-subtitle {
  max-width: 45ch;
  margin-inline: auto;
}

.plan-switcher {
  border: 1px solid #1a1d31;
  display: inline-flex;
  align-items: center;
  border-radius: 99px;
  background: #0d0d12;
  margin-bottom: 20px;
  border-radius: 99px;
  padding: 4px;
  position: relative;
  z-index: 0;
}

.plan-switcher-layer {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 50%;
  height: calc(100% - 10px);
  background: linear-gradient(170deg, var(--token-ccc1bf5d-aaf9-4591-8eaf-f92c6b3e168c, #000000) -104%, var(--token-d5d29755-0e9f-463e-95e7-27bdb24200b1, rgba(0, 0, 0, 0.5411764706)) -19%, var(--token-983a7f8e-d604-42a5-bcea-0314a69d86a9, hsl(267, 100%, 69%)) 63%, var(--token-e3366ad4-64e4-42ee-a7f2-3f50c4c11709, rgb(110, 134, 255)) 110%);
  z-index: -1;
  padding: 1px;
  border-radius: 999px;
  transition: all 0.3s ease-in-out;
}

.plan-switcher-inner {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #0d0d12;
}

.plan-switcher .plan-switcher-btn {
  color: var(--display-color);
  padding: 4px 20px;
}

.pricing-plan {
  background-color: #323648;
  border-radius: 20px;
  padding: 2px 1px 1px;
  height: 100%;
}

.pricing-plan.popular-plan {
  background: linear-gradient(150deg, #ff367c 0%, rgba(0, 0, 0, 0) 48%, #a963ff 100%);
  box-shadow: rgba(255, 128, 176, 0.28) 0px -4px 32px 0px, rgba(87, 95, 255, 0.25) 0px 10px 26px 0px;
}

.pricing-plan-inner {
  padding: 32px;
  display: flex;
  flex-flow: column;
  background: radial-gradient(59% 35% at 2.3% 1.6%, #1a1d31 0%, #0d0d12 100%);
  border-radius: 20px;
  height: 100%;
}

.pricing-plan-top {
  padding-bottom: 20px;
  border-bottom: 1px solid #1a1d31;
}

.pricing-plan .plan-name {
  font-size: 24px;
  font-weight: 400;
  color: var(--display-color);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.pricing-plan .popular-plan-badge {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: var(--primary-two);
  border-radius: 99px;
  padding: 1px 12px;
}

.pricing-plan .plan-price {
  font-size: 52px;
  font-weight: 500;
  color: var(--display-color);
}

.pricing-plan .plan-price sub {
  font-size: 16px;
  color: var(--body-color);
  font-weight: 400;
  bottom: 0;
}

.pricing-plan .plan-price .yearly-price {
  display: none;
}

.pricing-plan .plan-price .yearly-text {
  display: none;
}

.pricing-plan-features {
  margin-top: 32px;
  margin-bottom: 60px;
}

.pricing-plan-features li + li {
  margin-top: 16px;
}

.pricing-plan-features li {
  position: relative;
  padding-inline-start: 30px;
}

.pricing-plan-features li::before {
  position: absolute;
  top: -2px;
  left: 0;
  font-size: 20px;
  content: "\f272";
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 700 !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(274deg, #6e86ff 0%, #ff367c 100%);
}

.pricing-plan-bottom {
  margin-top: auto;
}

/* === pricing css end === */
/* === faq css start === */
.faq-section {
  padding-top: 20px;
  padding-bottom: 40px;
}

@media (min-width: 576px) {
  .faq-section {
    padding-top: 1.875rem;
    padding-bottom: 3.75rem;
  }
}
@media (min-width: 992px) {
  .faq-section {
    padding-top: 3.125rem;
    padding-bottom: 4.375rem;
  }
}
@media (min-width: 1200px) {
  .faq-section {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1400px) {
  .faq-section {
    padding-top: 5rem;
    padding-bottom: 6.25rem;
  }
}
.faq-content .section-title {
  margin-bottom: 16px;
}

.faq-content .section-subtitle {
  max-width: 45ch;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .faq-content .section-subtitle {
    margin-left: 0;
    margin-right: auto;
  }
}
.accordion .accordion-item + .accordion-item {
  margin-top: 20px;
}

.accordion .accordion-item {
  padding: 2px 1px 1px;
  background-color: #1a1d31;
  border-radius: 20px;
  border: none;
}

.accordion .accordion-item-inner {
  background: radial-gradient(18% 116% at 94% 72.7%, #1a1d31 0%, #0d0d12 100%);
  border-radius: 20px;
  padding: 8px 4px;
}

.accordion .accordion-item .accordion-button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: var(--display-color);
  font-weight: 500;
}

.accordion .accordion-item .accordion-button::after {
  background-image: none;
  position: absolute;
  content: "\f64d";
  top: 50%;
  right: 16px;
  transform: translateY(-63%) rotate(0deg);
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  color: var(--display-color);
  font-size: 20px;
}

.accordion .accordion-item .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(134deg);
}

.accordion .accordion-item .accordion-body {
  color: var(--body-color);
  padding-top: 0;
}

/* === faq css end === */
/* === inner-page-banner css start === */
.inner-page-banner {
  padding-top: 100px;
  padding-bottom: 40px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .inner-page-banner {
    padding-top: 190px;
    padding-bottom: 100px;
  }
}
.inner-page-banner .section-subtitle {
  max-width: 55ch;
  margin-inline: auto;
}

.inner-page-shade {
  position: absolute;
  bottom: -598px;
  filter: brightness(1.2);
  -webkit-filter: brightness(1.2);
  width: 100%;
  height: 965px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
}

.inner-page-shade img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-position: center;
  object-fit: cover;
}

.inner-page-dots {
  position: absolute;
  bottom: 0;
  filter: brightness(1.2);
  -webkit-filter: brightness(1.2);
  mask: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.25) 100%) add;
  -webkit-mask: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.25) 100%) add;
  left: calc(50% - 600px);
  width: 1200px;
  top: 0;
  opacity: 0.5;
  z-index: -1;
}

.inner-page-dots img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-position: center;
  object-fit: cover;
}

/* === inner-page-banner css end === */
/* === feature-details css start === */
.details-top {
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(105deg, #2d2016 0%, rgba(0, 0, 0, 0.5411764706) 22%, #000000 50%, rgba(0, 0, 0, 0.5411764706) 79%, #1a1d31 100%);
  border-radius: 12px;
}

.details-top .details-top-single {
  padding: 24px 20px;
  width: 25%;
  height: 155px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .details-top .details-top-single {
    height: auto;
  }
}
.details-top .details-top-single:nth-child(1) h6 {
  transform: rotate(0deg);
}

.details-top .details-top-single h6 {
  margin-bottom: 0;
  white-space: nowrap;
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .details-top .details-top-single h6 {
    transform: rotate(0deg);
  }
}
.feature-details-list {
  margin-top: 40px;
}

.feature-details-list li {
  border-bottom: 1px solid #1a1d31;
  padding: 20px 12px;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 576px) {
  .feature-details-list li {
    padding: 24px 20px;
  }
}
.feature-details-list li span {
  width: 25%;
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 576px) {
  .feature-details-list li span {
    font-size: 16px;
  }
}
.feature-details-list li .grad-icon {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 576px) {
  .feature-details-list li .grad-icon {
    font-size: 26px;
  }
}
.feature-details-list li .grad-icon i {
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(274deg, #6e86ff 0%, #ff367c 100%);
}

.feature-details-list li .uncheck-icon {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #323648;
}

@media (min-width: 576px) {
  .feature-details-list li .uncheck-icon {
    font-size: 24px;
  }
}
/* === feature-details css end === */
/* === contact css start === */
.contact-section {
  padding-block: 20px;
}

@media (min-width: 576px) {
  .contact-section {
    padding-block: 1.875rem;
  }
}
@media (min-width: 992px) {
  .contact-section {
    padding-block: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .contact-section {
    padding-block: 3.75rem;
  }
}
@media (min-width: 1400px) {
  .contact-section {
    padding-block: 5rem;
  }
}
.contact-item-icon {
  max-height: 60px;
  margin-bottom: 30px;
}

.cta-box {
  padding: 2px 1px 1px;
  background-color: #1a1d31;
  border-radius: 20px;
  margin-top: 60px;
}

.cta-box-inner {
  padding: 20px;
  border-radius: 20px;
  background: radial-gradient(85% 47% at 7% 7.1%, #1a1d31 0%, #0d0d12 100%);
}

@media (min-width: 576px) {
  .cta-box-inner {
    padding: 20px 40px;
  }
}
.cta-box-img {
  max-height: 112px;
}

.cta-box .integration-feature-list {
  margin-top: 0;
}

.contact-form-wrapper {
  padding: 2px 1px 1px;
  background-color: #1a1d31;
  border-radius: 20px;
}

.contact-form-wrapper-inner {
  padding: 30px 20px 20px 20px;
  border-radius: 20px;
  background: radial-gradient(85% 47% at 7% 7.1%, #1a1d31 0%, #0d0d12 100%);
}

@media (min-width: 576px) {
  .contact-form-wrapper-inner {
    padding: 40px 24px 24px 24px;
  }
}
.form-label {
  font-size: 16px;
  color: var(--display-color);
  font-weight: 400;
}

.form-control {
  height: 40px;
  background-color: #000;
  border-radius: 10px;
  border: 1px solid #000;
  color: var(--display-color);
}

.form-control::-webkit-input-placeholder {
  color: var(--body-color);
}

.form-control::-moz-placeholder {
  color: var(--body-color);
}

.form-control:-ms-input-placeholder {
  color: var(--body-color);
}

.form-control:-moz-placeholder {
  color: var(--body-color);
}

.form-control:focus {
  color: var(--display-color);
  border-color: var(--primary);
  background-color: #000;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
}

textarea.form-control {
  min-height: 100px;
}

/* === contact css end === */
/* === cta css start === */
.cta-section {
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

@media (min-width: 992px) {
  .cta-section {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1400px) {
  .cta-section {
    padding-top: 200px;
    padding-bottom: 150px;
  }
}
.cta-section .cta-shape {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  aspect-ratio: 1/1;
  background-color: #000;
  border-radius: 50%;
  z-index: -1;
}

.cta-section .cta-shape-three {
  position: absolute;
  top: 95px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-image: linear-gradient(90deg, rgba(77, 137, 249, 0) 12%, #704ee7 32%, #e8428c 68%, rgba(237, 109, 75, 0) 87%);
  animation: rotate360 10s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
  z-index: -2;
}

.cta-section .cta-shape-two {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  aspect-ratio: 1/1;
  background: linear-gradient(150deg, #ff367c 0%, rgba(0, 0, 0, 0) 48%, #a963ff 100%);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(50px);
  z-index: -2;
}

@keyframes rotate360 {
  0% {
    transform: translateX(-50%) rotateZ(-80deg);
  }
  50% {
    transform: translateX(-50%) rotateZ(80deg);
  }
  100% {
    transform: translateX(-50%) rotateZ(-80deg);
  }
}
.cta-content .section-subtitle {
  max-width: 60ch;
  margin-inline: auto;
}

.cta-social {
  display: flex;
  justify-content: center;
  color: #fff;
  gap: 12px;
  transform: translateY(-50px);
}

@media (min-width: 992px) {
  .cta-social {
    transform: translateY(-70px);
  }
}
@media (min-width: 1400px) {
  .cta-social {
    transform: translateY(-120px);
  }
}
.cta-social li:nth-child(2) {
  transform: translateY(-15px);
}

.cta-social li:nth-child(2) a {
  width: 60px;
  height: 60px;
  font-size: 20px;
}

.cta-social li a {
  width: 48px;
  height: 48px;
  background-color: #000;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset -2px 2px 15px rgba(255, 54, 124, 0.35), inset 2px -2px 15px rgba(169, 99, 255, 0.35);
}

/* === cta css end === */
/* === about css start === */
.founder-section,
.integrity-section,
.counter-section,
.team-section {
  padding-block: 20px;
}

@media (min-width: 576px) {
  .founder-section,
  .integrity-section,
  .counter-section,
  .team-section {
    padding-block: 1.875rem;
  }
}
@media (min-width: 992px) {
  .founder-section,
  .integrity-section,
  .counter-section,
  .team-section {
    padding-block: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .founder-section,
  .integrity-section,
  .counter-section,
  .team-section {
    padding-block: 3.75rem;
  }
}
@media (min-width: 1400px) {
  .founder-section,
  .integrity-section,
  .counter-section,
  .team-section {
    padding-block: 5rem;
  }
}
.video-wrapper {
  background: linear-gradient(180deg, #323648 0%, #1a1d31 100%);
  padding: 2px 1px 1px;
  border-radius: 20px;
}

.video-wrapper-inner {
  padding: 12px;
  border-radius: 20px;
  height: 403px;
}

.video-wrapper video {
  cursor: auto;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  display: block;
  object-fit: cover;
  background-color: rgba(0, 0, 0, 0);
  object-position: 50% 50%;
}

.integrity-section .section-subtitle {
  max-width: 45ch;
  margin-inline: auto;
}

.integrity-item {
  background: linear-gradient(180deg, #323648 0%, #1a1d31 100%);
  border-radius: 20px;
  padding: 2px 1px 1px;
}

.integrity-item-inner {
  background: radial-gradient(52% 80% at 3% 3%, #1a1d31 0%, #0d0d12 100%);
  border-radius: 20px;
  padding: 30px;
}

.integrity-item .icon {
  max-height: 64px;
  margin-bottom: 30px;
}

.counter-item-number {
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(57deg, #f58327 0%, #6e86ff 80%);
}

@media (min-width: 1400px) {
  .counter-item-number {
    font-size: 68px;
  }
}
.team-item {
  padding: 2.2px 1.2px 1.2px 1.2px;
  background: #323648;
  border-radius: 20px;
}

.team-item-inner {
  background: radial-gradient(52% 33% at 4.9% 97.6%, #1a1d31 0%, #0d0d12 100%);
  border-radius: 20px;
}

.team-item .thumb {
  height: 265px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 24%, #000000 100%);
  -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 24%, #000000 100%);
}

.team-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.team-item .content {
  padding: 0 16px 16px 16px;
}

/* === about css end === */