@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

/* ========================= Css Variables Start ======================== */
:root {
  /* Font Family */
  --heading-font: "Raleway", serif;
  --body-font: "Open Sans", serif;
  /* ========================= Theme Color Start ============================= */
  /* Base Color */
  --base-h: 229;
  --base-s: 42%;
  --base-l: 42%;
  --base: var(--base-h) var(--base-s) var(--base-l);
  --base-d-100: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.1);
  --base-d-200: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.2);
  --base-d-300: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.3);
  --base-d-400: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.4);
  --base-d-500: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.5);
  --base-d-600: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.6);
  --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
  --base-d-800: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.8);
  --base-d-900: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.9);
  --base-d-1000: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 1);
  --base-l-100: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.1);
  --base-l-200: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.2);
  --base-l-300: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.3);
  --base-l-400: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.4);
  --base-l-500: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.5);
  --base-l-600: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.6);
  --base-l-700: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.7);
  --base-l-800: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.8);
  --base-l-900: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.9);
  --base-l-1000: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 1);

  /* ========================= Theme Color End ============================= */
  /* ========================= Color Variables Start =========================== */
  --white: 0 0% 100%;
  --body-color: 226 10% 42%;
  --heading-color: 240 9% 23%;
  --black: 0 0% 0%;
  --border-color: 208 14% 79%;
  --section-bg: 240 14% 95%;
  --background-color: var(--black);
  /* ================================ Box Shadow Start =============================== */
  --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);
  --box-shadow-two: 0px 2px 8px 0px #63636333;
  /* ================================ Box Shadow End =============================== */
  /* ============================== Bootstrap Modifier Start ============================== */
  /* Primary Color */
  --primary-h: 238;
  --primary-s: 100%;
  --primary-l: 40%;
  --primary: var(--primary-h) var(--primary-s) var(--primary-l);
  --primary-d-100: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.1);
  --primary-d-200: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.2);
  --primary-d-300: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.3);
  --primary-d-400: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.4);
  --primary-d-500: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.5);
  --primary-l-100: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.1);
  --primary-l-200: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.2);
  --primary-l-300: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.3);
  --primary-l-400: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.4);
  --primary-l-500: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.5);
  /* Secondary Color */
  --secondary-h: 208;
  --secondary-s: 7%;
  --secondary-l: 46%;
  --secondary: var(--secondary-h) var(--secondary-s) var(--secondary-l);
  --secondary-d-100: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.1);
  --secondary-d-200: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.2);
  --secondary-d-300: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.3);
  --secondary-d-400: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.4);
  --secondary-d-500: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.5);
  --secondary-l-100: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.1);
  --secondary-l-200: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.2);
  --secondary-l-300: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.3);
  --secondary-l-400: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.4);
  --secondary-l-500: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.5);
  /* Success Color */
  --success-h: 112;
  --success-s: 100%;
  --success-l: 40%;
  --success: var(--success-h) var(--success-s) var(--success-l);
  --success-d-100: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.1);
  --success-d-200: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.2);
  --success-d-300: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.3);
  --success-d-400: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.4);
  --success-d-500: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.5);
  --success-l-100: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.1);
  --success-l-200: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.2);
  --success-l-300: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.3);
  --success-l-400: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.4);
  --success-l-500: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.5);
  /* Danger Color */
  --danger-h: 0;
  --danger-s: 96%;
  --danger-l: 63%;
  --danger: var(--danger-h) var(--danger-s) var(--danger-l);
  --danger-d-100: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.1);
  --danger-d-200: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.2);
  --danger-d-300: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.3);
  --danger-d-400: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.4);
  --danger-d-500: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.5);
  --danger-l-100: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.1);
  --danger-l-200: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.2);
  --danger-l-300: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.3);
  --danger-l-400: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.4);
  --danger-l-500: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.5);
  /* Warning Color */
  --warning-h: 45;
  --warning-s: 100%;
  --warning-l: 51%;
  --warning: var(--warning-h) var(--warning-s) var(--warning-l);
  --warning-d-100: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.1);
  --warning-d-200: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.2);
  --warning-d-300: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.3);
  --warning-d-400: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.4);
  --warning-d-500: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.5);
  --warning-l-100: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.1);
  --warning-l-200: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.2);
  --warning-l-300: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.3);
  --warning-l-400: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.4);
  --warning-l-500: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.5);
  /* Info Color */
  --info-h: 196;
  --info-s: 100%;
  --info-l: 50%;
  --info: var(--info-h) var(--info-s) var(--info-l);
  --info-d-100: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.1);
  --info-d-200: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.2);
  --info-d-300: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.3);
  --info-d-400: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.4);
  --info-d-500: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.5);
  --info-l-100: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.1);
  --info-l-200: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.2);
  --info-l-300: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.3);
  --info-l-400: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.4);
  --info-l-500: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.5);
  /* dark color */
  --dark: 227 43% 4%;
  /* ============================== Bootstrap Modifier End ============================== */
  /* ============================== Dark Mood Color Modify Start ============================== */
  /* ============================== Dark Mood Color Modify End ============================== */
}

:root [data-theme="dark"] {
  --white: 200 9% 7%;
  --black: 210 40% 98%;
}

/* ========================= Css Variables End =========================== */
/* Fully Fit image Css */
.fit-image,
.dashboard .user-info__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ============================= 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,
.dashboard .user-info__button,
.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 ============================= */
/* ===================== Font Size For responsive devices 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,
.dashboard .user-info .user-info-dropdown__link {
  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 Size For responsive devices End =================== */
/* ================================= Common Typography Css Start =========================== */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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(--heading-color));
  line-height: 1.2;
  font-weight: 600;
}

@media screen and (max-width: 767px) {

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0 0 15px 0;
  }
}

h1 {
  font-weight: 700;
}

h1 {
  font-size: 3.75rem;
}

@media screen and (max-width: 1399px) {
  h1 {
    font-size: 3.125rem;
  }
}

@media screen and (max-width: 1199px) {
  h1 {
    font-size: 2.8125rem;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.1875rem;
  }
}

@media screen and (max-width: 575px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 3rem;
}

@media screen and (max-width: 1399px) {
  h2 {
    font-size: 2.8125rem;
  }
}

@media screen and (max-width: 1199px) {
  h2 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 2.1875rem;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 575px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 2rem;
}

