@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Space+Grotesk:wght@300..700&display=swap");

/* ========================= CSS Variables Start ======================== */
:root {
  /* Font Family */
  --heading-font: "Space Grotesk", sans-serif;
  --body-font: "Open Sans", sans-serif;
  /* Basic Colors */
  --white: 0 0% 100%;
  --black: 0 0% 0%;
  --dark: 222 47% 11%;
  --body-bg: 210 40% 96%;
  --body-color: 217 28% 22%;
  --heading-color: 222 47% 11%;
  --border-color: 240 6% 90%;
  /*  Box Shadow */
  --header-box-shadow: 0px -1px 15px 3px hsl(var(--black) / 0.3);
  --mobile-box-shadow: 0px -1px 5px 0px hsl(var(--black) / 0.92);
  --box-shadow: 0px 2px 15px hsl(var(--black) / 0.05);
  /* Base Color */
  --base-h: 157;
  --base-s: 80%;
  --base-l: 40%;
  --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);
  /* 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: 40;
  --warning-s: 100%;
  --warning-l: 46%;
  --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);
  /* Yellow Color */
  --yellow-h: 50;
  --yellow-s: 98%;
  --yellow-l: 64%;
  --yellow: var(--yellow-h) var(--yellow-s) var(--yellow-l);
  --yellow-d-100: var(--yellow-h) var(--yellow-s)
    calc(var(--yellow-l) - var(--yellow-l) * 0.1);
  --yellow-d-200: var(--yellow-h) var(--yellow-s)
    calc(var(--yellow-l) - var(--yellow-l) * 0.2);
  --yellow-d-300: var(--yellow-h) var(--yellow-s)
    calc(var(--yellow-l) - var(--yellow-l) * 0.3);
  --yellow-d-400: var(--yellow-h) var(--yellow-s)
    calc(var(--yellow-l) - var(--yellow-l) * 0.4);
  --yellow-d-500: var(--yellow-h) var(--yellow-s)
    calc(var(--yellow-l) - var(--yellow-l) * 0.5);
  --yellow-l-100: var(--yellow-h) calc(var(--yellow-s))
    calc(var(--yellow-l) + (100% - var(--yellow-l)) * 0.1);
  --yellow-l-200: var(--yellow-h) calc(var(--yellow-s))
    calc(var(--yellow-l) + (100% - var(--yellow-l)) * 0.2);
  --yellow-l-300: var(--yellow-h) calc(var(--yellow-s))
    calc(var(--yellow-l) + (100% - var(--yellow-l)) * 0.3);
  --yellow-l-400: var(--yellow-h) calc(var(--yellow-s))
    calc(var(--yellow-l) + (100% - var(--yellow-l)) * 0.4);
  --yellow-l-500: var(--yellow-h) calc(var(--yellow-s))
    calc(var(--yellow-l) + (100% - var(--yellow-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);
}

[data-theme="dark"] {
  --white: 200 9% 7%;
  --black: 210 40% 98%;
}

/* ========================= CSS Variables End ========================== */
/* ========================= Display Flex Css Start ====================== */
.flex-wrap,
.form--radio,
.form--check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-align,
.action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

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

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

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

/* ========================= Positioning Css Class End =================== */
/* ========================= Font Sizes Start ============================ */
.fs-10 {
  font-size: 0.625rem;
}

.fs-11 {
  font-size: 0.6875rem;
}

.fs-12 {
  font-size: 0.75rem;
}

.fs-13 {
  font-size: 0.8125rem;
}

.fs-14 {
  font-size: 0.875rem;
}

.fs-15 {
  font-size: 0.9375rem;
}

.fs-16 {
  font-size: 1rem;
}

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

.fs-17 {
  font-size: 1.0625rem;
}

@media screen and (max-width: 1199px) {
  .fs-17 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .fs-17 {
    font-size: 0.9375rem;
  }
}

.fs-18 {
  font-size: 1.125rem;
}

@media screen and (max-width: 1399px) {
  .fs-18 {
    font-size: 1.0625rem;
  }
}

@media screen and (max-width: 767px) {
  .fs-18 {
    font-size: 1rem;
  }
}

.fs-20 {
  font-size: 1.25rem;
}

@media screen and (max-width: 1399px) {
  .fs-20 {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .fs-20 {
    font-size: 1.0625rem;
  }
}

/* ========================= Font Sizes End ============================== */
/* ========================= Typography Css Start ======================== */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: hsl(var(--body-color));
  word-break: break-word;
  background-color: hsl(var(--white));
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

span {
  display: inline-block;
}

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

@media screen and (max-width: 767px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0 0 15px 0;
  }
}

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

a {
  display: inline-block;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  text-decoration: none;
  color: hsl(var(--info));
}

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;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-select:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.dashboard-body h1,
.dashboard-body h2,
.dashboard-body h3,
.dashboard-body h4,
.dashboard-body h5,
.dashboard-body h6 {
  font-family: var(--body-font);
}

/* ========================= Typography Css End ========================== */
/* ======================== Custom Classes Css Start ===================== */
/* Ad Banner Link Css */
.ad-banner__link {
  width: 100%;
  display: block;
  border-radius: 6px;
  overflow: hidden;
}

.ad-banner__thumb {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 991px) {
  .ad-banner__thumb {
    max-height: 300px;
    -o-object-position: top center;
    object-position: top center;
  }
}

/* Display none for fully msm screen */
@media screen and (max-width: 575px) {
  .d-msm-none {
    display: none !important;
  }
}

/* Fully Fit Img Css */
.fit-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Column Extra Small Screen */
@media screen and (min-width: 425px) and (max-width: 575px) {
  .col-xsm-6 {
    width: 50%;
  }
}

/* .text-muted {
    color: hsl(var(--white)/0.6) !important;
} */
.text-muted {
  color: hsl(0deg 8.9% 12.37% / 60%) !important;
}

/* Bg Image Css */
.bg-img {
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
}

/* 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);
}

/* Overlay Start */
.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-color: hsl(var(--black) / 0.6);
  z-index: 99;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  visibility: hidden;
  opacity: 0;
}

.body-overlay.show {
  visibility: visible;
  opacity: 1;
}

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

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

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

.sidebar-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-color: hsl(var(--black) / 0.6);
  z-index: 99;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  visibility: hidden;
  opacity: 0;
}

