@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&family=Roboto:wght@400;500;700;900&display=swap");

.list.list-column,
.pagination {
  display: flex;
  flex-wrap: wrap;
}

.btn,
.overlay,
a,
img,
.name {
  transition: all 0.3s;
}

.list.list-style-two li::before,
.list.list-style-check li::before {
  position: absolute;
  font-weight: 900;
  font-size: 16px;
  font-family: "Line Awesome Free";
}

a {
  font-family: var(--heading-font);
  color: var(--heading);
}

:root {
  --heading-font: "Jost", sans-serif;
  --body-font: "Roboto", sans-serif;
  --heading: 0 0% 100%;
  --body: 0 0% 71%;
  --text-color: #212121;
  --border: 227 14% 19%;
  --border-one: #494d59;
  --border-two: #757575;
  --primary-bg: #1b2030;
  --section-common-bg: #121622;
  --section-bg-one: #222838;
  --section-bg-two: #242a3c;

  --bg-: #242a3c;
  --base-h: 31;
  --base-s: 68%;
  --base-l: 38%;
  --base: var(--base-h) var(--base-s) var(--base-l);
  --base-100: var(--base-h) var(--base-s) calc(var(--base-l) + 20%);
  --base-200: var(--base-h) var(--base-s) calc(var(--base-l) + 15%);
  --base-300: var(--base-h) var(--base-s) calc(var(--base-l) + 10%);
  --base-400: var(--base-h) var(--base-s) calc(var(--base-l) + 5%);
  --base-600: var(--base-h) var(--base-s) calc(var(--base-l) - 8%);
  --base-700: var(--base-h) var(--base-s) calc(var(--base-l) - 10%);
  --base-800: var(--base-h) var(--base-s) calc(var(--base-l) - 15%);
  --base-900: var(--base-h) var(--base-s) calc(var(--base-l) - 20%);

  --accent-h: 59;
  --accent-s: 90%;
  --accent-l: 77%;
  --accent: var(--accent-h) var(--accent-s) var(--accent-l);
  --accent-50: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 25%);
  --accent-100: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 20%);
  --accent-200: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 15%);
  --accent-300: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 10%);
  --accent-400: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 5%);
  --accent-600: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 5%);
  --accent-700: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 10%);
  --accent-800: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 15%);
  --accent-900: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 20%);
  --light-h: 148;
  --light-s: 0%;
  --light-l: 95%;
  --light: var(--light-h) var(--light-s) var(--light-l);
  --light-50: var(--light-h) var(--light-s) calc(var(--light-l) + 33%);
  --light-100: var(--light-h) var(--light-s) calc(var(--light-l) + 20%);
  --light-200: var(--light-h) var(--light-s) calc(var(--light-l) + 15%);
  --light-300: var(--light-h) var(--light-s) calc(var(--light-l) + 10%);
  --light-400: var(--light-h) var(--light-s) calc(var(--light-l) + 2%);
  --light-600: var(--light-h) var(--light-s) calc(var(--light-l) - 2%);
  --light-700: var(--light-h) var(--light-s) calc(var(--light-l) - 10%);
  --light-800: var(--light-h) var(--light-s) calc(var(--light-l) - 15%);
  --light-900: var(--light-h) var(--light-s) calc(var(--light-l) - 20%);
  --primary: 245 82% 67%;
  --secondary: 210 7% 56%;
  --success: 147 67% 47%;
  --danger: 360 78% 62%;
  --warning: 29 100% 63%;
  --info: 200 90% 53%;
  --dark: 206 70% 11%;
  --white: 0 0% 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  padding: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: hsl(var(--body));
  font-family: var(--body-font);
}

a {
  text-decoration: none;
  color: hsl(var(--body));
  font-family: var(--body-font);
}

a:hover {
  color: hsl(var(--accent));
}

span,
sub,
sup,
a {
  display: inline-block;
}

.bg_img {
  background-position: center;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  width: 100%;
  height: 100%;
}

.bg_fixed {
  background-attachment: fixed !important;
}

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

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

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 111;
  visibility: hidden;
  opacity: 0;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

p {
  margin: 0px;
}

.scrollToTop {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  z-index: 9999;
  bottom: 30px;
  right: 30px;
  font-size: 18px;
  position: fixed;
  transform: translateY(150px);
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  border-radius: 3px;
}

.scrollToTop:hover {
  color: var(--text-color);
}

.scrollToTop.active {
  transform: translateY(0);
  animation: bounceInDown 2s;
}

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

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

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

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

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

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

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

.alert__icon {
  padding: 13px 14px;
  color: #fff;
}

.alert {
  display: flex;
  align-items: center;
  padding: 0;
  border: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
  align-items: stretch;
}

.alert.alert--base {
  border: 1px solid hsl(var(--base) / 0.6);
  padding: 13px 15px;
}
.alert-icon {
  color: hsl(var(--base));
  margin-right: 12px;
}

.alert button.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px;
  display: flex;
  align-items: center;
  height: 100%;
  background: transparent;
}

.alert__message {
  padding: 12px;
  padding-right: 22px;
}

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

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

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

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

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

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  color: hsl(var(--heading));
  font-family: var(--heading-font);
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  color: hsl(var(--heading));
}

h1 {
  font-size: 68px;
}

@media (max-width: 1199px) {
  h1 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 30px;
}

@media (max-width: 767px) {
  h2 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 22px;
  }
}

h3 {
  font-size: 30px;
}

@media (max-width: 1199px) {
  h3 {
    font-size: 26px;
  }
}

@media (max-width: 425px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 600;
}

@media (max-width: 767px) {
  h4 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
}

@media (max-width: 1199px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
}

.fix {
  overflow: hidden;
}

.section-title {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
  color: hsl(var(--heading));
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 25px;
    margin-bottom: 30px;
  }
}

.section-subtitle {
  margin-bottom: 50px;
  font-size: 18px;
  font-weight: 500;
  max-width: 590px;
}

@media (max-width: 575px) {
  .section-subtitle {
    margin-bottom: 30px;
  }
}

.w-img {
  width: 100%;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.margin-0 {
  margin: 0 auto;
}

.filter-search-input {
  position: relative;
}

.filter-search-input input {
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  background: hsl(var(--white));
  border-radius: 10px 10px 10px 10px;
  padding: 0 20px;
  padding-right: 50px;
  outline: none;
}

.filter-search-input button {
  position: absolute;
  right: 20px;
  top: 12px;
  color: #919191;
  background: transparent;
  border: none;
}

/* pulse btn */
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Preloader */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-bg);
  z-index: 999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

#loading img {
  width: 150px;
  animation: preloader 3s linear infinite;
}

@keyframes preloader {
  0% {
    transform: scale(0.7, 0.7);
  }

  50% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(0.7, 0.7);
  }
}

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

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

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

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

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

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

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

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

.text--base {
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

/* background color css start */
.bg--primary {
  background-color: hsl(var(--primary)) !important;
}

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

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

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

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

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

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

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

.bg--base {
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
}

.bg--base-without-gradient {
  background-color: hsl(var(--base)) !important;
}

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

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

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

/* background color css end */
.pt-160 {
  padding-top: clamp(80px, 8vw, 160px);
}

.pt-120 {
  padding-top: clamp(70px, 6vw, 120px);
}

.pt-110 {
  padding-top: clamp(65px, 6vw, 110px);
}

.pt-100 {
  padding-top: clamp(55px, 5vw, 100px);
}

.pt-90 {
  padding-top: clamp(50px, 5vw, 90px);
}

.pt-80 {
  padding-top: clamp(50px, 5vw, 80px);
}

.pt-70 {
  padding-top: clamp(45px, 5vw, 70px);
}

.pt-60 {
  padding-top: clamp(35px, 5vw, 60px);
}

.pt-50 {
  padding-top: clamp(35px, 5vw, 50px);
}

.pt-40 {
  padding-top: clamp(25px, 5vw, 40px);
}

.pt-20 {
  padding-top: 20px;
}

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

.pb-180 {
  padding-bottom: clamp(100px, 10vw, 180px);
}

.pb-140 {
  padding-bottom: clamp(85px, 7vw, 140px);
}

.pb-120 {
  padding-bottom: clamp(70px, 6vw, 120px);
}

.pb-100 {
  padding-bottom: clamp(55px, 5vw, 100px);
}

.pb-90 {
  padding-bottom: clamp(50px, 5vw, 90px);
}

.pb-80 {
  padding-bottom: clamp(50px, 5vw, 80px);
}

.pb-60 {
  padding-bottom: clamp(35px, 5vw, 60px);
}

.pb-50 {
  padding-bottom: clamp(35px, 5vw, 50px);
}

.pb-40 {
  padding-bottom: clamp(25px, 5vw, 40px);
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-300 {
  padding-bottom: 300px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

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

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

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

.mt-40 {
  margin-top: 40px;
}

.mt-80 {
  margin-top: 80px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-80 {
  margin-right: 80px;
}

.mr--80 {
  margin-right: -80px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-80 {
  margin-left: 80px;
}

.ml--80 {
  margin-left: -80px;
}

.btn {
  font-weight: 400;
  outline: none !important;
  box-shadow: none !important;
  z-index: 1;
  padding: 12px 25px;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: 0.2s linear;
}

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

.btn--base {
  color: var(--text-color);
  border-radius: 5px;
  position: relative;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  position: relative;
  transition: 0.2s linear;
  border: 0;
}

.btn--base:hover::after {
  background-color: #1b2030;
}

.btn--base::after {
  position: absolute;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  left: 2px;
  top: 2px;
  bottom: 2px;
  right: 21px;
  background-color: transparent;
  border-radius: 5px;
  z-index: -1;
  transition: 0.2s linear;
}

.btn--base:hover {
  color: hsl(var(--accent)) !important;
}

@media (max-width: 1199px) {
  .btn {
    padding: 8px 18px;
  }
}

.btn.btn--lg {
  padding: 13px 45px !important;
}

@media (min-width: 992px) {
  .btn.btn--lg {
    font-size: 18px;
  }
}

.btn.btn--md {
  padding: 12px 25px !important;
  font-size: 16px;
}

.btn.btn--sm {
  padding: 5px 15px !important;
  font-size: 14px;
}

.btn.btn--xs {
  padding: 0px 10px !important;
  font-size: 13px;
}

.btn.btn--rounded {
  border-radius: 30px !important;
}

.btn.btn--rounded::after {
  border-radius: 30px;
}

.btn.btn--back-bg::after {
  background-color: var(--section-common-bg) !important;
}

.btn.btn--back-bg:hover:after {
  background-color: transparent !important;
}

.btn--primary {
  background-color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--white));
}

.btn--primary:hover {
  background-color: transparent;
  border-color: hsl(var(--primary));
  color: hsl(var(--primary)) !important;
}

.btn--secondary {
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--secondary));
  color: hsl(var(--white));
}

.btn--secondary:hover {
  background-color: transparent;
  border-color: hsl(var(--secondary));
  color: hsl(var(--secondary)) !important;
}

.btn--success {
  background-color: hsl(var(--success));
  border: 1px solid hsl(var(--success));
  color: hsl(var(--white));
}

.btn--success:hover {
  background-color: transparent;
  border-color: hsl(var(--success));
  color: hsl(var(--success)) !important;
}

.btn--danger {
  background-color: hsl(var(--danger));
  border: 1px solid hsl(var(--danger));
  color: hsl(var(--white));
  transition: 0.2s linear;
}

.btn--danger:hover {
  background-color: hsl(var(--danger) / 0.9) !important;
  border-color: hsl(var(--danger)) !important;
  color: hsl(var(--white)) !important;
}

.btn--warning {
  background-color: hsl(var(--warning));
  border: 1px solid hsl(var(--warning));
  color: hsl(var(--white));
}

.btn--warning:hover {
  background-color: transparent;
  border-color: hsl(var(--warning));
  color: hsl(var(--warning)) !important;
}

.btn--info {
  background-color: var(--info);
  border: 1px solid var(--info);
  color: hsl(var(--white));
}

.btn--info:hover {
  background-color: transparent;
  border-color: var(--info);
  color: var(--info) !important;
}

.btn--white {
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--white));
  color: hsl(var(--white));
}

.btn--white:hover {
  background-color: transparent;
  border-color: hsl(var(--white));
  color: hsl(var(--white)) !important;
}

.btn--dark {
  background-color: hsl(var(--dark));
  border: 1px solid hsl(var(--dark));
  color: hsl(var(--white));
}

.btn--dark:hover {
  background-color: transparent;
  border-color: hsl(var(--dark));
  color: hsl(var(--dark)) !important;
}

.btn--outline-base {
  color: hsl(var(--accent));
  border-radius: 5px;
  position: relative;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  position: relative;
  transition: 0.2s linear;
  border: 0;
}

.btn--outline-base::after {
  position: absolute;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  left: 2px;
  top: 2px;
  bottom: 2px;
  right: 21px;
  background-color: #1b2030;
  border-radius: 5px;
  z-index: -1;
  transition: 0.2s linear;
}

.btn--outline-base:hover::after {
  background-color: transparent !important;
  color: var(--text-color);
}

.btn--outline-primary {
  background-color: transparent;
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--primary)) !important;
}

.btn--outline-primary:hover {
  color: hsl(var(--white)) !important;
  border-color: hsl(var(--primary));
  background-color: hsl(var(--primary));
}

.btn--outline-secondary {
  background-color: transparent;
  border: 1px solid hsl(var(--secondary));
  color: hsl(var(--secondary)) !important;
}

.btn--outline-secondary:hover {
  color: hsl(var(--white)) !important;
  border-color: hsl(var(--secondary));
  background-color: hsl(var(--secondary));
}

.btn--outline-success {
  background-color: transparent;
  border: 1px solid hsl(var(--success));
  color: hsl(var(--success)) !important;
}

