@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Changa:wght@200..800&display=swap');

:root {
  /* Colors: */
  --main: #012F7A;
  --secondary: #F6A514;
  --white: #fff;
  --black: #000;
  --rate: #ffbb00;
  --muted-text: #848484;
  --card-bg: #F8F8F8;
  --card-raduis: 24px;
  /* rgba */
  --mainOp: 1, 47, 122;
  --secondaryOp: 246, 165, 20;
  --whiteOp: 255, 255, 255;
  --blackOp: 0, 0, 0;
  /* variables */
  --gutter-x: 8.5rem;
  --dir-multiplier: -1;
  --menu-offset: 280px;
}

/*@font-face {*/
/*  font-family: "Bahij";*/
/*  src: url('../font/Bahij/Bahij_TheSansArabic-Bold.ttf');*/
/*  font-weight: bold;*/
/*  font-style: normal;*/
/*}*/

/*@font-face {*/
/*  font-family: "Bahij";*/
/*  src: url('../font/Bahij/Bahij_TheSansArabic-ExtraBold.ttf');*/
/*  font-weight: bolder;*/
/*  font-style: normal;*/
/*}*/

/*@font-face {*/
/*  font-family: "Bahij";*/
/*  src: url('../font/Bahij/Bahij_TheSansArabic-SemiBold.ttf');*/
/*  font-weight: 500;*/
/*  font-style: normal;*/
/*}*/

/*@font-face {*/
/*  font-family: "Bahij";*/
/*  src: url('../font/Bahij/Bahij_TheSansArabic-Plain.ttf');*/
/*  font-weight: 400;*/
/*  font-style: normal;*/
/*}*/

/*@font-face {*/
/*  font-family: "Bahij";*/
/*  src: url('../font/Bahij/Bahij_TheSansArabic-SemiLight.ttf');*/
/*  font-weight: 300;*/
/*  font-style: normal;*/
/*}*/

/*@font-face {*/
/*  font-family: "Bahij";*/
/*  src: url('../font/Bahij/Bahij_TheSansArabic-Light.ttf');*/
/*  font-weight: normal;*/
/*  font-style: normal;*/
/*}*/

/*@font-face {*/
/*  font-family: "Bahij";*/
/*  src: url('../font/Bahij/Bahij_TheSansArabic-ExtraLight.ttf'), ;*/
/*  font-weight: 200;*/
/*  font-style: normal;*/
/*}*/

[dir="ltr"] {
  --dir-multiplier: 1;
}

/* [dir='ltr']:root{
  --gutter-x: 4.5rem;
} */
@media (max-width: 992px) {
  :root {
    --gutter-x: 1.5rem;
  }
}

* {
  font-family: "Almarai", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: 0.35s linear;
  -webkit-transition: 0.35s linear;
  -moz-transition: 0.35s linear;
  -ms-transition: 0.35s linear;
  -o-transition: 0.35s linear;
}

/* .center, .outerCircle {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 999;
  transition: 0s ;
  -webkit-transition: 0s ;
  -moz-transition: 0s ;
  -ms-transition: 0s ;
  -o-transition: 0s ;
}

.center {
  background-color: var(--secondary);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.outerCircle {
  width: 30px;
  height: 30px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  transition: 0.1s ease;
}

.click {
  animation: click 300ms ease 1;
}
.hover {
  width: 50px !important;
  height: 50px !important;
}

@keyframes click {
  0% {
    width: 30px;
    height: 30px;
  }
  50% {
    width: 50px;
    height: 50px;
  }
  100% {
    width: 30px;
    height: 30px;
  }
} */


/* scrollbar */
::-webkit-scrollbar {
  height: 0.5rem;
  width: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  border-radius: 70px;
  -webkit-border-radius: 70px;
  -moz-border-radius: 70px;
  -ms-border-radius: 70px;
  -o-border-radius: 70px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--main);
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(128, 128, 128, 0.63);
}

/* select text */
::selection {
  color: var(--white);
  background-color: rgba(var(--mainOp), 0.75);
}

/* placeholder */
.form-floating label,
::placeholder {
  color: #6B6B6B;
  font-size: 16px;
}

.cut-text {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#scrollUp {
  display: none;
}

.fixed-icon {
  position: fixed;
  bottom: 30px;
  inset-inline-end: 30px;
  z-index: 11;
}

.fixed-icon a i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main);
  color: var(--white);
  backdrop-filter: blur(18px);
  border-radius: 50%;
  box-shadow: 0 2px 6px 0 rgb(0 0 0 / 30%);
  transition: .5s;
  font-size: 20px;
  width: 48px;
  height: 48px;
  margin: 10px 0;
}

.snapchat i::after {
  content: '';
  height: 54px !important;
  width: 54px !important;
  top: calc(50% - 27px) !important;
  inset-inline-start: calc(50% - 27px) !important;
  position: absolute;
  border: 3px solid rgba(var(--whiteOp), 0.84);
  border-radius: 100%;
  box-shadow: 0 0 0 3px rgba(var(--whiteOp), 0.84);
  z-index: 2;
}

.fixed-icon a.snapchat i {
  background: #FFFC00;
  color: #000;
}

.fixed-icon a.whatsapp i {
  background: #25d366;
  color: #fff;
}

.fixed-icon a.tiktok i {
  background: #000;
  color: #fff;
}

.snapchat i::after {
  -webkit-animation: 1s infinite ripple-out;
  animation: 1s infinite ripple-out;
}

@keyframes ripple-out {
  100% {
    transform: scale(1.5);
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5)
  }
}

@-webkit-keyframes ripple-out {
  100% {
    transform: scale(1.5);
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5)
  }
}

[dir='ltr'] [class*="arrow"],
[dir='ltr'] [class*="angles"] {
  transform: rotatey(180deg);
  -webkit-transform: rotatey(180deg);
  -moz-transform: rotatey(180deg);
  -ms-transform: rotatey(180deg);
  -o-transform: rotatey(180deg);
}

/* -- global -- */
body {
  background: var(--white);
}