.sidebar-overlay.show {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

/* Overlay End */
/* ======================== Custom Classes Css End ======================= */
/* ======================= Section Heading Css Start ===================== */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .section-heading {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .section-heading {
    margin-bottom: 20px;
  }
}

.section-heading__title {
  margin-bottom: 12px;
}

.section-heading__desc {
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

.section-heading.style-left {
  text-align: left;
}

.section-heading.style-left .section-heading__desc {
  margin-left: 0;
}

/* ======================= Section Heading Css 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;
}

/* ======================= Background Color Css End ====================== */
/* ======================= Text 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 Color Css End ============================ */
/* ======================= Margin Css Start ============================== */
.my-120 {
  margin-top: 120px;
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .my-120 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 575px) {
  .my-120 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

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

@media screen and (max-width: 767px) {
  .mt-120 {
    margin-top: 80px;
  }
}

@media screen and (max-width: 575px) {
  .mt-120 {
    margin-top: 60px;
  }
}

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

@media screen and (max-width: 767px) {
  .mb-120 {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 575px) {
  .mb-120 {
    margin-bottom: 60px;
  }
}

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

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

@media screen and (max-width: 575px) {
  .my-60 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

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

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

@media screen and (max-width: 575px) {
  .mt-60 {
    margin-top: 30px;
  }
}

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

@media screen and (max-width: 767px) {
  .mb-60 {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 575px) {
  .mb-60 {
    margin-bottom: 30px;
  }
}

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

@media screen and (max-width: 767px) {
  .py-120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 575px) {
  .py-120 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

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

@media screen and (max-width: 767px) {
  .pt-120 {
    padding-top: 80px;
  }
}

@media screen and (max-width: 575px) {
  .pt-120 {
    padding-top: 60px;
  }
}

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

@media screen and (max-width: 767px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 575px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

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

@media screen and (max-width: 767px) {
  .py-60 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 575px) {
  .py-60 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

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

@media screen and (max-width: 767px) {
  .pt-60 {
    padding-top: 40px;
  }
}

@media screen and (max-width: 575px) {
  .pt-60 {
    padding-top: 30px;
  }
}

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

@media screen and (max-width: 767px) {
  .pb-60 {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 575px) {
  .pb-60 {
    padding-bottom: 30px;
  }
}

/* ======================= 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 Color Css End ========================== */
/* ======================= Accordion Css start =========================== */
.custom--accordion .accordion-item {
  border: 1px solid hsl(var(--black) / 0.1);
  background-color: transparent !important;
  border-radius: 6px;
  overflow: hidden;
}

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

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

.custom--accordion .accordion-body .accordion-text {
  max-width: 100%;
  font-weight: 400;
  color: hsl(var(--body-color));
}

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

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

.custom--accordion .accordion-button {
  color: var(--dark);
  background-color: hsl(var(--white));
  font-size: 1.125rem;
  font-weight: 500;
  padding: 18px;
}

@media screen and (max-width: 575px) {
  .custom--accordion .accordion-button {
    padding: 18px;
    padding-right: 30px;
  }
}

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

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

.custom--accordion .accordion-button[aria-expanded="true"] {
  background-color: hsl(var(--base) / 0.15) !important;
}

.custom--accordion .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

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

.custom--accordion .accordion-button[aria-expanded="false"]::after {
  content: "\f106";
  color: hsl(var(--body-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;
  padding: 15px 30px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  border: 1px solid transparent;
  display: inline-block;
  text-align: start;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--body-font);
  line-height: 1;
}

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

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

.btn:active {
  top: 1px;
}

.btn--icon {
  display: inline-block;
  margin-top: 1px;
}

.btn--lg {
  font-size: 1.125rem;
  padding: 19px 36px;
}

@media screen and (max-width: 575px) {
  .btn--lg {
    padding: 15px 30px;
  }
}

.btn--sm {
  font-size: 0.875rem;
  padding: 11px 20px;
}

@media screen and (max-width: 575px) {
  .btn--sm {
    padding: 8px 16px;
  }
}

.btn--facebook,
.btn--google,
.btn--linkedin {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  color: hsl(var(--dark)) !important;
  border: 1px solid hsl(var(--border-color)) !important;
}

.btn--facebook img,
.btn--google img,
.btn--linkedin img {
  width: 24px;
  height: 24px;
}

.btn--facebook:hover,
.btn--facebook:focus,
.btn--facebook:focus-visible,
.btn--google:hover,
.btn--google:focus,
.btn--google:focus-visible,
.btn--linkedin:hover,
.btn--linkedin:focus,
.btn--linkedin:focus-visible {
  border-color: hsl(var(--dark) / 0.1);
  background-color: hsl(var(--dark) / 0.1) !important;
}

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

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

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

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

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

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

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

.btn--base:hover,
.btn--base:focus .btn--base:focus-visible {
  background-color: hsl(var(--base-d-100)) !important;
  border: 1px solid hsl(var(--base-d-100)) !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-100)) !important;
  border: 1px solid hsl(var(--primary-d-100)) !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-100)) !important;
  border: 1px solid hsl(var(--secondary-d-100)) !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-100)) !important;
  border: 1px solid hsl(var(--danger-d-100)) !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-100)) !important;
  border: 1px solid hsl(var(--warning-d-100)) !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-100)) !important;
  border: 1px solid hsl(var(--info-d-100)) !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;
}

/* ======================= Button Css End ================================ */
/* ======================= Card Css Start ================================ */
.custom--card {
  border-radius: 6px;
  color: hsl(var(--black));
  background-color: hsl(var(--white));
  border: transparent;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

.custom--card .card-header {
  padding: 12px 24px;
  background-color: transparent;
  border-bottom: 1px solid hsl(var(--white) / 0.1);
}

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

.custom--card .card-footer {
  padding: 12px 24px;
  background-color: transparent;
  border-top: 1px solid hsl(var(--white) / 0.1);
}

.pricing--card {
  color: hsl(var(--dark));
  height: 100%;
  position: relative;
}

.pricing--card .card-body {
  padding: 32px 24px;
}

@media screen and (max-width: 767px) {
  .pricing--card .card-body {
    padding: 24px 18;
  }
}

.pricing--card .card-ribbion {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  color: hsl(var(--dark));
  background-color: hsl(var(--yellow));
  width: 120px;
  height: 24px;
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 12px;
}

.pricing--card .card-pricing {
  margin-bottom: 16px;
}

.pricing--card .card-pricing__title {
  font-size: 3rem;
  margin-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  color: inherit;
}

.pricing--card .card-pricing__title .sub,
.pricing--card .card-pricing__title .sup {
  font-size: 1.25rem;
  display: inline-block;
}

.pricing--card .card-pricing__title .sup {
  font-weight: 700;
  margin-bottom: auto;
}

.pricing--card .card-pricing__title .sub {
  margin-top: auto;
  margin-bottom: 12px;
}

.pricing--card .card-pricing__subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  color: inherit;
}

.pricing--card .card-heading {
  margin-bottom: 18px;
}

.pricing--card .card-heading__title {
  margin-bottom: 8px;
  color: inherit;
}

.pricing--card .card-heading__desc {
  font-size: 0.875rem;
  color: inherit;
}

.pricing--card .card-feature-list {
  margin-top: 36px;
}

@media screen and (max-width: 767px) {
  .pricing--card .card-feature-list {
    margin-top: 24px;
  }
}

.pricing--card .card-feature-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.pricing--card .card-feature-list__item:not(:last-child) {
  margin-bottom: 18px;
}

.pricing--card .card-feature-list__item i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.75rem;
  background-color: hsl(var(--base) / 0.1);
  color: hsl(var(--base));
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.pricing--card .card-feature-list__item i[class*="times"] {
  background-color: hsl(var(--dark) / 0.1);
  color: hsl(var(--dark));
}

.pricing--card .card-feature-list__item i[class*="times"] + span {
  color: hsl(var(--dark) / 0.8);
}

.pricing--card.active {
  color: hsl(var(--white));
  background-color: hsl(var(--dark));
}

.pricing--card.active .card-body {
  background-color: transparent;
}

.pricing--card.active .card-feature-list i[class*="times"] {
  background-color: hsl(var(--white) / 0.1);
  color: hsl(var(--white));
}

.pricing--card.active .card-feature-list i[class*="times"] + span {
  color: hsl(var(--white) / 0.8);
}

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

label.required::after {
  content: "*";
  display: inline-block;
  font-weight: 500;
  color: hsl(var(--danger));
  margin-left: 5px;
}

.form-group:not(:last-child) {
  margin-bottom: 1rem;
}

/* Form Select */
.select {
  color: hsl(var(--black) / 0.6) !important;
}

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

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

/* Form Select End */
/* Form Control Start */
.form--control {
  border-radius: 6px;
  font-weight: 500;
  outline: none;
  width: 100%;
  padding: 11px 16px;
  background-color: hsl(var(--body-bg) / 0.5);
  border: 1px solid hsl(var(--border-color));
  color: hsl(var(--dark));
  line-height: 1.5;
  transition: 0.3s;
}

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

.form--control::-webkit-input-placeholder {
  color: hsl(var(--dark) / 0.3);
}

.form--control::-moz-placeholder {
  color: hsl(var(--dark) / 0.3);
}

.form--control:-ms-input-placeholder {
  color: hsl(var(--dark) / 0.3);
}

.form--control::-ms-input-placeholder {
  color: hsl(var(--dark) / 0.3);
}

.form--control::placeholder {
  color: hsl(var(--dark) / 0.3);
}

.form--control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: hsl(var(--body-bg) / 0.5);
  border-color: hsl(var(--base));
}

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

