/* Font Family*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap");

/* ========================= Css Variables Start ======================== */
:root {
  /* Font Family */
  --heading-font: "Outfit", sans-serif;
  --body-font: "Inter", sans-serif;
  /* ========================= Theme Color Start ============================= */
  --base-h: 228;
  --base-s: 100%;
  --base-l: 65%;
  --base: var(--base-h) var(--base-s) var(--base-l);
  --base-d-100: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.1);
  --base-d-200: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.2);
  --base-d-300: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.3);
  --base-d-400: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.4);
  --base-d-500: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.5);
  --base-d-600: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.6);
  --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
  --base-d-800: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.8);
  --base-d-900: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.9);
  --base-d-1000: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 1);
  --base-l-100: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.1);
  --base-l-200: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.2);
  --base-l-300: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.3);
  --base-l-400: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.4);
  --base-l-500: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.5);
  --base-l-600: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.6);
  --base-l-700: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.7);
  --base-l-800: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.8);
  --base-l-900: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.9);
  --base-l-1000: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 1);
  /* ========================= Theme Color End ============================= */
  /* ========================= Color Variables Start =========================== */
  --white: 0 0% 100%;
  --body-color: 0 0% 33%;
  --body-bg: 219 100% 97%;
  --heading-color: 0 0% 13%;
  --black: 0 0% 0%;
  --border-color: 0 0% 88%;
  --section-bg: 0 0% 87%;
  /* ================================ Box Shadow Start =============================== */
  --box-shadow: 0px 4px 13px hsl(var(--black) / 0.08);
  /* ================================ Box Shadow End =============================== */
  /* ============================== Bootstrap Modifier Start ============================== */
  /* Primary Color */
  --primary-h: 238;
  --primary-s: 100%;
  --primary-l: 40%;
  --primary: var(--primary-h) var(--primary-s) var(--primary-l);
  --primary-d-100: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.1);
  --primary-d-200: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.2);
  --primary-d-300: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.3);
  --primary-d-400: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.4);
  --primary-d-500: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.5);
  --primary-l-100: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.1);
  --primary-l-200: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.2);
  --primary-l-300: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.3);
  --primary-l-400: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.4);
  --primary-l-500: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.5);
  /* Secondary Color */
  --secondary-h: 208;
  --secondary-s: 7%;
  --secondary-l: 46%;
  --secondary: var(--secondary-h) var(--secondary-s) var(--secondary-l);
  --secondary-d-100: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.1);
  --secondary-d-200: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.2);
  --secondary-d-300: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.3);
  --secondary-d-400: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.4);
  --secondary-d-500: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.5);
  --secondary-l-100: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.1);
  --secondary-l-200: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.2);
  --secondary-l-300: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.3);
  --secondary-l-400: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.4);
  --secondary-l-500: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.5);
  /* Success Color */
  --success-h: 112;
  --success-s: 100%;
  --success-l: 40%;
  --success: var(--success-h) var(--success-s) var(--success-l);
  --success-d-100: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.1);
  --success-d-200: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.2);
  --success-d-300: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.3);
  --success-d-400: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.4);
  --success-d-500: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.5);
  --success-l-100: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.1);
  --success-l-200: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.2);
  --success-l-300: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.3);
  --success-l-400: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.4);
  --success-l-500: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.5);
  /* Danger Color */
  --danger-h: 0;
  --danger-s: 96%;
  --danger-l: 63%;
  --danger: var(--danger-h) var(--danger-s) var(--danger-l);
  --danger-d-100: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.1);
  --danger-d-200: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.2);
  --danger-d-300: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.3);
  --danger-d-400: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.4);
  --danger-d-500: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.5);
  --danger-l-100: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.1);
  --danger-l-200: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.2);
  --danger-l-300: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.3);
  --danger-l-400: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.4);
  --danger-l-500: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.5);
  /* Warning Color */
  --warning-h: 45;
  --warning-s: 100%;
  --warning-l: 50%;
  --warning: var(--warning-h) var(--warning-s) var(--warning-l);
  --warning-d-100: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.1);
  --warning-d-200: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.2);
  --warning-d-300: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.3);
  --warning-d-400: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.4);
  --warning-d-500: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.5);
  --warning-l-100: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.1);
  --warning-l-200: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.2);
  --warning-l-300: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.3);
  --warning-l-400: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.4);
  --warning-l-500: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.5);
  /* Info Color */
  --info-h: 196;
  --info-s: 100%;
  --info-l: 50%;
  --info: var(--info-h) var(--info-s) var(--info-l);
  --info-d-100: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.1);
  --info-d-200: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.2);
  --info-d-300: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.3);
  --info-d-400: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.4);
  --info-d-500: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.5);
  --info-l-100: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.1);
  --info-l-200: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.2);
  --info-l-300: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.3);
  --info-l-400: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.4);
  --info-l-500: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.5);
  /* ============================== Bootstrap Modifier End ============================== */
}