.btn--outline-success:hover {
  color: hsl(var(--white)) !important;
  border-color: hsl(var(--success));
  background-color: hsl(var(--success));
}

.btn--outline-danger {
  background-color: transparent;
  border: 1px solid hsl(var(--danger));
  color: hsl(var(--danger)) !important;
}

.btn--outline-danger:hover {
  color: hsl(var(--white)) !important;
  border-color: hsl(var(--danger));
  background-color: hsl(var(--danger));
}

.btn--outline-warning {
  background-color: transparent;
  border: 1px solid hsl(var(--warning));
  color: hsl(var(--warning)) !important;
}

.btn--outline-warning:hover {
  color: hsl(var(--white)) !important;
  border-color: hsl(var(--warning));
  background-color: hsl(var(--warning));
}

.btn--outline-info {
  background-color: transparent;
  border: 1px solid var(--info);
  color: var(--info) !important;
}

.btn--outline-info:hover {
  color: hsl(var(--white)) !important;
  border-color: var(--info);
  background-color: var(--info);
}

.btn--outline-white {
  background-color: transparent;
  border: 1px solid hsl(var(--white));
  color: hsl(var(--white)) !important;
}

.btn--outline-white:hover {
  color: hsl(var(--white)) !important;
  border-color: hsl(var(--white));
  background-color: hsl(var(--white));
}

.btn--outline-dark {
  background-color: transparent;
  border: 1px solid hsl(var(--dark));
  color: hsl(var(--dark)) !important;
}

.btn--outline-dark:hover {
  color: hsl(var(--white)) !important;
  border-color: hsl(var(--dark));
  background-color: hsl(var(--dark));
}

.btn--white {
  color: hsl(var(--base));
}

.badge--base {
  background-color: hsl(var(--base) / 0.15);
  border: 1px solid hsl(var(--base));
  color: hsl(var(--base));
}

.badge--accent {
  background-color: hsl(var(--accent) / 0.15);
  border: 1px solid hsl(var(--accent));
  color: hsl(var(--accent));
}

.badge--primary {
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--primary));
}

.badge--secondary {
  border: 1px solid hsl(var(--secondary));
  color: hsl(var(--secondary));
}

.badge--success {
  border: 1px solid hsl(var(--success));
  color: hsl(var(--success));
}

.badge--danger {
  border: 1px solid hsl(var(--danger));
  color: hsl(var(--danger));
}

.badge--warning {
  border: 1px solid hsl(var(--warning));
  color: hsl(var(--warning));
}

.badge--info {
  border: 1px solid hsl(var(--info));
  color: hsl(var(--info));
}

.badge--dark {
  border: 1px solid hsl(var(--dark));
  color: hsl(var(--dark));
}

.badge--white {
  border: 1px solid hsl(var(--white));
  color: hsl(var(--white));
}

.badge {
  border-radius: 5px;
  padding: 4px 15px;
}

.badge.badge--icon {
  padding: 6px;
  border-radius: 5px;
}

.badge.badge--lg {
  padding: 6px 16px;
}

.badge.badge--md {
  padding: 4px 12px;
}

.badge.badge--sm {
  padding: 3px 10px;
}

.badge--fill-primary {
  background-color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--white));
}

.badge--fill-primary:hover {
  color: hsl(var(--white));
}

.badge--fill-secondary {
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--secondary));
  color: hsl(var(--white));
}

.badge--fill-secondary:hover {
  color: hsl(var(--white));
}

.badge--fill-success {
  background-color: hsl(var(--success));
  border: 1px solid hsl(var(--success));
  color: hsl(var(--white));
}

.badge--fill-success:hover {
  color: hsl(var(--white));
}

.badge--fill-danger {
  background-color: hsl(var(--danger));
  border: 1px solid hsl(var(--danger));
  color: hsl(var(--white));
}

.badge--fill-danger:hover {
  color: hsl(var(--white));
}

.badge--fill-warning {
  background-color: hsl(var(--warning));
  border: 1px solid hsl(var(--warning));
  color: hsl(var(--white));
}

.badge--fill-warning:hover {
  color: hsl(var(--white));
}

.badge--fill-info {
  background-color: hsl(var(--info));
  border: 1px solid hsl(var(--info));
  color: hsl(var(--white));
}

.badge--fill-info:hover {
  color: hsl(var(--white));
}

.badge--fill-white {
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--white));
  color: hsl(var(--white));
}

.badge--fill-white:hover {
  color: hsl(var(--white));
}

.badge--fill-dark {
  background-color: hsl(var(--dark));
  border: 1px solid hsl(var(--dark));
  color: hsl(var(--white));
}

.badge--fill-dark:hover {
  color: hsl(var(--white));
}

.badge--fill-base {
  background-color: hsl(var(--base));
  border: 1px solid hsl(var(--base));
  color: hsl(var(--white));
}

.badge--fill-base:hover {
  color: hsl(var(--white));
}

.table {
  margin: 0;
  font-size: 15px;
  background-color: transparent;
  box-shadow: 0 0 8px hsl(var(--base) / 0.06);
  border-radius: 10px;
  border-collapse: separate;
  border-spacing: 0px;
}

.table thead tr th {
  background: #121622;
  font-size: 18px;
  padding: 15px 35px;
  color: hsl(var(--white));
  font-family: var(--heading-font);
  font-weight: 700;
  border-top: 2px solid hsl(var(--base));
  border-bottom: 2px solid hsl(var(--base));
  position: relative;
  overflow: 0.3;
}

.table thead tr th::before {
  position: absolute;
  content: "";
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  width: 2px;
  height: 88%;
  top: 4px;
  left: 0px;
}

.table thead tr th:first-child {
  text-align: left;
  border-radius: 20px 0 0 0;
  border-left: 2px solid hsl(var(--base));
}

.table thead tr th:first-child:before {
  display: none;
}

.table thead tr th:last-child {
  border-radius: 0 20px 0 0;
  border-right: 2px solid hsl(var(--base));
}

@media (max-width: 1399px) {
  .table thead tr th {
    padding: 15px 15px;
  }
}

.table tbody tr {
  border: 1px solid hsl(var(--base));
}

.table tbody tr:last-child td {
  border-bottom: 2px solid hsl(var(--base));
}

.table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 20px;
}

.table tbody tr:last-child td:last-child {
  border-radius: 0 0 20px 0;
}

.table tbody tr td {
  vertical-align: middle;
  padding: 15px 15px;
  border-width: none;
  border-color: rgba(255, 255, 255, 0.1);
  font-family: var(--heading-font);
  border-bottom: 1px solid hsl(var(--border));
  color: hsl(var(--body));
  font-weight: 500;
}

@media (max-width: 1399px) {
  .table tbody tr td {
    padding: 10px;
  }
}

.table tbody tr td i {
  margin-right: 2px;
}

.table tbody tr td .gateway p {
  color: hsl(var(--body));
  font-size: 18px;
  font-weight: 500;
}

.table tbody tr td .date {
  color: hsl(var(--body));
  font-size: 18px;
  font-weight: 500;
}

.table tbody tr td .amount {
  color: hsl(var(--body));
  font-size: 18px;
  font-weight: 500;
}

.table tbody tr td::before {
  content: attr(data-label);
  font-family: var(--heading-font);
  font-size: 15px;
  color: hsl(var(--heading));
  font-weight: 500;
  display: none;
}

.table tbody tr td:first-child {
  text-align: left;
  border-left: 2px solid hsl(var(--base));
}

.table tbody tr td:last-child {
  border-right: 2px solid hsl(var(--base));
}

@media (max-width: 767px) {
  .table--responsive--md thead {
    display: none;
  }

  .table--responsive--md tbody tr {
    display: block;
    border-bottom: none;
  }

  .table--responsive--md tbody tr:last-child {
    border-bottom: 1px solid hsl(var(--base));
  }

  .table--responsive--md tbody tr:last-child td {
    border-bottom: 1px solid hsl(var(--border));
  }

  .table--responsive--md tbody tr td {
    display: flex;
    align-items: center;
    gap: 35px;
    text-align: left;
    padding: 10px 15px;
    justify-content: space-between;
    border-bottom: 1px solid hsl(var(--border));
  }
}

@media (max-width: 767px) and (max-width: 991px) {
  .table--responsive--md tbody tr td {
    font-size: 14px !important;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .table--responsive--md tbody tr td {
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .table--responsive--md tbody tr td::before {
    display: block;
  }
}

@media (max-width: 767px) {
  .table--responsive--md tbody tr td:first-child {
    text-align: left;
    border-left: none;
    border-radius: 0px !important;
  }
}

@media (max-width: 767px) {
  .table--responsive--md tbody tr td:last-child {
    text-align: left;
    border-right: none;
    border-bottom: none !important;
    border-radius: 0px !important;
  }
}

@media (max-width: 991px) {
  .table--responsive--lg thead {
    display: none;
  }

  .table--responsive--lg tbody tr {
    display: block;
  }

  .table--responsive--lg tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    text-align: right;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid hsl(var(--border));
  }
}

@media (max-width: 991px) and (max-width: 991px) {
  .table--responsive--lg tbody tr td {
    font-size: 14px !important;
  }
}

@media (max-width: 991px) {
  .table--responsive--lg tbody tr td:last-child {
    border: none;
  }
}

@media (max-width: 991px) {
  .table--responsive--lg tbody tr td::before {
    display: block;
  }
}

@media (min-width: 992px) {
  .table--responsive--lg tbody tr td {
    border: none;
  }
}

@media (max-width: 1199px) {
  .table--responsive--xl thead {
    display: none;
  }

  .table--responsive--xl tbody tr {
    display: block;
    border-bottom: none;
  }

  .table--responsive--xl tbody tr:last-child {
    border-bottom: 1px solid hsl(var(--base));
  }

  .table--responsive--xl tbody tr:last-child td {
    border-bottom: 1px solid hsl(var(--border));
  }

  .table--responsive--xl tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    text-align: right;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid hsl(var(--border));
  }
}

@media (max-width: 1199px) and (max-width: 991px) {
  .table--responsive--xl tbody tr td {
    font-size: 14px !important;
  }
}

@media (max-width: 1199px) {
  .table--responsive--xl tbody tr td:first-child {
    text-align: left;
    border-left: none;
    border-radius: 0px !important;
  }
}

@media (max-width: 1199px) {
  .table--responsive--xl tbody tr td:last-child {
    text-align: left;
    border-right: none;
    border-bottom: none !important;
    border-radius: 0px !important;
  }
}

@media (max-width: 1199px) {
  .table--responsive--xl tbody tr td::before {
    display: block;
  }
}

@media (min-width: 1200px) {
  .table--responsive--xl tbody tr td {
    border: 0;
  }
}

.form--control {
  height: 60px;
  border-radius: 5px;
  padding: 0px 25px;
  border: 1px solid var(--border-one);
  outline: 0 !important;
  box-shadow: none !important;
  background-color: transparent;
  color: hsl(var(--body)) !important;
}

.form--control:focus {
  border: 1px solid hsl(var(--base));
  background-color: #242a3c;
}

.form--control[readonly] {
  border-color: hsl(var(--border));
  background-color: hsl(var(--base) / 0.1);
}

.form--control.placeholder-italic::placeholder {
  font-style: italic;
}

.form-group.has-icon {
  position: relative;
}

.form-group.has-icon .form-group-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 20px;
  color: hsl(var(--base));
}

.form-group.has-icon .form--control {
  padding: 0px 40px 0px 25px;
}

.form-group.has-icon .form-select {
  color: hsl(var(--body));
  font-weight: 400;
  background-image: none !important;
}

.form-group.has-icon-select {
  position: relative;
}

.form-group.has-icon-select::before {
  position: absolute;
  content: "\f078";
  color: hsl(var(--body));
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  right: 24px;
  font-size: 12px;
  top: 50px;
  opacity: 0.7;
}

.form-select {
  background-image: none;
}

textarea.form--control {
  height: 130px;
  padding: 25px;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: hsl(var(--heading));
  transition: background-color 5000s ease-in-out 0s;
}

.custom--radio {
  position: relative;
  padding-left: 0;
}

.custom--radio input[type="radio"] {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  cursor: pointer;
}

.custom--radio input[type="radio"]:checked ~ label::before {
  border-width: 1px;
  border-color: hsl(var(--base)) !important;
}

.custom--radio input[type="radio"]:checked ~ label::after {
  opacity: 1;
}

.custom--radio label {
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 400;
}

.custom--radio label::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 50%;
}

.custom--radio label::after {
  position: absolute;
  content: "";
  top: 8px;
  left: 4px;
  width: 7px;
  height: 7px;
  background-color: hsl(var(--base)) !important;
  opacity: 0;
  border-radius: 50%;
}

.custom--checkbox input {
  box-shadow: none !important;
  background: transparent;
  border-color: hsl(var(--base));
  margin-right: 5px;
}

.custom--checkbox input:focus {
  border-color: hsl(var(--base));
}

.custom--checkbox input:checked {
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  ) !important;
  border-color: hsl(var(--base));
  position: relative;
}