.form--control[type="file"] {
  line-height: 50px;
  padding: 0;
  position: relative;
}

.form--control[type="file"]::-webkit-file-upload-button {
  border: 1px solid hsl(var(--black) / 0.08);
  padding: 4px 6px;
  border-radius: 0.2em;
  background-color: hsl(var(--base)) !important;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  line-height: 25px;
  position: relative;
  margin-left: 15px;
  color: hsl(var(--body-color)) !important;
}

.form--control[type="file"]::file-selector-button {
  border: 1px solid hsl(var(--black) / 0.08);
  padding: 4px 6px;
  border-radius: 0.2em;
  background-color: hsl(var(--base)) !important;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  line-height: 25px;
  position: relative;
  margin-left: 15px;
  color: hsl(var(--body-color)) !important;
}

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

.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 {
  max-height: 250px;
  resize: none;
  overflow-y: auto;
  min-height: 70px;
}

/* 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 */
/* Show Hide Password */
input#your-password,
input#confirm-password {
  padding-right: 50px;
}

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

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

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

/* Custom Checkbox Design */
.form--check a {
  display: inline;
}

.form--check .form-check-input {
  -webkit-box-shadow: none;
  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.2);
  cursor: pointer;
}

.form--check .form-check-input:checked {
  background-color: hsl(var(--base)) !important;
  border-color: hsl(var(--base)) !important;
  -webkit-box-shadow: none;
  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 5 Free";
  font-weight: 900;
  color: hsl(var(--white));
  font-size: 0.6875rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.form--check .form-check-label {
  width: calc(100% - 16px);
  padding-left: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

.form--check a {
  color: hsl(var(--base));
}

.form--check a:hover,
.form--check a:focus {
  color: hsl(var(--base-d-200));
}

/* Custom Radio Design */
.form--radio .form-check-input {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid hsl(var(--black) / 0.2);
  position: relative;
  background-color: transparent;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.form--radio .form-check-input:active {
  -webkit-filter: brightness(100%);
  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: 7px;
  height: 7px;
  background-color: hsl(var(--base));
  border-radius: 50%;
  z-index: 999;
}

.form--radio .form-check-label {
  font-weight: 600;
  width: calc(100% - 16px);
  padding-left: 12px;
  cursor: pointer;
  font-size: 0.875rem;
}

/*  Custom Switch Design */
.form--switch .form-check-input {
  border-radius: 3px;
  background-image: none;
  position: relative;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  background-color: hsl(var(--black) / 0.2) !important;
  padding: 10px !important;
  margin-left: 0;
  margin-bottom: 5px;
  border-radius: 40px;
  width: 70px;
  height: 38px;
  cursor: pointer;
}

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

.form--switch .form-check-input::before {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  background-color: hsl(var(--white));
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 2px;
  left: 5px;
  border-radius: 50%;
  -webkit-transition: 0.2s linear;
  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% - 33px);
  background-color: hsl(var(--white)) !important;
}

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

.form--switch .form-check-label {
  width: calc(100% - 14px);
  padding-left: 5px;
  cursor: pointer;
}

/*  Custom Switch End Design */
.input--group {
  position: relative;
  border-radius: 6px;
  border: 1px solid hsl(var(--border-color));
}

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

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

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

.input--group .input-group-text {
  border-width: 0px;
  height: calc(100% - 10px);
  margin: 5px;
  border-radius: 6px;
  background-color: hsl(var(--black) / 0.1);
  color: hsl(var(--body-color));
}

.input--group-text {
  margin-left: 5px;
}

.input--group .form--control[readonly] {
  background: hsl(var(--black) / 0.3) !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.3) !important;
}

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

/* ================================= Form Css End =========================== */
/* ================================= Modal Css Start ======================== */
.custom--modal .modal-header {
  border-bottom: 1px solid hsl(var(--black) / 0.12);
  padding: 15px;
}

.custom--modal .modal-header.close {
  width: 35px;
  height: 35px;
  background-color: hsl(var(--danger));
  font-size: 1.5625rem;
  line-height: 1;
  border-radius: 4px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

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

.custom--modal .modal-header.close :focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom--modal .modal-content {
  border-radius: 10px !important;
}

.custom--modal .modal-body {
  padding: 15px;
}

.custom--modal .modal-icon i {
  font-size: 2rem;
  color: hsl(var(--base));
  border: 3px solid hsl(var(--base));
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
}

.custom--modal .modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px;
  border-top: 1px solid hsl(var(--black) / 0.12);
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/* ================================= Modal Css End ========================== */
/* ================================= Pagination Css Start =================== */
.pagination {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

.pagination .page-item .page-link {
  border: 1px solid hsl(var(--black) / 0.15);
  margin: 0 5px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  font-weight: 500;
  padding: 0;
  color: hsl(var(--body-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 {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* ================================= Pagination Css End ===================== */
/* ================================= Table Css Start ======================== */
/* Table Content Css start */
@media screen and (max-width: 374px) {
  .customer {
    display: block;
    text-align: left;
  }
}

.customer__thumb {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (max-width: 374px) {
  .customer__thumb {
    margin-left: auto;
  }
}

.customer__content {
  width: calc(100% - 35px);
  padding-left: 15px;
  text-align: left;
}

@media screen and (max-width: 424px) {
  .customer__content {
    padding-left: 8px;
  }
}

@media screen and (max-width: 374px) {
  .customer__content {
    width: 100%;
    padding-left: 0px;
    padding-top: 5px;
  }
}

.customer__name {
  margin-bottom: 0;
  font-size: 0.8125rem;
  color: hsl(var(--black) / 0.7);
}

.action-buttons {
  gap: 10px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.action-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.edit-btn {
  color: hsl(var(--info));
  background-color: hsl(var(--info) / 0.08);
}

.delete-btn {
  color: hsl(var(--danger));
  background-color: hsl(var(--danger) / 0.08);
}

.table-header {
  padding: 8px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

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

.table thead tr th {
  background-color: hsl(var(--white));
  text-align: center;
  padding: 15px 20px;
  color: hsl(var(--black) / 0.7);
  font-family: var(--heading-font);
  font-weight: 600;
  border-bottom: 0;
  max-width: 170px;
  font-size: 0.875rem;
  /* border: 1px solid hsl(var(--black)/0.08); */
  background-color: hsl(var(--base) / 0.03);
}

.table tbody tr:nth-child(odd) {
  background: hsl(var(--black) / 0.03);
}

.table thead {
  background: hsl(var(--base) / 0.1);
}

.table thead tr th:not(:first-child) {
  border-left: 0;
}

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

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

/* .table thead tr th:nth-child(2) {
    text-align: left;
} */

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

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

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

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

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

.table tbody tr td {
  text-align: center;
  vertical-align: middle;
  padding: 10px 20px;
  border-width: 1px;
  border: 0;
  font-family: var(--heading-font);
  color: hsl(var(--black) / 0.7);
  font-weight: 500;
  max-width: 170px;
  font-size: 0.8125rem;
  /* border-bottom: 1px solid hsl(var(--black)/0.08); */
  /* border-right: 1px solid hsl(var(--black)/0.08); */
}

.table tbody tr td::before {
  content: attr(data-label);
  font-family: var(--heading-font);
  font-size: 0.9375rem;
  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-left: 1px solid hsl(var(--black)/0.08); */
  font-size: 0.875rem;
  min-width: 70px;
}

.table tbody tr td:last-child {
  text-align: right;
  /* border-right: 1px solid hsl(var(--black)/0.08); */
}

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

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

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

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

  .table--responsive--md tbody tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    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--md tbody tr td:last-child {
    border: none;
  }

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

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

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

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

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

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

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

  .table--responsive--lg tbody tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    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;
  }

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

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

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

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

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

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

  .table--responsive--xl tbody tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    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;
  }

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

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

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

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

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

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

  .table--responsive--xxl tbody tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    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--xxl tbody tr td:last-child {
    border: none;
  }

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

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

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

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

.custom--tab .nav-item:not(:first-child) .nav-link,
.custom--tab .nav-item:not(:last-child) .nav-link {
  border-right-color: hsl(var(--border-color)) !important;
}

.custom--tab .nav-item:first-child .nav-link {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
  border-left-color: hsl(var(--border-color)) !important;
  border-right-color: hsl(var(--border-color)) !important;
}

.custom--tab .nav-item:last-child .nav-link {
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-right-color: hsl(var(--border-color)) !important;
}

.custom--tab .nav-link {
  font-weight: 500;
  color: hsl(var(--body-color));
  padding: 10px 20px;
  border-radius: 0px;
  background-color: hsl(var(--white)) !important;
  border: 1px solid hsl(var(--border-color)) !important;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
}

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

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

.custom--badge.badge.bg--base.rounded-circle {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  border-radius: 50%;
}

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

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

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

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

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

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

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

.badge--yellow-solid {
  background-color: hsl(var(--yellow)) !important;
  color: hsl(var(--dark)) !important;
}

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

.badge--dark {
  background-color: hsl(var(--dark) / 0.15) !important;
  color: hsl(var(--white)) !important;
}

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

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

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

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

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

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

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

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

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

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

.custom--alert__link {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ================================= Alert Css End ========================== */
/* ================================= Preload Css Start ====================== */
.preloader {
  position: fixed;
  z-index: 999999;
  background-color: hsl(var(--black));
  width: 100%;
  height: 100%;
}

.loader-p {
  border: 0 solid transparent;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: absolute;
  top: calc(50vh - 75px);
  left: calc(50vw - 75px);
}

.loader-p:before,
.loader-p:after {
  content: "";
  border: 1em solid hsl(var(--base));
  border-radius: 50%;
  width: inherit;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: loader 2s linear infinite;
  animation: loader 2s linear infinite;
  opacity: 0;
}

.loader-p:before {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

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

@keyframes loader {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

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

/* ================================= Preload Css End ======================== */
/* ================================= Header Css Start ======================= */
.header {
  width: 100%;
  padding: 16px 0;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background-color: hsl(var(--white));
  z-index: -1;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

@media screen and (max-width: 991px) {
  .header {
    padding: 10px 0;
    backdrop-filter: blur(10px);
    background: hsl(var(--white) / 0.7);
    border-bottom: 1px solid hsl(var(--black) / 0.05);
    max-height: 100vh;
    overflow-y: auto;
  }

  .header::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }

  .header::-webkit-scrollbar-thumb {
    border-radius: 0px;
  }
}

.header.fixed-header {
  position: fixed;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  -webkit-animation: slide-down 0.8s;
  animation: slide-down 0.8s;
  background-color: hsl(var(--white));
  border-bottom: 1px solid hsl(var(--border-color));
}

.header.add-bg {
  background-color: hsl(var(--white));
}

.header.add-bg::before {
  height: 100%;
}

.header.internal-page-header {
  position: relative;
  background-color: hsl(var(--white));
}

.header.internal-page-header.fixed-header {
  position: sticky;
}

.navbar {
  padding: 0 !important;
}

@media screen and (max-width: 991px) {
  .navbar {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand.logo img {
  max-width: 220px;
  max-height: 60px;
}

@media screen and (max-width: 1199px) {
  .navbar-brand.logo img {
    max-width: 200px;
  }
}

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

@media screen and (max-width: 991px) {
  .navbar-brand {
    margin-right: auto;
  }
}

.navbar-toggler.header-button {
  border-color: transparent;
  color: hsl(var(--black));
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  width: auto;
  font-size: 2.5rem;
}

.navbar-toggler.header-button:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.navbar-toggler.header-button[aria-expanded="true"] i::before {
  content: "\f00d";
}

.navbar-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

@media screen and (max-width: 991px) {
  .navbar-buttons {
    margin-right: 16px;
  }
}

/* @media screen and (max-width: 991px) {
    .dropdown--lang {
        margin-top: 10px;
    }
} */

.dropdown--lang .dropdown-toggle {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: hsl(var(--black));
}

.dropdown--lang .dropdown-toggle::after {
  content: "\f107";
  font-size: 0.9375rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0px;
  margin-top: 4px;
  border: none;
}

.dropdown--lang .dropdown-toggle[aria-expanded="true"]::after {
  content: "\f106";
}

.dropdown--lang .dropdown-toggle__flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.dropdown--lang .dropdown-menu {
  padding: 0px;
  min-width: 125px;
  background-color: hsl(var(--white));
  border-color: hsl(var(--black) / 0.1);
}

@media screen and (max-width: 991px) {
  .dropdown--lang .dropdown-menu {
    width: 125px;
    position: absolute;
  }
}

.dropdown--lang .dropdown-item {
  padding: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: hsl(var(--black));
}

.dropdown--lang .dropdown-item__flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.dropdown--lang .dropdown-item:hover,
.dropdown--lang .dropdown-item:focus {
  color: hsl(var(--base));
  background-color: hsl(var(--base) / 0.1);
}

@media (min-width: 992px) {
  .nav-menu {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-menu .nav-item {
    position: relative;
  }

  .nav-menu .nav-item:not(:last-child) {
    margin-right: 16px;
  }

  .nav-menu .nav-link {
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--black)) !important;
    white-space: nowrap;
  }

  .nav-menu .nav-item.active .nav-link,
  .nav-menu .nav-item:hover .nav-link {
    color: hsl(var(--base)) !important;
  }
}

@media (min-width: 1200px) {
  .nav-menu .nav-item:not(:last-child) {
    margin-right: 24px;
  }
}

@media screen and (max-width: 991px) {
  .nav-menu {
    margin-top: 30px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .nav-menu .nav-item {
    text-align: left;
    display: block;
    position: relative;
    margin: 0;
    order: 1;
  }

  .nav-menu .nav-item:has(.dropdown--lang) {
    order: 0;
  }

  .nav-menu .nav-item:first-child {
    border-bottom: none;
  }

  .nav-menu .nav-item:last-child > a {
    border-bottom: 0;
  }

  .nav-menu .nav-link {
    margin-bottom: 8px;
    font-weight: 500;
    padding: 10px 10px 10px 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 !important;
    border-bottom: 1px solid hsl(var(--black) / 0.1);
    color: hsl(var(--black));
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
  }

  .nav-menu .nav-link:hover {
    color: hsl(var(--base));
    border-bottom-color: hsl(var(--base) / 0.5);
  }
}

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

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

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

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

/* ================================= Header Css End ======================= */
/* ================================= Footer Css Start ===================== */

.subscribe-form .input-group {
  border: 1px solid hsl(var(--border-color) / 0.2);
  gap: 8px;
  border-radius: 10px;
  transition: 0.3s;
}

.subscribe-form .input-group:focus-within {
  border-color: hsl(var(--base));
}

.subscribe-form .input-group input::placeholder {
  color: hsl(var(--white) / 0.6);
}

.subscribe-form .input-group input {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: hsl(var(--white) / 0.8);
  &:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    -webkit-text-fill-color: hsl(var(--white) / 0.8) !important;
    caret-color: hsl(var(--white) / 0.8);
  }
}

.subscribe-form .input-group button {
  margin: 4px;
  padding: 8px;
  border-radius: 8px !important;
}

.footer {
  margin-top: auto;
  background: linear-gradient(hsl(var(--black)), hsl(var(--base-d-900)));
  position: relative;
  z-index: 2;
}

.footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  z-index: -1;
}

.footer-item__logo {
  margin-bottom: 20px;
  display: inline-block;
}

.footer-item__logo img {
  max-width: 280px;
  max-height: 60px;
}

@media screen and (max-width: 1399px) {
  .footer-item__logo img {
    max-width: 250px;
  }
}

@media screen and (max-width: 1199px) {
  .footer-item__logo img {
    max-width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .footer-item__logo img {
    max-width: 180px;
  }
}

.footer-item__title {
  color: hsl(var(--white));
  line-height: 1;
  font-size: 1.563rem;
  font-weight: 500;
  margin-bottom: 36px;
}

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

.footer-item__title span {
  display: inline-block;
  color: hsl(var(--base));
}

.footer-item__desc {
  font-size: 16px;
  font-style: normal;
  line-height: 150%;
  color: hsl(var(--white) / 0.8);
}

.footer-item .social-list,
.footer-item .subscribe-form {
  margin-top: 16px;
}

.footer-item .social-list__link {
  color: hsl(var(--white));
  background-color: hsl(var(--white) / 0.15);
  border: 1px solid hsl(var(--white) / 0.1);
  backdrop-filter: blur(5px);
}

.footer-item .subscribe-form .btn:active {
  top: 0px;
}

.footer-menu__item:not(:last-child) {
  margin-bottom: 8px;
}

.footer-menu__item:not(:last-child) .footer-menu__link,
.footer-menu__item:not(:last-child) .footer-menu__text {
  padding-bottom: 8px;
}

.footer-menu__link,
.footer-menu__text {
  font-size: 16px;
  font-weight: 500;
  color: hsl(var(--white) / 0.8);
  transition: 0.2s linear;
}

.footer-menu__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-menu__link::before {
  content: "\f35a";
  font-family: "Font Awesome 5 Free";
  font-weight: 100;
  display: inline-block;
  flex-shrink: 0;
}

.footer-menu__link:hover,
.footer-menu__link:focus,
.footer-menu__text:hover,
.footer-menu__text:focus {
  color: hsl(var(--base));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border-color) / 0.2);
}

.footer-bottom-text {
  color: hsl(var(--white) / 0.8);
  text-align: center;
}

/* ================================= Footer Css End ======================= */
/* ================================= Scroll Top Start ===================== */
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  color: hsl(var(--white));
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  -webkit-transform: scale(0);
  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 {
  -webkit-transform: scale(1);
  transform: scale(1);
}

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

::selection {
  color: hsl(var(--white));
  background: hsl(var(--base-d-100));
}

/* ================================= Selection Css End ==================== */
/* ================================= Social Icon Css Start ================ */
.social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.social-list__item {
  margin-right: 10px;
}

.social-list__item:last-child {
  margin-right: 0;
}

.social-list__link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  color: hsl(var(--body-color));
  background-color: hsl(var(--body-bg));
}

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

@media screen and (max-width: 767px) {
  .social-list__link {
    width: 35px;
    height: 35px;
    font-size: 0.875rem;
  }
}

/* ================================= Social Icon Css End ================== */
/* ================================= Sidebar CSS Start ====================== */
@media screen and (min-width: 992px) {
  .sidebar {
    position: sticky;
    top: 100px;
  }
}

@media screen and (max-width: 991px) {
  .sidebar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0px 48px;
  }

  .sidebar > .sidebar-block {
    flex-grow: 1;
  }
}

.sidebar-block {
  border: 1px solid hsl(var(--black) / 0.1);
  border-radius: 6px;
}

.sidebar-block:not(:last-child) {
  margin-bottom: 24px;
}

.sidebar-block__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0px;
  color: hsl(var(--white));
}

.tool-block__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0px;
  color: hsl(var(--body-color));
}

.sidebar-block__header {
  padding: 16px 12px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: hsl(var(--base));
}

.sidebar-block__body {
  border-top: none;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: hsl(var(--white));
}

.tools-list__item:not(:last-child) {
  border-bottom: 1px solid hsl(var(--border-color));
}

.tools-list__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 12px;
  font-weight: 500;
  color: hsl(var(--dark));
}

.tools-list__link i {
  font-size: 1.125rem;
  color: hsl(var(--base));
}

.tools-list__link:hover,
.tools-list__link:focus {
  color: hsl(var(--base));
}

.latest-blog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 12px;
}

.latest-blog-item:not(:last-child) {
  border-bottom: 1px solid hsl(var(--black) / 0.1);
}

.latest-blog-item__thumb {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 80px;
  max-height: 80px;
  border-radius: 3px;
  overflow: hidden;
}

@media screen and (max-width: 424px) {
  .latest-blog-item__thumb {
    width: 60px;
  }
}

.latest-blog-item__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.latest-blog-item__content {
  width: calc(100% - 80px);
}

@media screen and (max-width: 424px) {
  .latest-blog-item__content {
    width: calc(100% - 60px);
  }
}

.latest-blog-item__title {
  margin-bottom: 5px;
}

.latest-blog-item__title a {
  color: hsl(var(--dark));
  font-weight: 600;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.latest-blog-item__title a:hover,
.latest-blog-item__title a:focus {
  color: hsl(var(--base));
}

.latest-blog-item__date {
  font-size: 0.8125rem;
  font-weight: 500;
}

/* ================================= Sidebar CSS End ======================== */
/* ================================ Page Section Start ====================== */
.page-section {
  position: relative;
}

.page-content > *:not(:last-child) {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .page-content > *:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* ================================ Page Section End ======================== */
/* ================================ Banner Section Start ==================== */
.banner-section {
  padding-top: 54px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

@media (max-width: 991px) {
  .banner-section {
    padding-top: 61px;
  }
}

.banner-section__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.2;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right bottom;
  object-position: right bottom;
  user-select: none;
}

.banner-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    hsl(var(--white) / 0),
    hsl(var(--white)),
    hsl(var(--white)),
    hsl(var(--white) / 0)
  );
  z-index: -1;
}

.banner-section .container {
  position: relative;
  z-index: 2;
  &::before {
    content: "";
    position: absolute;
    top: -54px;
    left: calc(100% - 50px);
    width: 100vw;
    height: 100vh;
    border-left: 50px solid hsl(var(--base-d-300));
    background: hsl(var(--body-color));
    transform: skewX(45deg);
    transform-origin: top;
    z-index: -1;
    @media (max-width: 991px) {
      top: -61px;
      border-left-width: 30px;
    }
  }
  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: calc(100% - 50px);
    width: 100vw;
    height: 100vh;
    border-right: 50px solid hsl(var(--base-d-300));
    background: hsl(var(--body-color));
    transform: skewX(45deg);
    transform-origin: bottom;
    z-index: -1;
    @media (max-width: 991px) {
      border-right-width: 30px;
    }
  }
}

.banner-content {
  padding-top: 100px;
  padding-bottom: 200px;
  position: relative;
  z-index: 3;
  @media (max-width: 1199px) {
    padding-top: 80px;
    padding-bottom: 180px;
  }
  @media (max-width: 991px) {
    padding-top: 80px;
    padding-bottom: 160px;
    text-align: center;
  }
  @media (max-width: 767px) {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}

.banner-content__title {
  font-size: 4.375rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: -22px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1399px) {
  .banner-content__title {
    font-size: 3.75rem;
    margin-top: -18px;
    margin-bottom: 13px;
  }
}

@media screen and (max-width: 1199px) {
  .banner-content__title {
    font-size: 3.125rem;
    margin-top: -15px;
  }
}

@media screen and (max-width: 991px) {
  .banner-content__title {
    font-size: 2.813rem;
    margin-top: -13px;
  }
}

@media screen and (max-width: 767px) {
  .banner-content__title {
    font-size: 2.188rem;
    margin-top: -10px;
    margin-bottom: 11px;
  }
}

.banner-content__title span {
  letter-spacing: 2px;
  color: hsl(var(--base-l-1000));
  background: linear-gradient(
    45deg,
    hsl(var(--base)),
    hsl(var(--base-d-400)),
    hsl(var(--base))
  );
  background-clip: text;
  -webkit-text-stroke: 4px transparent;
  @media (max-width: 575px) {
    -webkit-text-stroke-width: 3px;
  }
  @media (max-width: 479px) {
    -webkit-text-stroke-width: 2px;
  }
}

.banner-content__desc {
  font-size: 1.125rem;
  font-size: 500;
}

@media screen and (max-width: 1199px) {
  .banner-content__desc {
    font-size: 1rem;
  }
}

@media screen and (max-width: 374px) {
  .banner-content__desc {
    font-size: 0.9375rem;
  }
}

.banner-content__buttons {
  margin-top: 33px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 15px;
}

@media screen and (max-width: 991px) {
  .banner-content__buttons .btn {
    padding: 11px 20px !important;
  }
}

@media screen and (max-width: 1199px) {
  .banner-content__buttons {
    margin-top: 29px;
  }
}

@media screen and (max-width: 991px) {
  .banner-content__buttons {
    margin-top: 28px;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .banner-content__buttons {
    margin-top: 25px;
    gap: 16px;
    justify-content: center;
  }
}

.banner-thumb {
  margin-right: -400px;
  @media (max-width: 1199px) {
    margin-right: -350px;
  }
}

.banner-thumb img {
  width: 100%;
  display: block;
  object-fit: contain;
}

/* ================================ Banner Section End ====================== */
/* ================================ SEO Tool Section Start ================== */
.seo-tool-block__heading {
  position: sticky;
  top: 100px;
}

@media screen and (max-width: 991px) {
  .seo-tool-block__heading {
    text-align: center;
    margin-bottom: 16px;
  }
}

.seo-tool-block__heading .icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 25px;
  @media (max-width: 1399px) {
    width: 65px;
    height: 65px;
  }
  @media (max-width: 1199px) {
    width: 60px;
    height: 60px;
  }
}

.seo-tool-block__heading .title {
  font-size: 3.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  @media (max-width: 1399px) {
    font-size: 2.813rem;
  }
  @media (max-width: 1199px) {
    font-size: 2.5rem;
  }
  @media (max-width: 991px) {
    font-size: 2.5rem;
  }
  @media (max-width: 767px) {
    font-size: 1.875rem;
  }
}

.seo-tool-block__heading .title span {
  display: inline-block;
  color: hsl(var(--base));
}

.seo-tool-block__heading .description {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

@media screen and (max-width: 575px) {
  .seo-tool-block__heading .description {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

.seo-tool-block:not(:last-child) {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .seo-tool-block:not(:last-child) {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 575px) {
  .seo-tool-block:not(:last-child) {
    margin-bottom: 60px;
  }
}

.seo-tool-search {
  backdrop-filter: blur(10px);
  background: hsl(var(--white) / 0.7);
  box-shadow: 0px 10px 40px 0px hsl(var(--black) / 0.05);
  border: 1px solid hsl(var(--base-l-500));
  border-radius: 10px;
  padding: 30px;
  position: relative;
  margin-top: -100px;
  z-index: 2;
  @media (max-width: 991px) {
    margin-top: -80px;
  }
  @media (max-width: 767px) {
    padding: 20px;
    margin-top: -60px;
  }
}

.seo-tool-search__title {
  font-size: 1.563rem;
  text-align: center;
  margin-bottom: 15px;
  @media (max-width: 991px) {
    font-size: 1.25rem;
  }
}

.seo-tool-search__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 6px;
  border: 1px solid hsl(var(--border-color));
  background-color: hsl(var(--white));
  transition: 0.3s;
}

.seo-tool-search__wrapper:focus-within {
  border-color: hsl(var(--base));
}

.seo-tool-search__wrapper:focus-within button {
  color: hsl(var(--base));
}

.seo-tool-search__btn {
  display: inline-block;
  padding: 12px;
  background-color: transparent;
  color: hsl(var(--dark) / 0.3);
  transition: 0.3s;
}

.seo-tool-search__input {
  width: 100%;
  border: none;
  color: hsl(var(--dark));
  background-color: transparent;
}

.seo-tool-search__input::-webkit-input-placeholder {
  color: hsl(var(--dark));
}

.seo-tool-search__input::-moz-placeholder {
  color: hsl(var(--dark));
}

.seo-tool-search__input:-ms-input-placeholder {
  color: hsl(var(--dark));
}

.seo-tool-search__input::-ms-input-placeholder {
  color: hsl(var(--dark));
}

.seo-tool-search__input::placeholder {
  color: hsl(var(--dark) / 0.3);
}

.seo-tool-search__input:focus {
  border: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.seo-tool-search-list {
  position: absolute;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  top: 100%;
  left: 0;
  right: 0;
  border-radius: 6px;
  border: 1px solid hsl(var(--border-color));
  background-color: hsl(var(--white));
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.seo-tool-search-list__link {
  width: 100%;
  padding: 12px;
  font-weight: 500;
  color: hsl(var(--dark));
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.seo-tool-search-list__link[data-ribbon]::after {
  content: attr(data-ribbon);
  display: inline-block;
  padding: 0px 10px;
  color: hsl(var(--dark));
  background-color: hsl(var(--yellow));
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  text-transform: capitalize;
}

.seo-tool-search-list__link img {
  width: 25px;
  height: 25px;
}

.seo-tool-search-list__link:hover,
.seo-tool-search-list__link:focus,
.seo-tool-search-list__item.active .seo-tool-search-list__link {
  color: hsl(var(--dark));
  border-color: hsl(var(--base) / 0.15);
  background-color: hsl(var(--base) / 0.15);
}

.seo-tool-search-list__text {
  width: 100%;
  display: inline-block;
  padding: 12px;
  text-align: center;
  font-weight: 500;
}

.seo-tool-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

@media screen and (max-width: 767px) {
  .seo-tool-cards {
    gap: 16px;
  }
}

@media screen and (max-width: 575px) {
  .seo-tool-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-body .text {
  padding: 5px 0;
}

.card-body .text:first-child {
  padding-top: 10px;
}

.card-body .text:last-child {
  padding-bottom: 10px;
}

.seo-tool-wrap .seo-tool-block:nth-child(even) .title-col {
  @media (min-width: 992px) {
    order: 2;
  }
}

.seo-tool-cards-2 .seo-tool-card {
  width: calc(25% - 18px);
}

.seo-tool-card:nth-child(7n + 2) {
  background: hsl(var(--success) / 0.04);
}
.seo-tool-card:nth-child(7n + 3) {
  background: hsl(var(--base) / 0.04);
}
.seo-tool-card:nth-child(7n + 4) {
  background: hsl(var(--primary) / 0.04);
}
.seo-tool-card:nth-child(7n + 5) {
  background: hsl(var(--danger) / 0.04);
}
.seo-tool-card:nth-child(7n + 6) {
  background: hsl(var(--info) / 0.04);
}
.seo-tool-card:nth-child(7n + 7) {
  background: hsl(var(--warning) / 0.04);
}
.seo-tool-card {
  width: calc(100% / 3 - 16px);
  background: hsl(var(--body-color) / 0.01);
  border: 1px solid hsl(var(--body-color) / 0.05);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: 0.6s;
  z-index: 2;
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background: hsl(var(--base-l-900) / 0.5);
    border-radius: 50%;
    transform: translate(-30%, -30%);
    transition: 0.6s;
    z-index: -1;
  }
  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    background: hsl(var(--base-l-900) / 0.5);
    border-radius: 50%;
    transform: translate(30%, 30%);
    transition: 0.6s;
    z-index: -1;
  }
  &:hover {
    background: hsl(var(--white));
    box-shadow: 0px 10px 40px 0px hsl(var(--black) / 0.05);
    border-color: transparent;
    transform: translateY(-5px);
    &::before,
    &::after {
      width: 120px;
      height: 120px;
    }
  }
}

@media screen and (max-width: 767px) {
  .seo-tool-card,
  .seo-tool-cards-2 .seo-tool-card {
    width: calc(100% / 3 - 10.7px);
  }
}

@media screen and (max-width: 575px) {
  .seo-tool-card,
  .seo-tool-cards-2 .seo-tool-card {
    width: calc(50% - 8px);
    padding: 20px 15px;
  }
}

.seo-tool-card-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 40px;
  @media (max-width: 1399px) {
    padding: 30px;
  }
  @media (max-width: 1199px) {
    gap: 20px;
    padding: 25px;
  }
}

.seo-tool-card-btn i {
  display: block;
  text-align: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 40px;
  color: hsl(var(--white));
  background: hsl(var(--base));
  border-radius: 50%;
  transform: rotate(-45deg);
  @media (max-width: 1199px) {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 35px;
  }
  @media (max-width: 767px) {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 30px;
  }
}

.seo-tool-card-btn .txt {
  text-align: center;
  display: block;
  font-size: 25px;
  line-height: 1;
  font-weight: 500;
  color: hsl(var(--body-color));
  @media (max-width: 1399px) {
    font-size: 20px;
  }
  @media (max-width: 767px) {
    font-size: 18px;
  }
}

.seo-tool-card__thumb {
  width: 60%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px;
  @media (max-width: 575px) {
    width: 70px;
  }
}

.seo-tool-card__name {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--dark));
  margin-bottom: -8px;
  display: block;
  padding-top: 20px;
  text-align: center;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  position: relative;
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: hsl(var(--base));
    transition: 0.6s;
  }
  &::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 15px;
    right: 15px;
    height: 1px;
    background: hsl(var(--body-color));
    transition: 0.6s;
  }
}

.seo-tool-card:hover .seo-tool-card__name::before {
  background: hsl(var(--body-color));
  transform: rotateY(180deg);
}
.seo-tool-card:hover .seo-tool-card__name::after {
  background: hsl(var(--base));
  transform: rotateY(180deg);
}

@media screen and (max-width: 424px) {
  .seo-tool-card__name {
    font-size: 14px;
  }
}

.seo-tool-card:hover .seo-tool-card__name,
.seo-tool-card:focus .seo-tool-card__name {
  color: hsl(var(--base));
}

.seo-tool-card__ribbon {
  position: absolute;
  color: hsl(var(--dark));
  background-color: hsl(var(--yellow));
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  width: 58px;
  height: 20px;
  top: 10px;
  right: -10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 30px;
  border-bottom-right-radius: 0;
}

.seo-tool-card__ribbon::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 20px;
  top: 100%;
  right: 0;
  z-index: 2;
  background-color: hsl(var(--yellow-d-300));
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.seo-tool-card__ribbon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 100%;
  right: 0;
  background-color: hsl(var(--yellow));
  z-index: 1;
}

/* ================================ SEO Tool Section End ==================== */
/* ================================ SEO Tool Detals Start =================== */

.seo-tool-details__block:not(:last-child) {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .seo-tool-details__block:not(:last-child) {
    margin-bottom: 30px;
  }
}

.seo-tool-details-form-wrap {
  padding: 30px;
  background: hsl(var(--black) / 0.01);
  border: 1px solid hsl(var(--black) / 0.04);
  border-radius: 10px;
}

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

.seo-tool-details__result {
  border: 1px solid hsl(var(--black) / 0.04) !important;
}

.seo-tool-details__result .card-header {
  background: hsl(var(--black) / 0.01);
  border-bottom: 1px solid hsl(var(--black) / 0.04) !important;
}

.seo-tool-details__result .card-footer {
  background: hsl(var(--black) / 0.01);
  border-top: 1px solid hsl(var(--black) / 0.04) !important;
}

/* ================================ SEO Tool Detals End ===================== */
/* ================================ Blog Css Start ========================== */
.blog-item {
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--black) / 0.05);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
}

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

.blog-item__body {
  padding: 18px;
}

@media screen and (max-width: 767px) {
  .blog-item__body {
    padding: 18px;
  }
}

.blog-item__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.blog-item-meta {
  margin-bottom: 8px;
}

.blog-item-meta__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: hsl(var(--dark) / 0.5);
}