[dir=rtl] [type=email],
[dir=rtl] body,
[type=number],
[type=tel],
[type=url] {
  direction: rtl !important
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

p {
  margin-bottom: 0rem !important;
  /* font-size: 1.1em; */
}

a {
  text-decoration: none;
  color: inherit;
  /* font-size: 1.1em !important; */
}

ul {
  padding: 0rem !important;
  list-style: none;
}

.container-fluid {
  --bs-gutter-x: var(--gutter-x) !important;
  padding-left: calc(var(--bs-gutter-x)* .5) !important;
  padding-right: calc(var(--bs-gutter-x)* .5) !important;
}

/* nice select */
.nice-select {
  width: 100%;
  color: var(--black);
  float: unset;
  margin-top: 0 !important;
  height: 49.6px;
}

.nice-select .list {
  min-width: fit-content;
  width: 100%;
  z-index: 98;
}

.nice-select {
  border: none;
}

.nice-select,
.nice-select .list li {
  text-align: start !important;
  padding-right: 18px;
  padding-left: 30px;
}

.nice-select:after {
  inset-inline-start: unset;
  inset-inline-end: 12px;
}

/* accordion */
.accordion-header {
  padding-inline-start: 1.5rem;
}

.accordion-button {
  font-size: 20px;
  font-weight: 500;
}

.accordion-item {
  background-color: transparent;
  border-left: unset;
  border-right: unset;
}

.accordion-item:first-child {
  border-top: unset;
}

.accordion-item:last-child {
  border-bottom: unset;
}

.accordion-button:not(.collapsed) {
  color: initial;
  background-color: transparent;
  box-shadow: none;
  font-weight: 600;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.accordion-item .accordion-body {
  padding-block: 0px !important;
  font-size: .95rem; 
  font-weight: 400;
  /* color: #6B6B6B;
  */
}

/* + */
.accordion-button::after {
  background-image: none !important;
  content: "\F64D";
  font-family: 'bootstrap-icons';
  position: absolute;
  inset-inline-start: -1rem;
  width: 30px;
  height: 30px;
  background-color: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid #d1dcd9;
}

/* - */
.accordion-button:not(.collapsed)::after {
  content: "\F2EA";
}

/* inputs */
.form-control {
  padding: 0.5rem 0.75rem;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--balck);
  border: 1px solid #DBDBDB;
  border-radius: 0.45rem;
  transition: 0.15s ease-in-out;
  box-shadow: none !important;
  -webkit-border-radius: 0.45rem;
  -moz-border-radius: 0.45rem;
  -ms-border-radius: 0.45rem;
  -o-border-radius: 0.45rem;
}

.form-control:focus {
  border: 1px solid var(--secondary) !important;
  outline: none !important;
}

.input-group .form-control:focus {
  border: none !important;
}

.input-group * {
  border: none !important;
}

.input-group {
  border-radius: 0.45rem;
  -webkit-border-radius: 0.45rem;
  -moz-border-radius: 0.45rem;
  -ms-border-radius: 0.45rem;
  -o-border-radius: 0.45rem;
  overflow: hidden;
}

.input-group:focus-within {
  border-color: var(--secondary) !important;
  overflow: hidden;
}

.helper-page *{
  margin: 1rem 0; 
}

/* buttons */
.main-outline-btn,
.main-btn {
  border-radius: 8px;
  width: max-content;
  padding: 8px 40px;
  display: block;
  background: var(--secondary) !important;
  transition: all 0.3s ease-out;
  color: var(--white) !important;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.main-outline-btn {
  background: transparent !important;
  border: 1px solid var(--secondary);
  color: var(--secondary) !important;
}

.main-outline-btn:hover {
  background: var(--main) !important;
  border-color: var(--main);
  color: var(--white) !important;
}

/* classes for colors */
.main {
  color: var(--main) !important;
}

.secondary {
  color: var(--secondary) !important;
}

.bg-main {
  background-color: var(--main) !important;
  color: var(--white) !important;
}

.bg-secondary {
  background-color: var(--secondary);
  color: var(--white) !important;
}

.bg-card {
  background: var(--card-bg) !important;
}

/* float link */
.link {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(var(--blackOp), .5);
}

/* rate */
.Stars {
  --percent: calc(var(--rating) / 5 * 100%);
  font-size: 21px;
}

.Stars::before {
  content: "★★★★★";
  background: linear-gradient(-90deg, var(--secondary) var(--percent), #b9b9b9 var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.social i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 19px;
}

/* tabs */
.nav-tabs {
  border: none;
  margin-top: 1.5rem;
  width: fit-content;
}

.nav-tabs .nav-item .nav-link {
  border: 0;
  margin: 0 0.5rem;
  color: #575757 !important;
}

.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
  color: var(--secondary) !important;
  font-weight: bold;
  border-bottom: 2px solid var(--secondary);
  margin-bottom: -1px;
}

/* Carousel */
.container-fluid:has(.owl-carousel):not(:has(.slider .owl-carousel)) {
  padding-inline-end: 0 !important;
}


.owl-carousel .owl-stage {
  display: flex;
}

/* == navbar == */
.navbar {
  position: relative;
  z-index: 2;
}

/* top nav */
.top-nav {
  background: #F0F0F0 ;
  padding-block: 4px;
}

.top-nav a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 6px;
}

.top-nav li:not(:last-child) a::after {
  content: '';
  display: inline-flex;
  width: 10px;
  height: 24px;
  border-inline-end: 1px solid rgba(var(--blackOp), .15);
}

.top-nav .helper-pages {
  display: flex;
  align-items: center;
  gap: 14px;
}

.notifi i::after {
  content: '';
  height: 8px;
  width: 8px;
  top: calc(50% - 11px);
  inset-inline-end: calc(50% - 8px);
  position: absolute;
  background: var(--secondary);
  border-radius: 100%;
  box-shadow: 0 0 0 3px rgba(var(--secondaryOp),.5);
  z-index: -1;
  -webkit-animation: 1s infinite ripple-out;
  animation: 1s infinite ripple-out;
}

@keyframes ripple-out{
    100% {
        transform: scale(1.5);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}

/* main-nav */
.navbar-nav {
  justify-content: space-evenly;
  margin: 0 auto;
}

.navbar .navbar-brand img {
  width: 200px !important;
}

.main-nav .navbar .nav-link{
    font-size: 1.1rem;
}
.navbar .nav-link.active {
  color: var(--main) !important;
  font-weight: bold;
}

.main-nav .search-box {
  position: relative;
}

.main-nav .search-box input {
  background: transparent;
  border: 1px solid #E8E8E8;
  padding-block: 6px;
  padding-inline: 20px 34px;
  border-radius: 70px;
  -webkit-border-radius: 70px;
  -moz-border-radius: 70px;
  -ms-border-radius: 70px;
  -o-border-radius: 70px;
}

.main-nav .search-box input::placeholder {
  color: var(--black);
}

.main-nav .search-box button {
  position: absolute;
  inset-inline-end: 16px;
  top: 50%;
  font-size: 14px;
  transform: translateY(-50%);
  background: transparent;
  color: var(--secondary);
}

.main-nav .search-box:focus-within button {
  color: var(--secondary) !important;
}


.alert.notifi{
    background: #F6F7F9 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 6px #00000008;
    border-radius: 18px;
    padding: 1.5rem;
    margin-bottom: .65rem;
}

/* breadcrumb */
.heroSec.breadcrumb-wrapper{
  min-height: unset;
  padding: 3rem 0;
}
.heroSec .breadcrumb{
  position: relative;
  z-index: 3;
  margin: 0;
  color: var(--white);
}
/* -- home page -- */
.heroSec {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('../images/heroSec.png');
  background-size: cover;
  background-position: center;
  min-height: calc(100vh - 163px);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
}


.heroSec .search-box {
  min-width: 40%;
  max-width: 70%;
  margin: auto;
  display: flex;
  align-self: center;
  padding: .85rem;
  border-radius: 15px;
  position: relative;
  background: #F8F8F8;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  margin-top: 5rem;
}

.heroSec .search-box .nice-select {
  display: flex;
  align-items: center;
  padding: 0px 15px;
  padding-inline-end: 28px;
  border-radius: 0;
  border-width: 0px;
  font-size: 1.1rem;
  height: 49px;
  background-color: transparent;
  width: fit-content;
  float: none;
  text-align: start !important;
}

.heroSec .search-box form {
  width: 100%;
  display: flex;
  align-items: center;
}

.heroSec .search-box .current {
  font-size: 17px;
  font-weight: bold;
  color: var(--main);
}

.heroSec .search-box .nice-select .option {
  font-size: 15px;
  padding-left: 8px;
  padding-right: 8px;
}

.heroSec .search-box input {
  width: 100%;
  height: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 0px;
  background: transparent;
  position: relative;
}

.search-box .nice-select::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  inset-inline-end: 0;
  width: 1px;
  display: block;
  border-inline-start: 1px solid #9a9a9a52 !important;
}

.search-box .nice-select:after {
  border-color: var(--secondary);
  height: 8px;
  width: 8px;
  inset-inline-end: 10px;
}

.search-box button {
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
  color: #fff;
  height: 100%;
  border-radius: 10px !important;
  font-size: 16px;
  border-radius: 40px;
}


.heroSec .scroll-to-next li {
  margin: 14px 0;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2px
}

.heroSec nav:has(.scroll-to-next) {
  position: absolute;
  bottom: 3rem;
  inset-inline-start: calc(var(--gutter-x)* .25) !important;
}
.heroSec .scroll-to-next li a {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  transition: color .3s;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
}

.heroSec .scroll-to-next li:hover a,.projects-pagination .page-link:hover .overlay i {
  color: var(--secondary);
  border-color: var(--secondary)
}


html[dir='ltr'] #filter{
  border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  -ms-border-radius: 0 5px 5px 0;
  -o-border-radius: 0 5px 5px 0;
}

