@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #805af5;
  --secondary: #151725;
  --success: #12e65f;
  --info: #1abce9;
  --warning: #f17116;
  --danger: #f5104d;
  --light: #ecf8fb;
  --extra-light: #e2e8f08a;
  --muted: #8094ae;
  --dark: #2c323f;
  --white: #ffffff;
  --bg-white: #fff;
  --body-bg: #0e0c15;
  --body-user-panel: #f7f7f7;
  --surface-bg: var(--secondary);
  --sidebar-bg: #191919;
  --display-color: #fff;
  --body-color: #bcc3d7;
  --input-bg: #fff;
  --input-border: #e5e5e5;
  --placeholder-color: #858484;
  --border-color: #ffffff0d;
  --input-border-color: #ffffff21;
  --grad-one: #805af5;
  --grad-two: #ce99ff;
  --gradient: linear-gradient(90deg, var(--grad-one), var(--grad-two));
  --gradient-two: linear-gradient(90deg, var(--grad-two), var(--grad-one));
  --graient-light: radial-gradient(ellipse at 50% 0%, #93A8C73B 0%, #34374B00 100%);
  --graient-light-two: linear-gradient(171deg, rgba(0, 22, 22, .2) 5.82%, transparent 52.78%), radial-gradient(66.57% 66.57% at 50% 0, hsla(0, 0%, 100%, .15) 0, hsla(0, 0%, 100%, 0) 100%);
  --border-shadow: 0px 1px 1px 0px rgba(255, 255, 255, 0.1803921568627451) inset;
  --display-font: "Plus Jakarta Sans", sans-serif;
  --body-font: "Outfit", 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: 3.5rem;
  /* 62px */
  --display-2: 2.625rem;
  /* 48px */
  --display-3: 2rem;
  /* 38px */
  --display-4: 1.75rem;
  /* 32px */
  --display-5: 1.5rem;
  /* 22px */
  --display-6: 1.25rem;
  /* 20px */
}

@media (max-width: 1399px) {
  :root {
    --display-1: 3.25rem;
    /* 52px */
    --display-2: 2.25rem;
    /* 36px */
    --display-3: 2rem;
    /* 32px */
    --display-4: 1.5rem;
    /* 26px */
    --display-5: 1.25rem;
    /* 20px */
    --display-6: 1.125rem;
    /* 18px */
  }
}

@media (max-width: 991px) {
  :root {
    --display-1: 2.625rem;
    /* 42px */
    --display-2: 2rem;
    /* 32px */
    --display-3: 1.625rem;
    /* 26px */
    --display-4: 1.375rem;
    /* 24px */
    --display-5: 1.25rem;
    /* 20px */
  }
}