.blog-item-meta__item .text {
  font-size: 0.9375rem;
  font-weight: 500;
}

.blog-item__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.blog-item__title-link {
  color: hsl(var(--heading-color));
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.blog-item__read-more {
  color: hsl(var(--base));
  font-weight: 600;
}

.blog-item__read-more .icon {
  font-size: 1.125rem;
  display: inline-block;
}

.blog-item__read-more:hover,
.blog-item__read-more:focus {
  color: hsl(var(--base-d-200));
}

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

/* ================================ Blog Css End ============================ */
/* =============================== Blog Details Css Start =================== */
.blog-details {
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
  background-color: hsl(var(--white));
}

.blog-details__thumb {
  height: 450px;
  max-height: 100%;
}

@media screen and (max-width: 991px) {
  .blog-details__thumb {
    height: 350px;
  }
}

@media screen and (max-width: 767px) {
  .blog-details__thumb {
    height: 300px;
  }
}

.blog-details__content {
  padding: 35px 25px;
}

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

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

.blog-details__title {
  margin-top: 20px;
  margin-bottom: 15px;
}

.blog-details__desc {
  margin-bottom: 15px;
}

.blog-details__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid hsl(var(--border-color));
  padding-top: 25px;
  gap: 12px;
}

/* =============================== Blog Details Css End ===================== */
/* =============================== Contact Css Start ======================== */
.contact-section .section-heading__desc {
  max-width: 700px;
}