.close-profile-nav {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--white);
  background-color: var(--secondary);
  box-shadow: 0px 3px 6px rgba(var(--blackOp), 0.29);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}


.features .feature{
  background: #F0F0F0;
  border-radius: calc(var(--card-raduis)*.5);
  -webkit-border-radius: calc(var(--card-raduis)*.5);
  -moz-border-radius: calc(var(--card-raduis)*.5);
  -ms-border-radius: calc(var(--card-raduis)*.5);
  -o-border-radius: calc(var(--card-raduis)*.5);
  padding: 3rem 1rem;
  height: 100%;
  text-align: center;
}
.features .feature .feature-icon{
  position: relative;
  width: fit-content;
  padding: 1rem 0;
  margin: auto;
  /* margin-bottom: 1rem; */
}
.features .feature .feature-icon::before,
.features .feature .feature-icon::after{
  content: "";
  display: block;
  width: 68px;
  height: 68px;
  position: absolute;
  top: 6px;
  inset-inline-start: -3px;
  background: rgba(var(--secondaryOp), .5);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 1;
}
.features .feature .feature-icon::after{
  inset-inline-start: -10px;
}
.features .feature .feature-icon img{
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 8;
}

.discover{
  border-radius: var(--card-raduis);
  overflow: hidden;
}
.discover-bg {
  position: absolute;
  inset: 0;
  top: 3rem;
  background: #F0F0F0;
  border-radius: var(--card-raduis);
  -webkit-border-radius: var(--card-raduis);
  -moz-border-radius: var(--card-raduis);
  -ms-border-radius: var(--card-raduis);
  -o-border-radius: var(--card-raduis);
  z-index: -1;
}
.discover-content{
  padding: 1rem 2rem;
  padding-top: 3rem;
}

/* -- estates slider section --  */
.our-estates.bg-light {
  background: #FBFBFB !important;
}

.our-estates .card {
  background-color: transparent;
  padding: 8px 6px;
  border-color: #D5D5D5 !important;
  border-radius: var(--card-raduis);
  height: 100%;
  -webkit-border-radius: var(--card-raduis);
  -moz-border-radius: var(--card-raduis);
  -ms-border-radius: var(--card-raduis);
  -o-border-radius: var(--card-raduis);
}
.estate-filter .form-control{
  background: #F9F9F9 !important;
  width: fit-content;
  border-radius: 30px !important;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  -ms-border-radius: 30px !important;
  -o-border-radius: 30px !important;
}
.estate-filter .nice-select {
  display: flex;
  align-items: center;
  padding: 0px 36px;
  padding-inline-end: 50px;
  border-radius: 0;
  border-width: 0px;
  font-size: 1.1rem;
  height: 38.78px;
  width: fit-content;
  float: none;
  text-align: start !important;
}
.estate-filter .current {
  font-size: 17px;
  font-weight: bold;
  color: var(--main);
}
.estate-filter .nice-select:after {
  border-color: var(--secondary);
  height: 8px;
  width: 8px;
  inset-inline-end: 30px;
}

.middle {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}
.middle .multi-range-slider, [dir=ltr] body {
  direction: ltr;
}

.middle .slider {
  position: relative;
  z-index: 1;
  height: 6px;
  margin: 15px 0;
}

.middle .slider .track {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background-color: #e9e9e9
}

.middle .slider .range {
  position: absolute;
  z-index: 2;
  inset: 0 25%;
  border-radius: 5px;
  background-color: var(--secondary)
}

.middle .slider .thumb {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  width: 18px;
  height: 18px;
  background-color: var(--white);
  border: 6px solid var(--secondary);
  box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
  border-radius: 50%
}

.middle .slider .thumb.left {
  inset-inline-end: 25%;
  transform: translate(-8px, -6px);
  -webkit-transform: translate(-8px, -6px);
  -moz-transform: translate(-8px, -6px);
  -ms-transform: translate(-8px, -6px);
  -o-transform: translate(-8px, -6px)
}

.middle .slider .thumb.right {
  inset-block-start: 25%;
  transform: translate(6px, -8px);
  -webkit-transform: translate(6px, -8px);
  -moz-transform: translate(6px, -8px);
  -ms-transform: translate(6px, -8px);
  -o-transform: translate(6px, -8px)
}

input[type=range] {
  position: absolute;
  pointer-events: none;
  -webkit-appearance: none;
  z-index: 2;
  height: 10px;
  width: 100%;
  opacity: 0
}

input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  width: 30px;
  height: 30px;
  border-radius: 0;
  border: 0;
  background-color: var(--secondary);
  -webkit-appearance: none
}


.estate-category {
  color: var(--white);
  background-color: var(--secondary);
  padding: .2rem .5rem;
  font-size: 14px;
  border-radius:  4px ;
  position: absolute;
  top: 2rem;
  inset-inline-start: -10px;
  z-index: 8;
  -webkit-border-radius:  4px ;
  -moz-border-radius:  4px ;
  -ms-border-radius:  4px ;
  -o-border-radius:  4px ;
}
.estate-category::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  border-style: solid;
  border-width: 12px 10px 0 0;
  border-color: rgba(var(--secondaryOp), .81) transparent transparent transparent;
}

