@charset "utf-8";
/* ============================================= */
/* !!!!         VARIABLES STYLE CSS         !!!! */
/* ============================================= */
:root {
  --primary-color: #99857C;
  --secondary-color: #4A4A4A;
  --third-color: #F9F6F1;
  --border-color: #E5E7EB;
  --black: #000000;
  --white: #ffffff;
  --grey: #9DA4AE;
  --red: #9E1D1D;
  --font-family: "Readex Pro", sans-serif;
  --h1: normal 600 70px/1.1 var(--font-family);
  --h2: normal 600 40px/1.4 var(--font-family);
  --h3: normal 600 32px/1.4 var(--font-family);
  --h4: normal 600 26px/1.4 var(--font-family);
  --h5: normal 600 24px/1.4 var(--font-family);
  --h6: normal 600 18px/1.4 var(--font-family);
  --common-text: normal 500 16px/1.4 var(--font-family);
}
/* ============================================= */
/* !!!!        SITE GLOBAL STYLE CSS        !!!! */
/* ============================================= */
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  text-decoration: inherit;
  vertical-align: inherit;
}
html {
  outline: none;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
body,
html {
  scrollbar-width: none;
}
html[dir="rtl"] {
  direction: rtl;
}
html[dir="ltr"] {
  direction: ltr;
}
body::-webkit-scrollbar {
  display: none;
}
body::-moz-scrollbar {
  display: none;
}
svg,
img {
  max-width: 100%;
  display: block;
}
svg path {
  transition: all 500ms ease-in-out 0s;
  -webkit-transition: all 500ms ease-in-out 0s;
  -moz-transition: all 500ms ease-in-out 0s;
  -ms-transition: all 500ms ease-in-out 0s;
  -o-transition: all 500ms ease-in-out 0s;
}
a,
.btn,
button {
  text-decoration: none;
  outline: none;
  color: inherit;
  display: inline-block;
  cursor: pointer;
  transition: all 500ms ease-in-out 0s;
  -webkit-transition: all 500ms ease-in-out 0s;
  -moz-transition: all 500ms ease-in-out 0s;
  -ms-transition: all 500ms ease-in-out 0s;
  -o-transition: all 500ms ease-in-out 0s;
}
a,
a:hover,
a:focus,
a:active,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
select,
select:hover,
select:focus,
textarea,
textarea:hover,
textarea:focus,
.btn,
.btn:hover,
.btn:focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
  outline: none;
}
.form-control:focus,
[type="text"]:focus,
[type="email"]:focus,
[type="checkbox"]:focus,
[type="password"]:focus,
[type="file"]:focus,
[type="radio"]:focus,
[type="button"]:focus,
[type="submit"]:focus,
[type="date"]:focus,
[type="time"]:focus,
[type="tel"]:focus,
[type="search"]:focus,
[type="button"]:focus,
[type="number"]:focus,
textarea:focus,
select:focus {
  background: var(--white);
  border-color: var(--primary-color);
  outline: none;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -webkit-appearance: textfield;
  appearance: textfield;
  -moz-appearance: textfield;
}
::-webkit-input-placeholder {
  color: var(--grey);
  font-weight: 300;
}
:-ms-input-placeholder {
  color: var(--grey);
  font-weight: 300;
}
::-moz-placeholder {
  color: var(--grey);
  font-weight: 300;
}
::-ms-input-placeholder {
  color: var(--grey);
  font-weight: 300;
}
::placeholder {
  color: var(--grey);
  font-weight: 300;
}
::-moz-selection {
  background: rgb(99 126 76 / 20%);
}
::selection {
  background: rgb(99 126 76 / 20%);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000000s ease-in-out 0s;
  -webkit-transition: background-color 5000000s ease-in-out 0s;
  -moz-transition: background-color 5000000s ease-in-out 0s;
  -ms-transition: background-color 5000000s ease-in-out 0s;
  -o-transition: background-color 5000000s ease-in-out 0s;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  list-style: none;
  vertical-align: baseline;
}
body {
  font: var(--common-text);
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background: var(--third-color);
  color: var(--secondary-color);
  font-family: var(--font-family);
}
/* ============================================= */
/* !!!!         SITE TYPOGRAPHY CSS         !!!! */
/* ============================================= */
p,
li,
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  font: var(--common-text);
}
h1,
.h1 {
  font: var(--h1);
}
h2,
.h2 {
  font: var(--h2);
}
h3,
.h3 {
  font: var(--h3);
}
h4,
.h4 {
  font: var(--h4);
}
h5,
.h5 {
  font: var(--h5);
}
h6,
.h6 {
  font: var(--h6);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--secondary-color);
  text-transform: capitalize;
}
.uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center;
}
.text-start {
  text-align: start;
}
.text-end {
  text-align: end;
}
b {
  font-weight: 600;
  display: inline-block;
}
h1 b,
h2 b,
h3 b,
h4 b,
h5 b,
h6 b {
  color: var(--first-color);
  display: inline;
}
p:not(:last-of-type) {
  margin-bottom: 15px;
}
p::first-letter {
  text-transform: capitalize;
}
/* ============================================= */
/* !!!!             GRID CSS                !!!! */
/* ============================================= */
.container {
  max-width: 1470px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.container-lg {
  max-width: 1590px;
}
.offset-left {
  margin-right: calc((100% - 1750px) / 2);
  padding-right: 15px;
  margin-left: 0;
}
.row {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.no-gutters {
  margin: 0 !important;
}
.row [class*="col-"] {
  padding: 0 12px;
}
.no-gutters [class*="col-"] {
  padding: 0;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.text-primary {
  color: var(--primary-color) !important;;
}
.text-white {
  color: var(--white) !important;;
}
.m-0 {
  margin: 0 !important;
}
.flex {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.block {
  display: block;
}
.align-start {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}
.align-end {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}
.align-center {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-align-items: center;
}
.justify-center {
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
}
.justify-between {
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: justify;
}
.justify-around {
  justify-content: space-around;
  -ms-flex-pack: distribute;
}
.justify-start {
  -webkit-box-pack: start;
  justify-content: flex-start;
  -ms-flex-pack: start;
}
.justify-end {
  -webkit-box-pack: end;
  justify-content: flex-end;
  -ms-flex-pack: end;
}
.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.direction-column {
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
}
.direction-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.no-wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.row-gap-1 {
  row-gap: 15px;
}
.row-gap-2 {
  row-gap: 20px;
}
.row-gap-3 {
  row-gap: 24px;
}
.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}
.object-contain {
  -o-object-fit: contain;
  object-fit: contain;
}
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-track {
  background: var(--grey);
}
::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}
/*****  Columns  *****/
.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
/****************  TABS CSS *****************/
.tabs-container {
  overflow: hidden;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.acnav-list {
  display: none;
}
/* ============================================= */
/* !!!!          COMMON BUTTON              !!!! */
/* ============================================= */
.btn {
  position: relative;
  text-align: center;
  padding: 12px 16px;
  color: var(--white);
  background-color: var(--primary-color);
  border: 1px solid transparent;
  appearance: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  border-radius: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}
button {
  font-family: var(--font-family);
}
button[disabled],
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.btn:hover,
.btn:focus,
.btn:active {
  color: var(--white);
  background-color: var(--black);
}
.btn svg {
  height: 18px;
  width: 18px;
}
.btn svg path {
  fill: var(--white);
}
.btn:hover svg path,
.btn:focus svg path,
.btn:active svg path {
  fill: var(--white);
}
.btn-secondary {
  color: var(--primary-color);
  background-color: var(--white);
}
.btn-transparent {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-transparent:hover,
.btn-transparent:active,
.btn-transparent:focus {
  background-color: var(--white) !important;
  color: var(--black) !important;
  border-color: var(--white) !important;
}
.btn.btn-white {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}
.btn.btn-white:hover,
.btn.btn-white:focus {
  background-color: var(--primary-color);
  color: var(--white);
}
.btn.btn-white svg path,
.btn.btn-white svg path {
  fill: var(--primary-color);
}
.btn.btn-white:hover svg path,
.btn.btn-white:focus svg path {
  fill: var(--white);
}

.btn-icon.danger svg path,
.btn-icon.danger svg path {
  fill: var(--red);
}
.btn.btn-danger {
  background-color: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn.btn-danger:hover,
.btn.btn-danger:focus {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}
.btn.btn-danger svg path,
.btn.btn-danger svg path {
  fill: var(--red);
}
.btn.btn-danger:hover svg path,
.btn.btn-danger:focus svg path {
  fill: var(--white);
}
.img-wrapper,
.img-ratio {
  position: relative;
  width: 100%;
  display: block;
  padding-top: 100%;
}
.img-wrapper img,
.img-wrapper video,
.img-wrapper iframe,
.img-ratio img,
.img-ratio video,
.img-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
/* ============================================= */
/* !!!!             FORM  CSS               !!!! */
/* ============================================= */
.form-control,
input:not([type="submit"]),
input:not([type="checkbox"]),
input:not([type="button"]),
input:not([type="radio"]),
select,
textarea {
  position: relative;
  border: 1px solid var(--border-color);
  display: block;
  width: 100%;
  padding: 11px 20px;
  font: var(--common-text);
  line-height: 1;
  color: var(--black);
  background: var(--white);
  border-radius: 4px;
}
select {
  -webkit-padding-end: 35px !important;
  padding-inline-end: 35px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  color: var(--secondary-color) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23a4a4a4' d='M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-size: 16px !important;
  background-position: 15px 50% !important;
  outline: none;
  line-height: 1.3 !important;
}
textarea {
  resize: none;
}
form .row {
  margin: 0 -10px;
}
form .row [class*="col-"] {
  padding: 0 10px;
}
.form-group {
  margin: 0 0 20px;
}
.form-group label {
  display: inline-block;
  text-transform: capitalize;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 400;
}
sup {
  top: -0.2em;
}
sub,
sup {
  position: relative;
  font-size: 14px;
  line-height: 1;
}
small {
  display: block;
  margin: 5px 0 0;
  font-size: 12px;
  color: var(--grey);
}
.form-group label sup {
  color: var(--red);
}
.checkbox-custom input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox-custom label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.1;
  margin: 0;
  padding: 0 0 0 30px;
}
.checkbox span,
.checkbox-text,
.radio-text {
  cursor: pointer;
}
.checkbox-custom label:before {
  content: "";
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid var(--black);
  border-radius: 3px;
  padding: 8px;
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 15px;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.checkbox-custom input:checked+label:before {
  background-color: var(--black);
}
.checkbox-custom input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  left: 7px;
  width: 4px;
  height: 8px;
  border: solid var(--white);
  border-width: 0px 1px 1px 0;
  transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
}
.checkbox-custom label a {
  text-decoration: underline;
  font-weight: 600;
}
/***** COMMON CSS ****/
body.active-menu,
body.no-scroll {
  overflow: hidden;
  position: relative;
}
.pt {
  padding-top: 120px;
}
.pb {
  padding-bottom: 120px;
}
.page-pt {
  padding-top: 64px;
}
.page-pb {
  padding-bottom: 64px;
}
.subtitle {
  font-size: 24px;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.section-title {
  margin: 0 0 64px;
}
.section-title h2 {
  color: var(--primary-color);
}
.section-title p {
  margin: 20px 0 0;
}
.sticky-column {
  position: sticky;
  top: 20px;
}
/*** swiper slider ****/
.swiper-slide {
  height: auto;
}
.arrow-wrapper {
  display: flex;
  gap: 15px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
}
.swiper-button-prev,
.swiper-button-next {
  position: unset;
  width: 80px;
  height: 55px;
  padding: 10px;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  z-index: 2;
  margin: 0;
  outline: none;
  cursor: pointer;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  transition: all 500ms ease-in-out 0s;
  -webkit-transition: all 500ms ease-in-out 0s;
  -moz-transition: all 500ms ease-in-out 0s;
  -ms-transition: all 500ms ease-in-out 0s;
  -o-transition: all 500ms ease-in-out 0s;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--white);
  color: var(--primary-color);
}
.swiper-button-next {
  right: 0;
  left: auto;
}
.swiper-button-prev {
  left: 0;
  right: auto;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  height: 18px;
  width: 18px;
}
.swiper-button-next svg {
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
}
.swiper-button-next svg path,
.swiper-button-prev svg path {
  stroke: var(--white);
}
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}
.swiper-button-disabled {
  opacity: 0.35 !important;
  cursor: no-drop !important;
}
.swiper-button-lock {
  display: none;
}
/* Timeline */
.deal-timeline .count {
  font-weight: 400;
  line-height: 1;
}
/* CLOSE HOVER EFFECT */
.common-close {
  position: relative;
  height: 25px;
  width: 25px;
  cursor: pointer;
  background-color: var(--first-color);
}
.common-close::after,
.common-close::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 16px;
  top: 48%;
  left: calc(50% - 8px);
  background-color: var(--white);
  transition: all 500ms ease-in-out 0s;
  -webkit-transition: all 500ms ease-in-out 0s;
  -moz-transition: all 500ms ease-in-out 0s;
  -ms-transition: all 500ms ease-in-out 0s;
  -o-transition: all 500ms ease-in-out 0s;
}
.common-close::before {
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.common-close:hover::after,
.common-close:hover::before {
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
}
.common-close::after {
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
/* ============================================= */
/* !!!!          SEARCH POPUP CSS           !!!! */
/* ============================================= */
.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.7);
  z-index: 5;
  transition: all 500ms ease-in-out 0s;
  -webkit-transition: all 500ms ease-in-out 0s;
  -moz-transition: all 500ms ease-in-out 0s;
  -ms-transition: all 500ms ease-in-out 0s;
  -o-transition: all 500ms ease-in-out 0s;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
/* header css */
.site-header {
  position: sticky;
  top: 0;
  z-index: 4;
  background-color: var(--primary-color);
  padding: 10px 0;
  color: var(--white);
}
.site-header .nav-col {
  gap: 40px;
}
.site-header .nav-links {
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: var(--white);
}
.logo-col {
  max-width: 175px;
  width: 100%;
}
.site-header .icon-col {
  gap: 12px;
}
.icon-col span svg {
  height: 24px;
  width: 24px;
}
.icon-col .lang-dropdown span {
  font-size: 16px;
}
/* Dropdown Styles */
.lang-dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-toggle::after {
    display: none !important;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
.lang-btn:hover,
.lang-btn:focus {
  background-color: transparent;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 30px;
  background: var(--white);
  color: black;
  min-width: 80px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  overflow: hidden;
  z-index: 10;
}
.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: black;
  font-size: 14px;
}
.dropdown-menu a:hover {
  background: #f0f0f0;
}
.lang-btn .arrow {
  margin-left: 6px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.lang-dropdown.active .lang-btn .arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* Show menu when active */
.lang-dropdown.active .dropdown-menu {
  display: block;
}
.mobile-menu-toggle {
  background-color: transparent;
  border: 0;
  font-size: 20px;
}
.user-profile-head,
.user-profile-head-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.user-profile-head .user-image-head {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}
.user-info-head h4 {
  font-size: 16px;
  color: var(--white);
}
.user-info-head p {
  font-size: 10px;
  margin-top: 4px;
}
.user-profile-dropdown {
  position: absolute;
  top: 100%;
  width: 100%;
  background-color: var(--white);
  color: var(--black);
  margin: 15px 0 0 0;
  padding: 10px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  opacity: 0;
  visibility: hidden;
}
.user-profile-dropdown li:not(:last-of-type) {
  margin: 0 0 10px;
}
.user-profile-dropdown li p {
  font-size: 14px;
}
.user-profile-dropdown.active {
  opacity: 1;
  visibility: visible;
}
/* mobile-menu css */
/*****  MOBILE MENU CSS START  *****/
.mobile-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 320px;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  transform: translate(-100%, 0px);
  -webkit-transform: translate(-100%, 0px);
  -moz-transform: translate(-100%, 0px);
  -ms-transform: translate(-100%, 0px);
  -o-transform: translate(-100%, 0px);
  transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  -ms-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  z-index: 6;
}
.mobile-menu-wrapper.active-menu {
  transform: translate(0%, 0px);
  -webkit-transform: translate(0%, 0px);
  -moz-transform: translate(0%, 0px);
  -ms-transform: translate(0%, 0px);
  -o-transform: translate(0%, 0px);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-wrapper .menu-close-icon {
  text-align: end;
  padding: 15px;
  background: var(--primary-color);
}
.mobile-menu-wrapper .menu-close-icon svg {
  width: 20px;
  height: 20px;
}
.mobile-menu-wrapper .menu-close-icon svg path {
  fill: var(--white);
}
.mobile-menu-wrapper .mobile-menu-bar ul {
  height: calc(100vh - 48px);
  overflow: auto;
  padding: 15px;
  background: var(--white);
}
.mobile-menu-wrapper .mobile-menu-bar ul li a {
  color: var(--black);
  font-size: 18px;
  text-transform: capitalize;
}
.mobile-menu-wrapper .mobile-menu-bar ul li:not(:last-child) {
  margin-bottom: 10px;
}
/* hero-banner-section css */
.hero-banner-section {
  padding: 240px 0 268px;
  position: relative;
}
.hero-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background: -o-radial-gradient(50% 41.05%, 56.95% 56.95%, rgba(74, 74, 74, 0.2) 0%, #47413E 93.39%);
  background: radial-gradient(56.95% 56.95% at 50% 41.05%, rgba(74, 74, 74, 0.2) 0%, #47413E 93.39%);
}
.hero-banner-section .banner-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.hero-banner-section .banner-inner h2 {
  line-height: 1.6;
  margin: 0 0 24px;
}
.hero-banner-section .banner-inner .btn {
  padding: 24px 40px;
  font-size: 24px;
}
.hero-banner-section .hero-banner-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
/* about-section-css */
.about-section {
  position: relative;
}
.about-section .features-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: -150px 0 100px;
}
.about-section .feature-card {
  height: 100%;
  position: relative;
  background: var(--primary-color);
  border-radius: 24px;
  padding: 24px 24px 48px;
  text-align: center;
  color: var(--white);
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  overflow: hidden;
}
.about-section .feature-card::before {
  content: '';
  position: absolute;
  height: 24px;
  width: 100%;
  background-color: #806C63;
  bottom: 0;
  right: 0;
  left: 0;
}
.about-section .feature-icon {
  width: 110px;
  height: 110px;
  background: var(--third-color);
  border-radius: 50%;
  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;
  margin: 0 auto 20px;
}
.feature-bg-img {
  position: absolute;
  height: 24px;
  width: 100%;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.about-section .feature-icon svg {
  width: 55px;
  height: 55px;
}
.feature-card h4 {
  color: var(--third-color);
  font-size: 20px;
  font-weight: 500;
}
.about-img-wrp {
  position: relative;
  height: 100%;
}
.about-img-wrp .about-img {
  position: relative;
  padding-top: 50%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.about-img-wrp .about-img img {
  position: absolute;
  inset: 0;
}
.about-content h2 {
  color: var(--primary-color);
  margin-bottom: 25px;
}
.about-content p {
  font-size: 20px;
  line-height: 1.8;
}
.about-stats {
  position: absolute;
  background: var(--secondary-color);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  color: var(--white);
  display: inline-block;
  max-width: 200px;
  width: 100%;
  bottom: 20px;
  inset-inline-start: 20px;
}
.about-stats .about-number {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 10px;
}
.about-content .btn {
  margin-top: 20px;
}
.about-content p {
  font-weight: 300;
}
/* services-section css */
.services-section {
  background-color: var(--primary-color);
  position: relative;
}
.services-sec-inner {
  position: relative;
}
.services-section .section-title {
  max-width: 1100px;
  margin: 0 auto 64px;
}
.services-section .section-title h2 {
  color: var(--white);
}
.services-section .section-title p {
  font-size: 18px;
}
.services-section .service-card {
  background: var(--white);
  padding: 40px 20px;
  height: 100%;
  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;
  gap: 20px;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.services-section .service-icon svg {
  height: 88px;
  width: 88px;
}
.services-section .service-card h3 {
  font-size: 20px;
}
.services-section .row:not(:last-of-type) {
  margin-bottom: 24px;
}
/* price-card sec css */
.price-card-sec {
  background: var(--third-color);
  padding: 96px 0;
}
.price-cards-swiper {
  padding-top: 20px;
}
.price-card-wrp {
  padding: 48px 24px 24px;
  border: 1px solid var(--primary-color);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.price-card-wrp .section-title {
  margin: 0 auto 40px;
  max-width: 1100px;
}
.price-card-wrp .section-title p {
  font-size: 18px;
}
.price-cards-swiper .swiper-slide {
  height: auto;
}
.price-card-sec ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.price-card-sec ul li span {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.price-card-sec ul li:not(:last-child) {
  margin: 0 0 10px;
}
.pricing-card {
  background: var(--white);
  height: 100%;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 24px 15px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.pricing-card ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.pricing-card.featured {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  -webkit-transform: scaley(1.03);
  -ms-transform: scaley(1.03);
  transform: scaley(1.03);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
}
.pricing-card.featured h3 {
  color: var(--third-color);
}
.pricing-card h3 {
  margin: 0 0 20px;
}
.pricing-card .card-subtitle {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 24px;
}
.pricing-card .desc {
  font-size: 24px;
  line-height: 1.6;
}
.pricing-card .stars {
  margin: 0 auto 24px;
  max-width: 300px;
  width: 100%;
}
.pricing-card .stars svg path {
  fill: var(--third-color);
}
.pricing-card .card-footer {
  margin: 25px 0 0;
}
.pricing-card .price,
.estate-value .price,
.estate-value .price {
  font-size: 40px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.pricing-card .price svg,
.estate-value .price svg {
  height: 35px;
  width: 35px;
}
.price-arrow {
  margin: 30px 0 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.price-arrow .swiper-button-prev,
.price-arrow .swiper-button-next {
  background-color: var(--primary-color);
}
.price-arrow .swiper-button-prev:hover,
.price-arrow .swiper-button-next:hover {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.price-arrow .swiper-button-disabled {
  border-color: var(--primary-color);
  opacity: 1 !important;
  background-color: transparent;
}
.price-arrow .swiper-button-disabled i {
  color: var(--primary-color);
}
/* ============================================= */
/* !!!!          STATS CSS                   !!!! */
/* ============================================= */
.stats-content-wrp {
  gap: 80px;
  position: relative;
  z-index: 3;
}
.stats-sec {
  padding: 64px 0;
  color: var(--white);
  position: relative;
}
.stats-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
}
.stats-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background: -o-linear-gradient(342.16deg, rgba(74, 74, 74, 0.8) 0.72%, #4B433F 97.1%);
  background: linear-gradient(107.84deg, rgba(74, 74, 74, 0.8) 0.72%, #4B433F 97.1%);
  z-index: 2;
}
.stat-card {
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  padding: 40px;
  gap: 24px;
  text-align: start;
  border-radius: 20px;
  padding: 20px;
  background: rgba(249, 246, 241, 0.02);
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: -o-linear-gradient(left, rgba(74, 74, 74, 0) 0%, #99857C 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(74, 74, 74, 0)), to(#99857C));
  background: linear-gradient(90deg, rgba(74, 74, 74, 0) 0%, #99857C 100%);
  -webkit-mask:
    -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box,
    -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.stat-icon svg {
  height: 80px;
  width: 80px;
}
.stat-number {
  color: var(--white) !important;
  margin-bottom: 10px;
}
/* ============================================= */
/* !!!!          PARTNERS CSS                !!!! */
/* ============================================= */
.partners-logo-sec {
  color: var(--white);
  position: relative;
}
.partners-logo-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(153, 133, 124, 0.94);
}
.partners-logo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.partners-logo-sec .partners-swiper,
.partners-logo-sec .section-title {
  position: relative;
}
.partners-logo-sec .partner-img {
  position: relative;
  padding-top: 50%;
  width: 100%;
}
.partners-logo-sec .partner-img img {
  position: absolute;
  inset: 0;
}
.partners-logo-sec .section-title h2 {
  color: var(--white);
}
.partners-logo-sec .section-title p {
  color: rgba(255, 255, 255, 0.9);
}
.partner-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  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;
}
.partner-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.partner-arrow i,
.price-arrow i {
  font-size: 22px;
}
.partner-arrow {
  margin-top: 30px;
}
.partner-arrow .swiper-button-disabled {
  border: 0;
  opacity: 1 !important;
  background-color: var(--primary-color);
}
.partner-arrow .swiper-button-disabled:hover,
.partner-arrow .swiper-button-disabled:focus {
  color: var(--white);
}
/* ============================================= */
/* !!!!             FAQ CSS                  !!!! */
/* ============================================= */
.faq-sec {
  background-color: var(--third-color);
  position: relative;
}
.faq-sec-inner {
  position: relative;
}
.faq-wrapper {
  max-width: 950px;
  margin: 0 auto 64px;
}
.faq-item {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--primary-color);
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  opacity: 0.6;
}
.faq-item:not(:last-of-type) {
  margin: 0 0 15px;
}
.faq-item.active {
  opacity: 1;
}
.faq-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px;
  cursor: pointer;
  gap: 10px;
}
.faq-icon {
  position: relative;
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.faq-icon .minus {
  display: none;
}
.faq-item.active .faq-icon .minus {
  display: inline-block;
}
.faq-item.active .faq-icon .plus {
  display: none;
}
.faq-icon i {
  font-size: 14px;
}
.faq-content {
  display: none;
  padding: 0 24px 24px 24px;
}
.faq-item.active .faq-content {
  display: block;
}
/* ============================================= */
/* !!!!           FOOTER CSS                 !!!! */
/* ============================================= */
.site-footer {
  position: relative;
  background-color: var(--primary-color);
  color: var(--white);
}
.site-footer .bg-pattern {
  opacity: 0.02;
}
.footer-content-wrp {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
/* Footer Left Section */
.footer-logo-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.footer-logo {
  max-width: 300px;
  width: 100%;
}
.footer-logo-img {
  width: 100%;
  height: auto;
}
.site-footer .social-links {
  gap: 20px;
}
.site-footer .social-links a {
  color: var(--white);
  font-size: 20px;
}
.footer-text h3 {
  margin-bottom: 20px;
  color: var(--white);
}
.footer-text p {
  line-height: 1.8;
  margin-bottom: 30px;
}
.footer-links {
  gap: 30px;
  margin: 0 0 30px;
}
.footer-links a {
  color: var(--white);
  text-decoration: underline;
}
/* ============================================= */
/* !!!!             Login Page              !!!! */
/* ============================================= */
.login-page {
  padding-top: 44px;
  overflow: hidden;
}
.verify-page,
.verify-number-page {
  position: relative;
  min-height: calc(100vh - 97px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.login-page,
.success-page,
.register-page {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  min-height: 100vh;
}
.login-page .login-banner-img,
.success-page .success-banner-img,
.verify-page .verify-banner-img,
.verify-number-page .verify-number-banner-img,
.register-page .register-page-banner-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}
.login-page .bg-pattern,
.success-page .bg-pattern,
.verify-page .bg-pattern,
.verify-number-page .bg-pattern,
.register-page .bg-pattern {
  z-index: 2;
  opacity: 0.04;
}
.bg-pattern {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  opacity: 0.01;
}
.login-page::before,
.success-page::before,
.verify-page::before,
.verify-number-page::before,
.register-page::before {
  content: '';
  position: absolute;
  inset: 0;
  height: 100%;
  width: 110%;
  background: -o-radial-gradient(50% 34.05%, 59.95% 69.95%, rgba(74, 74, 74, 0.2) 0%, #47413E 93.39%);
  background: radial-gradient(59.95% 69.95% at 50% 34.05%, rgba(74, 74, 74, 0.2) 0%, #47413E 93.39%);
  z-index: 3;
}
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--primary-color);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.form-container-wrp {
  background: var(--white);
  max-width: 640px;
  width: 100%;
  border-radius: 400px 400px 0 0;
  -webkit-border-radius: 400px 400px 0 0;
  -moz-border-radius: 400px 400px 0 0;
  -ms-border-radius: 400px 400px 0 0;
  -o-border-radius: 400px 400px 0 0;
  position: relative;
  z-index: 3;
}
.form-container {
  padding: 120px 80px 40px 80px;
}
.form-container-wrp .section-title {
  margin-bottom: 24px;
}
.form-container-wrp .section-title h2 {
  font-size: 24px;
}
.form-logo {
  max-width: 305px;
  width: 100%;
  margin: 0 auto 24px;
}
.form-logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 0px;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.checkbox .check-label {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 14px;
  font-weight: 400;
}
.form-footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 24px 40px;
}
.form-btn {
  width: 100%;
  padding: 16px 24px;
}
/* ============================================= */
/* !!!!        Success Page  CSS            !!!! */
/* ============================================= */
.success-message-wrapper {
  background-color: var(--third-color);
  padding: 40px 24px;
  margin: 0 0 24px;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.success-message-wrapper p {
  color: var(--primary-color);
  line-height: 1.8;
  font-size: 20px;
}
.success-message-wrapper .success-icon svg {
  height: 105px;
  width: 105px;
  margin: 0 auto 16px;
}
/* ============================================= */
/* !!!!        Register Page  CSS           !!!! */
/* ============================================= */
.register-btn-wrp {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.register-btn-wrp .form-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.register-page .section-title h2 {
  font-size: 20px;
}
.register-page {
  padding-top: 64px;
}
/* ============================================= */
/* !!!!        Verify Page  CSS            !!!! */
/* ============================================= */
.verify-page .form-container-wrp .section-title p,
.verify-number-page .form-container-wrp .section-title p {
  margin: 10px 0 0;
}
.verify-page .form-container-wrp .section-title,
.verify-page .form-container-wrp .form-group,
.verify-number-page .form-container-wrp .section-title {
  margin: 0 0 40px;
}
.verify-page .form-container-wrp .form-group p {
  font-size: 11px;
  margin: 5px 0 0;
  color: var(--grey);
}
.verify-page .section-title h2,
.verify-number-page .section-title h2 {
  font-size: 20px;
}
.verify-page .form-container,
.verify-number-page .form-container {
  padding: 160px 80px 100px 80px;
}
/* ============================================= */
/* !!!!        Verify Number Col            !!!! */
/* ============================================= */
.verify-number-col h3 {
  font-weight: 700;
  color: var(--grey);
}
.verify-number-col {
  padding: 20px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin: 0 auto 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.verify-number-btn-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
/* ============================================= */
/* !!!!        COMMON BANNER  CSS           !!!! */
/* ============================================= */
.common-banner {
  position: relative;
  padding: 56px 0;
  color: var(--white);
  z-index: 1;
}
.common-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(0.74deg, rgba(0, 0, 0, 0.5) 42.33%, rgba(153, 133, 124, 0.8) 100%);
  background: linear-gradient(89.26deg, rgba(0, 0, 0, 0.5) 42.33%, rgba(153, 133, 124, 0.8) 100%);
  z-index: -1;
}
.common-banner .breadcrumb {
  font-size: 14px;
  gap: 8px;
  margin: 0 0 15px;
}
.common-banner .page-title {
  color: var(--white);
  font: var(--h3);
}
.common-banner li.active {
  color: var(--secondary-color);
}
.common-banner .common-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.common-banner .common-banner-bg2 {
  display: none;
}
/* ============================================= */
/* !!!!        CUSTOMER FORM CSS             !!!! */
/* ============================================= */
.info-alert {
  background: #DCECF1;
  border-radius: 8px;
  padding: 15px;
  margin: 0 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #1282A2;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.info-alert span,
.file-upload-area span {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.info-alert svg path {
  fill: #1282A2;
}
.info-alert svg {
  height: 22px;
  width: 22px;
}
.customer-form-sec .customer-form-inner {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--primary-color);
  margin: 0 0 24px;
}
.customer-form-sec .customer-col,
.survey-col {
  background: var(--third-color);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--primary-color);
  gap: 15px;
}
.survey-sec .survey-col label {
  font-size: 16px;
}
.customer-form-sec .customer-col:not(:last-of-type),
.survey-col:not(:last-of-type) {
  margin: 0 0 24px;
}
.customer-form-sec .customer-col h3 {
  font-size: 16px;
  color: var(--black);
}
.customer-form-sec .checkbox-option,
.radio-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.radio-option .radio-text {
  color: var(--black);
}
.radio-group {
  gap: 24px;
}
.customer-form-sec .customer-col:has(.customer-col-inner) {
  -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: start;
}
.customer-col-inner {
  gap: 15px;
}
.customer-form-sec .checkbox-option:not(:last-of-type),
.survey-col .checkbox-option:not(:last-of-type) {
  margin: 0 0 10px;
}
.customer-form-sec .text-col .checkbox-option {
  margin: 0 0 10px;
}
.survey-col .checkbox-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* ============================================= */
/* !!!!              Policy Page            !!!! */
/* ============================================= */
.policy-card {
  background: var(--white);
  border: 1px solid var(--primary-color);
  border-radius: 24px;
  padding: 24px;
}
.policy-card p.text-primary {
  margin: 0 0 15px;
}
.policy-page h2 {
  color: var(--primary-color);
  font: var(--h3);
  margin: 0px 0px 20px;
}
.policy-page h3 {
  color: var(--secondary-color);
  margin: 0 0 16px;
  font: var(--h4);
}
.policy-list {
  color: var(--secondary-color);
  line-height: 32px;
  font-size: 20px;
  font-weight: 500;
}
.policy-list li {
  margin: 0 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  word-break: break-all;
}
.policy-list li:last-child {
  margin-bottom: 0;
}
.policy-card:not(:last-of-type) {
  margin: 0 0 24px;
}
/* ============================================= */
/* !!!!        REQUEST SECTION CSS             !!!! */
/* ============================================= */
.request-tab-col,
.member-tab-col {
  padding: 16px 0;
  background-color: var(--white);
}
.request-tab,
.member-tab {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--third-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  overflow: hidden;
}
.request-tab li,
.member-tab li {
  gap: 8px;
  padding: 8px 40px 8px 25px;
  position: relative;
}
.request-tab li:first-of-type,
.member-tab li:first-of-type {
  padding: 8px 15px 8px 15px;
}
.request-tab li.step-done:not(:first-of-type),
.member-tab li.step-done:not(:first-of-type) {
  padding: 8px 10px 8px 25px;
}
.request-tab li::before,
.member-tab li::before {
  position: absolute;
  content: '';
  top: 5px;
  left: -18px;
  width: 36px;
  height: 36px;
  background-color: var(--white);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  border-radius: 0 0 0 6px;
  -webkit-border-radius: 0 0 0 6px;
  -moz-border-radius: 0 0 0 6px;
  -ms-border-radius: 0 0 0 6px;
  -o-border-radius: 0 0 0 6px;
  z-index: 1;
}
.request-tab li.step-done::before,
.member-tab li.step-done::before {
  background-color: var(--primary-color);
  z-index: -1;
}
.request-tab li.active::before,
.request-tab li.active,
.member-tab li.active::before,
.member-tab li.active {
  background-color: var(--third-color);
  color: var(--primary-color);
}
.request-tab li.active p,
.member-tab li.active p {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}
.request-tab li span.step-complete,
.member-tab li span.step-complete {
  display: none;
}
.request-tab li.step-done,
.member-tab li.step-done {
  background-color: var(--primary-color);
  color: var(--white);
  z-index: 1;
}
.request-tab li:nth-child(3) .step-number,
.member-tab li:nth-child(3) .step-number {
  color: #AC7F16;
}
.request-tab li:nth-child(3) p,
.member-tab li:nth-child(3) p {
  background-color: var(--third-color);
}
.request-tab li p,
.member-tab li p {
  width: 30px;
  height: 30px;
  color: var(--third-color);
  border: 1px solid var(--third-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.request-tab li.step-done .step-number,
.member-tab li.step-done .step-number {
  display: none;
}
.request-tab li.step-done .step-complete,
.member-tab li.step-done .step-complete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.request-tab-content,
.member-tab-content {
  background-color: var(--third-color);
}
.request-col-wrp .accordion-col,
.survey-sec-wrp .accordion-col {
  opacity: 0.6;
}
.request-col-wrp .accordion-col.active,
.survey-sec-wrp .accordion-col.active {
  opacity: 1;
}
.new-request-sec .accordion-content .row:not(:last-child) {
  margin-bottom: 24px;
}
.submit-btn-wrp,
.request-btn-wrp,
.member-btn-wrp {
  margin: 25px 0 0;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.submit-btn-inner,
.request-btn-inner,
.member-btn-inner {
  gap: 16px;
}
.accordion-col {
  border: 1px solid var(--primary-color);
  background-color: var(--white);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  cursor: pointer;
}
.accordion-col:not(:first-of-type) {
  margin: 25px 0 0;
}
.accordion-col h3,
.request-label h4 {
  font-size: 20px;
  color: var(--primary-color)
}
.accordion-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px;
}
.accordion-head-inner {
  gap: 10px;
}
.accordion-head-inner svg {
  height: 22px;
  width: 22px;
}
.accordion-head-inner svg path {
  fill: var(--primary-color);
}
.accordion-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.accordion-icon::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 2px;
  height: 70%;
  background-color: var(--primary-color);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  display: block;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  -ms-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
}
.accordion-icon::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 70%;
  height: 2px;
  background-color: var(--primary-color);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.request-label svg {
  width: 40px;
  height: 40px;
}
.request-label svg path {
  fill: var(--primary-color);
}
.accordion-content .checkbox-label {
  display: block;
  cursor: pointer;
  height: 100%;
}
.accordion-content .checkbox-label input {
  display: none;
}
.accordion-content .checkbox-label .request-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  height: 100%;
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.accordion-content .checkbox-label input:checked+.request-label {
  background-color: var(--primary-color);
}
.accordion-content .checkbox-label input:checked+.request-label svg path {
  fill: var(--white);
}
.accordion-content .checkbox-label input:checked+.request-label h4 {
  color: var(--white);
}
.accordion-content .row {
  row-gap: 24px;
}
.accordion-content {
  display: none;
  padding: 0 24px 24px 24px;
}
.accordion-col.active .accordion-icon::before {
  display: none;
}
.accordion-col.active .accordion-content {
  display: block;
}
.radio-group-wrp span.radio-text {
  color: var(--primary-color);
  font-size: 14px;
}
.radio-group-wrp label:not(:first-of-type),
.checkbox-group-wrp label:not(:first-of-type) {
  margin: 8px 0 0;
}
.radio-group-wrp,
.checkbox-group-wrp {
  margin: 20px 0 0;
}
.survey-sec .accordion-content .row {
  row-gap: 0;
}
/* ============================================= */
/* !!!!              contact page           !!!! */
/* ============================================= */
.contact-info,
.contact-form,
.package-info {
  border: 1px solid var(--primary-color);
  background-color: var(--white);
  border-radius: 24px;
  padding: 24px;
}
.contact-info h2,
.contact-form h2 {
  font-size: 20px;
  margin: 0 0 24px;
}
.contact-info p {
  color: var(--secondary-color);
  line-height: 1.8;
  margin: 0 0 20px;
}
.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 16px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--primary-color);
  gap: 16px;
}
.contact-top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
.contact-item:not(:last-of-type) {
  margin: 0 0 24px;
}
.contact-form .form-group label {
  font-size: 14px;
}
.contact-item h4 {
  font: var(--h5);
  color: var(--primary-color);
  margin: 0 0 8px;
  word-break: break-all;
}
.contact-item span {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 16px;
  display: block;
}
.contact-item p {
  margin: 0 !important;
  padding: 8px;
  border: 1px solid var(--third-color);
  border-radius: 12px;
}
.contact-form h3 {
  font-size: 20px;
  margin: 0 0 24px;
}
.contact-form .clear-btn {
  color: var(--red);
  border: 1px solid var(--red);
  background-color: var(--white);
}
.contact-form .clear-btn:hover {
  color: var(--white);
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
}
.contact-icon svg {
  height: 64px;
  width: 64px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.contact-form .form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.contact-form-fields {
  margin: 0 0 20px;
}
/* ============================================= */
/* !!!!              package page           !!!! */
/* ============================================= */
.package-sec .feature-list {
  border-radius: 16px;
  background-color: #FFF3DE;
  padding: 24px;
  margin: 0 0 24px;
}
.package-info h2 {
  margin: 0 0 24px;
}
.package-info p {
  font-size: 20px;
  margin: 0 0 24px;
}
.package-info ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.feature-list ul li:not(:last-child) {
  margin: 0 0 10px;
}
.feature-list ul li span {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.package-info-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 24px;
}
.package-info-price .price,
.common-card .price {
  font-size: 40px;
  font-weight: 600;
  color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.package-info-price .price svg,
.common-card .price svg {
  height: 36px;
  width: 33px;
}
.package-info-price h3 {
  margin: 0 0 10px;
}
.package-info-price p {
  font-size: 16px;
  color: var(--primary-color);
  margin: 0;
}
.other-package-wrp {
  gap: 24px;
}
.other-package-wrp .other-card {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  border-radius: 24px;
  padding: 24px;
  gap: 24px;
}
.other-card .stars svg {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
.other-package-wrp h3,
.common-card h3 {
  font: var(--h5);
}
.other-card p,
.other-card h3 {
  color: var(--third-color);
}
.common-card a svg {
  height: 25px;
  width: 25px;
}
.common-card {
  border: 1px solid var(--primary-color);
  background-color: var(--white);
  border-radius: 24px;
  padding: 24px;
}
.common-card i {
  color: var(--primary-color);
  font-size: 30px;
}
.common-card .price {
  margin: 0;
}
.common-card h3 {
  margin: 0 0 5px;
  -webkit-margin-end: 5px;
  margin-inline-end: 5px;
}
/* ============================================= */
/* !!!!            Add Member Page          !!!! */
/* ============================================= */
.add-member-sec .member-col-wrp {
  background-color: var(--white);
  padding: 24px;
  border: 1px solid var(--primary-color);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.add-member-sec .member-col-wrp h2 {
  margin: 0 0 24px;
  font: var(--h4);
}
.add-member-sec .member-form-card,
.add-member-sec .member-card {
  height: 100%;
  padding: 15px;
  background-color: var(--third-color);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.add-member-sec .member-form-card span {
  display: block;
  margin: 0 0 16px;
  font-size: 14px;
}
.add-member-sec .member-actions .member-action-btn {
  gap: 16px;
}
.member-col-wrp .row .form-group {
  margin: 0;
}
.member-col-wrp .row {
  margin-bottom: 24px;
}
.member-tab-content {
  display: none;
}
.member-tab-content.active {
  display: block;
}
.add-member-sec .member-title-col {
  margin: 0 0 24px;
  gap: 10px;
}
.member-actions button svg path,
.attachment-actions button svg path {
  fill: var(--primary-color);
}
.add-member-sec .member-card,
.add-member-sec .attachment-card {
  gap: 15px;
}
.add-member-sec .member-card span,
.add-member-sec .attachment-details span {
  font-size: 14px;
}
.add-member-sec .member-card:not(:last-of-type) {
  margin: 0 0 24px;
}
.member-actions button,
.attachment-actions button {
  background: none;
  border: none;
}
.member-actions button svg,
.attachment-actions button svg {
  height: 22px;
  width: 22px;
}
.member-details-wrp .member-details {
  gap: 20px;
}
.add-member-sec .member-actions,
.add-member-sec .attachment-actions {
  gap: 12px;
}
.member-details-wrp h4 {
  font-size: 18px;
  margin: 0 0 10px;
}
.attachment-details span.block {
  margin: 0 0 10px;
}
.add-member-sec .member-details span {
  position: relative;
}
.member-details span:not(:first-of-type)::after {
  content: "/";
  position: absolute;
  right: -14px;
  color: var(--secondary-color);
  font-weight: 300;
}
.add-member-sec .attachment-card {
  padding: 15px;
  background-color: var(--third-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.add-member-sec .attachment-card:not(:last-of-type) {
  margin: 0 0 10px;
}
/* Modal Popup Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1000;
}
.modal-overlay.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal-content {
  background: var(--white);
  border-radius: 16px;
  max-width: 800px;
  margin: 0 15px;
  width: 100%;
  max-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
.modal-header {
  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;
  padding: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  gap: 10px;
}
.modal-content .form-group {
  margin: 0;
}
.modal-close {
  background: none;
  border: none;
  cursor: pointer;
}
.modal-close svg path {
  stroke: var(--primary-color);
}
.modal-body {
  padding: 0 40px 40px;
  overflow-y: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.modal-body-inner {
  padding: 24px;
  margin: 0 0 24px;
  border: 1px solid var(--primary-color);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.modal-btn-wrp {
  gap: 15px;
}
.required {
  color: var(--red);
}
.add-member-modal .verify-row {
  gap: 20px;
}
.add-member-modal .row:not(:last-of-type) {
  margin-bottom: 24px;
}
.add-member-modal .personal-info {
  margin: 24px 0 0;
}
.add-member-modal .user-data-card {
  padding: 15px;
  background-color: var(--third-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.add-member-modal .user-data-card h3 {
  font-size: 18px;
  margin: 10px 0 0;
}
.file-upload-area {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin: 0 0 24px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.file-upload-area #uploadZone {
  cursor: pointer;
}
.file-upload-area p {
  font-size: 14px;
  color: var(--grey);
}
.add-member-modal .info-notice {
  background: #C31A1A1A;
  border-radius: 8px;
  padding: 16px;
  margin: 0 0 24px;
  color: var(--red);
}
.add-member-modal .info-notice p {
  font-size: 14px;
  line-height: 1.8;
}
.add-member-modal .info-notice p span {
  color: var(--secondary-color);
}
/* .add-member-modal .personal-info,
.add-member-modal .file-upload-area,
.add-member-modal .info-notice {
  display: none;
} */
.add-member-modal .personal-info.active,
.add-member-modal .info-notice.active {
  display: block;
}
.add-member-modal .file-upload-area.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.file-upload-area #fileInput {
  display: none;
}
.file-upload-area label {
  display: block;
  margin: 0 0 10px;
}
.file-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;
  padding: 12px 15px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}
.file-item:not(:last-of-type) {
  margin: 0 0 10px;
}
.remove-file {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  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;
}
/* ============================================= */
/* !!!!           user profile page         !!!! */
/* ============================================= */
.user-profile-sec .user-profile,
.user-profile-sec .personal-info {
  border: 1px solid var(--primary-color);
  background-color: var(--white);
  border-radius: 8px;
  padding: 24px;
  gap: 24px;
}
.user-profile-sec .user-profile .user-img {
  width: 170px;
  height: 170px;
  overflow: hidden;
  border-radius: 50%;
}
.user-profile-sec .user-profile-inner{
  gap: 24px;
}
.user-profile-sec .user-profile-inner .user-profile{
  max-width: 268px;
  width: 100%;
}
.user-profile-sec .profile-info-btn {
  gap: 24px;
}
.user-profile-sec .personal-title-col {
  gap: 20px;
}
.user-profile-sec .personal-info .notification-btn {
  background-color: var(--secondary-color);
}
.user-profile-sec .personal-info .notification-btn:hover {
  background-color: var(--primary-color);
}
.user-profile-sec .user-card {
  background-color: var(--third-color);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  padding: 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
}
.user-profile-sec .user-info-cards .row {
  row-gap: 24px;
}
.user-profile-sec .user-info-cards .row:not(:last-child) {
  margin-bottom: 20px;
}
.user-profile-sec .user-card .user-details span.text-primary {
  font-size: 14px;
  margin: 0 0 10px;
}
.user-profile-sec .user-card .user-details span {
  font-size: 18px;
}
.user-profile-sec .menu-card {
  background-color: var(--white);
  border: 1px solid var(--primary-color);
  padding: 24px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.user-profile-sec .menu-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin: 24px 0 0;
}
.user-profile-sec .menu-card svg {
  height: 55px;
  width: 55px;
}
.user-profile-sec .menu-card-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--primary-color);
}
.user-profile-sec .menu-card-inner span {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  width: 30px !important;
  height: 30px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -webkit-margin-start: 8px;
  margin-inline-start: 8px;
}
.user-setting-modal .modal-body-inner .setting-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid var(--primary-color);
  margin: 0 0 24px;
  padding: 0 0 24px;
}
.user-setting-modal .modal-body-inner .action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.user-setting-modal .modal-body-inner .radio-option input[type="radio"] {
  accent-color: var(--secondary-color);
}
.user-setting-modal .modal-body-inner .radio-option .radio-text {
  color: var(--secondary-color);
}
/* reset password popup model */
.reset-password-modal,
.user-setting-modal,
.estate-modal,
.wills-modal,
.business-modal {
  max-width: 640px;
}
.reset-password-modal .modal-body-inner .warning-title {
  padding: 8px;
  gap: 8px;
  background-color: #FCF5DC;
  color: #F19822;
  border-radius: 8px;
  margin: 0 0 15px;
}
/* ============================================= */
/* !!!!            Notification Page          !!!! */
/* ============================================= */
.notification-inner,
.paybill-col {
  background-color: var(--white);
  padding: 24px;
  border: 1px solid var(--primary-color);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.notification-inner .notification-wrp li a {
  display: block;
  padding: 15px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.notification-inner .notification-wrp li:not(:last-of-type) {
  margin: 0 0 8px;
}
.notification-inner .notification-wrp li span {
  font-weight: 700;
}
.notification-inner .notification-wrp li span.notification-time {
  font-weight: 300;
}
.notification-inner .notification-wrp p {
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}
.notification-inner .notification-time-content {
  gap: 10px;
  font-size: 16px;
}
.notification-inner .notification-wrp li:hover p {
  color: var(--white);
  transition: all 500ms ease-in-out 0s;
  -webkit-transition: all 500ms ease-in-out 0s;
  -moz-transition: all 500ms ease-in-out 0s;
  -ms-transition: all 500ms ease-in-out 0s;
  -o-transition: all 500ms ease-in-out 0s;
}
.notification-inner .notification-wrp li:hover a {
  background-color: var(--primary-color);
}
.pagination-wrp {
  gap: 8px;
  margin: 15px 0 0;
}
.pagination-wrp li a {
  padding: 16px 24px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  color: var(--primary-color);
}
.pagination-wrp .pagination-btn {
  gap: 7px;
}
.pagination-wrp li a:hover,
.pagination-wrp li a.active {
  background-color: var(--primary-color);
  color: var(--white);
}
/* ============================================= */
/* !!!!          payment-billing Page          !!!! */
/* ============================================= */
.paybill-head h2 {
  font-size: 24px;
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0 0 24px;
  margin: 0 0 24px;
}
.paybill-content-top {
  gap: 10px;
  margin: 0 0 24px;
}
.paybill-logo {
  max-width: 200px;
  width: 100%;
}
.paybill-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.paybill-info-card {
  height: 100%;
  border: 1px solid var(--third-color);
  padding: 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.paybill-bottom .row {
  row-gap: 16px;
}
.paybill-info-wrp {
  gap: 10px;
  color: var(--primary-color);
  margin: 0 0 8px;
}
.paybill-info-card a:hover {
  color: var(--black);
}
.paybill-info-card span,
.bill-card span {
  font-size: 14px;
}
.bill-card {
  gap: 10px;
}
.bill-card .price {
  gap: 10px;
  font: 700 40px/1 var(--font-family);
  color: var(--primary-color);
  padding: 24px 15px;
  background-color: var(--third-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.bill-card .price svg {
  width: 25px;
  height: 28px;
}
.bill-card .paybill-wrp h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin: 0 0 8px;
}
.paybill-info-wrp p {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  word-break: break-word;
}
.paybill-bottom .row [class*="col-"] {
  padding: 0 8px;
}
.paybill-bottom .row {
  margin: 0 -8px;
}
/* ============================================= */
/* !!!!          Document page CSS            !!!! */
/* ============================================= */
.card {
  padding: 24px;
  border: 1px solid var(--primary-color);
  background-color: var(--white);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.user-data-header {
  margin-bottom: 2rem;
  gap: 15px;
}
.user-data-header h2,
.estate-head-col h2 {
  font-size: 20px;
}
.user-data-filters {
  gap: 24px;
  margin-bottom: 24px;
}
.user-data-filters .form-group {
  margin: 0;
}
.user-data-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.user-data-filters button {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.user-data-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--third-color);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 15px;
  gap: 15px;
}
.user-data-row:not(:last-of-type) {
  margin: 0 0 8px;
}
.user-data-status {
  display: inline-block;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.user-data-label span {
  font-size: 12px;
  font-weight: 600;
  display: block;
}
.user-data-status.pending {
  background: #EBEBEB;
  color: #5C5C5C;
}
.user-data-status.reviewing,
.user-data-status.status-approved {
  background: #DCECF1;
  color: #1282A2;
}
.user-data-status.approved {
  background: #EDF5E0;
  color: #50780F;
}
.user-data-status.completed {
  background: #d1ecf1;
  color: #0c5460;
}
.user-data-status.rejected {
  background: #f8d7da;
  color: #C31A1A;
}
.user-data-info {
  -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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.user-data-btn-wrp,
.user-data-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.user-data-label {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.user-data-title {
  margin: 0 0 12px;
  font: var(--common-text);
  font-weight: 600;
}
.user-data-desc {
  font-size: 14px;
  font-weight: 400;
}
.btn-icon {
  border: 0;
  background-color: transparent;
}
.btn-icon svg {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.btn-icon svg path {
  fill: var(--primary-color);
}
.btn-icon:hover,
.btn-icon:focus {
  background-color: transparent;
}
.btn-icon:hover svg path,
.btn-icon:focus svg path {
  fill: var(--black);
}
.add-document-btn,
.user-filter-btn,
.add-user,
.user-list-filter-btn {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.user-filter-btn,
.user-list-filter-btn {
  padding: 9px;
  width: 44px;
  height: 44px;
  display: none;
}
.user-filter-btn svg,
.user-list-filter-btn svg {
  width: 24px;
  height: 24px;
}
.add-document-btn .add-document-mobile,
.add-user .user-list-mobile,
.user-list-filter-btn {
  display: none;
}
.user-header-btnwrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
/* .user-filter-modal select,
.user-data-filters select {
  background-color: var(--third-color);
  border-color: var(--primary-color);
} */
/* ============================================= */
/* !!!!           User List Page            !!!! */
/* ============================================= */
.user-list-sec .user-data-row .user-profile img {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}
.user-data-info-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.add-user-data-modal .verify-row {
  gap: 20px;
}
/* ============================================= */
/* !!!!         Estate Details CSS          !!!! */
/* ============================================= */
.add-estate-sec h2,
.percentage-col {
  margin: 0 0 24px;
}
.add-estate-sec .empty-state-icon svg {
  height: 100px;
  width: 100px;
}
.add-estate-sec .card {
  padding: 55px 24px;
  margin: 0 0 24px;
  gap: 24px;
}
.add-estate-sec .estate-value {
  gap: 10px;
}
.estate-modal .company-form-group {
  padding: 15px;
  background-color: var(--third-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.input-icon,
.date-range-input {
  position: relative;
}
.input-icon input,
.date-range-input input {
  -webkit-padding-end: 36px !important;
  padding-inline-end: 36px !important;
}
.input-icon i,
.date-range-input .calendar-icon {
  position: absolute;
  inset-inline-end: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--grey);
  cursor: pointer;
  z-index: 1;
}
.date-range-input .calendar-icon {
  width: 20px;
  height: 20px;
}
/* ============================================= */
/* !!!!            Custom Date              !!!! */
/* ============================================= */
.date-range-input input {
  cursor: pointer;
}
.date-picker {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
  padding: 12px;
  margin-top: 2px;
}
.date-picker-header {
  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-bottom: 8px;
}
.date-picker-header button {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  padding: 2px 6px;
  color: var(--primary-color);
}
.date-picker-days {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1px 1fr 1px 1fr 1px 1fr 1px 1fr 1px 1fr 1px 1fr;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin-bottom: 4px;
}
.day-header {
  text-align: center;
  font-weight: 500;
  padding: 4px;
  font-size: 10px;
  color: var(--grey);
}
.days-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1px 1fr 1px 1fr 1px 1fr 1px 1fr 1px 1fr 1px 1fr;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}
.day {
  text-align: center;
  padding: 6px;
  cursor: pointer;
  border-radius: 2px;
  font-size: 12px;
}
.day:hover {
  background: var(--third-color);
}
.day.today {
  background: var(--third-color);
  border: 1px solid var(--primary-color);
}
.day.selected {
  background: var(--primary-color);
  color: var(--white);
}
.day.range {
  background: rgba(153, 133, 124, 0.2);
}
.day.other-month {
  color: var(--grey);
  opacity: 0.5;
}
/* ============================================= */
/* !!!!          Distribution Page          !!!! */
/* ============================================= */
.user-data-head-wrp {
  padding: 16px 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background-color: var(--primary-color);
  margin: 0 0 8px;
  color: var(--white);
}
.user-data-head-wrp ul {
  gap: 15px;
}
.user-data-head-wrp .user-detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.percentage-detail {
  max-width: 185px;
  width: 100%;
  text-align: center;
}
.reason-detail {
  max-width: 560px;
  width: 100%;
  text-align: center;
}
.user-data-info.reason-detail,
.distribution-wrp .user-detail {
  font-size: 14px;
  font-weight: 400;
}
.user-data-row.distribution-wrp {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.percentage-col .common-card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.distribution-table-wrp .distribution-des {
  width: 45%;
  font-size: 14px;
}
.wills-table-wrp .wills-info p {
  font-size: 14px;
}
.wills-row,
.business-row {
  background-color: var(--third-color);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
/* Bar Chart Styles */
.percentage-chart {
  height: 100%;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  overflow: hidden;
}
.percentage-col .chart {
  padding: 10px;
}
.chart-title {
  padding: 16px;
  background-color: var(--third-color);
  border-bottom: 1px solid var(--primary-color);
}
/* ============================================= */
/* !!!!              Legal Page             !!!! */
/* ============================================= */
.legal-sec h2 {
  font-size: 20px;
  margin: 0 0 24px;
}
.legal-sec .company-name,
.legal-sec .website-url {
  max-width: 270px;
  width: 100%;
}
.legal-sec .company-detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.legal-sec .legal-col-wrp .company-detail p,
.will-col-wrp .will-details p {
  font-size: 14px;
  font-weight: 400;
}
.legal-sec .legal-col-wrp .user-data-title {
  font-size: 14px;
  margin: 0;
}
/* ============================================= */
/* !!!!              Wills Page             !!!! */
/* ============================================= */
.wills-sec .recommended,
.wills-sec .recommended-name,
.business-sec .company-name {
  max-width: 240px;
  width: 100%;
}
.wills-sec .will-col-wrp .recommended,
.wills-sec .will-col-wrp .recommended-name h4 {
  font-size: 14px;
}
.will-col-inner,
.business-col-inner {
  gap: 15px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.will-details,
.will-details p,
.business-sec .company-information {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.will-button,
.wills-data-actions,
.business-sec .will-button,
.wills-data-actions {
  max-width: 24px;
  width: 100%;
}
/* ============================================= */
/* !!!!            business Page            !!!! */
/* ============================================= */
.business-sec .company-headquarters {
  max-width: 350px;
  width: 100%;
}
.business-sec .share-number {
  max-width: 150px;
  width: 100%;
}
.business-sec .business-col-wrp h4,
.business-sec .business-col-wrp h5,
.business-sec .business-col-wrp span,
.business-sec .business-col-wrp p {
  font-size: 14px;
}
.add-business-mobile {
  display: none;
}
/* ============================================= */
/* !!!!            Visual Page            !!!! */
/* ============================================= */
.visual-sec h2 {
  margin: 0 0 15px;
}
.visual-content-header {
  padding: 50px;
}
.visual-content {
  border: 1px solid var(--primary-color);
  background-color: var(--white);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  overflow: hidden;
}
.visual-content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--third-color);
}
.visual-content-inner .client-details {
  max-width: 350px;
  width: 100%;
  border-right: 2px solid #FDEEE7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.visual-content-inner .client-logo {
  padding: 50px;
  width: 100%;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  border-bottom: 1px solid #f1e4df;
}
.visual-content-inner .client-logo .logo {
  max-width: 150px;
  width: 100%;
}
.visual-content-inner .client-detail-inner {
  padding: 0 50px 50px;
  margin: -44px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.visual-content-inner .profile {
  width: 40px;
  height: 40px;
  margin: 0 0 15px;
  border-radius: 50%;
  overflow: hidden;
}
.visual-content-inner .client-detail-inner span {
  display: block;
  margin: 0 0 10px;
}
.visual-content-inner .profile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.visual-content-inner .title {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 15px;
}
.visual-content-inner .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  margin-bottom: 8px;
  direction: ltr;
}
.visual-content-inner .meta i {
  color: var(--primary-color);
}
.visual-content-inner .placeholder {
  background: #FBE7DE;
  height: 10px;
  margin: 8px 0;
  border-radius: 4px;
}
/* Calendar section */
.visual-content-inner .calendar-wrp {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 24px;
  border-right: 2px solid #FDEEE7;
  padding: 50px 35px;
}
.visual-content-inner .calendar-wrp h3 {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--primary-color);
  text-align: end;
}
.visual-content-inner .calendar-header {
  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: 20px;
  margin-bottom: 16px;
}
.visual-content-inner .calendar-header button {
  border: none;
  background-color: transparent;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.visual-content-inner .calendar-header button:hover,
.visual-content-inner .calendar-header button:focus {
  background-color: #FBE7DE;
}
.visual-content-inner .calendar {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4px 1fr 4px 1fr 4px 1fr 4px 1fr 4px 1fr 4px 1fr;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
  font-size: 14px;
}
.visual-content-inner .calendar .day-header {
  padding: 8px 4px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 12px;
  text-transform: uppercase;
}
.visual-content-inner .calendar .day span {
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 14px;
  height: 35px;
  width: 35px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.visual-content-inner .calendar .day {
  padding: 0;
}
.visual-content-inner .calendar .day.active span {
  background: var(--primary-color) !important;
  color: var(--white);
  font-weight: 600;
}
.visual-content-inner .calendar .day.highlight span {
  background: #f6eae6;
}
.visual-content-inner .calendar .day.other-month {
  color: var(--primary-color);
  opacity: 1;
}
.visual-content-inner .timezone {
  font-size: 14px;
  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: end;
  gap: 8px;
}
.visual-content-inner .timezone-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  margin-top: 16px;
  -webkit-padding-end: 30px;
  padding-inline-end: 30px;
}
.visual-content-inner .timezone-wrp label {
  color: var(--black);
  font-weight: 600;
  display: block;
  margin: 0 0 10px;
}
.visual-content-inner .timezone select {
  background-color: transparent;
  padding: 0 !important;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  text-align: end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-padding-start: 20px !important;
  padding-inline-start: 20px !important;
  background-position: right 0 center !important;
  background-size: 12px !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' fill='4A4A4A'><path d='M31.3 192h257.3c28.4 0 42.8 34.5 22.6 54.6l-128.6 128c-12.5 12.5-32.8 12.5-45.3 0l-128.6-128C-11.5 226.5 2.9 192 31.3 192z'/></svg>") !important;
}
/* Time slots */
.visual-content-inner .time-section {
  max-width: 350px;
  width: 100%;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.visual-content-inner .time-section h4 {
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--primary-color);
  text-align: end;
}
.visual-content-inner .time-slot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.visual-content-inner .time-slot:not(:last-of-type) {
  margin: 0 0 12px;
}
.visual-content-inner .time-slot button {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.visual-content-inner .time-slot button.selected,
.visual-content-inner .time-slot button.confirm {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  font-weight: 500;
}
/* ============================================= */
/* !!!!         Estate Details Page         !!!! */
/* ============================================= */
.estate-details-sec .estate-head-col {
  margin: 0 0 24px;
}
.estate-details-sec .estate-head-col,
.estate-details-sec .estate-head-col .head-btn {
  gap: 15px;
}
.estate-details-sec .real-estate-card,
.estate-details-sec .movable-card {
  height: 100%;
  padding: 15px;
  border: 1px solid var(--primary-color);
  background-color: var(--third-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.estate-details-sec .real-estate-card {
  gap: 15px;
}
.estate-details-sec .movable-card-inner {
  padding: 15px;
  gap: 10px;
  background-color: var(--white);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.estate-details-sec .real-estate-card:not(:last-of-type),
.estate-details-sec .movable-card-inner:not(:last-of-type) {
  margin: 0 0 10px;
}
.estate-details-sec .real-estate-info p,
.estate-details-sec .movable-card-info p {
  margin: 0 0 5px;
}
.estate-details-sec .real-estate-info span,
.estate-details-sec .movable-card-info span {
  font-size: 14px;
}
.estate-details-sec .real-estate-price {
  gap: 15px;
}
.estate-details-sec .real-estate-price .price,
.estate-details-sec .movable-card-inner .price {
  font-size: 20px;
  gap: 5px;
}
.estate-details-sec .real-estate-price .location svg,
.estate-details-sec .real-estate-price .price svg,
.estate-details-sec .movable-card-inner .price svg,
.estate-details-sec .movable-title svg {
  height: 20px;
  width: 20px;
}
.estate-details-sec .movable-title {
  gap: 10px;
  margin: 0 0 10px;
}
.estate-details-sec .movable-title h4 {
  font-size: 18px;
}
.estate-value .value-col-title h4,
.estate-details-sec .estate-value .price {
  margin: 0 0 10px;
}
.estate-details-sec .estate-value .price-wrp span {
  font-size: 14px;
  color: var(--primary-color);
}
.estate-details-sec .estate-value {
  margin: 24px 0 0;
  gap: 15px;
}
/* ============================================= */
/* !!!!              LTR CSS                !!!! */
/* ============================================= */
[dir="ltr"] .mobile-menu-wrapper {
  right: 0;
  left: auto;
  transform: translate(100%, 0px) !important;
  -webkit-transform: translate(100%, 0px) !important;
  -moz-transform: translate(100%, 0px) !important;
  -ms-transform: translate(100%, 0px) !important;
  -o-transform: translate(100%, 0px) !important;
}
[dir="ltr"] .mobile-menu-wrapper.active-menu {
  transform: translate(0%, 0px) !important;
  -webkit-transform: translate(0%, 0px) !important;
  -moz-transform: translate(0%, 0px) !important;
  -ms-transform: translate(0%, 0px) !important;
  -o-transform: translate(0%, 0px) !important;
}
[dir="ltr"] .login-page .login-banner-img,
[dir="ltr"] .success-page .success-banner-img,
[dir="ltr"] .verify-page .verify-banner-img,
[dir="ltr"] .verify-number-page .verify-number-banner-img,
[dir="ltr"] .register-page .register-page-banner-img {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}
[dir="ltr"] .faq-sec svg,
[dir="ltr"] .user-profile-sec .menu-card-inner i,
[dir="ltr"] .fa-arrow-left-long,
[dir="ltr"] .fa-arrow-right-long,
[dir="ltr"] .pagination-btn .fa-arrow-right,
[dir="ltr"] .pagination-btn .fa-arrow-left,
[dir="ltr"] .fa-chevron-right,
[dir="ltr"] .fa-chevron-left,
[dir="ltr"] .member-btn-inner .fa-arrow-left,
[dir="ltr"] .member-btn-inner .fa-arrow-right {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}
[dir="ltr"] .partners-swiper .fa-arrow-left,
[dir="ltr"] .partners-swiper .fa-arrow-right {
  transform: scaleX(1) !important;
  -webkit-transform: scaleX(1) !important;
  -moz-transform: scaleX(1) !important;
  -ms-transform: scaleX(1) !important;
  -o-transform: scaleX(1) !important;
}
[dir="ltr"] .request-tab li::before,
[dir="ltr"] .member-tab li::before {
  right: -18px;
  left: auto;
  border-radius: 0 6px 0 0;
  -webkit-border-radius: 0 6px 0 0;
  -moz-border-radius: 0 6px 0 0;
  -ms-border-radius: 0 6px 0 0;
  -o-border-radius: 0 6px 0 0;
}
[dir="ltr"] .request-tab li,
[dir="ltr"] .member-tab li {
  padding: 8px 25px 8px 40px;
}
[dir="ltr"] .request-tab li:first-of-type,
[dir="ltr"] .member-tab li:first-of-type {
  padding: 8px 15px 8px 15px;
}
[dir="ltr"] .member-details span:not(:first-of-type)::after {
  right: auto;
  left: -14px;
}
[dir="ltr"] select {
  background-position: calc(100% - 15px) 50% !important;
}
[dir="ltr"] thead th:first-of-type {
  border-radius: 8px 0 0 8px;
  -webkit-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  -ms-border-radius: 8px 0 0 8px;
  -o-border-radius: 8px 0 0 8px;
}
[dir="ltr"] thead th:last-of-type {
  border-radius: 0 8px 8px 0;
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -ms-border-radius: 0 8px 8px 0;
  -o-border-radius: 0 8px 8px 0;
}
[dir="ltr"] .common-banner .common-banner-img img,
[dir="ltr"] .common-banner::before {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1)
}
[dir="ltr"] .visual-content-inner .timezone select {
  background-position: left 0 center !important;
}
.d-none{
    display: none !important;
}
.text-danger {
    color: #dc3545 !important;
}
.float-end {
    float: right !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
.mt-4 {
    margin-top: 1.5rem !important;
}
.mt-3 {
    margin-top: 1rem !important;
}
.m-0  { margin: 0 !important; }
.m-1  { margin: 0.25rem !important; }   /* 4px */
.m-2  { margin: 0.5rem !important; }    /* 8px */
.m-3  { margin: 1rem !important; }      /* 16px */
.m-4  { margin: 1.5rem !important; }    /* 24px */
.m-5  { margin: 3rem !important; }      /* 48px */

.m-auto { margin: auto !important; }
.p-0  { padding: 0 !important; }
.p-1  { padding: 0.25rem !important; }
.p-2  { padding: 0.5rem !important; }
.p-3  { padding: 1rem !important; }
.p-4  { padding: 1.5rem !important; }
.p-5  { padding: 3rem !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ms-0 { margin-left: 0 !important; }   /* start (LTR: left, RTL: right) */
.me-0 { margin-right: 0 !important; }  /* end (LTR: right, RTL: left) */

.mt-1 { margin-top: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.ps-3 { padding-left: 1rem !important; }
.pe-4 { padding-right: 1.5rem !important; }


/* Upgrade Plan */
.plan-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: #3b2f28;
  }

  .plan-table th {
    padding: 12px;
    text-align: center;
    background: #f3efec;
    border-bottom: 1px solid #d8ccc3;
    font-weight: 600;
  }

  .plan-table td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid #e4dcd6;
  }

  /* Optional row hover */
  .plan-table tbody tr:hover {
    background: #faf7f5;
  }

  .pagination-wrapper {
    margin: 24px 0 0;
  }
.tabel-overflow {
    overflow-x: auto;
}
.plan-modal-inner .modal-body-inner{
    margin: 0;
}
.new-common-btn-wrp{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
 /* Pill style */
.switch-pill {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 23px;
    background-color: var(--third-color);
    border: 1px solid var(--grey);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Knob */
.switch-pill::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border: 1px solid var(--grey);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

/* Checked state */
.toggle-switch:checked + .switch-pill {
    background-color: var(--primary-color);
}

.toggle-switch:checked + .switch-pill::before {
    left: auto;
    right: 2px;
    background-color: var(--white);
}

/* SweetAlert White Button (Confirm) */
.swal2-popup .swal-btn-white {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.swal2-popup .swal-btn-white:hover,
.swal2-popup .swal-btn-white:focus {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}

/* SweetAlert Danger Button (Cancel) */
.swal2-popup .swal-btn-danger {
    background-color: transparent !important;
    color: var(--red) !important;
    border-color: var(--red) !important;
    margin-left: 15px;;
}

.swal2-popup .swal-btn-danger:hover,
.swal2-popup .swal-btn-danger:focus {
    background-color: var(--red) !important;
    color: var(--white) !important;
    border-color: var(--red) !important;
}

[dir="rtl"] .swal2-popup .swal-btn-danger {
    margin-right: 15px;;
}

/* Add to your CSS file */
.date-picker-select {
    border: none;
    background: transparent;
    font-size: 1em;
    margin: 0 4px;
    color: inherit;
    outline: none;
    min-width: 70px;
     pointer-events: auto !important;
    z-index: 9999; /* make sure it's above other elements */
}
.member-action-btn-wrp {
    gap: 20px;
}
.member-action-btn {
    gap: 10px;
}
.filter-btn{
    margin-bottom: 26px !important;
}
[dir="rtl"] .dash-logout-btn{
    padding: 12px 6px !important;
}

/* Custom column width for time inputs */
.col-time-input {
  flex: 0 0 20.83%;
  max-width: 20.83%;
}

/* Hide CKEditor warning notifications */
.cke_notification_warning {
  display: none !important;
}

.booking-form-container {
    padding: 2rem;
}
.required {
    color: #dc3545;
}

.form-actions {
    margin-top: 2rem;
    text-align: right;
}


.client-logo .logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

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

.client-detail-inner span {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin: 1rem 0;
}

.title {
    font-weight: 500;
    color: #99857C;
    margin-bottom: 0.5rem;
}

.meta {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.meta i {
    margin-right: 0.5rem;
    color: #99857C;
}

@media (max-width: 768px) {
    .booking-form-container {
        padding: 1.5rem;
    }

    .form-actions {
        text-align: center;
    }

    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}



.appointment-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #99857C;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.info-grid div {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.status-radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.radio-item label {
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
    color: #333;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    min-width: 70px;
}

.status-badge.pending {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-badge.approved {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-badge.completed {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.status-badge.rejected {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .status-radio-group {
        gap: 1rem;
    }

    .radio-item label {
        font-size: 0.9rem;
    }

    .radio-item input[type="radio"] {
        width: 16px;
        height: 16px;
    }
}

