/********** Template CSS **********/
/*@font-face {*/
/*    font-family: 'BYekan';*/
/*    !*font-family: 'BYekan';*!*/
/*    !*src: url('../fonts/BYekan.ttf') format('truetype');*!*/
/*    src: url('../fonts/BYekan.ttf') format('truetype');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*}*/

@font-face {
    font-family: 'BYekan';
    src: url('../fonts/BYekan.ttf') format('truetype');
    /*src: url('../fonts/BYekan.eot?#iefix') format('embedded-opentype'),*/
    /*url('../fonts/BYekan.woff') format('woff'),*/
    /*src: url('../fonts/BYekan.eot?#iefix') format('embedded-opentype');*/
    /*url('../fonts/BYekan.svg#BYekan') format('svg');*/
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'BYekan', sans-serif;
    font-size: 10pt;
    /* background:; */
    position: relative;
    font-weight: normal;
    direction: rtl;
}

.text-title {
    font-family: 'BYekan', sans-serif;
    font-size: 22pt;
    /* background:; */
    position: relative;
    font-weight: normal;
    direction: rtl;
}

:root {
    --primary: #00B98E;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #243971;
    --dark-2: rgb(36, 57, 112);
    --gray: #666565;
    --border: #80dcc7;
}
/*** --dark: #0E2E50; ***/

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
/*#spinner {*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transition: opacity .5s ease-out, visibility 0s linear .5s;*/
/*    z-index: 99999;*/
/*}*/

/*#spinner.show {*/
/*    transition: opacity .5s ease-out, visibility 0s linear 0s;*/
/*    visibility: visible;*/
/*    opacity: 1;*/
/*}*/

.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6); /* پس‌زمینه با شفافیت */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* تا لودینگ بالاتر از سایر اجزا باشد */
}

.hidden {
    display: none;
}



/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 10px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "BYekan", sans-serif;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 18px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        right: 25px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    right: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "BYekan", sans-serif;
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    font-family: 'BYekan', sans-serif;
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    font-family: 'BYekan', sans-serif;
    font-size: 15px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:first-child {
    font-family: 'BYekan', sans-serif;
    font-size: 15px;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.text_btn a {
    color: var(--light);
}

.text_btn a:hover {
    color: var(--primary);
}


/*menu buttons */


.button-row {
     position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    /*gap: 10px;*/
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    flex-direction: row;
}

.menu-btn .btn {
     font-family: 'BYekan', sans-serif;
    color: var(--dark);
    padding: 10px 15px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    flex-direction: column; /* Arrange icon on top and text below */
    align-items: center;
    font-size: 12px;
}

.menu-btn .btn:hover,
.menu-btn .btn.active{
    background: var(--primary);
    color: var(--light);
}

/* top layout */

.top-row {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    /*gap: 10px;*/
    background-color: white;
    padding: 5px;
    border-radius: 10px;
    direction: ltr;
    flex-direction: row;
    height: 60px;
}

.top-row .container-fluid{
    /*left: 10px;*/
    /*right: 10px;*/
    /*width: 100%;*/
    justify-items: normal;
    display: flex;
    justify-content: space-between;
    direction: rtl;
    flex-direction: row;

}




/*.top-row .txt {*/
/*    font-family: 'BYekan', sans-serif;*/
/*    color: var(--dark);*/
/*    padding: 10px 10px;*/
/*    text-decoration: none;*/
/*    border: var(--primary);*/
/*    border-radius: 5px;*/
/*    background-color: transparent;*/
/*    transition: background-color 0.3s, color 0.3s;*/
/*    !*display: flex;*!*/
/*    flex-direction: row;*/
/*    align-items: center;*/
/*    font-size: 12px;*/
/*    width: auto;*/
/*    height: auto;*/
/*    margin-left: 5px;*/
/*    margin-right: 5px;*/
/*}*/


/*.top-row .container-fluid .section{*/
/*    width: 20%;*/
/*    padding: 5px;*/
/*}*/
.top-row .container-fluid .section .left-section{
    order: 4;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    justify-items: center;
    width: 20%;
    padding: 5px;
    vertical-align: center;
}

.top-row .left-section .btn{
    background-color: var(--primary);
    font-family: 'BYekan', sans-serif;
    padding: 5px 5px;
    text-decoration: none;
    border: var(--primary);
    border-radius: 5px;

    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    align-items: normal;
    font-size: 12px;
    width: auto;
    height: auto;
    margin-left: 5px;
    margin-right: 5px;
     flex-direction: row;
}
.top-row .container-fluid .section .center-section{
    order: 3;
    text-align: center;
    flex-direction: row;
    display: flex;
      width: 75%;
    padding: 5px;
    vertical-align: center;
}

.top-row .center-section .btn{
    font-family: 'BYekan', sans-serif;
    color: var(--dark);
    padding: 10px 15px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    flex-direction: row; /* Arrange icon on top and text below */
    align-items: center;
    font-size: 12px;
}

.top-row .center-section  .btn:hover,
.top-row .center-section  .btn.active{
    background: var(--primary);
    color: var(--light);
}

.top-row .container-fluid .section .right-section-1{
    order: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    width: 1%;
    padding: 5px;
}
.top-row .container-fluid .section .right-section-2{
    order: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    vertical-align: center;
    width: 4%;
    /*padding: 5px;*/
}

/**/
.display-7{
    font-family: "BYekan", sans-serif;
}

.titr-about , .fw-bold , .text_of_faq, .text_of_help , .text_of_profile_item{
    font-family: "BYekan", sans-serif;
}

/*** error_field of form ***/

.form-group .error_field {
    color: red; /* Set the color of error_field messages to red */
}

/*** avatar image in profile ***/
/*.center {*/

/*        display: flex;*/
/*        justify-content: center;*/
/*        align-items: normal;*/

/*}*/


.footer_background{
    background-color: var(--dark);
}

.select-option {
    width: fit-content;
    margin-right: 5px;
}



.btn-check:checked+.btn-outline-primary, .btn-check:active+.btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
    color: #f7f5f5;
    background-color: var(--primary);
    border-color: var(--primary);
}