.our-estates .card .card-body {
  border-radius: var(--card-raduis)*2;
  margin-top: .45rem;
  -webkit-border-radius: var(--card-raduis)*2;
  -moz-border-radius: var(--card-raduis)*2;
  -ms-border-radius: var(--card-raduis)*2;
  -o-border-radius: var(--card-raduis)*2;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.our-estates .card .card-footer {
  border: none;
  background-color: transparent;
  padding: 0.5rem 1rem 1rem;
}

.our-estates .estate-img {
  border-radius: var(--card-raduis);
  -webkit-border-radius: var(--card-raduis);
  -moz-border-radius: var(--card-raduis);
  -ms-border-radius: var(--card-raduis);
  -o-border-radius: var(--card-raduis);
  overflow: hidden;
}

.our-estates .card-img-top {
  aspect-ratio: 11/7;
  object-fit: cover;
}

.our-estates .fav-icon {
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--secondary);
  background-color: var(--white);
  box-shadow: 0px 3px 6px rgba(var(--blackOp), 0.29);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.estate-price {
  font-size: 1.15rem;
}

.our-estates .goto {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.our-estates .card:hover .goto {
  background: var(--secondary);
  color: var(--white);
  transform: rotate(calc(45deg * var(--dir-multiplier)));
  -webkit-transform: rotate(calc(45deg * var(--dir-multiplier)));
  -moz-transform: rotate(calc(45deg * var(--dir-multiplier)));
  -ms-transform: rotate(calc(45deg * var(--dir-multiplier)));
  -o-transform: rotate(calc(45deg * var(--dir-multiplier)));
}


.our-estates .card:hover img {
  scale: 1.1;
}

.our-estates .card-hover .icons:hover {
  color: var(--main);
  background-color: var(--white);
}

.our-estates .badge {
  position: absolute;
  top: 0;
  inset-inline-end: -50%;
  padding: 15px 80px;
  text-align: center;
  background: var(--secondary);
  transform: translate(50%, 50%) rotateZ(314deg);
  font-size: 16px;
}

html[lang='en'] .our-estates .badge {
  transform: translate(-50%, 50%) rotateZ(-314deg);
}

/* all estates */
.estates .accordion-header {
  padding-inline-start: unset;
}

.estates .accordion-button {
  background: transparent;
  color: var(--main);
}

.estates .accordion-button::after {
  font-size: 14px;
  inset-inline-start: unset;
  width: 1.3rem;
  height: 1.3rem;
  inset-inline-end: .25rem;
}

.toggle-side-menu-classification,
#filter {
  position: fixed;
  top: 50%;
  inset-inline-start: 0;
  color: var(--white) !important;
  background-color: var(--secondary);
  padding: 6px 12px;
  border-radius: 5px 0px 0px 5px;
  display: none;
  z-index: 99;
}


.filter {
  background-color: #FCFCFC;
  border-radius: 20px;
  border: 0.30000001192092896px solid #b5b5b54a;
  padding: 1rem 0;
}

.filter.show {
  background-color: var(--main);
  color: var(--white);
}

.estates .filter.show .accordion-button {
  color: var(--white);
}

.filter .accordion-item {
  border: 0 !important;
}

.filter .accordion-button {
  font-weight: bold;
  font-size: 1.05rem;
}

.filter .input-group {
  border: 0.30000001192092896px solid #b5b5b54a;
  border-radius: calc(var(--card-raduis) * .45);
  -webkit-border-radius: calc(var(--card-raduis) * .45);
  -moz-border-radius: calc(var(--card-raduis) * .45);
  -ms-border-radius: calc(var(--card-raduis) * .45);
  -o-border-radius: calc(var(--card-raduis) * .45);
}

.form-check-input {
  width: 1.3rem;
  height: 1.3rem;
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.form-check-input:checked+label {
  color: var(--secondary);
}

.filter .form-check {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  min-height: 1.5rem;
  margin-bottom: 0.125rem;
  padding: .65rem 0 !important;
  border-bottom: 0.30000001192092896px solid #b5b5b54a;
}

.filter .form-check label {
  width: 100%;
}

/* single estates */

.estates .sticky-side {
  display: inline-block;
  position: sticky;
  top: 10px;
  height: fit-content;
}

.estates .main-side {
  display: inline-block;
  vertical-align: top;
}

.all {
  width: 100%;
  height: auto;
  display: inline-block;
  position: relative;
}

.all .slider {
  width: auto;
  height: auto;
  overflow: hidden;
  border-radius: 3px;
  border-radius: 10px;
  position: relative;
}

.all .slider .owl-dots {
  display: none;
}

.all .slider .owl-nav {
  top: 45%;
  width: 94%;
  left: 3%;
  display: flex;
  justify-content: space-between;
  position: absolute;
}

.all .owl-carousel .owl-nav button.owl-next,
.all .owl-carousel .owl-nav button.owl-prev {
  font: inherit;
  width: 40px;
  height: 40px;
  line-height: 5px;
  border: 1px solid var(--main);
  border-radius: 50%;
  font-size: 25px;
  color: var(--white);
  background: var(--main);
  transition: all 0.3s;
}

.owl-carousel .owl-nav button:hover {
  border: 1px solid var(--secondary) !important;
  color: #fff !important;
  background-color: var(--secondary) !important;
}

.all .slider:hover .left {
  visibility: visible;
  opacity: 1;
  left: 20px;
}

.all .slider:hover .right {
  visibility: visible;
  opacity: 1;
  right: 20px;
}

.all .slider .item-box {
  overflow: hidden;
  width: 100%;
  position: relative;
  background-size: cover;
  border-radius: var(--card-raduis);
  -webkit-border-radius: var(--card-raduis);
  -moz-border-radius: var(--card-raduis);
  -ms-border-radius: var(--card-raduis);
  -o-border-radius: var(--card-raduis);
}

.all .slider .item-box:after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  content: "";
  display: block;
}

.all .slider .left {
  position: absolute;
  z-index: 1;
  top: 167px;
  left: -20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: left ease 0.25s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background: url(http://svgshare.com/i/2V9.svg) top left;
}

.all .slider .left:hover {
  visibility: visible;
  opacity: 1;
  left: 20px;
  background: url(http://svgshare.com/i/2UW.svg) top left;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.all .slider .left.nonl {
  left: -20px;
  opacity: 0;
  visibility: hidden;
}

.all .slider .right {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: 167px;
  right: -20px;
  width: 40px;
  height: 40px;
  visibility: hidden;
  opacity: 0;
  transition: right ease 0.25s;
  background: url(http://svgshare.com/i/2V9.svg) top left;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.all .slider .right:hover {
  visibility: visible;
  opacity: 1;
  right: 20px;
  background: url(http://svgshare.com/i/2UW.svg) top left;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.all .slider .right.nonr {
  right: -20px;
  opacity: 0;
  visibility: hidden;
}

.all .slider-two {
  width: auto;
  height: auto;
  overflow: hidden;
  position: relative;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 0;
  z-index: 1;
}

.all .slider-two .owl-nav,
.all .slider-two .owl-dots {
  display: none;
}

.all .slider-two:hover .left-t {
  visibility: visible;
  opacity: 1;
  right: calc(100% - 60px);
}

.all .slider-two:hover .right-t {
  visibility: visible;
  opacity: 1;
  right: 20px;
}

.all .slider-two .item {
  transition: all ease 0.25s;
  border-radius: calc(var(--card-raduis) * .5);
  overflow: hidden;
  border: solid 2px transparent;
  cursor: pointer;
  border-radius: 5px;
  -webkit-border-radius: calc(var(--card-raduis) * .5);
  -moz-border-radius: calc(var(--card-raduis) * .5);
  -ms-border-radius: calc(var(--card-raduis) * .5);
  -o-border-radius: calc(var(--card-raduis) * .5);
}

.all .slider-two .item.active {
  border: solid 1px var(--secondary);
  padding: 0.5rem;
}

.all .slider-two .owl-stage {
  padding: 15px 0 30px;
}

.all .slider-two .left-t:hover {
  background-color: var(--secondary);
}

.all .slider-two .left-t {
  right: calc(100% + 40px);
}

.all .slider-two .left-t.nonl-t {
  right: calc(100% - 60px);
  opacity: 0;
  visibility: hidden;
}

.all .slider-two .right-t,
.all .slider-two .left-t {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: 50px;
  right: -40px;
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.25s;
  width: 35px;
  height: 35px;
  background-color: #2b2b2b;
  border-radius: 100%;
  line-height: 35px;
  color: #fff;
  line-height: 0;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.all .slider-two .right-t:hover {
  background-color: var(--secondary);
}

.all .slider-two .right-t.nonr-t {
  right: -40px;
  opacity: 0;
  visibility: hidden;
}

.all .slider .item-box img {
  width: 100%;
  height: 100%;
  aspect-ratio: 12 / 7;
  object-fit: cover;
}

.all .slider-two .item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.all .slider-two .right-t i,
.all .slider-two .left-t i {
  font-size: 20px;
  text-align: center;
  vertical-align: sub;
}

.card.estate-type {
  background: #D6E6FF;
}

.view-estate.card.estate-type {
  background: #FFE1AA;
}
.auction-note{
  background: var(--secondary);
  margin: 0.75rem;
  margin-inline-start: -1.35rem;
  padding: .5rem 1rem;
  width: fit-content;
}
.card.estate-history{ 
  background: #FAFAFA;
}

.estates .card.estate-history th{
  color: var(--main);
}
.estates .card.estate-history td{
  color: #000;
}
.progress, .progress-stacked {
  --bs-progress-bar-bg: var(--main) !important;
  background-color: var(--white) !important;
}
.card.card-note{ 
  border-inline-start: 6px solid var(--main) !important;
}
.estate-feature{
  color: #676767;
  margin-bottom: 14px;
}

.estate-feature i{
  text-align: center;
  font-size: 20px;
  width: 40px;
}

.estates th,
.estates td,
.card.auction .td{
  padding: 1.25rem 1rem !important;
  background: transparent;
  color: #535353;
}

.estates tbody tr:last-child th,
.estates tbody tr:last-child td{
  border: 0;
}

.card.owner{
  background: #F9D24A;
}
.card.agent{
  background: #1C1C1C;
  color: #fff;
}
.card.any{
  background: #0e620378;
  color: #fff;
}
.estates .card.agent th, .estates .card.agent td {
  padding: 1.25rem 1rem !important;
  background: transparent;
  color: #dddddd;
}
.card.co-owner{
  background: #BDC3C7 ;
}
.card.other{
  background: #D2B48C ;
}
.qr-screens img{
  width: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  scale: 1 !important;
}

/* .estates th {
  color: var(--main);
} */

/* -- about section -- */
.about-txt p {
  color: #6B6B6B;
  font-size: 18px;
}

.about-us .who-images {
  width: 94%;
  margin-inline-start: auto;
}

.about-us img {
  /*aspect-ratio: 11/8;*/
  border-radius: 20px;
  object-fit: cover;
}

.about-us .who-images>img {
  margin-bottom: 18%;
}

.about-us .float-img {
  background: var(--white);
  width: 75%;
  position: absolute;
  bottom: 0%;
  inset-inline-start: -8%;
  padding: 8px;
}
.beneficiary .beneficiary-name i{
  color: var(--secondary);
  font-size: 20px;
}
.beneficiary .beneficiary-name h5{
  color: var(--main);
}
.beneficiary .beneficiary-desc{
  color: #6B6B6B;
}

.pagination {
  gap: 6px;
  justify-content: end;
}
ul.pagination .page-link {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  font-size: .9375rem;
  line-height: 1.2;
  border-radius: .25rem;
  min-block-size: calc(1.250863rem + calc(1px* 2));
  min-inline-size: calc(1.250563rem + calc(1px* 2));
  -webkit-border-radius: .25rem;
  -moz-border-radius: .25rem;
  -ms-border-radius: .25rem;
  -o-border-radius: .25rem;
  box-shadow: unset !important;
  font-weight: 600;
  color: var(--main);
}
.current>.page-link,
.page-link.current {
  color: var(--white) !important;
  background-color: var(--main) !important;
  border-color: var(--main);
}

/* blog card */
.blogs .card {
  border-radius: calc(var(--card-raduis) * .75);
  -webkit-border-radius: calc(var(--card-raduis) * .75);
  -moz-border-radius: calc(var(--card-raduis) * .75);
  -ms-border-radius: calc(var(--card-raduis) * .75);
  -o-border-radius: calc(var(--card-raduis) * .75);
  border: none;
  background-color: #F9F9F9;
}

.blogs .card .blog-img {
  border-radius: var(--card-raduis);
  -webkit-border-radius: var(--card-raduis);
  -moz-border-radius: var(--card-raduis);
  -ms-border-radius: var(--card-raduis);
  -o-border-radius: var(--card-raduis);
  overflow: hidden;
}

.blogs .card .card-img-top {
  aspect-ratio: 11/7;
  object-fit: cover;
}
.blogs .card.blog-details .card-img-top {
  aspect-ratio: 16 / 7;
  object-fit: cover;
}
.blogs .card .blog-date {
  color: #646464;
}

.blogs .blog-description.cut-text {
  -webkit-line-clamp: 2;
}


/* -- footer -- */
.footer-info img{
  width: 78%;
}
.footer-info p{
  color: #6B6B6B;
  font-size: 1.02rem;
  margin-top: 1rem;
  line-height: 1.8;
}
footer ul li {
  margin: 18px 0;
}

footer ul li a {
  /* font-size: 18px !important; */
  /* font-weight: 500; */
  color: #6B6B6B;
}

footer li a:hover {
  color: var(--main);
}

footer ul li a.active {
  color: var(--main);
  font-weight: 600;
}

/* google map */
#map {
  width: 100%;
  height: 170px;
}

#map iframe {
  width: 100%;
  height: 100%;
}

footer h4 {
  color: var(--secondary);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 1.65rem;
}

footer .sub-footer {
  padding: .75rem 0;
  font-size: 16px;
}

footer .sub-footer img {
  width: 130px;
  object-fit: scale-down;
}

footer .sub-footer span {
  color: rgb(var(--mainOp), .85);
}

/* -- contactUs page -- */
.contactUs .contact-data {
  background: var(--secondary);
  border-radius: var(--card-raduis);
  -webkit-border-radius: var(--card-raduis);
  -moz-border-radius: var(--card-raduis);
  -ms-border-radius: var(--card-raduis);
  -o-border-radius: var(--card-raduis);
  padding: 2.85rem 3.6rem;
}

.contactUs .contact-data .contact-info a {
  color: white !important;
}

.contactUs .contact-data .contact-info ul li {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contactUs .contact-data .contact-info ul li i {
  font-size: 28px;
  color: var(--white);
}

.contactUs .contact-data .social {
  display: flex;
  justify-content: space-between;
}

.contactUs .contact-data .social i {
  width: 100%;
  aspect-ratio: 1/1;
  height: unset;
  background-color: var(--white);
  font-size: 22px;
  color: var(--secondary);
}

.contactUs .contact-data .social div a {
  color: var(--main);
  font-size: 18px;
}

/* form */
.contactUs .contact-form {
  border-radius: var(--card-raduis);
  background-color: #fcfcfc;
  -webkit-border-radius: var(--card-raduis);
  -moz-border-radius: var(--card-raduis);
  -ms-border-radius: var(--card-raduis);
  -o-border-radius: var(--card-raduis);
}

#contact_map {
  height: 450px;
  border-radius: var(--card-raduis);
  -webkit-border-radius: var(--card-raduis);
  -moz-border-radius: var(--card-raduis);
  -ms-border-radius: var(--card-raduis);
  -o-border-radius: var(--card-raduis);
  overflow: hidden;
}

#contact_map iframe {
  width: 100%;
  height: 100%;
}

/* login */
.login{
  height: 100vh;
  overflow: hidden;
}
.login *:not(.nice-select *){
  max-height: 100%;
}

.main-section{
  height: 100vh;

}
.main-section .sticky-side {
  display: inline-block;
  position: sticky;
  top: 0px;
  height: fit-content;
  overflow: auto;
}

.main-section .sticky-side::-webkit-scrollbar{
  width: 0;
}

.main-section .main-side {
  display: inline-block;
  vertical-align: top;
  height: fit-content;
}

.login-logo img{
  width: 200px;
}
.login-img img{
  height: 100vh;
  object-fit: cover;
}

label{
  color: #4B4B4B;
  font-weight: 500;
  margin-bottom: .5rem;
}

#verification-input {
  direction: ltr;
  margin: 1.5rem 0;
  margin-inline-start: auto;
  display: flex;
  justify-content: end;
}

#verification-input>input {
  width: 19%;
  height: 65px;
  padding: 10px;
  text-align: center;
  margin: 0 6px;
  font-size: 28px;
  background: #fafafa;
  border: 1px solid #e9e9e9;
  background: #FCFCFC 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #0000001C;
  border-radius: 8px;
  color: var(--secondary);
}

#verification-input input:focus {
  border-color: var(--secondary) !important;
  background: #FCFCFC 0% 0% no-repeat padding-box;
}