/* ========================= Css Variables End =========================== */
/* Fully Fit image Css */
.fit-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================= Display Flex Css Start ============================= */
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex-align {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

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

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

/* ============================= Display Flex Css End ============================= */
/* ============================= Positioning Css Class Start ===================== */
.pa-extend,
.alert__link::before {
  position: absolute;
  content: "";
}

.top-center-extend,
.accordion .accordion-button[aria-expanded="true"]::after,
.accordion .accordion-button[aria-expanded="false"]::after {
  top: 50%;
  transform: translateY(-50%);
}

.left-center-extend {
  left: 50%;
  transform: translateX(-50%);
}

.top-left-center-extend {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ============================= Positioning Css Class End ===================== */
/* ================================= Common Typography Css Start =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  color: hsl(var(--body-color));
  word-break: break-word;
  background-color: hsl(var(--base)/0.06);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

p {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  color: hsl(var(--body-color));
}

@media screen and (max-width: 991px) {
  p {
    font-size: 14px;
  }
}

span {
  display: inline-block;
}

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

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

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0 0 15px 0;
  }
}

h1 {
  font-size: 3rem;
  font-weight: 900;
}

@media screen and (max-width: 1399px) {
  h1 {
    font-size: 2.75rem;
  }
}

@media screen and (max-width: 1199px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 2.25rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.125rem;
  }
}

@media screen and (max-width: 575px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 2.5rem;
}

@media screen and (max-width: 1399px) {
  h2 {
    font-size: 2.8125rem;
  }
}

@media screen and (max-width: 1199px) {
  h2 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 2.1875rem;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 575px) {
  h2 {
    font-size: 1.5625rem;
  }
}

h3 {
  font-size: 1.875rem;
}

@media screen and (max-width: 1399px) {
  h3 {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 1199px) {
  h3 {
    font-size: 1.5625rem;
  }
}

@media screen and (max-width: 991px) {
  h3 {
    font-size: 1.4375rem;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.375rem;
  }
}

h4 {
  font-size: 1.5rem;
}

@media screen and (max-width: 1399px) {
  h4 {
    font-size: 1.3125rem;
  }
}

@media screen and (max-width: 1199px) {
  h4 {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 991px) {
  h4 {
    font-size: 1.1875rem;
  }
}

@media screen and (max-width: 767px) {
  h4 {
    font-size: 1.125rem;
  }
}

h5 {
  font-size: 1.25rem;
}

@media screen and (max-width: 1399px) {
  h5 {
    font-size: 1.1875rem;
  }
}

@media screen and (max-width: 1199px) {
  h5 {
    font-size: 1.125rem;
  }
}

h6 {
  font-size: 1rem;
}

@media screen and (max-width: 1399px) {
  h6 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1199px) {
  h6 {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 991px) {
  h6 {
    font-size: 0.875rem;
  }
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a,
h6>a {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  transition: 0.2s linear;
  line-height: inherit;
}

a {
  display: inline-block;
  transition: 0.3s;
  text-decoration: none;
  color: hsl(var(--heading-color));
}

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

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

select {
  cursor: pointer;
}

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

button {
  border: 0;
  background-color: transparent;
}

button:focus {
  outline: none;
  box-shadow: none;
}

/* ================================= Common Typography Css End =========================== */
/* ================================= Custom Classes Css Start =========================== */
/* Column Extra Small Screen */
@media screen and (min-width: 425px) and (max-width: 575px) {
  .col-xsm-6 {
    width: 50%;
  }
}

/* Section Background */
.section-bg {
  background-color: hsl(var(--section-bg));
}

.cursor-pointer {
  cursor: pointer !important;
}

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

/* Bg Image Css */
.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

/* Hide Scroll bar Css For Custom Modal */
.scroll-hide {
  position: absolute;
  overflow-y: hidden;
  padding-right: 17px;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .scroll-hide {
    padding-right: 0;
  }
}

.scroll-hide-sm {
  position: absolute;
  overflow-y: hidden;
  top: 0;
  left: 0;
  width: calc(100% - 0px);
}

.gradient-text {
  background-image: linear-gradient(180deg,
      hsl(var(--base-d-200)) 0%,
      hsl(var(--base)) 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text::selection {
  color: hsl(var(--white));
  -webkit-text-fill-color: hsl(var(--white));
  background: transparent;
}

/* ================================= Custom Classes Css End =========================== */
/* ======================  Section Heading Start  ======================*/
.section__heading {
  max-width: 430px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.section__heading span {
  font-size: 16px;
  font-weight: 500;
  display: block;
  color: hsl(var(--base));
  letter-spacing: 6px;
  margin-bottom: 12px;
  line-height: 1;
}

@media screen and (max-width: 1199px) {
  .section__heading span {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .section__heading span {
    font-size: 12px;
  }
}

.section__heading h2 {
  font-size: 32px;
}

@media screen and (max-width: 1199px) {
  .section__heading h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 991px) {
  .section__heading h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

/* ======================  Section Heading End  ======================*/
/* ======================  Section Topbar Start  ======================*/
.section__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.section__topbar h5 {
  margin-bottom: 0;
}

/* ======================  Section Topbar End  ======================*/
/* ======================  Overlay Section Start  ======================*/
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: hsl(var(--black) / 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 10;
}

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

/* ======================  Overlay Section End  ======================*/
/* ======================  Price Range Section Start  ======================*/
.range-slider {
  position: relative;
  user-select: none;
  clear: both;
}

.range-slider-box .sliderr {
  height: 12px;
  background-color: hsl(var(--base) / 0.08);
  position: relative;
  border-radius: 30px;
}

.range-slider-box .sliderr .progresss {
  height: 100%;
  position: absolute;
  left: 0%;
  right: 0%;
  background-color: hsl(var(--base));
  border-radius: 30px;
}

.range-slider-box .range-input {
  position: relative;
}

.range-slider-box .range-input input {
  position: absolute;
  top: -12px;
  height: 12px;
  width: 100%;
  background: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  pointer-events: none;
  border-radius: 0px !important;
}

.range-input input::-webkit-slider-thumb {
  pointer-events: all;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: hsl(var(--white));
  border: 5px solid hsl(var(--base));
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: auto;
  appearance: none;
}

.slider-box {
  padding-bottom: 4px;
  margin-bottom: 16px;
}

.range-slider-box .range-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  z-index: 1;
}

.range-slider-box .range-input input[type="range"]::-moz-range-thumb {
  -moz-appearance: none;
  pointer-events: auto;
  z-index: 1;
}

.price-input h6 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--body-font);
}

/* ======================  Price Range Section End  ======================*/
/* ======================  Filter Section Start  ======================*/
.filter__wrap {
  position: relative;
}

.filter__main {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 11;
  background-color: hsl(var(--white));
  width: 500px;
  padding: 16px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transform: scale(0.9);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .filter__main {
    right: auto;
    width: 300px;
  }
}

.filter__main.active {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.filter__close {
  font-size: 18px;
  cursor: pointer;
  color: hsl(var(--heading-color));
  transition: 0.3s;
}

.filter__close:hover {
  color: hsl(var(--danger));
}

.filter__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.filter__topbar h5 {
  margin-bottom: 0;
}

.filter__topbar a {
  font-size: 14px;
  font-weight: 500;
}

.filter__card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.filter__form {
  border: 1px solid hsl(var(--black) / 0.08);
  border-radius: 8px;
  padding: 18px;
  max-height: 230px;
  overflow-y: auto;
}

.filter__form::-webkit-scrollbar {
  width: 4px;
}

.filter__form::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px hsl(var(--base) / 0.2);
  border-radius: 20px;
}

.filter__form::-webkit-scrollbar-thumb {
  background: hsl(var(--base) / 0.7);
  border-radius: 20px;
}

.filter__form::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--base));
}

.filter__form .form-check {
  margin-bottom: 18px;
  justify-content: space-between;
}

.filter__form .form-check:last-child {
  margin-bottom: 0;
}

.filter__range {
  border: 1px solid hsl(var(--black) / 0.08);
  border-radius: 8px;
  padding: 22px 18px 18px 18px;
}

/* ======================  Filter Section End  ======================*/
/* ================================= Background Color Css Start =========================== */
.bg--base {
  background-color: hsl(var(--base)) !important;
}

.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--white {
  background-color: hsl(var(--white)) !important;
}

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

.bg--docx {
  background-color: #1565c0 !important;
}

.bg--mobi {
  background-color: #0461a0 !important;
}

.bg--rtf {
  background-color: #20ca78 !important;
}

.bg--pdf {
  background-color: #f15642 !important;
}

.bg--zip {
  background-color: #2e98f0 !important;
}

.bg--word {
  background-color: #3771fe !important;
}

.bg--txt {
  background-color: #5153ff !important;
}

/* ================================= Background Color Css End =========================== */
/* ================================= Color Css Start =========================== */
.text--base {
  color: hsl(var(--base)) !important;
}

.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--white {
  color: hsl(var(--white)) !important;
}

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

.text--docx {
  color: #1565c0 !important;
}

.text--mobi {
  color: #0461a0 !important;
}

.text--rtf {
  color: #20ca78 !important;
}

.text--pdf {
  color: #f15642 !important;
}

.text--zip {
  color: #2e98f0 !important;
}

.text--word {
  color: #3771fe !important;
}

.text--txt {
  color: #5153ff !important;
}

/* ================================= Color Css End =========================== */
/* ================================= Margin Css Start =========================== */
.my-120 {
  margin-top: 60px;
  margin-bottom: 60px;
}

@media (min-width: 576px) {
  .my-120 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .my-120 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}

.mt-120 {
  margin-top: 60px;
}

@media (min-width: 576px) {
  .mt-120 {
    margin-top: 80px;
  }
}

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

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

@media (min-width: 576px) {
  .mb-120 {
    margin-bottom: 80px;
  }
}

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

.my-60 {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  .my-60 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .my-60 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

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

@media (min-width: 576px) {
  .mt-60 {
    margin-top: 40px;
  }
}

@media (min-width: 992px) {
  .mt-60 {
    margin-top: 60px;
  }
}

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

@media (min-width: 576px) {
  .mb-60 {
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .mb-60 {
    margin-bottom: 60px;
  }
}

/* ================================= Margin Css End =========================== */
/* ================================= Padding Css Start =========================== */
.py-120 {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 576px) {
  .py-120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

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

.pt-120 {
  padding-top: 60px;
}

@media (min-width: 576px) {
  .pt-120 {
    padding-top: 80px;
  }
}

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

.pb-120 {
  padding-bottom: 60px;
}

@media (min-width: 576px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

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

.py-60 {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 576px) {
  .py-60 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

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

@media (min-width: 576px) {
  .pt-60 {
    padding-top: 40px;
  }
}

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

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

@media (min-width: 576px) {
  .pb-60 {
    padding-bottom: 40px;
  }
}

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

.py-80 {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 576px) {
  .py-80 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.pt-80 {
  padding-top: 40px;
}

@media (min-width: 576px) {
  .pt-80 {
    padding-top: 60px;
  }
}

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

.pb-80 {
  padding-bottom: 40px;
}

@media (min-width: 576px) {
  .pb-80 {
    padding-bottom: 60px;
  }
}

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

/* ================================= Padding Css End =========================== */
/* ================================= Border Color Css Start =========================== */
.border--base {
  border-color: hsl(var(--base)) !important;
}

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

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

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

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

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

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

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

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

.border--docx {
  border-color: #1565c0 !important;
}

.border--mobi {
  border-color: #0461a0 !important;
}

.border--rtf {
  border-color: #20ca78 !important;
}

.border--pdf {
  border-color: #f15642 !important;
}

.border--zip {
  border-color: #2e98f0 !important;
}

.border--word {
  border-color: #3771fe !important;
}

.border--txt {
  border-color: #5153ff !important;
}

/* ================================= Border Color Css End =========================== */
/* =========================== Accordion Css start ============================= */
.accordion .accordion-item {
  border: 1px solid hsl(var(--base) / 0.06);
  background-color: transparent !important;
  border-radius: 8px;
  overflow: hidden;
}

.accordion .accordion-item:not(:last-child) {
  margin-bottom: 16px;
}

.accordion .accordion-header {
  line-height: 1;
}

.accordion .accordion-body {
  padding: 24px;
  background-color: hsl(var(--white));
  color: hsl(var(--body-color));
}

@media screen and (max-width: 767px) {
  .accordion .accordion-body {
    padding: 16px;
    font-size: 14px;
  }
}

.accordion:first-of-type .accordion-button.collapsed {
  border-radius: 8px;
}

.accordion:last-of-type .accordion-button.collapsed {
  border-radius: 8px;
}

.accordion .accordion-button {
  background-color: hsl(var(--white));
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 28px 24px;
  padding-right: 50px;
}

@media screen and (max-width: 767px) {
  .accordion .accordion-button {
    font-size: 16px;
    padding: 20px 16px;
    padding-right: 40px;
  }
}

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

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

.accordion .accordion-button:not(.collapsed) {
  color: hsl(var(--white));
  background-color: hsl(var(--base)) !important;
  box-shadow: none;
}

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

.accordion .accordion-button[aria-expanded="true"]::after,
.accordion .accordion-button[aria-expanded="false"]::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f068";
  display: inline-block;
  position: absolute;
  right: 15px;
  height: unset;
}

.accordion .accordion-button[aria-expanded="false"]::after {
  content: "+";
  color: hsl(var(--heading-color));
}

/* ================================= Accordion Css End =========================== */
/* ================================= Button Css Start =========================== */
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: none;
  background-color: none;
  border-color: none;
}

.pill {
  border-radius: 40px !important;
}

.btn {
  color: hsl(var(--white)) !important;
  font-weight: 700;
  padding: 18px 20px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  border: 1px solid transparent;
  font-family: var(--body-font);
  display: inline-block !important;
  font-size: 14px;
  line-height: 1;
}

@media screen and (max-width: 1199px) {
  .btn {
    font-size: 12px;
    padding: 16px 18px;
  }
}

@media screen and (max-width: 767px) {
  .btn {
    border-radius: 5px;
    padding: 14px 16px;
  }
}

.btn .fa-arrow-right {
  transform: rotate(-45deg);
  margin-left: 3px;
  transition: 0.2s;
}

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

.btn:hover .fa-arrow-right,
.btn:focus .fa-arrow-right,
.btn:focus-visible .fa-arrow-right {
  transform: rotate(0);
}

.btn:active {
  top: 1px;
}

.btn--sm {
  padding: 10px 12px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
}

@media screen and (max-width: 1199px) {
  .btn--sm {
    font-size: 12px;
  }
}

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

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

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

.btn-outline--base:hover,
.btn-outline--base:focus .btn-outline--base:focus-visible {
  background-color: hsl(var(--base)) !important;
  color: hsl(var(--white)) !important;
}

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

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

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

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

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

.btn--secondary:hover,
.btn--secondary:focus .btn--secondary:focus-visible {
  background-color: hsl(var(--secondary-d-200)) !important;
  border: 1px solid hsl(var(--secondary-d-200)) !important;
}

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

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

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

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

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

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

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

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

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

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

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

.btn--info:hover,
.btn--info:focus .btn--info:focus-visible {
  background-color: hsl(var(--info-d-200)) !important;
  border: 1px solid hsl(var(--info-d-200)) !important;
}

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

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

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

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

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

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

.btn-outline--white:hover,
.btn-outline--white:focus .btn-outline--white:focus-visible {
  background-color: hsl(var(--white)) !important;
  color: hsl(var(--heading-color)) !important;
}

/* ================================= Button Css End =========================== */
/* ================================= Card Css Start =========================== */
.card {
  padding: 24px;
  border-radius: 8px;
  background-color: hsl(var(--white));
  border: transparent;
}

@media screen and (max-width: 1199px) {
  .card {
    padding: 16px;
  }
}

.card-header {
  padding: 12px 0;
  background-color: transparent;
  border-bottom: 1px solid hsl(var(--black) / 0.06);
}

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

.card-body {
  background-color: hsl(var(--white));
  padding: 24px 0;
  border-radius: 5px;
}

.card-footer {
  padding: 12px 0;
  background-color: transparent;
  border-top: 1px solid hsl(var(--black) / 0.06);
}

/* ================================= Card Css End =========================== */
/* ================================= Form Css Start =========================== */
/* Form Label */
.form-label {
  margin-bottom: 10px;
  font-size: 14px;
  color: hsl(var(--heading-color));
  font-weight: 500;
}

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

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

/* Form Select */
.form-select {
  color: hsl(var(--heading-color)) !important;
  padding: 20px;
  border: 1px solid hsl(var(--black) / 0.04);
}

.form-select:focus {
  border-color: hsl(var(--black) / 0.2);
  color: hsl(var(--black)) !important;
  outline: 0;
  box-shadow: none;
}

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

/* Form Select End */
/* Form Control Start */
.form-control {
  border-radius: 8px;
  font-weight: 400;
  outline: none;
  width: 100%;
  padding: 20px;
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--black) / 0.04);
  color: hsl(var(--heading-color));
  line-height: 1;
}

.form-control::placeholder {
  color: hsl(var(--body-color) / 0.8);
  font-size: 16px;
}

.form-control:focus {
  background-color: hsl(var(--white));
  border-color: hsl(var(--black) / 0.1);
  box-shadow: none;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: hsl(var(--black) / 0.05);
  opacity: 1;
  border: 0;
}

.form-control[type="password"] {
  color: hsl(var(--black) / 0.5);
}

.form-control[type="password"]:focus {
  color: hsl(var(--black));
}

.form-control[type="file"] {
  padding: 15px 10px;
  position: relative;
}

.form-control[type="file"]::file-selector-button {
  padding: 10px;
  border-radius: 5px;
  background-color: hsl(var(--base)) !important;
  transition: 0.2s linear;
  position: relative;
  margin-left: 0;
  color: hsl(var(--white)) !important;
}

.form-control[type="file"]::file-selector-button:hover {
  background-color: hsl(var(--base));
  border: 1px solid hsl(var(--base));
  color: hsl(var(--black));
}

/* Form Control End */
textarea.form-control {
  height: 160px;
}

/* Autofill Css */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-text-fill-color: hsl(var(--black)) !important;
  caret-color: hsl(var(--black));
}

/* Autofill Css End */
/* input group */
.input-group {
  position: relative;
}

/* Show Hide Password */
/* Show Hide Password */
.password__input {
  position: relative;
  z-index: 1;
}

.password__input input {
  padding-right: 40px !important;
}

.password-show-hide {
  position: absolute;
  right: 12px;
  z-index: 3;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--black) / 0.4);
}

.password-show-hide .open-eye-icon {
  display: none;
}

/* --------------- Number Arrow None --------------------- */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  appearance: textfield;
}

/* Custom Checkbox Design */
.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 0;
  min-height: auto;
}

.form-check .form-check-input {
  box-shadow: none;
  background-color: transparent;
  box-shadow: none !important;
  border: 0;
  position: relative;
  border-radius: 3px;
  width: 16px;
  height: 16px;
  border: 1px solid hsl(var(--black) / 0.16);
  cursor: pointer;
  margin-left: 0;
  margin-top: 0;
  flex: 0 0 auto;
}

.form-check .form-check-input:checked {
  background-color: hsl(var(--base)) !important;
  border-color: hsl(var(--base)) !important;
  box-shadow: none;
}

.form-check .form-check-input:checked[type="checkbox"] {
  background-image: none;
}

.form-check .form-check-input:checked::before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: hsl(var(--white));
  font-size: 11px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-check .form-check-label {
  font-weight: 400;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  line-height: 1;
  color: hsl(var(--heading-color));
}

/* Custom Radio Design */
.form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 0;
}

.form-radio .form-check-input {
  box-shadow: none;
  border: 2px solid hsl(var(--black) / 0.2);
  position: relative;
  background-color: transparent;
  cursor: pointer;
  width: 16px;
  height: 16px;
  margin-left: 0;
  margin-top: 0;
}

.form-radio .form-check-input:active {
  filter: brightness(100%);
}

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

.form-radio .form-check-input:checked[type="radio"] {
  background-image: none;
}

.form-radio .form-check-input:checked::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: hsl(var(--base));
  border-radius: 50%;
  z-index: 3;
}

.form-radio .form-check-label {
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}

/*  Custom Switch Design */
.form-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 0;
}

.form-switch .form-check-input {
  border-radius: 3px;
  background-image: none;
  position: relative;
  box-shadow: none;
  border: 0;
  background-color: hsl(var(--black) / 0.2) !important;
  margin-left: 0;
  margin-top: 0;
  border-radius: 40px;
  width: 54px;
  height: 28px;
  cursor: pointer;
}

.form-switch .form-check-input:focus {
  border-radius: 40px;
  background-image: none;
  position: relative;
  box-shadow: none;
  border: 0;
}

.form-switch .form-check-input::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  background-color: hsl(var(--white));
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  border-radius: 50%;
  transition: 0.2s linear;
}

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

.form-switch .form-check-input:checked::before {
  left: calc(100% - 26px);
  background-color: hsl(var(--white)) !important;
}

.form-switch .form-check-input:checked[type="checkbox"] {
  background-image: none;
}

.form-switch .form-check-label {
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}

/*  Custom Switch End Design */
/* ================================= Form Css End =========================== */
/* --======================Custom Input group Start ======================*/
.input-group {
  border-radius: 8px;
  border: 1px solid hsl(var(--black) / 0.04);
}

.input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group .form-control {
  border-width: 0px !important;
  padding-right: 10px;
  box-shadow: unset;
}

.input-group .form-control:focus {
  border: none !important;
}

.input-group .input-group-text+.form-control {
  padding-right: 20px;
  padding-left: 10px;
}

.input-group:focus-within {
  border: 1px solid hsl(var(--black) / 0.1);
}

.input-group .input-group-text {
  padding: 13px;
  border-width: 0px;
  border-radius: 8px;
  background-color: hsl(var(--base));
  color: hsl(var(--white));
}

.input-group .form-control[readonly] {
  background: hsl(var(--black) / 0.05) !important;
}

.input-group .form-control[readonly]:focus {
  border-color: hsl(var(--black) / 0.3);
}

.input-group:has(.form-control[readonly]) {
  background: hsl(var(--black) / 0.05) !important;
}