.contact-section__thumb {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.contact-section__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section__form {
  background: hsl(var(--black) / 0.01);
  border: 1px solid hsl(var(--black) / 0.03);
  border-radius: 10px;
  padding: 25px;
}

.contact-section .contact-info {
  height: 100%;
  background: hsl(var(--black) / 0.01);
  border: 1px solid hsl(var(--black) / 0.03);
  border-radius: 10px;
  padding: 20px;
}

.contact-section .contact-info__title {
  font-size: 25px;
  color: hsl(var(--body-color));
  line-height: 1;
  padding-bottom: 8px;
  position: relative;
  margin-bottom: 20px;
  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: hsl(var(--base));
  }
}

.contact-section .contact-info__desc {
  font-weight: 400;
  color: hsl(var(--body-color));
}

.contact-section .contact-info-list {
  margin-top: 26px;
}

.contact-section .contact-info-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-section .contact-info-list__item:not(:last-child) {
  border-bottom: 1px solid hsl(var(--black) / 0.05);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.contact-section .contact-info-list__item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: hsl(var(--white));
  border: 1px solid hsl(var(--base));
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.contact-section .contact-info-list__item-icon::after {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  background-color: hsl(var(--base));
}

.contact-section .contact-info-list__item-link,
.contact-section .contact-info-list__item-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: hsl(var(--body-color));
}