/* -- profile page -- */
.profile-wrapper{
  background: #FAFAFA;
  border-radius: var(--card-raduis);
  -webkit-border-radius: var(--card-raduis);
  -moz-border-radius: var(--card-raduis);
  -ms-border-radius: var(--card-raduis);
  -o-border-radius: var(--card-raduis);
  padding: 2rem;
}

.profile-wrapper .form-control{
  background: transparent;
}

.profile .personal-title {
  display: none;
}

.profile .log-out {
  color: #FF0000;
}

.profile .log-out {
  border-radius: 0px 0px 20px 20px;
  border: none;
}

.profile .profile-nav .nav .nav-link {
  background-color: #F3F3F3;
  color: #7F7F7F;
  padding: .85rem 1.2rem;
  text-align: center;
  margin: 10px 0px;
  border-radius: 70px;
  -webkit-border-radius: 70px;
  -moz-border-radius: 70px;
  -ms-border-radius: 70px;
  -o-border-radius: 70px;
}

/*.profile-nav-sm {*/
/*  display: flex;*/
/*  width: 100%;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*  color: var(--white);*/
/*  background-color: var(--secondary);*/
/*  padding: 1rem;*/
/*  margin-bottom: 1.5rem;*/
/*}*/

/*.profile-nav-sm img {*/
/*  width: 25px;*/
/*}*/

