/* @import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Inter:wght@100..900&display=swap'); */

@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");

:root {
  --heading-font: "Lexend", sans-serif;
  --body-font: "Lexend", sans-serif;
  --heading: 263 21% 12%;
  --body: 0 0% 33%;
  --border: 0 0% 88%;

  --base-h: 235;
  --base-s: 70%;
  --base-l: 60%;
  --base: var(--base-h) var(--base-s) var(--base-l);

  --accent-h: 205;
  --accent-s: 100%;
  --accent-l: 14%;
  --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: var(--accent-h) var(--accent-s) var(--accent-l);
  --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%);
  --primary: 245 82% 67%;
  --secondary: 210 7% 56%;
  --section-bg: 249 100% 99%;
  --success: 147 67% 47%;
  --danger: 360 78% 62%;
  --warning: 29 100% 63%;
  --info: 203 89% 53%;
  --dark: 206 70% 11%;
  --muted: 208 7% 47%;
  --white: 0 0% 100%;
  --light-h: 140;
  --light-s: 27%;
  --light-l: 98%;
  --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) + 5%);
  --light: var(--light-h) var(--light-s) var(--light-l);
  --light-600: var(--light-h) var(--light-s) calc(var(--light-l) - 5%);
  --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%);
  --dark-h: 0;
  --dark-s: 0%;
  --dark-l: 0%;
  --dark-50: var(--dark-h) var(--dark-s) calc(var(--dark-l) + 50%);
  --dark-100: var(--dark-h) var(--dark-s) calc(var(--dark-l) + 20%);
  --dark-200: var(--dark-h) var(--dark-s) calc(var(--dark-l) + 15%);
  --dark-300: var(--dark-h) var(--dark-s) calc(var(--dark-l) + 10%);
  --dark-400: var(--dark-h) var(--dark-s) calc(var(--dark-l) + 5%);
  --dark: var(--dark-h) var(--dark-s) var(--dark-l);
  --dark-600: var(--dark-h) var(--dark-s) calc(var(--dark-l) - 5%);
  --dark-700: var(--dark-h) var(--dark-s) calc(var(--dark-l) - 10%);
  --dark-800: var(--dark-h) var(--dark-s) calc(var(--dark-l) - 15%);
  --dark-900: var(--dark-h) var(--dark-s) calc(var(--dark-l) - 20%);
  --box-shadow: 0px 2px 15px hsl(var(--dark) / 0.05);
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: hsl(var(--body));
  line-height: 1.6;
  font-family: var(--body-font);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

p {
  margin: 0;
  padding: 0;
}

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

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

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

/* global css strat */
.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 {
  color: hsl(var(--base)) !important;
  font-weight: 500;
}

/* 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-color: hsl(var(--base)) !important;
}

/* background color css end */
.bg_img {
  background-position: center;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

img {
  max-width: 100%;
  height: auto;
}

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

a.text-white:hover {
  color: hsl(var(--base));
}

.rtl {
  direction: rtl !important;
}

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

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.overlay.active {
  z-index: 111;
  display: block;
}

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

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

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

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

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

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

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

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

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

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

.deposit-preview .deposit-content ul li,
.deposit-preview .deposit-content,
.dashboard-widget,
.experties-meta,
.profile,
.story-item.recent-story,
.rating,
.choose-item,
.menu,
.header-bottom-area,
.pagination,
.list.list-column {
  display: flex;
  flex-wrap: wrap;
}

.deposit-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.video-thumb::before,
.story-meta .read-time::before,
.inner-banner::before,
.video-button::before,
.video-button::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.or::before,
.or::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
}

.deposit-card,
.story-item.recent-story,
.header-trigger span::after,
.header-trigger span::before,
.header,
.custom--checkbox label::before,
.btn,
.cmn--btn,
a,
img,
.title,
.name {
  transition: all 0.3s;
}

.story-item__content p,
.story-item__content .title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.influencer-item__content .name::before,
.breadcrumb li:nth-child(2)::before,
.menu li.has-sub-menu > a::after {
  position: absolute;
  font-weight: 900;
  font-size: 16px;
  font-family: "Line Awesome Free";
}

.list.list-style-one li::before {
  position: absolute;
  font-weight: 900;
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
}

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

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

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

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

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

h1 {
  font-size: clamp(36px, 5vw + 5px, 50px);
}

h2 {
  font-size: clamp(30px, 6vw, 42px);
}

h3 {
  font-size: clamp(22px, 5vw, 30px);
}

h4 {
  font-size: clamp(20px, 6vw, 22px);
}

h5 {
  font-size: clamp(18px, 7vw, 20px);
}

h6 {
  font-size: rem(18px);
}

.fw-medium {
  font-weight: 500 !important;
}

.btn,
.cmn--btn {
  color: hsl(var(--white));
  padding: 8px 35px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  border-radius: 10px;
  z-index: 1;
  border: 2px solid transparent;
  border-radius: 30px;
}

@media (max-width: 1199px) {
  .btn,
  .cmn--btn {
    font-size: 18px;
  }
}

.btn:focus,
.cmn--btn:focus {
  box-shadow: none !important;
}

.btn.btn--lg,
.cmn--btn.btn--lg {
  padding: 13px 35px !important;
  font-size: 24px;
}

@media (max-width: 991px) {
  .btn.btn--lg,
  .cmn--btn.btn--lg {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .btn.btn--lg,
  .cmn--btn.btn--lg {
    font-size: 20px;
  }
}

.btn.btn--md,
.cmn--btn.btn--md {
  padding: 9px 25px !important;
  font-size: 15px;
}

@media (max-width: 575px) {
  .btn.btn--md,
  .cmn--btn.btn--md {
    padding: 7px 20px !important;
    font-size: 15px;
  }
}

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

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

.cmn--btn {
  background: hsl(var(--base));
}

.cmn--btn:hover {
  border-color: hsl(var(--base));
  background: transparent;
  color: hsl(var(--base));
}

.radius-0 {
  border-radius: 0 !important;
}

.radius-5 {
  border-radius: 5px !important;
}

.login-button {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  line-height: 1;
  background: hsl(var(--base));
  color: hsl(var(--white));
  font-size: 18px;
}

.login-button:hover {
  color: hsl(var(--white));
  background: hsl(var(--base) / 90%);
}

@media (max-width: 450px) {
  .login-button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.video-button {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: hsl(var(--white));
  color: hsl(var(--base));
  font-size: 26px;
  position: relative;
}

.video-button::before,
.video-button::after {
  border: 15px solid hsl(var(--white));
  animation: play-button 3s linear infinite;
}

.video-button::before {
  animation-delay: 0.7s;
}

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

.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active {
  background-color: hsl(var(--primary)) !important;
  border: 1px solid hsl(var(--primary)) !important;
  color: hsl(var(--white)) !important;
}

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

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

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

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

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

.btn--danger:hover,
.btn--danger:focus,
.btn--danger:active {
  background-color: hsl(var(--danger)) !important;
  border: 1px solid hsl(var(--danger)) !important;
  color: hsl(var(--white));
}

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

.btn--warning:hover,
.btn--warning:focus,
.btn--warning:active {
  background-color: hsl(var(--warning)) !important;
  border: 1px solid hsl(var(--warning)) !important;
  color: hsl(var(--white)) !important;
}

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

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

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

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

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

.btn--dark:hover,
.btn--dark:focus,
.btn--dark:active {
  background-color: hsl(var(--dark)) !important;
  border: 1px solid hsl(var(--dark)) !important;
  color: hsl(var(--white)) !important;
}

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

.btn--white:hover,
.btn--white:focus,
.btn--white:active {
  background-color: hsl(var(--white)) !important;
  color: hsl(var(--black));
}

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

.btn--base:hover,
.btn--base:focus,
.btn--base:active {
  background-color: hsl(var(--base)) !important;
  color: hsl(var(--white)) !important;
  border: 1px solid hsl(var(--base));
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge--dark-outline {
  background-color: transparent;
  border: 1px solid #ddd;
  color: hsl(var(--heading));
}

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

.badge.badge--icon {
  padding: 5px;
  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-light {
  background-color: hsl(var(--light));
  border: 1px solid hsl(var(--light));
  color: hsl(var(--white));
}

.badge--fill-light: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));
}

/* ------------------------------------
     tab css
---------------------------------------*/
.nav-tabs {
  justify-content: left;
  margin-bottom: 40px;
}

@media screen and (max-width: 575px) {
  .nav-tabs {
    margin-bottom: 20px;
  }
}

.nav-tabs .nav-link {
  color: hsl(var(--body)) !important;
  padding: 8px 25px;
  background-color: transparent !important;
  transition: 0.4s;
  font-size: 1rem;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 400;
}

@media screen and (max-width: 1199px) {
  .nav-tabs .nav-link {
    padding: 12px 15px !important;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .nav-tabs .nav-link {
    padding: 8px 10px !important;
    font-size: 15px;
  }
}

@media screen and (max-width: 374px) {
  .nav-tabs .nav-link {
    font-size: 13px;
    padding: 8px 10px !important;
  }
}

.nav-tabs .nav-link {
  border: 0;
}

.nav-tabs .nav-link.active {
  color: hsl(var(--white)) !important;
  background-color: hsl(var(--base)) !important;
}

.nav-tabs .nav-link:hover {
  border-color: transparent;
  color: hsl(var(--base)) !important;
}

.nav-tabs .nav-link.active:hover {
  color: hsl(var(--white)) !important;
  border-color: transparent;
}

.nav-tabs .nav-link:hover {
  color: hsl(var(--base));
}

.tab-desc {
  font-size: 16px;
  color: hsl(var(--body-color));
  font-weight: 300 !important;
}

@media screen and (max-width: 424px) {
  .tab-desc {
    font-size: 14px;
    font-weight: 400 !important;
  }
}

/* ------------------------------------
     table css
---------------------------------------*/

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

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

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

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

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

@media (max-width: 767px) {
  .table--responsive--md tbody tr td::before {
    content: attr(data-label);
    font-family: hsl(var(--heading));
    font-size: 16px;
    color: hsl(var(--heading));
    font-weight: 500;
  }
}

@media (max-width: 767px) and (max-width: 575px) {
  .table--responsive--md tbody tr td::before {
    font-size: 15px;
  }
}

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

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

  .table--responsive--lg tbody tr:nth-child(odd) {
    background-color: hsl(var(--base) / 0.05);
  }

  .table--responsive--lg tbody tr:nth-child(even) {
    background-color: rgb(0 0 0 / 1%);
  }

  .table--responsive--lg tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px !important;
    border: none;
    border-bottom: 1px solid var(--border);
    background-color: transparent !important;
    text-align: right !important;
  }
}