/*** for select multi image  ***/

/* Styling for the image display container on the left */
.image-display-container {
    float: none;
    width: 100%;
    /*border: 1px dashed #ccc;*/
    /*margin: 10px;*/
    padding: 10px;
    /*height: 1035px;  !* ارتفاع کادر تصاویر موقع ایجاد آگهی جدید *!*/
    overflow-y: auto;
}

/* Styling for the 50x50 image upload container */
.upload-box {
    width: 100px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed #ccc;
    position: relative;
    cursor: pointer;
}

.upload-box .plus-icon {
    font-size: 24px;
    color: #999;
    text-align: center;
}

/* Hide file input */
input[type="file"] {
    display: none;
}

/* Styling for images shown on the left */
.image-display-container img {
    width: 100%;
    /*margin-bottom: 20px;*/
}

/* change direction column */

@media (max-width: 768px) {
  #change-direction {
    flex-direction: column;
  }
  #change-direction .left-column {
    order: 2;
  }
  #change-direction .right-column {
    order: 1;
  }
}

/* tables */

div.table-title {
  display: block;
  margin: auto;
  /*max-width: 600px;*/
  padding:5px;
  width: 100%;
}


/*** Table Styles **/

.table-fill {
  background: white;
  border-radius:3px;
  border-collapse: collapse;
  /*height: 320px;*/
  margin: auto;
  /*max-width: 600px;*/
  padding:5px;
  width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  animation: float 5s infinite;
}

th {
  color:var(--light);
  background:var(--dark);
  border-bottom:4px solid #9ea7af;
  border-right: 1px solid #343a45;
  font-size:14px;
  font-weight: 100;
  padding:5px;
  text-align:center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  vertical-align:middle;
  horiz-align: center;
  width: 100px;
}

#top-table th{
    width: 200px;
}


th:first-child {
  border-top-left-radius:3px;
}

th:last-child {
  border-top-right-radius:3px;
  border-right:none;
}

tr {
  border-top: 1px solid #C1C3D1;
  border-bottom: 1px solid #C1C3D1;
  /*color:#666B85;*/
  font-size:14px;
  font-weight:normal;
  text-shadow: 0 1px 1px rgba(256, 256, 256, 0.1);
}