/* active link */
.profile .profile-nav .nav .nav-link.active {
  position: relative;
  color: var(--white);
  font-weight: bold;
  background-color: var(--secondary);
}


.profile .nav .nav-link.active i {
  color: var(--main);
}

/* profile data col */
.profile .profile-data .profile-pic-icon {
  position: absolute;
  top: 0%;
  bottom: 0%;
  right: 0%;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  background-color: rgba(var(--mainOp), .5);
  color: var(--white);
  font-size: xx-large;
  border-radius: 0.35rem;
  transition: 0.2s;
}

.profile .profile-data .profile-pic {
  width: 100px;
  overflow: hidden;
  height: 100px;
  border-radius: 50%;
}

.profile .profile-data .profile-pic img {
  object-fit: cover;
  height: 100%;
}

.profile .profile-data .profile-pic input {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
}

.profile .profile-data .profile-pic:hover .profile-pic-icon {
  opacity: 1;
}

.card.user-card{
  position: relative;
  /* background: #F9D24A; */
  border: 0;
  /* overflow: hidden; */
  margin: 1.5rem 1rem;
  border-radius: calc( var(--card-raduis) * .5);
  -webkit-border-radius: calc( var(--card-raduis) * .5);
  -moz-border-radius: calc( var(--card-raduis) * .5);
  -ms-border-radius: calc( var(--card-raduis) * .5);
  -o-border-radius: calc( var(--card-raduis) * .5);
}
.card.user-card::after{
  content: '';
  width: 100%;
  height: 4px;
  border-radius: 70px;
  background: #F9D24A;
  position: absolute;
  inset-inline-start: 0;
  bottom: -10px;
}
.card.user-card .card-header{
  /* background: #EEB620; */
  color: var(--white);
  padding: 1.5rem ;
  border: 0;
  border-radius: .5rem .5rem .65rem .65rem;
  -webkit-border-radius: .5rem .5rem .65rem .65rem;
  -moz-border-radius: .5rem .5rem .65rem .65rem;
  -ms-border-radius: .5rem .5rem .65rem .65rem;
  -o-border-radius: .5rem .5rem .65rem .65rem;
}
.card.user-card.any .card-header,
.card.user-card.any::after{
  background-color: #6a9365;
}
.card.user-card.co-owner .card-header,
.card.user-card.co-owner::after{
  background-color: #8d9295;
}
.card.user-card.other .card-header,
.card.user-card.other::after{
  background-color: #ab9272;
}
.card.user-card.agent .card-header,
.card.user-card.agent::after{
  background-color: #252525;
}
.card.user-card .user-img{
  text-align: center;
}
.card.user-card .accordion-button {
    background-color: inherit;
    padding-inline-end: 0;
    padding-inline-start: 2rem;
    padding-inline-end: 0;
}
.card.user-card .accordion-button::after {
    inset-inline-start: -0.5rem;
}
.card.user-card.agent .accordion-button,
.card.user-card.any .accordion-button {
    color: var(--white) !important;
}

.card.user-card .user-img img,
.card.user-card .user-img svg{
  width: 110px !important;
  height: 110px;
  padding: 6px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 2px #00000047;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.estate-controls{
  border-top: 1px solid #8b8b8b;
  padding-top: .65rem;
  margin-top: .5rem;
}

.estate-controls i{
  color: var(--secondary);
}