.contact-section .contact-info-list__item-link:hover,
.contact-section .contact-info-list__item-link:focus {
  color: hsl(var(--base));
}

.contact-section__map {
  width: 100%;
  aspect-ratio: 16 / 5;
  border-radius: 10px;
  overflow: hidden;
}

.contact-section__map iframe {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

/* =============================== Contact Css End ========================== */
/* =============================== Account Css Start ======================== */
.account {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.account-side {
  max-width: 50%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.account-left {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .account-left {
    max-width: 45%;
  }
}

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

.account-left::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(41.38%, rgba(0, 0, 0, 0)),
      color-stop(98.19%, #000000)
    ),
    transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 41.38%, #000000 98.19%),
    transparent;
  z-index: 1;
}

.account-left__thumb {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

.account-right {
  background-color: hsl(var(--white));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 48px 0px;
}

@media screen and (max-width: 991px) {
  .account-right {
    max-width: 55%;
  }
}

@media screen and (max-width: 767px) {
  .account-right {
    max-width: 100%;
    padding: 32px;
  }
}

.account-form {
  max-width: 700px;
}

@media screen and (max-width: 1499px) {
  .account-form {
    max-width: 600px;
  }
}

@media screen and (max-width: 1399px) {
  .account-form {
    max-width: 500px;
  }
}

@media screen and (max-width: 1199px) {
  .account-form {
    max-width: 400px;
  }
}

@media screen and (max-width: 991px) {
  .account-form {
    max-width: 380px;
  }
}

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

.account-form__logo {
  max-width: 240px;
  margin: 0px auto 32px auto;
  display: block;
}

.account-form__title {
  text-align: center;
  margin-bottom: 24px;
}

.account-form__label {
  display: inline-block;
  font-weight: 500;
  color: hsl(var(--dark) / 0.6);
  margin-bottom: 8px;
}

.account-form__social-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.account-form__social-buttons .btn {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.account .other-option {
  margin: 32px 0px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.account .other-option::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: hsl(var(--border-color));
  z-index: -1;
}

.account .other-option__text {
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--dark) / 0.6);
  background-color: hsl(var(--white));
  display: inline-block;
  padding: 0 16px;
}

.account .have-account__link {
  font-weight: 500;
  color: hsl(var(--base));
}

.account .have-account__link:hover,
.account .have-account__link:focus {
  color: hsl(var(--base-d-200));
}

.account .have-account__text {
  color: hsl(var(--dark) / 0.6);
  font-weight: 500;
  text-align: center;
}

.account .forgot-link {
  font-weight: 500;
  color: hsl(var(--base));
}

.account .forgot-link:hover,
.account .forgot-link:focus {
  color: hsl(var(--base-d-200));
}

/* =============================== Account Css End ========================== */
/*# sourceMappingURL=main.css.map */

.cursor-pointer {
  cursor: pointer;
}

/*============== ad section css start here ============== */
.ad-section {
  width: 100%;
  max-width: 728px;
  margin: 120px auto;
  @media (max-width: 767px) {
    margin: 80px auto;
  }
  @media (max-width: 575px) {
    margin: 60px auto;
  }
}

.ad-banner.ad-banner--page {
  max-width: 728px;
  margin: 0 auto;
}

.ad-section__link {
  width: 100%;
}

.ad-section__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.sidebar-thumb .ad-banner__thumb {
  min-height: 600px;
  max-height: 600px;
  height: 100%;
}

.blog-details-sidebar {
  position: sticky;
  top: 100px;
}

/*============== ad section css end here  ==============*/

/*========= serp item css start here ========= */

.serp-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.serp-item__wrapper {
  display: flex;
  width: calc(100% - 100px);
  gap: 20px;
}

.serp-item .copy-btn {
  padding: 8px !important;
}

.serp-item__content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.serp-item__content a {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-height: 1.2;
  font-size: 15px;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .serp-item__wrapper {
    width: calc(100% - 80px);
    gap: 10px;
  }

  .serp-item .copy-btn {
    font-size: 10px;
    padding: 5px !important;
  }

  .serp-item__content a {
    font-size: 13px;
  }

  .serp-item {
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .custom--badge.badge.bg--base.rounded-circle {
    display: none;
  }
}

.list-group-item {
  padding: 10px 0;
  border: 0;
  gap: 10px;
  border-bottom: 1px solid hsl(var(--black) / 0.1);
}

.list-group-item:last-child {
  padding: 10px 0;
  border-bottom: 0;
}

.seo-tool-details .card-header {
  border-bottom: 0;
}

.seo-tool-details .card-body {
  padding: 20px !important;
}

.list-group-item span:last-child {
  text-align: right;
}

@media (max-width: 767px) {
  .list-group-item span {
    font-size: 14px;
  }
}

@media (max-width: 424px) {
  .list-group-item span {
    font-size: 13px;
  }
}

/* tab css start here  */
.nav-tabs .nav-link.active {
  background: hsl(var(--base));
  color: hsl(var(--white));
}

.nav-tabs {
  margin-bottom: 20px;
}

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

@media (max-width: 575px) {
  .nav-tabs .nav-link {
    padding: 5px;
    font-size: 13px;
  }
}

@media (max-width: 375px) {
  .nav-tabs .nav-link {
    padding: 5px 7px;
    font-size: 12px;
  }
}

textarea {
  overflow: hidden;
  resize: none;
  height: auto;
}

/*============ breadcrumb css start here ============ */
.breadcrumb {
  padding: 80px 0;
  position: relative;
  background-position: center !important;
  margin-bottom: 0;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 991px) {
  .breadcrumb {
    padding: 70px 0;
    background-position: 30% center !important;
  }
}

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

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

.breadcrumb::before {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  inset: 0;
  background: hsl(
    var(--secondary-h) calc(var(--secondary-s))
      calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.9)
  );
  background: hsl(var(--base-l-900));
  opacity: 0.5;
  z-index: -1;
}

.breadcrumb .container {
  position: relative;
  z-index: 2;
  &::before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 20px);
    width: 100vw;
    height: 100vh;
    border-left: 50px solid hsl(var(--base-l-300));
    background: hsl(var(--body-color));
    transform: skewX(45deg) translateY(-50%);
    transform-origin: top;
    z-index: -1;
    @media (max-width: 991px) {
      border-left-width: 30px;
    }
  }
  &::after {
    content: "";
    position: absolute;
    bottom: 50%;
    right: calc(100% + 20px);
    width: 100vw;
    height: 100vh;
    border-right: 50px solid hsl(var(--base-l-300));
    background: hsl(var(--body-color));
    transform: skewX(45deg) translateY(50%);
    transform-origin: bottom;
    z-index: -1;
    @media (max-width: 991px) {
      border-right-width: 30px;
    }
  }
}

.breadcrumb-wrapper {
  text-align: center;
}

.breadcrumb-title {
  font-size: 3.125rem;
  color: hsl(var(--body-color));
  margin-bottom: 0;
  @media (max-width: 767px) {
    font-size: 1.875rem;
  }
}

/*============ breadcrumb css end here ============ */

.form-check-input:checked[type="radio"] {
  background-image: none !important;
}
/* error */

.error-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: fit-content;
  text-align: center;
}
.error-btn .icon svg {
  width: 20px;
  height: 20px;
  fill: hsl(var(--base));
  transition: all 0.3s;
}
.error-btn:hover .icon svg {
  fill: hsl(var(--white)) !important;
}
.error .description,
.error .title {
  color: hsl(var(--black));
}
.error .title {
  margin-top: 45px;
  margin-bottom: 20px;
}

.seo-tool-search {
  z-index: 5;
}