.input-group:has(.form-control[readonly]):focus-within {
  border-color: hsl(var(--black) / 0.4) !important;
}

/* --======================Custom Input group End ======================*/
/* ================================= Modal Css Start =========================== */
.modal-header {
  border-bottom: 1px solid hsl(var(--black) / 0.06);
  padding: 15px;
}

.modal-header .close {
  width: 28px;
  height: 28px;
  background-color: hsl(var(--black) / 0.1);
  font-size: 16px;
  border-radius: 50%;
  color: hsl(var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.modal-header .close:hover {
  background-color: hsl(var(--danger));
  color: hsl(var(--white));
}

.modal-content {
  border-radius: 10px !important;
  background-color: hsl(var(--white));
}

.modal-body {
  padding: 15px;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-top: 1px solid hsl(var(--black) / 0.06);
  justify-content: flex-end;
}

/* ================================= Modal Css End =========================== */
/* ================================= Pagination Css Start =========================== */
.pagination {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}

@media screen and (max-width: 1199px) {
  .pagination {
    margin-top: 48px;
  }
}

@media screen and (max-width: 991px) {
  .pagination {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 32px;
  }
}

.pagination .page-item.active .page-link {
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  border-color: hsl(var(--base));
}

.pagination .page-item.disabled .page-link {
  color: hsl(var(--heading-color) / 0.4);
}

.pagination .page-item .page-link {
  border: 1px solid hsl(var(--black) / 0.08);
  border-radius: 4px;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-weight: 500;
  padding: 0;
  color: hsl(var(--heading-color));
}

.pagination .page-item .page-link:hover {
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  border-color: hsl(var(--base));
}

.pagination .page-item .page-link:focus {
  box-shadow: none;
}

/* ================================= Pagination Css End =========================== */
/* ================================= Table Css Start =========================== */
/* Table Content Css start */
.table__pt {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media screen and (max-width: 1199px) {
  .table__pt {
    gap: 12px;
  }
}

.table__pt img {
  width: 60px;
  border-radius: 6px;
}

@media screen and (max-width: 767px) {
  .table__pt img {
    width: 40px;
  }
}

.table__pt h5 {
  font-size: 18px;
  margin-bottom: 2px;
  font-weight: 600;
}

.table__pt p {
  font-size: 12px;
  font-weight: 500;
}

.action__btn {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
}

.action__btn .btn {
  padding: 14px;
  font-size: 14px;
}

@media screen and (max-width: 1199px) {
  .action__btn .btn {
    padding: 12px;
    font-size: 12px;
  }
}

/* Table Content Css end */
/* Table Css Start */
.table {
  margin: 0;
  border-collapse: collapse;
  border-collapse: separate;
  border-spacing: 0px 8px;
}

.table thead tr th {
  text-align: center;
  padding: 16px;
  color: hsl(var(--white));
  font-family: var(--heading-font);
  font-weight: 500;
  border-bottom: 0;
  max-width: 170px;
  font-size: 16px;
  border: none;
  background-color: hsl(var(--base));
}

@media screen and (max-width: 1199px) {
  .table thead tr th {
    font-size: 14px;
    padding: 12px;
  }
}

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

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

.table tbody {
  border: 0 !important;
  background-color: hsl(var(--white));
}

.table tbody tr td {
  text-align: center;
  vertical-align: middle;
  padding: 16px;
  font-family: var(--heading-font);
  color: hsl(var(--body-color));
  font-weight: 500;
  max-width: 170px;
  font-size: 16px;
  border: none;
  background-color: hsl(var(--black) / 0.03);
}

@media screen and (max-width: 1199px) {
  .table tbody tr td {
    font-size: 14px;
    padding: 12px;
  }
}

.table tbody tr td::before {
  content: attr(data-label);
  font-family: var(--heading-font);
  font-size: 15px;
  color: hsl(var(--black));
  font-weight: 500;
  display: none;
  width: 45% !important;
  text-align: left;
}

.table tbody tr td:first-child {
  text-align: left;
  border-radius: 8px;
}

.table tbody tr td:last-child {
  text-align: right;
  border-radius: 8px;
}

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

  .table--responsive--sm .table__pt {
    flex-direction: row-reverse;
  }

  .table--responsive--sm tbody tr {
    display: block;
    margin-bottom: 5px;
  }

  .table--responsive--sm tbody tr:last-child td {
    border-bottom: 0;
  }

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

  .table--responsive--sm tbody tr td:last-child {
    border: none;
    border-radius: 0;
  }

  .table--responsive--sm tbody tr td:first-child {
    text-align: right;
    border-left: 0;
    border-radius: 0;
  }

  .table--responsive--sm tbody tr td::before {
    display: block;
    font-size: 14px;
    color: hsl(var(--black) / 0.7);
  }
}

@media screen and (max-width: 767px) {
  .table--responsive--sm tbody tr td {
    border: 0;
  }
}

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

  .table--responsive--md .table__pt {
    flex-direction: row-reverse;
  }

  .table--responsive--md tbody tr {
    display: block;
    margin-bottom: 5px;
  }

  .table--responsive--md tbody tr:nth-child(even) {
    background-color: hsl(var(--black) / 0.02);
  }

  .table--responsive--md tbody tr:last-child td {
    border-bottom: 0;
  }

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

  .table--responsive--md tbody tr td:last-child {
    border: none;
    border-radius: 0;
  }

  .table--responsive--md tbody tr td:first-child {
    text-align: right;
    border-left: 0;
    border-radius: 0;
  }

  .table--responsive--md tbody tr td::before {
    display: block;
    font-size: 14px;
    color: hsl(var(--black) / 0.7);
  }
}

@media screen and (max-width: 991px) {
  .table--responsive--md tbody tr td {
    border: none;
  }
}

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

  .table--responsive--lg .table__pt {
    flex-direction: row-reverse;
  }

  .table--responsive--lg tbody tr {
    display: block;
    margin-bottom: 5px;
  }

  .table--responsive--lg tbody tr:nth-child(even) {
    background-color: hsl(var(--black) / 0.02);
  }

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

  .table--responsive--lg tbody tr td:last-child {
    border: none;
    border-radius: 0;
  }

  .table--responsive--lg tbody tr td:first-child {
    text-align: right;
    border-left: 0;
    border-radius: 0;
  }

  .table--responsive--lg tbody tr td::before {
    display: block;
    font-size: 14px;
    color: hsl(var(--black) / 0.7);
  }
}

@media screen and (max-width: 1199px) {
  .table--responsive--lg tbody tr td {
    border: 0;
  }
}

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

  .table--responsive--xl .table__pt {
    flex-direction: row-reverse;
  }

  .table--responsive--xl tbody tr {
    display: block;
    margin-bottom: 5px;
  }

  .table--responsive--xl tbody tr:last-child td {
    border-bottom: 0;
  }

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

  .table--responsive--xl tbody tr td:last-child {
    border: none;
    border-radius: 0;
  }

  .table--responsive--xl tbody tr td:first-child {
    text-align: right;
    border-left: 0;
    border-radius: 0;
  }

  .table--responsive--xl tbody tr td::before {
    display: block;
    font-size: 14px;
    color: hsl(var(--black) / 0.7);
  }
}

@media screen and (max-width: 1399px) {
  .table--responsive--xl tbody tr td {
    border: 0;
  }
}

/* ================================= Table Css End =========================== */
/* ================================= Tab Css Start =========================== */
.custom--tab {
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 40px;
}

.custom--tab .nav-item {
  border-bottom: 0;
  padding: 5px;
}

.custom--tab .nav-item .nav-link {
  color: hsl(var(--heading-color));
  padding: 8px 25px;
  background-color: transparent !important;
  border-radius: 5px;
  transition: 0.4s;
  border: 1px solid hsl(var(--black) / 0.08) !important;
}

@media screen and (max-width: 1199px) {
  .custom--tab .nav-item .nav-link {
    padding: 12px 15px;
  }
}

.custom--tab .nav-item .nav-link.active {
  color: hsl(var(--white));
  background-color: hsl(var(--base-d-200)) !important;
  border: 1px solid transparent !important;
}

.custom--tab .nav-item .nav-link.active:hover {
  color: hsl(var(--white));
}

.custom--tab .nav-item .nav-link:hover {
  color: hsl(var(--base));
}

.custom--tab .nav-item #pills-disabled-tab.nav-link {
  background-color: hsl(var(--black) / 0.04) !important;
  color: hsl(var(--heading-color) / 0.6);
}

/* ================================= Tab Css End =========================== */
/* ================================= Badge Css Start =========================== */
.badge {
  font-size: 0.75rem;
  border-radius: 5px;
  padding: 8px 10px;
  font-weight: 500;
  position: relative;
  text-align: center;
}

.badge--base {
  background-color: hsl(var(--base) / 0.1) !important;
  color: hsl(var(--base)) !important;
}

.badge--primary {
  background-color: hsl(var(--primary) / 0.1) !important;
  color: hsl(var(--primary)) !important;
}

.badge--secondary {
  background-color: hsl(var(--secondary) / 0.1) !important;
  color: hsl(var(--secondary)) !important;
}

.badge--success {
  background-color: hsl(var(--success) / 0.1) !important;
  color: hsl(var(--success)) !important;
}

.badge--danger {
  background-color: hsl(var(--danger) / 0.1) !important;
  color: hsl(var(--danger)) !important;
}

.badge--warning {
  background-color: hsl(var(--warning) / 0.1) !important;
  color: hsl(var(--warning)) !important;
}

.badge--info {
  background-color: hsl(var(--info) / 0.1) !important;
  color: hsl(var(--info)) !important;
}

/* ================================= Badge Css End =========================== */
/* ====================================== Alert Css Start =============================== */
.alert {
  margin-bottom: 0;
  background-color: hsl(var(--white));
  font-weight: 400;
  padding: 17px 24px;
  border-radius: 5px;
}

@media screen and (max-width: 991px) {
  .alert {
    padding: 16px;
  }
}

@media screen and (max-width: 575px) {
  .alert {
    padding: 12px;
  }
}

.alert__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.alert__content {
  width: calc(100% - 24px);
  padding-left: 32px;
}

@media screen and (max-width: 991px) {
  .alert__content {
    padding-left: 16px;
  }
}

@media screen and (max-width: 575px) {
  .alert__content {
    padding-left: 0;
    width: 100%;
    margin-top: 6px;
  }
}

.alert__title {
  font-size: 16px;
  color: hsl(var(--base-two) / 0.8);
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 6px;
}

.alert__desc {
  color: hsl(var(--base-two) / 0.5);
  display: block;
  line-height: 1.375;
}

@media screen and (max-width: 424px) {
  .alert__desc {
    font-size: 13px;
  }
}

.alert__link {
  position: relative;
}

.alert__link:hover::before {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}

.alert__link::before {
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: hsl(var(--base));
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.alert--base {
  border-color: hsl(var(--base) / 0.6);
  color: hsl(var(--base));
}

.alert--base .alert__icon {
  color: hsl(var(--base));
}

.alert--primary {
  border-color: hsl(var(--primary) / 0.6);
  color: hsl(var(--primary));
}

.alert--primary .alert__icon {
  color: hsl(var(--primary));
}

.alert--success {
  border-color: hsl(var(--success) / 0.6);
  color: hsl(var(--success));
}

.alert--success .alert__icon {
  color: hsl(var(--success));
}

.alert--info {
  border-color: hsl(var(--info) / 0.6);
  color: hsl(var(--info));
}

.alert--info .alert__icon {
  color: hsl(var(--info));
}

.alert--danger {
  border-color: hsl(var(--danger) / 0.6);
  color: hsl(var(--danger));
}

.alert--danger .alert__icon {
  color: hsl(var(--danger));
}

.alert--warning {
  border-color: hsl(var(--warning) / 0.6);
  color: hsl(var(--warning));
}

.alert--warning .alert__icon {
  color: hsl(var(--warning));
}

.alert--secondary {
  border-color: hsl(var(--secondary) / 0.6);
  color: hsl(var(--secondary));
}

.alert--secondary .alert__icon {
  color: hsl(var(--secondary));
}

/* ====================================== Alert Css End =============================== */
/* ======================  Dropdown Section Start  ======================*/
.dropdown .dropdown-toggle {
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .dropdown .dropdown-toggle {
    font-size: 14px;
  }
}

.dropdown .dropdown-toggle::after {
  margin-left: 2px;
  vertical-align: 2px;
  border-top: 5px solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  transition: 0.3s;
}

.dropdown .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.dropdown .dropdown-menu {
  min-width: 9rem;
  padding: 12px;
  font-size: 14px;
  color: hsl(var(--heading-color));
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--black) / 0.02);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.dropdown .dropdown-item {
  padding: 8px 16px;
  color: hsl(var(--heading-color));
  border-radius: 4px;
}

.dropdown .dropdown-item.active,
.dropdown .dropdown-item:active {
  color: hsl(var(--body-color)) !important;
  background-color: hsl(var(--base) / 0.2);
  font-weight: 500;
}

.dropdown .dropdown-item:focus,
.dropdown .dropdown-item:hover {
  color: hsl(var(--body-color)) !important;
  background-color: hsl(var(--base) / 0.2);
}