.winner-info {
    margin-top: 10px;
    padding: 10px;
    background-color: #d4edda;
    /* أخضر فاتح */
    color: #155724;
    /* أخضر غامق للنص */
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    max-width: 300px;
}

.tree{
    margin-inline-start: -18px;
}
.tree ul {
    position: relative;
}

.tree ul::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 40px;
    border-left: 1px solid #ccc;
    height: 100%;
}
.tree ul:has(>.node-box.winner)::before,
.tree ul:first-child > li:first-child::after{
    content: unset;
}

.tree li {
    margin-top: 10px;
    margin-inline-start: 18px;
    position: relative;
}

.tree li::after {
    content: '';
    position: absolute;
    top: 18px;
    inset-inline-start: -10px;
    border-top: 1px solid #ccc;
    height: 1px;
    width: 100%;
}

.tree li::before {
    left: 0;
    border-right: 1px solid #ccc;
}


.tree li:only-child {
    padding-top: 0;
}
.tree > ul > li:first-child{
    margin-top: 0;
}

.tree li:first-child::before{
    border: 0 none;
}

.tree li:last-child::before {
    border-right: 1px solid #ccc;
    border-radius: 0 5px 0 0;
}

.node-box {
    padding: 6px 11px;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
}
.node-box.winner{
    margin-block: 10px;
    margin-inline-start: -15px;
    position: relative;
    background: var(--secondary);
    color: var(--white);
}
.node-box.winner .node-level {
    background: var(--white);
    color: var(--secondary);
}
.node-level {
    background: var(--secondary);
    color: var(--white);
    width: 24px;
    height: 24px;
    display: flex;
    line-height: normal;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tree li .node-box + ul {
    margin-inline-start: 14px; 
}

            
.blue-btn{
  border-radius: 8px;
  width: max-content;
  padding: 8px 40px;
  display: block;
  transition: all 0.3s ease-out;
  background: var(--main) !important;
  border-color: var(--main);
  color: var(--white) !important;
  margin-top: .5rem;
  width: 180px;
  text-align: center;
}
.del-aqaar{
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    border-radius: 20px 0 20px 0;
    padding: 8px 20px;
}
.btn-check[type=checkbox] + label,
.btn-check[type=radio] + label{
  width: max-content;
  border: 1px solid #DFDFDF !important;
  border-radius: 30px;
  color: #919191;
  padding: .4rem 2rem;
  font-weight: 500;
  margin: .3rem;
  margin-right: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.builder-option .btn-check[type=radio] + label img{
  width: 20px;
  filter: brightness(0) invert(.65);
}
.builder-option .btn-check[type=radio]:checked + label,
.builder-option .btn-check[type=checkbox]:checked + label{
  border-color: var(--secondary) !important;
  background-color: #FFECC9 !important;
  color: var(--secondary) !important;
  box-shadow: none;
}

.builder-option .btn-check[type=radio]:checked + label img{
  filter: none;
}
.builder-option{
  margin: .5rem 0 1.5rem 0;
}

.section-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #EEEEEE;
}
.section-img img {
  width: 26px;
}
.builder-option .builder-option-name{
  display: flex;
  align-items: center;
  margin-bottom: .75rem;
}
.builder-option .builder-option-name h5{
  font-weight: bold;
  color: var(--main);
}
.builder-option .builder-option-name svg{
  color: #919191;
  background-color: #EEEEEE;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 12px;
  margin-left: 12px;
  border-radius: 50%;
}
.builder-option-name+p{
  padding-right: 2.7rem;
}

.builder-option .nice-select,.builder-option .form-control {
  border: 1px solid #DFDFDF;
  background-color: transparent;
  float: none;
  border-radius: 11px;
  color: var(--mid-dark);
  margin: .5rem 0;
}
.builder-option .form-control {
  display: block;
}
.builder-option .form-switch {
  width: fit-content !important;
  margin: 0;
}

.installment-avilable{
  display: none;
}

.btn-outline-success:hover, .btn-success {
  color: #fff !important;
  background-color: #4CAF50;
  border-color: #4CAF50;
}
.btn-outline-info:hover, .btn-info {
  color: #fff !important;
  background-color: #2196F3;
  border-color: #2196F3;
}
#addedPhone, #videos-link, #videos-link2, #videos-link3, #videos-link4,
#addVideo2,#addVideo3,#addVideo4
{
  display: none;
}
#addPhone input{
  color: var(--main);
}
#delPhone input{
  color: rgb(245, 34, 45);
}
.upload-wrapper {
  border: 1px dashed var(--main);
  border-radius: 6px;
  font-size: 14px;
  padding: 24px;
  margin-top: .65rem;
}
.fa-youtube{
  color: rgb(245, 34, 45);
  line-height: 0;
}
.upload-wrapper .btn{
  line-height: 2;
}
.video-link button {
  background-color: transparent;
  display: flex;
  align-items: center;
  --btn-content-color: #f5222d;
  color: var(--btn-content-color);
}

.upload__inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.upload__btn {
  display: block;
  color: #fff !important;
  text-align: center;
  min-width: 120px;
  padding: 5px 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid;
  background-color: var(--secondary);
  border-color: var(--secondary);
  border-radius:4px;
  font-size: 17px;
}
.img-bg {
  position: relative;
}
.upload__img-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  text-align: center;
  line-height: 24px;
  z-index: 1;
  cursor: pointer;
}
.upload__img-close:after {
  content: '\2716';
  font-size: 14px;
  color: white;
}
.upload__btn-box .builder-option-name i{
  color: var(--secondary);
  background: rgba(var(--secondaryOp), .19);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.upload__btn-box {
  margin-bottom: 10px;
}
.upload__btn-box ul li{
  position: relative;
  font-size: large;
  margin-bottom: 1rem;
}
.upload__btn-box ul li::before{
  content: '\f058';
  font-family: "Font Awesome 5 free";
  color: #fff;
  font-size: larger;
  background-color: var(--secondary);
  border-radius: 50%;
}

.upload__img-wrap{
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: .75rem;
}
.upload__img-wrap img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}



.private-link{
  background: var(--main);
  color: var(--white);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: .75rem;
  margin: 1.5rem auto !important;
  /* display: flex; */
}
.copy-text {
  position: relative;
  display: flex;
  justify-content: space-between
}

.copy-text input.text {
  padding: 0 10px;
  font-size: 12px;
  border: none;
  background: transparent;
  color: var(--white);
  outline: 0;
  width: 100%;
}

.copy-text button {
  color: #fff;
  font-size: 18px;
  background: transparent;
  padding: 0 10px;
  border: none;
  outline: 0;
  border-radius: 10px;
  cursor: pointer
}

.copy-text button:before {
  content: "تم النسخ";
  position: absolute;
  top: -38px;
  inset-inline-end: 0px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  z-index: 2;
  display: none
}

.copy-text button:after {
  content: "";
  position: absolute;
  top: -12px;
  inset-inline-end: 52px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  display: none;
  z-index: 1
}
.copy-text.active button:after,
.copy-text.active button:before{
   display: block;
}

.copy-text button:after,
.copy-text button:before {
   background: var(--main);
}