@media screen and (max-width: 1399px) {
  h3 {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 1199px) {
  h3 {
    font-size: 1.5625rem;
  }
}

@media screen and (max-width: 991px) {
  h3 {
    font-size: 1.4375rem;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 575px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.5rem;
}

@media screen and (max-width: 1399px) {
  h4 {
    font-size: 1.3125rem;
  }
}

@media screen and (max-width: 1199px) {
  h4 {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 991px) {
  h4 {
    font-size: 1.1875rem;
  }
}

@media screen and (max-width: 767px) {
  h4 {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 575px) {
  h4 {
    font-size: 1.0625rem;
  }
}

h5 {
  font-size: 1.25rem;
}

@media screen and (max-width: 1399px) {
  h5 {
    font-size: 1.1875rem;
  }
}

@media screen and (max-width: 1199px) {
  h5 {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 991px) {
  h5 {
    font-size: 1.0625rem;
  }
}

@media screen and (max-width: 767px) {
  h5 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 575px) {
  h5 {
    font-size: 1rem;
  }
}

h6 {
  font-size: 1.125rem;
}

@media screen and (max-width: 1399px) {
  h6 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1199px) {
  h6 {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 991px) {
  h6 {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  h6 {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 575px) {
  h6 {
    font-size: 0.875rem;
  }
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a,
h6>a {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  -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(--base));
}

a:hover {
  color: hsl(var(--base-d-400));
}

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);
}

/* ================================= Common Typography Css End =========================== */
/* ================================= Custom Classes Css Start =========================== */
/* Column Extra Small Screen */
@media screen and (min-width: 425px) and (max-width: 575px) {
  .col-xsm-6 {
    width: 50%;
  }
}

/* Section Background */
.section-bg {
  background-color: hsl(var(--section-bg));
}

.text-muted {
  color: hsl(var(--black) / 0.6) !important;
}

/* Bg Image Css */
.bg-img {
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center;
}

/* Hide Scroll bar Css For Custom Modal */
.scroll-hide {
  position: absolute;
  overflow-y: hidden;
  padding-right: 17px;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .scroll-hide {
    padding-right: 0;
  }
}

.scroll-hide-sm {
  position: absolute;
  overflow-y: hidden;
  top: 0;
  left: 0;
  width: calc(100% - 0px);
}

/* 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 ==================== */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  .section-heading {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 991px) {
  .section-heading {
    margin-bottom: 30px;
  }
}

.section-heading__title {
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .section-heading__title {
    margin-bottom: 16px;
  }
}

.section-heading__subtitle {
  font-size: 14px;
  background-color: hsl(var(--section-bg));
  padding: 11px 16px;
  line-height: 1;
  border-radius: 8px;
  font-weight: 600;
  color: hsl(var(--heading-color));
  margin-bottom: 10px;
}

.section-heading__desc {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-size: clamp(1rem, 0.9431rem + 0.2427vw, 1.125rem);
}

.section-heading.style-left {
  text-align: left;
}

.section-heading.style-left .section-heading__desc {
  margin-left: 0;
}

/* ====================== Section Heading 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;
  color: hsl(var(--white)) !important;
}

.bg--warning {
  background-color: hsl(var(--warning)) !important;
}

.bg--info {
  background-color: hsl(var(--info)) !important;
}

/* ================================= Background Color Css End =========================== */
/* ================================= Color Css Start =========================== */
.text--base {
  color: hsl(var(--base)) !important;
}

.text--primary {
  color: hsl(var(--primary)) !important;
}

.text--secondary {
  color: hsl(var(--secondary)) !important;
}

.text--success {
  color: hsl(var(--success)) !important;
}

.text--danger {
  color: hsl(var(--danger)) !important;
}

.text--warning {
  color: hsl(var(--warning)) !important;
}

.text--info {
  color: hsl(var(--info)) !important;
}

/* ================================= Color 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 =========================== */
/* ================================= margin Css Start =========================== */
.my-120 {
  margin-top: 60px;
  margin-bottom: 60px;
}

@media (min-width: 576px) {
  .my-120 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .my-120 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}

.mt-120 {
  margin-top: 60px;
}

@media (min-width: 576px) {
  .mt-120 {
    margin-top: 80px;
  }
}

@media (min-width: 992px) {
  .mt-120 {
    margin-top: 120px;
  }
}

.mb-120 {
  margin-bottom: 60px;
}

@media (min-width: 576px) {
  .mb-120 {
    margin-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .mb-120 {
    margin-bottom: 120px;
  }
}

.my-60 {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  .my-60 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .my-60 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.mt-60 {
  margin-top: 30px;
}

@media (min-width: 576px) {
  .mt-60 {
    margin-top: 40px;
  }
}

@media (min-width: 992px) {
  .mt-60 {
    margin-top: 60px;
  }
}

.mb-60 {
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  .mb-60 {
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .mb-60 {
    margin-bottom: 60px;
  }
}

/* ================================= margin Css End =========================== */
/* ================================= padding Css Start =========================== */
.py-120 {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 576px) {
  .py-120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.pt-120 {
  padding-top: 60px;
}

@media (min-width: 576px) {
  .pt-120 {
    padding-top: 80px;
  }
}

@media (min-width: 992px) {
  .pt-120 {
    padding-top: 120px;
  }
}

.pb-120 {
  padding-bottom: 60px;
}

@media (min-width: 576px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .pb-120 {
    padding-bottom: 120px;
  }
}

.py-60 {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 576px) {
  .py-60 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.pt-60 {
  padding-top: 30px;
}

@media (min-width: 576px) {
  .pt-60 {
    padding-top: 40px;
  }
}

@media (min-width: 992px) {
  .pt-60 {
    padding-top: 60px;
  }
}

.pb-60 {
  padding-bottom: 30px;
}

@media (min-width: 576px) {
  .pb-60 {
    padding-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .pb-60 {
    padding-bottom: 60px;
  }
}

/* ================================= padding Css End =========================== */
/* =========================== Accordion Css start ============================= */
.custom--accordion .accordion-item {
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  background-color: hsl(var(--white)) !important;
  border-radius: 8px;
  overflow: hidden;
  border: 0;
}

.custom--accordion .accordion-item:not(:last-child) {
  margin-bottom: 16px;
}

.custom--accordion .accordion-body {
  padding: 24px;
  background-color: hsl(var(--white));
  padding-top: 0;
}

@media screen and (max-width: 575px) {
  .custom--accordion .accordion-body {
    padding: 15px;
    padding-top: 0;
  }
}

.custom--accordion .accordion-body .text {
  max-width: 95%;
  font-weight: 500;
}

@media screen and (max-width: 575px) {
  .custom--accordion .accordion-body .text {
    max-width: 100%;
    font-size: 15px;
  }
}

.custom--accordion:first-of-type .accordion-button.collapsed {
  border-radius: 5px;
}

.custom--accordion:last-of-type .accordion-button.collapsed {
  border-radius: 5px;
}

.custom--accordion .accordion-button {
  background-color: hsl(var(--white));
  color: var(--heading-color);
  font-size: 1.125rem;
  padding: 24px;
  font-weight: 600;
  padding-right: 60px;
}

@media screen and (max-width: 767px) {
  .custom--accordion .accordion-button {
    padding-right: 40px;
  }
}

@media screen and (max-width: 575px) {
  .custom--accordion .accordion-button {
    padding: 15px;
    padding-right: 35px;
    font-size: 1rem;
  }
}

.custom--accordion .accordion-button::after {
  background-image: none;
}

.custom--accordion .accordion-button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom--accordion .accordion-button:not(.collapsed) {
  background-color: hsl(var(--white)) !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom--accordion .accordion-button:not(.collapsed)::after {
  background-image: none;
  color: hsl(var(--heading-color));
}

.custom--accordion .accordion-button[aria-expanded="true"]::after,
.custom--accordion .accordion-button[aria-expanded="false"]::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f068";
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 24px;
  height: unset;
  font-size: 24px;
}

@media screen and (max-width: 575px) {

  .custom--accordion .accordion-button[aria-expanded="true"]::after,
  .custom--accordion .accordion-button[aria-expanded="false"]::after {
    font-size: 20px;
    right: 12px;
  }
}

.custom--accordion .accordion-button[aria-expanded="false"]::after {
  content: "\f067";
  color: hsl(var(--heading-color));
}

/* ================================= Accordion Css End =========================== */
/* ================================= Button Css Start =========================== */
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: none;
  background-color: none;
  border-color: none;
}

.pill {
  border-radius: 40px !important;
}

.btn {
  color: hsl(var(--white)) !important;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  border: 1px solid hsl(var(--border-color));
  font-family: var(--body-font);
  display: inline-block !important;
  font-size: 0.875rem;
  line-height: 1;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  border: 0 !important;
}

.btn:hover,
.btn:focus,
.btn:focus-visible {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn:active {
  top: 1px;
}

.btn--lg {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 400;
}

.btn--sm {
  padding: 9px 18px;
  font-weight: 600;
  font-size: 0.75rem;
}

.btn--xsm {
  padding: 5px 8px;
  font-size: 0.75rem;
}

.btn--icon {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 0.9375rem;
  padding: 0;
}

.btn--base {
  border: 1px solid hsl(var(--border-color) / 0.2);
  -webkit-box-shadow: 0px 1px 2px 0px #1012280d,
    0px 1px 2px 0px hsla(241, 63%, 15%, 0.251),
    0px -1px 1px 1px hsl(var(--base) / 0.25) inset,
    0px 1px 1px 1px hsl(var(--white) / 0.25) inset,
    0px 0px 0px 1px hsl(var(--base)) inset;
  box-shadow: 0px 1px 2px 0px #1012280d,
    0px 1px 2px 0px hsla(241, 63%, 15%, 0.251),
    0px -1px 1px 1px hsl(var(--base) / 0.25) inset,
    0px 1px 1px 1px hsl(var(--white) / 0.25) inset,
    0px 0px 0px 1px hsl(var(--base)) inset;
}

.btn--white {
  -webkit-box-shadow: 0px 1px 2px 0px #1018280d;
  box-shadow: 0px 1px 2px 0px #1018280d;
  font-weight: 400;
  color: hsl(var(--body-color)) !important;
  background-color: hsl(var(--white));
}

.btn--white:hover {
  border: 1px solid hsl(var(--body-color) / 0.2);
  background-color: hsl(var(--base) / 0.1);
}

.btn--base {
  background-color: hsl(var(--base)) !important;
}

.btn--base:hover,
.btn--base:focus .btn--base:focus-visible {
  background-color: hsl(var(--base-d-200)) !important;
  border: 1px solid hsl(var(--base-d-200)) !important;
}

.btn-outline--base {
  background-color: transparent !important;
  border: 1px solid hsl(var(--base)) !important;
  color: hsl(var(--base)) !important;
}

.btn-outline--base:hover,
.btn-outline--base:focus .btn-outline--base:focus-visible {
  background-color: hsl(var(--base)) !important;
  color: hsl(var(--white)) !important;
}

.btn--dark {
  background-color: hsl(var(--dark)) !important;
}

.btn--dark:hover,
.btn--dark:focus .btn--dark:focus-visible {
  opacity: 0.9;
}

.btn-outline--dark {
  background-color: transparent !important;
  border: 1px solid hsl(var(--dark)) !important;
  color: hsl(var(--dark)) !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--primary {
  background-color: hsl(var(--primary)) !important;
}

.btn--primary:hover,
.btn--primary:focus .btn--primary:focus-visible {
  background-color: hsl(var(--primary-d-200)) !important;
  border: 1px solid hsl(var(--primary-d-200)) !important;
}

.btn-outline--primary {
  background-color: transparent !important;
  border: 1px solid hsl(var(--primary)) !important;
  color: hsl(var(--primary)) !important;
}

.btn-outline--primary:hover,
.btn-outline--primary:focus .btn-outline--primary:focus-visible {
  background-color: hsl(var(--primary)) !important;
  color: hsl(var(--white)) !important;
}

.btn--secondary {
  background-color: hsl(var(--secondary)) !important;
}

.btn--secondary:hover,
.btn--secondary:focus .btn--secondary:focus-visible {
  background-color: hsl(var(--secondary-d-200)) !important;
  border: 1px solid hsl(var(--secondary-d-200)) !important;
}

.btn-outline--secondary {
  background-color: transparent !important;
  border: 1px solid hsl(var(--secondary)) !important;
  color: hsl(var(--secondary)) !important;
}

.btn-outline--secondary:hover,
.btn-outline--secondary:focus .btn-outline--secondary:focus-visible {
  background-color: hsl(var(--secondary)) !important;
  color: hsl(var(--white)) !important;
}

.btn--danger {
  background-color: hsl(var(--danger)) !important;
}

.btn--danger:hover,
.btn--danger:focus .btn--danger:focus-visible {
  background-color: hsl(var(--danger-d-200)) !important;
  border: 1px solid hsl(var(--danger-d-200)) !important;
}

.btn-outline--danger {
  background-color: transparent !important;
  border: 1px solid hsl(var(--danger)) !important;
  color: hsl(var(--danger)) !important;
}

.btn-outline--danger:hover,
.btn-outline--danger:focus .btn-outline--danger:focus-visible {
  background-color: hsl(var(--danger)) !important;
  color: hsl(var(--white)) !important;
}

.btn--success {
  background-color: hsl(var(--success)) !important;
}

.btn--success:hover,
.btn--success:focus .btn--success:focus-visible {
  background-color: hsl(var(--success-d-200)) !important;
  border: 1px solid hsl(var(--success-d-200)) !important;
}

.btn-outline--success {
  background-color: transparent !important;
  border: 1px solid hsl(var(--success)) !important;
  color: hsl(var(--success)) !important;
}

.btn-outline--success:hover,
.btn-outline--success:focus .btn-outline--success:focus-visible {
  background-color: hsl(var(--success)) !important;
  color: hsl(var(--white)) !important;
}

.btn--warning {
  background-color: hsl(var(--warning)) !important;
}

.btn--warning:hover,
.btn--warning:focus .btn--warning:focus-visible {
  background-color: hsl(var(--warning-d-200)) !important;
  border: 1px solid hsl(var(--warning-d-200)) !important;
}

.btn-outline--warning {
  background-color: transparent !important;
  border: 1px solid hsl(var(--warning)) !important;
  color: hsl(var(--warning)) !important;
}

.btn-outline--warning:hover,
.btn-outline--warning:focus .btn-outline--warning:focus-visible {
  background-color: hsl(var(--warning)) !important;
  color: hsl(var(--white)) !important;
}

.btn--info {
  background-color: hsl(var(--info)) !important;
}

.btn--info:hover,
.btn--info:focus .btn--info:focus-visible {
  background-color: hsl(var(--info-d-200)) !important;
  border: 1px solid hsl(var(--info-d-200)) !important;
}

.btn-outline--info {
  background-color: transparent !important;
  border: 1px solid hsl(var(--info)) !important;
  color: hsl(var(--info)) !important;
}

.btn-outline--info:hover,
.btn-outline--info:focus .btn-outline--info:focus-visible {
  background-color: hsl(var(--info)) !important;
  color: hsl(var(--white)) !important;
}

/* ================================= Button Css End =========================== */
/* ================================= Card Css Start =========================== */
.custom--card {
  border-radius: 8px;
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
  background-color: hsl(var(--white));
  border: transparent;
}

.custom--card .card-header {
  padding: 12px 24px;
  background-color: transparent;
  border-bottom: 1px solid hsl(var(--black) / 0.1);
}

.custom--card .card-header .card-title {
  margin-bottom: 0;
}

.custom--card .card-body {
  background-color: hsl(var(--white));
  padding: 24px;
  border-radius: 8px;
}

.custom--card .card-body .card-title {
  margin-bottom: 24px;
}

.custom--card .card-footer {
  padding: 12px 24px;
  background-color: transparent;
  border-top: 1px solid hsl(var(--black) / 0.1);
}

/* ================================= Card Css End =========================== */
/* ================================= Form Css Start =========================== */
/* Form Label */
.form--label {
  margin-bottom: 6px;
  font-size: 14px;
  color: hsl(var(--heading-color));
  font-weight: 600;
}

@media screen and (max-width: 424px) {
  .form--label {
    font-size: 14px;
  }
}

.form--label__text {
  font-size: 14px;
  color: hsl(var(--body-color));
  font-weight: 400;
}

.form-group {
  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: 8px;
  font-weight: 400;
  outline: none;
  width: 100%;
  padding: 8px 16px;
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--border-color));
  color: hsl(var(--black));
  line-height: 1;
  -webkit-box-shadow: 0px 1px 2px 0px #1018280d;
  box-shadow: 0px 1px 2px 0px #1018280d;
}

.form--control::-webkit-input-placeholder {
  color: hsl(var(--body-color));
}

.form--control::-moz-placeholder {
  color: hsl(var(--body-color));
}

.form--control:-ms-input-placeholder {
  color: hsl(var(--body-color));
}

.form--control::-ms-input-placeholder {
  color: hsl(var(--body-color));
}

.form--control::placeholder {
  color: hsl(var(--body-color));
}

.form--control:focus {
  border-color: hsl(var(--base));
}

.form--control.form-control:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.form--control:disabled,
.form--control[readonly] {
  background-color: hsl(var(--black) / 0.2);
  opacity: 1;
  border: 0;
}

.form--control[type="password"] {
  color: hsl(var(--black) / 0.5);
}

.form--control[type="password"]:focus {
  color: hsl(var(--black));
}

.form--control[type="file"] {
  line-height: 38px;
  padding: 0;
  position: relative;
}

.form--control[type="file"]::-webkit-file-upload-button {
  border: 1px solid hsl(var(--black) / 0.08);
  padding: 3px 4px;
  border-radius: 0.2em;
  font-size: 14px;
  background-color: hsl(var(--base)) !important;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  line-height: 20px;
  position: relative;
  margin-left: 6px;
  color: hsl(var(--white)) !important;
}

.form--control[type="file"]::file-selector-button {
  border: 1px solid hsl(var(--black) / 0.08);
  padding: 3px 4px;
  border-radius: 0.2em;
  font-size: 14px;
  background-color: hsl(var(--base)) !important;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  line-height: 20px;
  position: relative;
  margin-left: 6px;
  color: hsl(var(--white)) !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 {
  height: 130px;
}

/* Autofill Css */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-text-fill-color: hsl(var(--black)) !important;
  caret-color: hsl(var(--black));
}

/* Autofill Css End */
/* input group */
.input--group {
  position: relative;
}

/* Show Hide Password */
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 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form--check a {
  display: inline;
}

.form--check .form-check-input {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: hsl(var(--white));
  box-shadow: none !important;
  border: 0;
  position: relative;
  border-radius: 6px;
  width: 20px;
  height: 20px;
  border: 1px solid hsl(var(--black) / 0.2);
  cursor: pointer;
  margin-top: 0;
}

.form--check .form-check-input:checked {
  background-color: hsl(var(--base) / 0.06) !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(--base));
  font-size: 0.6875rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.form--check .form-check-label {
  font-weight: 600;
  width: calc(100% - 20px);
  padding-left: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  color: hsl(var(--heading-color));
}

@media screen and (max-width: 424px) {
  .form--check label {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 424px) {
  .form--check a {
    font-size: 0.875rem;
  }
}

/* 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: 50px;
  height: 24px;
  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: 20px;
  height: 20px;
  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(--success)) !important;
}

.form--switch .form-check-input:checked::before {
  left: calc(100% - 24px);
  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 */
/* ================================= Form Css End =========================== */
/* --======================Custom Input group Start ======================*/
.input--group {
  border-radius: 5px;
  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: 5px;
  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.2) !important;
}

.input--group .form--control[readonly]:focus {
  border-color: hsl(var(--black) / 0.2);
}

.input--group:has(.form--control[readonly]) {
  background: hsl(var(--black) / 0.2) !important;
}

.input--group:has(.form--control[readonly]):focus-within {
  border-color: hsl(var(--black) / 0.4) !important;
}

/* --======================Custom Input group End ======================*/
.input-group .input-group-text {
  border: 1px solid hsl(var(--border-color));
  background-color: #efeff3;
  -webkit-box-shadow: 0px 1px 2px 0px #1018280d;
  box-shadow: 0px 1px 2px 0px #1018280d;
  padding: 0 10px;
}

.input-group .input-group-text .form--control {
  border: 0 !important;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 30px;
}

.input-group .input-group-text:has(.form--control) {
  padding: 0;
}

.input-group .input-group-text .select2+.select2-container {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

.input-group .input-group-text:has(.select2+.select2-container) {
  height: 40px !important;
}

/* ================================= Modal Css Start =========================== */
.custom--modal .modal-header {
  border: 0;
  padding: 32px 40px;
  position: relative;
  z-index: 1;
  background: -webkit-gradient(linear,
      left top,
      right top,
      color-stop(-93%, #b7bfe1),
      to(hsl(var(--base))));
  background: linear-gradient(90deg, #b7bfe1 -93%, hsl(var(--base)) 100%);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .custom--modal .modal-header {
    padding: 24px;
  }
}

.custom--modal .modal-header__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.custom--modal .modal-header__shape img {
  width: 100%;
  height: 100%;
}

.custom--modal .modal-header .btn-close {
  margin: 0;
  padding: 0;
  background: none;
  width: unset;
  height: unset;
  opacity: 1;
  background-image: none;
  border-radius: 0;
  box-shadow: none;
}

.custom--modal .modal-header .btn-close__icon {
  width: 25px;
  height: 25px;
  background-color: hsl(var(--white));
  font-size: 1rem;
  color: hsl(var(--base));
  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;
  line-height: 1;
  border-radius: 50%;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.custom--modal .modal-header .btn-close__icon:hover {
  background-color: hsl(var(--danger-l-100));
  color: hsl(var(--white));
}

.custom--modal .modal-header .btn-close :focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom--modal .modal-header .modal-title {
  color: hsl(var(--white));
  margin-bottom: 10px;
}

.custom--modal .modal-header__desc {
  color: hsl(var(--white));
}

@media screen and (max-width: 424px) {
  .custom--modal .modal-header__desc {
    font-size: 12px;
  }
}

.custom--modal .modal-content {
  border-radius: 10px !important;
  border: 0;
}

.custom--modal .modal-body {
  padding: 32px 40px;
}

@media screen and (max-width: 767px) {
  .custom--modal .modal-body {
    padding: 24px;
  }
}

.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: 32px 40px;
  border-top: 1px solid hsl(var(--border-color));
  -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: flex-end;
  gap: 12px;
}

.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);
  border-radius: 6px;
  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 */
.action-buttons {
  gap: 4px;
  -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));
}

.delete-btn {
  color: hsl(var(--danger));
  background-color: hsl(var(--danger) / 0.08);
}

/* 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(--section-bg));
  text-align: center;
  padding: 15px 20px;
  font-family: var(--heading-font);
  font-weight: 600;
  max-width: 170px;
  font-size: 0.75rem;
  border-top: 1px solid hsl(var(--border-color) / 0.4);
  border-bottom: 1px solid hsl(var(--border-color) / 0.4);
}

.table thead tr th:not(:first-child) {
  border-left: 0;
}

.table thead tr th:first-child {
  border-radius: 8px 0 0 0;
  text-align: left;
  border-left: 1px solid hsl(var(--border-color) / 0.4);
}

.table thead tr th:last-child {
  text-align: right;
  border-radius: 0 8px 0 0;
  border-right: 1px solid hsl(var(--border-color) / 0.4);
}

.table thead tr th:nth-child(2) {
  text-align: left;
}

.table tbody {
  border: 0 !important;
}

.table tbody tr:last-child {
  border-bottom: 0;
}

.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: 24px;
  border-width: 1px;
  color: hsl(var(--body-color));
  font-weight: 500;
  max-width: 170px;
  font-size: 1rem;
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid hsl(var(--border-color) / 0.4);
}

@media screen and (max-width: 1399px) {
  .table tbody tr td {
    font-size: 0.875rem;
    padding: 20px 16px;
  }
}

.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;
  font-weight: 600;
  color: #101828;
  border-left: 1px solid hsl(var(--border-color) / 0.4);
}

.table tbody tr td:last-child {
  text-align: right;
  border-right: 1px solid hsl(var(--border-color) / 0.4);
}

.table tbody tr td:nth-child(2) {
  text-align: left;
}

@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--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-color: hsl(var(--black) / .05);
  }
}

@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(odd) {
    background-color: hsl(var(--section-bg));
  }

  .table--responsive--lg tbody tr:nth-child(even) {
    background-color: hsl(var(--base) / 0.04);
  }

  .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;
    background-color: transparent;
    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-color: hsl(var(--black) / .05);
  }
}

@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(odd) {
    background-color: hsl(var(--section-bg));
  }

  .table--responsive--xl tbody tr:nth-child(even) {
    background-color: hsl(var(--base) / 0.04);
  }

  .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-color: hsl(var(--black) / .05);
  }
}

@media screen and (max-width: 1399px) {
  .table--responsive--xxl thead {
    display: none;
  }

  .table--responsive--xxl tbody tr {
    display: block;
  }

  .table--responsive--xxl tbody tr:nth-child(odd) {
    background-color: hsl(var(--section-bg));
  }

  .table--responsive--xxl tbody tr:nth-child(even) {
    background-color: hsl(var(--base) / 0.04);
  }

  .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-color: hsl(var(--black) / .05);
  }
}

/* ================================= 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;
}

.custom--tab .nav-item {
  border-bottom: 0;
  padding: 5px;
}

.custom--tab .nav-item .nav-link {
  color: hsl(var(--body-color));
  padding: 8px 25px;
  background-color: transparent !important;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid hsl(var(--black) / 0.08) !important;
  font-size: 14px;
}

@media screen and (max-width: 1199px) {
  .custom--tab .nav-item .nav-link {
    padding: 12px 15px;
  }
}

.custom--tab .nav-item .nav-link.active {
  color: hsl(var(--white));
  background-color: hsl(var(--base-d-200)) !important;
  border: 1px solid transparent !important;
}

.custom--tab .nav-item .nav-link.active:hover {
  color: hsl(var(--white));
}

.custom--tab .nav-item .nav-link:hover {
  color: hsl(var(--base));
}

.custom--tab.tab-two {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-radius: 0;
  background-color: hsl(var(--white));
  padding: 0;
  padding-bottom: 15px;
  border-radius: 0;
  gap: 40px 30px;
  width: 100%;
  border-bottom: 1px solid hsl(var(--border-color) / 0.4);
}

@media screen and (max-width: 424px) {
  .custom--tab.tab-two {
    gap: 20px 10px;
  }
}

.custom--tab.tab-two .nav-item {
  padding: 0;
}

.custom--tab.tab-two .nav-item .nav-link {
  background-color: transparent !important;
  border-radius: 0;
  border: 0 !important;
  padding: 0 10px !important;
  position: relative;
}

@media screen and (max-width: 424px) {
  .custom--tab.tab-two .nav-item .nav-link {
    padding: 0 5px !important;
  }
}

.custom--tab.tab-two .nav-item .nav-link::after {
  position: absolute;
  content: "";
  bottom: -17px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: hsl(var(--base-d-400));
}

@media screen and (max-width: 424px) {
  .custom--tab.tab-two .nav-item .nav-link::after {
    bottom: -10px;
  }
}

.custom--tab.tab-two .nav-item .nav-link.active {
  color: hsl(var(--base)) !important;
  background-color: transparent !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom--tab.tab-two .nav-item .nav-link.active.nav-link {
  color: hsl(var(--base));
  font-weight: 600;
}

.custom--tab.tab-two .nav-item .nav-link.active.nav-link::after {
  width: 100%;
}

.custom--tab.tab-two .nav-item .nav-link.active:hover {
  color: hsl(var(--base));
}

/* ================================= Tab Css End =========================== */
/* ================================= Badge Css Start =========================== */
.badge {
  font-size: 0.75rem;
  border-radius: 40px;
  padding: 5px 10px;
  font-weight: 500;
  position: relative;
  text-align: center;
}

.badge__icon {
  font-size: 12px;
}

.badge--base {
  background-color: hsl(var(--base) / 0.1) !important;
  color: hsl(var(--base)) !important;
}

.badge--primary {
  background-color: hsl(var(--primary) / 0.1) !important;
  color: hsl(var(--primary)) !important;
}

.badge--secondary {
  background-color: hsl(var(--secondary) / 0.1) !important;
  color: hsl(var(--secondary)) !important;
}

.badge--success {
  background-color: hsl(var(--success) / 0.1) !important;
  color: hsl(var(--success)) !important;
}

.badge--danger {
  background-color: hsl(var(--danger) / 0.1) !important;
  color: hsl(var(--danger)) !important;
}

.badge--dark {
  background-color: hsl(var(--dark) / 0.1) !important;
  color: hsl(var(--dark)) !important;
}

.badge--warning {
  background-color: hsl(var(--warning) / 0.1) !important;
  color: hsl(var(--warning)) !important;
}

.badge--info {
  background-color: hsl(var(--info) / 0.1) !important;
  color: hsl(var(--info)) !important;
}

/* ================================= Badge Css End =========================== */
/* ====================================== Alert Css Start =============================== */
.alert {
  margin-bottom: 0;
  background-color: hsl(var(--alert-color)/0.05);
  border: 1px solid hsl(var(--alert-color)/0.2);
  font-weight: 400;
  padding: 20px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}

@media screen and (max-width: 991px) {
  .alert {
    padding: 16px;
  }
}

@media screen and (max-width: 575px) {
  .alert {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.alert__icon {
  line-height: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 0.75rem;
  height: 20px;
  width: 20px;
  display: grid;
  place-content: center;
  background: hsl(var(--alert-color));
  color: hsl(var(--white));
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 3px hsl(var(--white)), 0 0 0 6px hsl(var(--alert-color)/0.5), 0 0 0 9px hsl(var(--white)), 0 0 0 12px hsl(var(--alert-color)/0.15);
  box-shadow: 0 0 0 3px hsl(var(--white)), 0 0 0 6px hsl(var(--alert-color)/0.5), 0 0 0 9px hsl(var(--white)), 0 0 0 12px hsl(var(--alert-color)/0.15);
  margin: 6px;
}

.alert__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 575px) {
  .alert__content {
    width: 100%;
    margin-top: 6px;
  }
}

.alert__title {
  font-size: 0.875rem;
  color: hsl(var(--base-two)/0.8);
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 6px;
}

.alert__desc {
  color: hsl(var(--base-two)/0.7);
  display: block;
  font-size: 0.875rem;
}

@media screen and (max-width: 424px) {
  .alert__desc {
    font-size: 0.8125rem;
  }
}

.alert__link {
  position: relative;
  color: hsl(var(--primary));
  font-weight: 600;
}

.alert .btn-close {
  background: transparent;
  padding: 0;
  color: hsl(var(--alert-color));
  font-size: 1.25rem;
  top: 16px;
  right: 16px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media screen and (max-width: 991px) {
  .alert .btn-close {
    top: 10px;
    right: 10px;
  }
}

.alert--base {
  --alert-color: var(--base);
}

.alert--primary {
  --alert-color: var(--primary);
}

.alert--success {
  --alert-color: var(--success);
}

.alert--info {
  --alert-color: var(--info);
}

.alert--danger {
  --alert-color: var(--danger);
}

.alert--warning {
  --alert-color: var(--warning);
}

.alert--secondary {
  --alert-color: 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 Start Here ======================= */
.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 40px;
}

.navbar-brand.logo img {
  max-width: 180px;
}

@media screen and (max-width: 991px) {
  .navbar-brand.logo img {
    max-width: 150px;
  }
}

.header {
  position: relative;
  z-index: 999;
  background: hsl(var(--white));
  border: 1px solid hsl(var(--border-color) / 0.4);
}

.header .navbar {
  position: unset;
}

.header.fixed-header {
  position: sticky;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  top: 0px;
  -webkit-animation: slide-down 0.8s;
  animation: slide-down 0.8s;
  width: 100%;
  background-color: hsl(var(--white));
  border-bottom: 1px solid hsl(var(--black) / 0.1);
}

@-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);
  }
}

.navbar {
  padding: 0 !important;
}

/* ========================= Desktop Device Start ========================= */
@media (min-width: 1200px) {
  .header .nav-menu {
    padding-top: 0;
    padding-bottom: 0;
  }

  .header .nav-menu .nav-item {
    padding-right: 34px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .header .nav-menu .nav-item {
    padding-right: 20px;
  }
}

@media (min-width: 1200px) {
  .header .nav-menu .nav-item:last-child {
    padding-right: 0;
  }
}

@media (min-width: 1200px) {
  .header .nav-menu .nav-item.active .nav-link {
    color: hsl(var(--base)) !important;
  }

  .header .nav-menu .nav-item.active .nav-link::before {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .header .nav-menu .nav-item:hover .nav-link {
    color: hsl(var(--base)) !important;
  }

  .header .nav-menu .nav-item:hover .header-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
  }
}

@media (min-width: 1200px) {
  .header .nav-menu .nav-item .nav-link {
    color: hsl(var(--body-color)) !important;
    position: relative;
    cursor: pointer;
    font-size: 1rem;
    padding: 30px 6px;
    font-weight: 600;
  }
}

/* ========================== Desktop Device End ========================= */
/* ============================== Small Device ======================= */
@media screen and (max-width: 1199px) {
  .header {
    padding-block: 20px;
    border-bottom: 1px solid hsl(var(--black) / 0.05);
  }

  .header .nav-menu .nav-item {
    text-align: left;
    display: block;
    position: relative;
    margin: 0;
  }

  .header .nav-menu .nav-item:hover .nav-link .nav-item__icon {
    -webkit-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
  }

  .header .nav-menu .header-dropdown {
    position: static !important;
    display: none !important;
    border: 0 !important;
    margin-top: 20px;
    padding-left: 20px;
  }

  .header .nav-menu .header-dropdown .dropdown-menu__list {
    border-bottom: 1px solid hsl(var(--border-color) / 0.3);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .header .nav-menu .header-dropdown .dropdown-menu__list:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .header .nav-menu .header-dropdown .dropdown-menu__link {
    padding: 0;
  }

  .header .nav-menu .header-dropdown .dropdown-menu__link:hover {
    background-color: transparent !important;
  }

  .header .nav-menu .header-dropdown.show {
    display: block !important;
  }

  .header .nav-item:first-child {
    border-bottom: none;
  }

  .header .nav-item:not(:last-child) {
    margin-bottom: 16px !important;
  }

  .header .nav-item.active .nav-link {
    color: hsl(var(--base));
  }

  .header .nav-item .nav-link {
    padding: 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;
    color: hsl(var(--heading-color));
    font-weight: 600;
    font-size: 1rem;
  }

  .header .nav-item .nav-link.show[aria-expanded="true"] {
    color: hsl(var(--base)) !important;
  }

  .header .nav-item .nav-link.show[aria-expanded="true"] i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

.header .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.125rem;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-left: 10px;
}

@media screen and (max-width: 575px) {
  .header .navbar-toggler.header-button {
    font-size: 2rem;
  }
}

.header .navbar-toggler.header-button:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.header .navbar-toggler.header-button[aria-expanded="true"] i::before {
  content: "\f00d";
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 8px;
  padding-left: 48px;
}

@media screen and (max-width: 1399px) {
  .header-right {
    gap: 12px;
    padding-left: 24px;
  }
}

.header-right .btn:has(.icon) {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.header-right .btn:has(.icon) .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lang-box {
  margin-right: 8px;
}

@media screen and (max-width: 1399px) {
  .lang-box {
    margin-right: 0;
  }
}

@media screen and (max-width: 1199px) {
  .lang-box {
    display: inline-flex;
  }
}

.lang-box-btn {
  color: hsl(var(--black));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .lang-box-btn {
    width: 100%;
    border: 1px solid hsl(var(--border-color) / 0.4);
    border-radius: 8px;
    padding: 8px 10px;
  }
}

@media screen and (max-width: 374px) {
  .lang-box-btn {
    padding: 6px 10px;
  }
}

.lang-box-btn.show .icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.lang-box-btn .thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}

.lang-box-btn .thumb img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1399px) {
  .lang-box-btn .thumb {
    height: 20px;
    width: 20px;
  }
}

.lang-box-btn .text {
  color: hsl(var(--body-color));
  font-size: 1rem;
  font-weight: 600;
  line-height: 140%;
}

@media screen and (max-width: 991px) {
  .lang-box-btn .text {
    font-size: 14px;
  }
}

@media screen and (max-width: 374px) {
  .lang-box-btn .text {
    font-size: 13px;
  }
}

.lang-box-btn .icon {
  color: hsl(var(--body-color));
  font-size: 0.75rem;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.lang-box-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 16px;
  color: hsl(var(--body-color));
  font-weight: 600;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media (max-width: 991px) {
  .lang-box-link .text {
    font-size: 14px;
  }
}

.lang-box-link:hover {
  background-color: hsl(var(--black) / 0.05);
  color: hsl(var(--black));
}

.lang-box-link .thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.lang-box-link .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.lang-box .dropdown-menu {
  margin-top: 30px;
  min-width: 130px;
}

@media screen and (max-width: 1199px) {
  .lang-box .dropdown-menu {
    left: 0 !important;
    margin-top: 10px;
    right: auto !important;
    width: 100%;
    border-radius: 6px;
  }
}

.dropdown-menu {
  padding: 0px;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: hsl(var(--white));
  border-radius: 0px;
  left: auto !important;
  right: 0 !important;
  display: unset !important;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  top: 100% !important;
  position: absolute !important;
  border: 1px solid hsl(var(--border-color) / 0.4);
  overflow: hidden;
}

.dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1) !important;
  transform: scale(1) !important;
}

.dropdown-menu__link {
  color: hsl(var(--body-color));
  font-weight: 400;
  padding: 8px 15px;
}

.dropdown-menu__link:hover {
  background-color: hsl(var(--base)) !important;
  color: hsl(var(--white));
}

.header .offcanvas-header {
  background-color: hsl(var(--white));
}

.header .btn-close {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.account-btn-groups .btn {
  padding: 12px;
}

@media screen and (max-width: 424px) {
  .account-btn-groups .btn {
    font-size: 14px;
    padding: 10px 12px;
  }
}

@media screen and (max-width: 374px) {
  .account-btn-groups .btn {
    font-size: 13px;
    padding: 10px;
  }
}

/* ================================= Header Css End =========================== */
/* ================ Top Header Start Here ================ */
.header-top {
  background-color: hsl(var(--black));
  border-bottom: 1px solid hsl(var(--white) / 0.2);
  padding: 10px 0px;
  position: relative;
}

.header-top .social-list.style-two .social-list__link flex-center {
  width: 30px;
  height: 30px;
  font-size: 0.75rem;
}

.top-header-wrapper {
  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;
}

@media screen and (max-width: 991px) {
  .top-header-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.contact-list {
  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;
}

.contact-list__item {
  padding-right: 20px;
  margin-right: 20px;
  position: relative;
}

.contact-list__item:last-child {
  padding-right: 0;
  margin-right: 0;
}

.contact-list__item:last-child::before {
  display: none;
}

.contact-list__item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: hsl(var(--white) / 0.4);
}

.contact-list__item-icon {
  font-size: 0.75rem;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: hsl(var(--white));
  background-color: hsl(var(--base));
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
}

.contact-list__link {
  color: hsl(var(--white));
  font-weight: 400;
  font-family: var(--body-font);
}

.contact-list__link:hover .contact-list__link-icon {
  color: hsl(var(--white));
}

/* Login Registration */
.login-registration-list {
  margin: 0 -10px;
  padding-right: 20px;
}

@media screen and (max-width: 991px) {
  .login-registration-list {
    padding-right: 0;
  }
}

.login-registration-list__item {
  color: hsl(var(--white));
  padding: 0 10px;
  position: relative;
}

.login-registration-list__item:last-child::before {
  display: none;
}

.login-registration-list__item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 12px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: hsl(var(--white) / 0.5);
}

.login-registration-list__icon {
  color: hsl(var(--base));
  margin-right: 10px;
  font-size: 1rem;
}

.login-registration-list__link {
  color: hsl(var(--white));
  font-weight: 400;
  font-family: var(--body-font);
}

@media screen and (max-width: 575px) {
  .login-registration-list__link {
    font-size: 0.9375rem;
  }
}

.login-registration-list__link:hover {
  color: hsl(var(--base));
}

.login-registration-list__link:hover .login-registration-list__icon {
  color: hsl(var(--white));
}

@media screen and (max-width: 991px) {
  .login-registration-list__link:hover {
    color: hsl(var(--base));
  }
}

/* Language Box */
.language-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.language-box .select {
  color: hsl(var(--white));
  background-color: transparent;
  border: 1px solid hsl(var(--white) / 0.4);
  padding: 5px 8px;
  font-size: 0.9375rem;
  font-weight: 400;
  border-radius: 5px;
}

.language-box .select option {
  background-color: hsl(var(--black));
}

/* ================ Top Header End Here ================ */
/* ============= Footer Start Here ======================= */
.footer-area {
  background-color: hsl(var(--dark));
  color: hsl(var(--white));
  margin-top: auto;
  overflow: hidden;
  position: relative;
}

.footer-area::after,
.footer-area::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -520px;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.6)),
      to(rgba(62, 79, 152, 0.6)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.6) 0%,
      rgba(62, 79, 152, 0.6) 100%);
  height: 600px;
  width: 600px;
  -webkit-filter: blur(250px);
  filter: blur(250px);
  border-radius: 50%;
}

.footer-area::before {
  left: unset;
  right: -520px;
}

.footer-item__logo {
  margin-bottom: 24px;
}

.footer-item__logo a img {
  width: 100%;
  height: 100%;
  max-width: 190px;
  max-height: 64px;
}

.footer-item .title {
  color: hsl(var(--white));
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
}

.footer-item__title {
  color: hsl(var(--white));
  margin-bottom: 24px;
  text-decoration: underline;
  font-weight: 600;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .footer-item__title {
    margin-bottom: 16px;
  }
}

.footer-item__desc {
  color: hsl(var(--white));
  font-size: 14px;
}

.footer-item .social-list-wrapper {
  margin-top: 24px;
}

@media screen and (max-width: 991px) {
  .footer-item .social-list-wrapper {
    margin-top: 20px;
  }
}

@media screen and (max-width: 575px) {
  .footer-item .social-list-wrapper {
    margin-top: 15px;
  }
}

.footer-item .social-list-wrapper__title {
  color: hsl(var(--white));
  margin-bottom: 16px;
  text-decoration: underline;
  font-weight: 600;
  font-size: 18px;
}

/* Footer List Item */
.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-menu__item {
  display: block;
  padding-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .footer-menu__item {
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 575px) {
  .footer-menu__item {
    padding-bottom: 8px;
  }
}

.footer-menu__item:last-child {
  padding-bottom: 0;
}

.footer-menu__link {
  color: hsl(var(--white));
}

@media screen and (max-width: 767px) {
  .footer-menu__link {
    font-size: 14px;
  }
}

.footer-menu__link:hover {
  color: hsl(var(--base));
  text-decoration: underline;
}

/* Footer Contact */
.footer-contact-menu__item {
  margin-bottom: 16px;
}

.footer-contact-menu__item:last-child {
  margin-bottom: 0;
}

.footer-contact-menu__item .text {
  color: hsl(var(--white));
  font-weight: 600;
}

.footer-contact-menu__item-content p {
  color: hsl(var(--white));
}

@media screen and (max-width: 767px) {
  .footer-contact-menu__item-content p {
    font-size: 14px;
  }
}

/* ============= Footer End Here ======================= */
/*============== top footer css start here ==============*/
.top-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid hsl(var(--white) / 0.2);
}

@media screen and (max-width: 767px) {
  .top-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.top-footer__mail {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  display: grid;
  grid-template-columns: 3fr auto;
}

@media screen and (max-width: 424px) {
  .top-footer__mail {
    grid-template-columns: 1fr;
  }
}

.top-footer__mail .form--control {
  background-color: hsl(var(--white) / 0.2);
  border-color: hsl(var(--border-color) / 0.2);
  color: hsl(var(--white));
}

.top-footer__mail .form--control:-webkit-autofill,
.top-footer__mail .form--control:-webkit-autofill:hover,
.top-footer__mail .form--control:-webkit-autofill:focus,
.top-footer__mail .form--control:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.top-footer__mail .form--control:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-text-fill-color: hsl(var(--white)) !important;
  caret-color: hsl(var(--white)) !important;
}

.top-footer__mail .form--control::-webkit-input-placeholder {
  color: hsl(var(--white));
  font-size: 14px;
}

.top-footer__mail .form--control::-moz-placeholder {
  color: hsl(var(--white));
  font-size: 14px;
}

.top-footer__mail .form--control:-ms-input-placeholder {
  color: hsl(var(--white));
  font-size: 14px;
}

.top-footer__mail .form--control::-ms-input-placeholder {
  color: hsl(var(--white));
  font-size: 14px;
}

.top-footer__mail .form--control::placeholder {
  color: hsl(var(--white));
  font-size: 14px;
}

.top-footer__mail .btn--white:hover {
  background-color: hsl(var(--white));
}

.top-footer__title {
  color: hsl(var(--white));
  font-weight: 600;
  margin-bottom: 4px;
}

.top-footer__desc {
  font-size: 14px;
  color: hsl(var(--white));
}

@media screen and (max-width: 991px) {
  .top-footer__desc {
    font-size: 12px;
  }
}

.top-footer__text {
  color: hsl(var(--white));
  font-size: 12px;
  margin-top: 8px;
}

.top-footer__left {
  width: calc(100% - 430px);
}

@media screen and (max-width: 991px) {
  .top-footer__left {
    width: calc(100% - 350px);
  }
}

@media screen and (max-width: 767px) {
  .top-footer__left {
    width: 100%;
  }
}

.top-footer__right {
  width: 430px;
}

@media screen and (max-width: 991px) {
  .top-footer__right {
    width: 350px;
  }
}

@media screen and (max-width: 767px) {
  .top-footer__right {
    width: 100%;
  }
}

/*============== top footer css end here ==============*/
/* ============= Bottom Footer End Here ======================= */
.bottom-footer {
  border-top: 1px solid hsl(var(--white) / 0.2);
  padding: 20px;
  margin-top: 50px;
}

.bottom-footer-text {
  font-weight: 600;
  font-size: 12px;
  color: hsl(var(--white) / .7);
}

.bottom-footer-text .link {
  color: hsl(var(--white));
  transition: all linear 0.3s;
}

.bottom-footer-text .link:hover {
  text-decoration: underline;
}

/* =============Bottom Footer End Here ======================= */
/* ===================== Scroll to 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 to Top End ================================= */
/* ================================= Template 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));
}

/* ================================= Template 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;
  gap: 5px 15px;
}

.social-list__link {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 18px;
  cursor: pointer;
  color: hsl(var(--white));
}

.social-list__link.active,
.social-list__link:hover,
.social-list__link:focus {
  color: hsl(var(--base)) !important;
}

@media screen and (max-width: 767px) {
  .social-list__link {
    font-size: 1rem;
  }
}

/* ================================= Social Icon Css End ===========================  */
/* ====================== Breadcrumb Css Start ==================== */
.breadcrumb {
  position: relative;
  z-index: 1;
  padding: 155px 0 70px;
  background-color: #ddd;
}

@media screen and (max-width: 991px) {
  .breadcrumb {
    padding: 115px 0 60px;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 105px 0 40px;
  }
}

.breadcrumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: hsl(var(--white) / 0.1);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.breadcrumb__wrapper {
  text-align: center;
}

.breadcrumb__title {
  margin-bottom: 10px;
  color: hsl(var(--black));
}

.breadcrumb__list {
  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;
}

.breadcrumb__item {
  color: hsl(var(--black));
  padding: 0 5px;
  font-weight: 400;
  font-size: 1rem;
}

.breadcrumb__item-text {
  color: hsl(var(--base));
}

.breadcrumb__link {
  color: hsl(var(--black));
  font-weight: 500;
}

.breadcrumb__link:hover {
  color: hsl(var(--base));
}

/* ====================== Breadcrumb Css End ==================== */
/* ================================= Start Rating Css Start =========================== */
.rating-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;
}

.rating-list__item {
  padding: 0 1px;
  color: hsl(var(--warning));
}

.rating-list__text {
  color: hsl(var(--body-color));
}

/* ================================= Start Rating Css End =========================== */
.blog-sidebar-wrapper {
  position: sticky;
  top: 100px;
  border: 1px solid hsl(var(--border-color) / 0.2);
  background-color: hsl(var(--section-bg) / 0.2);
  padding: 20px;
  border-radius: 16px;
}

/* ================== Sidebar Box & Title =================== */
.blog-sidebar__title {
  margin-bottom: 10px;
  font-weight: 600;
}

/* ========================= Category & Tags List Style ========================= */
/* ======================== Latest Blog Css========================  */
.latest-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
  background-color: hsl(var(--white));
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
  border-radius: 8px;
  padding: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.latest-blog:last-of-type {
  margin-bottom: 0px;
}

.latest-blog__thumb {
  width: 170px;
  max-height: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}

@media screen and (max-width: 424px) {
  .latest-blog__thumb {
    width: 100px;
  }
}

.latest-blog__thumb a {
  display: block;
  height: 100%;
  width: 100%;
}

.latest-blog__content {
  width: calc(100% - 170px);
  padding-left: 15px;
}

@media screen and (max-width: 424px) {
  .latest-blog__content {
    width: calc(100% - 100px);
  }
}

.latest-blog__bottom .title {
  font-weight: 600;
  color: hsl(var(--base));
  margin-bottom: 4px;
  font-size: 14px;
}

.latest-blog__title {
  margin-bottom: 16px;
}

@media screen and (max-width: 575px) {
  .latest-blog__title {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 424px) {
  .latest-blog__title {
    margin-bottom: 5px;
  }
}

.latest-blog__title a {
  color: hsl(var(--heading-color));
  font-weight: 600;
  font-size: 1.125rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 424px) {
  .latest-blog__title a {
    font-size: 14px;
  }
}

.latest-blog__title a:hover {
  color: hsl(var(--base));
}

/* ========================= Latest Blog Css End ===================*/
/* =========================== Banner Section Start Here ========================= */
.banner-section {
  position: relative;
  z-index: 1;
  padding-bottom: 90px;
  overflow: hidden;
}

@media screen and (max-width: 1399px) {
  .banner-section {
    padding-bottom: 45px;
  }
}

.banner-section__shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
}

.banner-section .banner-container {
  padding: 45px 0;
}

.banner-section::before {
  position: absolute;
  content: "";
  width: 520px;
  height: 520px;
  left: -400px;
  top: -330px;
  z-index: -1;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.5)),
      to(rgba(62, 79, 152, 0.5)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.5) 0%,
      rgba(62, 79, 152, 0.5) 100%);
  -webkit-filter: blur(700px);
  filter: blur(700px);
}

.banner-content__subtitle {
  color: hsl(var(--heading-color));
  font-weight: 600;
  margin-bottom: 12px;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#ffffff),
      to(#efeff3));
  background: linear-gradient(180deg, #ffffff 0%, #efeff3 100%);
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14px;
  line-height: 1;
}

.banner-content__title {
  margin-bottom: 24px;
}

.banner-content__desc {
  max-width: 660px;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

@media screen and (max-width: 991px) {
  .banner-content__desc {
    font-size: 20px;
  }
}

@media screen and (max-width: 575px) {
  .banner-content__desc {
    font-size: 18px;
  }
}

@media screen and (max-width: 424px) {
  .banner-content__desc {
    font-size: 16px;
  }
}

.banner-content__button {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .banner-content__button {
    margin-top: 24px;
  }
}

@media screen and (max-width: 424px) {
  .banner-content__button .btn {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

.banner-thumb-wrapper {
  text-align: center;
  position: relative;
}
.banner-thumb-wrapper__shape {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: -1;
  animation:color-change 7s ease-in-out infinite alternate;

  background: linear-gradient(90deg, #B7BFE1, hsl(var(--base)), hsl(var(--base)/.5));
  background-size: 300% 300%;
  background-repeat: no-repeat;
}

@keyframes color-change {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}


.banner-thumb-wrapper__client {
  position: absolute;
  bottom: 110px;
  left: -30px;
  background: #edeef5;
  padding: 24px 16px;
  -webkit-box-shadow: 8px 4px 6px 0px #00000033;
  box-shadow: 8px 4px 6px 0px #00000033;
  border-radius: 8px;
  animation: ban 3s linear infinite;
}
@keyframes ban {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }

}



.banner-thumb-wrapper__client img{
  max-width: 135px;
}

@media screen and (max-width: 767px) {
  .banner-thumb-wrapper__client {
    left: 0;
    bottom: 150px;
  }
}

@media screen and (max-width: 424px) {
  .banner-thumb-wrapper__client {
    bottom: 130px;
    padding: 10px;
  }
}

.banner-thumb-wrapper__client .title {
  font-family: var(--body-font);
  margin-bottom: 5px;
}

.banner-thumb-wrapper__client .text {
  color: hsl(var(--heading-color));
  margin-bottom: 16px;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .banner-thumb-wrapper__client .text {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 424px) {
  .banner-thumb-wrapper__client .text {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

/* =========================== Banner Section End Here ========================= */
/*================= category css start here =================*/
.category-item {
  background-color: hsl(var(--white));
  border-radius: 8px;
  -webkit-box-shadow: 0px 2px 8px 0px #63636333;
  box-shadow: 0px 2px 8px 0px #63636333;
  padding: 40px 14px;
  text-align: center;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  height: 100%;
  width: 100%;
  border-bottom: 4px solid transparent;
}

.category-item:hover {
  border-bottom: 4px solid hsl(var(--base));
  border-radius: 8px;
  background: #ecedf5;
}

.category-item__thumb {
  margin: 0 auto;
}

.category-item__title {
  font-weight: 600;
  margin-top: 16px;
  color: hsl(var(--heading-color));
}
.insurance-thumb {
  max-width: 600px;
  margin: 0 auto;
}
/*=================== category css end here =================*/
.left-bg {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -15%;
  bottom: -30%;
  z-index: -1;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.6)),
      to(rgba(62, 79, 152, 0.6)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.6) 0%,
      rgba(62, 79, 152, 0.6) 100%);
  -webkit-filter: blur(700px);
  filter: blur(700px);
}

.right-bg {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -15%;
  bottom: -30%;
  z-index: -1;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.6)),
      to(rgba(62, 79, 152, 0.6)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.6) 0%,
      rgba(62, 79, 152, 0.6) 100%);
  -webkit-filter: blur(700px);
  filter: blur(700px);
}

@media (max-width: 1399px) {
  .right-bg {
    filter: blur(350px);
  }

  .left-bg {
    filter: blur(350px);
  }
}

/*================= area section css start here =================*/
.area-section {
  position: relative;
  z-index: 3;
  background: hsl(var(--section-bg));
}

.area-section .left-bg,
.area-section .right-bg {
  -webkit-filter: blur(300px);
  filter: blur(300px);
}

.area-form {
  background: hsl(var(--white));
  padding: 32px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 8px;
}

.area-form .btn--white:hover,
.area-form .btn--white:focus-visible,
.area-form .btn--white:active {
  background-color: hsl(var(--white));
}
.quote-thumb {
  text-align: center;
  margin-bottom: -60px;
}
@media screen and (max-width: 991px) {
  .quote-thumb {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .area-form {
    padding: 20px;
  }
}

.area-form .form--label {
  color: hsl(var(--body-color));
}

.area-form .form--control:focus {
  border-color: hsl(var(--base));
}

/*================== area section css end here =================*/
/*=============== choose us section css start here ===============*/
.choose-us-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.choose-us-card {
  height: 100%;
  background-color: hsl(var(--white));
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

.choose-us-card__thumb {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

.choose-us-card__thumb-inner {
  width: 100%;
  height: 100%;
}

.choose-us-card__thumb-inner img {
  -webkit-transition: 1s;
  transition: 1s;
  background-size: cover;
  width: 100%;
}

.choose-us-card__thumb-inner .image1 {
  -webkit-transform: translatex(50%) scalex(1);
  transform: translatex(50%) scalex(1);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.choose-us-card__thumb-inner .image2 {
  -webkit-transform: translatex(0%) scalex(1);
  transform: translatex(0%) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.choose-us-card:hover .choose-us-card__thumb-inner .image1 {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.choose-us-card:hover .choose-us-card__thumb-inner .image2 {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.choose-us-card__content {
  padding: 24px;
}

.choose-us-card__title {
  margin-bottom: 10px;
  font-weight: 600;
}

.choose-us-card__desc {
  color: hsl(var(--heading-color));
}

.choose-us-slider .slick-list {
  margin-bottom: -15px;
  padding-bottom: 15px;
}

.choose-us-wrapper__bottom {
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .choose-us-wrapper__bottom {
    margin-top: 30px;
  }
}

.choose-us-wrapper__bottom .title {
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .choose-us-wrapper__bottom .title {
    margin-bottom: 16px;
  }
}

/*=============== choose us section css end here ===============*/
/* =============================== Brand Section Css Start ======================= */
.brand-section {
  position: relative;
  z-index: 1;
  background-color: hsl(var(--section-bg));
}

.brand-section .slick-track {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.client-logos {
  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;
  margin-bottom: 20px;
}

.client-logos:last-of-type {
  margin-bottom: 0;
}

.client-logos img {
  width: 160px !important;
}

.client-logos .slick-slide {
  margin: 0 10px;
}

.client-logo {
  background-color: hsl(var(--white));
  padding: 40px 20px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  text-align: center;
  border-radius: 5px;
  border: 1px solid hsl(var(--black) / 0.08);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

/* =============================== Brand Section Css End ======================= */
/*=============== step section css start here ===============*/
.step-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.step-section .step-wrapper__right {
  background-color: hsl(var(--white));
  padding: 24px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 8px;
  height: 100%;
}

@media screen and (max-width: 424px) {
  .step-section .step-wrapper__right {
    padding: 20px 16px;
  }
}

.step-section .step-wrapper__verify {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 20px;
  display: grid;
  grid-template-columns: 3fr auto;
}

@media screen and (max-width: 424px) {
  .step-section .step-wrapper__verify {
    grid-template-columns: 1fr;
  }
}

.step-section .step-wrapper .step-list {
  counter-reset: step-counter;
}

.step-section .step-wrapper .step-list__item {
  background-color: hsl(var(--white));
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: 24px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  counter-increment: step-counter;
  margin-bottom: 20px;
}

@media screen and (max-width: 424px) {
  .step-section .step-wrapper .step-list__item {
    padding: 20px 16px;
  }
}

.step-section .step-wrapper .step-list__item:last-child {
  margin-bottom: 0;
}

.step-section .step-wrapper .step-list__number {
  color: hsl(var(--heading-color));
  font-size: 32px;
  font-weight: 600;
  position: relative;
  content: counter(step-counter);
  padding-right: 20px;
}

.step-section .step-wrapper .step-list__number::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  content: counter(step-counter);
}

.step-section .step-wrapper .step-list__number::after {
  position: absolute;
  content: "";
  right: -3px;
  bottom: -12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: hsl(var(--heading-color));
}

.step-section .step-wrapper .step-list__title {
  margin-bottom: 5px;
}


.insurance-details__main {
  margin-top: 16px;
  padding: 20px;
  background-color: hsl(var(--white));
  border-radius: 8px;
  border: 1px solid hsl(var(--black) / .1);
}

.insurance-details__title {
  margin-bottom: 16px;
  color: hsl(var(--heading-color));
  font-size: 14px;
  font-weight: 600;
}

.insurance-details__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;

  justify-content: space-between;
}

.insurance-details__item:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid hsl(var(--black) / .07);
}

.insurance-details__item .text {
  color: hsl(var(--heading-color));
}

/*================= step section css end here ===============*/
/*=============== how work section css start here ===============*/
.how-work-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.how-work-section__bottom {
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .how-work-section__bottom {
    margin-top: 30px;
  }
}

.how-work-section .left-bg {
  left: -20%;
}

.how-work-section .right-bg {
  right: -20%;
}

.how-work-item {
  background-color: hsl(var(--white));
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .how-work-item {
    padding: 30px 24px;
  }
}

@media screen and (max-width: 767px) {
  .how-work-item {
    padding: 24px 16px;
  }
}

.how-work-item__thumb {
  max-width: 70px;
  margin: 0 auto;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .how-work-item__thumb {
    margin-bottom: 16px;
  }
}

.how-work-item__title {
  margin-bottom: 24px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .how-work-item__title {
    margin-bottom: 16px;
  }
}

/*=============== how work section css end here ===============*/
/*============== counter section css start here ==============*/
.counter-section {
  background-color: hsl(var(--base));
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 80px 0;
}

@media screen and (max-width: 575px) {
  .counter-section {
    padding: 60px 0;
  }
}

.counter-section__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.counter-section__shape img {
  height: 100%;
}

.counter-section .section-heading__title {
  color: hsl(var(--white));
}

.counter-item {
  text-align: center;
  max-width: 350px;
  margin: 0 auto;
}

.counter-item__title {
  color: hsl(var(--white));
  font-weight: 600;
  margin-bottom: 10px;
}

.counter-item__desc {
  color: hsl(var(--white)/.9);
}

.counter-item__number {
  color: hsl(var(--white));
  font-size: 30px;
  font-weight: 600;
  background: hsl(var(--white) / 0.2);
  border-radius: 8px;
  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;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 5px 15px;
}

@media screen and (max-width: 575px) {
  .counter-item__number {
    margin-bottom: 12px;
    font-size: 24px;
  }
  .counter-item__desc {
    font-size: 14px;
  }
  .counter-item__title {
    margin-bottom: 6px;
  }
}

.odometer.odometer-auto-theme {
  font-size: 30px;
}

@media screen and (max-width: 575px) {
  .odometer.odometer-auto-theme {
    font-size: 24px;
  }
}

/*================ counter section css end here ==============*/
/*======== popular section css start here ========*/
.popular-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.popular-item {
  background-color: hsl(var(--white));
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

.popular-item__thumb {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

.popular-item__thumb-link {
  width: 100%;
  height: 100%;
}

.popular-item__thumb-link img {
  -webkit-transition: 1s;
  transition: 1s;
  background-size: cover;
  width: 100%;
}

.popular-item__thumb-link .image1 {
  -webkit-transform: translatex(50%) scalex(1);
  transform: translatex(50%) scalex(1);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.popular-item__thumb-link .image2 {
  -webkit-transform: translatex(0%) scalex(1);
  transform: translatex(0%) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.popular-item:hover .popular-item__thumb-link .image1 {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.popular-item:hover .popular-item__thumb-link .image2 {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.popular-item__content {
  padding: 24px;
}

@media screen and (max-width: 767px) {
  .popular-item__content {
    padding: 20px 16px;
  }
}

.popular-item__title {
  margin-bottom: 24px;
}

.popular-item__title .btn {
  font-weight: 600;
}

.popular-item__bottom {
  margin-top: 32px;
}

.popular-item .advantage-wrapper__title {
  font-weight: 600;
  color: hsl(var(--heading-color));
  margin-bottom: 20px;
}

.popular-item .advantage-wrapper .value-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .popular-item .advantage-wrapper .value-list__item {
    margin-bottom: 12px;
  }
}

.popular-item .advantage-wrapper .value-list__item:last-child {
  margin-bottom: 0;
}

.popular-item .advantage-wrapper .value-list__icon {
  color: hsl(var(--success));
}

/*======== popular section css end here ==========*/
/* ================================ Testimonails Section Css Start ============================= */
.testimonials {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.testimonials .slick-initialized.slick-slider .slick-track {
  margin: 10px 0;
}

.testimonials .slick-initialized.slick-slider .slick-slide {
  padding: 0;
}

.testimonials .slick-dots {
  text-align: left;
}

@media screen and (max-width: 575px) {
  .testimonials .slick-dots {
    text-align: center;
    padding-top: 30px;
  }
}

.testimonials .slick-prev {
  left: unset;
  right: 64px;
}

.testimonails-card {
  padding: 0 10px;
  height: 100%;
}

.testimonial-item {
  background-color: hsl(var(--white));
  padding: 24px;
  border-radius: 8px;
  height: 100%;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  -webkit-box-shadow: 0px 2px 8px 0px #63636333;
  box-shadow: 0px 2px 8px 0px #63636333;
}

@media screen and (max-width: 575px) {
  .testimonial-item {
    padding: 20px 15px;
  }
}

.testimonial-item__content {
  margin: 24px 0;
}

.testimonial-item__title {
  font-weight: 600;
  color: hsl(var(--heading-color));
  margin-bottom: 8px;
}

.testimonial-item__info {
  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;
}

.testimonial-item__thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-item__details {
  width: calc(100% - 32px);
  padding-left: 10px;
  line-height: 1;
}

.testimonial-item__name {
  margin-bottom: 5px;
  color: hsl(var(--heading-color));
  font-weight: 600;
}

.testimonial-item__designation {
  font-size: 12px;
}

.testimonial-item__desc {
  color: hsl(var(--heading-color));
}

/* ================================ Testimonails Section Css End ============================= */
/*============ faq section css start here ============*/
.faq-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.faq-section__bottom {
  margin-top: 50px;
  text-align: center;
}

.faq-section__bottom .title {
  margin-bottom: 16px;
}

.faq-section__btn {
  margin-top: 24px;
}

/*============== faq section css end here ============*/
/* ================================= Blog Section Css Start Here ============================= */
.blog {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.blog__bottom {
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .blog__bottom {
    margin-top: 30px;
  }
}

.blog .left-bg {
  top: -30%;
  bottom: unset;
}

.blog-item {
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
  border-radius: 8px;
  background-color: hsl(var(--white));
  overflow: hidden;
  height: 100%;
  padding: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-item.item-two {
  display: block;
}

.blog-item:hover .blog-item__thumb-link .image1 {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.blog-item:hover .blog-item__thumb-link .image2 {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.blog-item__thumb {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}


.blog-item__thumb-link {
  width: 100%;
  height: 100%;
}

.blog-item__thumb-link img {
  -webkit-transition: 1s;
  transition: 1s;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.blog-item__thumb-link .image1 {
  -webkit-transform: translatex(50%) scalex(1);
  transform: translatex(50%) scalex(1);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.blog-item__thumb-link .image2 {
  -webkit-transform: translatex(0%) scalex(1);
  transform: translatex(0%) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-item__content {
  padding: 24px 16px;
}

@media screen and (max-width: 991px) {
  .blog-item__content {
    padding: 20px;
  }
}

@media screen and (max-width: 424px) {
  .blog-item__content {
    padding: 15px;
  }
}

.blog-item__title {
  margin-bottom: 8px;
  font-weight: 600;
}

.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__desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: hsl(var(--black) / .6);
}

.blog-item__bottom .title {
  font-weight: 600;
  color: hsl(var(--base));
  margin-bottom: 4px;
  font-size: 14px;
}

.text-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.text-list__item {
  color: hsl(var(--base));
  position: relative;
}

.text-list__item::after {
  position: absolute;
  content: "";
  right: -14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: hsl(var(--base));
}

.text-list__item:last-child::after {
  display: none;
}

/* Text Border Bottom Animation Css Start */
.border-effect {
  display: inline !important;
  width: 100%;
  background-repeat: no-repeat;
  background-position-y: -2px;
  background-image: linear-gradient(transparent calc(100% - 1px),
      currentColor 1px);
  -webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: 0 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.border-effect:hover {
  background-image: linear-gradient(transparent calc(100% - 1px),
      currentColor 1px);
  background-size: 100% 100%;
}

/* Text Border Bottom Animation Css Ends */
/* ================================= Blog Section Css End Here ================================= */
/*=============== cta section css start here ===============*/
.cta-section {
  background-color: hsl(var(--base));
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-section__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
}

.cta-section .cta-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .cta-section .cta-wrapper {
    display: block;
  }
}

.cta-section .cta-wrapper__title {
  color: hsl(var(--white));
  margin-bottom: 8px;
}

.cta-section .cta-wrapper__btn {
  margin-top: 40px;
}

@media screen and (max-width: 575px) {
  .cta-section .cta-wrapper__btn {
    margin-top: 20px;
  }
}

.cta-section .cta-wrapper__btn .btn--white {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  font-weight: 600;
}

.cta-section .cta-wrapper__btn .btn--white:hover {
  background-color: hsl(var(--white)) !important;
  color: hsl(var(--base)) !important;
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}

.cta-section .cta-wrapper__desc {
  color: hsl(var(--white));
  font-size: 18px;
}

@media screen and (max-width: 575px) {
  .cta-section .cta-wrapper__desc {
    font-size: 15px;
  }
}

.cta-section .cta-wrapper__left {
  padding: 55px 0;
}

@media screen and (max-width: 991px) {
  .cta-section .cta-wrapper__left {
    padding: 30px 0;
  }
}

.cta-section .cta-wrapper__right {
  max-width: 500px;
}

@media screen and (max-width: 767px) {
  .cta-section .cta-wrapper__right {
    display: none;
  }
}

.cta-section .cta-wrapper__thumb {
  max-height: 400px;
}

/*========== insurance section css start here ==========*/
.insurance-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.insurance-section__shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
}

.insurance-section::before {
  position: absolute;
  content: "";
  width: 520px;
  height: 520px;
  left: -400px;
  top: -330px;
  z-index: -1;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.7)),
      to(rgba(62, 79, 152, 0.7)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.7) 0%,
      rgba(62, 79, 152, 0.7) 100%);
  -webkit-filter: blur(700px);
  filter: blur(700px);
}

.insurance-form {
  border: 1px solid hsl(var(--border-color) / 0.2);
  background-color: hsl(var(--section-bg) / 0.2);
  padding: 20px;
  border-radius: 16px;
}

.check-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.check-wrapper .type--check {
  position: relative;
  padding: 11px 14px;
  line-height: 1;
  border: 1px solid hsl(var(--border-color));
  border-radius: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 40px;
}

@media (max-width: 424px) {
  .check-wrapper .type--check {
    padding: 10px;
  }
}

.check-wrapper .type--check .type--input {
  position: relative;
  border-radius: 4px;
  width: 16px;
  height: 16px;
  border: 1px solid hsl(var(--border-color));
  cursor: pointer;
}

.check-wrapper .type--check .type--input::before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: hsl(var(--body-color));
  font-size: 0.75rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.check-wrapper .type--check .type-text {
  font-size: 14px;
  color: hsl(var(--heading-color));
}

.type--check:has(input:checked) {
  background-color: hsl(var(--section-bg));
  border-color: hsl(var(--base));
}

.type--check:has(input:checked) .type--input::before {
  opacity: 1;
  color: hsl(var(--base));
}

.type--check:has(input:checked) .type--input {
  border-color: hsl(var(--base));
}

/*========== insurance section css end here ==========*/
/*============== insurance plan section start here ==============*/
.plan-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.plan-section__shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
}

.plan-section::before {
  position: absolute;
  content: "";
  width: 520px;
  height: 100%;
  left: -400px;
  top: -330px;
  z-index: -1;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.7)),
      to(rgba(62, 79, 152, 0.7)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.7) 0%,
      rgba(62, 79, 152, 0.7) 100%);
  -webkit-filter: blur(700px);
  filter: blur(700px);
}

.plan-section__btn {
  margin-bottom: 32px;
}

@media screen and (max-width: 575px) {
  .plan-section__btn {
    margin-top: 20px;
  }
}

.plan-section__top {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: -webkit-gradient(linear,
      left top,
      right top,
      color-stop(-93.24%, #b7bfe1),
      to(#3e4f98));
  background: linear-gradient(90deg, #b7bfe1 -93.24%, #3e4f98 100%);
  border-radius: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px 40px;
}

@media screen and (max-width: 991px) {
  .plan-section__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .plan-section__top {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 575px) {
  .plan-section__top {
    gap: 20px;
  }
}

.plan-section__top .insurance-info {
  position: relative;
}

.plan-section__top .insurance-info::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -100px;
  width: 1px;
  height: 100%;
  background: hsl(var(--border-color) / 0.4);
}

@media screen and (max-width: 1399px) {
  .plan-section__top .insurance-info::after {
    right: -70px;
  }
}

@media screen and (max-width: 1199px) {
  .plan-section__top .insurance-info::after {
    display: none;
  }
}

.plan-section__top .insurance-info:last-child::after {
  display: none;
}

.plan-section__top .insurance-info__title {
  color: hsl(var(--white));
  margin-bottom: 4px;
}

@media screen and (max-width: 575px) {
  .plan-section__top .insurance-info__title {
    font-size: 14px;
  }
}

.plan-section__top .insurance-info__text {
  color: hsl(var(--white));
  font-weight: 600;
  font-size: 18px;
}

@media screen and (max-width: 575px) {
  .plan-section__top .insurance-info__text {
    font-size: 16px;
  }
}

.plan-section .edit-btn {
  color: hsl(var(--white));
  font-size: 18px;
}

.back-btn {
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.back-btn__icon {
  font-size: 18px;
}

.plan-container {
  margin-top: 24px;
}

.plan-container__title {
  margin-bottom: 20px;
  font-weight: 600;
}

.plan-container .plan-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 991px) {
  .plan-container .plan-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.plan-container .plan-wrapper__left {
  width: calc(100% - 300px);
}

@media screen and (max-width: 991px) {
  .plan-container .plan-wrapper__left {
    width: 100%;
  }
}

.plan-container .plan-wrapper__right {
  width: 300px;
}

@media screen and (max-width: 991px) {
  .plan-container .plan-wrapper__right {
    width: 100%;
  }
}

.plan-container .plan-wrapper__right .plan-sidebar {
  padding: 20px;
  border-radius: 8px;
  background: hsl(var(--section-bg) / 0.2);
  border: 1px solid hsl(var(--border-color) / 0.2);
  margin-bottom: 10px;
}

.plan-container .plan-wrapper__right .plan-sidebar:last-child {
  margin-bottom: 10px;
}

.plan-container .plan-wrapper__right .plan-sidebar__top {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

.plan-container .plan-wrapper__right .plan-sidebar__title {
  margin-bottom: 0;
  font-family: var(--body-font);
  font-weight: 600;
}

.plan-container .plan-wrapper__right .plan-sidebar__text {
  font-size: 14px;
  color: hsl(var(--heading-color));
}

.plan-container .plan-wrapper__right .plan-sidebar .plan-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 10px;
  color: hsl(var(--heading-color));
}

.plan-container .plan-wrapper__right .plan-sidebar .plan-list__item:last-child {
  margin-bottom: 0;
}

.plan-container .plan-wrapper__right .plan-sidebar .plan-list__item-text {
  font-weight: 600;
}

.plan-container .plan-wrapper__right .plan-sidebar .plan-list__icon {
  font-size: 12px;
}

.plan-item {
  background-color: hsl(var(--section-bg));
  padding: 24px;
  border: 1px solid hsl(var(--border-color) / 0.4);
  border-radius: 8px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 1199px) {
  .plan-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 575px) {
  .plan-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media screen and (max-width: 575px) {
  .plan-item {
    gap: 20px;
  }
}

.plan-item:last-child {
  margin-bottom: 0;
}

.plan-item .text {
  font-size: 12px;
  font-weight: 600;
  color: hsl(var(--heading-color));
}

.plan-item__content {
  position: relative;
}

.plan-item__content .form-check {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.plan-item__content .form-check .form-check-input {
  margin-top: 0;
}

.plan-item__content:last-child::after {
  display: none;
}

.plan-item__content:nth-last-child(2)::after {
  display: none;
}

.plan-item__content .btn {
  margin-bottom: 12px;
}

.plan-item__title {
  margin-bottom: 4px;
  color: hsl(var(--heading-color));
}

.plan-item__number {
  margin-bottom: 4px;
  font-weight: 600;
  font-family: var(--body-font);
}

.plan-item__desc {
  font-size: 12px;
  color: hsl(var(--heading-color));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.plan-item__desc .icon {
  color: hsl(var(--base));
}

/*============== insurance plan section end here ================*/
/*========== plan details css start here ==========*/
.plan-details-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.plan-details-section__shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
}

.plan-details-section::before {
  position: absolute;
  content: "";
  width: 520px;
  height: 500px;
  left: -400px;
  top: -330px;
  z-index: -1;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.7)),
      to(rgba(62, 79, 152, 0.7)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.7) 0%,
      rgba(62, 79, 152, 0.7) 100%);
  -webkit-filter: blur(300px);
  filter: blur(300px);
}

.plan-details__item {
  margin-top: 24px;
}

.plan-details__title {
  margin-bottom: 24px;
}

@media screen and (max-width: 575px) {
  .plan-details__title {
    margin-bottom: 10px;
  }
}

.content-list-wrapper {
  gap: 16px 30px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  max-width: 650px;
  gap: 16px;
}

@media screen and (max-width: 575px) {
  .content-list-wrapper .form--check {
    margin-bottom: 10px;
  }
}

.content-list-wrapper .form--check:last-child {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.feature-list .feature-item {
  background-color: hsl(var(--section-bg));
  padding: 20px 12px;
  border-radius: 8px;
  text-align: center;
}

.feature-list .feature-item__icon {
  max-width: 60px;
  margin: 0 auto;
  margin-bottom: 16px;
}

.feature-list .feature-item__text {
  color: hsl(var(--heading-color));
  margin-bottom: 4px;
}

.feature-list .feature-item__title {
  font-family: var(--body-font);
  margin-bottom: 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-item__box {
  position: relative;
  border-radius: 6px;
  width: 20px;
  height: 20px;
  background-color: hsl(var(--base) / 0.06) !important;
  border: 1px solid hsl(var(--base)) !important;
}

.check-item__box.style-two {
  background-color: hsl(var(--danger) / 0.06) !important;
  border: 1px solid hsl(var(--danger)) !important;
}

.check-item__box::after {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: hsl(var(--base));
  font-size: 0.6875rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.check-item__box.style-two::after {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: hsl(var(--danger));
}

.check-item__text {
  font-weight: 600;
  width: calc(100% - 20px);
  font-size: 0.875rem;
  color: hsl(var(--heading-color));
}

/*============ plan details css end here ==========*/
/*============== insurance compare section start here ==============*/
.compare-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.compare-section__shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
}

.compare-section::before {
  position: absolute;
  content: "";
  width: 520px;
  height: 500px;
  left: -400px;
  top: -330px;
  z-index: -1;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.7)),
      to(rgba(62, 79, 152, 0.7)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.7) 0%,
      rgba(62, 79, 152, 0.7) 100%);
  -webkit-filter: blur(300px);
  filter: blur(300px);
}

.compare-section .edit-btn {
  color: hsl(var(--white));
  font-size: 18px;
}

.section-btn {
  margin-bottom: 32px;
}

@media screen and (max-width: 575px) {
  .section-btn {
    margin-top: 20px;
  }
}

.compare-container__top {
  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;
  gap: 10px 20px;
  margin-bottom: 24px;
}

@media screen and (max-width: 424px) {
  .compare-container__top {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.compare-container__top .title {
  margin-bottom: 0;
}



.back-btn__icon {
  font-size: 18px;
}

.compare-item {
  background-color: hsl(var(--section-bg));
  padding: 24px;
  border-radius: 8px;
}

@media screen and (max-width: 424px) {
  .compare-item {
    padding: 16px;
  }
}

.compare-item__text {
  color: hsl(var(--heading-color));
  font-weight: 600;
}

.compare-item__close-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  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;
  color: hsl(var(--white));
  background-color: #cacacf;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.compare-item__close-icon:hover {
  background-color: hsl(var(--danger));
}

.compare-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 24px;
}

@media screen and (max-width: 575px) {
  .compare-item__top {
    margin-bottom: 16px;
  }
}

.compare-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 90px;
}

@media screen and (max-width: 1399px) {
  .compare-item-wrapper {
    gap: 10px 40px;
  }
}

@media screen and (max-width: 1199px) {
  .compare-item-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (max-width: 424px) {
  .compare-item-wrapper {
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.compare-item-wrapper__content {
  position: relative;
}

.compare-item-wrapper__content::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -45px;
  width: 1px;
  height: 50px;
  background: hsl(var(--border-color) / 0.4);
}

@media screen and (max-width: 1399px) {
  .compare-item-wrapper__content::after {
    right: -20px;
  }
}

@media screen and (max-width: 1199px) {
  .compare-item-wrapper__content::after {
    display: none;
  }
}

.compare-item-wrapper__content:last-child::after {
  display: none;
}

.compare-item-wrapper__title {
  margin-bottom: 4px;
  color: hsl(var(--heading-color));
}

.compare-item-wrapper__number {
  margin-bottom: 4px;
  font-weight: 600;
  font-family: var(--body-font);
}

.compare-item-wrapper__desc {
  font-size: 12px;
  color: hsl(var(--heading-color));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.compare-item-wrapper__desc .icon {
  color: hsl(var(--base));
}

.compare-table {
  margin: 0;
  margin-top: 12px;
  border-collapse: collapse;
  border-collapse: separate;
  border-spacing: 0px 0px;
}

.compare-table tbody {
  border: 0 !important;
}

.compare-table tbody tr .title {
  background-color: hsl(var(--section-bg) / 0.2) !important;
  color: hsl(var(--heading-color)) !important;
  font-weight: 600 !important;
  padding: 16px !important;
}

@media screen and (max-width: 424px) {
  .compare-table tbody tr .title {
    padding: 12px !important;
  }
}

.compare-table tbody tr:last-child {
  border-bottom: 0;
}

.compare-table tbody tr:last-child td {
  border-bottom: 1px solid hsl(var(--border-color) / 0.4) !important;
}

.compare-table tbody tr:last-child td:first-child {
  border-radius: 0px;
}

.compare-table tbody tr:last-child td:last-child {
  border-radius: 0;
}

.compare-table tbody tr td {
  text-align: left;
  vertical-align: middle;
  padding: 16px;
  border-width: 1px;
  color: hsl(var(--heading-color));
  font-weight: 400;
  max-width: 170px;
  font-size: 1rem;
  border: 0;
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--border-color) / 0.4);
  border-right: 0;
  border-bottom: 0;
}

@media screen and (max-width: 1399px) {
  .compare-table tbody tr td {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 424px) {
  .compare-table tbody tr td {
    padding: 10px;
    font-size: 12px;
  }
}

.compare-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;
}

.compare-table tbody tr td:first-child {
  text-align: left;
  font-weight: 400;
  color: hsl(var(--body-color));
  border-left: 1px solid hsl(var(--border-color) / 0.4);
}

.compare-table tbody tr td:last-child {
  text-align: left;
  border-right: 1px solid hsl(var(--border-color) / 0.4);
}

.compare-table tbody tr td:nth-child(2) {
  text-align: left;
}

/*============== insurance compare section end here ================*/
/* ================================= Dashboard Fulid Sidebar Css Start =========================== */
.dashboard .sidebar-logo {
  background-color: hsl(var(--white) / 0.1);
  border-bottom: 1px solid hsl(var(--border-color) / 0.2);
  padding: 24px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.dashboard .sidebar-logo img {
  max-width: 170px;
  max-height: 60px;
}

.dashboard .bar-style {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  top: 0;
  border-radius: 0;
  background-color: #f0f0f4;
}

@media screen and (max-width: 991px) {
  .dashboard .bar-style {
    display: none;
  }
}

.dashboard .bar-style::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 20px;
  right: 0px;
  top: -5px;
  border-radius: 16px 0 16px 0;
  background-color: #292c34;
}

.dashboard .sidebar-menu {
  height: 100vh;
  background-color: hsl(var(--dark));
  overflow-y: auto;
  z-index: 999;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  width: 300px;
  border-radius: 0;
  position: fixed;
  left: 0;
  top: 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  scrollbar-width: thin;
  scrollbar-color: transparent !important;
}

@media screen and (max-width: 424px) {
  .dashboard .sidebar-menu {
    width: 320px;
  }
}

.dashboard .sidebar-menu__bar {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: hsl(var(--section-bg));
  font-size: 24px;
  padding: 12px 5px;
  border-radius: 16px 0 0 16px;
  color: hsl(var(--heading-color));
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .dashboard .sidebar-menu__bar {
    display: none;
  }
}

.dashboard .sidebar-menu__bar::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  right: 0;
  bottom: -20px;
  border-radius: 0;
  background-color: #f0f0f4;
}

@media screen and (max-width: 991px) {
  .dashboard .sidebar-menu__bar::after {
    display: none;
  }
}

.dashboard .sidebar-menu__bar::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 20px;
  right: 0px;
  bottom: -20px;
  border-radius: 0px 16px 0px 16px;
  background-color: #292c34;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .dashboard .sidebar-menu__bar::before {
    display: none;
  }
}

.dashboard .sidebar-menu__bar i {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.dashboard .sidebar-menu::after {
  position: absolute;
  content: "";
  top: 0;
  left: -550px;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.7)),
      to(rgba(62, 79, 152, 0.7)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.7) 0%,
      rgba(62, 79, 152, 0.7) 100%);
  height: 600px;
  width: 600px;
  -webkit-filter: blur(250px);
  filter: blur(250px);
  border-radius: 50%;
  z-index: -1;
}

.dashboard .sidebar-menu::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.dashboard .sidebar-menu::-webkit-scrollbar-thumb {
  background-color: hsl(var(--black) / 0.15);
}

.dashboard .sidebar-menu__inner {
  width: 100%;
}

.dashboard .sidebar-menu.show-sidebar {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@media screen and (max-width: 991px) {
  .dashboard .sidebar-menu {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 9992;
    border-radius: 0;
  }
}

.dashboard .sidebar-menu__close {
  position: absolute;
  top: 30px;
  right: 16px;
  color: hsl(var(--white));
  font-size: 1rem;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  cursor: pointer;
  z-index: 9;
  width: 30px;
  height: 30px;
  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: hsl(var(--white) / 0.1);
  border-radius: 50%;
}

.dashboard .sidebar-menu__close:active {
  top: 14px;
}

.dashboard .sidebar-menu__close:hover,
.dashboard .sidebar-menu__close:focus {
  background-color: hsl(var(--danger));
  color: hsl(var(--white));
}

.dashboard .sidebar-menu-list {
  margin-top: 40px;
  padding: 0 24px;
}

.dashboard .sidebar-menu-list__item {
  margin-bottom: 6px;
}

.dashboard .sidebar-menu-list__item:last-child .sidebar-menu-list__link {
  border-bottom: 0;
}

.dashboard .sidebar-menu-list__item.active>a {
  color: hsl(var(--white));
  background: -webkit-gradient(linear,
      left top,
      right top,
      color-stop(-93.24%, #b7bfe1),
      to(hsl(var(--base))));
  background: linear-gradient(90deg, #b7bfe1 -93.24%, hsl(var(--base)) 100%);
}

.dashboard .sidebar-menu-list__item.has-dropdown.active>a {
  color: hsl(var(--white));
}

.dashboard .sidebar-menu-list__item.has-dropdown.active>a:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 18px;
  color: hsl(var(--white));
}

.dashboard .sidebar-menu-list__item.has-dropdown>a:after {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  text-align: center;
  background: 0 0;
  right: 16px;
  top: 14px;
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
  color: hsl(var(--text-color) / 0.6);
  font-size: 0.8125rem;
}

.dashboard .sidebar-menu-list__link {
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding: 12px 15px;
  width: 100%;
  color: hsl(var(--white));
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 600;
  -webkit-transition: width ease-in-out 0.3s;
  transition: width ease-in-out 0.3s;
  white-space: nowrap;
}

.dashboard .sidebar-menu-list__link:hover {
  background: -webkit-gradient(linear,
      left top,
      right top,
      color-stop(-93.24%, #b7bfe1),
      to(hsl(var(--base))));
  background: linear-gradient(90deg, #b7bfe1 -93.24%, hsl(var(--base)) 100%);
}

.dashboard .sidebar-menu-list__link.active {
  color: hsl(var(--base));
}

.dashboard .sidebar-menu-list__link .icon {
  margin-right: 8px;
  font-size: 1.125rem;
  text-align: center;
  border-radius: 4px;
}

.dashboard .sidebar-submenu {
  display: none;
}

.dashboard .sidebar-submenu.open-submenu {
  display: block;
}

.dashboard .sidebar-submenu-list {
  padding: 5px 0;
}

.dashboard .sidebar-submenu-list__item {
  margin-bottom: 6px;
}

.dashboard .sidebar-submenu-list__item.active>a {
  color: hsl(var(--white));
  background: -webkit-gradient(linear,
      left top,
      right top,
      color-stop(-93.24%, #b7bfe1),
      to(hsl(var(--base))));
  background: linear-gradient(90deg, #b7bfe1 -93.24%, hsl(var(--base)) 100%);
}

.dashboard .sidebar-submenu-list__link {
  padding: 12px 15px;
  display: block;
  color: hsl(var(--white));
  margin-left: 20px;
  border-radius: 8px;
  position: relative;
  padding-left: 25px;
  -webkit-transition: widthease-in-out 0.3s;
  transition: widthease-in-out 0.3s;
  white-space: nowrap;
}

.dashboard .sidebar-submenu-list__link::before {
  position: absolute;
  content: "";
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 1px solid hsl(var(--white) / 0.4);
  border-radius: 50%;
}

.dashboard .sidebar-submenu-list__link:hover {
  background: -webkit-gradient(linear,
      left top,
      right top,
      color-stop(-93.24%, #b7bfe1),
      to(hsl(var(--base))));
  background: linear-gradient(90deg, #b7bfe1 -93.24%, hsl(var(--base)) 100%);
}

.dashboard .sidebar-submenu-list__link .icon {
  margin-right: 8px;
  font-size: 0.9375rem;
  text-align: center;
  border-radius: 4px;
}

.sidebar-menu-list__item.has-dropdown.active .sidebar-submenu {
  display: block;
}

/* ============ User Profile Css Start ============ */
/* Sidebar User Info Css */
.user-profile {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid hsl(var(--base) / 0.15);
  width: 100%;
  padding: 20px 24px;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 299px;
  background-color: hsl(var(--white));
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.user-profile-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.user-profile-info__icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f3f9fe;
  font-size: 1.125rem;
  border: 1px solid hsl(var(--black) / 0.1);
}

.user-profile-info__content {
  width: calc(100% - 50px);
  padding-left: 15px;
}

.user-profile-info__name {
  margin-bottom: 0px;
}

.user-profile-info__desc {
  color: hsl(var(--body-color));
  font-size: 15px;
}

.dashboard.show-hide .sidebar-menu .sidebar-menu-list__link {
  padding: 12px 17px;
}

.dashboard.show-hide .sidebar-menu .sidebar-menu-list__link .icon {
  margin-right: 0;
}

.dashboard.show-hide .sidebar-menu .sidebar-menu-list .text {
  display: none;
  width: 0;
  white-space: nowrap;
}

.dashboard.show-hide .sidebar-menu .has-dropdown .sidebar-submenu {
  display: none !important;
}

.dashboard.show-hide .sidebar-logo {
  padding: 24px 16px;
}

.dashboard.show-hide .sidebar-menu-list__item.has-dropdown>a:after {
  display: none;
}

/* ========= User Profile Css End ============== */
/* ================================= Dashboard Fulid Sidebar Css End =========================== */
/* ======================  Plugin Customization Start  ======================*/
/* ======================  Select2 Start  ======================*/
.select2-wrapper {
  --border-radius: 8px;
  --height: 40px;
  --select2-border: hsl(var(--border-color));
}

.select2+.select2-container {
  border: 1px solid var(--select2-border);
  border-radius: var(--border-radius);
  height: 40px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  background: hsl(var(--white));
}

.area-section .select2+.select2-container {
  border: 0;
}

.select2+.select2-container .select2-selection__rendered {
  line-height: 25px !important;
  padding-left: 6px !important;
}

.select2+.select2-container .select2-selection--single {
  height: var(--height) !important;
}

.select2+.select2-container .select2-selection {
  border: 0;
  background-color: transparent;
  width: 100%;
  outline: 0;
}

.select2+.select2-container .selection {
  width: 100%;
}

.select2+.select2-container .select2-selection__arrow b {
  border: 0;
}

.select2-container--open:has(.select2-dropdown--above) {
  margin-top: -12px;
}

.select2-container--open:has(.select2-dropdown--below) {
  margin-top: 0px;
  z-index: 1099;
  border: 0;
}

.select2-container--open .select2-dropdown {
  border: 1px solid hsl(var(--black) / 0.1) !important;
  border-radius: 4px !important;
  overflow: hidden;
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
}

.select2-container--open .select2-dropdown--above {
  margin-bottom: 10px;
}

.select2-search__field {
  border-radius: 4px !important;
  border: 1px solid hsl(var(--black) / 0.1) !important;
}

.select2-search__field:focus {
  outline: 0;
  border-color: hsl(var(--base)) !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: hsl(var(--base) / 0.25) !important;
}

.select2-container--below.select2-container--open .select2-selection__arrow::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: hsl(var(--body-color));
  font-weight: 400;
  font-size: 16px;
}

/* ======================  Select2 End  ======================*/
.select2-container:has(.select2-selection--single) {
  width: 100% !important;
}

/* ================= Slick Arrow & Dots css Start ================ */
.slick-initialized.slick-slider {
  margin: 0 -10px;
}

.slick-initialized.slick-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-initialized.slick-slider .slick-slide {
  height: auto;
  padding: 0 10px;
}

.slick-initialized.slick-slider .slick-slide>div {
  height: 100%;
}

.slick-arrow {
  position: absolute;
  z-index: 1;
  border: 1px solid hsl(var(--base) / 0.2);
  color: hsl(var(--base) / 0.1);
  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%;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  background-color: hsl(var(--base) / 0.1);
  font-size: 20px;
  bottom: -10px;
}

.slick-arrow:hover {
  background-color: hsl(var(--section-bg));
  color: hsl(var(--base));
}

.slick-next {
  right: 0px;
}

.slick-prev {
  left: 0px;
}

.choose-us-wrapper .slick-arrow {
  top: 50%;
  transform: translateY(-50%);
  background-color: hsl(var(--white));
  color: hsl(var(--base));
}

.choose-us-wrapper .slick-prev {
  left: -10px;
}

.choose-us-wrapper .slick-next {
  right: -10px;
}

/* -------------- Slick Slider Arrow Style two ------------  */
/* Dots Css Start */

.slick-dots {
  text-align: center;
  padding-top: 32px;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots li button {
  border: none;
  background-color: hsl(var(--base) / 0.2);
  color: hsl(var(--white));
  margin: 0 3px;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  border-radius: 50%;
  text-indent: -9999px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.slick-dots li.slick-active button {
  background-color: hsl(var(--base));
  width: 20px;
  border-radius: 5px;
  color: hsl(var(--base));
}

/* Dots Css End */
/* ================= Slick Arrow & Dots css Start ================ */
/* ================================= Range Slider Css Start =========================== */
.custom--range__content {
  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;
  margin-top: 10px;
}

.custom--range__content label {
  width: 40%;
}

.custom--range__content input {
  width: 60%;
  text-align: right;
}

.custom--range input {
  border: 0;
  color: hsl(var(--body-color));
  font-weight: 500;
}

.custom--range #slider-range {
  height: 5px;
  border: 0;
  background: hsl(var(--base) / 0.2);
}

.custom--range #slider-range .ui-widget-header {
  background-color: hsl(var(--base));
}

.custom--range #slider-range span:focus {
  background-color: hsl(var(--base));
}

.custom--range #slider-range .ui-slider-handle {
  width: 15px !important;
  height: 15px !important;
  background-color: hsl(var(--base)) !important;
  border: 2px solid hsl(var(--white)) !important;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* ================================= Range Slider Css End =========================== */
/* ======================  Plugin Customization End  ======================*/
/* ======================  Pages Design Start  ======================*/
/* =========================================== Account Css Start =========================*/
.account {
  position: relative;
  z-index: 1;
}
.account::before {
  position: absolute;
  content: "";
  width: 520px;
  height: 520px;
  left: -400px;
  top: -330px;
  z-index: -1;
  background: -webkit-gradient(linear,
    left top,
    left bottom,
    from(rgba(219, 223, 240, 0.6)),
    to(rgba(62, 79, 152, 0.6)));
  background: linear-gradient(180deg,
    rgba(219, 223, 240, 0.6) 0%,
    rgba(62, 79, 152, 0.6) 100%);
  -webkit-filter: blur(700px);
  filter: blur(700px);
}

.account.register .account-form-wrapper {
  max-width: 530px;
}

.account-form-wrapper {
  background-color: hsl(var(--section-bg)/.2);
  max-width: 480px;
  padding: 48px;
  border-radius: 8px;
  border: 1px solid hsl(var(--border-color)/.2);
}

@media screen and (max-width: 575px) {
  .account-form-wrapper {
    padding: 20px;
  }
}

.account-form-wrapper__text {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--text-color));
}

.account-form-wrapper__title {
  margin-bottom: 8px;
  text-align: center;
  color: hsl(var(--base));
}

.account-form {
  margin-top: 30px;
}

@media screen and (max-width: 424px) {
  .account-form {
    margin-top: 20px;
  }
}

.account-form__text {
  text-align: center;
  font-size: 14px;
  color: hsl(var(--base));
}

.account-form__text a {
  color: hsl(var(--base));
  font-weight: 600;
  text-decoration: underline;
}

.account-form .forgot-password {
  color: hsl(var(--heading-color));
  font-size: 14px;
  margin-bottom: 16px;
}

.account-inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  padding: 75px;
  justify-content: flex-end;
  position: relative;
}

.account-inner__thumb {
  position: absolute;
  bottom: 0;
  left: 60px;
  max-width: 500px;
}

@media (max-width: 1399px) {
  .account-inner__thumb {
    left: 0px;
  }

  .account-inner {
    padding: 50px 40px;
  }
}
@media (max-width: 1199px) {
  .account-inner__thumb {
    left: 0px;
    max-width: 400px;
  }

  .account-inner {
    padding: 40px 0px;
  }
  .account-form-wrapper {
    padding: 30px;
  }
  .account.register .account-form-wrapper {
    max-width: 430px;
  }
  .account-form-wrapper {
    max-width: 430px;
  }
}
@media (max-width: 991px) {
  .account-inner__thumb {
    display: none;
  }

  .account-inner {
    justify-content: center;
  }

  .account-form-wrapper {
    padding: 20px;
  }
}
.social-login-wrapper {
  text-align: center;
  margin: 30px 0;
  border-top: 1px solid hsl(var(--border-color));
  padding-top: 30px;
}

.social-login-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.social-login-list .social-login-btn {
  border: 1px solid hsl(var(--border-color));
  -webkit-box-shadow: 0px 1px 2px 0px #1018280d;
  box-shadow: 0px 1px 2px 0px #1018280d;
  border-radius: 8px;
  padding: 10px 15px;
  color: hsl(var(--heading-color));
  font-size: 14px;
  font-weight: 600;
  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;
  gap: 5px;
  line-height: 1.3;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.social-login-list .social-login-btn:hover {
  border-color: hsl(var(--base));
  color: hsl(var(--base));
}

.form--check .link {
  color: hsl(var(--base));
  font-weight: 600;
}

/* ============================================ Account Css End ====================================*/
/* =========================================== Blog Details Css Start ==============================*/
.blog-details {
  height: 100%;
}

.blog-details__thumb {
  height: 450px;
  max-height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .blog-details__thumb {
    height: 350px;
  }
}

@media screen and (max-width: 767px) {
  .blog-details__thumb {
    height: 300px;
  }
}


.blog-details .blog-item__bottom {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-details .blog-item__bottom .text-list__item {
  color: hsl(var(--body-color));
}
.blog-details .blog-item__bottom .title {
  margin-bottom: 0;
  font-size: 16px;
}
.blog-details__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 10px;
  margin-top: 32px;
}
.blog-details__content {
  margin-top: 24px;
}

.blog-details__share .social-list {
  gap: 5px 24px;
}

.blog-details__title {
  margin-bottom: 24px;
}

.blog-details__desc {
  margin-bottom: 24px;
}

.blog-details__desc:last-child {
  margin-bottom: 0;
}

.blog-details .social-list__link {
  color: hsl(var(--base));
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.blog-details .social-list__link:hover {
  color: hsl(var(--base-d-300));
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.quote-text {
  background-color: hsl(var(--base));
  padding: 20px 24px;
  border-radius: 16px;
  border-left: solid #35353f;
  border-bottom: solid #35353f;
  border-width: 0px, 0px, 4px, 4px;
}

.quote-text__desc {
  color: hsl(var(--white));
  font-size: 17px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .quote-text {
    padding: 25px 15px;
  }
}

.content-wrapper {
  margin-bottom: 24px;
}

.content-wrapper__title {
  margin-bottom: 16px;
  font-weight: 600;
}

.content-wrapper:last-child {
  margin-bottom: 0;
}

.content-list__item {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: hsl(var(--heading-color));
  position: relative;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .content-list__item {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 424px) {
  .content-list__item {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.content-list__item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: hsl(var(--black));
}

.content-list.list-two .content-list__item {
  font-size: 16px;
  margin-bottom: 16px;
  color: hsl(var(--body-color));
  font-weight: 400;
}

/* ========================================== Blog Details Css End ======================================*/
/*=========== contact section css start here ===========*/
.contact-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-section .left-bg {
  top: -270px;
  bottom: unset;
  width: 520px;
  height: 620px;
  left: -350px;
}
.contact-container {
  margin-top: 32px;
}
.contact-item {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  background: hsl(var(--white));
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  height: 100%;
}

.contact-item__icon {
  color: hsl(var(--base));
  font-size: 30px;
  background: hsl(var(--section-bg));
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-item__title {
  margin-bottom: 5px;
}
.contact-item__content {
  width: calc(100% - 70px);
  padding: 20px;
}

.contact-item__desc a {
  color: hsl(var(--body-color));
}

.contact-wrapper {
  background-color: hsl(var(--white));
  padding: 32px;
  border-radius: 8px;
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
}

.contact-wrapper__map {
  width: 100%;
}

.contact-wrapper__map iframe {
  height: 100%;
  border-radius: 10px;
  width: 100%;
  min-height: 400px;
}

/*============= contact section css end here ===========*/
/* ================================= Dashboard Css Start =========================== */
.dashboard {
  position: relative;
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
  /* User Info Css Start */
  /* User Info Css End */
  /* ================================= Dashboard Css End =========================== */
}

.dashboard__right {
  width: 100%;
  margin-left: 300px;
  background-color: hsl(var(--white));
}

@media screen and (max-width: 991px) {
  .dashboard__right {
    width: 100%;
    margin-left: 0;
  }
}

.dashboard .search-form {
  width: 370px;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .dashboard .search-form {
    width: 300px;
  }
}

@media screen and (max-width: 575px) {
  .dashboard .search-form {
    width: 100%;
  }
}

.dashboard .search-form .form--control {
  background-color: transparent !important;
  padding-left: 40px;
}

@media screen and (max-width: 424px) {
  .dashboard .search-form .form--control {
    padding-left: 28px;
  }
}

.dashboard .search-form__icon {
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: hsl(var(--body-color) / 0.5);
}

.dashboard .dropdown {
  display: inline-block !important;
}

.dashboard .dashboard-header {
  padding: 0 24px;
  background-color: hsl(var(--section-bg));
  position: sticky;
  top: 0;
  z-index: 8;
}

@media screen and (max-width: 424px) {
  .dashboard .dashboard-header {
    padding: 0 15px;
  }
}

.dashboard .dashboard-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.dashboard .dashboard-header__left .title {
  font-family: var(--body-font);
  margin-bottom: 0;
  color: hsl(var(--body-color));
}

.dashboard .dashboard-header__inner {
  padding: 20px 0;
  gap: 10px;
}

@media (max-width: 991px) {
  .dashboard .dashboard-header__inner {
    padding: 10px 0;
  }
}

.dashboard .dashboard-header__right {
  gap: 15px;
}

.dashboard .user-info {
  position: relative;
  z-index: 91;
}

.dashboard .user-info__thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid hsl(var(--border-color) / 0.1);
}

@media screen and (max-width: 424px) {
  .dashboard .user-info__thumb {
    width: 35px;
    height: 35px;
  }
}

.dashboard .user-info__thumb img {
  -o-object-fit: cover;
  object-fit: cover;
}

.dashboard .user-info__button {
  cursor: pointer;
  gap: 15px;
}

@media screen and (max-width: 575px) {
  .dashboard .user-info__button {
    gap: 10px;
  }
}

.dashboard .user-info__button:focus-visible {
  outline: none;
  border: none;
}

.dashboard .user-info__desc {
  font-size: 14px;
}

.dashboard .user-info__desc .icon {
  margin-left: 10px;
  color: hsl(var(--body-color));
}

@media screen and (max-width: 767px) {
  .dashboard .user-info__profile {
    display: none;
  }
}

.dashboard .user-info .user-info-dropdown {
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: 0.25s linear;
  transition: 0.25s linear;
  background-color: hsl(var(--white));
  -webkit-box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  position: absolute;
  right: 0;
  z-index: 9;
  top: 100%;
  margin-top: 15px;
  padding: 0px;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  visibility: hidden;
  opacity: 0;
}

.dashboard .user-info .user-info-dropdown.show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 991;
}

@media screen and (max-width: 991px) {
  .dashboard .user-info .user-info-dropdown {
    -webkit-transform: unset !important;
    transform: unset !important;
    top: 43px !important;
  }
}

.dashboard .user-info .user-info-dropdown__item:last-child .user-info-dropdown__link {
  border-bottom: 0 !important;
}

.dashboard .user-info .user-info-dropdown__link {
  padding: 8px 16px;
  color: #5d7387;
  margin-left: 0;
  width: 100%;
  font-weight: 600;
  text-align: left;
  border-radius: 0px;
}

.dashboard .user-info .user-info-dropdown__link.active {
  background-color: hsl(var(--section-bg));
  color: hsl(var(--title-color));
}

.dashboard .user-info .user-info-dropdown__link:hover {
  background-color: hsl(var(--section-bg));
}

.dashboard .user-info .user-info-dropdown__link:hover .text {
  color: hsl(var(--title-color)) !important;
}

.dashboard .user-info .user-info-dropdown__link:hover .icon {
  color: hsl(var(--title-color)) !important;
}

.dashboard .user-info .user-info-dropdown__link .icon {
  margin-right: 8px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.dashboard .user-info__icon {
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: hsl(var(--white));
  overflow: hidden;
  border-radius: 50%;
  background-color: hsl(var(--body-bg));
  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;
}

.dashboard .user-info__name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
}

.dashboard .dashboard-body {
  position: relative;
  padding: 24px;
}

@media screen and (max-width: 424px) {
  .dashboard .dashboard-body {
    padding: 20px 15px;
  }
}

.dashboard .dashboard-body__bar-icon {
  color: hsl(var(--body-color));
  font-size: 1.5625rem;
  cursor: pointer;
}

.dashboard .dashboard-body__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px 30px;
  margin-bottom: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 424px) {
  .dashboard .dashboard-body__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.dashboard .dashboard-body__left {
  min-width: 100px;
}

@media screen and (max-width: 424px) {
  .dashboard .dashboard-body__left {
    width: 100%;
  }
}

.dashboard .dashboard-body__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .dashboard .dashboard-body__right {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }
}

.dashboard .dashboard-body__right .search-form {
  width: 250px;
}
@media screen and (max-width: 991px) {
  .dashboard .dashboard-body__right .search-form {
    width: 170px;
  }
}
@media screen and (max-width: 424px) {
  .dashboard .dashboard-body__right .search-form {
    width: 100%;
  }
}

.dashboard .dashboard-body__right .search-form .form--control {
  padding: 4px 16px;
  padding-left: 35px;
}

.dashboard .dashboard-widget {
  padding: 24px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: hsl(var(--white));
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  height: 100%;
}

.dashboard .dashboard-widget::after {
  position: absolute;
  content: "";
  right: 50px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  z-index: -1;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.7)),
      to(rgba(62, 79, 152, 0.7)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.7) 0%,
      rgba(62, 79, 152, 0.7) 100%);
  -webkit-filter: blur(70px);
  filter: blur(70px);
}

.dashboard .dashboard-widget:hover {
  -webkit-transform: translateY(-2px) scale(1.01);
  transform: translateY(-2px) scale(1.01);
}

@media screen and (max-width: 767px) {
  .dashboard .dashboard-widget {
    padding: 16px;
  }
}

.dashboard .dashboard-widget__btn-group .btn {
  margin-bottom: 10px;
}

.dashboard .dashboard-widget__btn-group .btn:last-child {
  margin-bottom: 0;
}

.dashboard .dashboard-widget__title {
  margin-bottom: 16px;
  font-weight: 600;
}

.dashboard .dashboard-widget__text {
  margin-top: 10px;
  color: hsl(var(--heading-color));
  font-weight: 600;
}

@media screen and (max-width: 1399px) {

  .dashboard .dashboard-widget__text,
  .dashboard-widget__desc {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 575px) {

  .dashboard .dashboard-widget__text,
  .dashboard-widget__desc {
    font-size: 0.8125rem;
  }
}

.dashboard .dashboard-widget__btn {
  margin-top: 16px;
}

.dashboard .dashboard-widget__shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.dashboard-table {
  background-color: hsl(var(--white));
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
  border-radius: 8px;
}

.dashboard-table__top {
  padding: 24px;
}

.dashboard-table__title {
  margin-bottom: 0;
}

@media screen and (max-width: 424px) {
  .dashboard-select {
    width: 100%;
  }
}

.dashboard-select .form--control {
  background-color: hsl(var(--section-bg));
  font-size: 14px;
  font-weight: 600;
  padding-right: 40px;
}

/* info card css here */
.info-main-container {
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width:767px) {
  .info-main-container {
    grid-template-columns: 1fr;
  }
  
}

.info-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.info-wrapper__title {
  margin-bottom: 10px;
}

.info-card {
  background-color: hsl(var(--white));
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
  padding: 16px;
  border-radius: 8px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.info-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.info-list__item:not(:last-child) {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid hsl(var(--black) / .06);
}


@media screen and (max-width: 1199px) {
  .info-list__item {
    font-size: 14px;
  }
}

.info-list__item:last-child {
  margin-bottom: 0;
}

.info-list__title {
  font-weight: 600;
  color: hsl(var(--heading-color));
}

/*=========== policy-list css start here ===========*/
.policy-renewal {
  margin-top: 24px;
}

.policy-renewal__header {
  padding: 12px 20px;
  border-radius: 8px;
  background-color: hsl(var(--section-bg));
}

.policy-renewal__body {
  margin-top: 24px;
}

.policy-renewal__body .text {
  margin-bottom: 6px;
  color: hsl(var(--heading-color));
}

.policy-renewal__body .policy-list {
  list-style: auto;
  padding-left: 20px;
}

.policy-renewal__body .policy-list__item {
  margin-bottom: 6px;
  color: hsl(var(--heading-color));
}

.policy-renewal__body .policy-list__item:last-child {
  margin-bottom: 0;
}

.policy-renewal__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 16px;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.amount-list {
  background: hsl(var(--section-bg));
  padding: 16px 12px;
  border-radius: 8px;
}

.amount-list__item {
  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;
  gap: 5px 10px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
}

.amount-list__item:last-child {
  margin-bottom: 0;
}

.amount-list__item.total {
  color: hsl(var(--heading-color));
  border-top: 1px solid hsl(var(--border-color));
  padding-top: 8px;
}

/*============== insurance plan page css start here ==============*/
.insurance-plan-wrapper {
  border-radius: 8px;
  overflow: hidden;
  background-color: hsl(var(--white));
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
}

.insurance-plan-wrapper__header {
  position: relative;
  padding: 32px 40px;
  z-index: 1;
  background: -webkit-gradient(linear,
      left top,
      right top,
      color-stop(-93%, #b7bfe1),
      to(hsl(var(--base))));
  background: linear-gradient(90deg, #b7bfe1 -93%, hsl(var(--base)) 100%);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .insurance-plan-wrapper__header {
    padding: 24px;
  }
}

.insurance-plan-wrapper__header .title {
  color: hsl(var(--white));
  margin-bottom: 6px;
}

.insurance-plan-wrapper__header .text {
  color: hsl(var(--white));
}

.insurance-plan-wrapper__shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  z-index: -1;
}

.insurance-plan-wrapper__shape img {
  width: 100%;
  height: 100%;
}

.insurance-plan-wrapper__body {
  padding: 50px 40px;
}

@media screen and (max-width: 1499px) {
  .insurance-plan-wrapper__body {
    padding: 40px 30px;
  }
}

@media screen and (max-width: 1399px) {
  .insurance-plan-wrapper__body {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 424px) {
  .insurance-plan-wrapper__body {
    padding: 30px 16px;
  }
}

.information-container {
  background: hsl(var(--base) / 0.1);
  padding: 24px;
  border-radius: 8px;
}

@media screen and (max-width: 424px) {
  .information-container {
    padding: 0;
    background-color: transparent;
  }
}

.information-container.information-two {
  background-color: hsl(var(--white));
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
}



.plan-info {
  margin-top: 90px;
}

@media screen and (max-width: 575px) {
  .plan-info {
    margin-top: 40px;
    padding: 0 40px;
  }
}

@media screen and (max-width: 424px) {
  .plan-info {
    padding: 0 20px;
  }
}

.page-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  counter-reset: step;
  padding: 0 40px;
}

@media screen and (max-width: 1399px) {
  .page-list {
    padding: 0 20px;
  }
}

@media screen and (max-width: 575px) {
  .page-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.page-list .nav-item {
  border-bottom: 0;
  padding: 3px;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .page-list .nav-item {
    padding-bottom: 40px;
    text-align: left;
  }
}

@media screen and (max-width: 575px) {
  .page-list .nav-item:last-child {
    padding-bottom: 0;
  }
}

.page-list .nav-item::after {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  bottom: 8px;
  color: hsl(var(--body-color));
  font-size: 16px;
  top: -26px;
  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;
  counter-increment: step;
  content: counter(step);
  z-index: 2;
  font-size: 24px;
}

@media screen and (max-width: 1399px) {
  .page-list .nav-item::after {
    font-size: 20px;
  }
}

@media screen and (max-width: 575px) {
  .page-list .nav-item::after {
    top: 16px;
    left: -7px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-size: 18px;
  }
}

.page-list .nav-item::before {
  content: "";
  position: absolute;
  top: -17px;
  right: 50%;
  width: 100%;
  height: 6px;
  background: hsl(var(--section-bg));
}

@media screen and (max-width: 575px) {
  .page-list .nav-item::before {
    top: 0;
    left: 0;
    right: unset;
    width: 6px;
    height: 100%;
  }
}

.page-list .nav-item .nav-link {
  padding: 0 !important;
  background-color: transparent !important;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 0 !important;
  position: relative;
}

.page-list .nav-item .nav-link::before {
  position: absolute;
  content: "";
  top: -38px;
  left: 50%;
  width: 40px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 40px;
  border-radius: 50%;
  background-color: hsl(var(--section-bg));
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .page-list .nav-item .nav-link::before {
    display: block !important;
  }
}

@media screen and (max-width: 575px) {
  .page-list .nav-item .nav-link::before {
    top: 50%;
    left: -18px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 36px;
    height: 36px;
  }
}

.page-list .nav-item .nav-link__title {
  margin-top: 10px;
  font-weight: 600;
}

@media screen and (max-width: 1399px) {
  .page-list .nav-item .nav-link__title {
    font-size: 15px;
  }
}

@media screen and (max-width: 1199px) {
  .page-list .nav-item .nav-link__title {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .page-list .nav-item .nav-link__title {
    font-size: 12px;
  }
}

@media screen and (max-width: 575px) {
  .page-list .nav-item .nav-link__title {
    margin-top: 0;
    margin-left: 40px;
    font-size: 14px;
  }

  .nav-link__desc {
    margin-left: 40px;
  }
}

.page-list .nav-item.active.nav-item::after {
  color: hsl(var(--white));
  content: "\f00c" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
}

.page-list .nav-item.active.nav-item::before {
  background-color: hsl(var(--success));
}

.page-list .nav-item.active.nav-item .nav-link::before {
  background-color: hsl(var(--success));
}

.page-list .nav-item.active.nav-item .nav-link__title {
  color: hsl(var(--heading-color));
}

.page-list .nav-item.active .transaction-item__title {
  color: hsl(var(--white));
}

.page-list .nav-item.active .transaction-item__text {
  color: hsl(var(--white));
}

.page-list .nav-item:last-child::before {
  right: -50%;
  width: 200%;
}

@media screen and (max-width: 575px) {
  .page-list .nav-item:last-child::before {
    top: 0;
    left: 0;
    right: unset;
    width: 6px;
    height: 100%;
    display: none;
  }
}

/* payment page css */
.payment-card {
  border: 1px solid hsl(var(--border-color));
  border-radius: 8px;
  overflow: hidden;
}

.payment-card__header {
  background-color: hsl(var(--section-bg));
  padding: 32px 40px;
}

@media screen and (max-width: 575px) {
  .payment-card__header {
    padding: 20px;
  }
}

.payment-card__title {
  margin-bottom: 8px;
}

.payment-card__text {
  font-size: 14px;
  color: hsl(var(--heading-color));
}

.payment-card__body {
  padding: 40px;
}

@media screen and (max-width: 575px) {
  .payment-card__body {
    padding: 20px;
  }
}

/*============== insurance plan page css end here ==============*/
/*================ confirmation page start  css ====================*/
.confirmation-container {
  min-height: calc(100vh - 140px);
  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: hsl(var(--white));
  padding: 30px;
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
  border-radius: 8px;
}

@media screen and (max-width: 424px) {
  .confirmation-container {
    padding: 15px;
  }
}

.confirmation-container__icon {
  text-align: center;
  display: block;
  font-size: 60px;
  color: hsl(var(--base));
  margin-bottom: 30px;
  line-height: 1;
}

@media screen and (max-width: 575px) {
  .confirmation-container__icon {
    margin-bottom: 15px;
  }
}

.confirmation-container__title {
  text-align: center;
  margin-bottom: 16px;
  color: hsl(var(--base));
}

.confirmation-container__text {
  text-align: center;
  font-size: 18px;
  margin-bottom: 24px;
  color: hsl(var(--base));
}

@media (max-width: 767px) {
  .confirmation-container__text {
    font-size: 16px;
  }
}

.confirmation-container__body {
  max-width: 650px;
}

.confirmation-container .confirmation-card {
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid hsl(var(--border-color) / 0.5);
  padding: 24px;
  border-radius: 8px;
}

@media screen and (max-width: 424px) {
  .confirmation-container .confirmation-card {
    padding: 15px;
  }
}

.notification-item .form-check-label {
  font-size: 16px !important;
}

/*==================== confirmation page end css ====================*/
/*======= setting page css start here =======*/
.authentication-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}

@media screen and (max-width: 575px) {
  .authentication-item__top {
    margin-bottom: 16px;
  }
}

.authentication-item__title {
  margin-bottom: 5px;
}

.authentication-item__desc {
  font-size: 14px;
  color: hsl(var(--heading-color));
}

/*======== claim details css start here ========*/
.single-claim-item {
  margin-bottom: 40px;
}

.single-claim-item:last-child {
  margin-bottom: 0;
}

.uploader-thumb {
  background-color: hsl(var(--white));
  padding: 24px;
  border-radius: 8px;
}

@media (max-width: 424px) {
  .uploader-thumb {
    padding: 0;
  }
}

.uploader-thumb__top {
  margin-bottom: 16px;
}

.uploader-thumb__top .title {
  margin-bottom: 6px;
  color: hsl(var(--heading-color));
  font-weight: 600;
}

.image-uploader {
  border: 1px dashed hsl(var(--border-color));
  border-radius: 8px;
}

.image-uploader .upload-text {
  text-align: center;
}

.temp-active {
  -webkit-transition: 0.4s linear;
  transition: 0.4s linear;
}

/* ======================  Pages Design End  ======================*/
/*# sourceMappingURL=main.css.map */
.footer-contact-menu__item a {
  color: #fff !important;
}

.table tbody tr td:has(.empty-message) {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.table tbody tr td:has(.empty-message)::before {
  display: none;
}

.empty-message {
  text-align: center;
  min-height: 300px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.empty-message-icon {
  max-width: 150px;
  width: 100%;
}

.empty-message-text {
  color: hsl(var(--black)/0.5);
  font-weight: 500;
}

.image-uploader .uploaded .uploaded-image {
  display: inline-block;
  width: calc(16.6666667% - 1rem) !important;
  padding-bottom: calc(16.6666667% - 1rem) !important;
  height: 0;
  position: relative;
  margin: .5rem;
}

@media screen and (max-width: 1366px) {
  .image-uploader .uploaded .uploaded-image {
    width: calc(20% - 1rem) !important;
    padding-bottom: calc(20% - 1rem) !important;
  }
}

@media screen and (max-width: 992px) {
  .image-uploader .uploaded .uploaded-image {
    width: calc(25% - .8rem) !important;
    padding-bottom: calc(25% - .4rem) !important;
    margin: .4rem;
  }
}

@media screen and (max-width: 786px) {
  .image-uploader .uploaded .uploaded-image {
    width: calc(33.3333333333% - .6rem) !important;
    padding-bottom: calc(33.3333333333% - .3rem) !important;
    margin: .3rem;
  }
}


@media screen and (max-width: 450px) {
  .image-uploader .uploaded .uploaded-image {
    width: calc(50% - .4rem) !important;
    padding-bottom: calc(50% - .4rem) !important;
    margin: .2rem;
  }
}


.dashboard .sidebar-logo .sidebar-logo__link.favicon{
  display: none;
}

.dashboard.show-hide .sidebar-logo .sidebar-logo__link.favicon{
  display: block;
}

.dashboard .sidebar-logo .sidebar-logo__link.logo{
  display: block;
}

.dashboard.show-hide .sidebar-logo .sidebar-logo__link.logo{
  display: none;
}

.dashboard .sidebar-logo .favicon img{
  width: 38px;
}

.privacy-policy__top {
  margin-bottom: 40px;
}
.privacy-policy__top .title {
  margin-bottom: 0;
}