@media (max-width: 575px) {
  :root {
    --display-1: 2rem;
    /* 32px */
    --display-2: 1.625rem;
    /* 26px */
    --display-3: 1.5rem;
    /* 24px */
    --display-4: 1.25rem;
    /* 22px */
    --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;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

body::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 74, 97, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

body.overlay::before {
  opacity: 1;
  visibility: visible;
}

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 === */

/* === preloader css start === */
.it-preloader-holder {
  position: fixed;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  z-index: 9999;
}

.it-preloader {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  animation: rotatePreloader 2s infinite ease-in;
}

@keyframes rotatePreloader {
  0% {
    transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
  }
  100% {
    transform: translateX(-50%) translateY(-50%) rotateZ(-360deg);
  }
}
.it-preloader div {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.it-preloader div:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  width: 10%;
  height: 10%;
  background-color: var(--primary);
  transform: translateX(-50%);
  border-radius: 50%;
}

.it-preloader div:nth-child(1) {
  transform: rotateZ(0deg);
  animation: rotateCircle1 2s infinite linear;
  z-index: 9;
}

@keyframes rotateCircle1 {
  0% {
    opacity: 0;
  }
  0% {
    opacity: 1;
    transform: rotateZ(36deg);
  }
  7% {
    transform: rotateZ(0deg);
  }
  57% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.it-preloader div:nth-child(2) {
  transform: rotateZ(36deg);
  animation: rotateCircle2 2s infinite linear;
  z-index: 8;
}

@keyframes rotateCircle2 {
  5% {
    opacity: 0;
  }
  5.0001% {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  12% {
    transform: rotateZ(-36deg);
  }
  62% {
    transform: rotateZ(-36deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.it-preloader div:nth-child(3) {
  transform: rotateZ(72deg);
  animation: rotateCircle3 2s infinite linear;
  z-index: 7;
}

@keyframes rotateCircle3 {
  10% {
    opacity: 0;
  }
  10.0002% {
    opacity: 1;
    transform: rotateZ(-36deg);
  }
  17% {
    transform: rotateZ(-72deg);
  }
  67% {
    transform: rotateZ(-72deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.it-preloader div:nth-child(4) {
  transform: rotateZ(108deg);
  animation: rotateCircle4 2s infinite linear;
  z-index: 6;
}

@keyframes rotateCircle4 {
  15% {
    opacity: 0;
  }
  15.0003% {
    opacity: 1;
    transform: rotateZ(-72deg);
  }
  22% {
    transform: rotateZ(-108deg);
  }
  72% {
    transform: rotateZ(-108deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.it-preloader div:nth-child(5) {
  transform: rotateZ(144deg);
  animation: rotateCircle5 2s infinite linear;
  z-index: 5;
}

@keyframes rotateCircle5 {
  20% {
    opacity: 0;
  }
  20.0004% {
    opacity: 1;
    transform: rotateZ(-108deg);
  }
  27% {
    transform: rotateZ(-144deg);
  }
  77% {
    transform: rotateZ(-144deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.it-preloader div:nth-child(6) {
  transform: rotateZ(180deg);
  animation: rotateCircle6 2s infinite linear;
  z-index: 4;
}

@keyframes rotateCircle6 {
  25% {
    opacity: 0;
  }
  25.0005% {
    opacity: 1;
    transform: rotateZ(-144deg);
  }
  32% {
    transform: rotateZ(-180deg);
  }
  82% {
    transform: rotateZ(-180deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.it-preloader div:nth-child(7) {
  transform: rotateZ(216deg);
  animation: rotateCircle7 2s infinite linear;
  z-index: 3;
}

@keyframes rotateCircle7 {
  30% {
    opacity: 0;
  }
  30.0006% {
    opacity: 1;
    transform: rotateZ(-180deg);
  }
  37% {
    transform: rotateZ(-216deg);
  }
  87% {
    transform: rotateZ(-216deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.it-preloader div:nth-child(8) {
  transform: rotateZ(252deg);
  animation: rotateCircle8 2s infinite linear;
  z-index: 2;
}

@keyframes rotateCircle8 {
  35% {
    opacity: 0;
  }
  35.0007% {
    opacity: 1;
    transform: rotateZ(-216deg);
  }
  42% {
    transform: rotateZ(-252deg);
  }
  92% {
    transform: rotateZ(-252deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.it-preloader div:nth-child(9) {
  transform: rotateZ(288deg);
  animation: rotateCircle9 2s infinite linear;
  z-index: 1;
}

@keyframes rotateCircle9 {
  40% {
    opacity: 0;
  }
  40.0008% {
    opacity: 1;
    transform: rotateZ(-252deg);
  }
  47% {
    transform: rotateZ(-288deg);
  }
  97% {
    transform: rotateZ(-288deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.it-preloader div:nth-child(10) {
  transform: rotateZ(324deg);
  animation: rotateCircle10 2s infinite linear;
  z-index: 0;
}

@keyframes rotateCircle10 {
  45% {
    opacity: 0;
  }
  45.0009% {
    opacity: 1;
    transform: rotateZ(-288deg);
  }
  52% {
    transform: rotateZ(-324deg);
  }
  102% {
    transform: rotateZ(-324deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
/* === preloader css end === */

/* === flex css start === */
.item-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

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

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

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

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

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

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

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

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

.text-hover-primary {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

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

.text-hover-secondary {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

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

.text-hover-success {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

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

.text-hover-info {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

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

.text-hover-warning {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

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

.text-hover-danger {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

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

.text-hover-light {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

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

.text-hover-extra-light {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

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

.text-hover-muted {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

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

.text-hover-dark {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

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

.text-hover-white {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

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

.hover-text-white:hover {
  color: #fff !important;
}

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

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

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

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

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

.bg-light-secondary {
  background-color: rgba(21, 23, 37, 0.1254901961) !important;
}

.bg-light-success {
  background-color: rgba(15, 146, 63, 0.1254901961) !important;
}

.bg-light-info {
  background-color: rgba(14, 155, 194, 0.1254901961) !important;
}

.bg-light-warning {
  background-color: rgba(216, 99, 17, 0.1254901961) !important;
}

.bg-light-danger {
  background-color: rgba(196, 16, 63, 0.1254901961) !important;
}

.bg-light-light {
  background-color: rgba(236, 248, 251, 0.1254901961) !important;
}

.bg-light-extra-light {
  background-color: #e2e8f012 !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-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;
}

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

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

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

.light-gradient-bg {
  background: linear-gradient(to bottom, #f1f1f10f, #fff0);
}

.extra-light-bg {
  background-color: rgba(255, 255, 255, 0.031372549);
}

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

.light-bg {
  position: relative;
  z-index: 1;
}

.light-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 73, 213, 0.15);
  z-index: -2;
  opacity: 0.15;
}

/* === bg css end === */
/* === shadow css start === */
/* === shadow css end === */
/* === size css start === */
/* === size css end === */
/* === spacing css start === */
.it-section-pt-sm {
  padding-top: 1.25rem;
}

@media (min-width: 992px) {
  .it-section-pt-sm {
    padding-top: 2.1875rem;
  }
}

@media (min-width: 1200px) {
  .it-section-pt-sm {
    padding-top: 2.5rem;
  }
}

@media (min-width: 1400px) {
  .it-section-pt-sm {
    padding-top: 3.75rem;
  }
}

.it-section-pb-sm {
  padding-bottom: 1.25rem;
}

@media (min-width: 992px) {
  .it-section-pb-sm {
    padding-bottom: 2.1875rem;
  }
}

@media (min-width: 1200px) {
  .it-section-pb-sm {
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 1400px) {
  .it-section-pb-sm {
    padding-bottom: 3.75rem;
  }
}

.it-section-pt {
  padding-top: 2.5rem;
}

@media (min-width: 992px) {
  .it-section-pt {
    padding-top: 3.75rem;
  }
}

@media (min-width: 1200px) {
  .it-section-pt {
    padding-top: 5rem;
  }
}

@media (min-width: 1650px) {
  .it-section-pt {
    padding-top: 7.5rem;
  }
}

.it-section-pb {
  padding-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .it-section-pb {
    padding-bottom: 3.75rem;
  }
}

@media (min-width: 1200px) {
  .it-section-pb {
    padding-bottom: 5rem;
  }
}

@media (min-width: 1650px) {
  .it-section-pb {
    padding-bottom: 7.5rem;
  }
}

.ps-35 {
  padding-inline-start: 2.1875rem !important;
}

/* === spacing css end === */
/* === spacing css start === */
.radius-lg {
  border-radius: 24px !important;
  -webkit-border-radius: 24px !important;
  -moz-border-radius: 24px !important;
  -ms-border-radius: 24px !important;
  -o-border-radius: 24px !important;
}

/* === 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);*/
  color: var(--secondary);
  font-weight: 600;
  font-family: var(--display-font);
  line-height: 1.2;
}

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);
  line-height: 1.3;
}

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

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

.text-xxs {
  font-size: 0.5rem !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-top {
  border-top: 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%);
}

.top-30px {
  top: 30px;
}

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

@media (min-width: 992px) {
  .it-section-header {
    margin-bottom: 2.1875rem;
  }
}

@media (min-width: 1400px) {
  .it-section-header {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1650px) {
  .it-section-header {
    margin-bottom: 4.0625rem;
  }
}

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

@media (min-width: 576px) {
  .it-section-title {
    font-size: 1.75rem;
  }
}

@media (min-width: 1200px) {
  .it-section-title {
    font-size: 2rem;
  }
}

@media (min-width: 1400px) {
  .it-section-title {
    font-size: 2.625rem;
  }
}

@media (min-width: 1650px) {
  .it-section-title {
    font-size: 3rem;
  }
}

.it-section-title span {
  color: var(--primary) !important;
  font-weight: 400;
}

.it-section-caption {
  font-weight: 500;
  padding: 0.0625rem 0.75rem;
  color: var(--primary);
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  position: relative;
  border: 1px solid var(--primary);
  z-index: 1;
}

.it-section-caption::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  opacity: 0.1;
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
  z-index: -1;
}

.text-w-60 {
  max-width: 60ch;
}

/* === 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 === */
.btn {
  font-size: 1rem;
  padding: 0.5rem 1.125rem;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  font-weight: 500;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1200px) {
  .btn {
    padding: 0.625rem 1.5625rem;
  }
}

@media (min-width: 1400px) {
  .btn {
    padding: 0.875rem 2.25rem;
  }
}

.btn.btn-lg {
  font-size: 1rem;
  padding: 0.75rem 1.5625rem;
}

@media (min-width: 1400px) {
  .btn.btn-lg {
    font-size: 1.125rem;
    padding: 0.875rem 2.1875rem;
  }
}

.btn.btn-md {
  font-size: 0.9375rem;
}

@media (min-width: 1400px) {
  .btn.btn-md {
    padding: 0.5625rem 1.5625rem;
  }
}

.btn.btn-sm {
  font-size: 0.8125rem;
  padding: 0.375rem 0.75rem;
}

.btn-primary {
  background-color: #805af5 !important;
  color: #fff;
  border-color: #805af5;
}

.btn-primary:hover {
  background-color: rgba(128, 90, 245, 0.831372549) !important;
  color: #fff;
  border-color: rgba(128, 90, 245, 0.831372549);
}

.btn-primary:active,
.btn-primary:focus {
  background-color: #805af5 !important;
  color: #fff;
  border-color: #805af5;
}

.btn-primary.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #805af5;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-secondary {
  background-color: #151725 !important;
  color: #fff;
  border-color: #151725;
}

.btn-secondary:hover {
  background-color: rgba(21, 23, 37, 0.831372549) !important;
  color: #fff;
  border-color: rgba(21, 23, 37, 0.831372549);
}

.btn-secondary:active,
.btn-secondary:focus {
  background-color: #151725 !important;
  color: #fff;
  border-color: #151725;
}

.btn-secondary.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #151725;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-success {
  background-color: #0f923f !important;
  color: #fff;
  border-color: #0f923f;
}

.btn-success:hover {
  background-color: rgba(15, 146, 63, 0.831372549) !important;
  color: #fff;
  border-color: rgba(15, 146, 63, 0.831372549);
}

.btn-success:active,
.btn-success:focus {
  background-color: #0f923f !important;
  color: #fff;
  border-color: #0f923f;
}

.btn-success.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-success .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #0f923f;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-info {
  background-color: #0e9bc2 !important;
  color: #fff;
  border-color: #0e9bc2;
}

.btn-info:hover {
  background-color: rgba(14, 155, 194, 0.831372549) !important;
  color: #fff;
  border-color: rgba(14, 155, 194, 0.831372549);
}

.btn-info:active,
.btn-info:focus {
  background-color: #0e9bc2 !important;
  color: #fff;
  border-color: #0e9bc2;
}

.btn-info.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-info .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #0e9bc2;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-warning {
  background-color: #d86311 !important;
  color: #fff;
  border-color: #d86311;
}

.btn-warning:hover {
  background-color: rgba(216, 99, 17, 0.831372549) !important;
  color: #fff;
  border-color: rgba(216, 99, 17, 0.831372549);
}

.btn-warning:active,
.btn-warning:focus {
  background-color: #d86311 !important;
  color: #fff;
  border-color: #d86311;
}

.btn-warning.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-warning .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #d86311;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-danger {
  background-color: #c4103f !important;
  color: #fff;
  border-color: #c4103f;
}

.btn-danger:hover {
  background-color: rgba(196, 16, 63, 0.831372549) !important;
  color: #fff;
  border-color: rgba(196, 16, 63, 0.831372549);
}

.btn-danger:active,
.btn-danger:focus {
  background-color: #c4103f !important;
  color: #fff;
  border-color: #c4103f;
}

.btn-danger.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-danger .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #c4103f;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-light {
  background-color: #ecf8fb !important;
  color: #fff;
  border-color: #ecf8fb;
}

.btn-light:hover {
  background-color: rgba(236, 248, 251, 0.831372549) !important;
  color: #fff;
  border-color: rgba(236, 248, 251, 0.831372549);
}

.btn-light:active,
.btn-light:focus {
  background-color: #ecf8fb !important;
  color: #fff;
  border-color: #ecf8fb;
}

.btn-light.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-light .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #ecf8fb;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

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

.btn-extra-light:hover {
  background-color: #e2e8f08ad4 !important;
  color: #fff;
  border-color: #e2e8f08ad4;
}

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

.btn-extra-light.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-extra-light .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: rgba(226, 232, 240, 0.5411764706);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

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

.btn-muted:hover {
  background-color: rgba(128, 148, 174, 0.831372549) !important;
  color: #fff;
  border-color: rgba(128, 148, 174, 0.831372549);
}

.btn-muted:active,
.btn-muted:focus {
  background-color: #8094ae !important;
  color: #fff;
  border-color: #8094ae;
}

.btn-muted.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-muted .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #8094ae;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

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

.btn-dark:hover {
  background-color: rgba(44, 50, 63, 0.831372549) !important;
  color: #fff;
  border-color: rgba(44, 50, 63, 0.831372549);
}

.btn-dark:active,
.btn-dark:focus {
  background-color: #2c323f !important;
  color: #fff;
  border-color: #2c323f;
}

.btn-dark.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-dark .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #2c323f;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

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

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.831372549) !important;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.831372549);
}

.btn-white:active,
.btn-white:focus {
  background-color: #ffffff !important;
  color: #fff;
  border-color: #ffffff;
}

.btn-white.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-white .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-light-primary {
  border: 1px solid rgba(128, 90, 245, 0);
  color: #805af5;
  background-color: rgba(128, 90, 245, 0.1254901961);
  box-shadow: none !important;
}

.btn-light-primary:hover {
  color: #fff;
  background-color: #805af5;
}

.btn-light-secondary {
  border: 1px solid rgba(21, 23, 37, 0);
  color: #151725;
  background-color: rgba(21, 23, 37, 0.1254901961);
  box-shadow: none !important;
}

.btn-light-secondary:hover {
  color: #fff;
  background-color: #151725;
}

.btn-light-success {
  border: 1px solid rgba(15, 146, 63, 0);
  color: #0f923f;
  background-color: rgba(15, 146, 63, 0.1254901961);
  box-shadow: none !important;
}

.btn-light-success:hover {
  color: #fff;
  background-color: #0f923f;
}

.btn-light-info {
  border: 1px solid rgba(14, 155, 194, 0);
  color: #0e9bc2;
  background-color: rgba(14, 155, 194, 0.1254901961);
  box-shadow: none !important;
}

.btn-light-info:hover {
  color: #fff;
  background-color: #0e9bc2;
}

.btn-light-warning {
  border: 1px solid rgba(216, 99, 17, 0);
  color: #d86311;
  background-color: rgba(216, 99, 17, 0.1254901961);
  box-shadow: none !important;
}

.btn-light-warning:hover {
  color: #fff;
  background-color: #d86311;
}

.btn-light-danger {
  border: 1px solid rgba(196, 16, 63, 0);
  color: #c4103f;
  background-color: rgba(196, 16, 63, 0.1254901961);
  box-shadow: none !important;
}

.btn-light-danger:hover {
  color: #fff;
  background-color: #c4103f;
}

.btn-light-light {
  border: 1px solid rgba(236, 248, 251, 0);
  color: #ecf8fb;
  background-color: rgba(236, 248, 251, 0.1254901961);
  box-shadow: none !important;
}

.btn-light-light:hover {
  color: #fff;
  background-color: #ecf8fb;
}

.btn-light-extra-light {
  border: 1px solid #e2e8f08a00;
  color: rgba(226, 232, 240, 0.5411764706);
  background-color: #e2e8f08a20;
  box-shadow: none !important;
}

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

.btn-light-muted {
  border: 1px solid rgba(128, 148, 174, 0);
  color: #8094ae;
  background-color: rgba(128, 148, 174, 0.1254901961);
  box-shadow: none !important;
}

.btn-light-muted:hover {
  color: #fff;
  background-color: #8094ae;
}

.btn-light-dark {
  border: 1px solid rgba(44, 50, 63, 0);
  color: #2c323f;
  background-color: rgba(44, 50, 63, 0.1254901961);
  box-shadow: none !important;
}

.btn-light-dark:hover {
  color: #fff;
  background-color: #2c323f;
}

.btn-light-white {
  border: 1px solid rgba(255, 255, 255, 0);
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1254901961);
  box-shadow: none !important;
}

.btn-light-white:hover {
  color: #fff;
  background-color: #ffffff;
}

.btn-icon {
  width: 32px;
  height: 32px;
  padding: 0.3125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.btn-primary-gradient {
  position: relative;
  color: #fff;
  border: 1px rgba(255, 255, 255, 0.45);
  transition: all 0.3s;
  overflow: hidden;
  z-index: 0;
}

.btn-primary-gradient::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  box-shadow: inset -2px 2px 7px rgba(255, 255, 255, 0.5), inset 2px -2px 7px rgba(255, 255, 255, 0.5);
  z-index: -1;
  transition: all 0.3s;
}

.btn-primary-gradient::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-two);
  box-shadow: inset -2px 2px 7px rgba(255, 255, 255, 0.5), inset 2px -2px 7px rgba(255, 255, 255, 0.5);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}

.btn-primary-gradient:hover {
  color: #fff;
}

.btn-primary-gradient:hover::before {
  opacity: 0;
}

.btn-primary-gradient:hover::after {
  opacity: 1;
}

.btn-outline-light {
  border: 1px solid var(--border-color);
  background-color: var(--secondary);
  box-shadow: inset -2px 2px 7px rgba(255, 255, 255, 0.15), inset 2px -2px 7px rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.btn-outline-light:hover::before {
  opacity: 0.65;
  height: 70px;
}

.btn-outline-light::before {
  position: absolute;
  content: "";
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: var(--gradient);
  opacity: 0.7;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  z-index: -1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* === 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-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: #805af5 !important;
  color: #fff !important;
}

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

.badge-success {
  background-color: #0f923f !important;
  color: #fff !important;
}

.badge-info {
  background-color: #0e9bc2 !important;
  color: #fff !important;
}

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

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

.badge-light {
  background-color: #ecf8fb !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(128, 90, 245, 0.1254901961) !important;
  color: #805af5 !important;
}

.badge-light-secondary {
  background-color: rgba(21, 23, 37, 0.1254901961) !important;
  color: #151725 !important;
}

.badge-light-success {
  background-color: rgba(15, 146, 63, 0.1254901961) !important;
  color: #0f923f !important;
}

.badge-light-info {
  background-color: rgba(14, 155, 194, 0.1254901961) !important;
  color: #0e9bc2 !important;
}

.badge-light-warning {
  background-color: rgba(216, 99, 17, 0.1254901961) !important;
  color: #d86311 !important;
}

.badge-light-danger {
  background-color: rgba(196, 16, 63, 0.1254901961) !important;
  color: #c4103f !important;
}

.badge-light-light {
  background-color: rgba(236, 248, 251, 0.1254901961) !important;
  color: #ecf8fb !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 1rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .table thead th {
    padding: 0.5rem 1.25rem;
  }
}

@media (min-width: 992px) {
  .table thead th:last-child {
    text-align: right;
  }
}

.table tbody td {
  font-size: 0.875rem;
  vertical-align: middle;
  color: var(--body-color);
  padding: 0.75rem 1rem;
}

@media (min-width: 768px) {
  .table tbody td {
    padding: 0.5rem 1.25rem;
  }
}

@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(--primary);
}

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

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

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

.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: var(--bg-white);
}

.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(--body-bg);*/
    background-color: var(--display-color);
    padding: 10px;
    color: var(--body-bg);
    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-select,
.form-control,
textarea {
  border: 1px solid var(--body-bg);
  color: var(--body-bg) !important;
  background-color: var(--bg-white);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.form-select::placeholder,
.form-control::placeholder,
textarea::placeholder {
  color: var(--placeholder-color);
}

.form-select:focus,
.form-select:active,
.form-control:focus,
.form-control:active,
textarea:focus,
textarea:active {
  box-shadow: none;
  border-color: var(--primary) !important;
  background-color: transparent;
}

.form-select {
  padding: 0.75rem 1.875rem 0.75rem 0.9375rem;
  background-size: 12px 7px;
  background-image: url("../images/arrow-down-white.png");
}

.form-select.form-select-lg {
  height: 56px;
  font-size: 1.125rem;
}

.form-select.form-select-md {
  height: 42px;
  padding: 0.375rem 1.5rem 0.375rem 1rem;
  background-size: 9px 6px;
}

.form-select.form-select-sm {
  height: 33.5px;
  font-size: 0.8125rem;
  padding: 0.375rem 1.5rem 0.375rem 0.9375rem;
  background-size: 7px 5px;
}

.form-select option {
  background-color: var(--bg-white);
}

.form-select,
.form-control:not(textarea) {
  height: 3rem;
}

.form-control[readonly] {
  background-color: var(--body-white);
}

.form-control.form-control-lg {
  height: 56px;
  font-size: 1.125rem;
}

.form-control.form-control-lg[type=file] {
  line-height: 2.1;
}

.form-control.form-control-md {
  height: 42px;
  padding: 0.375rem 1rem;
}

.form-control.form-control-sm {
  height: 33.5px;
  font-size: 0.8125rem;
  padding-block: 0.25rem;
}

.form-control.form-control-sm[type=file] {
  line-height: 1.1;
}

.form-label {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--display-color);
  font-weight: 600;
}

.input-group-text {
  color: var(--body-color);
  background-color: var(--surface-bg);
  border-color: var(--input-border-color);
}

.input-group .invalid-feedback {
  position: absolute;
  bottom: -22px;
  left: 0;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: var(--danger);
}

.invalid-feedback {
  color: var(--danger);
}

.icon-field .invalid-feedback {
  position: absolute;
  bottom: -24px;
  left: 0;
}

.iti__dropdown-content {
  background-color: var(--body-bg) !important;
}

.iti--inline-dropdown .iti__dropdown-content {
  border-color: var(--border-color) !important;
  width: 225px !important;
}

/* floating lebel css start */
.form-floating .form-control {
  padding-top: 0;
  padding-left: 3px;
  border: none;
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.form-floating label {
  color: var(--placeholder-color);
  padding-left: 0;
}

.form-floating textarea.form-control {
  height: 150px;
}

/* floating lebel css end */
/* icon field css start */
.icon-field {
  position: relative;
}

.icon-field .icon {
  position: absolute;
  top: 0;
  inset-inline-start: 0.125rem;
  width: 40px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  color: var(--body-color);
}

.icon-field .form-control {
  padding-inline-start: 2.5rem;
}

.icon-field .form-control:focus~.icon {
  color: var(--primary);
}

.icon-field .form-control.form-control-lg~.icon {
  font-size: 1.125rem;
}

.icon-field .form-control.form-control-sm {
  padding-inline-start: 1.875rem;
}

.icon-field .form-control.form-control-sm~.icon {
  width: 30px;
  font-size: 0.875rem;
}

/* icon field css end */
/* input Radio Css Start */
.form-check-input {
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary);
}

.form-check {
  margin-bottom: 0;
  padding-left: 0;
  gap: 12px;
  display: inline-flex;
  align-items: center;
}

.form-check.style-check .form-check-input::before {
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  transform: translate(-50%, -50%) scale(1);
  transition: 0.2s linear;
}

.form-check.style-check .form-check-input::after {
  position: absolute;
  content: "\eb7a";
  font-family: "remixicon";
  display: inline-block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s linear;
  border-radius: inherit !important;
}

.form-check.style-check .form-check-input:checked {
  border-color: var(--primary) !important;
}

.form-check.style-check .form-check-input:checked::after {
  visibility: visible;
  opacity: 1;
}

.form-check .form-check-input {
  border: 1px solid #d1d5db;
  background: transparent;
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
  margin-left: 0;
  margin-top: 0;
  cursor: pointer;
}

.form-check .form-check-input:checked[type=radio] {
  background-image: none;
  border-color: var(--primary);
}

.form-check .form-check-input:checked::before {
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
  opacity: 1;
}

.form-check .form-check-input:checked~label {
  color: var(--body-color) !important;
}

.form-check .form-check-input::before {
  position: absolute;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: var(--primary);
  border-radius: inherit;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s linear;
}

.form-check .form-check-input:focus {
  box-shadow: none;
}

.badge[class*=-primary] .form-check-input {
  border-color: var(--primary) !important;
}

.badge[class*=-success] .form-check-input {
  border-color: var(--success) !important;
}

.badge[class*=-info] .form-check-input {
  border-color: var(--info) !important;
}

.badge[class*=-warning] .form-check-input {
  border-color: var(--warning) !important;
}

.badge[class*=-danger] .form-check-input {
  border-color: var(--danger) !important;
}

.badge[class*=-secondary] .form-check-input {
  border-color: var(--secondaryf) !important;
}

.badge[class*=-dark] .form-check-input {
  border-color: var(--dark) !important;
}

/* input Radio Css End */
/* Switch Css Start */
.form-switch {
  padding-inline-start: 0;
}

.form-switch .form-check-input {
  box-shadow: none !important;
  margin: 0;
  position: relative;
  background-color: var(--light);
  border: 0;
  background-image: none !important;
  width: 36px;
  height: 20px;
}

.form-switch .form-check-input:checked {
  background-color: var(--primary);
}

.form-switch .form-check-input:checked::before {
  left: calc(100% - 18px);
  transition: 0.2s linear;
}

.form-switch .form-check-input:checked~.form-check-label {
  color: var(--body-color) !important;
}

.form-switch .form-check-input::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  transition: 0.2s linear;
}

.form-switch.form-switch-sm .form-check-input {
  width: 30px;
  height: 18px;
}

.form-switch.form-switch-sm .form-check-input:checked {
  background-color: var(--primary);
}

.form-switch.form-switch-sm .form-check-input:checked::before {
  left: calc(100% - 16px);
}

.form-switch.form-switch-sm .form-check-input::before {
  width: 12px;
  height: 12px;
  left: 3px;
}

/* Switch Css End */
/* Switch different Color Css start */
.switch-primary .form-check-input:checked {
  background-color: var(--primary) !important;
}

.switch-primary .form-check-input:checked~.form-check-label {
  color: var(--primary) !important;
}

.switch-info .form-check-input:checked {
  background-color: var(--info) !important;
}

.switch-info .form-check-input:checked~.form-check-label {
  color: var(--info) !important;
}

.switch-success .form-check-input:checked {
  background-color: var(--success) !important;
}

.switch-success .form-check-input:checked~.form-check-label {
  color: var(--success) !important;
}

.switch-danger .form-check-input:checked {
  background-color: var(--danger) !important;
}

.switch-danger .form-check-input:checked~.form-check-label {
  color: var(--danger) !important;
}

.switch-warning .form-check-input:checked {
  background-color: var(--warning) !important;
}

.switch-warning .form-check-input:checked~.form-check-label {
  color: var(--warning) !important;
}

.switch-dark .form-check-input:checked {
  background-color: var(--dark) !important;
}

.switch-dark .form-check-input:checked~.form-check-label {
  color: var(--dark) !important;
}

.switch-purple .form-check-input:checked {
  background-color: var(--lilac) !important;
}

.switch-purple .form-check-input:checked~.form-check-label {
  color: var(--lilac) !important;
}

/* Switch different Color Css End */
/* input Group Checkbox Css Start */
.btn-check:checked+.btn {
  color: #fff !important;
}

.btn-check:checked+.btn-outline-warning {
  background-color: var(--warning) !important;
  border-color: var(--warning) !important;
}

.btn-check:checked+.btn-outline-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-check:checked+.btn-outline-danger {
  background-color: var(--danger) !important;
  border-color: var(--danger) !important;
}

.btn-check:checked+.btn-outline-success {
  background-color: var(--success) !important;
  border-color: var(--success) !important;
}

.btn-check:checked+.btn-outline-warning {
  background-color: var(--warning) !important;
  border-color: var(--warning) !important;
}

.btn-check:checked+.btn-outline-info {
  background-color: var(--info) !important;
  border-color: var(--info) !important;
}

.btn-check:checked+.btn-outline-lilac {
  background-color: var(--lilac) !important;
  border-color: var(--lilac) !important;
}

/* input Group Checkbox Css End */
/* custom form fields css start */
.form-mobile-field {
  position: relative;
}

.form-mobile-field .form-select {
  width: auto;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  border: 0;
  background-color: transparent;
}

.form-mobile-field .form-control {
  padding-inline-start: 4.375rem;
}

select option {
  background-color: var(--bg-white);
}

.was-validated .form-mobile-field .form-control {
  padding-inline-start: 5.9375rem;
}

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

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

.copy-btn {
  cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff;
}
/* === 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: 48px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: #fcfcfd;
}

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

.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: 48px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding-inline: 1rem;
  background-color: var(--bg-white);
}

.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(--surface-bg);
  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;
}

.form-select-two-md~.select2-container .select2-selection--single {
  min-height: 42px;
}

.form-select-two-md~.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 42px;
}

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

.form-select-two-md~.select2-container .select2-selection--multiple {
  min-height: 42px;
  background-color: #fcfcfd;
}

.form-select-two-md~.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
  height: 28px;
}

.form-select-two-sm~.select2-container .select2-selection--single {
  min-height: 33.5px;
}

.form-select-two-sm~.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 33.5px;
  font-size: 0.875rem;
}

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

.form-select-two-sm~.select2-container .select2-selection--multiple {
  min-height: 33.5px;
  background-color: #fcfcfd;
}

.form-select-two-sm~.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
  height: 28px;
}

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

.select2-dropdown {
  border-color: var(--border-color) !important;
  border-radius: 6px;
  background-color: var(--bg-white) !important;
}

.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(--bg-white);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  box-shadow: 0 0.25rem 1.875rem rgba(46, 45, 116, 0.05);
  border: 1px solid var(--border-color);
  position: initial;
  color: var(--body-color);
}

.card .card-header {
  background-color: var(--bg-white);
  padding: 0.75rem 1rem;
  border-color: var(--border-color);
  color: var(--body-color);
  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;
}

@media (min-width: 768px) {
  .card .card-header {
    padding: 1rem 1.25rem;
  }
}

.card .card-title {
  font-size: 1.125rem;
  color: var(--secondary);
}

@media (min-width: 992px) {
  .card .card-title {
    font-size: 1.25rem;
  }
}

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

@media (min-width: 768px) {
  .card .card-body {
    padding: 0.75rem 1.25rem;
  }
}

.card .card-footer {
  background-color: var(--secondary);
  border-color: var(--border-color);
  padding: 0.875rem 1rem;
  border-radius: 0 0 12px 12px;
  -webkit-border-radius: 0 0 12px 12px;
  -moz-border-radius: 0 0 12px 12px;
  -ms-border-radius: 0 0 12px 12px;
  -o-border-radius: 0 0 12px 12px;
}

@media (min-width: 768px) {
  .card .card-footer {
    padding: 0.75rem 1.25rem;
  }
}

.card.card-full {
  min-height: 80vh;
}

.card.radius-lg .card-header {
  border-radius: 24px 24px 0 0;
  -webkit-border-radius: 24px 24px 0 0;
  -moz-border-radius: 24px 24px 0 0;
  -ms-border-radius: 24px 24px 0 0;
  -o-border-radius: 24px 24px 0 0;
  padding: 0.75rem 1.25rem;
}

@media (min-width: 768px) {
  .card.radius-lg .card-header {
    padding: 1rem 1.25rem;
  }
}

.card.radius-lg .card-footer {
  border-radius: 0 0 24px 24px;
  -webkit-border-radius: 0 0 24px 24px;
  -moz-border-radius: 0 0 24px 24px;
  -ms-border-radius: 0 0 24px 24px;
  -o-border-radius: 0 0 24px 24px;
  padding: 0.75rem 1.25rem;
}

@media (min-width: 768px) {
  .card.radius-lg .card-footer {
    padding: 1rem 1.25rem;
  }
}

/* === card css end === */
/* === modal css start === */
.modal-header,
.modal-footer {
  border-color: var(--border-color);
}

.modal-header .btn-close {
  margin-inline-start: auto;
  margin-inline-end: 0;
}

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

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

.btn-close {
  background-image: url("../images/times.png");
  border: 1px solid var(--input-border-color);
}

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

/* === modal css end === */
/* === accordion css start === */
.accordion-dafault .accordion-item {
  border: none !important;
  border: 1px solid var(--border-color) !important;
  background-color: var(--bg-white) !important;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .accordion-dafault .accordion-item {
    margin-bottom: 20px;
  }
}

.accordion-dafault .accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-dafault .accordion-body {
  background-color: transparent;
  padding: 1rem;
  padding-top: 1rem;
  color: var(--body-color);
}

.accordion-dafault .accordion-button {
  padding: 1rem 1.5rem;
  background: transparent;
  padding-inline-end: 60px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-bottom: 1px solid #fff;
}

@media (min-width: 576px) {
  .accordion-dafault .accordion-button {
    font-size: 1.125rem;
  }
}

.accordion-dafault .accordion-button::after {
  background-image: none;
}

.accordion-dafault .accordion-button:focus {
  box-shadow: none;
}

.accordion-dafault .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--primary);
  border-color: var(--border-color);
}

.accordion-dafault .accordion-button:not(.collapsed)::after {
  background-image: none;
  color: var(--primary);
}

.accordion-dafault .accordion-button[aria-expanded=true]::after,
.accordion-dafault .accordion-button[aria-expanded=false]::after {
  content: "\f1af";
  font-family: remixicon;
  display: inline-block;
  position: absolute;
  inset-inline-end: 1.25rem;
  height: 16px;
  width: 16px;
  border: 1px solid var(--muted);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  border-radius: 50%;
  line-height: 1;
  color: var(--muted);
}

@media (min-width: 992px) {

  .accordion-dafault .accordion-button[aria-expanded=true]::after,
  .accordion-dafault .accordion-button[aria-expanded=false]::after {
    height: 20px;
    width: 20px;
  }
}

.accordion-dafault .accordion-button[aria-expanded=false]::after {
  content: "\ea13";
}

.accordion-noarrow .accordion-button::after {
  display: none;
}

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

.border-accordion .accordion-button {
  border-color: var(--border-color) !important;
}

.border-accordion .accordion-button:not(.collapsed) {
  background-color: #fff;
}

.border-accordion .accordion-button:focus {
  box-shadow: none;
}

.step-number {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 992px) {
  .step-number {
    font-size: 1.5rem;
  }
}

/* === 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.375rem;
  background-color: transparent;
  font-weight: 500;
}

.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);
  color: #fff;
}

.nav-tabs.bordered-tab .nav-item .nav-link .nav-tabs-badge {
  width: 18px;
  height: 18px;
  background-color: #dfe7f0;
  color: var(--body-color);
  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;
  font-weight: 500;
}

.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::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--primary);
  opacity: 0.25;
  z-index: -1;
  border-radius: 6px !important;
}

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

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

.nav-tabs.pill-light-tab .nav-item .nav-link.active::after {
  opacity: 0.05;
}

.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.primary-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.primary-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.primary-bg-tab .nav-item .nav-link.active {
  margin-bottom: 0;
  color: #fff;
  background-color: var(--primary);
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.05);
}

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

.nav-tabs.primary-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);
  background-color: var(--secondary);
}

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

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

.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(--surface-bg);
  color: var(--primary);
}

/* === 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(--secondary);
  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:hover,
.dropdown-item:active {
  background-color: var(--body-bg);
  color: var(--display-color);
}

.dropdown-item:focus {
  background-color: var(--body-bg) !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(--body-bg);
  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;
  width: 200px;
}

.image-upload .image-edit-btn {
  position: absolute;
  right: 8px;
  z-index: 1;
  bottom: 8px;
}

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

.image-upload .image-edit-btn input+label {
  display: inline-block;
  width: 85px;
  height: 25px;
  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: #FFFFFF;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-weight: 600;
}

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

.image-upload .image-edit-btn input+label:before {
  content: "\f24a";
  font-family: remixicon !important;
  font-style: normal;
  margin-right: 2px;
}

.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%;
  border: 3px solid #fff;
  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: 3px solid #fff;
}

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

.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(--surface-bg);
  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: var(--surface-bg);
  color: var(--display-color);
  border: none;
  border-bottom: 1px solid var(--border-color);
}

.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: var(--body-bg);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
}

.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: rgba(255, 255, 255, 0.0196078431);
  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;
  color: #fff;
}

.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 === */
.ui-timepicker-wrapper::-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;
}

.ui-timepicker-wrapper::-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;
}

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

/* === 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 === */
.rt-referral-icon {
  font-size: 80px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.35;
}
.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: var(--bg-white);
  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(--body-bg);
  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 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}

.social-media-links li a {
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: 1px solid var(--body-color);
  color: var(--body-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;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 1200px) {
  .social-media-links li a {
    width: 36px;
    height: 36px;
  }
}

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

.social-media-default-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem 0.9375rem;
}

.social-media-light-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.social-media-light-links li a {
  width: 32px;
  height: 32px;
  background-color: var(--border-color);
  color: var(--body-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;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

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

/* === 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-xxs {
  width: 1.125rem;
  height: 1.125rem;
}

.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;
  overflow-x: hidden;
}

.scroll-y::-webkit-scrollbar {
  width: 6px;
  background-color: var(--border-color);
  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: rgba(255, 255, 255, 0.125);
  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: var(--border-color);
}

.scroll-x {
  overflow-x: auto;
}

.scroll-x::-webkit-scrollbar {
  height: 6px;
  background-color: var(--border-color);
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
}

.scroll-x::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.125);
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
}

.scroll-x ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--border-color);
}

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

.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: var(--bg-white);
  padding: 0 0.9375rem;
  font-weight: 500;
}

/* === divider css end === */
/* === info list css start === */
.info-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin: 0;
}

.info-list li:last-child::after {
  display: none;
}

.info-list li::after {
  content: "|";
  padding-inline: 0.625rem;
  color: var(--border-color);
}

/* === info list css end === */
/* === animation css start === */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.shake {
  animation: shake 0.5s 1 linear;
}

@-webkit-keyframes shake {

  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@-moz-keyframes shake {

  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@-ms-keyframes shake {

  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {

  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-ms-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-ms-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-ms-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-moz-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-ms-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-moz-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-ms-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* === animation css end === */
/* === cookie css start === */
.cookie-policy {
  padding: 1.25rem 1.875rem;
  background-color: var(--surface-bg);
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  z-index: 9;
  bottom: 0;
  left: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .cookie-policy {
    display: flex;
    gap: 30px;
  }
}

.cookie-policy-content {
  flex-grow: 1;
  margin-bottom: 0.9375rem;
}

@media (min-width: 768px) {
  .cookie-policy-content {
    margin-bottom: 0;
  }
}

.cookie-policy-btns {
  display: flex;
  align-items: center;
  gap: 0.625rem 1.25rem;
}

.cookie-policy-btns .btn {
  text-wrap: nowrap;
}

/* === cookie css end === */
/* === bg img css start === */
.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  z-index: -1;
}

/* === bg img css end === */
/* === back to top css start === */
.top-action-btn {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background-color: var(--primary);
  padding: 0.5rem 0.375rem;
  z-index: 3;
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

@media (min-width: 1200px) {
  .top-action-btn {
    padding: 0.75rem 0.5rem;
    bottom: 30px;
    right: 30px;
  }
}

.top-action-btn span {
  display: flex;
  justify-content: center;
  color: #fff;
}

.top-action-btn .caption {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* === back to top css end === */
/* === message css start === */
.message-chat-area {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

@media (min-width: 768px) {
  .message-chat-area {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
}

@media (min-width: 768px) {
  .message-chat-area::before {
    position: absolute;
    content: "";
    top: 0;
    left: 40%;
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
  }
}

.message-chat-area .message-chat-list-area {
  width: 100%;
  padding: 1rem;
  max-height: 450px;
  background-color: var(--surface-bg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

@media (min-width: 768px) {
  .message-chat-area .message-chat-list-area {
    width: 40%;
    box-shadow: none;
    border-radius: 12px 0 0 12px;
    -webkit-border-radius: 12px 0 0 12px;
    -moz-border-radius: 12px 0 0 12px;
    -ms-border-radius: 12px 0 0 12px;
    -o-border-radius: 12px 0 0 12px;
  }
}

@media (min-width: 1200px) {
  .message-chat-area .message-chat-list-area {
    max-height: 655px;
  }
}

.message-chat-area .message-chat-wrapper {
  width: 100%;
  margin-top: 1.5rem;
  background-color: var(--surface-bg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

@media (min-width: 768px) {
  .message-chat-area .message-chat-wrapper {
    width: 60%;
    margin-top: 0;
    box-shadow: none;
    border-radius: 0 12px 12px 0;
    -webkit-border-radius: 0 12px 12px 0;
    -moz-border-radius: 0 12px 12px 0;
    -ms-border-radius: 0 12px 12px 0;
    -o-border-radius: 0 12px 12px 0;
  }
}

.message-chat-list-single {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0.625rem;
  border-bottom: 1px dashed var(--border-color);
  cursor: pointer;
  border-radius: 8px;
  align-items: center;
}

.message-chat-list-single:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.message-chat-list-single.active {
  background-color: var(--body-bg);
}

.message-chat-list-single:last-child {
  border-bottom: none;
}

.message-chat-list-single .thumb {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--light);
  overflow: hidden;
}

.message-chat-list-single .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: top;
  -o-object-position: top;
}

.message-chat-list-single .content {
  flex-grow: 1;
  padding-left: 0.75rem;
}

.message-chat-list-area .message-chat-list-single .content h6 {
    max-width: 15ch;
}

.message-chat-wrapper {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.message-chat-wrapper-header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.message-chat-wrapper-header .message-chat-list-single {
  padding: 0;
  border: none;
  flex-grow: 1;
  cursor: auto;
}

.message-chat-wrapper-header .message-chat-list-single:hover {
  background-color: transparent;
}

.message-chat-wrapper-body {
  min-height: 270px;
  max-height: 270px;
  padding: 1rem;
  display: flex;
  flex-flow: column;
  position: relative;
}

@media (min-width: 1200px) {
  .message-chat-wrapper-body {
    min-height: 465px;
    max-height: 465px;
  }
}

.message-chat-wrapper-body .single-chat-message+.single-chat-message {
  margin-top: 1.5rem;
}

.message-chat-wrapper-body .single-chat-message {
  max-width: 90%;
}


@media (min-width: 576px) {
  .message-chat-wrapper-body .single-chat-message {
    max-width: 80%;
  }
}

.message-chat-wrapper-body .single-chat-message:not(.own-message) {
  margin-right: auto;
}

.message-chat-wrapper-body .single-chat-message.own-message {
  margin-left: auto;
}

.message-chat-wrapper-footer {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border-color);
}

.chatting-form {
  position: relative;
}

.chatting-form .reply-btn {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
}

.no-message {
  margin-block: auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.no-message .icon {
  font-size: 42px;
}

/* === message css end === */
/* === custom cursor css start === */
.cursor {
  position: fixed;
  background-color: var(--primary);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: scale(1);
  display: none;
}

@media (min-width: 1200px) {
  .cursor {
    display: inline-block;
  }
}

.cursor.active {
  opacity: 1;
  transform: scale(0);
}

.cursor.menu-active {
  opacity: 1;
  transform: scale(0);
}

.cursor.hovered {
  opacity: 1;
}

.cursor-follower {
  position: fixed;
  border: 1px solid var(--grad-two);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: translate(2px, 2px);
  display: none;
}

@media (min-width: 1200px) {
  .cursor-follower {
    display: inline-block;
  }
}

.cursor-follower.active {
  border-color: #fff;
  opacity: 0.25;
  transform: scale(2);
}

.cursor-follower.menu-active {
  border-color: #fff;
  opacity: 0.25;
  transform: scale(2);
}

.cursor-follower.hovered {
  border-color: #fff;
  opacity: 0.25;
}

/* === custom cursor css end === */
/* === header css start === */
.it-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

@media (min-width: 1200px) {
  .it-header {
    padding-block: 1.5rem;
    border: none;
  }
}

.it-header-logo {
  max-height: 2.5rem;
}

@media (min-width: 1200px) {
  .it-header-logo {
    max-height: 3rem;
  }
}

.it-header-nav-wrapper {
  position: fixed;
  top: 0;
  left: -105%;
  height: 100vh;
  width: 240px;
  border-right: 1px solid var(--border-color);
  background-color: var(--surface-bg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.it-header-nav-wrapper.active {
  left: 0;
}

@media (min-width: 1200px) {
  .it-header-nav-wrapper {
    position: static;
    height: auto;
    width: 100%;
    background-color: transparent;
    border: none;
  }
}

.it-header-nav-wrapper .it-header-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1.125rem;
  border-bottom: 1px solid var(--border-color);
}

@media (min-width: 1200px) {
  .it-header-nav-wrapper .it-header-nav-top {
    display: none;
  }
}

.it-header-nav-wrapper .it-header-nav-top h6 {
  font-size: 1rem;
}

@media (min-width: 1200px) {
  .it-header-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--secondary);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding-inline: 0.75rem;
    box-shadow: inset 0 10px 10px rgba(255, 255, 255, 0.05);
  }
}

.it-header-nav .nav-item .nav-link {
  padding: 0.75rem 1.25rem;
  position: relative;
  z-index: 1;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.it-header-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80%;
  height: 10px;
  background: var(--gradient);
  opacity: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  z-index: -1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.it-header-nav .nav-item .nav-link::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  background: var(--gradient);
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.it-header-nav .nav-item .nav-link:hover,
.it-header-nav .nav-item .nav-link.active {
  color: var(--primary);
}

.it-header-nav .nav-item .nav-link:hover::before,
.it-header-nav .nav-item .nav-link.active::before {
  opacity: 0.5;
}

.it-header-nav .nav-item .nav-link:hover::after,
.it-header-nav .nav-item .nav-link.active::after {
  width: calc(100% - 44px);
  opacity: 1;
}

.it-header-auth-link-btn {
  border: 1px solid var(--border-color);
  background-color: var(--secondary);
  padding-inline: 0.75rem;
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
  box-shadow: inset 0 10px 10px rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: none;
}

@media (min-width: 1200px) {
  .it-header-auth-link-btn {
    display: block;
  }
}

@media (max-width: 1199px) {
    .it-header-nav .nav-item .nav-link::before,
    .it-header-nav .nav-item .nav-link::after {
        display: none;
    }
}

.it-header-auth-link-btn:hover::before {
  opacity: 0.25;
  height: 50px;
}

.it-header-auth-link-btn::before {
  position: absolute;
  content: "";
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: var(--gradient);
  opacity: 0.5;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  z-index: -1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.it-header-auth-link-btn a {
  padding: 0.75rem 0.5rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

.it-header-auth-link-btn a:last-child::after {
  opacity: 0;
}

.it-header-auth-link-btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -4px;
  margin-top: -1px;
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 0.5;
}

/* === header css end === */
/* === footer css start === */
.it-footer {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 2px solid var(--border-color);
  z-index: 1;
  overflow: hidden;
}

.it-footer-left-el,
.it-footer-right-el {
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0.5;
}

.it-footer-bottom-el {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.5;
}

.it-footer-left-el {
  left: 0;
}

.it-footer-right-el {
  right: 0;
}

.it-footer-card {
  padding: 1.5rem;
  background-color: var(--secondary);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  height: 100%;
}

.it-footer-card .it-footer-logo {
  max-height: 40px;
}

.it-footer-card .title {
  font-size: 1.125rem;
}

.it-subscribe-form {
  position: relative;
  margin-top: 1rem;
}

.it-subscribe-form .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
  height: 52px;
  padding-inline-end: 145px;
}

.it-subscribe-form .btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
}

.it-footer-list-menu {
  margin-top: 1.5rem;
}

.it-footer-list-menu li+li {
  margin-top: 0.5rem;
}

.it-footer-bottom-card {
  padding: 1.5rem;
  background-color: var(--secondary);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  margin-top: 1.875rem;
}

.it-inline-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.5rem;
}

.it-inline-menu li {
  position: relative;
}

.it-inline-menu li:last-child::after {
  display: none;
}

.it-inline-menu li::after {
  position: absolute;
  content: "";
  top: 42%;
  right: -16px;
  width: 6px;
  height: 6px;
  background-color: #fff;
  opacity: 0.45;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* === footer css end === */
/* === breadcrumb css start === */
.it-breadcrumb {
  padding-top: 110px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

@media (min-width: 1200px) {
  .it-breadcrumb {
    padding-top: 120px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1400px) {
  .it-breadcrumb {
    padding-top: 140px;
    padding-bottom: 60px;
  }
}

.it-breadcrumb::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  z-index: -2;
}

.it-breadcrumb-bg-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.it-breadcrumb-title {
  font-size: 1.625rem;
  color: #fff;
}

@media (min-width: 992px) {
  .it-breadcrumb-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1400px) {
  .it-breadcrumb-title {
    font-size: 2.625rem;
  }
}

.it-breadcrumb-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.it-breadcrumb-menu li {
  font-size: 0.875rem;
  color: #fff;
}

@media (min-width: 576px) {
  .it-breadcrumb-menu li {
    font-size: 1rem;
  }
}

.it-breadcrumb-menu li::after {
  content: "/";
  padding: 0 0.5rem;
}

.it-breadcrumb-menu li:last-child::after {
  display: none;
}

.it-breadcrumb-menu li.active-page {
  text-decoration: underline;
}

/* === breadcrumb css end === */
/* === user sidebar css start === */
.user-sidebar {
  position: fixed;
  top: 0;
  inset-inline-start: -105%;
  height: 100%;
  background-color: transparent;
  width: 260px;
  z-index: 99;
  display: flex;
  flex-flow: column;
  transition: all 0.3s;
  box-shadow: 5px 0 5px rgba(0, 0, 0, 0.05);
  background-color: var(--body-user-panel);
}

@media (min-width: 1200px) {
  .user-sidebar {
    top: 16px;
    inset-inline-start: 16px;
    box-shadow: none;
    height: calc(100vh - 32px);
    /*border-radius: 1rem;*/
    width: 220px;
  }
}

@media (min-width: 1400px) {
  .user-sidebar {
    width: 260px;
  }
}

.user-sidebar-logo {
  height: 60px;
  display: flex;
  align-items: center;
  padding-inline: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.user-sidebar-logo img {
  max-height: 35px;
}

.user-sidebar-main {
  padding: 0.9375rem 0 0.9375rem 0.9375rem;
  flex-grow: 1;
  height: calc(100vh - 90px);
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.user-sidebar.sidebar-open {
  inset-inline-start: 0;
}

.user-sidebar .user-sidebar-close {
  margin-inline-start: auto;
  font-size: 1.25rem;
}

@media (min-width: 1200px) {
  .user-sidebar .user-sidebar-close {
    display: none;
  }
}

.user-sidebar-close-btn {
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-color: #fff;
  color: var(--display-color);
  font-size: 1.125rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  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;
}

@media (min-width: 1200px) {
  .user-sidebar-close-btn {
    display: none;
  }
}

.user-sidebar-close-btn::after {
  position: absolute;
  content: "\f4c8";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: remixicon !important;
  font-style: normal;
}

.user-sidebar-collapse-btn {
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-color: #fff;
  color: var(--display-color);
  font-size: 1.125rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1200px) {
  .user-sidebar-collapse-btn {
    display: flex;
  }
}

.user-sidebar-collapse-btn.active::after {
  content: "\ea6c";
}

.user-sidebar-collapse-btn::after {
  position: absolute;
  content: "\ea60";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: remixicon !important;
  font-style: normal;
}

.user-sidebar-logo-area {
  position: relative;
  height: 4.5rem;
  padding: 0.875rem 0.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1400px) {
  .user-sidebar-logo-area {
    padding: 0.75rem 1rem;
  }
}

.user-sidebar-menu-area {
  height: calc(100vh - 72px);
  padding: 0.75rem 0.625rem;
  overflow-y: auto;
}

@media (min-width: 1400px) {
  .user-sidebar-menu-area {
    padding: 0.75rem 1rem;
  }
}

.user-sidebar-menu-area:hover::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid transparent;
  border-radius: 999px;
}

.user-sidebar-menu-area::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

.user-sidebar-menu-area::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.sidebar-menu {
  height: calc(100vh - 100px);
  overflow-y: auto;
  padding-inline-end: 0.9375rem;
}

.sidebar-menu>li+li {
  margin-top: 0.3125rem;
}

.sidebar-menu li.dropdown>a {
  position: relative;
}

.sidebar-menu li.dropdown>a::after {
  position: absolute;
  content: "\ea6e";
  font-family: remixicon;
  font-style: normal;
  inset-block-start: 50%;
  inset-inline-end: 0.75rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.sidebar-menu li.dropdown.dropdown-open>a {
  background-color: #fff;
  color: var(--primary);
}

.sidebar-menu li.dropdown.dropdown-open>a:hover {
  color: var(--primary);
}

.sidebar-menu li.dropdown.dropdown-open>a::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.sidebar-menu li.dropdown.open>a {
  background-color: var(--primary);
  color: #fff;
}

.sidebar-menu li.dropdown.open>a:hover {
  color: #fff;
}

.sidebar-menu li.dropdown.open>a::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.sidebar-menu li.dropdown.open .sidebar-submenu {
  display: block;
}

.sidebar-menu li>a.active-page {
  /*background-color: var(--primary);*/
  /*color: #fff;*/
  background-color: #ffffff;
    color: black;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 27px 0 rgba(0, 0, 0, 0.05);
}

.sidebar-menu li > a.active-page .sidebar-menu-icon {
    background: linear-gradient(45deg, var(--primary), var(--primary));
    padding: 10px;
    border-radius: 0.5rem;
    color: #ffffff;
}

.sidebar-menu li>a.active-page:hover {
  /*color: #fff;*/
}

.sidebar-menu li a {
  /*padding: 0.5rem 0.625rem;*/
  display: flex;
  align-items: center;
  /*color: var(--body-color);*/
  color: #212529;
  /*-webkit-transition: all 0.3s;*/
  /*-o-transition: all 0.3s;*/
  transition: all 0.3s;
  /*border-radius: 8px;*/
  -webkit-border-radius: 8px;
  /*-moz-border-radius: 8px;*/
  /*-ms-border-radius: 8px;*/
  /*-o-border-radius: 8px;*/
  font-size: 0.875rem;
  /*font-weight: 500;*/
}

@media (min-width: 1400px) {
  .sidebar-menu li a {
    padding: 0.625rem 0.75rem;
  }
}

.sidebar-menu li a:hover {
  color: var(--primary);
}

.sidebar-menu li a .sidebar-menu-icon {
  /*font-size: 1.125rem;*/
  /*margin-inline-end: 0.5rem;*/
      font-size: 1.125rem;
    margin-inline-end: 0.5rem;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 0.5rem;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 27px 0 rgba(0, 0, 0, 0.05);
}

.sidebar-menu li.dropdown.open > a iconify-icon, .sidebar-menu li.dropdown.dropdown-open > a iconify-icon {
    color: black;
}

@media (min-width: 1650px) {
  .sidebar-menu li a .sidebar-menu-icon {
    font-size: 1.375rem;
    margin-inline-end: 0.75rem;
  }
}

.sidebar-menu li a i {
  line-height: 1.2;
  width: 24px;
  margin-inline-end: 0.75rem;
  font-size: 1.375rem;
}

.sidebar-menu li a .circle-icon {
  font-size: 0.625rem;
}

.sidebar-menu .sidebar-submenu {
  padding-block-start: 0.5rem;
  display: none;
  padding-inline-start: 1.25rem;
  transition: none;
  position: relative;
}

@media (min-width: 1650px) {
  .sidebar-menu .sidebar-submenu {
    padding-inline-start: 2.25rem;
  }
}

.sidebar-menu .sidebar-submenu::before {
  position: absolute;
  content: "";
  top: 0;
  inset-inline-start: 22px;
  width: 1px;
  height: 100%;
  background-color: #000;
  opacity: 0.1;
}

.sidebar-menu .sidebar-submenu li.active-page a {
  background-color: transparent;
  color: var(--primary);
  box-shadow: none;
}

.sidebar-menu .sidebar-submenu li.active-page a::before {
  background-color: var(--primary);
  opacity: 1;
}

.sidebar-menu .sidebar-submenu li a {
  padding: 0.4375rem 0.75rem;
  position: relative;
}

.sidebar-menu .sidebar-submenu li a:hover::before {
  background-color: var(--primary);
  opacity: 1;
}

.sidebar-menu .sidebar-submenu li a::before {
  position: absolute;
  content: "";
  left: -14px;
  top: 50%;
  height: 1px;
  width: 12px;
  background-color: #000;
  opacity: 0.1;
}

.sidebar-menu .sidebar-menu-group-title {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  margin-block: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding-top: 0.9375rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 15px;
}

/* === user sidebar css end === */
/* === user nav css start === */
.user-navbar {
  height: 60px;
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  width: calc(100% - 24px);
  padding-inline-start: 1.25rem;
  padding-inline-end: 1.25rem;
  display: flex;
  align-items: center;
  z-index: 2;
  background-color: var(--bg-white);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

@media (min-width: 1200px) {
  .user-navbar {
    inset-inline-start: 250px;
    width: calc(100% - 262px);
  }
}

@media (min-width: 1400px) {
  .user-navbar {
    inset-inline-start: 290px;
    width: calc(100% - 300px);
  }
}

@media (max-width: 575px) {
  .user-navbar {
    padding-inline: 12px;
  }
}

@media (min-width: 1200px) {
  .user-navbar-logo {
    display: none;
  }
}

.user-navbar-logo img {
  max-height: 25px;
}

@media (min-width: 576px) {
  .user-navbar-logo img {
    max-height: 30px;
  }
}

.user-navbar .user-sidebar-open-btn {
  font-size: 1.375rem;
  margin-inline-end: 0.625rem;
  line-height: 1;
}

@media (min-width: 576px) {
  .user-navbar .user-sidebar-open-btn {
    margin-inline-end: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .user-navbar .user-sidebar-open-btn {
    display: none;
  }
}

.user-navbar-right {
  width: 100%;
}

@media (max-width: 575px) {
  .nav-company-profile .avatar-lg {
    width: 30px !important;
    height: 30px !important;
  }
}

.action-icon {
  border: 1px solid rgba(255, 255, 255, 0.1490196078);
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 575px) {
  .user-navbar .action-icon {
    width: 40px;
    height: 40px;
  }

  .user-navbar .action-icon .text-xl {
    font-size: 16px !important;
  }
}

.it-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  /*background-color: var(--surface-bg);*/
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
  z-index: 9;
  padding: 0.625rem 0.9375rem;
  transition: all 0.3s;
  border-top: 1px solid var(--border-color);
}

.it-mobile-bar.bottom-fixed {
  bottom: 0;
}

@media (min-width: 576px) {
  .it-mobile-bar {
    display: none;
  }
}

.it-mobile-bar ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.it-mobile-bar ul li a {
  display: flex;
  flex-flow: column;
  align-items: center;
  color: var(--body-color);
}

.it-mobile-bar ul li a i {
  font-size: 1.125rem;
  line-height: 1;
}

.it-mobile-bar ul li a span {
  font-size: 0.75rem;
  font-weight: 500;
}

.it-mobile-bar ul li a.active {
  color: var(--primary);
}

.it-mobile-bar ul li a.rt-mobile-bar-main-item {
  margin-top: -50px;
}

.it-mobile-bar ul li a.rt-mobile-bar-main-item i {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px var(--primary);
}

/* === user nav css end === */
/* === user body css start === */
.user-dashboard {
  padding-block-start: 80px;
  background-color: var(--body-user-panel);
  min-height: 100vh;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-bottom: 4.6875rem;
  padding-inline: 0;
}

@media (min-width: 576px) {
  .user-dashboard {
    padding-bottom: 0;
    padding-inline: 0;
    padding-block-start: 70px;
  }
}

@media (min-width: 1200px) {
  .user-dashboard {
    padding-inline-start: 240px;
  }
}

@media (min-width: 1400px) {
  .user-dashboard {
    padding-inline-start: 280px;
  }
}

.user-dashbaord-body {
  padding-bottom: 1rem;
  padding-inline: 0;
  padding-top: 1rem;
}

@media (min-width: 992px) {
  .rt-log-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 0.25rem 1.875rem rgba(46, 45, 116, 0.05);
    padding: 16px;
  }
}

@media (max-width: 991px) {
  .rt-log-card-list {
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 0.25rem 1.875rem rgba(46, 45, 116, 0.05);
    padding: 16px;
  }

  .rt-log-card-details {
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 0.25rem 1.875rem rgba(46, 45, 116, 0.05);
    padding: 16px;
    margin-top: 20px;
  }
}
/* === user body css end === */
/* === user footer css start === */
.user-footer {
  padding: 0.625rem 0;
}

/* === user footer css end === */
/* === banner css start === */
.it-banner {
  position: relative;
  padding-block-start: 6.875rem;
  padding-block-end: 3.75rem;
  z-index: 1;
}

@media (min-width: 992px) {
  .it-banner {
    padding-block-start: 6.875rem;
    padding-block-end: 3.125rem;
  }
}

@media (min-width: 1200px) {
  .it-banner {
    padding-block-start: 10rem;
    padding-block-end: 5rem;
  }
}

@media (min-width: 1400px) {
  .it-banner {
    padding-block-start: 11.25rem;
    padding-block-end: 6.25rem;
  }
}

@media (min-width: 1650px) {
  .it-banner {
    padding-block-start: 14.375rem;
    padding-block-end: 7.5rem;
  }
}

.it-banner-top-title {
  font-size: 1.125rem;
  color: var(--primary);
}

.it-banner-title {
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .it-banner-title {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  .it-banner-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1200px) {
  .it-banner-title {
    font-size: 2.625rem;
  }
}

@media (min-width: 1400px) {
  .it-banner-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1650px) {
  .it-banner-title {
    font-size: 4.5rem;
  }
}

.it-banner-description {
  font-size: 1.125rem;
  margin-top: 1rem;
}

.it-banner .it-banner-el {
  position: absolute;
  z-index: -1;
}

.it-banner .it-banner-el.it-banner-top-shape {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0.45;
}

.it-banner .it-banner-el.it-banner-left-shade {
  top: 0;
  left: 0;
  opacity: 0.25;
}

.it-banner .it-banner-el.it-banner-right-shade {
  top: 0;
  right: 0;
  opacity: 0.25;
}

.it-banner .it-banner-el.it-banner-left-shape {
  top: 0;
  left: 0;
  z-index: -2;
  opacity: 0.75;
}

.it-banner .it-banner-el.it-banner-right-shape {
  top: 0;
  right: 0;
  z-index: -2;
  opacity: 0.75;
}

.it-banner .it-banner-el.it-banner-left-star {
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.it-banner .it-banner-el.it-banner-right-star {
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.it-ico-box {
  position: relative;
  background-color: var(--secondary);
  padding: 1.875rem 1.25rem;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border: 2px solid var(--border-color);
  z-index: 1;
}

@media (min-width: 1200px) {
  .it-ico-box {
    padding: 1.875rem 1.25rem;
  }
}

@media (min-width: 1400px) {
  .it-ico-box {
    padding: 2rem 1.5rem;
  }
}

.it-ico-box .it-ico-box-el {
  position: absolute;
  z-index: -2;
}

.it-ico-box .it-ico-box-el.it-ico-box-el-1 {
  right: 0;
  top: -30px;
  max-height: 70px;
}

@media (min-width: 576px) {
  .it-ico-box .it-ico-box-el.it-ico-box-el-1 {
    right: -30px;
  }
}

@media (min-width: 1200px) {
  .it-ico-box .it-ico-box-el.it-ico-box-el-1 {
    max-height: 100px;
    right: -50px;
    top: -50px;
  }
}

.it-ico-box-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  background-color: var(--secondary);
  overflow: hidden;
  z-index: -1;
}

.it-ico-box-img img {
  position: absolute;
  top: -200px;
  left: 0;
  z-index: -1;
  opacity: 0.85;
}

.it-ico-box .title {
  font-size: 1.125rem;
  text-align: center;
  text-transform: uppercase;
  word-spacing: 2px;
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .it-ico-box .title {
    margin-bottom: 0.75rem;
  }
}

.it-ico-box .title i {
  color: var(--primary);
}

.it-ico-box .it-ico-box-timer {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  padding-block: 0.25rem;
}

@media (min-width: 1200px) {
  .it-ico-box .it-ico-box-timer {
    margin-top: 2rem;
  }
}

.it-ico-box .it-ico-box-timer::before {
  position: absolute;
  content: "";
  top: 0;
  left: -20px;
  width: calc(100% + 40px);
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015));
  z-index: -1;
}

@media (min-width: 1200px) {
  .it-ico-box .it-ico-box-timer::before {
    left: -20px;
    width: calc(100% + 40px);
  }
}

@media (min-width: 1400px) {
  .it-ico-box .it-ico-box-timer::before {
    left: -24px;
    width: calc(100% + 48px);
  }
}

.it-ico-box .it-ico-box-timer #ico-timer {
  display: flex;
}

.it-ico-box .it-ico-box-timer #ico-timer .single-time {
  position: relative;
  width: 25%;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  .it-ico-box .it-ico-box-timer #ico-timer .single-time {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .it-ico-box .it-ico-box-timer #ico-timer .single-time {
    font-size: 2rem;
  }
}

@media (min-width: 1400px) {
  .it-ico-box .it-ico-box-timer #ico-timer .single-time {
    font-size: 2.25rem;
  }
}

.it-ico-box .it-ico-box-timer #ico-timer .single-time:last-child::before,
.it-ico-box .it-ico-box-timer #ico-timer .single-time:last-child::after {
  display: none;
}

.it-ico-box .it-ico-box-timer #ico-timer .single-time::before,
.it-ico-box .it-ico-box-timer #ico-timer .single-time::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: -webkit-linear-gradient(#ffffff, #4e4e4e);
  opacity: 0.5;
}

.it-ico-box .it-ico-box-timer #ico-timer .single-time::before {
  top: 14px;
  right: 0;
}

@media (min-width: 992px) {
  .it-ico-box .it-ico-box-timer #ico-timer .single-time::before {
    top: 14px;
  }
}

@media (min-width: 1200px) {
  .it-ico-box .it-ico-box-timer #ico-timer .single-time::before {
    top: 20px;
  }
}

@media (min-width: 1400px) {
  .it-ico-box .it-ico-box-timer #ico-timer .single-time::before {
    top: 24px;
  }
}

.it-ico-box .it-ico-box-timer #ico-timer .single-time::after {
  top: 24px;
  right: 0;
}

@media (min-width: 992px) {
  .it-ico-box .it-ico-box-timer #ico-timer .single-time::after {
    top: 26px;
  }
}

@media (min-width: 1200px) {
  .it-ico-box .it-ico-box-timer #ico-timer .single-time::after {
    top: 32px;
  }
}

@media (min-width: 1400px) {
  .it-ico-box .it-ico-box-timer #ico-timer .single-time::after {
    top: 36px;
  }
}

.it-ico-box .it-ico-box-timer #ico-timer .single-time .single-time-inner {
  display: flex;
  align-items: center;
}

.it-ico-box .it-ico-box-timer #ico-timer .single-time .single-time-inner p {
  margin: 0;
}

.it-ico-box .form-control {
  background-color: rgba(255, 255, 255, 0.015);
}

.ico-box-progress {
  background-color: rgba(255, 255, 255, 0.05);
  height: 20px;
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
}

.ico-box-progress-area {
  position: relative;
  margin-top: 24px;
}

.ico-box-progress-label {
  position: absolute;
  top: -28px;
  left: 0;
  width: 42px;
  padding: 0px 2px;
  text-align: center;
  background: var(--primary);
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  border-radius: 4px;
  margin-left: -21px;
}

.ico-box-progress-label::before {
  position: absolute;
  content: '';
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-top: 6px solid var(--primary);
  border-bottom: 5px solid transparent;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.ico-box-progress .progress-bar {
  background: var(--gradient);
}

.token-currency-part {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 0.75rem;
}

.token-currency-part .main-token-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.015);
  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;
}

.token-currency-part .main-token-icon img {
  max-width: 22px;
  max-height: 22px;
}

@media (max-width: 575px) {
  .token-currency-part {
    justify-content: center;
  }
}

.currency-dropdown-btn {
  height: 44px;
  background-color: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-color);
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
  padding: 0.125rem 0.5rem;
  display: flex;
  align-items: center;
}

.currency-dropdown-btn span {
  margin-left: 0.5rem;
}

.currency-dropdown-btn img {
  width: 24px;
  height: 24px;
  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;
}

.currency-dropdown-btn i {
  font-size: 1.125rem;
  margin-left: 0.125rem;
}

.currency-dropdown .dropdown-menu {
  max-height: 250px;
}

.currency-dropdown .dropdown-menu li {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border-bottom: 1px solid #ffffff0a;
  padding-block: 8px;
}

.currency-dropdown .dropdown-menu li:last-child {
  border-bottom: none;
}

.currency-dropdown .dropdown-menu li img {
  width: 25px;
  height: 25px;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: 50%;
}

/* === banner css end === */
/* === brand css start === */
.it-brand {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, var(--secondary), transparent);
  overflow: hidden;
}

.it-brand-title {
  margin-bottom: 1.5rem;
}

.it-brand-slider .slick-list {
  margin: 0 -0.625rem;
}

.it-brand-slider .it-brand-slide {
  padding: 0 0.625rem;
}

.it-brand-item {
  text-align: center;
}

.it-brand-item img {
  display: inline-block;
  max-height: 55px;
}

/* === brand css end === */
/* === feature css start === */
.it-feature {
  position: relative;
  z-index: 1;
}

.it-feature-top-el {
  position: absolute;
  top: -100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

.it-feature-row .col-auto {
  width: 50%;
}

@media (max-width: 991px) {
  .it-feature-row .col-auto {
    width: 50% !important;
  }
}

@media (max-width: 767px) {
  .it-feature-row .col-auto {
    width: 100% !important;
  }
}

.it-feature-row .col-auto:nth-of-type(4n + 1) {
  width: 60%;
}

.it-feature-row .col-auto:nth-of-type(4n + 2) {
  width: 40%;
}

.it-feature-row .col-auto:nth-of-type(4n + 3) {
  width: 50%;
}

.it-feature-row .col-auto:nth-of-type(4n + 4) {
  width: 50%;
}

.it-feature-single {
  position: relative;
  padding: 1.25rem;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  background-color: var(--secondary);
  z-index: 1;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .it-feature-single {
    padding: 1.5rem;
  }
}

.it-feature-single:hover::after {
  opacity: 0.5;
}

.it-feature-single:hover .it-feature-single-icon {
  background-color: var(--primary);
  color: #fff;
}

.it-feature-single::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  background: linear-gradient(rgba(255, 255, 255, 0.15), transparent) border-box;
  -webkit-mask: linear-gradient(var(--secondary) 0 0) padding-box, linear-gradient(var(--secondary) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -2;
}

.it-feature-single::after {
  position: absolute;
  content: "";
  width: 147px;
  height: 147px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #5c2bff;
  filter: blur(100px);
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}

.it-feature-single-top {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .it-feature-single-top {
    text-align: left;
  }
}

.it-feature-single-top .it-feature-single-icon {
  width: 55px;
  height: 55px;
  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;
  background-color: rgba(255, 255, 255, 0.025);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: var(--primary);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.it-feature-single-top .it-feature-single-content {
  width: 100%;
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .it-feature-single-top .it-feature-single-content {
    width: calc(100% - 55px);
    padding-inline-start: 1rem;
    margin-top: 0;
  }
}

.it-feature-single-thumb {
  padding-top: 1.875rem;
  text-align: center;
}

.it-feature-single-thumb img {
  height: 120px;
}

@media (min-width: 992px) {
  .it-feature-single-thumb img {
    height: 160px;
  }
}

@media (min-width: 1200px) {
  .it-feature-single-thumb img {
    height: 220px;
  }
}

@media (min-width: 1400px) {
  .it-feature-single-thumb img {
    height: 250px;
  }
}

/* === feature css end === */
/* === how work css start === */
.it-how-work {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.it-how-work::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 73, 213, 0.15);
  z-index: -1;
  opacity: 0.15;
}

.it-how-work-bg-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.35;
}

.it-how-work-item {
  padding: 1.25rem;
  background-color: var(--secondary);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border: 2px solid var(--border-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  text-align: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .it-how-work-item {
    min-height: 300px;
    padding: 1.5rem;
    text-align: left;
    flex-flow: column;
    justify-content: space-between;
  }
}

.it-how-work-item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 311px;
  height: 182px;
  background-image: url("../../../image/default/constant_image/card-line-shape.png");
  background-size: 311px 182px;
}

.it-how-work-item:hover {
  background: var(--gradient);
  box-shadow: 0 15px 30px rgba(128, 90, 245, 0.25);
  border-color: var(--primary);
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.it-how-work-item:hover .it-how-work-item-icon {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

.it-how-work-item:hover .it-how-work-item-content .title {
  color: #fff;
}

.it-how-work-item:hover .it-how-work-item-content p {
  color: #d4d4d4;
}

.it-how-work-item-icon {
  width: 55px;
  height: 55px;
  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: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  font-size: 2rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.it-how-work-item-content {
  margin-top: 1rem;
}

.it-how-work-item-content .title {
  font-size: 1.25rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 0;
}

.it-how-work-item-content p {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-top: 1px solid var(--border-color);
  padding-top: 0.75rem;
  margin-top: 1rem;
}

/* === how work css end === */
/* === token allowcation css start === */
.it-token-allowcation {
  position: relative;
  z-index: 1;
}

.it-token-allowcation-shape {
  position: absolute;
  top: 0;
  z-index: -1;
}

.it-token-allowcation-shape.it-token-allowcation-shape-left {
  left: 0;
  opacity: 0.5;
}

.it-token-allowcation-shape.it-token-allowcation-shape-right {
  right: 0;
}

.it-token-allowcation-wrapper {
  position: relative;
  padding: 1.25rem;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  background-color: var(--secondary);
  z-index: 1;
}

@media (min-width: 576px) {
  .it-token-allowcation-wrapper {
    padding: 2.5rem;
  }
}

.it-token-allowcation-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  background: linear-gradient(rgba(255, 255, 255, 0.15), transparent) border-box;
  -webkit-mask: linear-gradient(var(--secondary) 0 0) padding-box, linear-gradient(var(--secondary) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -2;
}

.it-token-allowcation-wrapper .el-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  text-align: center;
  z-index: -1;
  opacity: 0.45;
}

.it-token-allowcation-wrapper .el-img img {
  margin-top: -250px;
}

.it-allowcation-item {
  position: relative;
  padding-inline-start: 1.25rem;
}

.it-allowcation-item::before {
  position: absolute;
  content: "";
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.it-allowcation-item .title {
  font-size: 0.875rem;
}

@media (min-width: 992px) {
  .it-allowcation-item .title {
    font-size: 1rem;
  }
}

.it-allowcation-item p {
  font-size: 0.875rem;
}

#ico-timer-two {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#ico-timer-two .single-time {
  width: 25%;
  text-align: center;
  position: relative;
}

#ico-timer-two .single-time:last-child::before,
#ico-timer-two .single-time:last-child::after {
  display: none;
}

#ico-timer-two .single-time::before,
#ico-timer-two .single-time::after {
  position: absolute;
  content: "";
  right: -7px;
  width: 8px;
  height: 8px;
  background: -webkit-linear-gradient(#ffffff, #4e4e4e);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 0.15;
}

#ico-timer-two .single-time::before {
  top: 18px;
}

#ico-timer-two .single-time::after {
  top: 40px;
}

#ico-timer-two .single-time span {
  font-size: 2.25rem;
  line-height: 1;
  color: #fff;
  width: 70px;
  height: 65px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: var(--gradient);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

#ico-timer-two .single-time p {
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.it-token-chart {
  text-align: center;
}

.color {
  color: #1E6DFF #FBE069 #D26288 #00E2F4 #444ACC;
  --grad-one: #805af5;
  --grad-two: #ce99ff;
}

/* === token allowcation css end === */
/* === roadmap css start === */
.it-roadmap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
}

.it-roadmap-bg-img {
  position: absolute;
  top: 0;
  overflow: hidden;
  z-index: -2;
}

.it-roadmap-el {
  position: absolute;
  top: 0;
  opacity: 0.35;
  z-index: -1;
}

.it-roadmap-el.it-roadmap-left-el {
  left: 0;
}

.it-roadmap-el.it-roadmap-right-el {
  right: 0;
}

.it-roadmap-wrapper {
  position: relative;
  z-index: 1;
}

.it-roadmap-wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 40%;
  width: 2px;
  height: 100%;
  background-color: var(--primary);
  z-index: -1;
  display: none;
}

@media (min-width: 576px) {
  .it-roadmap-wrapper::after {
    display: inline-block;
  }
}

.it-roadmap-wrapper .it-single-roadmap+.it-single-roadmap {
  margin-top: 1.25rem;
}

@media (min-width: 576px) {
  .it-roadmap-wrapper .it-single-roadmap+.it-single-roadmap {
    margin-top: 2.5rem;
  }
}

.it-single-roadmap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 575px) {
  .it-single-roadmap {
    padding: 1.25rem;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--secondary);
    flex-direction: column !important;
  }
}

.it-single-roadmap::before {
  position: absolute;
  content: "\f633";
  top: 0;
  left: 39%;
  width: 24px;
  height: 24px;
  background-color: var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  box-shadow: 0 2px 15px rgba(255, 255, 255, 0.25);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  margin-left: -4px;
  display: none;
}

@media (min-width: 576px) {
  .it-single-roadmap::before {
    display: inline-flex;
  }
}

@media (min-width: 992px) {
  .it-single-roadmap::before {
    margin-left: 0;
  }
}

.it-single-roadmap-left {
  width: 100%;
  padding-inline-end: 1.25rem;
}

@media (min-width: 576px) {
  .it-single-roadmap-left {
    width: 40%;
  }
}

.it-single-roadmap-right {
  width: 100%;
  margin-top: 0.75rem;
}

@media (min-width: 576px) {
  .it-single-roadmap-right {
    width: 55%;
    padding-inline-start: 1.25rem;
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .it-single-roadmap-right {
    width: 40%;
    padding-inline-start: 1.25rem;
  }
}

.it-single-roadmap .title {
  font-size: 1rem;
}

@media (min-width: 992px) {
  .it-single-roadmap .title {
    font-size: 1.125rem;
  }
}

/* === roadmap css end === */
/* === why choose css start === */



.it-why-choose {
  position: relative;
  z-index: 1;
}

.it-why-choose-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  z-index: -1;
}

.it-why-choose-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.it-why-choose-wrapper .it-why-choose-wrapper-img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30%;
  height: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: var(--gradient);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  display: none;
}

.it-why-choose-wrapper .it-why-choose-wrapper-img img {
  max-height: 150px;
}

@media (min-width: 992px) {
  .it-why-choose-wrapper .it-why-choose-wrapper-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.it-why-choose-single {
  width: 48.5%;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .it-why-choose-single {
    padding: 1.25rem !important;
    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;
    margin-bottom: 1.25rem;
    background-color: var(--secondary);
  }
}

@media (max-width: 575px) {
  .it-why-choose-single {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .it-why-choose-single {
    width: 35%;
  }
}

.it-why-choose-single::before {
  position: absolute;
  content: "";
  z-index: -1;
  display: none;
}

@media (min-width: 992px) {
  .it-why-choose-single::before {
    display: inline-block;
  }
}

.it-why-choose-single::after {
  position: absolute;
  z-index: -1;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-size: 1.125rem;
  display: none;
}

@media (min-width: 992px) {
  .it-why-choose-single::after {
    display: inline-block;
  }
}

.it-why-choose-single-inner {
  position: relative;
}

@media (max-width: 991px) {
  .it-why-choose-single-inner {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .it-why-choose-single-inner {
    display: flex;
    flex-flow: column;
  }
}

.it-why-choose-single-inner::before {
  position: absolute;
  content: "";
  display: none;
}

@media (min-width: 992px) {
  .it-why-choose-single-inner::before {
    display: inline-block;
  }
}

@media (max-width: 991px) {
  .it-why-choose-single-inner .icon {
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 991px) {
  .it-why-choose-single-inner p {
    margin-bottom: 0 !important;
    margin-top: 0.75rem !important;
  }
}

.it-why-choose-single:nth-child(1) {
  padding-inline-end: 0;
}

@media (min-width: 992px) {
  .it-why-choose-single:nth-child(1) {
    padding-inline-end: 6.25rem;
  }
}

.it-why-choose-single:nth-child(1)::before {
  top: 20px;
  right: 70px;
  width: 150px;
  height: 75px;
  border-top: 1px solid var(--primary);
  border-right: 1px solid var(--primary);
  background-color: transparent;
  transform: skewX(40deg);
}

.it-why-choose-single:nth-child(1)::after {
  content: "\f22d";
  top: 5px;
  right: 245px;
  color: var(--primary);
}

.it-why-choose-single:nth-child(1) .it-why-choose-single-inner::before {
  top: 105px;
  right: -75px;
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  outline: 1px solid var(--primary);
  outline-offset: 4px;
}

.it-why-choose-single:nth-child(2) {
  padding-inline-start: 0;
}

@media (min-width: 992px) {
  .it-why-choose-single:nth-child(2) {
    padding-inline-start: 6.25rem;
  }
}

.it-why-choose-single:nth-child(2)::before {
  top: 20px;
  left: 70px;
  width: 150px;
  height: 75px;
  border-top: 1px solid var(--primary);
  border-left: 1px solid var(--primary);
  background-color: transparent;
  transform: skewX(-40deg);
}

.it-why-choose-single:nth-child(2)::after {
  content: "\f231";
  top: 5px;
  left: 245px;
  color: var(--primary);
}

.it-why-choose-single:nth-child(2) .it-why-choose-single-inner {
  align-items: flex-end;
  text-align: right;
}

.it-why-choose-single:nth-child(2) .it-why-choose-single-inner::before {
  top: 105px;
  left: -75px;
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  outline: 1px solid var(--primary);
  outline-offset: 4px;
}

.it-why-choose-single:nth-child(3) {
  margin-top: 0;
  padding-inline-end: 0;
}

@media (min-width: 992px) {
  .it-why-choose-single:nth-child(3) {
    margin-top: 6.25rem;
    padding-inline-end: 6.25rem;
  }
}

.it-why-choose-single:nth-child(3)::before {
  bottom: 20px;
  right: 70px;
  width: 150px;
  height: 75px;
  border-bottom: 1px solid var(--primary);
  border-right: 1px solid var(--primary);
  background-color: transparent;
  transform: skewX(-40deg);
}

.it-why-choose-single:nth-child(3)::after {
  content: "\f22d";
  bottom: 5px;
  right: 245px;
  color: var(--primary);
}

.it-why-choose-single:nth-child(3) .it-why-choose-single-inner::before {
  bottom: 105px;
  right: -75px;
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  outline: 1px solid var(--primary);
  outline-offset: 4px;
}

.it-why-choose-single:nth-child(3) .it-why-choose-single-inner .icon {
  order: 3;
  margin-top: 1rem;
  margin-bottom: 0;
}

.it-why-choose-single:nth-child(3) .it-why-choose-single-inner .title {
  order: 1;
}

.it-why-choose-single:nth-child(3) .it-why-choose-single-inner p {
  order: 2;
  margin-bottom: 0;
}

.it-why-choose-single:nth-child(4) {
  margin-top: 0;
  padding-inline-start: 0;
}

@media (min-width: 992px) {
  .it-why-choose-single:nth-child(4) {
    margin-top: 6.25rem;
    padding-inline-start: 6.25rem;
  }
}

.it-why-choose-single:nth-child(4)::before {
  bottom: 20px;
  left: 70px;
  width: 150px;
  height: 75px;
  border-bottom: 1px solid var(--primary);
  border-left: 1px solid var(--primary);
  background-color: transparent;
  transform: skewX(40deg);
}

.it-why-choose-single:nth-child(4)::after {
  content: "\f231";
  bottom: 5px;
  left: 245px;
  color: var(--primary);
}

.it-why-choose-single:nth-child(4) .it-why-choose-single-inner {
  align-items: flex-end;
  text-align: right;
}

.it-why-choose-single:nth-child(4) .it-why-choose-single-inner::before {
  bottom: 105px;
  left: -75px;
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  outline: 1px solid var(--primary);
  outline-offset: 4px;
}

.it-why-choose-single:nth-child(4) .it-why-choose-single-inner .icon {
  order: 3;
  margin-top: 1rem;
  margin-bottom: 0;
}

.it-why-choose-single:nth-child(4) .it-why-choose-single-inner .title {
  order: 1;
}

.it-why-choose-single:nth-child(4) .it-why-choose-single-inner p {
  order: 2;
  margin-bottom: 0;
}

.it-why-choose-single .icon {
  width: 55px;
  height: 55px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

/* === why choose css end === */
/* === team css start === */
.it-team {
  background-color: #151725;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.it-team-bg-el {
  position: absolute;
  top: 0;
  left: -15%;
  opacity: 0.65;
  z-index: -1;
}

.it-team-el-1 {
  position: absolute;
  top: 85px;
  right: 13%;
  z-index: -1;
  max-height: 120px;
  animation: spin 5s infinite forwards;
}

.it-team-single:hover .it-team-single-thumb {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  padding-bottom: 0.5rem;
}

.it-team-single:hover .it-team-single-thumb img {
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.it-team-single-thumb {
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: var(--gradient);
  overflow: hidden;
  height: 285px;
}

.it-team-single-thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(128, 90, 245, 0.75), transparent);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  z-index: 1;
}

.it-team-single-thumb img {
  width: 100%;
  /*height: 100%;*/
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.it-team-single-thumb .name {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.25rem 1.25rem;
  z-index: 2;
}

.it-team-single-thumb .name h4,
.it-team-single-thumb .name h5 {
  font-size: 1.25rem;
  margin-bottom: 0;
}

@media (min-width: 1400px) {

  .it-team-single-thumb .name h4,
  .it-team-single-thumb .name h5 {
    font-size: 1.5rem;
  }
}

.it-team-single-content {
  margin-top: 0.75rem;
  padding-inline-start: 1.25rem;
}

.it-team-single .social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.it-team-slider {
  margin-top: 1.875rem;
}

@media (min-width: 992px) {
  .it-team-slider {
    margin-top: 0;
  }
}

.it-team-slider .slick-list {
  margin: -0.75rem;
}

.it-team-slider .single-slide {
  padding: 0.75rem;
}

.it-team-slider-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

@media (min-width: 992px) {
  .it-team-slider-nav {
    display: flex;
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-ms-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* === team css end === */
/* === testimonial css start === */
.it-testimonial {
  position: relative;
  z-index: 1;
}

.it-testimonial-top-el {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -2;
}

.it-testimonial-left-el,
.it-testimonial-right-el {
  position: absolute;
  top: 20%;
  z-index: -1;
}

.it-testimonial-left-el {
  left: 0;
}

.it-testimonial-right-el {
  right: 0;
}

.it-testimonial-single {
  padding: 1.5rem;
  background-color: var(--secondary);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.it-testimonial-single:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.it-testimonial-single:hover .it-testimonial-icon {
  color: var(--primary);
  opacity: 1;
}

.it-testimonial-single::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  background: linear-gradient(rgba(255, 255, 255, 0.15), transparent) border-box;
  -webkit-mask: linear-gradient(var(--secondary) 0 0) padding-box, linear-gradient(var(--secondary) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -2;
}

.it-testimonial-single::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 311px;
  height: 182px;
  background-image: url(../../../image/default/constant_image/card-line-shape.png);
  background-size: 311px 182px;
  z-index: -1;
}

.it-testimonial-single .it-testimonial-logo {
  max-height: 1.875rem;
}

.it-testimonial-single .title {
  font-size: 1.25rem;
  margin-top: 1.25rem;
}

.it-testimonial-single .it-testimonial-client {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.it-testimonial-single .it-testimonial-client .thumb {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}

.it-testimonial-single .it-testimonial-client .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.it-testimonial-single .it-testimonial-client .content {
  width: calc(100% - 45px);
  padding-left: 1rem;
}

.it-testimonial-single .it-testimonial-icon {
  position: absolute;
  bottom: 30px;
  right: 24px;
  font-size: 2.625rem;
  line-height: 1;
  color: var(--primary);
  z-index: -1;
  opacity: 0.05;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.it-testimonial-slider .slick-list {
  margin: -0.75rem;
}

.it-testimonial-slider .single-slide {
  padding: 0.75rem;
}

.it-testimonial-slider .slick-dots {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.it-testimonial-slider .slick-dots li.slick-active button {
  width: 30px;
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
  opacity: 1;
}

.it-testimonial-slider .slick-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  background: var(--gradient);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 0.15;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

/* === testimonial css end === */
/* === faq css start === */
.it-faq {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--secondary), transparent);
  z-index: 1;
}

.it-faq-left-shape,
.it-faq-right-shape {
  position: absolute;
  top: 0;
  z-index: -1;
}

.it-faq-left-shape {
  left: 0;
}

.it-faq-right-shape {
  right: 0;
}

.it-faq-slider {
  margin: 0 -0.75rem;
}

.it-faq-slider .single-slide {
  padding: 0 0.75rem;
}

.it-faq-slider-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 2rem;
  gap: 1rem;
  position: relative;
}

.it-faq-slider-nav::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: calc(100% - 150px);
  height: 1px;
  background-color: #1E1C26;
}

.it-faq-slider-nav button {
  width: 40px;
  height: 40px;
  background-color: #1E1C26;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 576px) {
  .it-faq-slider-nav button {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

.it-faq-slider-nav button:hover {
  background-color: var(--primary);
}

/* === faq css end === */
/* === blog css start === */
.it-blog {
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 0;
}

.it-blog-top-el {
  position: absolute;
  top: -100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

.it-blog-left-el,
.it-blog-right-el {
  position: absolute;
  top: 30%;
  z-index: -1;
}

.it-blog-left-el {
  left: 0;
}

.it-blog-right-el {
  right: 0;
}

.it-blog-single {
  position: relative;
}

.it-blog-single:hover .it-blog-single-thumb img {
  -webkit-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

.it-blog-single-thumb {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

@media (min-width: 1200px) {
  .it-blog-single-thumb {
    height: 340px;
  }
}

@media (min-width: 1400px) {
  .it-blog-single-thumb {
    height: 450px;
  }
}

.it-blog-single-thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--secondary), transparent);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  z-index: 1;
}

.it-blog-single-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.it-blog-single-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: var(--primary);
  color: #fff;
  padding: 0.125rem 0.625rem;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  z-index: 1;
  font-size: 0.875rem;
}

.it-blog-single-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  z-index: 1;
}

.it-blog-single-content-inner {
  width: calc(100% - 40px);
  padding-inline-end: 1rem;
}

.it-blog-single-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.25rem;
}

@media (min-width: 1400px) {
  .it-blog-single-title a {
    font-size: 1.375rem;
  }
}

.it-blog-single-btn {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.it-blog-single-btn:hover {
  background: var(--primary);
  color: #fff;
}

.it-blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 1.5rem;
  font-size: 0.875rem;
}

.it-blog-meta li {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.it-blog-meta li:last-child::after {
  display: none;
}

.it-blog-meta li::after {
  position: absolute;
  content: "";
  top: 8px;
  right: -15px;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 0.25;
}

/* === blog css end === */
/* === cta css start === */
.it-cta-wrapper {
  padding: 2.5rem 1.25rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1200px) {
  .it-cta-wrapper {
    padding: 2.5rem 1.875rem;
  }
}

@media (min-width: 1200px) {
  .it-cta-wrapper {
    padding: 3.75rem 2.5rem;
  }
}

.it-cta-wrapper-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  overflow: hidden;
  z-index: -1;
}

.it-cta-wrapper-line-el {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 150%;
  z-index: -1;
}

.it-cta-wrapper-shape-el {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.it-cta-wrapper-el-1,
.it-cta-wrapper-el-2 {
  position: absolute;
  max-height: 70px;
  z-index: -1;
}

@media (min-width: 1400px) {

  .it-cta-wrapper-el-1,
  .it-cta-wrapper-el-2 {
    max-height: 90px;
  }
}

@media (min-width: 1650px) {

  .it-cta-wrapper-el-1,
  .it-cta-wrapper-el-2 {
    max-height: 115px;
  }
}

.it-cta-wrapper-el-1 {
  top: 0;
  right: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (min-width: 1200px) {
  .it-cta-wrapper-el-1 {
    top: -20px;
    right: -2px;
  }
}

@media (min-width: 1400px) {
  .it-cta-wrapper-el-1 {
    top: -20px;
    right: -2px;
  }
}

@media (min-width: 1650px) {
  .it-cta-wrapper-el-1 {
    top: -50px;
    right: -50px;
  }
}

.it-cta-wrapper-el-2 {
  bottom: 0;
  left: 0;
}

@media (min-width: 1200px) {
  .it-cta-wrapper-el-2 {
    bottom: -8px;
    left: -10px;
  }
}

@media (min-width: 1400px) {
  .it-cta-wrapper-el-2 {
    bottom: -20px;
    left: -30px;
  }
}

@media (min-width: 1650px) {
  .it-cta-wrapper-el-2 {
    bottom: -30px;
    left: -10px;
  }
}

.it-cta-wrapper .it-cta-icon {
  max-height: 55px;
}

.it-cta-wrapper .title {
  margin-top: 1.5rem;
}

/* === cta css end === */
/* === contact css start === */
.it-contact {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.it-contact-left-el,
.it-contact-right-el {
  position: absolute;
  top: 0;
  z-index: -1;
}

.it-contact-left-el {
  left: 0;
}

.it-contact-right-el {
  right: 0;
}

.it-contact-section-title {
  font-size: 4.5rem;
  max-width: 7ch;
}

.it-contact-top-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.it-contact-top-content .arrow-line {
  position: relative;
  width: 150px;
  height: 2px;
  background-color: #fff;
}

.it-contact-top-content .arrow-line::after {
  position: absolute;
  content: "\f231";
  top: -12px;
  right: -6px;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  color: #fff;
}

.it-contact-top-content .content {
  width: calc(100% - 150px);
  padding-inline-start: 2.25rem;
}

.form-floating>.form-control:not(:placeholder-shown)~label::after,
.form-floating>.form-control:focus~label::after {
  background: transparent;
}

.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-control:focus~label {
  color: var(--body-color);
}

.it-message-contact-form {
  padding: 2.5rem;
  background-color: var(--secondary);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.it-message-contact-form .form-floating .form-control {
  background-color: transparent;
}

.it-message-contact-content .title {
  max-width: 14ch;
}

.it-message-contact-item {
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.it-message-contact-item:hover {
  border-color: var(--primary);
}

.it-message-contact-item:hover .icon {
  color: #fff;
}

.it-message-contact-item:hover .icon::before {
  opacity: 1;
}

.it-message-contact-item .icon {
  position: relative;
  width: 75px;
  height: 75px;
  border-radius: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  color: var(--primary);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}

.it-message-contact-item .icon::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.1;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}

.it-message-contact-item .content {
  width: calc(100% - 75px);
  padding-inline-start: 1.5rem;
}

.it-message-contact-item .details {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
}

.it-contact-map {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  overflow: hidden;
  filter: grayscale(1);
}

.it-contact-map iframe {
  width: 100%;
  height: 250px;
  border: none;
}

@media (min-width: 576px) {
  .it-contact-map iframe {
    height: 450px;
  }
}

/* === contact css end === */
/* === auth css start === */
.it-auth {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.it-auth-left-star,
.it-auth-right-star {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0.75;
  z-index: -1;
}

.it-auth-left-star {
  left: 0;
}

.it-auth-right-star {
  right: 0;
}

.it-auth-left-shape,
.it-auth-right-shape {
  position: absolute;
  top: 0;
  z-index: -1;
}

.it-auth-left-shape {
  left: 0;
}

.it-auth-right-shape {
  right: 0;
}

.it-auth-content {
  padding: 1.25rem;
  background-color: var(--secondary);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.075);
}

@media (min-width: 576px) {
  .it-auth-content {
    padding: 2.5rem;
  }
}

.iti__dropdown-content {
  background-color: var(--secondary);
  border: 1px solid var(--border-color);
}

.iti__dropdown-content .iti__search-input {
  border-bottom: 1px solid var(--border-color);
}

.password-field {
  position: relative;
}

.password-field .password-field-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--display-color);
}

.password-field .password-field-btn.active .eye-one {
  display: none;
}

.password-field .password-field-btn.active .eye-off {
  display: inline-block;
}

.password-field .password-field-btn .eye-off {
  display: none;
}
/* === auth css end === */
/* === error page css start === */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.125rem 0;
}

.erorr-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
}

@media (min-width: 576px) {
  .erorr-numbers {
    gap: 1.875rem;
  }
}

.erorr-numbers .erorr-number {
  font-size: 6.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-two);
  text-shadow: 6px 2px var(--primary);
}

@media (min-width: 576px) {
  .erorr-numbers .erorr-number {
    font-size: 9.375rem;
  }
}

@media (min-width: 1200px) {
  .erorr-numbers .erorr-number {
    font-size: 11.25rem;
  }
}

.erorr-numbers .erorr-number-first {
  transform: rotateZ(340deg);
}

.erorr-numbers .erorr-number-third {
  transform: rotateZ(-340deg);
  margin-top: -1.25rem;
}

@media (min-width: 576px) {
  .erorr-numbers .erorr-number-third {
    margin-top: -1.5625rem;
  }
}

@media (min-width: 1200px) {
  .erorr-numbers .erorr-number-third {
    margin-top: -2.1875rem;
  }
}

.erorr-numbers .erorr-number-second {
  position: relative;
  font-size: 6.25rem;
  margin-top: -20px;
}

@media (min-width: 576px) {
  .erorr-numbers .erorr-number-second {
    font-size: 7.5rem;
  }
}

@media (min-width: 1200px) {
  .erorr-numbers .erorr-number-second {
    font-size: 9.375rem;
  }
}

.erorr-numbers .erorr-number-second::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  border-radius: 50%;
  z-index: -1;
}

/* === error page css end === */
/* === maintenance page css start === */
.maintenance-page {
  position: relative;
  padding: 1.875rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 576px) {
  .maintenance-page {
    padding: 3.125rem 0;
  }
}

.maintenance-page-logo {
  margin-bottom: 1.875rem;
  max-height: 25px;
}

@media (min-width: 768px) {
  .maintenance-page-logo {
    max-height: 45px;
  }
}

.maintenance-page-caption {
  font-size: 1.25rem;
}

.maintenance-page-icons {
  position: absolute;
  bottom: -6.25rem;
  inset-inline-end: -6.25rem;
  color: rgba(255, 255, 255, 0.1);
  width: 450px;
  height: 400px;
  transform: scale(0.5);
  opacity: 0.15;
}

@media (min-width: 576px) {
  .maintenance-page-icons {
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .maintenance-page-icons {
    transform: scale(1);
    bottom: 0;
    inset-inline-end: 0;
  }
}

.maintenance-page-icons span {
  line-height: 1;
  position: absolute;
  animation-name: spin;
  animation-duration: 7000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.maintenance-page-icons .first-icon {
  font-size: 7.5rem;
  top: 27%;
  inset-inline-start: 2.5rem;
}

.maintenance-page-icons .second-icon {
  font-size: 13.75rem;
  bottom: 0;
  inset-inline-start: 0.9375rem;
}

.maintenance-page-icons .third-icon {
  font-size: 20rem;
  top: 8%;
  inset-inline-end: 0;
}

@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@-moz-keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@-ms-keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

/* === maintenance page css end === */
/* === all blogs css start === */
.all-blogs .it-blog-grid {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
}

.all-blogs .it-blog-grid:first-child {
  padding-top: 0;
}

.all-blogs .it-blog-grid:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.it-blog-grid-thumb {
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  overflow: hidden;
  /*height: 250px;*/
  height: 225px;
  position: relative;
}

@media (min-width: 1200px) {
  .it-blog-grid-thumb {
    /*height: 380px;*/
    height: 250px;
  }
}

@media (min-width: 1400px) {
  .it-blog-grid-thumb {
    /*height: 450px;*/
    height: 275px;
  }
}

.it-blog-grid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.it-blog-grid-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: var(--primary);
  color: #fff;
  padding: 0.125rem 0.625rem;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  z-index: 1;
  font-size: 0.875rem;
}

.it-blog-grid-content {
  margin-top: 1rem;
}

.it-blog-grid-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.it-blog-grid-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

.it-blog-grid-btn i {
  margin-left: 8px;
}

.it-blog-sidebar {
  padding: 1.25rem;
  background-color: var(--secondary);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border: 1px solid var(--border-color);
}

@media (min-width: 992px) {
  .it-blog-sidebar {
    position: sticky;
    top: 30px;
    padding: 1.5rem;
  }
}

.it-blog-sidebar-title {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
  .it-blog-sidebar-title {
    font-size: 1.25rem;
  }
}

.it-blog-sidebar-widget {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.it-blog-sidebar-widget:first-child {
  padding-top: 0;
}

.it-blog-sidebar-widget:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.it-blog-categires li+li {
  margin-top: 0.75rem;
}

.sidebar-search {
  display: flex;
}

.sidebar-search .form-control {
  width: calc(100% - 44px);
  border-radius: 8px 0 0 8px;
  -webkit-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  -ms-border-radius: 8px 0 0 8px;
  -o-border-radius: 8px 0 0 8px;
}

.sidebar-search button {
  width: 44px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 0 8px 8px 0;
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -ms-border-radius: 0 8px 8px 0;
  -o-border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.it-short-post-list .it-short-post {
  padding: 0.75rem 0;
}

.it-short-post-list .it-short-post:first-child {
  padding-top: 0;
}

.it-short-post-list .it-short-post:last-child {
  padding-bottom: 0;
}

.it-short-post {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.it-short-post-thumb {
  width: 80px;
  height: 70px;
  overflow: hidden;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.it-short-post-content {
  width: calc(100% - 80px);
  padding-inline-start: 1rem;
}

.it-blog-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}

.it-blog-tags li a {
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border: 1px solid var(--border-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.it-blog-tags li a:hover {
  background-color: var(--primary);
  color: #fff;
}

/* === all blogs css end === */
/* === blog details css start === */
.it-blog-details-thumb {
  height: 250px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .it-blog-details-thumb {
    height: 300px;
  }
}

@media (min-width: 1200px) {
  .it-blog-details-thumb {
    height: 400px;
  }
}

@media (min-width: 1400px) {
  .it-blog-details-thumb {
    height: 550px;
  }
}

.it-blog-details-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

/* === blog details css end === */
/* === user dashboard css start === */
.card-icon {
  width: 35px;
  height: 35px;
}

.card-icon-sm {
  width: 30px;
  height: 30px;
}

.card-icon-lg {
  width: 45px;
  height: 45px;
}

@media (min-width: 576px) {
  .d-items-wrapper div[class*=col] {
    border-right: 1px solid var(--border-color);
  }
}

.d-items-wrapper div[class*=col]:last-child {
  border-right: none;
}

#ico-timer {
  display: flex;
}

#ico-timer .single-time {
  position: relative;
  width: 25%;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1200px) {
  #ico-timer .single-time {
    font-size: 1.5rem;
  }
}

@media (min-width: 1400px) {
  #ico-timer .single-time {
    font-size: 2rem;
  }
}

@media (min-width: 1650px) {
  #ico-timer .single-time {
    font-size: 2.25rem;
  }
}

#ico-timer .single-time:last-child::before,
#ico-timer .single-time:last-child::after {
  display: none;
}

#ico-timer .single-time::before,
#ico-timer .single-time::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: -webkit-linear-gradient(#ffffff, #4e4e4e);
  opacity: 0.5;
}

#ico-timer .single-time::before {
  right: -3px;
  transform: translateY(calc(-50% - 4px));
}

#ico-timer .single-time::after {
  right: -3px;
  transform: translateY(calc(-50% + 8px));
}

#ico-timer .single-time .single-time-inner {
  display: flex;
  align-items: center;
}

#ico-timer .single-time .single-time-inner p {
  margin: 0;
}

#chart-two {
  margin-bottom: -15px;
}

.it-recent-transaction-list {
  max-height: 224px;
  padding-right: 4px;
}

.it-recent-transaction-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.it-recent-transaction-list li:first-child {
  padding-top: 0;
}

.it-recent-transaction-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.apexcharts-tooltip.apexcharts-theme-light,
.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {
  background: var(--body-bg) !important;
  border-color: var(--border-color) !important;
}

.apexcharts-menu {
    background: var(--body-bg) !important;
    border: 1px solid var(--border-color) !important;
}

.apexcharts-theme-light .apexcharts-menu-item:hover {
    background: var(--primary) !important;
    color: #fff;
}

.no-data-wrapper {
  padding: 1.25rem;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  min-height: 150px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 576px) {
  .no-data-wrapper {
    padding: 1.875rem;
    min-height: 250px;
  }
}

@media (min-width: 992px) {
  .no-data-wrapper {
    padding: 2.5rem;
    min-height: 350px;
  }
}

@media (min-width: 1200px) {
  .no-data-wrapper {
    min-height: 450px;
  }
}

.no-data-wrapper-img {
  max-height: 50px;
}

@media (min-width: 576px) {
  .no-data-wrapper-img {
    max-height: 70px;
  }
}

@media (min-width: 992px) {
  .no-data-wrapper-img {
    max-height: 90px;
  }
}

@media (min-width: 1200px) {
  .no-data-wrapper-img {
    max-height: 110px;
  }
}


.no-data-wrapper .icon {
  font-size: 42px;
}

::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.stage-card {
  position: relative;
  padding: 1.25rem;
  background-color: var(--surface-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

@media (min-width: 576px) {
  .stage-card {
    padding: 1.5rem;
  }
}

.stage-card-img {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.5;
}

.stage-card .badge {
  position: absolute;
  top: 6px;
  right: 6px;
}

.stage-card .stage-card-time {
  background-color: var(--body-bg);
  padding: 1rem;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
}

.stage-card .stage-card-time-single {
  width: 50%;
  border-right: 1px solid var(--border-color);
}

.stage-card .stage-card-time-single:first-child {
  padding-right: 0.75rem;
}

.stage-card .stage-card-time-single:last-child {
  padding-left: 0.75rem;
  text-align: right;
  border-right: none;
}

.stage-card.expired {
  opacity: 0.75;
}

.buy-stage-wrapper {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.buy-stage-wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 40%;
  width: 1px;
  height: 100%;
  background-color: var(--border-color);
  opacity: 0;
}

@media (min-width: 992px) {
  .buy-stage-wrapper::after {
    opacity: 1;
  }
}

.buy-stage-wrapper-left {
  width: 100%;
}

@media (min-width: 992px) {
  .buy-stage-wrapper-left {
    width: 40%;
    padding-inline-end: 1.25rem;
  }
}

.buy-stage-wrapper-right {
  width: 100%;
  margin-top: 30px;
}

@media (min-width: 992px) {
  .buy-stage-wrapper-right {
    width: 60%;
    padding-inline-start: 1.25rem;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    margin-top: 0;
  }
}

.stage-currency-wrapper {
  max-height: 300px;
}

.stage-currency-single {
  display: block;
  position: relative;
}

.stage-currency-single .form-check-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.stage-currency-single .form-check-input:checked~.form-check-label::before {
  opacity: 1;
  color: var(--primary);
}

.stage-currency-single .form-check-label {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.75rem;
  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;
}

.stage-currency-single .form-check-label::before {
  position: absolute;
  content: "\f058";
  top: 4px;
  right: 8px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  opacity: 0.1;
}

.stage-currency-single .form-check-label img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.stage-currency-single+.stage-currency-single {
  margin-top: 0.75rem;
}

.buy-token-field-wrapper {
  position: relative;
}

.buy-token-field-wrapper-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 6px solid var(--surface-bg);
}

.buy-token-field+.buy-token-field {
  margin-top: 1.25rem;
}

.buy-token-field {
  position: relative;
}

.buy-token-field .form-control {
  height: 56px;
  font-size: 1rem;
  font-weight: 500;
}

@media (min-width: 576px) {
  .buy-token-field .form-control {
    font-size: 1.375rem;
  }
}

.buy-token-field-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  gap: 8px;
}

.buy-token-field-icon img {
  max-height: 30px;
}

.date-border-line {
  width: 45px;
  height: 45px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.05);
}

.date-border-line .date {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.date-border-line .month {
  font-size: 12px;
  line-height: 1;
  margin-top: 4px;
}

#buysell {
  margin-bottom: -16px;
}

.apexcharts-xaxis-label,
.apexcharts-yaxis-label,
.apexcharts-yaxis-title-text {
  fill: #959595 !important;
}

.apexcharts-legend-text {
  color: #fff !important;
}

.info-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  box-shadow: 0 0.25rem 1.875rem rgba(46, 45, 116, 0.05);
  border: 1px solid var(--border-color);
  padding: 20px;
  height: 100%;
}

.info-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.info-card-top p{
    color: black;
}

.info-card-top .icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
}

.info-card-top .icon::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  opacity: 0.15;
  border-radius: 50%;
}