.custom--checkbox input:checked::before {
  position: absolute;
  content: "\f00c";
  color: var(--text-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: 2px;
  font-size: 11px;
  top: 50%;
  transform: translateY(-50%);
}

.custom--checkbox label {
  position: relative;
  margin-bottom: 0;
  line-height: 1.2;
}

.form--switch input {
  box-shadow: none !important;
  width: 2.5em !important;
  height: 1.3em;
}

.form--switch input:checked {
  background-color: hsl(var(--base));
  border-color: hsl(var(--base));
}

.form--switch label {
  margin-left: 7px;
}

/* form css end*/
.select-plan-area .has-icon label {
  font-size: 20px;
  color: hsl(var(--white));
  font-weight: 500;
  margin-bottom: 10px;
}

.select-plan-price ul {
  display: flex;
  justify-content: space-between;
}

.select-plan-price ul li {
  font-size: 20px;
  font-weight: 600;
  color: hsl(var(--white));
}

@media (max-width: 991px) {
  .select-plan-price ul li {
    font-size: 14px;
  }
}

.select-plan-price ul li span {
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-label {
  font-size: 16px;
  color: hsl(var(--white));
}

.custom--card {
  border: 1px solid var(--border-one);
  border-radius: 5px;
  background-color: var(--primary-bg);
}

.custom--card .card-header,
.custom--card .card-footer {
  text-align: center;
}

.custom--card .card-header .title,
.custom--card .card-footer .title {
  color: hsl(var(--white));
  margin: 0;
}

.custom--card .card-header,
.custom--card .card-footer {
  padding: 15px 25px;
  border-color: hsl(var(--border)) !important;
}

@media (max-width: 575px) {
  .custom--card .card-header,
  .custom--card .card-footer {
    padding: 10px 20px;
  }
}

@media (max-width: 575px) {
  .custom--card .card-header,
  .custom--card .card-footer {
    padding: 8px 15px;
  }
}

.custom--card .card-body {
  padding: 25px;
}

.custom--card .card-body p {
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .custom--card .card-body {
    padding: 20px;
  }
}

@media (max-width: 425px) {
  .custom--card .card-body {
    padding: 15px;
  }
}

.custom--card.card--lg .card-header,
.custom--card.card--lg .card-footer {
  padding: 20px 35px;
}

@media (max-width: 767px) {
  .custom--card.card--lg .card-header,
  .custom--card.card--lg .card-footer {
    padding: 15px 25px;
  }
}

@media (max-width: 575px) {
  .custom--card.card--lg .card-header,
  .custom--card.card--lg .card-footer {
    padding: 10px 20px;
  }
}

@media (max-width: 425px) {
  .custom--card.card--lg .card-header,
  .custom--card.card--lg .card-footer {
    padding: 8px 15px;
  }
}

.custom--card.card--lg .card-body {
  padding: 35px;
}

@media (max-width: 767px) {
  .custom--card.card--lg .card-body {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .custom--card.card--lg .card-body {
    padding: 20px;
  }
}

@media (max-width: 425px) {
  .custom--card.card--lg .card-body {
    padding: 15px;
  }
}

.custom--card.card--md .card-header,
.custom--card.card--md .card-footer {
  padding: 10px 20px;
}

.custom--card.card--md .card-body {
  padding: 20px 20px;
}

.custom--modal .modal-footer,
.custom--modal .modal-body,
.custom--modal .modal-header {
  border-color: var(--border-one) !important;
  background-color: var(--primary-bg) !important;
  color: hsl(var(--white)) !important;
}

.custom--modal .modal-content {
  border: 1px solid var(--border-one) !important;
}

.custom--modal .modal-footer .modal-title,
.custom--modal .modal-header .modal-title {
  margin: 0;
  color: hsl(var(--white)) !important;
}

.custom--modal .modal-footer .btn-close,
.custom--modal .modal-header .btn-close {
  background: transparent;
  font-size: 20px;
  line-height: 1;
  color: hsl(var(--white)) !important;
}

.pagination {
  justify-content: center;
  gap: 12px;
  margin: 0;
  justify-content: center;
}
.custom--pagination {
  margin-top: 24px;
}
.custom--pagination .small {
  color: #fff !important;
  font-size: 16px;
}
.pagination .page-item {
  text-align: center;
}

.pagination .page-item .page-link {
  width: 50px;
  height: 50px;
  line-height: 40px;
  border-color: hsl(var(--border));
  box-shadow: none;
  line-height: 50px;
  border-radius: 50% !important;
  padding: 0;
  color: hsl(var(--body));
  background: transparent;
}

.pagination .page-item.active .page-link,
.pagination .page-item:hover .page-link {
  color: var(--text-color);
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  border: none;
}

.pagination .page-item.disabled {
  cursor: no-drop !important;
}

.pagination .page-item.disabled .page-link {
  color: hsl(var(--body));
  background: hsl(var(--dark) / 0.1);
  border: none;
}

.list.list-column {
  flex-direction: column;
}

.list.list-style-check li {
  position: relative;
  padding: 7px 0;
  padding-left: 28px;
  font-size: 14px;
}

.list.list-style-check li.active {
  color: hsl(var(--heading));
}

.list.list-style-check li.active::before {
  content: "\f00c";
}

.list.list-style-check li.disabled {
  color: hsl(var(--body) / 0.65);
}

.list.list-style-check li.disabled::before {
  content: "\f00d";
}

.list.list-style-check li::before {
  left: 0;
  top: 6px;
}

.list.list-style-one li {
  padding: 6px 0;
  padding-left: 25px;
  position: relative;
}

.list.list-style-one li::before {
  position: absolute;
  content: "";
  left: 0;
  width: 10px;
  height: 10px;
  top: 12px;
  background-color: hsl(var(--base));
  border-radius: 50%;
}

.list.list-style-two li {
  padding: 6px 0;
  padding-left: 25px;
  position: relative;
}

.list.list-style-two li::before {
  content: "\f101";
  left: 0;
  top: 6px;
  color: hsl(var(--base));
}

@media (min-width: 576px) {
  .list.list-50-sm li {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .list.list-50-md li {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .list.list-50-lg li {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .list.list-50-xl li {
    width: 50%;
  }
}

.header-main {
  padding: 50px 0px;
}

@media (max-width: 991px) {
  .header-main {
    padding: 25px 0px;
  }
}

.header-main3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header-sticky {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--primary-bg);
  z-index: 999;
  animation: sticky 1.3s;
  padding: 30px 0px;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
}

.header-sticky .bar-icon span {
  background-color: hsl(var(--heading));
}

.main-menu {
  display: inline-block;
}

.main-menu ul li {
  display: inline-block;
  margin: 0px 13px;
  position: relative;
}

@media (max-width: 1199px) {
  .main-menu ul li {
    margin: 0px 8px;
  }
}

.main-menu ul li a {
  font-size: 18px;
  color: hsl(var(--white));
  display: inline-block;
  line-height: 20px;
  font-weight: 500;
}

@media (max-width: 1199px) {
  .main-menu ul li a {
    font-size: 15px;
  }
}

.main-menu ul li .sub-menu {
  background: var(--section-common-bg) none repeat scroll 0 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 140%;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 240px;
  z-index: 9;
  border-top: 3px solid hsl(var(--accent));
  text-align: left;
  padding: 15px 0;
}

.main-menu ul li .sub-menu .sub-menu {
  left: 100%;
  top: 100%;
}

.main-menu ul li .sub-menu li {
  display: flex;
  margin: 0px;
  padding: 8px 25px 8px 25px;
  justify-content: space-between;
}

.main-menu ul li .sub-menu li a {
  padding: 0px;
  display: block;
  color: hsl(var(--white));
  position: relative;
  font-weight: 500;
}

.main-menu ul li .sub-menu li a:before {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background-color: var(--text-color);
  opacity: 0;
}

.main-menu ul li .sub-menu li:hover > a {
  color: hsl(var(--accent));
  padding-left: 5px;
}

.main-menu ul li .sub-menu li:hover > a:before {
  width: 100%;
  left: 0;
  right: auto;
}

.main-menu ul li:hover > a {
  color: hsl(var(--accent));
}

.main-menu ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 120%;
}

.main-menu ul li:hover > .sub-menu li:hover > .sub-menu {
  top: 0;
}

.main-menu ul li:hover.menu-item-has-children::after {
  color: var(--text-color);
}

.header-main-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-width: 200px;
  max-height: 50px;
}

@media (max-width: 1199px) {
  .logo img {
    max-width: 160px;
    max-height: 45px;
  }
}

@media (max-width: 767px) {
  .logo img {
    max-width: 150px;
  }
}

@media (max-width: 575px) {
  .logo img {
    max-width: 130px;
  }
}

.header-main-middle {
  display: flex;
  align-items: center;
}

.header-language {
  position: relative;
  margin-left: 40px;
}

.header-language::before {
  position: absolute;
  content: "\f078";
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  right: 24px;
  font-size: 11px;
  top: 50%;
  transform: translateY(-50%);
}

.header-language::after {
  position: absolute;
  content: "\f0ac";
  color: var(--text-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: -20px;
  font-size: 11px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  justify-content: center;
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.custom-select {
  background: transparent;
  color: #fff;
  border: none;
  background-image: none;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  margin-left: 8px;
}

.custom-select:focus {
  border: none;
  outline: 0;
  box-shadow: none;
}

.custom-select option {
  background: var(--text-color);
}

div.mean-container .mean-bar {
  background: transparent;
}

div.mean-container .mean-nav {
  background: none;
  margin-bottom: 40px;
  overflow: hidden;
}

div.mean-container .mean-nav > ul {
  display: block !important;
}

div.mean-container .mean-nav ul li a {
  width: 100%;
  color: hsl(var(--white));
  font-size: 16px;
  text-transform: none;
  opacity: 1;
  padding-left: 0;
}

div.mean-container .mean-nav ul li a:hover {
  color: var(--clr-theme-1);
}

div.mean-container .mean-nav ul li a i {
  display: none;
}

div.mean-container .mean-nav ul li a.mean-expand {
  height: 26px;
  border: none;
  background: var(--clr-bg-footer);
  padding: 10px 5%;
}

div.mean-container .mean-nav ul li a.mean-expand::before {
  position: absolute;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-size: 14px;
  font-weight: 900;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

div.mean-container .mean-nav ul li a.mean-expand.mean-clicked::before {
  content: "\f106";
  font-family: "Line Awesome Free";
  font-size: 18px;
  font-weight: 900;
}

div.mean-container .mean-nav ul li li a {
  padding: 10px 5%;
}

div.mean-container .mean-nav ul li li li a {
  padding: 10px 10%;
}

div.mean-container a.meanmenu-reveal {
  display: none !important;
}

/* bar-icon style start */
.menu-bar {
  display: flex;
}

.bar-icon {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.bar-icon span {
  width: 100%;
  height: 2px;
  background: hsl(var(--white));
  display: inline-block;
}

.bar-icon span:nth-child(2) {
  margin-left: 9px;
  transition: 0.3s;
}

.bar-icon:hover span:nth-child(2) {
  margin-left: 0;
}

.menu-bar-two span {
  background-color: hsl(var(--heading));
}

.offcanvas-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-overlay.overlay-open {
  opacity: 0.4;
  visibility: visible;
}

.offcanvas-overlay-white {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-overlay-white.overlay-open {
  opacity: 0;
  visibility: visible;
}

.side-info-close {
  background: none;
  border: 0;
  font-size: 20px;
  padding: 0;
  transition: all ease 0.3s;
}

.side-info-close i {
  color: hsl(var(--white));
}

.side-info {
  background: var(--primary-bg);
  height: 100%;
  position: fixed;
  z-index: 99999;
  right: -100%;
  top: 0;
  width: 365px;
  padding: 45px 35px 45px 45px;
  transition: 0.6s;
  overflow-y: scroll;
}

@media (max-width: 375px) {
  .side-info {
    width: 300px;
    padding: 15px 25px;
  }
}

.side-info.info-open {
  right: 0;
}

.side-info-content .header-btn {
  width: 36px !important;
  margin-top: 10px !important;
  border: 1px solid hsl(var(--success)) !important;
}

.footer-inner {
  background-color: var(--primary-bg);
  position: relative;
  z-index: 1;
  clip-path: polygon(
    50% 0%,
    100% 10%,
    100% 60%,
    100% 100%,
    25% 100%,
    0 100%,
    0 10%
  );
}

@media (max-width: 575px) {
  .footer-inner {
    clip-path: none;
  }
}

.footer__area {
  background-color: var(--section-common-bg);
  position: relative;
  z-index: 1;
}

.footer__area::before {
  position: absolute;
  content: "";
  background: #222838;
  width: 90%;
  height: 475px;
  left: 4%;
  border-radius: 20px;
  top: 20px;
  z-index: -2;
}

@media (max-width: 575px) {
  .footer__area::before {
    display: none;
  }
}

.footer__area::after {
  position: absolute;
  content: "";
  background: linear-gradient(
    52deg,
    hsl(var(--accent)) 5.48%,
    hsl(var(--base)) 59.04%,
    hsl(var(--accent)) 107.63%
  );
  width: 85%;
  height: 475px;
  left: 7%;
  border-radius: 20px;
  top: 3px;
  z-index: -3;
}

@media (max-width: 575px) {
  .footer__area::after {
    display: none;
  }
}

.footer__area-bg {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.footer-top .logo {
  margin-bottom: 30px;
}

.footer-top__social ul li {
  display: inline-block;
  margin-right: 10px;
}

.footer-top__social ul li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-two);
  transition: all ease 0.3s;
}

.footer-top__social ul li a i {
  font-size: 20px;
  color: var(--border-two);
}

.footer-top__social ul li a:hover {
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  border: none;
}

.footer-top__social ul li a:hover i {
  color: var(--text-color);
}

.footer-widget__title {
  font-size: 24px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget__title::before {
  position: absolute;
  content: "";
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  width: 25px;
  height: 3px;
  border-radius: 10px;
  bottom: 0;
}

.footer-widget__link li {
  margin-bottom: 6px;
  position: relative;
  margin-left: 20px;
}

.footer-widget__link li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  top: 8px;
  border-radius: 50%;
  left: -20px;
}

.footer-widget__link li a {
  transition: all ease 0.3s;
  font-size: 16px;
  text-transform: capitalize;
}

.footer-widget__contact li {
  margin-bottom: 20px;
}

.footer-widget__contact li a {
  display: flex;
  max-width: 310px;
}

.input-group-text {
  border: none !important;
}

.footer-widget__contact li a i {
  font-size: 25px;
  margin-right: 10px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 767px) {
  .banner-area {
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.banner-area::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--primary-bg);
  z-index: -1;
}

@media (max-width: 767px) {
  .banner-area::after {
    display: none;
  }
}

.banner-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.7;
  z-index: -1;
}

.banner__shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 99;
  left: 0;
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .banner__shape {
    display: none;
  }
}

.banner__shape::before {
  position: absolute;
  content: "";
  bottom: 14px;
  right: -17px;
  width: 400px;
  height: 100%;
  display: inline-block;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-mask: url(../images/banner/banner-right-shape.svg) no-repeat 50% 50%;
  mask: url(../images/banner/banner-right-shape.svg) no-repeat 50% 50%;
  mask-size: auto;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: rotate(-6deg);
}

@media (max-width: 1700px) {
  .banner__shape::before {
    right: -27px;
  }
}

@media (max-width: 1599px) {
  .banner__shape::before {
    right: -45px;
  }
}

@media (max-width: 1399px) {
  .banner__shape::before {
    right: -70px;
  }
}

@media (max-width: 1199px) {
  .banner__shape::before {
    right: -100px;
    transform: rotate(-8deg);
  }
}

@media (max-width: 991px) {
  .banner__shape::before {
    display: none;
  }
}

.banner__shape::after {
  position: absolute;
  content: "";
  left: -5px;
  bottom: 47px;
  width: 190px;
  height: 100%;
  display: inline-block;
  background: linear-gradient(
    270deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-mask: url(../images/banner/banner-left-shape.png) no-repeat 50% 50%;
  mask: url(../images/banner/banner-left-shape.png) no-repeat 50% 50%;
  mask-size: auto;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: rotate(1deg);
}

@media (max-width: 1700px) {
  .banner__shape::after {
    transform: rotate(8deg);
  }
}

@media (max-width: 1599px) {
  .banner__shape::after {
    transform: rotate(2deg);
    bottom: 29px;
  }
}

@media (max-width: 1399px) {
  .banner__shape::after {
    transform: rotate(8deg);
  }
}

@media (max-width: 1199px) {
  .banner__shape::after {
    transform: rotate(12deg);
    bottom: 25px;
  }
}

.single-banner {
  padding: 175px 0px 100px 0px;
}

.single-banner .banner-content h1 {
  color: hsl(var(--white));
  margin-bottom: 50px;
  line-height: 1.2;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .single-banner .banner-content h1 {
    font-size: 30px;
  }
}

.single-banner .banner-right-content {
  margin-right: -80px;
}

@media (max-width: 1599px) {
  .single-banner .banner-right-content {
    margin-right: 0px;
  }
}

.single-banner .banner-shape {
  position: absolute;
  bottom: 0;
}

.single-banner .banner-right-image {
  margin-top: 70px;
}

@media (max-width: 1199px) {
  .single-banner .banner-right-image {
    margin-top: 0px;
  }
}

.single-banner .coin-one {
  top: -20px;
  left: 39%;
  animation: move-tb 3s linear infinite;
}

@media (max-width: 1199px) {
  .single-banner .coin-one {
    top: -52px;
    left: 43%;
    width: 10%;
  }
}

.single-banner .coin-two {
  top: 34px;
  left: 57%;
  animation: tada 5s ease-in-out infinite;
}

@media (max-width: 1199px) {
  .single-banner .coin-two {
    top: -9px;
    left: 58%;
    width: 8%;
  }
}

.single-banner .coin-three {
  top: 85px;
  left: 31%;
  animation: tada 5s ease-in-out infinite;
}

@media (max-width: 1199px) {
  .single-banner .coin-three {
    top: 10px;
    left: 32%;
    width: 10%;
  }
}

.single-banner .coin-four {
  top: 116px;
  left: 46%;
  animation: tada 5s ease-in-out infinite;
}

@media (max-width: 1199px) {
  .single-banner .coin-four {
    top: 30px;
    left: 47%;
    width: 10%;
  }
}

.about__right-featurs {
  border-bottom: 2px solid hsl(var(--border));
  padding-bottom: 5px;
}

.about__right-featurs-item {
  max-width: 243px;
}

.about__right-featurs-item h4 {
  font-size: 28px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .about__right-featurs-item h4 {
    font-size: 25px;
  }
}

.about__right-featurs-item h4 i {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--text-color);
}

.about__right-bottom-item {
  margin-top: 30px;
  display: flex;
  align-items: center;
  position: relative;
}

/* 
.about__right-bottom-item:last-child {
    border: none !important;
} */

.about__right-bottom-item-left {
  margin-right: 20px;
}

.about__right-bottom-item-left i {
  font-size: 60px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 575px) {
  .about__right-bottom-item-left i {
    font-size: 40px;
  }
}

.about__right-bottom-item-right h3 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 1199px) {
  .about__right-bottom-item-right h3 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .about__right-bottom-item-right h3 {
    font-size: 24px;
  }
}

.about__right-bottom-item-right p {
  font-size: 18px;
}

@media (max-width: 1199px) {
  .about__right-bottom-item-right p {
    font-size: 16px;
  }
}

.about__right-bottom-item-border::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 52px;
  background: hsl(var(--border));
  right: 20px;
}

.about__right-bottom
  .row
  .col-xl-6:last-child
  .about__right-bottom-item-border:before {
  display: none;
}

@media (max-width: 1199px) {
  .about__right-bottom-item-border::before {
    right: -9px;
  }
}

@media (max-width: 991px) {
  .about__right-bottom-item-border::before {
    right: 50px;
  }
}

@media (max-width: 767px) {
  .about__right-bottom-item-border::before {
    right: 5px;
  }
}

@media (max-width: 575px) {
  .about__right-bottom-item-border::before {
    display: none;
  }
}

.about__left {
  margin-left: -140px;
  margin-right: 30px;
}

@media (max-width: 1599px) {
  .about__left {
    margin-right: 0px;
    margin-left: 0px;
  }
}

@media (max-width: 991px) {
  .about__left {
    margin-bottom: 30px;
  }
}

.about__left-vector-1 {
  position: absolute;
  top: -6%;
  left: 21%;
  animation: hero-circle-1 7s linear 0s infinite;
}

@media (max-width: 1599px) {
  .about__left-vector-1 {
    top: -12%;
    left: 20%;
  }
}

@media (max-width: 1199px) {
  .about__left-vector-1 {
    width: 20%;
  }
}

@media (max-width: 991px) {
  .about__left-vector-1 {
    width: 13%;
    top: 4%;
    left: 13%;
  }
}

.about__left-vector-2 {
  position: absolute;
  left: 40%;
  top: -10%;
  animation: hero-circle-1 7s linear 0s infinite;
}

@media (max-width: 1599px) {
  .about__left-vector-2 {
    left: 43%;
    top: -21%;
  }
}

@media (max-width: 1199px) {
  .about__left-vector-2 {
    width: 15%;
  }
}

@media (max-width: 991px) {
  .about__left-vector-2 {
    width: 10%;
    left: 28%;
    top: 0%;
  }
}

.why-choose-area {
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .why-choose-area {
    padding-top: 40px !important;
  }
}

@media (max-width: 575px) {
  .why-choose-area {
    padding-top: 0px !important;
  }
}

.why-choose-area::before {
  position: absolute;
  content: "";
  background: var(--primary-bg);
  width: 1023px;
  height: 1023px;
  border-radius: 50%;
  left: 22%;
  top: 0px;
  z-index: -2;
  animation: pulse 2s infinite;
}

@media (max-width: 1700px) {
  .why-choose-area::before {
    left: 17%;
  }
}

@media (max-width: 1399px) {
  .why-choose-area::before {
    left: 7%;
  }
}

@media (max-width: 1199px) {
  .why-choose-area::before {
    display: none;
  }
}

.why-choose-area::after {
  position: absolute;
  content: "";
  background: var(--section-bg-one);
  width: 830px;
  height: 830px;
  border-radius: 50%;
  left: 27%;
  top: 9%;
  z-index: -1;
}

@media (max-width: 1700px) {
  .why-choose-area::after {
    left: 23%;
  }
}

@media (max-width: 1399px) {
  .why-choose-area::after {
    left: 15%;
  }
}

@media (max-width: 1199px) {
  .why-choose-area::after {
    display: none;
  }
}

.why-choose-item__wrapper {
  position: relative;
  z-index: 1;
}

.why-choose-item {
  background: var(--primary-bg);
  border-radius: 10px;
  margin-bottom: 65px;
}

@media (max-width: 575px) {
  .why-choose-item {
    margin-bottom: 30px;
  }
}

.why-choose-item::after {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  z-index: -1;
}

.why-choose-item h4 {
  margin-bottom: 10px;
}

.why-choose-item .choose-icon {
  position: absolute;
  top: 0px;
  right: -1px;
}

@media (max-width: 767px) {
  .why-choose-item .choose-icon {
    position: absolute;
    top: 0px;
    left: -1px;
  }

  .why-choose-item__style-one {
    padding: 20px 30px 30px 80px !important;
    text-align: left !important;
  }
}

.why-choose-item .choose-icon i {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 40px;
  color: var(--text-color);
}

.why-choose-item__style-one {
  padding: 30px 80px 45px 40px;
  text-align: right;
}

@media (max-width: 1199px) {
  .why-choose-item__style-one {
    padding: 20px 80px 30px 30px;
  }
}

@media (max-width: 425px) {
  .why-choose-item__style-one {
    padding: 20px 15px 30px 70px !important;
  }
}

.why-choose-item__style-two {
  padding: 30px 40px 45px 80px;
  text-align: left;
}

@media (max-width: 1199px) {
  .why-choose-item__style-two {
    padding: 20px 30px 30px 80px;
  }
}

@media (max-width: 425px) {
  .why-choose-item__style-two {
    padding: 20px 15px 30px 70px;
  }
}

.why-choose-item__style-two .choose-icon2 {
  top: 0px;
  left: -1px;
}

@media (max-width: 1599px) {
  .col-show-xl {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.blog-item__thumb {
  overflow: hidden;
  border-radius: 10px;
}

.blog-item__thumb a {
  display: block;
}

.blog-item__thumb img {
  border-radius: 10px;
  transform: scale(1);
  transition: 0.4s ease-in-out;
}

.blog-item__content {
  background: var(--primary-bg);
  padding: 40px 28px 15px 28px;
  border-radius: 10px;
  margin-left: 30px;
  margin: 0 auto;
  border: 1px solid var(--border-one);
  position: relative;
  width: 90%;
  margin-top: -80px;
}

@media (max-width: 1199px) {
  .blog-item__content {
    padding: 30px 20px 15px 20px;
  }
}

@media (max-width: 575px) {
  .blog-item__content {
    margin-top: -30px;
    padding: 30px 15px 15px 15px;
    width: 95%;
  }
}

.blog-item__content h4 {
  margin-bottom: 10px;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .blog-item__content h4 {
    font-size: 18px;
  }
}

.blog-item__content h4 a {
  font-family: var(--heading-font);
}

.blog-item__content p {
  margin-bottom: 38px;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .blog-item__content p {
    margin-bottom: 20px;
  }
}

.blog-item__content-meta {
  padding-top: 10px;
  border-top: 1px solid var(--border-one);
}

.blog-item__content-meta ul li i {
  margin-right: 7px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-item:hover .blog-item__thumb img {
  transform: scale(1.1);
}

.blog-details-post .blog-item__content h4 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .blog-details-post .blog-item__content h4 {
    font-size: 25px;
  }
}

@media (max-width: 425px) {
  .blog-details-post .blog-item__content h4 {
    font-size: 22px;
  }
}

.blog-details-post .blog-item__content p {
  margin-bottom: 22px;
  text-transform: capitalize;
}

.blog-details-post-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-bottom: 35px;
}

.blog-details-post-list li {
  width: calc((100% - 60px) / 2);
  padding-left: 32px;
  position: relative;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .blog-details-post-list li {
    width: 100%;
  }
}

.blog-details-post-list li::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  left: 0px;
  top: 4px;
  border-radius: 50%;
  border: 5px solid var(--section-common-bg);
}

.blog-details-post .vh-blockquote {
  padding: 20px 30px 30px 40px;
  position: relative;
  background-color: var(--section-common-bg);
  margin-bottom: 40px;
  border-radius: 10px;
}

@media (max-width: 1199px) {
  .blog-details-post .vh-blockquote {
    padding: 10px 20px 20px 30px;
  }
}

.blog-details-post .vh-blockquote__icon i {
  font-size: 70px;
  line-height: 1;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-details-post .vh-blockquote p {
  margin-bottom: 0px;
  font-size: 18px;
  font-style: italic;
}

@media (max-width: 575px) {
  .blog-details-post .vh-blockquote p {
    font-size: 14px;
  }
}

.blog-details-post .vh-blockquote::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 100%;
  background-image: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  left: 0px;
  top: 0px;
  border-radius: 10px 0px 0px 10px;
}

.blog-details-post .post-meta li {
  margin-right: 15px;
  font-size: 14px;
}

.blog-details-post .share-link li {
  display: inline-block;
  margin-right: 5px;
}

.blog-details-post .share-link li:last-child {
  margin-right: 0px;
}

.blog-details-post .share-link li strong {
  font-size: 16px;
  color: hsl(var(--white));
  font-weight: 500;
  margin-right: 5px;
}

.blog-details-post .share-link li a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--section-common-bg);
  transition: all ease 0.3s;
}

.blog-details-post .share-link li a span {
  color: hsl(var(--body));
  margin-right: 0px;
}

.blog-details-post .share-link li a:hover {
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
}

.blog-details-post .share-link li a:hover span {
  color: var(--text-color);
}

.blog-details-post .active {
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
}

.blog-details-post .active span {
  color: var(--text-color) !important;
}

.write__comment__area {
  width: 90%;
  margin: 0 auto;
  margin-top: 80px;
  padding: 40px 28px 50px 28px;
  background-color: var(--primary-bg);
  border-radius: 20px;
}

.write__comment__area-title {
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .write__comment__area {
    padding: 40px 20px 50px 20px;
  }
}

.widget-items {
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .widget-items {
    margin-top: 40px;
  }
}

.widget-items:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: hsl(var(--base));
  top: 7%;
}