tr:hover td {
  background:var(--primary);
  color:#FFFFFF;
  border-top: 1px solid #22262e;
}

tr:first-child {
  border-top:none;
}

tr:last-child {
  border-bottom:none;
}

tr:nth-child(odd) td {
  background:var(--light);
}

tr:nth-child(odd):hover td {
  background:var(--primary);
     font-size:20px;
}

tr:last-child td:first-child {
  border-bottom-left-radius:3px;
}

tr:last-child td:last-child {
  border-bottom-right-radius:3px;
}

td {
  background:#FFFFFF;
  padding:20px;
  text-align:right;
  vertical-align:middle;
  font-weight:300;
  font-size:14px;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
  border-right: 1px solid #C1C3D1;
  width: 800px;
}

#top-table td{
    text-align:center;
}

#down-table td{
    width: 800px;
}

/*** btn of image list in sent file Styles **/

.image-preview button {
    margin-bottom: 40px;
    color: var(--light);
    background-color: var(--primary);
    width: 100%;
    border-color: var(--primary);
    text-align: center;
    display: block;
    margin-top: 2px;
}

/*** message box alert Styles **/

.alert-container {
    position: fixed;
    bottom: 10px;
    width: 100%;
    z-index: 1050;
}

.alert {
    margin-bottom: 0
}






/*.slider-container {*/
/*    position: relative;*/
/*    height: 5px;*/
/*    width: 100%;*/
/*    background: linear-gradient(to right, rgb(245, 243, 255) 0%, rgb(221, 214, 254) 17.8947%, rgb(147, 51, 234) 17.8947%, rgb(147, 51, 234) 69.1579%, rgb(221, 214, 254) 69.1579%, rgb(245, 243, 255) 100%);*/
/*    border-radius: 5px;*/
/*    margin: 20px 0;*/
/*}*/

/*.slider-thumb {*/
/*    position: absolute;*/
/*    z-index: 1;*/
/*    height: 14px;*/
/*    width: 14px;*/
/*    background-color: #fff;*/
/*    border: 2px solid var(--dark);*/
/*    border-radius: 50%;*/
/*    cursor: grab;*/
/*    top: -5px;*/
/*}*/

/*.slider-thumb:active {*/
/*    cursor: grabbing;*/
/*}*/

.noUi-target,
.noUi-base,
.noUi-origin {
    height: 7px !important; /* تنظیم ارتفاع اسلایدر */
    width: 100%; /* تنظیم عرض دستگیره‌ها */
}

.noUi-horizontal {
    height: 7px !important; /* تنظیم ارتفاع اسلایدر در حالت افقی */
}

.noUi-handle {
    height: 100% !important;
    background-color: var(--dark) !important;
}

.noUi-connect {
    background: var(--primary) !important;

}

.slider-container {
    padding-left: 40px;
    padding-right: 40px;
}

.value-container {
    display: flex;
    justify-content: space-between;

}
.toggle-container {
    display: flex;
    justify-content: center;
    /*margin: 3px 3px;*/
}
.toggle-button {
    padding: 4px;
    cursor: pointer;
    border: 1px solid #ccc;
    background-color: #fff;
    margin: 0 5px;
    border-radius: 5px;
}
.toggle-button.active {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}





 /*  for slider  */