/* ======================  Dropdown Section End  ======================*/
/* ================================= Preloader Css Start =========================== */
.preloader {
  position: fixed;
  z-index: 999999;
  background-color: hsl(var(--body-bg));
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader .loader__text {
  width: fit-content;
  font-weight: 600;
  font-family: var(--heading-font);
  letter-spacing: 2px;
  font-size: 40px;
  background: radial-gradient(circle closest-side,
      hsl(var(--base)) 94%,
      transparent) right/calc(200% - 1em) 100%;
  animation: loader__circle 1s infinite alternate linear;
}

@media screen and (max-width: 575px) {
  .preloader .loader__text {
    font-size: 1.875rem;
  }
}

.preloader .loader__text::before {
  content: attr(data-text);
  line-height: 1em;
  color: transparent;
  background: inherit;
  background-image: radial-gradient(circle closest-side,
      hsl(var(--white)) 94%,
      hsl(var(--black) / 0.1));
  -webkit-background-clip: text;
  background-clip: text;
}

@keyframes loader__circle {
  100% {
    background-position: left;
  }
}

/* ================================= Preloader Css End ===========================  */
/* ======================  Offcanvas Section Start  ======================*/
.offcanvas__area {
  position: fixed !important;
  left: -100%;
  height: 100%;
  width: 18.75rem;
  padding: 1.25rem;
  padding-right: 0 !important;
  background-color: hsl(var(--white));
  border-right: 0.0625rem solid hsl(var(--black) / 0.03);
  z-index: 15 !important;
  transition: 0.4s;
  visibility: hidden;
  top: 0;
  overflow: hidden;
}

.offcanvas__area.active {
  left: 0;
  visibility: visible;
}

.offcanvas__area .offcanvas__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.offcanvas__area .offcanvas__topbar a img {
  width: 160px;
}

.offcanvas__area .offcanvas__topbar .menu__close {
  cursor: pointer;
  color: hsl(var(--body-color));
  font-size: 26px;
  transition: 0.3s;
}

.offcanvas__area .offcanvas__topbar .menu__close:hover {
  color: hsl(var(--danger));
}

.offcanvas__area .offcanvas__search {
  display: none;
  margin-bottom: 16px;
}

@media screen and (max-width: 575px) {
  .offcanvas__area .offcanvas__search {
    display: block;
  }
}

.offcanvas__sub {
  padding-left: 20px;
}

.offcanvas__area .offcanvas__search .header__search {
  display: block !important;
}

.offcanvas__area .offcanvas__search .header__search input {
  max-width: 100% !important;
  width: 100%;
}

.offcanvas__area .offcanvas__main {
  overflow-y: auto;
  height: 100%;
  scrollbar-width: thin;
  padding-right: 1.25rem;
  padding-bottom: 3.75rem;
}

.offcanvas__area .offcanvas__main .offcanvas__menu ul li a {
  font-size: 1rem;
  border-bottom: 1px solid hsl(var(--black) / 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: hsl(var(--heading-color));
  padding: 14px 0;
  transition: 0.3s;
}

.offcanvas__area .offcanvas__main .offcanvas__menu ul li a i {
  transition: 0.3s;
}

.offcanvas__area .offcanvas__main .offcanvas__menu ul li a[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.offcanvas__area .offcanvas__main .offcanvas__menu ul li a:hover,
.offcanvas__area .offcanvas__main .offcanvas__menu ul li a.active {
  border-color: hsl(var(--base) / 0.5);
  color: hsl(var(--base));
  font-weight: 600;
}

/* ======================  Offcanvas Section End  ======================*/
/* ======================  Header Start Here  ======================*/
.header__area {
  background-color: hsl(var(--white));
  position: relative;
  z-index: 5;
}

.header__area.header__transparent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  background-color: transparent !important;
}

.header__area.fixed-header {
  background-color: hsl(var(--white)) !important;
  position: fixed;
  top: 0px;
  animation: slide-down 0.8s;
  width: 100%;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16);
  padding: 0px;
  z-index: 99;
  border-bottom: 1px solid hsl(var(--black) / 0.1);
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-150%);
  }

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

.header__area .header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 18px 0px;
}

@media screen and (max-width: 991px) {
  .header__area .header__main {
    padding: 10px 0;
  }
}

.header__area .header__main .menu__open {
  font-size: 1.375rem;
  color: hsl(var(--heading-color));
  cursor: pointer;
  transition: 0.3s;
  display: none;
}

@media screen and (max-width: 991px) {
  .header__area .header__main .menu__open {
    display: block;
  }
}

.header__area .header__main .menu__open:hover {
  color: hsl(var(--base));
}

.header__area .header__logo a img {
  max-width: 160px;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .header__area .header__logo a img {
    max-width: 140px;
  }
}

@media screen and (max-width: 991px) {
  .header__area .header__menu {
    display: none;
  }
}

.header__area .header__menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
}

@media screen and (max-width: 1199px) {
  .header__area .header__menu ul {
    gap: 1.25rem;
  }
}

.header__area .header__menu ul li a {
  color: hsl(var(--heading-color));
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}

.header__area .header__menu ul li a i {
  font-size: 14px;
  transition: 0.3s;
}

.header__area .header__menu ul li:hover a i {
  transform: rotate(180deg);
}

.header__area .header__menu ul li a:hover,
.header__area .header__menu ul li a.active {
  color: hsl(var(--base));
}

@media screen and (max-width: 1199px) {
  .header__area .header__menu ul li a {
    font-size: 14px;
  }
}

.header__area .header__menu ul li {
  padding: 10px 0;
  position: relative;
  z-index: 1;
}

.sub__menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  background-color: hsl(var(--white));
  flex-direction: column;
  white-space: nowrap;
  gap: 0 !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: scale(0.95);
}

.header__area .header__menu ul li:hover .sub__menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.sub__menu li {
  padding: 0 !important;
  width: 100%;
}

.sub__menu li a {
  display: block;
  padding: 8px 20px;
  border-bottom: 1px solid hsl(var(--border-color) / 0.4);
}

.sub__menu li:last-child a {
  border-bottom: none;
}

.sub__menu li a:hover {
  background-color: hsl(var(--base)) !important;
  color: hsl(var(--white)) !important;
}

.header__area .header__topbar {
  background-color: hsl(var(--heading-color));
  padding: 16px 0;
}

@media screen and (max-width: 991px) {
  .header__area .header__topbar {
    padding: 10px 0;
  }
}

.header__area .header__topbar__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

@media screen and (max-width: 575px) {
  .header__area .header__topbar__wrap {
    justify-content: center;
    flex-direction: column;
  }
}

.header__area .header__topbar__wrap>a {
  color: hsl(var(--white));
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .header__area .header__topbar__wrap>a {
    font-size: 14px;
  }
}

.header__area .header__topbar__wrap>a:hover {
  color: hsl(var(--base));
}

.header__area .header__topbar__wrap>a i {
  color: hsl(var(--warning));
}

.header__area .header__widgets {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

@media screen and (max-width: 991px) {
  .header__area .header__widgets {
    gap: 20px;
  }
}

.header__area .header__login>a {
  color: hsl(var(--white));
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media screen and (max-width: 991px) {
  .header__area .header__login>a {
    font-size: 14px;
  }
}

.header__area .header__login>a i {
  font-size: 14px;
}

@media screen and (max-width: 991px) {
  .header__area .header__login>a i {
    font-size: 12px;
  }
}

.header__search {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 575px) {
  .header__search {
    display: none;
  }
}

.search__icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 16px;
  color: hsl(var(--heading-color));
}

.header__search input {
  padding: 12px 16px;
  padding-right: 40px;
  border-radius: 6px;
  background-color: hsl(var(--white) / 0.3);
  backdrop-filter: blur(2px);
  max-width: 250px;
}

.language button {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1199px) {
  .header__search input {
    max-width: 190px;
  }
}

@media screen and (max-width: 991px) {
  .language button {
    font-size: 14px;
  }
}

.language button img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: 0 0 auto;
  object-fit: cover;
  margin-right: 5px;
}

.language button.dropdown-toggle::after {
  margin-left: 6px;
}

.language .dropdown-item {
  display: flex;
  align-items: center;
}

.language .dropdown-item img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: 0 0 auto;
  object-fit: cover;
  margin-right: 5px;
}

/* ======================  Header End Here  ======================*/
/* ======================  Footer Section Start  ======================*/
.footer__area {
  background-color: hsl(var(--heading-color));
  padding-top: 80px;
}

.footer__about a {
  display: block;
  margin-bottom: 16px;
}

.footer__about a img {
  max-width: 150px;
  width: 100%;
}

.footer__about p {
  color: hsl(var(--white) / 0.8);
  margin-bottom: 40px;
}

@media screen and (max-width: 1199px) {
  .footer__about p {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer__about p {
    max-width: 400px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 1199px) {
  .footer__single {
    margin-bottom: 20px;
  }
}

.footer__single h5 {
  color: hsl(var(--white));
  margin-bottom: 24px;
}

.footer__single ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__single ul li a {
  color: hsl(var(--white));
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
}

.footer__single ul li a i {
  color: hsl(var(--base));
  transform: rotate(-45deg);
  transition: 0.3s;
}

.footer__single ul li a:hover i {
  transform: rotate(0);
}

.footer__single p {
  color: hsl(var(--white) / 0.8);
}

.footer__newsletter {
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.footer__newsletter input {
  padding: 14px 16px;
  padding-right: 40px;
  border-radius: 6px;
  background-color: hsl(var(--white) / 0.08);
  border-color: hsl(var(--white) / 0.15);
  color: hsl(var(--white));
  max-width: 100%;
  width: 100%;
}

.footer__newsletter input::placeholder {
  color: hsl(var(--white) / 0.6);
  font-size: 16px;
}

.footer__newsletter input:focus {
  background-color: hsl(var(--white) / 0.08);
  border-color: hsl(var(--white) / 0.2);
  color: hsl(var(--white));
}

.footer__newsletter button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: 0.3s;
  color: hsl(var(--base));
}

.footer__newsletter button i {
  transition: 0.3s;
}

.footer__newsletter button:hover {
  color: hsl(var(--white));
}

.footer__newsletter button:hover i {
  transform: rotate(45deg);
}

.footer__about {
  padding-right: 30px;
}

@media screen and (max-width: 1199px) {
  .footer__about {
    padding-right: 16px;
  }
}

@media screen and (max-width: 767px) {
  .footer__about {
    text-align: center;
    padding-right: 0;
  }

  .footer__about .social__icon {
    justify-content: center;
  }
}

.footer__copyright {
  margin-top: 100px;
  padding-top: 24px;
  padding-bottom: 28px;
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: 12px;
  border-top: 1px solid hsl(var(--white) / 0.08);
}

@media screen and (max-width: 1199px) {
  .footer__copyright {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 40px;
  }
}

.footer__copyright p {
  color: hsl(var(--white));
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .footer__copyright p {
    font-size: 14px;
  }
}

.footer__copyright::after {
  position: absolute;
  left: 0;
  top: -1px;
  width: 80px;
  height: 1px;
  content: "";
  background-color: hsl(var(--base));
  z-index: 1;
  transition: 0.3s;
  animation: lineAnimation 30s linear 0s infinite alternate none;
}

@media screen and (max-width: 991px) {
  .footer__copyright::after {
    animation: lineAnimation 20s linear 0s infinite alternate none;
  }
}

@keyframes lineAnimation {
  0% {
    left: 0;
  }

  100% {
    left: calc(100% - 80px);
  }
}

/* ======================  Footer Section End  ======================*/
/* ===================== Scroll to Top Start ================================= */
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  color: hsl(var(--white));
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 5;
  transition: 0.5s;
  cursor: pointer;
  transform: scale(0);
  background-color: hsl(var(--base));
}

.scroll-top:hover {
  color: hsl(var(--white));
  background-color: hsl(var(--base-d-100));
}

.scroll-top.show {
  transform: scale(1);
}

/* ===================== Scroll to Top End ================================= */
/* ================================= Template Selection Css Start =========================== */
::selection {
  color: hsl(var(--white));
  background: hsl(var(--base-d-100));
}

/* ================================= Template Selection Css End ===========================  */
/* ======================  Social Icon Section Start  ======================*/
.social__icon {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media screen and (max-width: 991px) {
  .social__icon {
    gap: 6px;
  }
}

.social__icon.dark__social li a {
  background-color: hsl(var(--white) / 0.15);
  color: hsl(var(--white));
}

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

.social__icon li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(var(--base) / 0.1);
  color: hsl(var(--body-color));
  border-radius: 8px;
  transition: 0.3s;
  font-size: 14px;
}

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

/* ======================  Social Icon Section End  ======================*/
/* ====================== Breadcrumb Css Start ==================== */
.breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
  padding-top: 40px;
}

.breadcrumb__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px solid hsl(var(--black) / 0.04);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 575px) {
  .breadcrumb__wrapper {
    flex-direction: column;
  }
}

.breadcrumb__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  color: hsl(var(--heading-color));
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb__item {
  color: hsl(var(--heading-color));
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 575px) {
  .breadcrumb__item {
    font-size: 14px;
  }
}

.breadcrumb__item-text {
  color: hsl(var(--heading-color));
}

.breadcrumb__link {
  color: hsl(var(--heading-color));
  font-weight: 400;
}

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

/* ====================== Breadcrumb Css End ==================== */
/* ======================  Star Rating Section Start  ======================*/
.star__rating {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  list-style: none !important;

  p {
    line-height: 0;
  }
}

.star__rating li {
  font-size: 14px;
  color: hsl(var(--body-color));
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2px;
}

.star__rating li i {
  color: hsl(var(--warning));
  font-size: 13px;
}

/* ======================  Star Rating Section End  ======================*/
/* ======================  Odometer Section Start  ======================*/
.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default .odometer-digit {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  display: inline-block;
  vertical-align: middle;
  visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
  display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
  display: block;
  visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
  display: block;
  transform: translateZ(0);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
  position: absolute;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
  transition: transform 2s;
}

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  transition: transform 2s;
  transform: translateY(0);
}