.widget {
  padding: 10px 30px 40px 30px;
  background-color: var(--primary-bg);
  border-radius: 10px;
}

@media (max-width: 1399px) {
  .widget {
    padding: 10px 15px 30px 15px;
  }
}

.widget::after {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  z-index: -1;
}

.widget__title {
  padding: 0px 0px 30px 0px;
}

.widget__post {
  display: flex;
  flex-wrap: wrap;
  transition: all ease 0.3s;
}

.widget__post:hover .widget__post__title {
  color: hsl(var(--accent));
}

.widget__post:hover .widget__post__meta li {
  color: hsl(var(--body)) !important;
}

.widget__post__title {
  margin-bottom: 10px;
  transition: all ease 0.3s;
  font-size: 20px;
}

@media (max-width: 1199px) {
  .widget__post__title {
    font-size: 16px;
  }
}

.widget__post__thumb {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.widget__post__thumb img {
  width: 100%;
}

@media (max-width: 1199px) {
  .widget__post__thumb {
    width: 70px;
    height: 70px;
  }
}

.widget__post__content {
  width: calc(100% - 90px);
  padding-left: 15px;
}

@media (max-width: 1399px) {
  .widget__post__meta {
    margin-bottom: 5px;
  }
}

.widget__post__meta li {
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
}

@media (max-width: 1399px) {
  .widget__post__meta li {
    margin-right: 10px;
  }
}

.widget__post__meta li i {
  margin-right: 5px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.widget_single_post {
  padding: 10px 0px 20px 0px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-one);
}

.widget_single_post:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.testimonial-item.slick-slide {
  margin: 0px 15px;
}

.slider-margin {
  margin: 0px -15px;
}

@media (max-width: 767px) {
  .slider-margin {
    margin: 0px;
  }
}

.testimonial-slider-wrapper .slick-track {
  margin-bottom: 30px;
}

.testimonial-item {
  border-radius: 15px;
  position: relative;
  border: 1px solid var(--border-one);
  z-index: 1;
}

.testimonial-item::before {
  content: "";
  position: absolute;
  width: 50%;
  background-color: var(--primary-bg);
  height: 80px;
  bottom: -26px;
  left: 5px;
  transform: rotate(5deg) skewX(2.5deg);
  transform-origin: right top;
  z-index: -1;
  border-radius: 15px 0 0 8px;
  border-style: solid;
  border-color: #ddd0 #f000 var(--border-one) #00800000;
  border-width: 1px;
}

@media (max-width: 1399px) {
  .testimonial-item::before {
    bottom: -22px;
  }
}

@media (max-width: 1199px) {
  .testimonial-item::before {
    bottom: -18px;
  }
}

@media (max-width: 991px) {
  .testimonial-item::before {
    bottom: -13px;
  }
}

@media (max-width: 767px) {
  .testimonial-item::before {
    bottom: -20px;
  }
}

@media (max-width: 575px) {
  .testimonial-item::before {
    display: none;
  }
}

.testimonial-item::after {
  content: "";
  position: absolute;
  width: 50%;
  background-color: var(--primary-bg);
  height: 80px;
  bottom: 0px;
  right: 14px;
  transform: rotate(-5deg) skewX(2.5deg);
  transform-origin: right top;
  z-index: -1;
  border-radius: 0 15px 7px 0;
  border-style: solid;
  border-color: #ddd0 #f000 var(--border-one) #00800000;
  border-width: 1px;
}

@media (max-width: 575px) {
  .testimonial-item::after {
    display: none;
  }
}

.testimonial-item__icon i {
  font-size: 70px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.testimonial-item__subtitle p {
  font-size: 28px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .testimonial-item__subtitle p {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .testimonial-item__subtitle p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.testimonial-item__author {
  display: flex;
  align-items: center;
}

.testimonial-item__author-img {
  margin-right: 30px;
  width: 75px;
  height: 75px;
  border-radius: 50% 5px 50% 50%;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .testimonial-item__author-img {
    margin-right: 20px;
  }
}

.testimonial-item__author-img::after {
  content: "";
  position: absolute;
  left: -5px;
  top: -4px;
  width: calc(100% + 6px);
  height: calc(100% + 3px);
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  z-index: -1;
  border-radius: 50% 5px 50% 50%;
}

.testimonial-item__author-img img {
  border-radius: 50% 5px 50% 50%;
}

@media (max-width: 991px) {
  .testimonial-item__author-content h4 {
    font-size: 18px;
  }
}

.testimonial-item-inner {
  position: relative;
  background-color: var(--primary-bg);
  padding: 30px 45px 22px 38px;
  border-radius: 15px;
}

@media (max-width: 991px) {
  .testimonial-item-inner {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .testimonial-item-inner {
    padding: 15px;
  }
}

.testimonial-item-inner::before {
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  border-radius: 15px;
  transform: rotate(-7deg);
  bottom: -15px;
  z-index: -2;
  content: "";
  bottom: -14px;
  left: 15px;
}

.testimonial-item-inner::after {
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  border-radius: 15px;
  transform: rotate(6deg);
  bottom: -14px;
  z-index: -2;
  content: "";
  right: 15px;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-bg);
  z-index: 111;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  color: hsl(var(--body));
  font-size: 16px;
  text-align: center;
}

.slider-nav-btn i {
  font-size: 20px;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: var(--text-color);
  outline: none;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
}

.testimonial-slider-wrapper .slick-prev {
  left: auto;
  top: -116px;
  right: 70px;
}

@media (max-width: 991px) {
  .testimonial-slider-wrapper .slick-prev {
    top: -90px;
  }
}

@media (max-width: 575px) {
  .testimonial-slider-wrapper .slick-prev {
    display: none !important;
  }
}

.testimonial-slider-wrapper .slick-next {
  right: 0px;
  top: -116px;
}

@media (max-width: 991px) {
  .testimonial-slider-wrapper .slick-next {
    top: -90px;
  }
}

@media (max-width: 575px) {
  .testimonial-slider-wrapper .slick-next {
    display: none !important;
  }
}

.slick-prev::before,
.slick-next::before {
  display: none;
}

.profit-main {
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.profit-inner__itemtest-big {
  width: calc(25% - 15px);
  border-radius: 50%;
  aspect-ratio: 1;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.profit-inner__itemtest-big::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(
    359deg,
    var(--section-common-bg) 50%,
    transparent 50%
  );
  border-radius: 50%;
}

@media (max-width: 1199px) {
  .profit-inner__itemtest-big {
    width: calc(50% - 100px);
  }
}

@media (max-width: 991px) {
  .profit-inner__itemtest-big {
    width: calc(50% - 15px);
  }
}

@media (max-width: 575px) {
  .profit-inner__itemtest-big {
    width: calc(100% - 15px);
    background: none;
    aspect-ratio: 0;
  }
}

.profit-inner__itemtest {
  width: calc(100% - 30px);
  background-color: var(--primary-bg);
  padding-inline: 15px;
  text-align: center;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  border: 10px solid rgba(0, 0, 0, 0.36);
}

@media (max-width: 575px) {
  .profit-inner__itemtest {
    border: none;
    max-width: 70%;
    margin-bottom: 15px;
    border-radius: 10px;
  }
}

@media (max-width: 425px) {
  .profit-inner__itemtest {
    max-width: 100%;
    border-radius: 10px;
  }
}

.profit-inner__itemtest h4 {
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .profit-inner__itemtest h4 {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .profit-inner__itemtest h4 {
    font-size: 24px;
  }
}

.profit-inner__itemtest p {
  font-size: 18px;
}

@media (max-width: 767px) {
  .profit-inner__itemtest p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .profit-inner__itemtest p {
    font-size: 18px;
  }
}

.profit-inner__itemtest-big2 {
  transform: translateY(60px);
}

@media (max-width: 1199px) {
  .profit-inner__itemtest-big2 {
    transform: translateY(0px);
  }
}

@media (max-width: 991px) {
  .profit-inner__itemtest-big2 {
    transform: translateY(0px);
  }
}

.profit-inner__itemtest-big2::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(
    180deg,
    var(--section-common-bg) 50%,
    transparent 50%
  );
  border-radius: 50%;
}

.affilite-program__right-img {
  margin-left: 90px;
  margin-right: -210px;
  position: relative;
}

@media (max-width: 1700px) {
  .affilite-program__right-img {
    margin-right: 0px;
    margin-left: 50px;
  }
}

@media (max-width: 991px) {
  .affilite-program__right-img {
    margin-left: 0px;
  }
}

.affilite-program__right-img .affilite__coin-one {
  position: absolute;
  bottom: 75px;
  left: 56%;
  width: 21%;
  animation: move-tb 3s linear infinite;
}

.affilite-program__right-img .affilite__coin-two {
  bottom: 67px;
  left: 19%;
  width: 21%;
  animation: move-tb 4s linear infinite;
}

.skill-wrapper__item {
  border-radius: 16px;
  background: linear-gradient(
    to right,
    hsl(var(--base)) 70%,
    hsl(var(--accent)) 100%,
    hsl(var(--base)) 107.63%
  );
}

.skill-wrapper__item-left {
  width: 30%;
  padding: 18px 0px 18px 20px;
  border-radius: 16px 0px 0px 16px;
  background: linear-gradient(transparent, hsl(var(--accent)), transparent);
  clip-path: polygon(0 0, 72% 0, 100% 100%, 0 100%);
}

@media (max-width: 375px) {
  .skill-wrapper__item-left {
    padding: 10px 0px 10px 12px;
  }
}

.skill-wrapper__item-left span {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-color);
}

@media (max-width: 375px) {
  .skill-wrapper__item-left span {
    font-size: 24px;
  }
}

.skill-wrapper__item-right {
  width: 68.2%;
  background-color: var(--section-bg-two);
  padding: 30px;
  height: 100%;
  border-radius: 0px 16px 16px 0px;
  position: relative;
  isolation: isolate;
  margin-left: 8px;
}

@media (max-width: 1399px) {
  .skill-wrapper__item-right {
    margin-left: 7px;
  }
}

@media (max-width: 991px) {
  .skill-wrapper__item-right {
    margin-left: 11px;
  }
}

@media (max-width: 767px) {
  .skill-wrapper__item-right {
    margin-left: 7px;
  }
}

@media (max-width: 575px) {
  .skill-wrapper__item-right {
    margin-left: 5px;
  }
}

@media (max-width: 375px) {
  .skill-wrapper__item-right {
    padding: 13px;
    width: 68%;
  }
}

.skill-wrapper__item-right::before {
  content: "";
  position: absolute;
  background: var(--section-bg-two);
  width: 50px;
  height: 100%;
  top: 0;
  right: 100%;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 100% 100%);
}

@media (max-width: 1399px) {
  .skill-wrapper__item-right::before {
    width: 45px;
  }
}

@media (max-width: 991px) {
  .skill-wrapper__item-right::before {
    width: 68px;
  }
}

@media (max-width: 767px) {
  .skill-wrapper__item-right::before {
    width: 50px;
  }
}

@media (max-width: 575px) {
  .skill-wrapper__item-right::before {
    width: 40px;
  }
}

@media (max-width: 375px) {
  .skill-wrapper__item-right::before {
    width: 30px;
  }
}

.skill-wrapper__item-right h2 {
  font-size: 28px;
}

@media (max-width: 375px) {
  .skill-wrapper__item-right h2 {
    font-size: 24px;
  }
}

.affilite-program {
  position: relative;
  z-index: 99;
  overflow: hidden;
}

.affilite-program:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--primary-bg);
  z-index: -1;
}

@media (max-width: 1599px) {
  .affilite-shape {
    display: none;
  }
}

.investor-item {
  position: relative;
  z-index: 1;
  border-radius: 30px;
  padding: 25px 20px;
  text-align: center;
  margin: 0 auto;
  background-color: var(--primary-bg);
  margin-bottom: 100px;
}

.investor-item::after {
  border-radius: 30px;
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 50%;
  top: 50%;
  background-color: var(--primary-bg);
  z-index: -1;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  border-radius: inherit;
}

.investor-item::before {
  position: absolute;
  content: "";
  width: 50%;
  bottom: -16px;
  height: 90px;
  left: 11px;
  background-color: inherit;
  border-radius: 30px 30px 8px 30px;
  transform: rotate(14deg);
  z-index: -1;
}

.investor-item__author {
  width: 204px;
  height: 204px;
  border-radius: 50%;
  background-image: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.investor-item__author img {
  width: 100%;
  border-radius: 50%;
  width: 187px;
  aspect-ratio: 1;
}

.investor-item__content {
  position: relative;
  z-index: 1;
}

.investor-item__content-title span {
  display: block;
  font-size: 20px;
  font-weight: 400;
  color: hsl(var(--body));
}

.investor-item__content h5 {
  font-size: 24px;
  color: hsl(var(--white));
}

.investor-item__background {
  position: absolute;
  content: "";
  height: calc(100% + 30px);
  width: 100%;
  left: 50%;
  top: 50%;
  background-image: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  z-index: -2;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  border-radius: inherit;
}

@media (max-width: 767px) {
  .investor-btn {
    text-align: left !important;
  }
}

.investor-right-shape {
  position: absolute;
  content: "";
  width: 53%;
  bottom: -16px;
  height: 90px;
  right: 11px;
  background-color: inherit;
  border-radius: 30px 30px 30px 5px;
  transform: rotate(-13deg);
  z-index: -1;
}

.investor-top-left-shape {
  position: absolute;
  content: "";
  width: 50%;
  top: -17px;
  height: 90px;
  left: 24px;
  background-color: inherit;
  border-radius: 30px 30px 8px 7px;
  transform: rotate(167deg);
  z-index: -1;
}

@media (max-width: 575px) {
  .investor-top-left-shape {
    width: 51%;
  }
}

.investor-top-right-shape {
  position: absolute;
  content: "";
  width: 51%;
  top: -16px;
  height: 90px;
  right: 6px;
  background-color: inherit;
  border-radius: 8px 30px 30px 5px;
  transform: rotate(14deg);
  z-index: -1;
}

.price-table__item {
  position: relative;
  border-radius: 15px;
  z-index: 1;
  margin: 10px;
  margin-bottom: 30px;
}

@media (max-width: 425px) {
  .price-table__item {
    margin: 0px;
  }
}

.price-table__item:before {
  background-color: #313644;
  position: absolute;
  content: "";
  left: 0;
  top: 18%;
  width: 100%;
  height: 41%;
  border-radius: 15px;
  z-index: -1;
}

@media (max-width: 575px) {
  .price-table__item:before {
    top: 22%;
  }
}

.price-table__item-parsent {
  position: relative;
}

.price-table__item-parsent-title {
  position: absolute;
  font-size: 28px;
  font-weight: 600;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.price-table__item-parsent::before,
.price-table__item-parsent::after {
  position: absolute;
  content: "";
  width: 50%;
  top: 60px;
  height: 87px;
  right: 0;
  transform: skewY(24deg);
  z-index: -1;
  background-color: #313644;
  border-radius: 10px;
}

.price-table__item-parsent::after {
  transform: skewY(-24deg);
  left: 0;
  right: auto;
}

.price-table__item .price-plan {
  padding: 8px 30px;
  background-image: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  border-radius: 21px 30px 30px 0px;
  margin: 20px 20px 20px -17px;
  color: var(--text-color);
  position: relative;
}

@media (max-width: 767px) {
  .price-table__item .price-plan {
    font-size: 18px;
  }
}

@media (max-width: 425px) {
  .price-table__item .price-plan {
    border-radius: 30px;
    margin: 20px;
  }
}

.price-table__item .price-plan:before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
  background-color: hsl(var(--base));
  width: 18px;
  height: 17px;
}

@media (max-width: 425px) {
  .price-table__item .price-plan:before {
    display: none;
  }
}

.price-table__item .price-bg-before {
  position: absolute;
  content: "";
  width: 100%;
  height: 22%;
  background: #313644;
  border-radius: 15px 0px 15px 15px;
  z-index: -2;
  top: 48%;
  left: 0px;
  transform: skewY(18deg);
}

@media (max-width: 1399px) {
  .price-table__item .price-bg-before {
    height: 21%;
    transform: skewY(12deg);
  }
}

.price-table__item .hex {
  position: relative;
  margin: 20px auto;
  margin-bottom: 20px;
  width: 85px;
  height: 130px;
  border-radius: 15px;
  background: hsl(var(--base-200));
  transform: rotate(30deg);
  margin-bottom: 27px;
}

.price-table__item .hex:before,
.price-table__item .hex:after {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  content: "";
}

.price-table__item .hex:before {
  transform: rotate(-60deg);
}

.price-table__item .hex:after {
  transform: rotate(60deg);
}

.price-table__item .hex-icon {
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  color: hsl(var(--white));
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  text-align: center;
}

.price-table__item .inner-hex {
  position: absolute;
  width: 72px;
  height: 106px;
  background-color: var(--primary-bg);
  z-index: 9;
  border-radius: 15px;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.price-table__item .inner-hex:before,
.price-table__item .inner-hex:after {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  content: "";
}

.price-table__item .inner-hex:before {
  transform: rotate(-60deg);
}

.price-table__item .inner-hex:after {
  transform: rotate(60deg);
}

.price-table__item-content {
  padding: 30px 25px;
  position: relative;
  isolation: isolate;
  margin: 0 25px;
}

@media (max-width: 767px) {
  .price-table__item-content {
    padding: 30px 10px;
    margin: 0px 12px;
  }
}

.price-table__item-content:after {
  content: "";
  position: absolute;
  inset: 0 0 -20px 0;
  background: var(--primary-bg);
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 84%);
  border-radius: 15px;
}

.price-table__item-content-title {
  font-size: 18px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  border: 2px solid transparent;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .price-table__item-content-title {
    font-size: 16px;
  }
}

.price-table__item-content-price {
  margin: 15px 0px 10px 0px;
}

.price-table__item-content-price p {
  font-size: 16px;
  color: hsl(var(--white));
  font-weight: 700;
}

@media (max-width: 767px) {
  .price-table__item-content-price p {
    font-size: 14px;
  }
}

.price-table__item-content-featurs {
  margin-bottom: 10px;
  text-align: left;
}

@media (max-width: 575px) {
  .price-table__item-content-featurs {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.price-table__item-content-featurs li {
  padding: 10px 0px;
  border-bottom: 1px solid hsl(var(--border));
}

@media (max-width: 767px) {
  .price-table__item-content-featurs li {
    font-size: 14px;
  }
}

.price-table__item-content-featurs li:last-child {
  border-bottom: none;
}

.price-table__item-content-featurs li i {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  color: var(--text-color);
}

.price-btn .btn {
  color: var(--text-color);
  font-weight: 700;
  border-radius: 30px 16px 0px 30px;
  margin: 0px -123px 0px 0px;
  position: relative;
}

@media (max-width: 1399px) {
  .price-btn .btn {
    margin: 0px -178px 0px 0px;
  }
}

@media (max-width: 1199px) {
  .price-btn .btn {
    margin: 0px -133px 0px 0px;
  }
}

@media (max-width: 991px) {
  .price-btn .btn {
    margin: 0px -170px 0px 0px;
  }
}

@media (max-width: 767px) {
  .price-btn .btn {
    margin: 0px -109px 0px 0px;
  }
}

@media (max-width: 575px) {
  .price-btn .btn {
    margin: 0px auto;
    border-radius: 30px;
  }
}

.price-btn .btn::before {
  position: absolute;
  content: "";
  top: 100%;
  right: 0;
  clip-path: polygon(100% 0, 0 0, 6% 100%);
  background-color: hsl(var(--base));
  width: 18px;
  height: 17px;
}

@media (max-width: 575px) {
  .price-btn .btn::before {
    display: none;
  }
}

.price-btn .btn--base::after {
  background-color: transparent !important;
}

.price-btn .btn--base:hover:hover {
  color: var(--text-color) !important;
}

.transaction-area-wrapper {
  position: relative;
  background: var(--section-common-bg);
  overflow: hidden;
  z-index: 1;
}

.transaction-area-wrapper::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 200px;
  left: -48px;
  top: 33px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) -13.11%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 122%
  );
  z-index: -1;
  transform: rotate(5deg);
}

@media (max-width: 575px) {
  .transaction-area-wrapper::before {
    display: none;
  }
}

.transaction-area-wrapper::after {
  position: absolute;
  content: "";
  width: 300px;
  height: 200px;
  right: -34px;
  top: 25px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) -13.11%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 122%
  );
  z-index: -1;
  transform: rotate(174deg);
}