.info-card-amount {
  margin-top: 12px;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .info-card {
    padding: 16px;
  }

  .info-card-top .icon {
    display: none;
  }

  .info-card-top p {
    font-size: 14px;
  }

  .info-card-amount {
    font-size: 14px;
  }
}

.no-data-img {
  max-height: 75px;
}

.deposit-method-wrapper {
  max-height: 400px;
}

.no-stage-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.no-stage-card .icon {
    position: relative;
    width: 45px;
    height: 45px;
    z-index: 1;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.no-stage-card .icon::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.15;
}

.it-no-ico-box {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.it-no-ico-box-inner {
    width: 200px;
    height: 200px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background: var(--body-bg);
    border-radius: 50%;
}

@media (min-width: 1400px) {
    .it-no-ico-box-inner {
        width: 280px;
        height: 280px;
    }
    
    .it-no-ico-box {
        min-height: 350px;
    }
}

.it-no-ico-box-inner .icon {
    font-size: 42px;
    color: var(--primary);
}

/* === user dashboard css end === */
/* === user send css start === */
.send-money-steps {
  display: flex;
  flex-wrap: wrap;
}

.send-money-steps .send-money-single-step {
  display: flex;
  align-items: center;
  width: 50%;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  justify-content: flex-start;
  padding-bottom: 15px;
}

.send-money-steps .send-money-single-step:nth-child(2)::after {
  display: none;
}

@media (min-width: 768px) {
  .send-money-steps .send-money-single-step:nth-child(2)::after {
    display: block;
  }
}

@media (min-width: 768px) {
  .send-money-steps .send-money-single-step {
    width: 25%;
    justify-content: center;
    padding-bottom: 0;
  }
}

.send-money-steps .send-money-single-step:last-child::after {
  display: none;
}

.send-money-steps .send-money-single-step::after {
  position: absolute;
  content: "";
  top: 30%;
  inset-inline-end: 10px;
  width: 50px;
  height: 1px;
  background-color: var(--border-color);
  z-index: -1;
}

@media (min-width: 768px) {
  .send-money-steps .send-money-single-step::after {
    inset-inline-end: -11%;
    width: 60%;
    top: 50%;
  }
}

.send-money-steps .send-money-single-step.active .send-money-single-step-amount {
  color: var(--primary);
  background-color: var(--primary);
  border-color: var(--primary);
}

.send-money-steps .send-money-single-step.active .send-money-single-step-amount::before {
  color: #fff;
  opacity: 1;
}

.send-money-steps .send-money-single-step-amount {
  position: relative;
  width: 26px;
  height: 26px;
  background-color: var(--border-color);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.send-money-steps .send-money-single-step-amount::before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  opacity: 0;
}

.send-money-steps .send-money-single-step-caption {
  font-weight: 500;
  font-size: 0.875rem;
  background-color: var(--bg-white);
  padding-inline-end: 0.3125rem;
}

@media (min-width: 768px) {
  .send-money-steps .send-money-single-step-caption {
    padding-inline-end: 1.25rem;
  }
}

@media (min-width: 768px) {
  .send-money-steps.steps-three .send-money-single-step {
    width: 33.3333333333%;
  }
}

@media (min-width: 992px) {
  .send-money-steps.steps-four .send-money-single-step {
    width: 25%;
  }
  .send-money-steps.steps-five .send-money-single-step {
    width: 20%;
  }
}

.recipient-single {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.625rem;
  background-color: rgba(255, 255, 255, 0.025);
  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;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.recipient-single-thumb {
  width: 50px;
  height: 50px;
  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;
  border: 2px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.recipient-single-content {
  width: calc(100% - 50px);
  padding-inline-start: 0.9375rem;
}

.recipient-single .form-check {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 10px;
  padding-inline-end: 10px;
  z-index: 1;
}

.recipient-single .form-check .form-check-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wallet-accordion {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.wallet-accordion-single-header {
  padding: 0.625rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.wallet-accordion-single-body {
  padding: 0.625rem 1.25rem;
}

.wallets-container {
  display: flex;
  flex-wrap: wrap;
}

.wallets-container {
  margin: -0.4375rem;
}

.single-wallet {
  width: 50%;
  padding: 0.4375rem;
}

@media (min-width: 768px) {
  .single-wallet {
    width: 33.3333333333%;
  }
}

@media (min-width: 768px) {
  .single-wallet {
    width: 25%;
  }
}

.single-wallet-inner {
  position: relative;
  padding: 1.25rem;
  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;
  height: 70px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.035);
}

@media (min-width: 768px) {
  .single-wallet-inner {
    height: 100px;
  }
}

.single-wallet-inner img {
  max-height: 45px;
}

.single-wallet-inner .form-check {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0.625rem;
}

.single-wallet-inner .form-check .form-check-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.like-container {
  display: flex;
  justify-content: center;
}

.like-container .like-thumb {
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

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

.like-container .like-thumb::after {
  position: absolute;
  content: "";
  top: 25px;
  left: 25px;
  width: calc(100% - 50px);
  height: calc(100% - 50px);
  background-color: var(--primary);
  opacity: 0.05;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.like-container .like-thumb-inner {
  width: 90px;
  height: 90px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  line-height: 1;
  font-size: 3rem;
}

.like-container .like-thumb-inner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  opacity: 0.075;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.crypto-single-transfer {
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border: 1px solid var(--border-color);
}

.crypto-single-transfer .rt-single-transfer {
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-bottom: 1px solid var(--border-color);
  padding-inline: 0;
}

.crypto-exchange-icon {
  height: 15px;
  position: relative;
}

.crypto-exchange-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  width: 45px;
  height: 45px;
  background-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;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.05);
  font-size: 1.375rem;
}

.crypto-exchange-top-overview {
  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 0 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.crypto-exchange-top-overview-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: var(--primary);
  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;
}

.crypto-exchange-top-overview-icon i {
  width: 24px;
  height: 24px;
  border: 1px solid white;
  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;
  transform: rotate(135deg);
}

@media (min-width: 576px) {
  .crypto-exchange-top-overview-icon i {
    transform: rotate(0deg);
  }
}

.crypto-exchange-top-overview-from {
  padding: 1.25rem;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

@media (min-width: 576px) {
  .crypto-exchange-top-overview-from {
    width: 50%;
    padding: 1.25rem 1.875rem;
    border-right: 1px solid var(--border-color);
    text-align: left;
  }
}

.crypto-exchange-top-overview-to {
  padding: 1.25rem;
  width: 100%;
  text-align: center;
}

@media (min-width: 576px) {
  .crypto-exchange-top-overview-to {
    width: 50%;
    text-align: left;
    padding: 1.25rem 1.875rem;
  }
}

.select-wallet-accordion .accordion-button {
  display: block;
  padding-block: 0;
  padding-inline: 1.25rem;
  font-weight: 700;
  font-family: var(--display-font);
  color: var(--display-color);
}

.select-wallet-accordion .accordion-button .form-check-label {
  flex-grow: 1;
  padding-block: 1rem;
}

/* === user send css end === */
/* === transaction css start === */
.transaction-all {
  padding-inline-end: 0.625rem;
  max-height: 300px;
}

@media (min-width: 576px) {
  .transaction-all {
    max-height: 450px;
  }
}

@media (min-width: 1200px) {
  .transaction-all {
    max-height: 530px;
  }
}

@media (min-width: 1400px) {
  .transaction-all {
    max-height: 630px;
  }
}

.single-transaction {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9375rem;
  cursor: pointer;
  padding: 0.625rem 0.9375rem;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.single-transaction.active,
.single-transaction:hover {
  background-color: rgba(255, 255, 255, 0.031372549);
}

.jq-toast-wrap .jq-toast-single {
  transition: all 0s;
}

.jq-toast-wrap .jq-toast-loader {
  height: 3px;
}

.select2-container--default.select2-container .select2-selection--multiple {
    border: solid black 1px;
    outline: 0;
}
.it-section-title{
    color: var(--bg-white);
}
.title{
    color: var(--bg-white);
}
.it-header-auth-link-btn::before {
    display: none;
}
.it-header-auth-link-btn a {
    padding: 0.75rem 1rem !important;
}
.it-blog-grid-content p {
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.it-breadcrumb{
    background: linear-gradient(344deg, var(--primary), transparent);
}
.it-footer{
    background: linear-gradient(344deg, var(--primary), transparent);
    border-top: none;
}
.it-header-auth-link-btn a::after {
    display: none;
}
.it-auth it-section-pt.it-section-pb > .form-select:focus, .form-select:active, .form-control:focus, .form-control:active, textarea:focus, textarea:active {
    background-color: var(--bg-white);
    font-size: 13px !important;
}
.it-auth it-section-pt.it-section-pb > .form-select, .form-control, textarea {
    background-color: var(--bg-white);
    font-size: 13px !important;
}
button.btn{
    border-radius: var(--bs-border-radius-pill) !important;
}
.it-auth it-section-pt.it-section-pb > h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    color: var(--display-color);
}

/*testinomial*/
.testimonial{
    background-color: var(--secondary);
    text-align: center;
    padding: 30px 30px 50px;
    margin: 0 15px 100px;
    position: relative;
}
.testimonial:before,
.testimonial:after{
    content: "";
    border-top: 40px solid var(--secondary);
    border-right: 125px solid transparent;
    position: absolute;
    bottom: -40px;
    left: 0;
}
.testimonial:after{
    /*background-color: var(--secondary);*/
    border-right: none;
    border-left: 125px solid transparent;
    left: auto;
    right: 0;
}
.testimonial .icon{
    display: inline-block;
    font-size: 80px;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.6;
}
.testimonial .description{
    font-size: 15px;
    color: #777;
    text-align: left;
    margin-bottom: 30px;
    opacity: 0.8;
}
.testimonial .testimonial-content{
    width: 100%;
    position: absolute;
    left: 0;
}
.testimonial .pic{
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 2px 2px #daad86;
    overflow: hidden;
    z-index: 1;
    position: relative;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
}
.testimonial .title{
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-transform: capitalize;
    margin: 0 0 5px 0;
}
.testimonial .post{
    display: block;
    font-size: 14px;
    color: var(--primary) !important;
}
.owl-theme .owl-controls{
    margin-top: 0;
}
.owl-theme .owl-controls .owl-page span{
    width: 32px;
    height: 10px;
    background: #fff;
    border: 2px solid #bd986b;
    margin: 5px;
    opacity: 1;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background: #ffd9b8;
    border-color: #fff;
}
@media only screen and (max-width: 650px) and (min-width: 400px){
    .testimonial:before{ border-right: 325px solid transparent; }
    .testimonial:after{ border-left: 325px solid transparent; }
}

.testimonial .pic img {
    width: 70px;
    height: 70px;
}
.company-logo img{
    height: 70px;
    width: 100px;
}

/*features*/

    
/* === transaction css end === */
/* === all jobs css start === */
/* === all jobs css end === */
/* === job details css start === */
/* === job details css end === */
/* === all companies css start === */
/* === all companies css end === */
/* === company details css start === */
/* === company details css end === */
/* === all candidates css start === */
/* === all candidates css end === */
/* === candidate details css start === */
/* === candidate details css end === */
/* === apply job css start === */
/* === apply job css end === */
/* === candidate dashboard css start === */
/* === candidate dashboard css end === */
/* === resume builder css start === */
/* === resume builder css end === */
/* === cv manager css start === */
/* === cv manager css end === */
/* === referral css start === */
/* === referral css end === */
/* === company dashboard css start === */