.bootstrap-tagsinput{
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0.5rem 0.75rem;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    transition: 0.15s ease-in-out;
    box-shadow: none !important;
    border: 1px solid #DFDFDF;
    background-color: transparent;
    float: none;
    border-radius: 11px;
    margin: .5rem 0;
}

.bootstrap-tagsinput .tag {
    margin-right: 2px;
    color: white;
    background: var(--secondary);
    padding: 0 6px;
    border-radius: 4px;
}

/* -- media -- */
@media (max-width: 1024px) and (min-width: 991.8px) {
  /* .hero-content {
    width: 60%;
  }

  .hero-content p {
    width: 74%;
  } */
}

@media (max-width: 991.8px) {
  :root {
    --gutter-x: 4rem;
  }

  /* navbar */
  .navbar-brand {
    order: 1;
  }

  .navbar-toggler {
    order: 2;
  }

  .navbar-collapse {
    order: 3;
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
  }

  .navbar-collapse.show .navbar-nav {
    width: max-content !important;
    margin: unset;
  }

  .navbar-collapse.show .navbar-nav .nav-item {
    margin-block: 8px;
  }
  .discover-content {
    padding: 3rem;
  }


  /* profile */
  .profile .profile-data .my-aqars .card {
    flex-direction: column;
  }

  .profile .profile-data .my-aqars .card .card-img {
    width: 100%;
  }

  .profile .profile-data .my-aqars .card .card-img .card-img-top {
    height: 200px;
  }

  .profile .profile-data .my-aqars .card .card-body p.secondary+div {
    padding: 1rem 0rem;
  }

  .profile .profile-data .my-aqars .card .delete {
    padding: 0.5rem;
  }

  /* footer */
  .footer-links .img-fluid {
    max-width: 288px;
    margin: auto;
  }

  #map {
    width: 100%;
    height: 180px;
  }

  .center,
  .outerCircle {
    display: none;
  }
}

@media (max-width: 991.8px) and (min-width: 767.8px) {
  footer .footer-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  footer .footer-images a {
    width: 42%;
  }

  .footer-links .img-fluid {
    margin: unset;
  }
}

@media (max-width: 576px) {
  :root {
    --gutter-x: 1.5rem;
  }
  .top-nav .helper-pages {
    gap: 8px;
  }
  .top-nav li:not(:last-child) a::after {
    width: 4px;
    height: 16px;
}
  .top-nav a {
    font-size: .8rem;
    gap: 1.5px;
  }
  .navbar .navbar-brand img {
    width: 160px !important;
  }

  .heroSec {
    height: unset;
  }

  .heroSec .search-box {
    max-width: 85%;
    padding: .35rem;
  }
  .search-box button {
    padding: 6px 14px !important;
  }
  .discover-content {
    padding: 2rem 1.5rem;
  }

  .hero-content {
    width: 100%;
  }

  .toggle-profile-nav,
  .toggle-side-menu-classification {
    display: block;
  }
  .profile-nav .profile-wrapper {
    /*background: transparent;*/
    margin-bottom: 20px;
  }
  .profile .log-out {
    border-radius: 20px 20px;
    border: 1px solid #FF0000;
    color: #FF0000;
 }

  body:has(.filter.show) #filter {
    transform: translate(var(--menu-offset));
    -webkit-transform: translate(var(--menu-offset));
    -moz-transform: translate(var(--menu-offset));
    -ms-transform: translate(var(--menu-offset));
    -o-transform: translate(var(--menu-offset));
  }

  /*.profile-nav*/
  /*.filter {*/
  /*  position: fixed;*/
  /*  top: 0;*/
  /*  inset-inline-start: calc(var(--menu-offset) * -1);*/
  /*  width: var(--menu-offset);*/
  /*  height: 100vh;*/
  /*  background: var(--main);*/
  /*  z-index: 88;*/
  /*  padding: 10px 16px;*/
  /*  border-radius: 0;*/
  /*  transition: all 0.3s;*/
  /*  -webkit-border-radius: 0;*/
  /*  -moz-border-radius: 0;*/
  /*  -ms-border-radius: 0;*/
  /*  -o-border-radius: 0;*/
  /*}*/
  .filter {
    width: 95%;
    margin: auto;
  }

  .filter.show,
  .profile-nav.show {
    inset-inline-start: 0;
  }

  .heroSec .build-options {
    gap: 16px;
    align-items: flex-start;
  }


  .close-profile-nav,
  .close-filter {
    width: 26px;
    height: 26px;
    color: var(--white);
    display: flex;
    opacity: 1;
    background-color: var(--secondary);
    box-shadow: 0px 3px 6px rgba(var(--blackOp), 0.29);
    align-items: center;
    justify-content: center;
    z-index: 9;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }

    
  /*.filter .form-check label */
  .filter ::placeholder{
    color: var(--white);
  }

  #filter {
    display: block;
  }


  .profile .personal-title {
    background-color: transparent;
    color: var(--white);
    margin: 0px 0px 24px 0px;
    border-radius: 0;
    padding: 0 !important;
    font-weight: bold;
  }

  .profile .nav .nav-link,
  .profile .nav .nav-link i {
    background: transparent;
    color: var(--white);
  }

  .profile .nav .nav-link.active {
    color: var(--secondary);
    background-color: rgba(var(--secondaryOp), .1);
  }

  .profile .nav .nav-link.active i {
    color: var(--secondary);
  }

  /* home blogs */
  .blogs .blog-grid .card {
    grid-column: span 12;
  }

  /* footer */
  .footer-links .img-fluid {
    max-width: 238px;
    margin: auto;
  }

  #map {
    width: 100%;
    height: 180px;
  }

  footer .sub-footer span {
    font-size: 14px;
  }

  footer .sub-footer img {
    width: 110px;
  }

  /* estate images */
  .estates .gallery .gallery-container .img:nth-child(-n + 5) {
    grid-column: span 4;
  }

  .estates .gallery .gallery-container .img:nth-child(2) {
    grid-column: span 8;
  }
  .upload__img-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  footer .footer-images a {
    display: block;
    width: 238px;
  }

  .estate-controls{
    font-size: 13px;
  }
  .estate-controls+.btn-toolbar .blue-btn{
    font-size: .95rem;
  }
  .estates th, .estates td {
    padding: 1.25rem .25rem !important;
    font-size: 14px;
  }
  .card.auction .card-title{
         font-size: 18px; 
  }
  .card.auction .td{
    padding: .5rem 0rem !important;
  }
    .profile-data .profile-wrapper {
        padding: .25rem 1rem;
    }
    .card.user-card {
        margin: 1.5rem 0rem;
    }
    .card.user-card .card-header {
        padding: .85rem;
    }
    .card.user-card .accordion-button {
        padding-inline-start: 1.85rem;
        font-size: 14px !important;
    }
    .card.user-card .accordion-button::after {
        width: 26px;
        height: 26px;
        inset-inline-start: -0.25rem;
    }
    .user-card .row {
        text-align: center;
    }
    .user-card .qr{
        order: 1;
    }
    .nice-select.open .list {
        max-height: 200px;
        overflow: auto;
    }
}

@media (min-width: 767.8px) {
}
  .profile-nav-sm {
    display: none;
  }