.odometer.odometer-auto-theme .odometer-value,
.odometer.odometer-theme-default .odometer-value {
  text-align: center;
}

/* ======================  Odometer Section End  ======================*/
/* ======================  Select2 Section Start  ======================*/
.select2.select2-container {
  width: 100% !important;
}

.select2.select2-container .selection {
  width: 100%;
}

.select2-container--default .select2-selection--single {
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--black) / 0.04);
  border-radius: 8px;
  height: auto;
  padding: 16px 30px 16px 14px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 0;
  padding-right: 0;
  line-height: normal;
  color: hsl(var(--heading-color));
  font-size: 14px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow::after {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  content: "\f107";
  font-family: "Line Awesome Free";
  font-size: 14px;
  color: hsl(var(--heading-color));
  font-weight: 900;
  transition: 0.3s;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow::after {
  transform: translateY(-50%) rotate(-180deg);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-dropdown {
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--black) / 0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.select2-search--dropdown {
  padding: 6px;
}

.select2-search--dropdown .select2-search__field {
  padding: 8px 12px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  border: 1px solid hsl(var(--black) / 0.1);
  background-color: hsl(var(--white) / 0.2);
}

.select2-results__option {
  padding: 10px 14px;
  user-select: none;
  background-color: transparent;
  border-bottom: 1px solid hsl(var(--black) / 0.08);
  font-size: 14px;
}

.select2-results__option:last-child {
  border-bottom: none;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 5px;
  border-radius: 20px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px hsl(var(--base) / 0.2);
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  background: hsl(var(--base) / 0.7);
  border-radius: 20px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--base));
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: hsl(var(--base));
  border-color: hsl(var(--base));
  color: hsl(var(--white));
}

.select2-container--default .select2-results__option--selected {
  background-color: hsl(var(--base) / 0.1);
  border-color: hsl(var(--base) / 0.1);
}

.select2-results__option.select2-results__message {
  text-align: center;
}

/* ======================  Select2 Section End  ======================*/
/* ======================  Hero Section Start  ======================*/
.hero__area {
  padding-top: 258px;
  background-color: hsl(var(--black) / 0.02);
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  .hero__area {
    padding-top: 220px;
  }
}

@media screen and (max-width: 991px) {
  .hero__area {
    padding-top: 180px;
  }
}

.hero__sp {
  position: absolute;
  left: 8%;
  bottom: 3%;
  z-index: -1;
  user-select: none;
  pointer-events: none;
  max-width: 300px;
  animation: hero-sp 2s linear 0s infinite alternate none;
}

@media screen and (max-width: 1199px) {
  .hero__sp {
    max-width: 250px;
    left: 4%;
  }
}

@media screen and (max-width: 991px) {
  .hero__sp {
    max-width: 200px;
    left: 1%;
  }
}

@media screen and (max-width: 767px) {
  .hero__sp {
    display: none;
  }
}

.hero__sp.sp-2 {
  left: auto;
  right: 8%;
  animation: hero-sp2 2s linear 0s infinite alternate none !important;
}

@media screen and (max-width: 1199px) {
  .hero__sp.sp-2 {
    right: 4%;
  }
}

@media screen and (max-width: 991px) {
  .hero__sp.sp-2 {
    right: 1%;
  }
}

@keyframes hero-sp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