@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 {
    content: attr(data-label);
    font-family: hsl(var(--heading));
    font-size: 14px;
    color: hsl(var(--heading));
    font-weight: 500;
  }
}

@media (max-width: 991px) and (max-width: 575px) {
  .table--responsive--lg tbody tr td::before {
    font-size: 15px;
  }
}

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

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

  .table--responsive--xl tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid 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:last-child {
    border: none;
  }
}

@media (max-width: 1199px) {
  .table--responsive--xl tbody tr td::before {
    content: attr(data-label);
    font-family: hsl(var(--heading));
    font-size: 16px;
    color: hsl(var(--heading));
    font-weight: 500;
  }
}

@media (max-width: 1199px) and (max-width: 575px) {
  .table--responsive--xl tbody tr td::before {
    font-size: 15px;
  }
}

.table {
  margin: 0;
}

.table > :not(:first-child) {
  border: 0;
}

.table thead tr th {
  background: hsl(var(--base));
  padding: 15px;
  font-family: hsl(var(--heading));
  color: hsl(var(--white));
  border: none;
  font-size: 15px;
  font-weight: 500;
}

.table thead tr th:first-child {
  border-radius: 8px 0 0 0;
  text-align: left;
}

.table thead tr th:last-child {
  border-radius: 0 8px 0 0;
  text-align: right;
}

.table tbody {
  font-size: 14px;
}

.table tbody tr td {
  background: #fafafa;
  padding: 14px;
  border-width: 0;
  vertical-align: middle;
}

.table tbody tr td:first-child {
  text-align: left;
}

.table tbody tr td:last-child {
  text-align: right;
}

@media (min-width: 992px) {
  .table tbody tr td {
    border-color: transparent;
  }
}

.form-label {
  font-size: 15px;
}

.form--check label {
  padding-top: 0px;
  cursor: pointer;
}

.form--control,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-search--dropdown .select2-search__field {
  height: 45px;
  border-radius: 5px;
  border: 1px solid hsl(var(--border));
  outline: 0;
  box-shadow: none;
}

.form--control:focus,
.select2-container--default .select2-selection--single:focus,
.select2-container--default
  .select2-search--dropdown
  .select2-search__field:focus {
  color: var(--white);
  border: 1px solid hsl(var(--base));
  outline: 0;
  box-shadow: none;
}

.form--control.style-two {
  border: 0;
  background: hsl(var(--base) / 0.1);
}

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

.input-group-text {
  background: hsl(var(--base) / 0.1);
  border-color: transparent;
}

.form--control[type="file"] {
  line-height: 19px;
  padding: 12px 25px;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  background: white;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  background: white;
}

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

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: #212529;
  transition: background-color 5000s ease-in-out 0s;
}

.input-group > select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

/* input[readonly] {
  background-color: #f6f6f6;
} */

.input-group select {
  background-color: transparent;
  border: none;
}

.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: 2px;
  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: rem(14px);
  font-weight: 400;
}

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

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

.custom--checkbox {
  padding-left: rem(25px);
}

.custom--checkbox input {
  display: none;
}

.custom--checkbox input:checked ~ label::before {
  content: "\f14a";
  color: hsl(var(--base));
}

.custom--checkbox label {
  position: relative;
  font-size: rem(15px);
  font-weight: 400;
  cursor: pointer;
  margin-bottom: 0;
}

.custom--checkbox label::before {
  position: absolute;
  content: "\f04d";
  font-family: "Line Awesome Free";
  font-weight: 900;
  top: 3px;
  left: rem(-25px);
  font-size: rem(20px);
  line-height: 1;
}

/* form css end*/
.select2-container:has(.select2-selection--single) {
  width: 100% !important;
}

.select2-container > span {
  width: 100%;
  z-index: 1111;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  height: 45px;
}

.select2-container--default .select2-selection--single {
  height: 45px;
  display: flex;
  align-items: center;
  font-size: 16px;
  padding-left: 15px;
}

.select2-container--default .select2-selection--single span {
  padding: 0 !important;
  color: hsl(var(--dark) / 0.7) !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 5px;
  right: 3px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  top: 72%;
}

.dropdown-wrapper {
  display: none;
}

.select2-dropdown {
  border-color: rgba(0, 0, 0, 0.1);
}

.custom--card {
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: 0 0px 4px 0 #0000001a, 0 0px 0px 0px #0000001a !important;
}

.custom--card .card-header,
.custom--card .card-footer {
  background-color: hsl(var(--white));
  color: hsl(var(--dark)) !important;
  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) / 0.6) !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;
}

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

@media (max-width: 450px) {
  .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: 450px) {
  .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: 450px) {
  .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;
}

.card-title {
  margin-bottom: 0;
}

.custom--modal .modal--footer,
.custom--modal .modal--body,
.custom--modal .modal--header {
  border-color: var(--border) !important;
}

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

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

.pagination {
  margin: 0;
  justify-content: center;
}

.pagination .page-item {
  text-align: center;
  padding: 3px;
}

.pagination .page-item a,
.pagination .page-item span {
  font-weight: 600;
  width: 45px;
  height: 45px;
  color: hsl(var(--base));
  line-height: 45px;
  padding: 0;
  border-radius: 50% !important;
  border-color: hsl(var(--base));
  box-shadow: none;
  outline: 0;
}

.pagination .page-item span {
  border: none;
}

.pagination .page-item.active span,
.pagination .page-item.active a,
.pagination .page-item:hover span,
.pagination .page-item:hover a {
  background: hsl(var(--base));
  color: hsl(var(--white));
  border-color: hsl(var(--base));
}

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

.pagination .page-item.disabled span,
.pagination .page-item.disabled a {
  background: hsl(var(--dark) / 0.06);
  border: none;
}

.pagination .page-item.disabled:hover {
  color: #ddd !important;
}