/*.viewed {*/
/*    padding-top: 51px;*/
/*    padding-bottom: 60px;*/
/*    background: var(--light);*/
/*}*/
/*.bbb_viewed_title_container {*/
/*    border-bottom: solid 1px #dadada;*/
/*}*/
/*.bbb_viewed_title {*/
/*    margin-bottom: 14px;*/
/*}*/
/*.bbb_viewed_nav_container {*/
/*    position: absolute;*/
/*    right: -5px;*/
/*    bottom: 14px;*/
/*}*/
/*.bbb_viewed_nav {*/
/*    display: inline-block;*/
/*    cursor: pointer;*/
/*}*/
/*.bbb_viewed_nav i {*/
/*    color: #dadada;*/
/*    font-size: 18px;*/
/*    padding: 5px;*/
/*    -webkit-transition: all 200ms ease;*/
/*    -moz-transition: all 200ms ease;*/
/*    -ms-transition: all 200ms ease;*/
/*    -o-transition: all 200ms ease;*/
/*    transition: all 200ms ease;*/
/*}*/
/*.bbb_viewed_nav:hover i {*/
/*    color: #606264;*/
/*}*/
/*.bbb_viewed_prev {*/
/*    margin-right: 15px;*/
/*}*/
/*.bbb_viewed_slider_container {*/
/*    padding-top: 50px;*/
/*}*/
/*.bbb_viewed_item {*/
/*    width: 100%;*/
/*    background: #FFFFFF;*/
/*    border-radius: 5px;*/
/*    padding: 10px;*/
/*    text-align: center;*/
/*}*/
/*.property-item {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/
/*.bbb_viewed_image {*/
/*    width: 150px;*/
/*    height: 150px;*/
/*    overflow: hidden;*/
/*    margin: 0 auto;*/
/*}*/
/*.bbb_viewed_image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/
/*.bbb_viewed_content {*/
/*    width: 100%;*/
/*    margin-top: 15px;*/
/*}*/
/*.bbb_viewed_price {*/
/*    font-size: 16px;*/
/*    color: #000000;*/
/*    font-weight: 500;*/
/*}*/
/*.bbb_viewed_name {*/
/*    margin-top: 3px;*/
/*}*/
/*.bbb_viewed_name a {*/
/*    font-size: 14px;*/
/*    color: #000000;*/
/*    -webkit-transition: all 200ms ease;*/
/*    -moz-transition: all 200ms ease;*/
/*    -ms-transition: all 200ms ease;*/
/*    -o-transition: all 200ms ease;*/
/*    transition: all 200ms ease;*/
/*}*/
/*.bbb_viewed_name a:hover {*/
/*    color: #0e8ce4;*/
/*}*/

/*.property-item {*/
/*    height: 100%;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: space-between;*/
/*}*/
/*.property-item .position-relative {*/
/*    height: 250px;*/
/*    width: 100%;*/
/*    overflow: hidden;*/
/*}*/
/*.property-item .position-relative img {*/
/*    height: 100%;*/
/*    width: 100%;*/
/*    object-fit: cover;*/
/*}*/



.property-item {
    width: 330px;  /* عرض ثابت کارت‌ها */
    height: 500px; /* ارتفاع ثابت کارت‌ها */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(59, 191, 118, 0.45);
}
.property-item .position-relative {
    height: 250px;
    width: 100%;
    overflow: hidden;
}
.property-item .position-relative img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.slick-slide {
    margin: 15px;
}
.slick-prev, .slick-next {
    background-color: var(--dark) !important; /* تغییر رنگ */
    border: none;
    border-radius: 50%;
    color: var(--light) !important;
    padding: 10px;
    cursor: pointer;
}
.slick-prev:hover, .slick-next:hover {
    background-color: var(--primary) !important; /* تغییر رنگ */
    color: var(--dark-2) !important; /* تغییر رنگ هنگام هاور */
}
.slick-prev:before, .slick-next:before {
    font-family: 'FontAwesome';
    font-size: 20px;
    color: #fff;
}
.slick-prev:before {
    content: '\f053'; /* فلش به سمت چپ */
}
.slick-next:before {
    content: '\f054'; /* فلش به سمت راست */
}

.bg-purple {
        background-color: var(--dark-2);
}

hr .dashed-divider {
    border-top: 1px dashed var(--primary) !important;
    margin: 2rem 0;
}




@media (max-width: 767.98px) {
    .container-fluid-mobile {
        padding-left: 0;
        padding-right: 0;
    }
    .no-padding-mobile {
        padding: 0 !important;
        margin: 0 !important;
    }
}

/*.overlay {*/
/*        position: fixed;*/
/*        top: 0;*/
/*        left: 0;*/
/*        width: 100%;*/
/*        height: 100%;*/
/*        background: rgba(255, 255, 255, 0.8); !* نیمه شفاف *!*/
/*        display: none;*/
/*        justify-content: center;*/
/*        align-items: center;*/
/*        z-index: 9999;*/
/*}*/