@keyframes hero-sp2 {
  0% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.hero__main {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.hero__content span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 22px;
  line-height: 1;
}

@media screen and (max-width: 1199px) {
  .hero__content span {
    font-size: 14px;
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 767px) {
  .hero__content span {
    margin-bottom: 14px;
  }
}

.hero__content h1 {
  margin-bottom: 24px;
}

@media screen and (max-width: 1199px) {
  .hero__content h1 {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 991px) {
  .hero__content h1 {
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 575px) {
  .hero__content h1 {
    margin-bottom: 8px;
  }
}

.hero__content p {
  font-size: 18px;
  font-weight: 500;
  max-width: 76%;
  margin-inline: auto;
}

@media screen and (max-width: 1199px) {
  .hero__content p {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .hero__content p {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .hero__content p {
    max-width: 100%;
  }
}

.hero__content {
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .hero__content {
    margin-bottom: 20px;
  }
}

.hero__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__files {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

@media screen and (max-width: 1199px) {
  .hero__files {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .hero__files {
    margin-top: 30px;
    gap: 10px;
  }
}

.hero__files img {
  max-width: 32px;
  width: 100%;
}

/* ======================  Hero Section End  ======================*/
/* ======================  Feature Section Start  ======================*/
@media screen and (max-width: 767px) {

  .feature__area .g-4,
  .feature__area .gy-4 {
    --bs-gutter-y: 0.9rem;
  }

  .feature__area .g-4,
  .feature__area .gx-4 {
    --bs-gutter-x: 0.9rem;
  }
}

.product__card {
  transition: 0.3s;
  border-radius: 12px;
}

.product__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 10px hsl(var(--base) / 0.15);
}

.product__img a {
  display: block;
  width: 100%;
  height: 100%;
}

.product__img {
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.product__img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__content {
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--black) / 0.07);
  padding: 16px;
  padding-top: 24px;
  border-radius: 0 0 12px 12px;
}

.file__type {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  margin-bottom: 10px;
}

.file__type img {
  flex: 0 0 auto;
  width: 100%;
  max-width: 16px;
}

.product__title {
  display: block;
  font-weight: 500;
  margin-bottom: 0px;
}

.product__title a {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.product__author {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
  color: hsl(var(--body-color));
}

.product__author a {
  color: hsl(var(--body-color));
}

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

.product__bottombar {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.product__bottombar h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.product__bottombar p {
  font-size: 14px;
  font-weight: 400;
}

.download__product a {
  position: relative;
  z-index: 1;
}

.progress-circle {
  width: 34px;
  height: 34px;
  transform: rotate(-90deg);
}

.progress-circle path {
  fill: none;
  stroke-width: 3;
}

.progress-circle .bg__dw {
  stroke: hsl(var(--base) / 0.12);
}

.progress-circle .progress {
  stroke: hsl(var(--base));
  transition: stroke-dasharray 0.1s ease;
}

.downloadBtn.active .progress-circle .progress {
  stroke-linecap: round;
}

.download__product .icon {
  font-size: 14px;
  color: hsl(var(--body-color));
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  line-height: 1;
}

.downloadBtn.active .icon {
  color: hsl(var(--base));
}

/* ======================  Feature Section End  ======================*/
/* ======================  Cta Section Start  ======================*/
.cta__wrap {
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
  padding: 60px;
  place-items: center;
}

@media screen and (max-width: 991px) {
  .cta__wrap {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .cta__wrap {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .cta__content {
    text-align: center;
  }
}

.cta__content span {
  font-size: 20px;
  font-weight: 500;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}

@media screen and (max-width: 1399px) {
  .cta__content span {
    font-size: 18px;
  }
}

@media screen and (max-width: 1199px) {
  .cta__content span {
    font-size: 16px;
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 991px) {
  .cta__content span {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.cta__content h2 {
  font-size: 60px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1399px) {
  .cta__content h2 {
    font-size: 56px;
  }
}

@media screen and (max-width: 1199px) {
  .cta__content h2 {
    font-size: 44px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 991px) {
  .cta__content h2 {
    font-size: 38px;
  }
}

@media screen and (max-width: 575px) {
  .cta__content h2 {
    font-size: 32px;
  }
}

.cta__img img {
  width: 90%;
}

@media screen and (max-width: 767px) {
  .cta__img img {
    width: 80%;
  }
}

.cta__img {
  text-align: end;
}

@media screen and (max-width: 767px) {
  .cta__img {
    text-align: center;
    background-color: hsl(var(--white));
    padding: 20px;
    border-radius: 10px;
  }
}

.cta__wrap::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 101%;
  z-index: -1;
  content: "";
  background-color: hsl(var(--white));
  mask-image: url(../../default/images/cta-mask.png);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

@media screen and (max-width: 767px) {
  .cta__wrap::after {
    display: none;
  }
}

/* ======================  Cta Section End  ======================*/
/* ======================  Products Section Start  ======================*/
.products__filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .products__filter {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}

.products__filter ul {
  display: flex;
  flex-wrap: wrap;
}

.products__filter ul li a {
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--body-color));
  padding: 14px 16px;
  line-height: 1;
  border: 1px solid hsl(var(--black) / 0.12);
  margin-left: -1px;
  margin-bottom: -1px;
}

.products__filter ul li:first-child a {
  border-radius: 4px 0 0 4px;
}

.products__filter ul li:last-child a {
  border-radius: 0 4px 4px 0;
}

.products__filter ul li a.active {
  background-color: hsl(var(--base));
  color: hsl(var(--white)) !important;
  border-color: hsl(var(--base));
}

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

.products__filter .filter__btn {
  padding: 14px 16px;
  border-radius: 4px;
}

.products__filter .filter__btn i {
  margin-right: 4px;
}

/* ======================  Products Section End  ======================*/
/* ======================  Product Details Section Start  ======================*/
.product__member__main {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .product__member__main {
    margin-bottom: 16px;
  }
}

.product__member__main img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 50%;
}

.product__member__main h5 {
  margin-bottom: 6px;
  line-height: 1;
}

.product__member__main p {
  line-height: 1;
  font-size: 14px;
}

.product__member .btn.btn--base {
  background-color: hsl(var(--base) / 0.22) !important;
  border-color: transparent !important;
  color: hsl(var(--base)) !important;
}

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

.product__info .form-radio {
  margin-bottom: 10px;
}

.product__info .form-radio .form-check-input {
  width: 20px;
  height: 20px;
}

.product__info .form-radio .form-check-input:checked::before {
  width: 10px;
  height: 10px;
}

.product__info .form-radio .form-check-label {
  font-weight: 500;
  font-size: 16px;
  border: 1px solid hsl(var(--black) / 0.06);
  padding: 10px 14px;
  border-radius: 6px;
  width: 100%;
  color: hsl(var(--body-color));
}

@media screen and (max-width: 1199px) {
  .product__info .form-radio .form-check-label {
    font-size: 14px;
  }
}

.product__info .form-check-input:checked~.form-check-label {
  background-color: hsl(var(--base) / 0.04);
  border-color: hsl(var(--base) / 0.2);
}

.product__info>h3 {
  margin-bottom: 6px;
  margin-top: 20px;
}

.product__info>p {
  margin-bottom: 24px;
}

.product__info .dropdown {
  margin-bottom: 12px;
}

.product__info .dropdown .dropdown-toggle {
  font-size: 18px;
  font-weight: 600;
}

.product__info .dropdown li:last-child .dropdown-item {
  margin-bottom: 0;
}

.product__info .dropdown .dropdown-item {
  white-space: normal;
  background-color: hsl(var(--base) / 0.1);
  margin-bottom: 4px;
}

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

.product__info .dropdown .dropdown-item h6,
.product__info .dropdown .dropdown-item h5 {
  margin-bottom: 0;
}

.product__info .dropdown .dropdown-item .badge {
  font-size: 10px;
  border-radius: 2px;
  padding: 6px 6px;
}

.product__info .dropdown .dropdown-item p {
  font-size: 12px;
  margin-top: 4px;
}

.file__details ul li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.file__details ul li i {
  width: 36px;
  height: 36px;
  background-color: hsl(var(--base) / 0.06);
  color: hsl(var(--base));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid hsl(var(--base) / 0.06);
}

.file__details ul li h6 {
  margin-bottom: 1px;
  font-size: 16px;
  font-weight: 400;
  color: hsl(var(--body-color));
}

@media screen and (max-width: 1199px) {
  .file__details ul li h6 {
    font-size: 14px;
  }
}

.file__details ul li p {
  color: hsl(var(--heading-color));
  font-weight: 600;
}

@media screen and (max-width: 1199px) {
  .file__details ul li p {
    font-size: 14px;
  }
}

.file__details ul li:not(:last-child) {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid hsl(var(--black) / 0.04);
}

.product__details__content img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.product__details__content h4 {
  margin-bottom: 22px;
}

@media screen and (max-width: 991px) {
  .product__details__content h4 {
    font-size: 18px;
  }
}

.product__details__content p {
  margin-bottom: 24px;
}

@media screen and (max-width: 1199px) {
  .product__details__content p {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.product__details__content ul {
  padding-left: 18px;
  list-style: disc;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (max-width: 1199px) {
  .product__details__content ul {
    gap: 8px;
  }
}

.product__details__content ul li {
  color: hsl(var(--body-color));
}

@media screen and (max-width: 1199px) {
  .product__details__content ul li {
    font-size: 14px;
  }
}

.product__details__content ul li::marker {
  color: hsl(var(--base));
}

.product__sidebar {
  position: sticky;
  top: 20px;
}

@media screen and (max-width: 991px) {
  .product__sidebar {
    margin-top: 24px;
  }
}

.product__details__content h5 {
  margin-bottom: 20px;
  line-height: 1;
}

@media screen and (max-width: 1199px) {
  .product__details__content h5 {
    padding-bottom: 12px;
  }
}

.pd__widgets {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.pd__date p {
  margin-bottom: 0;
}

.pd__date p span {
  color: hsl(var(--heading-color));
  font-weight: 500;
}

.pd__review p {
  margin-bottom: 0;
}

.pd__review {
  display: flex;
  align-items: center;
  gap: 2px;
}

.pd__review i {
  color: hsl(var(--warning));
}

/* ======================  Product Details Section End  ======================*/
/* ======================  About Section Start  ======================*/
.about__content p:not(:last-child) {
  margin-bottom: 24px;
}

.about__content {
  margin-bottom: 32px;
}

.about__wrap {
  max-width: 75%;
}

.about__btn {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about__progress:not(:last-child) {
  margin-bottom: 32px;
}

.about__progress__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.about__progress__topbar h6 {
  font-weight: 500;
}

.about__progress__topbar span {
  font-weight: 500;
  font-size: 18px;
  color: hsl(var(--heading-color));
}

.progress,
.progress-stacked {
  height: 11px;
  background-color: hsl(var(--base) / 0.12);
  border-radius: 20px;
  --bs-progress-bar-transition: width 0.1s ease;
}

.progress-bar {
  background-color: hsl(var(--base));
}

.about__img img {
  width: 100%;
  border-radius: 12px;
}

.about__img {
  position: relative;
  z-index: 1;
}

.play__video {
  position: absolute;
  left: -70px;
  bottom: 17%;
  z-index: 2;
  background-color: hsl(var(--base));
  border: 3px solid hsl(var(--white));
  border-radius: 12px;
  width: 140px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--white));
  font-size: 24px;
}

.play__video svg {
  fill: hsl(var(--white));
  width: 26px;
}

.play__video:hover {
  background-color: hsl(var(--base-d-200));
  color: hsl(var(--white));
  transform: scale(0.98);
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px hsl(var(--base) / 0.8);
  }

  100% {
    box-shadow: 0 0 0 30px transparent;
  }
}

/* ======================  About Section End  ======================*/
/* ======================  Tutorial Section Start  ======================*/
.tutorial__single span {
  width: 50px;
  height: 50px;
  background-color: hsl(var(--white));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: hsl(var(--base));
  box-shadow: var(--box-shadow);
  margin-bottom: 32px;
  font-size: 18px;
}

.tutorial__single h5 {
  margin-bottom: 12px;
}

@media screen and (max-width: 991px) {
  .tutorial__single {
    text-align: center;
  }

  .tutorial__single span {
    margin-inline: auto;
    margin-bottom: 24px;
  }
}

/* ======================  Tutorial Section End  ======================*/
/* ======================  Pricing Section Start  ======================*/
.pricing_area {
  background-color: hsl(var(--base) / 0.12);
}

.pricing__single {
  background-color: hsl(var(--white));
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.pricing__single>img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  user-select: none;
  max-width: 75px;
  width: 100%;
}

.pricing__label {
  position: absolute;
  left: 24px;
  top: 10px;
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
  color: hsl(var(--white));
  background-color: #ff6f00;
  box-shadow: var(--box-shadow);
  border-radius: 10px 10px 10px 0;
  padding: 4px 10px;
}

.pricing__topbar {
  background-color: hsl(var(--base));
  padding: 50px 24px 40px 24px;
}

@media screen and (max-width: 767px) {
  .pricing__topbar {
    padding: 50px 18px 30px 18px;
  }
}

.pricing__topbar h3 {
  color: hsl(var(--white));
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 14px;
}

.pricing__topbar p {
  color: hsl(var(--white));
  margin-bottom: 6px;
}

.pricing__topbar h5 {
  color: hsl(var(--white));
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}

.pricing__topbar h5 span {
  font-size: 32px;
  font-weight: 700;
}

.pricing__content {
  padding: 32px 24px;
}

@media screen and (max-width: 1399px) {
  .pricing__content {
    padding: 24px 18px;
  }
}

.pricing__content ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing__content ul li {
  padding-left: 20px;
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 400;
  color: hsl(var(--body-color));
}

@media screen and (max-width: 1399px) {
  .pricing__content ul li {
    font-size: 14px;
  }
}

@media screen and (max-width: 1199px) {
  .pricing__content ul li {
    font-size: 16px;
  }
}

@media screen and (max-width: 575px) {
  .pricing__content ul li {
    font-size: 14px;
  }
}

.pricing__content ul li::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  content: "";
  background-color: hsl(var(--base));
}

.pricing__content a {
  margin-top: 32px;
}

.pricing__content .btn.btn--base {
  background-color: hsl(var(--base) / 0.22) !important;
  border-color: transparent !important;
  color: hsl(var(--base)) !important;
}

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

/* ======================  Pricing Section End  ======================*/
/* ======================  Testimonial Section Start  ======================*/
.testimonial__quote {
  width: 60px;
  height: 60px;
  border: 3px solid hsl(var(--white));
  border-radius: 8px;
  background-color: hsl(var(--base));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--white));
  font-size: 28px;
  position: relative;
  z-index: 1;
  margin-bottom: -30px;
  margin-left: 32px;
}

.testimonial__content {
  background-color: hsl(var(--white));
  border-radius: 8px 8px 0 0;
  border-bottom: 3px solid hsl(var(--base) / 0.12);
  padding: 70px 16px 32px 32px;
  transition: 0.3s;
}

.testimonial__content>p {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 40px;
}

.testimonial__user {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.testimonial__user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.testimonial__user h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial__wrap .swiper-slide-next .testimonial__content {
  border-color: hsl(var(--base));
}

.swiper-pagination {
  position: unset;
  margin-top: 60px;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(var(--base) / 0.15);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: hsl(var(--base));
}

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

.swiper-button-next,
.swiper-button-prev {
  position: unset;
  width: 48px;
  height: 48px;
  margin-top: 0;
  color: hsl(var(--base));
  background-color: hsl(var(--white));
  border-radius: 8px;
  border: 1px solid hsl(var(--base) / 0.04);
  font-size: 18px;
  transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: hsl(var(--base));
  color: hsl(var(--white));
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

/* ======================  Testimonial Section End  ======================*/
/* ======================  Blog Section Start  ======================*/
.blog__card:hover .blog__img a:after {
  height: 100%;
  opacity: 0;
  transition: all 0.4s linear;
}

.blog__card:hover .blog__img a img {
  transform: scale(1.1);
}

.blog__card:hover .blog__date::after {
  width: 30%;
  background-color: hsl(var(--base));
}

.blog__content {
  padding: 32px 24px;
  padding-top: 0;
  border: 1px solid hsl(var(--black) / 0.12);
  border-radius: 0 0 8px 8px;
  background-color: hsl(var(--white));
}

@media screen and (max-width: 1199px) {
  .blog__content {
    padding: 24px 18px;
  }
}

.blog__img {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  width: 100%;
  height: 260px;
}

@media screen and (max-width: 1199px) {
  .blog__img {
    height: 200px;
  }
}

.blog__img a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.blog__img a:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: hsl(var(--white) / 0.4);
  content: "";
  opacity: 1;
}

.blog__img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.blog__title a,
.blog__content p {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
}

.blog__title {
  font-weight: 600;
  margin-bottom: 16px;
}

.blog__btn {
  margin-top: 32px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.blog__btn i {
  font-size: 14px;
  line-height: 1;
  margin-top: 2px;
}

.blog__btn:hover {
  gap: 6px;
  letter-spacing: 1px;
}

.blog__date {
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
  width: fit-content;
  margin-top: -32px;
  margin-bottom: 24px;
  transition: 0.3s;
}

@media screen and (max-width: 1199px) {
  .blog__date {
    margin-top: -55px;
  }
}

.blog__date h6 {
  margin-bottom: 0;
  color: hsl(var(--white));
  font-size: 24px;
  width: 60px;
  height: 60px;
  background-color: hsl(var(--base));
  border: 3px solid hsl(var(--white));
  border-radius: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.blog__date h6 span {
  font-size: 14px;
  text-transform: uppercase;
}

.blog__date::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 90%;
  height: 5px;
  content: "";
  background-color: hsl(var(--heading-color));
  border-radius: 20px;
  z-index: 1;
  transition: 0.3s;
}

.blog__title a {
  display: inline !important;
  width: 100%;
  background-repeat: no-repeat;
  background-position-y: -2px;
  background-image: linear-gradient(transparent calc(100% - 1px),
      currentColor 1px);
  -webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: 0 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.blog__title a:hover {
  background-image: linear-gradient(transparent calc(100% - 1px),
      currentColor 1px);
  background-size: 100% 100%;
}

@media screen and (max-width: 575px) {
  .blog__area .section__heading {
    margin-bottom: 20px;
    text-align: center !important;
    margin-left: auto !important;
  }

  .blog__area .blog__view {
    margin-bottom: 40px;
    justify-content: center !important;
  }
}

/* ======================  Blog Section End  ======================*/
/* ======================  Blog Details Section Start  ======================*/
.search__box {
  position: relative;
  z-index: 9;
}

.search__box button {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.search__box .form-control {
  padding: 18px 20px;
  padding-right: 44px;
}

.ads__box img {
  width: 100%;
}

.blog__sidebar {
  position: sticky;
  top: 20px;
}

@media screen and (max-width: 991px) {
  .blog__sidebar {
    margin-top: 32px;
  }
}

.recent__blog__title h4 {
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1;
}

.recent__blog__title {
  padding-bottom: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  width: fit-content;
}

.recent__blog__title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34%;
  height: 2px;
  background-color: hsl(var(--base));
  content: "";
  z-index: 1;
}

.recent__blog__single {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.recent__blog__single>a {
  width: 85px;
  height: 70px;
  flex: 0 0 auto;
  border-radius: 7px;
  overflow: hidden;
}

@media screen and (max-width: 1199px) {
  .recent__blog__single>a {
    width: 70px;
    border-radius: 5px;
  }
}

.recent__blog__single>a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.recent__blog__single h6 {
  margin-bottom: 4px;
}

.recent__blog__single p {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recent__blog__single p i {
  color: hsl(var(--base));
}

.recent__blog__single:not(:last-child) {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid hsl(var(--black) / 0.06);
}

.recent__blog__single:hover>a img {
  transform: scale(1.1);
}

.blog__details__content img {
  width: 100%;
  border-radius: 16px;
}

@media screen and (max-width: 1199px) {
  .blog__details__content img {
    border-radius: 10px;
  }
}

.blog__details__content h1 {
  font-size: 46px;
  font-weight: 700;
}

@media screen and (max-width: 1399px) {
  .blog__details__content h1 {
    font-size: 40px;
  }
}

@media screen and (max-width: 1199px) {
  .blog__details__content h1 {
    font-size: 36px;
  }
}

@media screen and (max-width: 991px) {
  .blog__details__content h1 {
    font-size: 30px;
  }
}

@media screen and (max-width: 575px) {
  .blog__details__content h1 {
    font-size: 26px;
  }
}

.blog__details__content .blog__date {
  margin-left: 40px;
}

@media screen and (max-width: 1199px) {
  .blog__details__content .blog__date {
    margin-top: -32px !important;
  }
}

.blog__details__content p {
  margin-bottom: 24px;
}

@media screen and (max-width: 1199px) {
  .blog__details__content p {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .blog__details__content p {
    margin-bottom: 16px;
  }
}

.blog__details__content ul,
.blog__details__content ol {
  list-style: disc;
  padding-left: 10px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

  .blog__details__content ul,
  .blog__details__content ol {
    font-size: 8px;
  }
}

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

  .blog__details__content ul,
  .blog__details__content ol {
    margin-bottom: 16px;
  }
}

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

  .blog__details__content ul li,
  .blog__details__content ol li {
    font-size: 14px;
  }
}

.blog__quote {
  background-color: hsl(var(--base) / 0.1);
  border-radius: 0 10px 10px 0;
  padding: 32px 24px;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  margin-left: 18px;
}

@media screen and (max-width: 991px) {
  .blog__quote {
    margin-bottom: 16px;
    padding: 22px 14px;
    border-radius: 0 6px 6px 0;
  }
}

.blog__quote::after {
  position: absolute;
  left: -8px;
  top: 0;
  width: 2px;
  height: 100%;
  content: "";
  z-index: 1;
  background-color: hsl(var(--base));
}

.blog__quote::before {
  position: absolute;
  left: -18px;
  top: 0;
  width: 7px;
  height: 100%;
  content: "";
  z-index: 1;
  background-color: hsl(var(--base));
}

.blog__quote p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  max-width: 95%;
}

@media screen and (max-width: 1199px) {
  .blog__quote p {
    font-size: 14px;
  }
}

.blog__quote span {
  position: absolute;
  right: 14px;
  top: 8px;
  z-index: -1;
  color: hsl(var(--base));
  font-size: 48px;
  line-height: 1;
}

@media screen and (max-width: 1199px) {
  .blog__quote span {
    font-size: 32px;
  }
}

.blog__share {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.blog__share h6 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog__share h6 i {
  color: hsl(var(--base));
}

.blog__share .social__icon li a {
  border-radius: 50%;
}

/* ======================  Blog Details Section End  ======================*/
/* ======================  Contact Section Start  ======================*/
.contact__card {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 24px;
}

.contact__card span {
  width: 52px;
  height: 52px;
  border: 2px solid hsl(var(--white));
  border-radius: 8px;
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.contact__card span::after {
  position: absolute;
  left: 4px;
  bottom: 4px;
  width: 8px;
  height: 8px;
  background-color: hsl(var(--white));
  content: "";
  z-index: 1;
  border-radius: 50%;
}

.contact__card:hover span::after {
  animation: bounceAnim 1s ease 0s 1 normal none;
}

@keyframes bounceAnim {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transform: translateY(-15px);
  }

  24% {
    opacity: 1;
  }

  40% {
    animation-timing-function: ease-in;
    transform: translateY(-8px);
  }

  65% {
    animation-timing-function: ease-in;
    transform: translateY(-4px);
  }

  82% {
    animation-timing-function: ease-in;
    transform: translateY(-2px);
  }

  93% {
    animation-timing-function: ease-in;
    transform: translateY(-1px);
  }

  25%,
  55%,
  75%,
  87% {
    animation-timing-function: ease-out;
    transform: translateY(0px);
  }

  100% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0px);
  }
}

.contact__card h4 {
  font-size: 18px;
  font-weight: 600;
  color: hsl(var(--body-color));
  line-height: 1;
  margin-bottom: 14px;
}

.contact__card a {
  font-size: 20px;
  font-weight: 600;
  color: hsl(var(--heading-color));
  font-family: var(--heading-font);
}

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

.contact__card p {
  font-size: 20px;
  font-weight: 600;
  color: hsl(var(--heading-color));
  font-family: var(--heading-font);
}

.contact__card::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 73%;
  border: 1px solid hsl(var(--black) / 0.08);
  content: "";
  z-index: -1;
  border-radius: 8px;
  background-color: hsl(var(--white));
}

.contact__map {
  max-width: 90%;
  margin-left: auto;
  height: 100%;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* ======================  Contact Section End  ======================*/
/* ======================  Auth Section Start  ======================*/
.auth__area {
  position: relative;
  z-index: 1;
}

.auth__thumb {
  position: fixed;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1199px) {
  .auth__thumb {
    width: 50%;
  }
}

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

.auth__thumb img {
  width: 60%;
}

.auth__main {
  width: 45%;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

@media screen and (max-width: 1199px) {
  .auth__main {
    padding: 20px;
    width: 50%;
  }
}

@media screen and (max-width: 991px) {
  .auth__main {
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .auth__main {
    padding: 10px;
  }
}

.auth__wrapper {
  background-color: hsl(var(--white));
  padding: 60px;
  border-radius: 12px;
  max-width: 90%;
  margin-inline: auto;
}

@media screen and (max-width: 1399px) {
  .auth__wrapper {
    padding: 40px 30px;
  }
}

@media screen and (max-width: 1199px) {
  .auth__wrapper {
    max-width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .auth__wrapper {
    padding: 30px 20px;
  }
}

.auth__logo {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 1199px) {
  .auth__logo {
    margin-bottom: 30px;
  }
}

.auth__logo a img {
  width: 100%;
  max-width: 234px;
}

@media screen and (max-width: 1199px) {
  .auth__logo a img {
    max-width: 180px;
  }
}

.auth__logo a {
  display: block;
  width: 100%;
}

.auth__title {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 1199px) {
  .auth__title p {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .auth__title {
    margin-bottom: 20px;
  }
}

.auth__title h3 {
  margin-bottom: 12px;
}

.social__login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.social__login a {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid hsl(var(--black) / 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background-color: hsl(var(--white));
  font-size: 15px;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .social__login a {
    font-size: 13px;
  }
}

.social__login a:hover {
  background-color: hsl(var(--black) / 0.04);
  color: hsl(var(--heading-color));
}

.social__login a img {
  width: auto;
  height: 16px;
  flex: 0 0 auto;
}

.auth__or {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

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

.auth__or p {
  font-size: 12px;
  background-color: hsl(var(--white));
  width: fit-content;
  padding: 0 8px;
}

.auth__already {
  margin-top: 16px;
  text-align: center;
}

.auth__already p a {
  color: hsl(var(--base));
}

.auth__already p a:hover {
  text-decoration: underline;
}

.auth__form__single .form-control {
  padding: 16px 18px;
  font-size: 14px;
}

.auth__form__single .form-control::placeholder {
  color: hsl(var(--body-color) / 0.8);
  font-size: 14px;
}

.auth__form__single .input-group .input-group-text {
  font-size: 14px;
}

.auth__check .form-check .form-check-label {
  font-size: 14px;
  color: hsl(var(--body-color));
  line-height: 1.6;
}

.auth__check .form-check .form-check-label a {
  text-decoration: underline;
  color: hsl(var(--body-color));
}

.auth__check .form-check .form-check-label a:hover {
  color: hsl(var(--base));
}

.auth__widgets a {
  font-size: 14px;
  color: hsl(var(--base));
}

.auth__widgets a:hover {
  text-decoration: underline;
}

.auth__widgets {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.auth__widgets .form-check .form-check-label {
  font-size: 14px;
  color: hsl(var(--body-color));
}

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

  .auth__form .g-4,
  .auth__form .gy-4 {
    --bs-gutter-y: 0.9rem;
  }

  .auth__form .g-4,
  .auth__form .gx-4 {
    --bs-gutter-x: 0.9rem;
  }
}

/* ======================  Auth Section End  ======================*/
/* ======================  Error Section Start  ======================*/
.error__main {
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.error__main img {
  max-width: 230px;
  width: 100%;
  margin-bottom: 30px;
}

.error__main h2 {
  margin-bottom: 5px;
  font-size: 80px;
  line-height: 1;
}

.error__main h3 {
  margin-bottom: 10px;
  font-size: 60px;
  line-height: 1;
}

.error__main h4 {
  font-size: 24px;
  margin-bottom: 24px;
}

.error__main p {
  font-size: 16px;
  max-width: 500px;
  margin-bottom: 30px;
}

.error__main a {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  padding: 13px 20px;
}

.error__main a i {
  font-size: 18px;
}

@media screen and (max-width: 991px) {
  .error__main img {
    max-width: 170px;
    margin-bottom: 15px;
  }

  .error__main h2 {
    margin-bottom: 10px;
    font-size: 50px;
  }

  .error__main h3 {
    margin-bottom: 10px;
    font-size: 30px;
  }

  .error__main h4 {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .error__main p {
    font-size: 14px;
    max-width: 440px;
  }
}

/* ======================  Error Section End  ======================*/
/* ======================  Dashboard Section Start  ======================*/
.dashboard__wrap {
  padding-left: 275px;
}

@media screen and (max-width: 991px) {
  .dashboard__wrap {
    padding-left: 0;
  }
}

.dashboard__wrapper {
  padding: 24px;
}

.dashboard__sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 275px;
  height: 100vh;
  z-index: 2;
  background-color: hsl(var(--heading-color));
  overflow-y: auto;
  scrollbar-width: none;
}

@media screen and (max-width: 991px) {
  .dashboard__sidebar {
    background-color: hsl(var(--heading-color));
    left: -100%;
    z-index: 13;
    transition: 0.3s;
  }

  .dashboard__sidebar.active {
    left: 0;
  }
}

.dashboard__logo a {
  display: block;
  text-align: center;
}

.dashboard__logo a img {
  width: 100%;
  max-width: 175px;
}

.dashboard__logo {
  padding: 32px 24px;
}

.sidebar__close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  background-color: hsl(var(--danger));
  width: 30px;
  height: 30px;
  display: none;
  align-items: center;
  justify-content: center;
  color: hsl(var(--white));
  cursor: pointer;
  transition: 0.3s;
}

@media screen and (max-width: 991px) {
  .sidebar__close {
    display: flex;
  }
}

.sidebar__open {
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
  display: none;
}

@media screen and (max-width: 991px) {
  .sidebar__open {
    display: block;
  }
}

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

.dashboard__menu ul {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-right: 14px;
  overflow: hidden;
}

.dashboard__menu ul li a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: hsl(var(--white) / 0.76);
  border-radius: 0 4px 4px 0;
  position: relative;
  z-index: 1;
  transition: 0.4s;
}

.dashboard__menu ul li a::after {
  position: absolute;
  left: -17px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  content: "";
  z-index: -1;
  background-color: hsl(var(--white));
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.dashboard__menu ul li a:hover {
  background-color: hsl(var(--base) / 0.3);
  color: hsl(var(--white));
}

.dashboard__menu ul li a:hover::after {
  opacity: 0.3;
  visibility: visible;
  left: -8px;
}

.dashboard__menu ul li a.active {
  background-color: hsl(var(--base));
  color: hsl(var(--white));
}

.dashboard__menu ul li a.active::after {
  opacity: 1;
  visibility: visible;
  left: -8px;
}

.sidebar__dropdown {
  background-color: hsl(var(--base) / 0.2);
  padding: 12px 22px;
  border-radius: 0 0 4px 0;
}

.dashboard__menu ul li a[aria-expanded="true"] {
  border-radius: 0 4px 0 0;
  background-color: hsl(var(--base));
  color: hsl(var(--white));
}

.dashboard__menu ul li a[aria-expanded="true"] .dropdown__arrow i {
  transform: rotate(90deg);
}

.dropdown__arrow {
  line-height: 1;
  margin-left: auto;
}

.dropdown__arrow i {
  transition: 0.3s;
}

.sidebar__dropdown ul {
  padding-right: 0;
}

.sidebar__dropdown ul li a {
  border-radius: 4px;
  padding: 12px 18px;
}

.sidebar__dropdown ul li a.active,
.sidebar__dropdown ul li a:hover {
  background-color: hsl(var(--base) / 0.2);
}

.sidebar__dropdown ul li a::after {
  left: -6px !important;
  width: 5px;
  height: 60%;
  background-color: hsl(var(--white) / 0.2);
  border-radius: 10px;
}

.sidebar__dropdown ul li a.active::after {
  left: 0 !important;
}

.sidebar__dropdown ul li a:hover::after {
  left: 0 !important;
  opacity: 1;
}

.dashboard__header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 24px;
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .dashboard__header {
    flex-direction: column;
    gap: 24px;
  }

  .dashboard__header .search__box {
    width: 100%;
  }
}

.dashboard__header h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
  .dashboard__header h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 575px) {
  .dashboard__header h2 {
    font-size: 18px;
  }
}

.dashboard__header__widgets {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

@media screen and (max-width: 991px) {
  .dashboard__header__widgets {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .dashboard__header__widgets {
    width: 100%;
    justify-content: flex-end;
    gap: 14px;
  }

  .dashboard__header__widgets .upload__file {
    margin-right: auto;
  }
}

.upload__file__sb {
  display: none;
}

@media screen and (max-width: 470px) {
  .upload__file__sb {
    display: block;
  }

  .upload__file {
    display: none !important;
  }

  .sidebar__open {
    margin-left: auto !important;
  }
}

.notification__btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: hsl(var(--base) / 0.15);
  border-radius: 15px;
  color: hsl(var(--base));
  font-size: 26px;
  transition: 0.3s;
}

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

.profile__dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile__dropdown span {
  font-weight: 500;
}

.notification__count {
  position: absolute;
  right: -6px;
  top: -10px;
  z-index: 2;
  background-color: hsl(var(--base));
  line-height: 1;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: hsl(var(--white));
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid hsl(var(--white));
}

.profile__dropdown img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 9px;
  border: 4px solid hsl(var(--white));
}

@media screen and (max-width: 991px) {
  .profile__dropdown img {
    width: 38px;
    height: 38px;
  }
}

.dash__dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drop__arrow {
  font-size: 16px;
  line-height: 1;
}

.drop__arrow i {
  transition: 0.3s;
  position: relative;
  top: -3px;
}

.dash__dropdown.show .drop__arrow i {
  transform: rotate(180deg);
  top: 4px;
}

.upload__file .btn {
  padding: 14px 16px;
  border-radius: 6px;
}

.upload__file .btn i {
  margin-right: 2px;
}

.notification__wrap {
  width: 250px;
}

.notification__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 6px;
}

.notification__footer {
  padding-top: 6px;
}

.notification__header h4 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.notification__body a {
  padding: 8px 12px;
  color: hsl(var(--body-color));
  background-color: hsl(var(--base) / 0.06);
  border: 1px solid hsl(var(--base) / 0.1);
  border-radius: 4px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notification__body a p {
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.notification__body a span {
  color: hsl(var(--black) / 0.4);
  font-size: 12px;
  margin-top: -4px;
  transition: 0.2s;
}

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

.notification__body a:hover p {
  color: hsl(var(--white));
}

.notification__body a:hover span {
  color: hsl(var(--white) / 0.5);
}

.notification__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard__card {
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.dashboard__card:hover {
  transform: translateY(-5px);
}

.dc__img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -2;
  user-select: none;
  pointer-events: none;
  max-width: 80px;
}

@media screen and (max-width: 1399px) {
  .dc__img {
    max-width: 60px;
  }
}

.dashboard__card h5 {
  font-weight: 600;
}

.dashboard__card p {
  font-size: 32px;
  font-weight: 600;
  color: hsl(var(--heading-color));
  line-height: 1;
}

@media screen and (max-width: 1199px) {
  .dashboard__card p {
    font-size: 28px;
  }
}

.chart__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.chart__topbar h5 {
  margin-bottom: 0;
}

.chart__topbar .dropdown .dropdown-toggle {
  border: 1px solid hsl(var(--black) / 0.12);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
}

.dashboard__acco {
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.dashboard__acco:hover {
  opacity: 0.8;
  transform: translateY(-5px);
}

.dashboard__acco::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  z-index: 1;
  content: "";
  background-image: linear-gradient(to top, hsl(var(--black)), transparent);
}

.dashboard__acco img {
  width: 100%;
}

.dashboard__acco__content {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
}

.dashboard__acco__content a {
  color: hsl(var(--white));
  font-size: 20px;
  font-weight: 600;
  display: block;
}

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

.dashboard__acco__content p {
  color: hsl(var(--white) / 0.7);
  font-size: 14px;
}

.ds__plus {
  color: hsl(var(--base));
  font-size: 20px;
  font-weight: 700;
}

.ds__discount {
  text-decoration: line-through;
  color: hsl(var(--border-color));
}

.table__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .table__topbar {
    flex-direction: column;
  }
}

.filter__btn {
  white-space: nowrap;
}

.table__topbar>h5 {
  margin-bottom: 0;
}

.table__topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .table__topbar__right {
    width: 100%;
  }

  .table__topbar__right .search__box {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .table__topbar__right .filter__main {
    right: -30px !important;
  }
}

@media screen and (max-width: 1199px) {
  .table__topbar__right .btn.filter__btn {
    font-size: 14px;
    padding: 18px 20px;
  }
}

.table__topbar__right .search__box .form-control {
  padding: 15px 16px;
  padding-right: 44px;
}

@media screen and (max-width: 767px) {
  .table__topbar__right .search__box .form-control {
    width: 100%;
  }
}

.btn.open__ticket {
  font-size: 14px;
  padding: 18px 20px;
  white-space: nowrap;
}

.table__topbar__right.ticket__pg {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.upload__preview {
  margin-bottom: 36px;
  border: 1px solid hsl(var(--black) / 0.2);
  border-radius: 12px;
  padding: 17px;
}

.uplaod__box {
  background-color: hsl(var(--black) / 0.02);
  border-radius: 10px;
  padding: 68px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.uplaod__box span {
  font-size: 40px;
  color: hsl(var(--base));
  line-height: 1;
  margin-bottom: 12px;
}

.uplaod__box label {
  font-size: 14px;
  font-weight: 400;
  padding: 12px 14px;
  border-radius: 5px;
  border: 1px solid hsl(var(--black) / 0.12);
  margin-bottom: 16px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s;
}

.uplaod__box label:hover {
  background-color: hsl(var(--base));
  border-color: hsl(var(--base));
  color: hsl(var(--white));
}

.upload__title h5 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
}

.dashboard .form-control {
  padding: 17px;
  border-color: hsl(var(--black) / 0.12);
}

.dashboard .select2-container--default .select2-selection--single {
  border-color: hsl(var(--black) / 0.12);
  padding: 17px 30px 17px 14px;
}

.dashboard .select2-container--default .select2-selection--multiple {
  border-color: hsl(var(--black) / 0.12);
  padding: 12px;
  border-radius: 8px;
}

.dashboard .select2-container .select2-selection--single .select2-selection__rendered {
  font-size: 16px;
}

.dashboard .form-control[type="file"] {
  padding: 15px 10px;
}

.dashboard .input-group {
  border-color: hsl(var(--black) / 0.12);
}

/* ======================  Dashboard Section End  ======================*/
/* ======================  Profile Section Start  ======================*/
.profile__upload input {
  display: none;
}

.profile__upload label {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin-bottom: 6px;
}

.profile__upload label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile__upload label i {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--white));
  background-color: hsl(var(--black) / 0.5);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.profile__upload label:hover i {
  opacity: 1;
  visibility: visible;
}

.profile__wr {
  text-align: center;
  background-color: hsl(var(--base) / 0.02);
  border: 1px solid hsl(var(--base) / 0.2);
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.profile__wr h4 {
  font-size: 20px;
  margin-bottom: 0;
}

.profile__menu ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.profile__contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: hsl(var(--black) / 0.6);
  margin-bottom: 4px;
}

.profile__contact a {
  font-weight: 600;
  color: hsl(var(--heading-color));
  display: block;
}

.profile__contact span {
  font-weight: 600;
  color: hsl(var(--heading-color));
  display: block;
  max-width: 280px;
}

.profile__left ul {
  display: flex;
  flex-direction: column;
}

.profile__left ul li {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed hsl(var(--base) / 0.2);

  &:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
  }
}

@media screen and (max-width: 1199px) {
  .profile__left ul {
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .profile__left ul li {
    flex: 0 0 auto;
  }
}

@media screen and (max-width: 575px) {
  .profile__left ul li {
    flex: unset;
  }
}

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

.two__factor__info {
  text-align: center;
  margin-bottom: 20px;
}

.two__factor__info p {
  font-size: 14px;
  margin-bottom: 14px;
}

.two__factor__info img {
  max-width: 200px;
  width: 100%;
}

@media screen and (max-width: 575px) {
  .profile__left.card.p-4 {
    padding: 18px !important;
  }

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

  .profile__wrap .g-4,
  .profile__wrap .gy-4 {
    --bs-gutter-y: 0.8rem;
  }

  .profile__wrap .g-4,
  .profile__wrap .gx-4 {
    --bs-gutter-x: 0.8rem;
  }
}

/* ======================  Profile Section End  ======================*/
/* ======================  FAQ Section Start  ======================*/
.faq__area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.faq__sp {
  position: absolute;
  left: 0;
  top: 6%;
  z-index: -2;
  user-select: none;
  pointer-events: none;
  transform: rotate(34deg);
  max-width: 320px;
  width: 100%;
  opacity: 0.04;
}

@media screen and (max-width: 1399px) {
  .faq__sp {
    max-width: 280px;
  }
}

@media screen and (max-width: 1199px) {
  .faq__sp {
    max-width: 240px;
  }
}

@media screen and (max-width: 767px) {
  .faq__sp {
    max-width: 160px;
  }
}

.faq__sp img {
  width: 100%;
}

.faq__sp.sp-2 {
  left: auto;
  right: 0;
  top: auto;
  bottom: 4%;
  transform: rotate(-34deg);
  opacity: 0.1;
}

/* ======================  FAQ Section End  ======================*/
/* ======================  Policy Section Start  ======================*/
.policy__area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.policy__sp {
  position: absolute;
  right: 0;
  top: 10%;
  z-index: -1;
  user-select: none;
  pointer-events: none;
  max-width: 350px;
  width: 100%;
  transform: rotate(-30deg);
  opacity: 0.06;
}

@media screen and (max-width: 991px) {
  .policy__sp {
    max-width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .policy__sp {
    max-width: 140px;
  }
}

.policy__sp.sp-2 {
  right: auto;
  left: 0;
  top: 40%;
  transform: rotate(30deg);
}

.policy__sp.sp-3 {
  top: auto;
  bottom: 12%;
}

.wyg h1,
.wyg h2,
.wyg h3,
.wyg h4,
.wyg h5 {
  color: hsl(var(--heading-color));
  margin-bottom: 16px;
  font-weight: 500;
}

.wyg p {
  font-size: 16px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .wyg p {
    font-size: 14px;
    margin-bottom: 14px;
  }
}

.wyg h2 {
  margin-bottom: 32px;
}

@media screen and (max-width: 991px) {
  .wyg h2 {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 767px) {
  .wyg h2 {
    margin-bottom: 14px;
  }
}

.wyg ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
  list-style: disc;
  padding-left: 32px;
}

@media screen and (max-width: 991px) {
  .wyg ul {
    gap: 14px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .wyg ul {
    gap: 10px;
    margin-bottom: 20px;
    padding-left: 20px;
  }
}

.wyg ul li {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .wyg ul li {
    font-size: 14px;
  }
}

.wyg ol {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 48px;
  list-style: decimal;
  padding-left: 32px;
}

@media screen and (max-width: 991px) {
  .wyg ol {
    gap: 14px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .wyg ol {
    gap: 10px;
    margin-bottom: 20px;
    padding-left: 20px;
  }
}

.policy__content ol li {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .policy__content ol li {
    font-size: 14px;
  }
}

.floating-search {
  background-color: hsl(var(--section-bg));
  width: 100%;
  z-index: 9;
  padding: 8px;
  border-radius: 8px;
  max-height: 440px;
  overflow: auto;
  box-shadow: var(--box-shadow);
}

.floating-search::-webkit-scrollbar {
  width: 6px;
  border-radius: 10px;
}

.floating-search::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px hsl(var(--base) / 0.2);
  border-radius: 10px;
}

.floating-search::-webkit-scrollbar-thumb {
  background: hsl(var(--base) / 0.7);
  border-radius: 10px;
}

.floating-search::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--base));
}

.floating-search .list-group-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  color: hsl(var(--heading-color));
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--black) / 0.1);
  margin-bottom: 6px;
  border-radius: 6px;
  transition: 0.3s;
}

.floating-search .list-group-item:last-child {
  margin-bottom: 0;
}

.floating-search .list-group-item:hover {
  border-color: hsl(var(--base) / 0.5);
}

.floating-search .list-group-item:hover h6 {
  color: hsl(var(--base));
}

.floating-search .list-group-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.floating-search .list-group-item h6 {
  font-size: 14px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.floating-search .list-group-item p {
  font-size: 12px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.empty__data {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.empty__data img {
  width: 60px;
}

.empty__data h5 {
  margin-bottom: 0;
  font-weight: 600;
}

.cookies-card {
  position: fixed;
  bottom: 16px;
  padding: 10px;
  background: hsl(var(--base));
  border: 1px solid hsl(var(--base));
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  z-index: 99;
  margin: auto 10px;
}

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

.field-width {
  width: 480px;
}

/* image upload */
.image-upload--container {
  transition: 0.3s linear;
  padding: 20px;
  border: 1px solid hsl(var(--black) / 0.12);
  border-radius: 8px;

  &.dragover {
    border: 1px dashed hsl(var(--primary) / 0.8);
    opacity: 0.8;
  }

  .thumb--wrap {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 17px;

    .image--preview {
      width: 100%;
      height: 100%;
      border-radius: 8px;
      overflow: hidden;
      object-fit: cover;
    }

    .cross--icon {
      top: -6px;
      right: -6px;
      width: 32px;
      height: 32px;
      padding: 4px;
      background-color: #ffcfce;
      border-radius: 50%;
      cursor: pointer;

      i {
        color: hsl(var(--danger));
      }
    }
  }

  .content--wrap {
    gap: 8px;

    i {
      font-size: 48px;
    }
  }

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

@media screen and (max-width: 1440px) {
  .image-upload--container {
    .thumb--wrap {
      height: 182px;
    }
  }
}

.file-upload-wrapper+.file-upload-wrapper {
  margin-top: 15px;
}

.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 40px;
}

.file-upload-wrapper:after {
  content: attr(data-text);
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  padding: 0 15px;
  display: block;
  width: 100%;
  pointer-events: none;
  z-index: 20;
  height: 100%;
  line-height: 36px;
  color: #999;
  border-radius: 5px;
  font-weight: 300;
  border: 1px solid #e5e5e5;
}

.file-upload-wrapper:before {
  content: "Choose File";
  position: absolute;
  top: 0;
  right: 0px;
  display: inline-block;
  height: 100%;
  background: hsl(var(--primary) / 0.05);
  color: #707070;
  font-weight: 500;
  z-index: 25;
  font-size: 14px;
  line-height: 40px;
  padding: 0 15px;
  pointer-events: none;
  border-radius: 0 5px 5px 0;
}

.file-upload-wrapper input {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  height: 40px;
  margin: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  width: 100%;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked+.slider {
  background-color: hsl(var(--primary));
}

input:focus+.slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked+.slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 15px;
}

.slider.round:before {
  border-radius: 50%;
}

.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
  bottom: 2px;
  left: 5px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-switch .custom-control-label::after {
  top: calc(0.25rem + -2px);
}

.fs-sm {
  font-size: 15px;
  color: red;
}

/* Rating */

.rating-stars {
  font-size: 1.3rem;
  justify-content: flex-end;
  margin-top: -1px;
}

.rating-stars input[type="radio"] {
  display: none;
}

.rating-stars label {
  color: hsl(var(--black) / 0.15);
  cursor: pointer;
  transition: color 0.2s;
}

.rating-stars label:hover,
.rating-stars label:hover~label {
  color: hsl(var(--warning));
}

.rating-stars input[type="radio"]:checked~label {
  color: hsl(var(--warning));
}

.review--box .btn {
  margin-top: 20px;
}

.product__details .nav {
  margin-bottom: 24px;
  border-bottom: 2px solid hsl(var(--border-color));
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.product__details .nav-link {
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: hsl(var(--heading-color));
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.product__details .nav-link.active {
  border-color: hsl(var(--base));
}

.product--review {
  margin-bottom: 24px;
  border: 1px solid hsl(var(--base) / 0.2);
}

.review--single-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.review--single-topbar img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 auto;
}

.review--single-topbar h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.review--single-topbar p {
  font-size: 12px;
  margin-bottom: 4px;
}

.review--after {
  display: flex;
  align-items: center;
  gap: 1px;
}

.review--after span {
  line-height: 1;
  color: hsl(var(--warning));
}

.product_page_search {
  max-width: 100% !important;
}

.ck.ck-editor__editable_inline {
  min-height: 200px;
}

.ck-rounded-corners .ck.ck-editor__top .ck-sticky-panel .ck-toolbar, .ck.ck-editor__top .ck-sticky-panel .ck-toolbar.ck-rounded-corners {
  border-radius: 8px !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.ck-rounded-corners .ck.ck-editor__main>.ck-editor__editable, .ck.ck-editor__main>.ck-editor__editable.ck-rounded-corners {
  border-radius: 8px !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.password__input {
  position: relative;
  z-index: 1;
}

.password__input input {
  padding-right: 40px !important;
}

.password-show-hide {
  position: absolute;
  right: 12px;
  z-index: 3;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--black)/0.4);
}

.password-show-hide .open-eye-icon {
  display: none;
}

.auth__area .verification-code .form-control:focus {
  background-color: transparent;
}


.auth__area .verification-code-wrapper {
  width: 380px;
  padding: 40px 0;
}

.auth__area .verification-code::after {
  background-color: transparent;
}

@media screen and (max-width: 575px) {
  .auth__area .verification-code-wrapper {
    width: 300px;
  }

  .verification-code input {
    letter-spacing: 35px;
  }
}

@media screen and (max-width: 400px) {
  .auth__area .verification-code-wrapper {
    width: 280px;
  }

  .verification-code input {
    letter-spacing: 38px;
  }
}