@media (max-width: 575px) {
  .transaction-area-wrapper::after {
    display: none;
  }
}

.transaction-area {
  clip-path: polygon(51% 0, 100% 6%, 100% 60%, 100% 93%, 50% 100%, 0 93%, 0 7%);
  position: relative;
}

@media (max-width: 1199px) {
  .transaction-area {
    clip-path: polygon(
      51% 0px,
      100% 4%,
      100% 60%,
      100% 96%,
      50% 100%,
      0 96%,
      0 4%
    );
  }
}

@media (max-width: 575px) {
  .transaction-area {
    clip-path: none;
  }
}

.transaction-area-inner {
  position: relative;
}

.transaction-area-inner::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 200px;
  left: -48px;
  bottom: 33px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) -13.11%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 122%
  );
  z-index: -1;
  transform: rotate(-6deg);
}

@media (max-width: 575px) {
  .transaction-area-inner::before {
    display: none;
  }
}

.transaction-area-inner::after {
  position: absolute;
  content: "";
  width: 300px;
  height: 200px;
  right: -22px;
  bottom: 33px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) -13.11%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 122%
  );
  z-index: -1;
  transform: rotate(185deg);
}

@media (max-width: 575px) {
  .transaction-area-inner::after {
    display: none;
  }
}

.transection__table {
  background-size: content;
  background-repeat: no-repeat;
  background-position: center center;
}