@keyframes move1 {
  0% {
    transform: translate(0);
  }

  25% {
    transform: translateX(25px);
  }

  75% {
    transform: translateX(-25px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes move2 {
  0% {
    transform: translate(0);
  }

  25% {
    transform: translateY(25px);
  }

  75% {
    transform: translateY(-25px);
  }

  100% {
    transform: translate(0px);
  }
}

.section-header {
  margin-top: -12px;
  margin-bottom: 40px;
}

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

.section-header .subtitle {
  font-size: 18px;
  color: hsl(var(--success));
  margin-bottom: 3px;
}

.section-header__title {
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1rem;
  color: hsl(var(--dark) / 0.8);
}

.section-header .cmn--btn {
  margin-top: 30px;
}

@media (min-width: 576px) {
  .section-header .cmn--btn {
    margin-top: 45px;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 111;
}

.header.sticky {
  box-shadow: 0 3px 25px 3px hsl(var(--base) / 0.15);
}

.header-bottom {
  background: hsl(var(--white));
  width: 100%;
  padding: 20px 0;
  padding: 15px 0;
}

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

.header-bottom-area {
  justify-content: space-between;
}

.logo img {
  max-width: 190px;
  max-height: 60px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 375px) {
  .logo img {
    max-width: 140px;
    max-height: 50px;
  }
}
/* @media (max-width: 1199px) {
  .logo img {
    max-width: 180px;
  }
}

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

.menu {
  align-items: center;
  margin: 0;
  position: relative;
}

.menu > .has-sub-menu {
  margin-right: 20px;
}

@media (max-width: 1199px) {
  .menu > .has-sub-menu {
    margin-right: 18px;
  }
}

@media (min-width: 992px) {
  .menu > .has-sub-menu.open .sub-menu {
    display: block !important;
  }
}

.menu .sub-menu li {
  width: 100%;
}

@media (min-width: 992px) {
  .menu .sub-menu {
    display: block !important;
  }
}

.menu li {
  position: relative;
}

.menu li a.active {
  color: hsl(var(--base));
}

.menu li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.menu li.has-sub-menu > a {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.menu li.has-sub-menu > a::after {
  content: "\f107";
  right: 0;
  top: 50%;
  transform: translate(8px, -50%);
  font-size: 14px;
}

.menu li a {
  display: block;
  padding: 4px 15px;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

@media (min-width: 1400px) {
  .menu li a {
    font-size: 17px;
  }
}

.menu .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
}

@media (min-width: 992px) {
  .sub-menu {
    position: absolute;
    top: 100%;
    left: 0px;
    opacity: 0;
    visibility: hidden;
    min-width: 230px;
    transition: all ease 0.3s;
    transform: translateY(15px);
    box-shadow: 0 3px 12px 3px hsl(var(--base) / 0.15);
    overflow: hidden;
    z-index: 11;
    background: hsl(var(--white));
  }

  .sub-menu li {
    padding: 0;
  }

  .sub-menu li:last-child {
    border: none;
  }

  .sub-menu li a {
    font-size: 14px;
    padding: 7px 15px;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
  }

  .sub-menu li a:hover {
    padding-left: 20px;
    background: hsl(var(--base));
    color: hsl(var(--white)) !important;
  }

  .sub-menu:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .sub-menu .sub-menu {
    visibility: hidden;
    opacity: 0;
    top: 5px;
    left: -100%;
    transform: translateY(-20px);
  }

  .sub-menu.has-sub-menu > a::after {
    transform: translateY(0px);
  }
}

@media (max-width: 991px) {
  .menu > li:nth-last-child(1) {
    border-bottom: none;
  }

  .menu {
    position: absolute;
    top: 84px;
    left: 0;
    padding-block: 12px;
    padding-inline: 12px;
    max-height: calc(100vh - 50px);
    min-width: 200px;
    width: 100%;
    visibility: hidden;
    transform-origin: top;
    transform: translateY(-30px) scaleY(0.6);
    opacity: 0;
    overflow-y: auto;
    transition: all ease 0.3s;
    background: hsl(var(--white));
  }

  .menu.active {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    visibility: visible;
    z-index: 111;
  }

  @media (max-width: 575px) {
    .menu {
      top: 84px;
    }
  }
  @media (max-width: 375px) {
    .menu {
      top: 68px;
    }
  }

  .menu .has-sub-menu {
    margin-right: 0;
  }

  .menu .has-sub-menu > a::after {
    transform: translate(-20px, -50%) !important;
  }

  .menu li {
    max-width: 700px;
    width: 100%;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    margin: 0 auto !important;
    padding-block: 5px;
  }

  .menu li:nth-last-child(1) {
    border-bottom: none;
  }

  .menu li a {
    padding-left: 0;
  }

  .menu li.has-sub-menu a::after {
    transform: translate(-20px, -50%) !important;
  }

  .sub-menu {
    display: none;
    padding-left: 25px;
  }
}

.header-trigger-wrapper {
  gap: 10px 25px;
}

@media (max-width: 1199px) {
  .header-trigger-wrapper {
    gap: 10px 15px;
  }
}
@media screen and (max-width: 575px) {
  .header-trigger-wrapper {
    column-gap: 15px;
  }

  .login-button {
    --size: 40px;
    width: var(--size);
    height: var(--size);
  }

  .header-bottom-area {
    row-gap: 15px;
  }

  .header-trigger-wrapper {
    justify-content: flex-end;
    flex-grow: 1;
  }
}

@media screen and (max-width: 375px) {
}

.header-trigger {
  cursor: pointer;
  margin-top: -10px;
}

.header-trigger.active span {
  background: none !important;
}

.header-trigger.active span::before {
  transform: rotate(-45deg) translate(-11px, 0px);
  background: hsl(var(--base));
}

.header-trigger.active span::after {
  transform: rotate(45deg) translate(-11px, 0px);
  background: hsl(var(--base));
}

.header-trigger span {
  width: 25px;
  height: 2px;
  background: hsl(var(--base));
  position: relative;
  transition: all ease 0.3s;
}

.header-trigger span::after,
.header-trigger span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  background: hsl(var(--base));
}

.header-trigger span::after {
  bottom: -8px;
}

.header-trigger span::before {
  top: -8px;
}

.footer {
  padding: 50px 0 40px;
  background: hsl(var(--accent));
  font-size: 14px;
}

.footer .social-links li a {
  padding: 0 5px;
  font-size: 17px;
  color: hsl(var(--white));
  transition: 0.3s;
}

.footer .social-links li a:hover {
  color: hsl(var(--base));
}

.footer-contacts li a {
  color: hsl(var(--white));
}

.footer .langSel {
  background: hsl(var(--accent));
  color: hsl(var(--white));
  padding-block: 3px;
  border-radius: 3px;
  border: 1px solid hsl(var(--white));
  margin-right: 8px;
}

.footer-logo {
  position: relative;
}

@media (max-width: 991px) {
  .footer-logo {
    margin: 15px 0;
  }
}

.footer-links {
  gap: 5px 12px;
}

.footer-links li a {
  color: hsl(var(--white));
}

.footer-top {
  gap: 10px 50px;
}

.footer-bottom {
  gap: 10px 25px;
}

.search-form {
  padding: 10px;
  outline: 10px solid hsl(var(--white) / 0.2);
  background: hsl(var(--white));
  border-radius: 50px;
}

.search-form .form-group {
  position: relative;
}

.search-form .form-group .icon {
  position: absolute;
  left: 20px;
  top: 50%;
  font-size: 20px;
  transform: translateY(-50%);
  color: hsl(var(--dark) / 0.5);
  z-index: 11;
}

.search-form .form--control {
  padding-left: 45px;
  border-radius: 30px;
  background: hsl(var(--base) / 0.12);
  border: 0;
  color: hsl(var(--dark));
}

.search-form .btn {
  border-radius: 0 30px 30px 0;
}

.inner-banner {
  padding: 105px 0;
  position: relative;
}

@media (max-width: 991px) {
  .inner-banner {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .inner-banner {
    padding: 80px 0;
  }
}

@media (max-width: 450px) {
  .inner-banner {
    padding: 60px 0;
  }
}

.inner-banner::before {
  background-color: hsl(var(--accent) / 0.7);
}

.inner-banner .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  gap: 10px 20px;
  font-size: 18px;
  color: hsl(var(--white));
  margin-top: 15px;
}

@media (max-width: 767px) {
  .breadcrumb {
    font-size: 16px;
    margin-top: 10px;
  }
}

.breadcrumb li:nth-child(2) {
  position: relative;
  padding-left: 30px;
}

.breadcrumb li:nth-child(2)::before {
  content: "\f30b";
  left: 0;
  top: 3px;
}

.brand-item {
  max-width: 160px;
  margin: 0 auto;
  padding: 5px 10px;
  border: 1px solid hsl(var(--border));
  border-radius: 6px;
  height: 60px;
}

@media screen and (max-width: 474px) {
  .brand-item {
    margin: 0 10px;
  }
}

.brand-item img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.brand-item img {
  width: 100%;
}

.shape {
  position: absolute;
}

.about-thumb {
  padding-right: 80px;
  position: relative;
}

.about-thumb .thumb-content {
  max-width: 400px;
  padding: 30px;
  border-radius: 7px;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 0;
  background: linear-gradient(
    -45deg,
    hsl(var(--primary)),
    hsl(var(--info)) 100%
  );
}

@media (max-width: 991px) {
  .about-thumb .thumb-content {
    top: -30px;
  }
}

@media (max-width: 500px) {
  .about-thumb {
    padding-right: 0;
  }

  .about-thumb .thumb-content {
    position: relative;
    max-width: 100%;
    margin-top: 5px;
    top: 0;
    padding: 20px;
  }
}

@media (max-width: 500px) and (max-width: 450px) {
  .about-thumb .thumb-content {
    padding: 20px 15px;
  }
}

.about-thumb img {
  border-radius: 7px;
}

.section-thumb img {
  width: 100%;
}

.choose-item {
  text-align: center;
  background: hsl(var(--white));
  padding: 30px;
  border-radius: 6px;
  height: 100%;
}

@media (max-width: 767px) {
  .choose-item {
    padding: 30px 15px;
  }
}

@media (max-width: 450px) {
  .choose-item {
    text-align: center;
  }
}

.choose-item__icon {
  width: 70px;
  height: 70px;
  font-size: 36px;
  color: hsl(var(--base));
  display: grid;
  place-items: center;
  background: hsl(var(--base) / 0.1);
  border-radius: 50%;
  margin: 0 auto;
}

@media (max-width: 450px) {
  .choose-item__icon {
    margin: 0 auto;
  }
}

.choose-item__content {
  padding-top: 20px;
}

.choose-item__content p {
  color: hsl(var(--dark) / 0.8);
}

@media (max-width: 767px) {
  .choose-item__content {
    padding-top: 15px;
  }
}

@media (max-width: 450px) {
  .choose-item__content {
    width: 100%;
    padding-top: 10px;
  }
}

.choose-item__content .title {
  margin-bottom: 15px;
}

.influencer-item {
  text-align: center;
  box-shadow: 0 1px 24px 0 #0000001a, 0 1px 2px -1px #0000001a !important;
  height: 100%;
  border-radius: 6px;
  background-color: hsl(var(--white));
  position: relative;
  overflow: hidden;
}

.influencer-item__cover {
  position: relative;
}

.influencer-thumb a {
  display: inline-flex;
  width: 100%;
}

.influencer-deatils-link {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 91;
}

.influencer-item .influencer-thumb {
  position: relative;
  overflow: hidden;
}

.influencer-item .influencer-thumb:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: -100%;
  left: 0;
  transition: all 0.3s ease 0s;
}

.influencer-item:hover .influencer-thumb:after {
  bottom: 0;
}

.influencer-item .influencer-thumb .influencer-status {
  width: 15px;
  aspect-ratio: 1;
  position: absolute;
  right: 5px;
  bottom: 7px;
  background: hsl(var(--dark-50));
  border-radius: 50%;
  outline: 3px solid hsl(var(--white));
}

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

.influencer-item__content {
  padding: 20px 15px;
}

.influencer-item__content .name {
  margin: 0 0 20px;
  position: relative;
  display: inline-block;
  line-height: 1;
  font-weight: 700;
  color: hsl(var(--base));
  font-size: 1.125rem;
  position: relative;
}

.influencer-item__content .name:before {
  content: "";
  width: 25px;
  height: 1px;
  background: hsl(var(--base));
  position: absolute;
  bottom: -10px;
  right: 50%;
  margin-right: 9px;
  transition-duration: 0.25s;
}

.influencer-item__content .name:after {
  content: "";
  width: 25px;
  height: 1px;
  background: hsl(var(--base));
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: 9px;
  transition-duration: 0.25s;
}

.influencer-item:hover .name:before,
.influencer-item:hover .name:after {
  width: 50px;
}

.influencer-item__content .name.verified::before {
  background: hsl(var(--base));
}

.influencer-item__content .short-des {
  color: hsl(var(--body) / 0.9);
  margin-bottom: 3px;
  font-weight: 600;
  position: relative;
  font-size: 0.938rem;
}

.influencer-item__content .short-des:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: hsl(var(--base));
  margin: 0 auto;
  position: relative;
  top: -13px;
}

.influencer-item__content .location {
  color: hsl(var(--dark) / 0.7);
}

.influencer-item__content .social-links {
  margin-top: 10px;
}

.influencer-item__content .social-links li a {
  padding: 5px;
  color: hsl(var(--dark) / 0.7);
  font-size: 19px;
}

.influencer-item__content .social-links li a:hover {
  color: hsl(var(--base));
}

.influencer-item__content .btn i {
  margin-right: 7px !important;
}

.influencer-item .social {
  padding: 0 0 18px 0;
  margin: 0;
  list-style: none;
  position: absolute;
  top: 0%;
  right: 10px;
  background: hsl(var(--base));
  border-radius: 0 0 20px 20px;
  z-index: 1;
  transition: all 0.3s ease 0s;
}

.influencer-item:hover .social {
  top: 0;
}

.influencer-item .social li a {
  display: block;
  padding: 15px;
  font-size: 15px;
  color: hsl(var(--white));
}

.influencer-item:hover .social li a:hover {
  color: hsl(var(--white));
}

.influencer-item__info .item i {
  color: hsl(var(--base));
  padding-right: 5px;
}

.influencer-item__info .item .text {
  font-weight: 600;
  font-size: 0.938rem;
  text-decoration: none;
}

.account-status {
  position: relative;
  padding-right: 10px;
}

.account-status.verified::before {
  background: hsl(var(--base));
}

.rating {
  color: #f2b827;
}

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

.testimonial-slider .slick-list {
  padding: 30px 3px !important;
}

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

@media (max-width: 1199px) {
  .testimonial-slider .single-slide {
    padding: 0 9px;
  }
}

.testimonial-item {
  text-align: center;
  padding: 35px 30px;
  border-radius: 10px;
  background-color: hsl(var(--white));
  position: relative;
}

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

.testimonial-item__content .rating {
  justify-content: center;
  margin-bottom: 15px;
  gap: 6px;
  font-size: 20px;
}

.testimonial-item__content .desc {
  margin-bottom: 25px;
  font-style: italic;
  color: hsl(var(--body));
}

.testimonial-item .testimonial-thumb-wrapper {
  align-items: center;
  gap: 10px 12px;
  display: flex;
}

.testimonial-item .testimonial-thumb-wrapper .testimonial-thumb {
  width: 50px;
  aspect-ratio: 1;
}

.testimonial-item .testimonial-thumb-wrapper .testimonial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-item .testimonial-thumb-wrapper .testimonial-content {
  text-align: left;
}

@media (max-width: 1199px) {
  .testimonial-item .testimonial-thumb-wrapper .testimonial-content .name {
    font-size: 18px;
  }
}

.testimonial-item .testimonial-thumb-wrapper .testimonial-content p {
  font-size: 15px;
}

.testimonial-item .icon {
  font-size: 42px;
  color: hsl(var(--base) / 0.2);
  position: absolute;
  bottom: 10px;
  right: 30px;
}

.search-top {
  padding: 25px;
  box-shadow: 0 5px 25px 5px hsl(var(--base) / 0.2);
  border-radius: 7px;
}

@media (max-width: 450px) {
  .search-top {
    padding: 20px;
  }
}

.search-top .btn {
  max-width: 150px;
  width: 100%;
}

@media (max-width: 991px) {
  .search-top .btn {
    max-width: 100%;
  }
}

.search-top .form-wrapper {
  width: calc(100% - 150px);
}

@media (max-width: 991px) {
  .search-top .form-wrapper {
    width: 100%;
  }
}

.social-icons li a {
  font-size: 18px;
  color: hsl(var(--white));
  padding: 0 6px;
}

.story-meta .read-time {
  position: relative;
  padding-left: 15px;
}

.story-meta .read-time::before {
  background: hsl(var(--dark) / 0.5);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.story-item {
  border-radius: 6px;
  background-color: hsl(var(--white));
  overflow: hidden;
  height: 100%;
}

.story-item .calender span {
  padding-left: 5px;
}

.story-item__thumb {
  overflow: hidden;
}

.story-item__thumb a {
  display: inline-block;
  width: 100%;
}

.story-item__thumb img {
  width: 100%;
  transition: 0.3s;
}

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

.story-item__content {
  padding: 24px;
}

.story-item__content .title {
  margin: 13px 0;
}

.story-item__content .title a {
  -webkit-line-clamp: 2;
}

.story-item__content p {
  -webkit-line-clamp: 3;
}

.story-item.recent-story {
  box-shadow: none;
}

.story-item.recent-story:hover {
  box-shadow: 0 3px 20px 3px hsl(var(--base) / 0.2);
}

.story-item.recent-story .story-item__thumb {
  width: 90px;
  height: 80px;
}

.story-item.recent-story .story-item__thumb img {
  height: 100%;
  border-radius: 7px;
  object-fit: cover;
}

.story-item.recent-story .story-item__content {
  width: calc(100% - 90px);
  padding: 0;
  padding-left: 10px;
}

.story-item.recent-story .story-item__content .title {
  margin: 5px 0;
}

.details-content p {
  -webkit-line-clamp: unset;
}

.details-content p:not(.details-content p:last-child) {
  margin-bottom: 15px;
}

.blockquote {
  font-size: 18px;
  background: hsl(var(--accent-600) / 0.06);
  padding: 15px 20px;
  border-radius: 5px;
}

.sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-item .recent-story:not(:last-child) {
  margin-bottom: 15px;
}

.privacy-policy-content .title {
  margin-bottom: 15px;
}

.privacy-policy-content p {
  margin-bottom: 25px;
}

.content-item:last-child p:last-child {
  margin-bottom: 0;
}

.tuitor-profile-wrapper {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .tuitor-profile-wrapper {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .tuitor-profile-wrapper {
    padding: 20px;
  }
}

.tuitor-profile-wrapper .info li:not(:last-child) {
  position: relative;
}

.tuitor-profile-wrapper .info li:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  border-right: 1px solid hsl(var(--border));
  right: -50%;
}

@media (max-width: 1199px) {
  .tuitor-profile-wrapper .info li:not(:last-child)::before {
    display: none;
  }
}

.tuitor-profile-wrapper .list {
  gap: 10px 30px;
}

.contact-item {
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--dark) / 0.05);
  padding: 40px 20px;
  border-radius: 7px;
  text-align: center;
  box-shadow: 0px 2px 12px hsl(var(--dark) / 0.02);
  position: relative;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .contact-item {
    padding: 30px 6px;
  }
}

.contact-item__desc {
  color: hsl(var(--dark) / 0.8);
}

@media (max-width: 991px) {
  .contact-item__desc {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .contact-item {
    padding: 30px 15px;
  }

  .contact-item__desc {
    font-size: 15px;
  }
}

.contact-item__title {
  margin-bottom: 10px;
  margin-top: 15px;
}

.contact-item__icon {
  position: absolute;
  top: -30px;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translateX(-50%);
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--dark) / 0.05);
  box-shadow: 0px 2px 12px hsl(var(--dark) / 0.02);
  font-size: 20px;
  color: hsl(var(--base));
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* bio  */
.bio {
  background-color: hsl(var(--white));
}

.bio__name {
  margin-bottom: 5px;
}

.bio__title {
  font-size: 14px;
  margin-bottom: 10px;
  color: hsl(var(--base));
}

.bio__desc {
  color: hsl(var(--dark) / 0.8);
}

.p-bg {
  background-color: hsl(var(--base));
  border-radius: 30px;
}

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

.tab-contact__name {
  margin-bottom: 5px;
}

.email {
  color: hsl(var(--dark) / 0.8);
  margin-bottom: 8px;
}

.email__icon {
  margin-right: 8px;
}

.number__icon {
  margin-right: 8px;
}

.profile {
  gap: 15px 25px;
  align-items: center;
}

.profile .thumb {
  width: 240px;
  height: 240px;
}

.profile .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.btn-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.price-rate {
  font-size: 20px;
  padding: 12px;
  background-color: #f1f0f0;
  border-radius: 6px;
}

.profile .content .title {
  font-size: 19px;
  margin: 8px 0 16px;
  font-weight: 500;
  color: rgb(0 0 0 / 80%);

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

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

  @media (max-width: 424px) {
    font-size: 14px;
  }
}

.price-rate sub {
  font-size: 65%;
  font-weight: 400;
}

.profile-content p {
  margin-bottom: 15px;
}

.video-thumb {
  position: relative;
  width: 100%;
  height: 350px;
}

.video-thumb::before {
  background: hsl(var(--dark));
  opacity: 0.7;
}

.video-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.video-thumb .video-button {
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translateX(-50%);
}

.social-info {
  padding: 40px;
  background: hsl(var(--white));
  border-radius: 15px;
  margin-top: -100px;
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 25px 5px hsl(var(--base) / 0.15);
}

@media (max-width: 575px) {
  .social-info {
    padding: 25px;
  }

  .social-info div[class*="col"] {
    width: 50%;
  }
}

@media (max-width: 450px) {
  .social-info div[class*="col"] {
    width: 100%;
  }
}

div[class*="col"]:not(:last-child) .social-item {
  border-right: 1px solid hsl(var(--dark) / 0.1);
}

@media (max-width: 991px) {
  div[class*="col"]:nth-child(2) .social-item {
    border-right: 0;
  }
}

.social-item {
  text-align: center;
}

.social-item .icon {
  font-size: 50px;
  color: hsl(var(--base));
}

@media (max-width: 1199px) {
  .social-item .icon {
    font-size: 36px;
  }
}

.social-item .title {
  font-weight: 900;
  color: hsl(var(--dark) / 0.7);
}

@media (max-width: 1199px) {
  .social-item .title {
    font-size: 32px;
  }
}

.social-item p {
  color: hsl(var(--dark) / 0.7);
}

@media (max-width: 450px) {
  .social-item {
    border-right: 0 !important;
  }
}

.experties-meta {
  gap: 10px 25px;
  color: hsl(var(--base));
}

.contacts-info p {
  margin-bottom: 30px;
}

.contacts-info .address li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
}

.contacts-info .address li .icon {
  position: absolute;
  left: 0;
  color: hsl(var(--base));
  font-size: 20px;
}

.contacts-info .social-links li {
  padding-left: 0;
  padding-right: 15px;
}

.map-wrap iframe {
  width: 100%;
  height: 500px;
}

.counter-section {
  background-color: hsl(var(--base));
}

.counter__item {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  border-radius: 5px;
  background: hsl(var(--white));
}

@media (max-width: 1199px) {
  .counter__item {
    padding: 20px;
  }
}

.counter__item-icon {
  font-size: 50px;
  line-height: 1;
  color: hsl(var(--base));
  width: 50px;
}

@media (max-width: 1199px) {
  .counter__item-icon {
    font-size: 42px;
    width: 40px;
  }
}

.counter__item-icon i {
  display: block;
}

.counter__item-title {
  font-size: 30px;
}

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

.counter__item .info {
  font-size: 16px;
}

@media (max-width: 1199px) {
  .counter__item .info {
    font-size: 14px;
  }
}

.counter__item-content {
  padding-left: 15px;
  width: calc(100% - 50px);
}

@media (max-width: 1199px) {
  .counter__item-content {
    width: calc(100% - 40px);
  }
}

div[class*="col"]:nth-of-type(6n + 2) .dashboard-widget {
  background: hsl(var(--primary) / 0.15);
}

div[class*="col"]:nth-of-type(6n + 2) .dashboard-widget__icon {
  background: hsl(var(--primary) / 0.15);
  border: 2px solid hsl(var(--primary) / 0.7);
  color: hsl(var(--primary));
}

div[class*="col"]:nth-of-type(6n + 3) .dashboard-widget {
  background: hsl(var(--info) / 0.15);
}

div[class*="col"]:nth-of-type(6n + 3) .dashboard-widget__icon {
  background: hsl(var(--info) / 0.15);
  border: 2px solid hsl(var(--info) / 0.7);
  color: hsl(var(--info));
}

div[class*="col"]:nth-of-type(6n + 4) .dashboard-widget {
  background: hsl(var(--warning) / 0.15);
}

div[class*="col"]:nth-of-type(6n + 4) .dashboard-widget__icon {
  background: hsl(var(--warning) / 0.15);
  border: 2px solid hsl(var(--warning) / 0.7);
  color: hsl(var(--warning));
}

div[class*="col"]:nth-of-type(6n + 5) .dashboard-widget {
  background: hsl(var(--success) / 0.15);
}

div[class*="col"]:nth-of-type(6n + 5) .dashboard-widget__icon {
  background: hsl(var(--success) / 0.15);
  border: 2px solid hsl(var(--success) / 0.7);
  color: hsl(var(--success));
}

div[class*="col"]:nth-of-type(6n + 6) .dashboard-widget {
  background: hsl(var(--secondary) / 0.15);
}

div[class*="col"]:nth-of-type(6n + 6) .dashboard-widget__icon {
  background: hsl(var(--secondary) / 0.15);
  border: 2px solid hsl(var(--secondary) / 0.7);
  color: hsl(var(--secondary));
}

.dashboard-widget {
  padding: 30px 25px;
  border-radius: 5px;
  background: hsl(var(--base) / 0.15);
}

.dashboard-widget__icon {
  width: 60px;
  height: 60px;
  border-radius: 7px;
  font-size: 32px;
  background: hsl(var(--base) / 0.15);
  border: 2px solid hsl(var(--base) / 0.7);
  color: hsl(var(--base));
  display: grid;
  place-items: center;
}

.dashboard-widget__content {
  width: calc(100% - 70px);
  padding-left: 25px;
}

.dashboard-widget__content .title {
  margin-top: 4px;
}

.deposit-card {
  border-color: transparent !important;
  box-shadow: 0 3px 15px hsl(var(--dark) / 0.15);
}

.deposit-card:hover {
  box-shadow: 0 7px 25px hsl(var(--dark) / 0.25);
}

.deposit-card .card-header {
  background: hsl(var(--accent));
}

.deposit-card .card-header .card-title {
  color: hsl(var(--white));
}

.deposit-card img {
  width: 100%;
}

.deposit-card .card-footer {
  background: transparent;
}

.deposit-card .card-footer .cmn--btn {
  width: 100%;
}

@media (max-width: 991px) {
  .deposit-card .card-footer .cmn--btn {
    padding: 7px 25px !important;
  }
}

.deposit-preview {
  padding: 30px;
  border: 2px solid hsl(var(--border));
}

.deposit-preview .deposit-thumb {
  width: 40%;
}

.deposit-preview .deposit-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deposit-preview .deposit-content {
  width: 60%;
  border-left: none;
  border-radius: 0 5px 5px 0;
  padding-left: 30px;
}

@media (max-width: 1199px) {
  .deposit-preview .deposit-content ul li {
    font-size: 14px !important;
  }

  .deposit-preview {
    padding: 30px 20px;
  }
}

.deposit-preview .deposit-content ul {
  width: 100%;
  text-align: center;
}

.deposit-preview .deposit-content ul li {
  padding: 10px 0;
  font-size: 16px;
  justify-content: space-between;
  align-items: center;
}

.deposit-preview .deposit-content ul li:not(:last-child) {
  border-bottom: 1px dashed hsl(var(--border));
}

@media (max-width: 767px) {
  .deposit-preview {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
    padding: 20px;
  }

  .deposit-preview .deposit-thumb {
    width: 100%;
  }

  .deposit-preview .deposit-content {
    padding-left: 0;
    padding-top: 20px;
    width: 100%;
    border-radius: 0 0 5px 5px;
  }
}

@media (max-width: 450px) {
  .deposit-preview {
    padding: 15px;
  }

  .deposit-preview .deposit-content li {
    font-size: 14px !important;
  }
}

.profile-thumb {
  padding: 25px;
  box-shadow: 0 3px 25px 3px hsl(var(--base) / 0.15);
}

@media (max-width: 450px) {
  .profile-thumb {
    padding: 20px;
  }
}

.profile-thumb .thumb {
  position: relative;
  margin-bottom: 15px;
}

.profile-thumb .thumb img {
  width: 100%;
}

.profile-thumb .update-thumb-icon {
  position: absolute;
  width: 35px;
  height: 35px;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.chat__list {
  max-height: calc(100vh - 250px);
  overflow-y: auto;
}

@media screen and (min-width: 992px) {
  .chat__list {
    min-height: 400px;
  }
}

.chat__list > li {
  width: 100%;
  padding: 5px 0;
}

.chat__list > li:last-child {
  border: none;
}

.chat__item {
  width: 100%;
}

.chat__item .item__inner {
  display: block;
  padding: 10px 15px;
  border-radius: 5px;
}

.chat__item .item__inner .chat__meta {
  margin: 3px;
  margin-top: -25px;
  padding-left: 65px;
  font-size: 13px;
}

.chat__item .item__inner a {
  color: #456;
}

.chat__item.active .item__inner,
.chat__item:hover .item__inner {
  background: rgba(31, 31, 35, 0.05);
}

.chat__msg-body {
  max-height: calc(100vh - 250px);
  min-height: 400px;
  overflow-y: auto;
  background: #d3d3d329;
}

.chat__msg-body .msg__wrapper li p {
  padding: 10px 15px;
  background: hsl(var(--dark) / 0.08);
  border-radius: 15px 15px 15px 0;
  font-size: 15px;
  display: inline-block;
}

@media (max-width: 450px) {
  .chat__msg-body .msg__wrapper li p {
    padding: 6px 13px;
    margin: 6px 0;
  }
}

.chat__msg-footer .send__msg .input-group {
  position: relative;
}

.chat__msg-footer .send__msg .form--control {
  height: 50px;
  padding: 10px 15px;
  padding-left: 60px;
}

.chat__msg-footer .send__msg .send-btn {
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: hsl(var(--white));
  background: hsl(var(--base));
  border-radius: 0 5px 5px 0;
}

.chat__msg-footer .send__msg .upload-file {
  cursor: pointer;
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0;
  z-index: 11;
  width: 50px;
  height: 50px;
  background: rgba(31, 31, 35, 0.05);
  font-size: 18px;
  border-radius: 5px 0 0 5px;
}

.msg__item .comment-img {
  max-width: 300px;
  width: 100%;
}

.msg__item .comment-img img {
  width: 100%;
}

.msg__item .post__creator-content {
  padding-top: 0;
}

.chat__msg-footer .send__msg .upload-file,
.chat__msg-footer .send__msg .upload-file i {
  display: grid;
  place-items: center;
  color: hsl(var(--base));
}

.msg__item .post__creator-content .comment-date {
  display: block;
  font-size: 11px;
}

.outgoing__msg .post__creator {
  flex-direction: row-reverse;
}

.chat__msg-footer {
  margin-top: 20px;
}

.outgoing__msg .post__creator-content {
  text-align: right;
  padding-left: 18px;
  padding-right: 18px;
}

.incoming__msg .post__creator-content {
  padding-left: 18px;
  padding-right: 18px;
}

.outgoing__msg .post__creator-content p {
  border-radius: 15px 15px 0 15px !important;
  background: hsl(var(--accent)) !important;
  color: hsl(var(--white));
}

.outgoing__msg .post__creator {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.post__creator-content {
  max-width: 90%;
}

.post__creator-thumb {
  align-items: center;
}

@media screen and (min-width: 768px) {
  .post__creator-content {
    max-width: 575px;
  }
}

.msg__wrapper li {
  list-style: none;
  padding: 0;
}

.msg__wrapper li p {
  margin-bottom: 0;
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .currency--card {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

.chatbox__list__wrapper .search-btn {
  border-radius: 0 5px 5px 0;
}

.or {
  position: relative;
  display: inline-block;
}

.or::before,
.or::after {
  background: hsl(var(--border));
  height: 1px;
  top: 49%;
  right: calc(100% + 15px);
}

.or::before {
  right: 0;
  left: calc(100% + 15px);
}

.alternate-account {
  gap: 10px 15px;
}

.alternate-account li a {
  width: 50px;
  height: 50px;
  font-size: 20px;
  background: hsl(var(--base) / 0.1);
  color: hsl(var(--base));
  display: grid;
  place-items: center;
  border-radius: 15px;
}

.alternate-account li a:hover {
  background: hsl(var(--base));
  color: hsl(var(--white));
}

.account-wrapper {
  padding: 40px;
  box-shadow: 0 5px 25px 5px hsl(var(--base) / 0.1);
  overflow: hidden;
}

@media (max-width: 1199px) {
  .account-wrapper {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .account-wrapper {
    padding: 20px;
  }
}

.account-thumb-wrapper {
  background: hsl(var(--base) / 0.15);
  height: 100%;
}

.account-thumb-wrapper {
  position: relative;
  display: grid;
  place-items: center;
}

.account-thumb-wrapper .thumb {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.account-thumb-wrapper .thumb img {
  width: 100%;
}

.account-thumb-wrapper .content {
  padding: 100px 30px;
  display: grid;
  place-items: center;
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 575px) {
  .account-thumb-wrapper .content {
    padding: 60px 20px;
  }
}

/* category section css start here  */
/* .category-item {
    background-color: hsl(var(--white));
    padding: 50px 40px;
    border: 1px solid hsl(var(--dark)/.1);
    border-radius: 5px;
    text-align: center;
}
.category-item .icon {
    margin-bottom: 20px;
}
.category-item .icon img {
  max-height: 80px;
}
.content .title {
    margin-bottom: 10px;
}
.content .link {
    font-size: 14px;
    font-weight: 500;
    transition: .3s linear;
} */
/* blog css  */
.blog-item {
  box-shadow: var(--box-shadow);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

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

.blog-item:hover .blog-item__title-link {
  color: hsl(var(--base));
}

.blog-item__thumb {
  overflow: hidden;
  border-radius: 8px;
  max-height: 250px;
}

.blog-item__thumb-link {
  width: 100%;
  height: 100%;
}

.blog-item__thumb-link img {
  transition: 0.3s linear;
}

.blog-item__content {
  background-color: hsl(var(--white) / 0.07);
  padding: 35px 15px;
  height: 100%;
  text-align: left;
}

@media screen and (max-width: 992px) {
  .blog-item__content {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 424px) {
  .blog-item__content {
    padding: 25px 15px;
  }
}

.blog-item__title {
  margin-top: 15px;
  margin-bottom: 10px;
}

@media screen and (max-width: 575px) {
  .blog-item__title {
    margin-top: 15px;
  }
}

.blog-item__title-link {
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-item__desc {
  margin-bottom: 25px;
  overflow: hidden;
  color: hsl(var(--dark) / 0.8);
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 767px) {
  .blog-item__desc {
    margin-bottom: 15px;
  }
}

.text-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-list__item {
  font-size: 14px;
  color: hsl(var(--dark) / 0.8);
}

.text-list__item:last-child {
  margin-left: 20px;
}

.text-list__item-icon {
  color: hsl(var(--base) / 0.8);
  font-size: 12px;
  margin-right: 3px;
}

/* category section end here  */

/* service section css start here  */
.service-item {
  background-color: hsl(var(--white));
  box-shadow: 0px 0px 150px 0px rgba(78, 67, 250, 0.1);
  padding: 40px 30px;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: 0.2s linear;
}

@media (max-width: 1399px) {
  .service-item {
    padding: 30px;
  }
}

.service-item::before {
  position: absolute;
  content: "";
  bottom: -25px;
  left: -25px;
  width: 80px;
  height: 80px;
  background-color: hsl(var(--base) / 0.1);
  border-radius: 50%;
  transition: 0.2s linear;
}

@media (max-width: 1399px) {
  .service-item::before {
    width: 70px;
    height: 70px;
    left: -30px;
    bottom: -30px;
  }
}

.service-item:hover::before {
  background-color: hsl(var(--base) / 0.2);
}

.service-item__thumb {
  margin-bottom: 25px;
}

.service-item__thumb img {
  max-width: 90px;
  object-fit: cover;
}

.service-item__title {
  color: hsl(var(--dark));
  font-weight: 500;
  margin-bottom: 10px;
}

.service-item__desc {
  color: hsl(var(--dark) / 0.8);
  font-weight: 400;
}

.service-item__icon {
  color: hsl(var(--base));
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  display: block;
  font-size: 40px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: 0.3s all ease;
}

/* team section start here  */

.team-item {
  /* padding: 35px 20px 25px; */
  /* box-shadow: 0 4px 15px 2px hsl(var(--dark)/.04); */
  border-radius: 10px;
  transition: 0.2s linear;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
  background: hsl(var(--white));
}

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

.team-item:hover .team-item__content {
  opacity: 1;
  width: 100%;
  visibility: visible;
  transform: translate(0, 0);
  top: unset;
  bottom: 0;
  height: 130px;
  background-color: hsl(var(--base));
}

.team-item:hover .name {
  color: hsl(var(--white));
}

.team-item__thumb {
  /* width: 80px;
  height: 80px;
  border-radius: 50%; */
  height: auto;
  margin: 0 auto;
  transition: 0.2s linear;
  border-radius: 7px;
  overflow: hidden;
}

.team-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-item__content {
  padding-top: 20px;
  text-align: center;
  height: 90px;
  width: 100%;
  top: unset;
  bottom: 0;
  opacity: 1;
  position: absolute;
  padding: 15px 20px;
  text-align: center;
  overflow: hidden;
  background: hsl(var(--white));
  transition: 0.3s all ease;
}

.team-item__content::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3px;
  transition: 0.3s all ease;
  left: 0;
}

.team-item .name {
  font-weight: 500;
  margin-bottom: 0px;
  font-size: 20px;
  transition: 0.3s all ease;
}

.team-item .title {
  display: block;
  color: hsl(var(--dark) / 0.8);
  transition: 0.3s all ease;
}

.team-item:hover .title {
  color: hsl(var(--white) / 0.7);
}

/* social link  */
.social-list {
  margin-top: 20px;
  bottom: -100px !important;
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 100;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%) scale(0.5);
  transition: 0.3s all ease;
}

.team-item:hover .social-list {
  bottom: 15px !important;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.social-icon__link {
  border: 1px solid hsl(var(--white) / 0.1);
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 5px;
  transition: 0.3s all ease;
}

.social-icon__item:hover .social-icon__link {
  color: hsl(var(--white));
}

.social-icon__link {
  color: hsl(var(--white) / 0.6);
  font-size: 16px;
  transition: 0.2s linear;
}

.social-icon__link.style-two {
  border: 1px solid hsl(var(--dark) / 0.1);
  color: hsl(var(--dark) / 0.6);
}

.social-icon__link.style-two:hover {
  color: hsl(var(--white));
  background-color: hsl(var(--base));
}

/* team section end here  */

label.required:after {
  content: "*";
  color: hsl(var(--danger)) !important;
  margin-left: 2px;
}

.card-empty {
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 1.391rem + 1.268vw, 2.5rem)
    clamp(1.5rem, 0.283rem + 2.536vw, 2.5rem);
}

.empty-thumb img {
  height: 50px;
}

.empty-thumb {
  text-align: center;
  margin-bottom: 10px;
}

/* banner section image */

.banner-section {
  position: relative;
  z-index: 1;
  background-color: hsl(var(--base));
}

.banner-section::after {
  content: "";
  position: absolute;
  background-image: url("../images/banner_bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 1;
  mix-blend-mode: multiply;
}

.banner-content {
  max-width: 670px;
  margin: 0 auto;
  text-align: left;
  padding-block: 60px;
}

.banner-content__subtitle {
  color: hsl(var(--white));
  font-weight: 500;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.banner-content__subtitle img {
  width: 25px;
  height: 25px;
}

.banner-content .title {
  color: hsl(var(--white));
  font-weight: 600;
}

@media (max-width: 425px) {
  .banner-content .title {
    font-size: 28px;
  }
}

.banner-content .desc {
  color: hsl(var(--white));
  font-size: 16px;
  margin: 25px 0 30px;
}

@media (max-width: 991px) {
  .banner-content .desc {
    font-size: 15px;
  }
}

@media (max-width: 450px) {
  .banner-content .desc {
    font-size: 14px;
  }
}

.banner-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.banner-search {
  border: 1px solid hsl(var(--white));
  max-width: 520px;
  width: 100%;
  border-radius: 6px;
  padding: 4px;
}

.banner-search .input-group {
  width: 100%;
  flex-wrap: nowrap;
}

.banner-search .form--control {
  background-color: transparent;
  border: 0;
  flex: 1;
  color: hsl(var(--white));
  padding: 12px;
  max-width: calc(100% - 78px);
}

.banner-search .form--control::placeholder {
  color: hsl(var(--white) / 0.5);
}

.banner-search .input-group-text {
  color: hsl(var(--base)) !important;
  background-color: hsl(var(--white));
  border-radius: 6px !important;
  padding-inline: 24px;
  font-weight: 500;
  flex-shrink: 0;
}

@media (max-width: 425px) {
  .banner-search .input-group-text {
    padding-inline: 12px;
  }
}

.form-group {
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: hsl(var(--base));
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid hsl(var(--base));
}

.testimonial-section,
.story-section,
.about-section {
  background-color: hsl(var(--base) / 0.04);
}

.why-choose {
  background-color: hsl(var(--base) / 0.07);
}

.close-btn {
  background: transparent;
  border: none;
}

/*---------------------------------------
    2.44 Support Card
-----------------------------------------*/
.support-card {
  border: 1px solid hsl(var(--base) / 0.2);
  border-radius: 5px;
  background: hsl(var(--white));
}

.support-card__title {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .support-card__title {
    margin-bottom: 0;
  }
}

.support-card__head {
  padding: 12px 15px;
  border-bottom: 1px solid hsl(var(--base) / 0.2);
}

@media screen and (min-width: 768px) {
  .support-card__head {
    display: flex;
    justify-content: space-between;
  }
}

.support-card__date {
  display: block;
  line-height: 1;
}

.support-card__body {
  padding: 12px 15px;
}

.support-card__body-text {
  font-size: 14px;
  margin-bottom: 0;
  color: hsl(var(--dark) / 0.8);
}

.support-card__list {
  --gap: 0.5rem;
  display: flex;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .support-card__list {
    margin-top: 1rem;
  }
}

.support-card__file {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border: 1px solid hsl(var(--base) / 0.2);
  border-radius: 5px;
  font-size: 14px;
  line-height: 1;
  color: hsl(var(--base));
}

.support-card__file:hover {
  background: hsl(var(--base));
  color: hsl(var(--white));
}

/*---------------------------------------
    2.45 Support List
-----------------------------------------*/
.support-list {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: grid;
  gap: 20px;
}

table.table.custom--table {
  border-radius: 8px;
  overflow: hidden;
}

.table-search-form {
  max-width: 540px;
  width: 100%;
  margin-left: auto;
}

.tuitor-profile-tab .nav-tabs .nav-link {
  border-bottom: 3px solid transparent !important;
  padding: 0px !important;
  margin-right: 30px;
  padding-bottom: 7px !important;
}

.tuitor-profile-tab .nav-tabs .nav-link.active {
  background-color: transparent !important;
  color: hsl(var(--base)) !important;
  border-color: hsl(var(--base)) !important;
}

.list--group {
  padding: 24px;
  background-color: rgb(0 0 0 / 1%);
  border-radius: 12px;

  @media (max-width: 575px) {
    padding: 16px;
  }
}

.list--group .list-group-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  padding: 0;
  background-color: transparent;
  margin-bottom: 16px;

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

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

.list--group .list-group-item .title {
  min-width: 250px;
  font-weight: 500;

  @media (max-width: 767px) {
    min-width: 200px;
  }

  @media (max-width: 575px) {
    min-width: 110px;
  }
}

.skill-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-wrap: wrap;
}

.skill-item {
  padding: 6px 24px;
  border-radius: 6px;
  background-color: rgb(0 0 0 / 10%);
}

.edu-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.edu-item-icon {
  height: 64px;
  width: 64px;
  display: grid;
  place-content: center;
  border-radius: 4px;
  font-size: 36px;
  background-color: hsl(var(--base) / 0.07);
  color: hsl(var(--base));
}

.edu-item-institute,
.history-item-name {
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 19px;
  color: hsl(var(--heading));
}

.edu-item-deapart {
  line-height: 1;
  font-size: 15px;
  color: rgb(0 0 0 / 68%);
  font-weight: 500;
  margin-bottom: 8px;
}

.edu-item-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1;
  color: rgb(0 0 0 / 70%);
  font-weight: 500;
}

.profile-lang {
  display: flex;
  align-items: center;
  font-size: 15px;
  gap: 6px;
  line-height: 1;
  margin-block: 12px;
}

.profile-lang .icon {
  display: flex;
}

.dashboard-side {
  padding: 16px;
  background-color: rgb(246 247 253);
  border-radius: 12px;
  height: 100%;
}

.advertiser-info li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.dashboard-side__img {
  height: 64px;
  width: 64px;
  overflow: hidden;
  border-radius: 50%;
  padding: 6px;
  border: 1px solid hsl(var(--base));
  margin: 0 auto 12px;
}

.dashboard-side__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.dashboard-side .title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 6px;
}

.dashboard-side .info-email {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}

.dashboard-side .top {
  text-align: center;
  margin-bottom: 24px;
}

.advertiser-info li {
  font-size: 15px;
  border-bottom: 1px dashed #00000036;
  padding-bottom: 14px;
}

.advertiser-info li:not(:last-child) {
  margin-bottom: 14px;
}

.advertiser-info li span:last-child {
  font-weight: 600;
}

.widget-card {
  padding: 24px 16px;
  background-color: rgb(82 93 224 / 5%);
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.widget-card-icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background: hsl(var(--base) / 0.2);
  font-size: 14px;
  color: hsl(var(--base));
}

.widget-card-content {
  flex: 1;
}

.widget-card-title {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 16px;
}

.widget-card-count {
  font-size: 20px;
  line-height: 1;
}

.testimonial-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.testimonial-slider .slick-slide {
  display: flex !important;
  height: auto;
}

/* footer start here  */

.footer {
  background: #282a74;
  padding-bottom: 20px;
}

.single_footer img {
  margin-bottom: 20px;
  width: 150px;
}

.single_footer h4 {
  color: hsl(var(--white));
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 20px;
}

.single_footer p {
  color: hsl(var(--white));
  margin-bottom: 30px;
  font-size: 1rem;
}

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

.single_footer ul li {
  transition: 0.3s;
}

.single_footer ul li a {
  color: hsl(var(--white));
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 36px;
  font-size: 1rem;
  font-weight: 400;
}

.single_footer ul li a:before {
  content: "-";
  font-family: "LineAwesome";
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  margin-right: 6px;
}

.single_footer ul li a:hover {
  color: hsl(var(--base));
}

.single_footer-contact {
  margin-bottom: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
}
.single_footer-contact:last-child {
  margin-bottom: 0px;
}

.single_footer-contact .left i {
  color: hsl(var(--base));
  font-size: 1.875rem;
}

.single_footer-contact h3 {
  font-weight: 600;
  color: hsl(var(--white));
  font-size: 1.125rem;
  overflow: hidden;
  margin-bottom: 5px;
}

.single_footer-contact p {
  font-size: 14px;
  overflow: hidden;
  margin-bottom: 0;
}

.single_footer li:hover {
  padding-left: 5px;
}

.fc {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid hsl(var(--base) / 0.3);
}

.footer_copyright {
  float: left;
}

@media only screen and (max-width: 480px) {
  .footer_copyright {
    display: inline;
  }
}

.footer_copyright p {
  color: hsl(var(--white));
  text-align: center;
  text-transform: capitalize;
}

.footer_menu {
  float: right;
}

@media only screen and (max-width: 480px) {
  .footer_menu {
    float: left;
    margin-top: 20px;
  }
}

.footer_menu ul {
  list-style: none;
}

.footer_menu ul li {
  float: left;
}

.footer_menu ul li a {
  color: hsl(var(--white));
  padding: 0px 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer_menu ul li a:hover {
  color: hsl(var(--base));
  text-decoration: underline;
}

@media screen and (min-width: 1199px) {
  .pr-lg-60 {
    padding-right: 60px;
  }
}

/* Custom Dropdown Css Start */
.custom--dropdown {
  position: relative;
  width: auto;
  min-width: 50px;
}

.custom--dropdown:after {
  content: "\f107";
  position: absolute;
  font-weight: 900;
  font-family: "Line Awesome Free";
  top: 50%;
  right: 10px;
  -webkit-transition: auto;
  transition: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-size: 14px;
}

.custom--dropdown.open:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.custom--dropdown > .custom--dropdown__selected {
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  color: hsl(var(--heading-color));
  font-family: var(--body-fonts);
  padding-right: 30px;
}

.custom--dropdown > .dropdown-list {
  position: absolute;
  background-color: hsl(var(--white));
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
  box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
  opacity: 0;
  overflow: hidden;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  top: 100%;
  margin-top: 5px;
  z-index: -1;
  visibility: hidden;
  max-height: 230px;
  min-width: 100px;
  overflow-y: auto !important;
}

.custom--dropdown > .dropdown-list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.custom--dropdown > .dropdown-list::-webkit-scrollbar-thumb {
  background-color: hsl(var(--base));
}

.custom--dropdown > .dropdown-list::-webkit-scrollbar-thumb {
  background-color: hsl(var(--base));
}

.custom--dropdown.open > .dropdown-list {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  z-index: 999 !important;
}

.dropdown-list > .dropdown-list__item {
  padding: 6px 15px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
}

.dropdown-list > .dropdown-list__item:hover {
  background-color: hsl(var(--base) / 0.08);
}

.dropdown-list > .dropdown-list__item,
.custom--dropdown > .custom--dropdown__selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.dropdown-list > .dropdown-list__item .thumb,
.custom--dropdown > .custom--dropdown__selected .thumb {
  max-width: 30px;
}

.dropdown-list > .dropdown-list__item .text,
.custom--dropdown > .custom--dropdown__selected .text {
  width: calc(100% - 30px);
  padding-left: 10px;
  color: hsl(var(--heading-color));
}

.dropdown-list > .dropdown-list__item.selected,
.dropdown-list > .dropdown-list__item.selected:hover {
  background-color: hsl(var(--base) / 0.15);
}

/* Custom Dropdown Css End */

/* price range design start here */
.currency {
  padding-left: 3px;
}

.side-sidebar-close-btn {
  background: transparent;
  border: 1px solid hsl(var(--border));
  border-radius: 5px;
  color: #000;
}

.price-input {
  width: 100%;
  display: flex;
  margin-top: 20px;
}

.price-input .field {
  display: flex;
  width: auto;
  height: 45px;
  align-items: center;
}

.filter-price-widget .price-range input {
  border: none;
  height: unset;
  width: auto;
  box-shadow: none;
  outline: none;
  background: transparent;
  color: #4fc4f7;
}

.field input {
  width: 65px;
  height: unset;
  outline: none;
  font-size: 19px;
  border-radius: 5px;
  text-align: center;
  border: none !important;
  -moz-appearance: textfield;
  color: hsl(var(--body));
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.price-input .separator {
  width: 10px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}

.slider {
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}

.slider .progress {
  height: 100%;
  left: 0;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: hsl(var(--base));
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: hsl(var(--base));
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: hsl(var(--base));
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/* sidebar design here */

.filter-sidebar {
  flex: 0 0 300px;
  position: sticky;
  background-color: hsl(var(--white));
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0px 4px 0 #0000001a, 0 0px 0px 0px #0000001a !important;
}

@media (max-width: 1199px) {
  .filter-sidebar.active {
    transform: translateX(0);
  }

  .filter-sidebar {
    position: fixed;
    left: 0;
    top: 0 !important;
    background: hsl(var(--white));
    padding: 30px;
    padding-top: 30px;
    z-index: 99999;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: all 0.4s ease-in;
  }

  .filter-task-btn {
    display: flex !important;
    flex-shrink: 0;
  }
}

.filter-sidebar__header {
  margin-bottom: 30px;
}

.filter-sidebar__sort {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 20px;
  padding-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0 0px 4px 0 #0000001a, 0 0px 0px 0px #0000001a !important;
}

.filter-sidebar__sort-right option {
  font-size: 0.875rem;
}

.filter-sidebar__widget .title {
  margin-bottom: 20px;
}

.filter-sidebar__widget {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid hsl(var(--border));
}

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

.filter-task-btn .btn {
  padding: 8px 15px !important;
  font-size: 0.875rem;
}

.tutor-profile {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media screen and (max-width: 600px) {
  .tutor-profile {
    flex-wrap: wrap;
    gap: 0px;
  }

  .tutor-profile__inner {
    align-items: inherit !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
  }

  .tutor-profile__share-list {
    margin-top: 0px;
    margin-bottom: 10px;
  }
}

.tutor-details__thumb {
  position: relative;
  height: 200px;
}

.tutor-details__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 575px) {
  .tutor-details__thumb {
    height: 160px;
  }
}

.tutor-details__thumb img {
  min-height: 130px;
}

.tutor-details__thumb-two {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: hsl(var(--white));
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -55px;
  border: 6px solid hsl(var(--white));
  z-index: 1;
}

@media (max-width: 991px) {
  .tutor-details__thumb-two {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 767px) {
  .tutor-details__title {
    font-size: 1.125rem;
  }
}

.tutor-details__thumb-two img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #e5e5ed;
}

.tutor-details__desc {
  max-width: 760px;
  margin-bottom: 5px;
  line-height: 1.6;
  font-size: 1rem !important;
  font-weight: 400;
}

.tutor-details__info-title {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.tutor-details__info-desc {
  line-height: 1.6;
  font-size: 1.125rem;
  font-weight: 400;
}

.tutor-details__header {
  padding: 20px 0px;
}

.tutor-details__header .popular-list {
  margin-bottom: 15px;
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.tutor-details__header .popular-list__item {
  font-size: 1rem;
}

.tutor-details__header .popular-list__item:last-child {
  margin-bottom: 0;
}

.tutor-details__header .popular-list__item .icon {
  margin-right: 5px;
  font-size: 20px;
}

.tutor-details__header .info-left__icon {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  overflow: hidden;
}

.tutor-details__header .info-left__content {
  width: calc(100% - 33px);
  padding-left: 7px;
}

.tutor-details__header .info-left__content .title {
  font-size: 0.85rem;
  color: hsl(var(--black));
}

.tutor-details__header .info-left__content .name {
  font-size: 0.85rem;
  font-weight: 700;
  color: hsl(var(--black));
}

@media (max-width: 767px) {
  .tutor-details__desc {
    font-size: 1rem !important;
  }
}

/* tutor background css */

.tutor-background__card,
.education__card,
.history__card {
  border: 1px solid rgb(241, 242, 244);
  padding: 30px 20px;
  border-radius: 16px;
}

.tutor-background__card-item:not(:last-child),
.edu-item:not(:last-child),
.history__card-inner:not(:last-child) {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.expertise-list-badge {
  border-radius: 18px;
  padding: 8px 22px;
}

.tutor-background__card-item p {
  font-weight: 600;
}

.history__card .thumb {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

@media screen and (max-width: 575px) {
  .history__card .thumb {
    width: 50px;
    height: 50px;
  }

  .history__card-inner {
    flex-wrap: wrap;
  }
}

.history__card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.history__card-inner {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}

.history-item-des {
  line-height: 1;
  font-size: 15px;
  color: rgb(0 0 0 / 68%);
  font-weight: 500;
  margin-bottom: 8px;
}

/* turtor sidebar design */
.tutor-statistics-card {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 16px;
  box-shadow: rgba(142, 151, 158, 0.15) 0px 4px 19px;
  background-color: hsl(var(--white));
}

.turtor-sessions {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 16px;
  border: 1px solid hsl(var(--border));
}

.tutor-statistics__item {
  display: flex;
  gap: 10px;
}

.tutor-statistics__item .icon {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

@media screen and (max-width: 1199px) {
  .tutor-statistics__item .icon {
    width: 35px;
    height: 35px;
  }
}

.tutor-statistics__item-content p {
  font-weight: 600;
  font-size: 1.125rem;
  color: hsl(var(--heading));
  margin-bottom: 3px;
  line-height: 1;
}

.tutor-statistics__item-content span {
  font-size: 0.875rem;
}

.icon-bg-one {
  background-color: hsl(var(--info) / 0.15);
  color: hsl(var(--info));
}

.icon-bg-two {
  background-color: hsl(var(--danger) / 0.15);
  color: hsl(var(--danger));
}

.icon-bg-three {
  background-color: hsl(var(--warning) / 0.15);
  color: hsl(var(--warning));
}

.icon-bg-four {
  background-color: hsl(var(--success) / 0.15);
  color: hsl(var(--success));
}

.turtor-sessions h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.turtor-sessions .subtitle {
  font-weight: 500;
  font-size: 0.875rem;
}

.turtor-sessions__item {
  gap: 10px;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  padding: 15px;
  margin-top: 24px;
}

.turtor-sessions__item .badge--advance {
  color: #553500;
  background-image: linear-gradient(
    134deg,
    #f1f1bc 5.23%,
    #e4bd34 49.24%,
    #daa305 94.24%
  );
  margin-bottom: 10px;
  padding: 7px 15px;
}

.turtor-sessions__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.turtor-sessions__content .title {
  margin-bottom: 5px;
}

.turtor-sessions__content .desc {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7b8a !important;
}

.turtor-sessions__content .price {
  margin-top: 10px;
  font-size: 1.125rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 24px !important;
  border: none !important;
  background-color: hsl(var(--white));
  color: hsl(var(--heading));
  font-size: 1rem;
}

@media screen and (max-width: 575px) {
  .share-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .tutor-details__header {
    width: 100% !important;
  }

  .tuitor-profile-tab {
    margin-top: 10px !important;
  }
}

.tutor-profile__share-list {
  display: flex;
  gap: 10px;
}

.tutor-profile__share-list .dropdown-toggle::after {
  display: none;
}

.tutor-details__thumb-two {
  position: relative;
}

.tutor-profile .edit-pen {
  position: absolute;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: hsl(var(--base));
  right: 0px;
  bottom: 15px;
  color: hsl(var(--white));
}

.tutor-details__thumb {
  position: relative;
}

.cover-edit-btn {
  position: absolute;
  right: 30px;
  bottom: 10px;
}

.sidebar-menu {
  padding-bottom: 10px;
  height: auto;
  background-color: hsl(var(--white));
  overflow-y: auto;
  border-radius: 5px;
  transition: 0.2s linear;
  position: sticky;
  top: 93px;
  padding: 30px 20px;
  box-shadow: 0 0px 4px 0 #0000001a, 0 0px 0px 0px #0000001a;
}

@media (max-width: 991px) {
  .sidebar-menu {
    position: fixed;
    left: 0;
    top: 0 !important;
    background: hsl(var(--white));
    padding: 30px;
    padding-top: 30px;
    z-index: 99999;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: all 0.4s ease-in;
    box-shadow: 0 0px 4px 0 #0000001a, 0 0px 0px 0px #0000001a;
  }

  .sidebar-menu.active {
    transform: translateX(0);
  }
}

.sidebar-menu__profile {
  margin-bottom: 45px;
}

.sidebar-menu__profile .thumb {
  margin-bottom: 20px;
}

.sidebar-menu__profile .thumb img {
  width: 83px;
  height: 83px;
  border-radius: 50%;
}

.sidebar-menu__profile .title {
  margin-bottom: 10px;
}

.sidebar-menu.show-sidebar {
  transform: translateX(0);
}

@media screen and (max-width: 991px) {
  .sidebar-menu {
    position: fixed;
    left: 0;
    top: 0;
    min-width: 320px;
    padding-top: 60px;
    transform: translateX(-100%);
    z-index: 9992;
    border-radius: 0;
  }
}

.sidebar-menu__close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: hsl(var(--base));
  border: 1px solid hsl(var(--base));
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 3px;
  transition: 0.2s linear;
  cursor: pointer;
  z-index: 9;
}

.sidebar-menu__close:hover,
.sidebar-menu__close:focus {
  background-color: hsl(var(--base));
  border-color: hsl(var(--base));
  color: hsl(var(--white));
}

.sidebar-menu-list__item {
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.sidebar-menu-list__item:last-child {
  border-bottom: none;
}

.sidebar-menu-list__item:last-child .sidebar-menu-list__link {
  padding-bottom: 0px !important;
}

.sidebar-menu-list__item.has-dropdown.active > a {
  color: hsl(var(--base));
}

.sidebar-menu-list__item.has-dropdown.active > a:after {
  transform: rotate(90deg);
  right: 17px;
  color: hsl(var(--base));
}

.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: 19px;
  transition: 0.1s linear;
}

.sidebar-menu-list__link {
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding: 10px 0px 10px 0px;
  width: 100%;
  color: hsl(var(--heading-color) / 0.8);
}

.sidebar-menu-list__link .icon {
  margin-right: 10px;
  text-align: center;
  border-radius: 4px;
  animation: swing ease-in-out 0.5s 1 alternate;
}

.sidebar-menu-list__link:hover .icon img {
  filter: invert(45%) sepia(49%) saturate(7409%) hue-rotate(323deg)
    brightness(101%) contrast(92%);
}

.sidebar-submenu {
  display: none;
}

.sidebar-submenu.open-submenu {
  display: block;
}

.sidebar-submenu-list {
  margin-bottom: 6px;
}

.sidebar-submenu-list__item.active > a {
  background-color: hsl(var(--base) / 0.08);
  color: hsl(var(--base));
}

.sidebar-submenu-list__link {
  padding: 0px 20px 10px 20px;
  display: block;
  color: hsl(var(--heading-color) / 0.8);
}

.sidebar-submenu-list__link:before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  margin-right: 10px;
  font-size: 0.5rem;
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(10deg);
  }

  30% {
    transform: rotate(0deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  50% {
    transform: rotate(0deg);
  }

  60% {
    transform: rotate(5deg);
  }

  70% {
    transform: rotate(0deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.nav.profile-edit-tab {
  display: block;
  border-bottom: 0px;
}

.nav.profile-edit-tab .nav-link {
  text-align: left;
  border-radius: 3px;
  margin: 5px;
}

.filter-sidebar__widget .form--check {
  margin-bottom: 0.5rem;
}

/* ================================= preload Css Start =========================== */
.preloader {
  position: fixed;
  z-index: 999999;
  background-color: hsl(var(--white));
  width: 100%;
  height: 100%;
}

.loader-p {
  border: 0 solid transparent;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: absolute;
  top: calc(50vh - 75px);
  left: calc(50vw - 75px);
}

.loader-p:before,
.loader-p:after {
  content: "";
  border: 1em solid hsl(var(--base));
  border-radius: 50%;
  width: inherit;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: loader 2s linear infinite;
  animation: loader 2s linear infinite;
  opacity: 0;
}

.loader-p:before {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

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

@keyframes loader {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

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

/* ================================= preload Css End ===========================  */

table tr:not(:last-child) {
  border-bottom: 1px solid #0000000a;
}

.language-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border-radius: 4px;
  width: max-content;
  background-color: hsl(var(--white) / 0.3);
  border: 1px solid hsl(var(--white) / 0.1) !important;
}

.language_flag {
  flex-shrink: 0;
  display: flex;
}

.language_flag img {
  width: 20px;
  height: 18px;
  object-fit: cover;
  border-radius: 5px;
}

.language-wrapper.show .collapse-icon {
  transform: rotate(180deg);
}

.collapse-icon {
  font-size: 14px;
  display: flex;
  transition: all linear 0.2s;
  color: hsl(var(--black));
}

.language_text_select {
  font-size: 13px;
  font-weight: 600;
}

p.language_text {
  font-size: 13px;
  font-weight: 600;
}

.language-content {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language_text {
  color: hsl(var(--black));
}

.language-list {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  cursor: pointer;
}

.language .dropdown-menu {
  position: absolute;
  -webkit-transition: ease-in-out 0.1s;
  transition: ease-in-out 0.1s;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  display: unset;
  background: hsl(var(--white));
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  min-width: 120px;
  padding: 5px 0 !important;
  border-radius: 8px;
  border: 1px solid rgb(0 0 0 / 3%);
  left: -10px !important;
}

.language .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 575px) {
  .header-top-right {
    flex: 1;
  }
}

.font-size-footer {
  font-size: 1rem !important;
}

.pagination .page-item.disabled span,
.pagination .page-item.disabled a {
  background: hsl(var(--dark) / 0.06);
  border: none;
  color: hsl(var(--base));
}

.contact-map {
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.table-search-form {
  max-width: 540px;
  margin-left: auto;
  width: calc(100% - 170px);
}

.form-wrapper__btn .btn {
  width: 170px;
  margin-left: auto;
  text-align: left;
}

@media (max-width: 424px) {
  .table-form-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .table-search-form {
    max-width: unset;
    width: 100%;
  }
  .table-form-wrapper__btn {
    width: 100%;
  }
  .table-form-wrapper__btn .btn {
    width: 100%;
  }
}