.breadcrumb-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.breadcrumb-area__shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

.breadcrumb-area__shape2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  right: 0;
}

.breadcrumb-area__shape2::before {
  position: absolute;
  content: "";
  bottom: 9px;
  right: -32px;
  width: 580px;
  height: 100%;
  display: inline-block;
  background: linear-gradient(
    350deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-mask: url(../images/breadcrumb/breadcrumb-right.png) no-repeat 50% 50%;
  mask: url(../images/breadcrumb/breadcrumb-right.png) no-repeat 50% 50%;
  mask-size: auto;
  mask-size: auto;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: rotate(-14deg);
}

@media (max-width: 1700px) {
  .breadcrumb-area__shape2::before {
    transform: rotate(-12deg);
    bottom: 0px;
  }
}

@media (max-width: 1599px) {
  .breadcrumb-area__shape2::before {
    transform: rotate(-7deg);
    bottom: 0px;
  }
}

@media (max-width: 1599px) {
  .breadcrumb-area__shape2::before {
    display: none;
  }
}

.breadcrumb-area__shape2::after {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 58px;
  width: 450px;
  height: 100%;
  display: inline-block;
  background: linear-gradient(
    270deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-mask: url(../images/breadcrumb/breadcrumb-left.png) no-repeat 50% 50%;
  mask: url(../images/breadcrumb/breadcrumb-left.png) no-repeat 50% 50%;
  mask-size: auto;
  mask-size: auto;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: rotate(6deg);
}

@media (max-width: 1700px) {
  .breadcrumb-area__shape2::after {
    transform: rotate(8deg);
    bottom: 50px;
  }
}

@media (max-width: 1599px) {
  .breadcrumb-area__shape2::after {
    display: none;
  }
}

.breadcrumb-area__inner {
  padding: 90px 0px 100px 0px;
}

@media (max-width: 767px) {
  .breadcrumb-area__inner {
    padding: 60px 0px 70px 0px;
  }
}

@media (max-width: 375px) {
  .breadcrumb-area__inner {
    padding: 50px 0px 30px 0px;
  }
}

.breadcrumb-area__inner-title {
  font-size: 50px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .breadcrumb-area__inner-title {
    font-size: 30px;
  }
}

.breadcrumb-area__inner__breadcrumb li {
  display: inline-block;
  margin-right: 20px;
  font-size: 16px;
  color: hsl(var(--white));
  font-weight: 600;
}

.breadcrumb-area__inner__breadcrumb li a {
  color: hsl(var(--white));
  font-weight: 600;
  position: relative;
}

.breadcrumb-area__inner__breadcrumb li a:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: hsl(var(--white));
  right: -15px;
  top: 10px;
}

.faq-item-innner {
  z-index: 1;
  position: relative;
}

.faq-item {
  padding: 35px 40px 30px 40px;
  border-radius: 10px;
  background-color: var(--section-common-bg);
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .faq-item {
    padding: 20px 15px;
  }
}

.faq-item-title {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .faq-item-title {
    font-size: 22px;
  }
}

.faq-item::after {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  z-index: -1;
}

.signup-form {
  padding: 40px;
  border-radius: 10px;
  border: 3px solid hsl(var(--border));
  margin-left: 40px;
}

.signup-form-title {
  font-size: 38px;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .signup-form-title {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .signup-form {
    padding: 30px 15px;
  }
}

@media (max-width: 991px) {
  .signup-form {
    margin-left: 0px;
  }
}

@media (max-width: 991px) {
  .sign-in-left {
    margin-bottom: 40px;
  }
}

.password-fild {
  position: relative;
}

.password-fild::before {
  position: absolute;
  content: "\f06e";
  color: hsl(var(--body));
  font-family: "Font Awesome 5 Free";
  right: 18px;
  top: 56%;
  opacity: 0.7;
}

.account-text {
  color: hsl(var(--white));
  font-size: 18px;
  font-weight: 400;
}

.account-text a {
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 5px;
}

.account-text a:hover {
  color: hsl(var(--accent));
}

@media (max-width: 1199px) {
  .account-create-form {
    margin-left: 0px !important;
  }
}

.contact-meta {
  position: relative;
  z-index: 1;
  margin: 10px 20px 70px;
}

@media (max-width: 1399px) {
  .contact-meta {
    margin: 10px 20px 45px;
  }
}

@media (max-width: 991px) {
  .contact-meta {
    margin: 10px 20px 52px;
  }
}

@media (max-width: 575px) {
  .contact-meta {
    margin: 10px 20px 45px;
  }
}

.contact-meta::before {
  background-color: var(--primary-bg);
  position: absolute;
  content: "";
  left: 0;
  top: 30%;
  width: 100%;
  height: 64%;
  border-radius: 15px 15px 0px 15px;
  z-index: -1;
  border: 1px solid var(--border-one);
  border-top: none;
  border-bottom: none;
}

.contact-meta::after {
  background-color: var(--primary-bg);
  position: absolute;
  content: "";
  width: 100%;
  height: 44%;
  bottom: -23px;
  border-radius: 15px 0px 15px 0px;
  transform: rotate(15deg) skewX(15deg);
  z-index: -2;
  right: -6px;
  border: 1px solid var(--border-one);
}

@media (max-width: 1399px) {
  .contact-meta::after {
    bottom: -17px;
    right: -5px;
  }
}

@media (max-width: 1199px) {
  .contact-meta::after {
    bottom: -9px;
    right: -4px;
  }
}

@media (max-width: 991px) {
  .contact-meta::after {
    bottom: -15px;
    right: -5px;
  }
}

@media (max-width: 767px) {
  .contact-meta::after {
    width: 101%;
    height: 44%;
    bottom: -46px;
    transform: rotate(15deg) skewX(15deg);
    z-index: -2;
    right: -9px;
  }
}

@media (max-width: 425px) {
  .contact-meta::after {
    width: 100%;
    height: 44%;
    bottom: -25px;
    transform: rotate(15deg) skewX(15deg);
    z-index: -2;
    right: -6px;
  }
}

@media (max-width: 375px) {
  .contact-meta::after {
    bottom: -10px;
    right: -4px;
  }
}

.contact-meta__title {
  padding: 13px 30px;
  background-image: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  border-radius: 21px 21px 0px 0px;
  margin: 0px -20px 0px -20px;
  color: var(--text-color);
  position: relative;
}

.contact-meta__title::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background-color: hsl(var(--base));
  width: 22px;
  height: 22px;
}

.contact-meta__title::after {
  position: absolute;
  content: "";
  top: 100%;
  right: 0;
  clip-path: polygon(100% 0, 0 0, 6% 100%);
  background-color: hsl(var(--base));
  width: 22px;
  height: 22px;
}

.contact-meta__address {
  padding: 30px;
}

.contact-meta__address p {
  font-size: 18px;
}

.contact-meta__address ul li a {
  font-size: 18px;
}

@media (max-width: 1199px) {
  .contact-meta__address ul li a {
    font-size: 16px;
  }
}

.contact-meta__item {
  position: relative;
}

.contact-meta__item::after {
  position: absolute;
  content: "";
  width: 50%;
  top: 21%;
  height: 30%;
  left: 3.5%;
  background-color: var(--primary-bg);
  transform: rotate(159deg);
  z-index: -2;
  border-radius: 15px;
  border: 1px solid var(--border-one);
}

@media (max-width: 1399px) {
  .contact-meta__item::after {
    top: 22%;
    height: 30%;
    left: 3.7%;
  }
}

@media (max-width: 1199px) {
  .contact-meta__item::after {
    top: 24%;
    height: 30%;
    left: 4%;
  }
}

@media (max-width: 991px) {
  .contact-meta__item::after {
    top: 22%;
  }
}

@media (max-width: 575px) {
  .contact-meta__item::after {
    top: 20%;
    left: 2%;
    transform: rotate(167deg);
  }
}

@media (max-width: 425px) {
  .contact-meta__item::after {
    top: 22%;
    left: 2%;
    transform: rotate(161deg);
  }
}

@media (max-width: 375px) {
  .contact-meta__item::after {
    top: 22%;
    left: 4%;
    transform: rotate(154deg);
  }
}

.contact-meta__item::before {
  position: absolute;
  content: "";
  width: 50%;
  top: 21%;
  height: 35%;
  right: 3.5%;
  transform: rotate(201deg);
  background-color: var(--primary-bg);
  border-radius: 15px;
  z-index: -2;
  border: 1px solid var(--border-one);
}

@media (max-width: 1399px) {
  .contact-meta__item::before {
    top: 22%;
    right: 3.7%;
  }
}

@media (max-width: 1199px) {
  .contact-meta__item::before {
    top: 23%;
    right: 5.7%;
  }
}

@media (max-width: 991px) {
  .contact-meta__item::before {
    top: 22%;
  }
}

@media (max-width: 575px) {
  .contact-meta__item::before {
    top: 21%;
    height: 35%;
    right: 1.5%;
    transform: rotate(192deg);
  }
}

@media (max-width: 425px) {
  .contact-meta__item::before {
    top: 22%;
    height: 36%;
    right: 3%;
    transform: rotate(199deg);
  }
}

@media (max-width: 375px) {
  .contact-meta__item::before {
    top: 22%;
    height: 36%;
    right: 7%;
    transform: rotate(204deg);
  }
}

.contact-meta .hex {
  position: relative;
  margin: 20px auto;
  width: 78px;
  height: 115px;
  border-radius: 15px;
  background: hsl(var(--base-200));
  transform: rotate(30deg);
  margin-bottom: 40px;
}

.contact-meta .hex:before,
.contact-meta .hex:after {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  content: "";
}

.contact-meta .hex:before {
  transform: rotate(-60deg);
}

.contact-meta .hex:after {
  transform: rotate(60deg);
}

.contact-meta .hex-icon {
  position: absolute;
  z-index: 99;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
}

.contact-meta .inner-hex {
  position: absolute;
  width: 64px;
  height: 94px;
  background-color: var(--primary-bg);
  z-index: 9;
  border-radius: 15px;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.contact-meta .inner-hex:before,
.contact-meta .inner-hex:after {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  content: "";
}

.contact-meta .inner-hex:before {
  transform: rotate(-60deg);
}

.contact-meta .inner-hex:after {
  transform: rotate(60deg);
}

.contact-map {
  margin-bottom: 15px;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

.contact-form {
  position: relative;
  z-index: 1;
  margin: 50px 0;
}

.contact-form::before,
.contact-form::after {
  position: absolute;
  content: "";
  width: calc(50% + 1px);
  height: 70px;
  bottom: -23px;
  background: var(--primary-bg);
  right: 0px;
  transform: skewY(-7deg);
  z-index: -1;
  border-radius: 0 0 30px 0px;
}

.contact-form::after {
  right: auto;
  left: 0px;
  transform: skewY(7deg);
  border-radius: 0px 0 0 30px;
}

.contact-form__bg {
  position: relative;
}

.contact-form__bg::after {
  position: absolute;
  content: "";
  background-image: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  width: 100%;
  height: 200px;
  top: -13px;
  z-index: -3;
  left: 0;
  border-radius: 30px;
}

@media (max-width: 575px) {
  .contact-form__bg::after {
    top: -22px;
  }
}

.contact-map-wrapper {
  position: relative;
  padding-bottom: 120px;
  background-color: var(--section-common-bg);
}

.contact-map {
  margin-bottom: 15px;
  position: absolute;
  top: 20%;
  height: calc(100% + 340px);
  width: 100%;
}

@media (max-width: 991px) {
  .contact-map {
    position: relative;
    top: 0;
    height: 400px;
    width: 100%;
    margin-bottom: 0;
    margin-top: 50px;
  }
}

.contact-form__title {
  font-size: 38px;
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .contact-form__title {
    font-size: 22px;
  }
}

.contact-form__item {
  position: relative;
}

.contact-form__inner {
  position: relative;
  padding: 20px 40px;
  background-color: var(--primary-bg);
  border-radius: 30px;
}

@media (max-width: 575px) {
  .contact-form__inner {
    padding: 20px;
  }
}

.contact-form__inner::before,
.contact-form__inner::after {
  position: absolute;
  content: "";
  width: calc(50% + 1px);
  height: 70px;
  top: -23px;
  background: var(--primary-bg);
  right: 0px;
  transform: skewY(7deg);
  z-index: -1;
  border-radius: 0 30px 0 0px;
}

.contact-form__inner::after {
  right: auto;
  left: 0px;
  transform: skewY(-7deg);
  border-radius: 30px 0 0 30px;
}

.dashboard-nav {
  margin-left: 290px;
  padding: 10px 30px;
  background-color: #22283a;
  border-top: none;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 22;
}

@media (max-width: 991px) {
  .dashboard-nav {
    margin-left: 0;
  }
}

.dashboard-nav .nav-left ul li {
  display: inline-block;
  margin-right: 20px;
}

.dashboard-nav .nav-left ul li a i {
  font-size: 18px;
  margin-right: 5px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 575px) {
  .dashboard-nav .nav-left {
    display: none;
  }
}

.dashboard-nav .nav-left .hambarger-btn i {
  color: hsl(var(--white));
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  transition: all ease 0.3s;
}

.dashboard-nav .nav-left .hambarger-btn i:hover {
  color: hsl(var(--base));
}

.dashboard-sidebar {
  width: 290px;
  background-color: var(--primary-bg);
  height: 100%;
  position: fixed;
  border-left: none;
  left: 0;
  top: 0;
  z-index: 3;
  transition: all ease 0.3s;
}

@media (max-width: 991px) {
  .dashboard-sidebar {
    transform: translateX(-100%);
  }
}

.dashboard-sidebar .cross-btn {
  position: absolute;
  top: 0;
  right: 0px;
  width: 35px;
  height: 35px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  color: var(--text-color);
  text-align: center;
  line-height: 35px;
  cursor: pointer;
}

.dashboard-sidebar.show {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  z-index: 33;
}

.dashboard-account {
  background-color: var(--section-common-bg);
  margin: 15px;
  padding: 20px 30px;
  border-radius: 7px;
  border: 1px solid var(--border-one);
}

.dashboard-account__icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  margin: 0 auto;
  margin-bottom: 10px;
  font-size: 20px;
  position: relative;
  margin-top: -45px;
}

.dashboard-account__title {
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.dashboard-account__wallet li {
  font-size: 14px;
}

.dashboard-account__wallet li span {
  font-size: 18px;
  color: hsl(var(--white));
  font-weight: 600;
}

.inner-sidebar .sidebar-logo {
  padding: 45px 30px;
  text-align: center;
  overflow: hidden;
}

.inner-sidebar .sidebar-logo img {
  max-width: 200px;
  max-height: 50px;
}

.dropdown-menu {
  font-size: 1rem;
  background-color: #22283a;
}

.dropdown-menu li {
  border: 1px solid rgba(138, 119, 119, 0.15);
}

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

.dropdown-menu li a {
  color: hsl(var(--white));
}

.user-profile-meta span {
  display: block;
  text-align: left;
  font-size: 14px;
}

.user-profile-meta .name {
  font-size: 16px;
  color: hsl(var(--white));
  font-family: var(--heading-font);
  font-weight: 600;
}

.user-profile-meta .meta-email {
  color: hsl(var(--body));
}

.user-profile-meta .meta-email:hover {
  color: hsl(var(--base));
}

.user-profile-img {
  margin-right: 10px;
}

.user-profile .dropdown-toggle::after {
  display: none;
}

.dashboard-sidebar-menu {
  height: 100vh;
  background-color: transparent;
  min-height: 100%;
}

.dashboard-dropdown-button {
  border: none;
}

.sidebar-menu {
  margin-top: 50px;
  height: calc(100vh - 395px);
  overflow-y: auto;
}

.sidebar-menu::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: hsl(var(--base));
}

.sidebar-menu-list__item:nth-child(2n) {
  background-color: #22283a;
}

.sidebar-menu-list__item.active > a {
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  color: var(--text-color);
}

.sidebar-menu-list__item.has-dropdown.active > a {
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  color: var(--text-color);
}

.sidebar-menu-list__item.has-dropdown.active > a:after {
  transform: rotate(90deg);
  right: 17px;
}

.sidebar-menu-list__item.active > a:after {
  transform: rotate(90deg);
  right: 17px;
}

.sidebar-menu-list__item.has-dropdown > a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  font-style: normal;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  text-align: center;
  background: 0 0;
  position: absolute;
  right: 15px;
  top: 12px;
  transition: 0.1s linear;
}

.sidebar-menu-list__link {
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding: 10px 20px 10px 20px;
  width: 100%;
}

.sidebar-menu-list__link .icon {
  margin-right: 5px;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
  animation: swing ease-in-out 0.5s 1 alternate;
}

.sidebar-submenu {
  display: none;
}

.sidebar-submenu.open-submenu {
  display: block;
}

.sidebar-submenu-list {
  padding: 5px 0;
}

.sidebar-submenu-list__item.active > a {
  background-color: hsl(var(--base) / 0.08);
  color: hsl(var(--base));
}

.sidebar-submenu-list__link {
  padding: 8px 20px 8px 50px;
  display: block;
  color: hsl(var(--black));
}

.sidebar-submenu-list__link:before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  margin-right: 10px;
  font-size: 8px;
}

.body-wrapper {
  margin-left: 290px;
  padding: 60px;
  background-color: var(--section-common-bg);
  min-height: 100vh;
}

@media (max-width: 991px) {
  .body-wrapper {
    margin-left: 0;
  }
}

@media (max-width: 1599px) {
  .body-wrapper {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .body-wrapper {
    padding: 30px 15px;
  }
}

.body-wrapper__inner-breadcrumb .page-title {
  font-size: 38px;
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .body-wrapper__inner-breadcrumb .page-title {
    font-size: 24px;
  }
}

.body-wrapper__inner-breadcrumb ul li {
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  margin-right: 5px;
  color: hsl(var(--white));
}

.body-wrapper__inner-breadcrumb ul li a {
  color: hsl(var(--white));
}

.card-item {
  position: relative;
  z-index: 1;
}

.card-item-body {
  padding: 30px 20px 20px 20px;
  background-color: var(--section-common-bg);
  border-radius: 10px;
}

@media (max-width: 1599px) {
  .card-item-body {
    padding: 30px 12px 20px 12px;
  }
}

.card-item-body::after {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  z-index: -1;
}

.card-item-body-left i {
  font-size: 35px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.card-item-body-left p {
  font-size: 20px;
}

@media (max-width: 1599px) {
  .card-item-body-left p {
    font-size: 16px;
  }
}

.card-item-body-left h4 {
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 1599px) {
  .card-item-body-left h4 {
    font-size: 20px;
  }
}

.card-item-body-right .btn-dashboard {
  border-radius: 30px;
  padding: 5px 18px;
  font-size: 12px;
}

.card-item-body-right .btn-dashboard::after {
  border-radius: 30px;
}

.dashboard-table-title {
  font-size: 28px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .dashboard-table-title {
    font-size: 22px;
  }
}

.select-paln-wrapper {
  position: relative;
  z-index: 1;
  margin: 0px 50px;
}

@media (max-width: 767px) {
  .select-paln-wrapper {
    margin: 0px;
  }
}

.select-paln-wrapper::after {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--accent)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  z-index: -1;
}

.plan-form {
  padding: 50px 40px;
  border-radius: 10px;
  background-color: var(--primary-bg);
}

@media (max-width: 575px) {
  .plan-form {
    padding: 40px 15px;
  }
}

.custom-header-top {
  background-color: hsl(var(--white));
  border-bottom: 1px solid hsl(var(--border));
}

.custom-header p {
  margin-bottom: 0px;
}

@media (max-width: 575px) {
  .custom-header__logo {
    text-align: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .custom-header__right {
    text-align: center !important;
  }
}

.form-separator {
  border-bottom: 1px solid #e4e5e7;
  height: 12px;
  margin: 5px 0 32px;
  text-align: center;
}

.form-separator span {
  background-color: #fff;
  color: #62646a;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  padding: 0 8px;
  text-transform: uppercase;
}

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

.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #ff7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1e2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all 0.5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}

@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: hsl(var(--base));
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: "";
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}

.show-filter {
  display: none;
}

@media (max-width: 767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #eef1f3;
  text-decoration: none;
  background-color: #1b2030;
  border: 1px solid rgba(206, 199, 199, 0.125);
}

.cookies-card {
  background-color: #1b2030 !important;
}

label.required:after {
  content: "*";
  color: #dc3545 !important;
  margin-left: 2px;
}

/* scrollbar with selection  */
::selection {
  color: hsl(var(--white));
  background: hsl(var(--base));
}

.card-item-body-left h4::selection {
  background: hsl(var(--base)) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: hsl(var(--white));
  background-clip: text;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background-color: hsl(var(--base));
  border: 0px solid transparent;
  border-radius: 2px;
}

/* top investor  */
.investor-card {
  background-color: #343a40;
  padding: 25px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

@media (max-width: 400px) {
  .investor-card {
    padding: 20px 15px;
  }
}

.investor-card::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  right: -15px;
  bottom: -24%;
  background-color: hsl(var(--base) / 0.2);
  border-radius: 46% 54% 55% 45% / 35% 38% 62% 65%;
  transform: rotate(-38deg);
}

.investor-card__name {
  margin-bottom: 10px;
}

.investor-card:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.investor-card .amount {
  color: hsl(var(--base));
  font-weight: 700;
}

.investor-card:hover .investor-card__number {
  color: hsl(var(--base));
  font-size: 30px;
}

.investor-card__number {
  position: absolute;
  right: 25px;
  font-size: 25px;
  color: #ffffff36;
  font-weight: 900;
  top: 15px;
  transition: 0.2s linear;
}

/* end top investor */

/* User Ranking */

@media (max-width: 768px) {
  .raking-invest {
    display: block !important;
    margin: 0 auto;
    text-align: center;
  }
}

.raking-invest span:first-child {
  margin-bottom: 5px;
}

.raking-invest h5 {
  margin-bottom: 5px;
  color: hsl(var(--base));
}

.raking-common span {
  margin-bottom: 10px;
}

.raking-common h5 {
  color: hsl(var(--base));
}

.invest-badge__list {
  position: absolute;
  width: 100%;
  min-width: 290px;
  right: 0;
  left: 77%;
  top: 0px;
  opacity: 0;
  background: #272d40;
  z-index: 1;
  visibility: hidden;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid hsl(var(--white) / 0.1);
}
@media (max-width: 1450px) and (min-width: 1300px) {
  .invest-badge__list {
    left: 85%;
  }
}

@media (max-width: 1450px) and (min-width: 1300px) {
  .invest-badge__details-3,
  .invest-badge__details-4 {
    right: 85%;
  }
}

.invest-badge:hover .invest-badge__list {
  opacity: 1;
  visibility: visible;
}

.invest-badge__list li span {
  width: 50%;
  font-size: 14px;
  color: hsl(var(--white) / 0.7);
}

@media (max-width: 767px) {
  .invest-badge__subtitle {
    font-size: 12px;
  }
}

.invest-badge__list li span:first-child {
  font-weight: 600;
  color: hsl(var(--white));
}

.invest-badge__list li {
  margin-bottom: 5px;
}

/* invest-badge start here */

.invest-badge {
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.invest-badge__thumb {
  margin-bottom: 10px;
}

.invest-badge__thumb__mask {
  content: "";
  width: 126px;
  height: 142px;
  display: inline-block;
  background: #747474;
  -webkit-mask: url("../images/shape.png") no-repeat 50% 50%;
  mask-image: url("../images/shape.png");
  mask-size: auto;
  -webkit-mask-size: cover;
  mask-size: contain;
  max-width: 100%;
  max-height: 100%;
  line-height: 9;
  position: relative;
  transition: 0.5s;
}

.invest-badge:hover .badge-lock {
  background-color: #cda131;
}

.invest-badge__thumb__mask::before {
  position: absolute;
  content: "";
  width: 100%;
  background: #cda131;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: 0.3s linear;
}

.invest-badge:hover .invest-badge__thumb__mask::before {
  height: 100%;
}

.badge-lock img {
  filter: grayscale(100%);
}

.badge-lock::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  opacity: 0.1;
  background-color: transparent;
}

.invest-badge:hover .badge-lock img {
  filter: grayscale(0);
  transition: 0.5s;
}

.badge-lock::after {
  position: absolute;
  content: "\f023";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 35px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: visible;
  transition: 0.5s;
  z-index: 99;
  color: hsl(var(--dark));
}

.invest-badge:hover .badge-lock::after {
  visibility: hidden;
  opacity: 0;
  top: 60%;
}

.invest-badge__thumb__mask img {
  margin: 0 auto;
  width: 100px;
  height: 100px;
}

.invest-badge__details-3,
.invest-badge__details-4 {
  left: unset !important;
  right: 76% !important;
}

@media (max-width: 1399px) {
  .invest-badge__details {
    right: 83% !important;
  }

  .invest-badge__detail_one {
    right: 83% !important;
  }
}

@media (min-width: 1200px) and (max-width: 1330px) {
  .invest-badge__details-3,
  .invest-badge__details-4 {
    left: unset !important;
    right: 87% !important;
  }

  .invest-badge__details-1,
  .invest-badge__details-2 {
    right: unset !important;
    left: 88% !important;
  }
}

@media (max-width: 991px) {
  .invest-badge__details-1,
  .invest-badge__details-3 {
    left: auto !important;
    right: -72% !important;
  }

  .invest-badge__details-2,
  .invest-badge__details-4 {
    right: auto !important;
    left: -73% !important;
  }
}

@media (max-width: 767px) {
  .invest-badge__list {
    left: -22px !important;
    right: auto !important;
    top: 100% !important;
    z-index: 99;
    width: 290px;
  }
}

@media (max-width: 600px) {
  .invest-badge__list {
    left: 50% !important;
    top: 140% !important;
    transform: translate(-50%, -50%);
    z-index: 99;
    width: 290px;
  }
}

.invest-badge__details::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 11px;
  background-color: #272d40;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 1200px) {
  .invest-badge__details-1::before,
  .invest-badge__details-2::before {
    left: -13px;
    transform: translateY(-50%) rotate(90deg);
  }

  .invest-badge__details-3::before,
  .invest-badge__details-4::before {
    right: -13px;
    transform: translateY(-50%) rotate(-90deg);
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .invest-badge__detail_one {
    left: auto;
    right: 85% !important;
  }
  .invest-badge__detail_one::before {
    right: -13px;
    top: 46%;
    transform: translateY(-50%) rotate(-90deg);
  }
  .invest-badge__detail_two {
    right: auto !important;
    left: 180px !important;
  }
  .invest-badge__detail_two::before {
    left: -13px;
    top: 46%;
    transform: translateY(-50%) rotate(90deg);
  }
  .invest-badge__list {
    min-width: 262px !important;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .invest-badge__details-1::before,
  .invest-badge__details-3::before {
    left: -13px;
    transform: rotate(90deg);
  }

  .invest-badge__details-2::before,
  .invest-badge__details-4::before {
    right: -13px;
    transform: rotate(-90deg);
  }
}

@media (max-width: 767px) {
  .invest-badge__details::before {
    transform: rotate(180deg);
    top: -11px;
    left: 48%;
  }
}

.invest-badge__thumb__mask::before {
  height: var(--before-height);
}

/* Ranking Section */
.table--responsive {
  max-width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.referral__level__item__inner {
  display: flex;
}

.referral__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 240px;
}

@media (max-width: 991px) {
  .referral__left {
    width: 180px;
  }
}

.referral__right {
  width: calc(100% - 240px);
  padding-left: 15px;
}

@media (max-width: 991px) {
  .referral__right {
    width: calc(100% - 180px);
  }
}

.referral__level__item__inner .referral__level__thumb {
  width: 40px;
  height: 40px;
  align-self: center;
}

.referral__level__item__inner .referral__level__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.referral__level__item__inner .referral__level__name,
.referral__level__item__inner .referral__level__profit,
.referral__level__item__inner .referral__level__content {
  padding: 10px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  height: 54px;
  line-height: 38px;
  position: relative;
  background-color: #454a5a80;
}

.referral__level__content {
  position: relative;
}

.referral__level__name::before,
.referral__level__content::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: transparent;
  box-shadow: -4px -4px 3px rgb(255 255 255 / 10%), 4px 4px 5px rgb(0 0 0 / 35%) !important;
  z-index: -1;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: -4px -4px 3px rgb(255 255 255 / 10%), 4px 4px 5px rgb(0 0 0 / 35%) !important;
}

@media (max-width: 991px) {
  .referral__level__item__inner .referral__level__name,
  .referral__level__item__inner .referral__level__profit,
  .referral__level__item__inner .referral__level__content {
    padding: 10px;
  }
}

.referral__level__item__inner .referral__level__name:not(:last-child),
.referral__level__item__inner .referral__level__profit:not(:last-child),
.referral__level__item__inner .referral__level__content:not(:last-child) {
  margin-right: 15px;
}

.referral__level__item__inner .referral__level__profit {
  width: 100px;
}

.referral__level__item__inner .referral__level__content.custom-width {
  transition: all ease 0.3s;
}

.referral__level__item__inner .referral__level__name {
  width: 190px;
  font-size: 20px;
  margin-left: 10px;
  background-color: #454a5a80;
}

@media (max-width: 991px) {
  .referral__level__item__inner .referral__level__name {
    width: 130px;
    font-size: 16px;
  }
}

.referral__level__item:hover
  .referral__level__item__inner
  .referral__level__content.custom-width {
  max-width: 1000% !important;
  transition: all ease 0.3s;
}

.referral__level__item__inner .referral__level__content__content {
  display: none;
}

.referral__level__item__inner .hover__none {
  display: flex;
}

.referral__level__item {
  position: relative;
}

.referral__level__item:not(:last-child) {
  margin-bottom: 15px;
}

.referral__level__item:hover .referral__level__name,
.referral__level__item:hover .referral__level__profit,
.referral__level__item:hover .referral__level__content {
  background: hsl(var(--base));
  color: #fff;
}

.referral__level__item:hover .referral__level__content {
  flex-grow: 1;
}

.referral__level__item:hover .hover__none {
  display: none;
}

.referral__level__item:hover .referral__level__content__content {
  display: flex;
}

.referral__level__item:hover .referral__tooltip {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.referral__level__item:nth-last-of-type(3) .referral__tooltip,
.referral__level__item:nth-last-of-type(2) .referral__tooltip,
.referral__level__item:nth-last-of-type(1) .referral__tooltip {
  bottom: 100%;
  top: unset;
  margin-bottom: 5px;
  box-shadow: 0px -1px 2px 2px #dddddd40;
}

.referral__level__item:nth-last-of-type(3) .referral__tooltip::before,
.referral__level__item:nth-last-of-type(2) .referral__tooltip::before,
.referral__level__item:nth-last-of-type(1) .referral__tooltip::before {
  top: 100%;
  bottom: unset;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.referral__tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(15px);
  -ms-transform: translateX(-50%) translateY(15px);
  transform: translateX(-50%) translateY(15px);
  width: 100%;
  max-width: 350px;
  background: #fff;
  padding: 30px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  box-shadow: 0 0 5px rgba(4, 38, 86, 0.2);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  z-index: 9;
  border-radius: 3px;
  margin-top: 5px;
  background-color: #272d40;
  border: 1px solid hsl(var(--white) / 0.1);
}

.referral__tooltip::before {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: inherit;
  width: 20px;
  height: 15px;
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -10px;
  background-color: #272d40;
}

@media screen and (max-width: 424px) {
  .referral__tooltip {
    max-width: 280px;
    padding: 30px 15px;
  }
}

@media (max-width: 424px) {
  .referral__level__name {
    position: absolute !important;
    top: -20px;
    background-color: transparent !important;
    padding: 0 !important;
    line-height: 1 !important;
    font-size: 15px !important;
  }
  .referral__left {
    width: auto;
  }
  .referral__level__item {
    margin-top: 40px;
  }
  .referral__right {
    width: 100%;
  }
}

.user-profile .ranking-user {
  width: 50px;
}
.user-profile .btn {
  padding: 10px;
}

.countdown-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.countdown-wrapper span {
  background-color: #ffffff1a;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  color: hsl(var(--base));
  font-size: 20px;
  border-radius: 5px;
}
@media (max-width: 575px) {
  .countdown-wrapper span {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}
