@charset "UTF-8";
/**

* Template Name: Bewin
* Description: Real Estate HTML Template
* Version: 1.1
* Author: Unicoder
* First Release: 5th May, 2025
* Last Update: 5th May, 2025
* Author URL: www.unicoderbd.com

**/

/*===============================================================================
****CSS TABLE ****

# Accordion
# Agent Block
# Banner Style
# Box Style
# Button Style
# Color Settings
# Compare
# Contact Page
# Custom Webfont
# Custom Scroll Bar
# Dashboard
# Default Style
# Footer Style
# Form Style
# Font Variations
# FunFact
# Google Map
# Header Style
# Hover Effect
# jSlider Style
# Listing Info
# Listing Filter
# List Style
# Modal Popup
# Modal Dialog Box
# Number Counter
# Owl Carousel
# Page Banner
# Pagination
# Photo Gallery
# Partner Logo
# Post Block
# Portfolio
# Preloader
# Pricing Plan
# Progesss Bar
# Property Block
# Responsive Code
# Shapres
# Single Property
# Sidebar Filter
# Sign In Page
# Single Post
# Tab Block Style
# Team Block
# Testimonial Block
# Timeline
# Video Play
# Widget Style

===============================================================================*/

/*===============================================================================
Preloader
==================================================================================*/
:root {
  --loader-width: 40px;
  --loader-height: 40px;
  --less-margin: -20px;
  --loader-color-primary: #27ae60;
  --loader-color-secondary: #eee;
  --line-width: 2px;
  --animation-duration: 2s;
}

.preloader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #0a0a0a;
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 500ms ease-in-out 0s;
  -moz-transition: all 500ms ease-in-out 0s;
  -webkit-transition: all 500ms ease-in-out 0s;
}

.preloader.hide {
  width: 300px;
  height: 300px;
  opacity: 0;
}

.preloader .loader {
  position: relative;
  border: var(--line-width) solid #282828;
  border-radius: 50%;
  border-top: var(--line-width) solid var(--uc-primary-color);
  width: var(--loader-width);
  height: var(--loader-height);
  -webkit-animation: spin var(--animation-duration) linear infinite;
  animation: spin var(--animation-duration) linear infinite;
  margin-top: var(--less-margin);
  margin-left: var(--less-margin);
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#page_wrapper {
  background-color: var(--uc-dark-color);
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

body.loaded #page_wrapper {
  opacity: 1;
  transition: all 500ms ease-in-out 500ms;
  -moz-transition: all 500ms ease-in-out 500ms;
  -webkit-transition: all 500ms ease-in-out 500ms;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*==========================================================
Font Variations
==========================================================*/

.font-primary {
  font-family: var(--uc-primary-font);
}

.font-secondary {
  font-family: var(--uc-secondary-font);
}

.font-text {
  font-family: var(--uc-text-font);
}

.font-accent {
  font-family: var(--uc-accent-font);
}

/*==========================================================
Color Settings
==========================================================*/
.down-line-white:before,
.bg-white {
  background-color: var(--uc-white-color) !important;
}

.down-line:before,
.bg-primary {
  background-color: var(--uc-primary-color) !important;
}

.down-line-secondary:before,
.bg-secondary {
  background-color: var(--uc-secondary-color) !important;
}

.bg-light {
  background-color: var(--uc-light-color) !important;
}

.bg-gray {
  background-color: var(--uc-gray-color) !important;
}

.down-line-dark:before,
.bg-dark {
  background-color: var(--uc-dark-color) !important;
}

.bg-footer {
  background-color: #202122;
}

.copyright {
  background-color: #111212;
}

.color-white {
  color: var(--uc-white-color) !important;
}

.hover-color-white:hover,
.nav-white .navbar-nav li a,
.nav-active-white .navbar-nav li.active > a,
.nav-white .user-panel a,
.nav-hover-white .navbar-nav li a:hover,
.list-color-white li,
.list-color-white li a {
  color: var(--uc-white-color);
}

.color-primary {
  color: var(--uc-primary-color) !important;
}

.hover-color-primary:hover,
.nav-primary .navbar-nav li a,
.nav-active-primary .navbar-nav li.active > a,
.nav-primary .user-panel a,
.nav-hover-primary .navbar-nav li a:hover,
.list-color-primary li,
.list-color-primary li a {
  color: var(--uc-primary-color);
}

.color-secondary {
  color: var(--uc-secondary-color) !important;
}

.hover-color-secondary:hover,
.nav-secondary .navbar-nav li a,
.nav-active-secondary .navbar-nav li.active > a,
.nav-secondary .user-panel a,
.nav-hover-secondary .navbar-nav li a:hover,
.list-color-secondary li,
.list-color-secondary li a {
  color: var(--uc-secondary-color);
}

.color-dark {
  color: var(--uc-dark-color) !important;
}

.hover-color-dark:hover,
.nav-dark .navbar-nav li a,
.nav-active-dark .navbar-nav li.active > a,
.nav-dark .user-panel a,
.nav-hover-dark .navbar-nav li a:hover,
.list-color-dark li,
.list-color-dark li a {
  color: var(--uc-dark-color);
}

.color-gray {
  color: var(--uc-text-gray-color) !important;
}

.hover-color-gray:hover,
.nav-gray .navbar-nav li a,
.nav-active-gray .navbar-nav li.active > a,
.nav-gray .user-panel a,
.nav-hover-gray .navbar-nav li a:hover,
.list-color-gray li,
.list-color-gray li a {
  color: var(--uc-text-gray-color);
}

.color-light {
  color: var(--uc-text-light-color) !important;
}

.hover-color-light:hover,
.nav-light .navbar-nav li a,
.nav-active-light .navbar-nav li.active > a,
.nav-light .user-panel a,
.nav-hover-light .navbar-nav li a:hover,
.list-color-light li,
.list-color-light li a {
  color: var(--uc-text-light-color);
}

.color-default {
  color: var(--uc-default-color) !important;
}

.hover-color-default:hover,
.nav-default .navbar-nav li a,
.nav-active-default .navbar-nav li.active > a,
.nav-default .user-panel a,
.nav-hover-default .navbar-nav li a:hover,
.list-color-default li,
.list-color-default li a {
  color: var(--uc-default-color);
}

.color-accent {
  color: var(--uc-accent-color) !important;
}

.hover-color-accent:hover,
.nav-accent .navbar-nav li a,
.nav-active-accent .navbar-nav li.active > a,
.nav-accent .user-panel a,
.nav-hover-accent .navbar-nav li a:hover,
.list-color-accent li,
.list-color-accent li a {
  color: var(--uc-accent-color);
}

.color-plan1 {
  color: var(--uc-text-color);
}

.color-plan2 {
  color: var(--uc-text-color2);
}

.color-plan3 {
  color: var(--uc-text-color3);
}

[class*="overlay-"] {
  position: relative;
}

[class*="overlay-"]::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.overlay-dark::after {
  background-color: rgba(var(--uc-dark-color-rgba), 0.5);
}

.overlay-secondary::after {
  background-color: rgba(var(--uc-secondary-color-rgba), 0.5);
}

[class*="overlay-"] .container,
[class*="overlay-"] .container-fluid {
  position: relative;
  z-index: 10;
}

.border {
  border-color: var(--uc-border-color) !important;
}

.border-top {
  border-color: var(--uc-border-color) !important;
}

.border-bottom {
  border-color: var(--uc-border-color) !important;
}

.border-start {
  border-color: var(--uc-border-color) !important;
}

.border-end {
  border-color: var(--uc-border-color) !important;
}

.border-color-primary {
  border-color: var(--uc-primary-color) !important;
}

/*===============================================================================
Default Style
==================================================================================*/
body {
  font-size: 15px;
  font-family: var(--uc-general-font);
  font-weight: 400;
  line-height: normal;
  color: var(--uc-default-color);
}

img {
  max-width: 100%;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.fancybox-image,
.fancybox-spaceball {
  filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

li {
  line-height: 25px;
  list-style-type: disc;
  margin-top: 5px;
  margin-bottom: 5px;
}

p {
  line-height: 27px;
  font-family: var(--uc-general-font);
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--uc-accent-font);
  color: var(--uc-white-color);
  font-weight: 500;
}

h1,
.h1 {
  font-size: 42px;
  line-height: 45px;
}

h2,
.h2 {
  font-size: 35px;
  line-height: 40px;
}

h3,
.h3 {
  font-size: 30px;
  line-height: 35px;
}

h4,
.h4 {
  font-size: 24px;
  line-height: 30px;
}

h5,
.h5 {
  font-size: 21px;
  line-height: 28px;
}

h6,
.h6 {
  font-size: 18px;
  line-height: 24px;
}

a {
  font-family: var(--uc-accent-font);
  color: var(--uc-accent-color);
  text-decoration: none;
}

small {
  font-size: 14px;
}

blockquote {
  font-family: "Times New Roman";
  font-size: 20px;
  font-style: italic;
  padding-left: 20px;
  border-left: 2px;
  border-left-color: var(--uc-primary-color);
  border-left-style: solid;
  line-height: 30px;
  color: var(--uc-white-color);
}

.full-row {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.box-100 {
  width: 100px;
  height: 100px;
}

.box-80 {
  width: 80px;
  height: 80px;
}

.box-70 {
  width: 70px;
  height: 70px;
}

.box-60 {
  width: 60px;
  height: 60px;
}

.box-50 {
  width: 50px;
  height: 50px;
}

.box-40 {
  width: 40px;
  height: 40px;
}

.box-30 {
  width: 30px;
  height: 30px;
}

.nav-on-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.tagline,
.tagline-2 {
  text-transform: uppercase;
  font-family: var(--uc-primary-font);
  font-size: 13px;
  color: var(--uc-primary-color);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 25px;
  position: relative;
  display: table;
  text-align: center !important;
  /* margin-left: 355px; */
}

.tagliness {
  text-transform: uppercase;
  font-family: var(--uc-primary-font);
  font-size: 13px;
  color: var(--uc-primary-color);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 25px;
  position: relative;
  display: table;
  text-align: center !important;
  margin-left: 355px;
}

.tagline-2::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: var(--uc-primary-color);
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.down-line-white,
.down-line-secondary,
.down-line-dark,
.down-line {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}

.down-line-white::before,
.down-line-secondary::before,
.down-line-dark::before,
.down-line::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.text-center.down-line::before {
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

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

.y-center {
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.text-end.down-line::before {
  left: inherit;
  right: 0;
}

.ls-1 {
  letter-spacing: 1px;
}

.ls-2 {
  letter-spacing: 2px;
}

.ls-3 {
  letter-spacing: 3px;
}

.sub-title {
  font-family: var(--uc-primary-font);
  color: var(--uc-text-light-color);
  font-size: 17px;
  font-weight: 400;
  display: inline-block;
  width: 100%;
  line-height: 28px;
}

.paraxify {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
}

.transation,
.transation-all * {
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.sidebar-page-wrapper {
  display: flex;
  width: 100%;
}

.content-block {
  width: 80%;
  overflow-x: hidden;
  overflow-y: auto;
  flex-grow: 1;
}

.sidebar-layout .content-block {
  flex: 0 0 auto;
  width: 100%;
}

.form-group {
  position: relative;
  display: flex;
  gap: 7px;
}

.navbar-brand {
  margin-right: 0;
}

img.nav-logo {
  width: 100px;
}

.entry-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.follow-vertical.left {
  left: -75px;
}

.follow-vertical {
  color: var(--uc-secondary-color);
}

.follow-vertical {
  position: fixed;
  bottom: 50%;
  transform: rotate(-90deg);
  z-index: 100;
}

.follow-vertical a {
  padding: 0 10px;
}

.rating-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rating-star {
  position: relative;
  height: 25px;
  width: 52px;
}

.rating-star::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 6 Free";
  font-size: 9px;
  font-weight: 700;
  color: #6c6c6c;
}

.rating-star .rating {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
}

.rating-star .rating::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 6 Free";
  font-size: 9px;
  font-weight: 700;
  color: var(--uc-primary-color);
}

.rating-count {
  font-size: 12px;
  font-family: var(--uc-primary-font);
}

.hover-grayscale-0:hover {
  filter: grayscale(0);
  -moz-filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

.background-1981 {
  background-image: url(../images/slider/6.webp);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  padding-top: 100px;
  padding-bottom: 100px;
}

.background-8126 {
  background-image: url(../images/background/bg_black_white.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
  border-radius: 5px;
}

.background-3618 {
  background-image: url(../images/background/oh_bg-min.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  border-radius: 12px;
}

.spacing-001 {
  padding: 100px;
}

/*=========================================================
# Shapres
=========================================================*/
.straight-shape::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--uc-dark-color);
}

.straight-vertical-shape::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--uc-dark-color);
}

.straight-shape > *,
.straight-vertical-shape > * {
  position: relative;
  z-index: 10;
}

.shape-bg-light::after {
  background-color: var(--uc-light-color);
}

.shape-bg-dark::after {
  background-color: var(--uc-dark-color);
}

.shape-bg-primary::after {
  background-color: var(--uc-primary-color);
}

.shape-bg-white::after {
  background-color: var(--uc-white-color);
}

.shape-bg-secondary::after {
  background-color: var(--uc-secondary-color);
}

.shape-size-1::after {
  height: 25%;
}

.straight-vertical-shape.shape-size-1::after {
  width: 25%;
}

.shape-size-2::after {
  height: 50%;
}

.straight-vertical-shape.shape-size-2::after {
  width: 50%;
}

.shape-size-3::after {
  height: 75%;
}

.straight-vertical-shape.shape-size-3::after {
  width: 75%;
}

.shape-size-4::after {
  height: 100%;
}

.straight-vertical-shape.shape-size-4::after {
  width: 100%;
}

.shape-size-100::after {
  height: 100px;
}

.straight-vertical-shape.shape-size-100::after {
  width: 100px;
}

.shape-size-200::after {
  height: 200px;
}

.straight-vertical-shape.shape-size-200::after {
  width: 200px;
}

.shape-size-300::after {
  height: 300px;
}

.straight-vertical-shape.shape-size-300::after {
  width: 300px;
}

.shape-size-400::after {
  height: 400px;
}

.straight-vertical-shape.shape-size-400::after {
  width: 400px;
}

.shape-size-500::after {
  height: 500px;
}

.straight-vertical-shape.shape-size-500::after {
  width: 500px;
}

.shape-size-600::after {
  height: 600px;
}

.shape-start::after {
  top: 0;
  bottom: inherit;
}

.straight-vertical-shape.shape-start::after {
  left: 0;
}

.shape-end::after {
  top: inherit;
  bottom: 0;
}

.straight-vertical-shape.shape-end::after {
  left: inherit;
  right: 0;
}

.straight-shape header {
  width: 100%;
  z-index: 100;
}

/*=========================================================
Custom Webfont
=========================================================*/
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoonb94f.eot?s27syj");
  src:
    url("../fonts/icomoonb94f.eot?s27syj#iefix") format("embedded-opentype"),
    url("../fonts/icomoonb94f.ttf?s27syj") format("truetype"),
    url("../fonts/icomoonb94f.woff?s27syj") format("woff"),
    url("../fonts/icomoonb94f.svg?s27syj#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-activity:before {
  content: "\e900";
}

.icon-airplay:before {
  content: "\e901";
}

.icon-alert-circle:before {
  content: "\e902";
}

.icon-alert-octagon:before {
  content: "\e903";
}

.icon-alert-triangle:before {
  content: "\e904";
}

.icon-align-center:before {
  content: "\e905";
}

.icon-align-justify:before {
  content: "\e906";
}

.icon-align-left:before {
  content: "\e907";
}

.icon-align-right:before {
  content: "\e908";
}

.icon-anchor:before {
  content: "\e909";
}

.icon-aperture:before {
  content: "\e90a";
}

.icon-archive:before {
  content: "\e90b";
}

.icon-arrow-down:before {
  content: "\e90c";
}

.icon-arrow-down-circle:before {
  content: "\e90d";
}

.icon-arrow-down-left:before {
  content: "\e90e";
}

.icon-arrow-down-right:before {
  content: "\e90f";
}

.icon-arrow-left:before {
  content: "\e910";
}

.icon-arrow-left-circle:before {
  content: "\e911";
}

.icon-arrow-right:before {
  content: "\e912";
}

.icon-arrow-right-circle:before {
  content: "\e913";
}

.icon-arrow-up:before {
  content: "\e914";
}

.icon-arrow-up-circle:before {
  content: "\e915";
}

.icon-arrow-up-left:before {
  content: "\e916";
}

.icon-arrow-up-right:before {
  content: "\e917";
}

.icon-at-sign:before {
  content: "\e918";
}

.icon-award:before {
  content: "\e919";
}

.icon-bar-chart:before {
  content: "\e91a";
}

.icon-bar-chart-2:before {
  content: "\e91b";
}

.icon-battery:before {
  content: "\e91c";
}

.icon-battery-charging:before {
  content: "\e91d";
}

.icon-bell:before {
  content: "\e91e";
}

.icon-bell-off:before {
  content: "\e91f";
}

.icon-bluetooth:before {
  content: "\e920";
}

.icon-bold:before {
  content: "\e921";
}

.icon-book:before {
  content: "\e922";
}

.icon-book-open:before {
  content: "\e923";
}

.icon-bookmark:before {
  content: "\e924";
}

.icon-box:before {
  content: "\e925";
}

.icon-briefcase:before {
  content: "\e926";
}

.icon-calendar:before {
  content: "\e927";
}

.icon-camera:before {
  content: "\e928";
}

.icon-camera-off:before {
  content: "\e929";
}

.icon-cast:before {
  content: "\e92a";
}

.icon-check:before {
  content: "\e92b";
}

.icon-check-circle:before {
  content: "\e92c";
}

.icon-check-square:before {
  content: "\e92d";
}

.icon-chevron-down:before {
  content: "\e92e";
}

.icon-chevron-left:before {
  content: "\e92f";
}

.icon-chevron-right:before {
  content: "\e930";
}

.icon-chevron-up:before {
  content: "\e931";
}

.icon-chevrons-down:before {
  content: "\e932";
}

.icon-chevrons-left:before {
  content: "\e933";
}

.icon-chevrons-right:before {
  content: "\e934";
}

.icon-chevrons-up:before {
  content: "\e935";
}

.icon-chrome:before {
  content: "\e936";
}

.icon-circle:before {
  content: "\e937";
}

.icon-clipboard:before {
  content: "\e938";
}

.icon-clock:before {
  content: "\e939";
}

.icon-cloud:before {
  content: "\e93a";
}

.icon-cloud-drizzle:before {
  content: "\e93b";
}

.icon-cloud-lightning:before {
  content: "\e93c";
}

.icon-cloud-off:before {
  content: "\e93d";
}

.icon-cloud-rain:before {
  content: "\e93e";
}

.icon-cloud-snow:before {
  content: "\e93f";
}

.icon-code:before {
  content: "\e940";
}

.icon-codepen:before {
  content: "\e941";
}

.icon-codesandbox:before {
  content: "\e942";
}

.icon-coffee:before {
  content: "\e943";
}

.icon-columns:before {
  content: "\e944";
}

.icon-command:before {
  content: "\e945";
}

.icon-compass:before {
  content: "\e946";
}

.icon-copy:before {
  content: "\e947";
}

.icon-corner-down-left:before {
  content: "\e948";
}

.icon-corner-down-right:before {
  content: "\e949";
}

.icon-corner-left-down:before {
  content: "\e94a";
}

.icon-corner-left-up:before {
  content: "\e94b";
}

.icon-corner-right-down:before {
  content: "\e94c";
}

.icon-corner-right-up:before {
  content: "\e94d";
}

.icon-corner-up-left:before {
  content: "\e94e";
}

.icon-corner-up-right:before {
  content: "\e94f";
}

.icon-cpu:before {
  content: "\e950";
}

.icon-credit-card:before {
  content: "\e951";
}

.icon-crop:before {
  content: "\e952";
}

.icon-crosshair:before {
  content: "\e953";
}

.icon-database:before {
  content: "\e954";
}

.icon-delete:before {
  content: "\e955";
}

.icon-disc:before {
  content: "\e956";
}

.icon-dollar-sign:before {
  content: "\e957";
}

.icon-download:before {
  content: "\e958";
}

.icon-download-cloud:before {
  content: "\e959";
}

.icon-droplet:before {
  content: "\e95a";
}

.icon-edit:before {
  content: "\e95b";
}

.icon-edit-2:before {
  content: "\e95c";
}

.icon-edit-3:before {
  content: "\e95d";
}

.icon-external-link:before {
  content: "\e95e";
}

.icon-eye:before {
  content: "\e95f";
}

.icon-eye-off:before {
  content: "\e960";
}

.icon-facebook:before {
  content: "\e961";
}

.icon-fast-forward:before {
  content: "\e962";
}

.icon-feather:before {
  content: "\e963";
}

.icon-figma:before {
  content: "\e964";
}

.icon-file:before {
  content: "\e965";
}

.icon-file-minus:before {
  content: "\e966";
}

.icon-file-plus:before {
  content: "\e967";
}

.icon-file-text:before {
  content: "\e968";
}

.icon-film:before {
  content: "\e969";
}

.icon-filter:before {
  content: "\e96a";
}

.icon-flag:before {
  content: "\e96b";
}

.icon-folder:before {
  content: "\e96c";
}

.icon-folder-minus:before {
  content: "\e96d";
}

.icon-folder-plus:before {
  content: "\e96e";
}

.icon-framer:before {
  content: "\e96f";
}

.icon-frown:before {
  content: "\e970";
}

.icon-gift:before {
  content: "\e971";
}

.icon-git-branch:before {
  content: "\e972";
}

.icon-git-commit:before {
  content: "\e973";
}

.icon-git-merge:before {
  content: "\e974";
}

.icon-git-pull-request:before {
  content: "\e975";
}

.icon-github:before {
  content: "\e976";
}

.icon-gitlab:before {
  content: "\e977";
}

.icon-globe:before {
  content: "\e978";
}

.icon-grid:before {
  content: "\e979";
}

.icon-hard-drive:before {
  content: "\e97a";
}

.icon-hash:before {
  content: "\e97b";
}

.icon-headphones:before {
  content: "\e97c";
}

.icon-heart:before {
  content: "\e97d";
}

.icon-help-circle:before {
  content: "\e97e";
}

.icon-hexagon:before {
  content: "\e97f";
}

.icon-home:before {
  content: "\e980";
}

.icon-image:before {
  content: "\e981";
}

.icon-inbox:before {
  content: "\e982";
}

.icon-info:before {
  content: "\e983";
}

.icon-instagram:before {
  content: "\e984";
}

.icon-italic:before {
  content: "\e985";
}

.icon-key:before {
  content: "\e986";
}

.icon-layers:before {
  content: "\e987";
}

.icon-layout:before {
  content: "\e988";
}

.icon-life-buoy:before {
  content: "\e989";
}

.icon-link:before {
  content: "\e98a";
}

.icon-link-2:before {
  content: "\e98b";
}

.icon-linkedin:before {
  content: "\e98c";
}

.icon-list:before {
  content: "\e98d";
}

.icon-loader:before {
  content: "\e98e";
}

.icon-lock:before {
  content: "\e98f";
}

.icon-log-in:before {
  content: "\e990";
}

.icon-log-out:before {
  content: "\e991";
}

.icon-mail:before {
  content: "\e992";
}

.icon-map:before {
  content: "\e993";
}

.icon-map-pin:before {
  content: "\e994";
}

.icon-maximize:before {
  content: "\e995";
}

.icon-maximize-2:before {
  content: "\e996";
}

.icon-meh:before {
  content: "\e997";
}

.icon-menu:before {
  content: "\e998";
}

.icon-message-circle:before {
  content: "\e999";
}

.icon-message-square:before {
  content: "\e99a";
}

.icon-mic:before {
  content: "\e99b";
}

.icon-mic-off:before {
  content: "\e99c";
}

.icon-minimize:before {
  content: "\e99d";
}

.icon-minimize-2:before {
  content: "\e99e";
}

.icon-minus:before {
  content: "\e99f";
}

.icon-minus-circle:before {
  content: "\e9a0";
}

.icon-minus-square:before {
  content: "\e9a1";
}

.icon-monitor:before {
  content: "\e9a2";
}

.icon-moon:before {
  content: "\e9a3";
}

.icon-more-horizontal:before {
  content: "\e9a4";
}

.icon-more-vertical:before {
  content: "\e9a5";
}

.icon-mouse-pointer:before {
  content: "\e9a6";
}

.icon-move:before {
  content: "\e9a7";
}

.icon-music:before {
  content: "\e9a8";
}

.icon-navigation:before {
  content: "\e9a9";
}

.icon-navigation-2:before {
  content: "\e9aa";
}

.icon-octagon:before {
  content: "\e9ab";
}

.icon-package:before {
  content: "\e9ac";
}

.icon-paperclip:before {
  content: "\e9ad";
}

.icon-pause:before {
  content: "\e9ae";
}

.icon-pause-circle:before {
  content: "\e9af";
}

.icon-pen-tool:before {
  content: "\e9b0";
}

.icon-percent:before {
  content: "\e9b1";
}

.icon-phone:before {
  content: "\e9b2";
}

.icon-phone-call:before {
  content: "\e9b3";
}

.icon-phone-forwarded:before {
  content: "\e9b4";
}

.icon-phone-incoming:before {
  content: "\e9b5";
}

.icon-phone-missed:before {
  content: "\e9b6";
}

.icon-phone-off:before {
  content: "\e9b7";
}

.icon-phone-outgoing:before {
  content: "\e9b8";
}

.icon-pie-chart:before {
  content: "\e9b9";
}

.icon-play:before {
  content: "\e9ba";
}

.icon-play-circle:before {
  content: "\e9bb";
}

.icon-plus:before {
  content: "\e9bc";
}

.icon-plus-circle:before {
  content: "\e9bd";
}

.icon-plus-square:before {
  content: "\e9be";
}

.icon-pocket:before {
  content: "\e9bf";
}

.icon-power:before {
  content: "\e9c0";
}

.icon-printer:before {
  content: "\e9c1";
}

.icon-radio:before {
  content: "\e9c2";
}

.icon-refresh-ccw:before {
  content: "\e9c3";
}

.icon-refresh-cw:before {
  content: "\e9c4";
}

.icon-repeat:before {
  content: "\e9c5";
}

.icon-rewind:before {
  content: "\e9c6";
}

.icon-rotate-ccw:before {
  content: "\e9c7";
}

.icon-rotate-cw:before {
  content: "\e9c8";
}

.icon-rss:before {
  content: "\e9c9";
}

.icon-save:before {
  content: "\e9ca";
}

.icon-scissors:before {
  content: "\e9cb";
}

.icon-search:before {
  content: "\e9cc";
}

.icon-send:before {
  content: "\e9cd";
}

.icon-server:before {
  content: "\e9ce";
}

.icon-settings:before {
  content: "\e9cf";
}

.icon-share:before {
  content: "\e9d0";
}

.icon-share-2:before {
  content: "\e9d1";
}

.icon-shield:before {
  content: "\e9d2";
}

.icon-shield-off:before {
  content: "\e9d3";
}

.icon-shopping-bag:before {
  content: "\e9d4";
}

.icon-shopping-cart:before {
  content: "\e9d5";
}

.icon-shuffle:before {
  content: "\e9d6";
}

.icon-sidebar:before {
  content: "\e9d7";
}

.icon-skip-back:before {
  content: "\e9d8";
}

.icon-skip-forward:before {
  content: "\e9d9";
}

.icon-slack:before {
  content: "\e9da";
}

.icon-slash:before {
  content: "\e9db";
}
.icon-sliders:before {
  content: "\e9dc";
}

.icon-smartphone:before {
  content: "\e9dd";
}

.icon-smile:before {
  content: "\e9de";
}

.icon-speaker:before {
  content: "\e9df";
}

.icon-square:before {
  content: "\e9e0";
}

.icon-star:before {
  content: "\e9e1";
}

.icon-stop-circle:before {
  content: "\e9e2";
}

.icon-sun:before {
  content: "\e9e3";
}

.icon-sunrise:before {
  content: "\e9e4";
}

.icon-sunset:before {
  content: "\e9e5";
}

.icon-tablet:before {
  content: "\e9e6";
}

.icon-tag:before {
  content: "\e9e7";
}

.icon-target:before {
  content: "\e9e8";
}

.icon-terminal:before {
  content: "\e9e9";
}

.icon-thermometer:before {
  content: "\e9ea";
}

.icon-thumbs-down:before {
  content: "\e9eb";
}

.icon-thumbs-up:before {
  content: "\e9ec";
}

.icon-toggle-left:before {
  content: "\e9ed";
}

.icon-toggle-right:before {
  content: "\e9ee";
}

.icon-tool:before {
  content: "\e9ef";
}

.icon-trash:before {
  content: "\e9f0";
}

.icon-trash-2:before {
  content: "\e9f1";
}

.icon-trello:before {
  content: "\e9f2";
}

.icon-trending-down:before {
  content: "\e9f3";
}

.icon-trending-up:before {
  content: "\e9f4";
}

.icon-triangle:before {
  content: "\e9f5";
}

.icon-truck:before {
  content: "\e9f6";
}

.icon-tv:before {
  content: "\e9f7";
}

.icon-twitch:before {
  content: "\e9f8";
}

.icon-twitter:before {
  content: "\e9f9";
}

.icon-type:before {
  content: "\e9fa";
}

.icon-umbrella:before {
  content: "\e9fb";
}

.icon-underline:before {
  content: "\e9fc";
}

.icon-unlock:before {
  content: "\e9fd";
}

.icon-upload:before {
  content: "\e9fe";
}

.icon-upload-cloud:before {
  content: "\e9ff";
}

.icon-user:before {
  content: "\ea00";
}

.icon-user-check:before {
  content: "\ea01";
}

.icon-user-minus:before {
  content: "\ea02";
}

.icon-user-plus:before {
  content: "\ea03";
}

.icon-user-x:before {
  content: "\ea04";
}

.icon-users:before {
  content: "\ea05";
}

.icon-video:before {
  content: "\ea06";
}

.icon-video-off:before {
  content: "\ea07";
}

.icon-voicemail:before {
  content: "\ea08";
}

.icon-volume:before {
  content: "\ea09";
}

.icon-volume-1:before {
  ontent: "\ea0a";
}

.icon-volume-2:before {
  content: "\ea0b";
}

.icon-volume-x:before {
  content: "\ea0c";
}

.icon-watch:before {
  content: "\ea0d";
}

.icon-wifi:before {
  content: "\ea0e";
}

.icon-wifi-off:before {
  content: "\ea0f";
}

.icon-wind:before {
  content: "\ea10";
}

.icon-x:before {
  content: "\ea11";
}

.icon-x-circle:before {
  content: "\ea12";
}

.icon-x-octagon:before {
  content: "\ea13";
}

.icon-x-square:before {
  content: "\ea14";
}

.icon-youtube:before {
  content: "\ea15";
}

.icon-zap:before {
  content: "\ea16";
}

.icon-zap-off:before {
  content: "\ea17";
}

.icon-zoom-in:before {
  content: "\ea18";
}

/*==========================================================
# Page Banner
==========================================================*/
.inner-page-banner {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background-image: url(../images/slider/4.webp);
  background-repeat: no-repeat;
}

.page-title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.page-title {
  font-family: var(--uc-primary-font);
  font-size: 24px;
  font-weight: 500;
  color: var(--uc-white-color);
  line-height: initial;
}

.breadcrumb li {
  list-style: none;
  margin: 0;
}

.breadcrumb li a {
  font-family: var(--uc-primary-font);
  font-size: 14px;
  color: var(--uc-white-color);
  text-decoration: none;
}

.breadcrumb li.active {
  font-family: var(--uc-primary-font);
  font-size: 14px;
  color: var(--uc-primary-color);
  text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\e930";
  font-family: "icomoon";
  color: var(--uc-default-color);
}

/*==========================================
Video Play
===========================================*/
.simple-video-play {
  line-height: 70px;
  align-items: center;
}

.simple-video-play a {
  width: 70px;
  height: 70px;
  display: block;
  text-align: center;
  float: left;
  background-color: var(--theme-primary-opacity-color);
}

.simple-video-play a i {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
}

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #7bb441;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.ball-scale-multiple {
  position: relative;
}

.ball-scale-multiple > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.ball-scale-multiple > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.ball-scale-multiple > div {
  background-color: var(--theme-secondary-color);
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  margin: 0;
  left: -43px;
  top: -38px;
  width: 140px;
  height: 140px;
  -webkit-animation: ball-scale-multiple 3s 0s linear infinite;
  animation: ball-scale-multiple 3s 0s linear infinite;
}

.about-us-img-wrap .simple-video-play {
  position: absolute;
  left: 100px;
  bottom: 100px;
  z-index: 10;
}

/*==========================================================
# Header Style
==========================================================*/
.top-header {
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-toggler {
  background-color: var(--uc-white-color);
}

.top-header ul {
  margin-bottom: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.top-header ul li {
  margin: 0;
  list-style: none;
}

.top-header ul li a,
.top-header .navbar-top li a {
  font-family: var(--uc-primary-font);
  font-size: 14px;
  font-weight: 400;
}

.navbar .navbar-nav li {
  list-style: none;
  margin: 0;
}

.navbar .navbar-contact {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar .contact-info,
.navbar .navbar-social {
  display: flex;
  gap: 10px;
}

.navbar .navbar-contact a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar.nav-dark .navbar-contact a {
  color: var(--uc-dark-color);
}

.navbar.nav-secondary .navbar-contact a {
  color: var(--uc-secondary-color);
}

.navbar.nav-primary .navbar-contact a {
  color: var(--uc-primary-color);
}

.navbar.nav-white .navbar-contact a {
  color: var(--uc-white-color);
}

.navbar .navbar-contact li {
  list-style: none;
}

.navbar .navbar-nav li a {
  font-family: var(--uc-primary-font);
  font-size: 15px;
  font-weight: 400;
  position: relative;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: var(--uc-light-color);
}

.navbar .navbar-nav li .dropdown-item {
  color: var(--uc-default-color);
  line-height: 28px;
  padding-left: 20px;
  padding-right: 20px;
}

.navbar .navbar-nav li .dropdown-item:hover,
.navbar .navbar-nav .dropdown-menu li.active > a:hover {
  color: var(--uc-white-color);
}

.navbar.nav-semibold .navbar-nav li a {
  font-weight: 600;
}

.navbar.nav-medium .navbar-nav li a {
  font-weight: 500;
}

.navbar.nav-norlam .navbar-nav li a {
  font-weight: 400;
}

.mega-container ul {
  padding: 0;
  margin: 0;
}

.dropdown.mega-dropdown {
  position: static;
}

.main-nav {
  padding-top: 10px;
  padding-bottom: 10px;
}

.main-header .navbar .user-panel {
  display: flex;
  padding-left: 15px;
  padding-right: 15px;
}

.main-header .navbar .user-panel a {
  text-decoration: none;
  font-family: var(--uc-primary-font);
  font-weight: 400;
  font-size: 15px;
}

.navbar-nav > li.dropdown > a.nav-link::after,
.navbar-nav > li.dropdown .dropdown-toggle::after {
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  position: absolute;
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 8px;
  top: 50%;
  right: -10px;
  display: block;
  border: none;
}

.navbar-expand-lg
  .navbar-nav
  > li.dropdown
  > ul.dropdown-menu
  > li.dropdown
  .dropdown-toggle::after {
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 10px;
  top: 50%;
  right: 20px;
  display: block;
  border: none;
}

.header-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header-style-1 {
  background-color: transparent;
}

.header-style-2 .top-header {
  background-color: var(--uc-dark-color);
}

.header-style-3 {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: var(--uc-border-color);
}

/*==========================================================
Footer Style
==========================================================*/
footer {
  position: relative;
  overflow: hidden;
}

.footer-logo a {
  display: block;
}

.footer-logo img {
  width: 110px;
  padding: 6px 0;
}

.bottom-footer-nav {
  display: flex;
  justify-content: end;
  column-gap: 20px;
  flex-wrap: wrap;
}

.copyright {
  position: relative;
  font-family: var(--uc-primary-font);
}

.copyright ul {
  margin: 0;
  padding: 0;
}

.copyright ul li {
  list-style: none;
  margin: 0;
}

.copyright ul li a {
  text-decoration: none;
  font-size: 14px;
}

.copyright ul li a:hover {
  color: var(--uc-primary-color);
}

#scroll {
  position: absolute;
  z-index: 100;
  display: none;
  cursor: pointer;
  background-color: #111212;
  color: var(--uc-white-color);
  bottom: -25px;
  left: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  margin-left: -25px;
  transform: rotate(-45deg);
}

#scroll span {
  position: absolute;
  top: 7px;
  right: 7px;
  font-size: 18px;
}

/*=========================================================
# Banner Style
==========================================================*/
.video-hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  width: 100%;
  max-height: 100vh;
}

.jquery-background-video {
  position: absolute;
  max-width: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.home-banner-background {
  background-image: url("../images/slider/4.webp");
  background-position: center bottom;
  background-size: cover;
  position: relative;
}

.home-banner-background::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(
    0deg,
    rgba(22, 24, 26, 1) 15%,
    rgba(22, 24, 26, 0.05) 100%
  );
}

.home-banner-background > div {
  position: relative;
  z-index: 10;
}

.on-banner-feature {
  margin-top: -380px;
  z-index: 10;
}

.paraxify-2201 {
  background-image: url(../images/background/bg-1.webp);
  background-repeat: no-repeat;
}

/*==========================================================
Button Style
==========================================================*/
.btn {
  font-family: var(--uc-accent-font);
  font-weight: 500;
  font-size: 14px;
  color: var(--uc-accent-color);
  border: none;
  border-radius: 5px;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  line-height: 40px;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.btn:hover {
  background-color: var(--uc-primary-color);
  border-color: var(--uc-primary-color);
}

.btn.btn-primary,
.btn.btn-hover-primary:hover {
  background-color: var(--uc-primary-color);
  border-color: var(--uc-primary-color);
  color: var(--uc-dark-color);
}

.btn.btn-secondary,
.btn.btn-hover-secondary:hover {
  background-color: var(--uc-secondary-color);
  border-color: var(--uc-secondary-color);
  color: var(--uc-white-color);
}

.btn.btn-light,
.btn.btn-hover-light:hover {
  background-color: var(--uc-light-color);
  border-color: var(--uc-light-color);
  color: var(--uc-white-color);
}

.btn.btn-gray,
.btn.btn-hover-gray:hover {
  background-color: var(--uc-gray-color);
  border-color: var(--uc-gray-color);
  color: var(--uc-dark-color);
}

.btn.btn-dark,
.btn.btn-hover-dark:hover {
  background-color: var(--uc-dark-color);
  border-color: var(--uc-dark-color);
  color: var(--uc-white-color);
}

.btn.btn-white,
.btn.btn-hover-white:hover {
  background-color: var(--uc-white-color);
  border-color: var(--uc-white-color);
  color: var(--uc-dark-color);
}

.btn.hover-default:hover {
  filter: brightness(110%);
}

.btn.hover-flash-move {
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
}

.btn.hover-flash-move:hover {
  filter: brightness(110%);
}

.btn.hover-flash-move:hover::before {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn.hover-flash-move::before {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}

.btn-link {
  font-family: var(--uc-accent-font);
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  color: var(--uc-white-color);
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.btn-link:hover {
  color: var(--uc-primary-color);
}

.transition-this {
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

/*==========================================================
List Style
==========================================================*/
.list-element {
  gap: 10px;
}

.list-element li,
.list-element li a {
  font-family: var(--uc-accent-font);
  color: var(--uc-accent-color);
  list-style: none;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.list-element li a:hover {
  color: var(--uc-accent-color) !important;
}

.list-style {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.list-style li {
  position: relative;
  list-style: none;
}

.list-style li::before {
  position: relative;
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 12px;
  color: var(--theme-primary-color);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--theme-light-color);
  margin-right: 5px;
  text-align: center;
}

.list-style-hyphen {
  margin: 0;
  padding: 0;
}

.list-style-hyphen li {
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 50px;
  list-style: none;
}

.list-style-hyphen li:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 30px;
  background-color: var(--uc-primary-color);
  top: 50%;
  left: 0;
}

.dotted-line-list {
  margin: 0;
  padding: 0;
}

.dotted-line-list li {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 10px;
  align-items: center;
  list-style: none;
  width: 100%;
  font-family: var(--uc-primary-font);
}

.dotted-line-list li span:first-child {
  padding-right: 10px;
}

.dotted-line-list li span:last-child {
  padding-left: 10px;
}

.dotted-line-list li span {
  background-color: var(--uc-secondary-color);
  display: block;
  position: relative;
  z-index: 10;
}

.dotted-line-list li::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  border-bottom: 1px dashed;
  border-bottom-color: var(--uc-white-color);
  z-index: 1;
}

/*==========================================================
# Form Style
==========================================================*/
label {
  font-size: 14px;
  line-height: 24px;
  color: var(--uc-text-gray-color);
  margin-bottom: 0.25rem;
}

.banner-search-form {
  background: rgba(255, 255, 255, 0.2);
}

.quick-search {
  padding: 35px;
  border-radius: 3px;
  position: relative;
}

.form-select,
.form-control {
  font-family: var(--uc-general-font);
  height: 40px;
  padding: 0 15px;
  border: 1px solid;
  border-color: var(--uc-border-color);
  border-radius: 5px;
  font-size: 14px;
  background-color: var(--uc-secondary-color);
  color: var(--uc-text-gray-color);
  position: relative;
  background-size: 14px 10px;
}

.form-select:focus,
.form-control:focus {
  outline: none;
  border-color: var(--uc-border-color);
  background-color: var(--uc-dark-color);
  color: var(--uc-white-color);
  box-shadow: none;
}

.form-icon-right button:has(> i) {
  padding-right: 35px !important;
}

.form-select,
.form-icon-right i + .form-control {
  padding-right: 35px;
}

.form-icon-right [class*="icon-"],
.form-icon-right .fas {
  right: 12px;
  top: 50%;
  position: absolute;
  font-size: 14px;
  color: #3e3e3e;
  z-index: 1;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.form-icon-left i + .form-control {
  padding-left: 35px;
}

.form-icon-left [class*="icon-"],
.form-icon-left .fas {
  left: 12px;
  top: 50%;
  position: absolute;
  font-size: 14px;
  color: var(--uc-text-gray-color);
  z-index: 1;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

input::placeholder,
.form-control::placeholder,
input::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: var(--uc-text-gray-color);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--uc-general-font);
}

select {
  background-position-x: 93%;
}

textarea,
textarea.form-control {
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.form-select option,
.form-control option {
  font-size: 14px;
  argin-bottom: 0;
  color: var(--uc-text-gray-color);
  font-family: var(--uc-general-font);
}

.field-search {
  position: relative;
}

.price-toggle {
  text-align: left;
}

.slider-signup input {
  width: 100%;
  background: #fff;
  line-height: 47px !important;
  height: 56px;
  border-radius: 0;
  padding: 8px 130px 8px 20px;
}

.slider-signup button {
  position: absolute;
  line-height: 46px;
  border-radius: 0;
  right: 5px;
  top: 5px;
  width: 120px;
  font-size: 15px;
  text-align: center;
}

.entry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: start;
  align-items: start;
}

.property-search-form.on-slider {
  position: relative;
  z-index: 100;
  margin-top: -50px;
}

.banner-search {
  padding-top: 220px;
  padding-bottom: 500px;
}

.form-boder select,
.widget.agent-search select {
  border: 1px solid var(--uc-gray-color);
  padding: 11px 30px 11px 15px;
  width: 100%;
  font-size: 13px;
  color: var(--uc-general-color);
  background-position: calc(100% - 20px);
  background-color: transparent;
}

.form-boder select option,
.widget.agent-search select option {
  background-color: var(--uc-dark-color);
}

/*==========================================================
# Number Counter
==========================================================*/
.counter-style-1 .entry-content {
  gap: 20px;
  align-items: center;
  display: flex;
  flex-direction: row;
  text-transform: uppercase;
}

.counter-style-1 .counter-num {
  color: var(--uc-primary-color);
  margin-bottom: 0;
}

.counter-style-1 .counter-title {
  color: var(--uc-default-color);
  line-height: 20px;
}

.counter-style-2 .entry-wrapper {
  padding: 24px;
  flex-direction: row;
  gap: 15px;
}

.counter-style-2 .entry-wrapper::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #fff;
  left: 15px;
  top: 35px;
  opacity: 0.3;
}

.counter-style-2 .entry-thumbnail span {
  font-size: 40px;
  color: var(--uc-white-color);
}

.counter-style-2 .counter-num {
  color: var(--uc-white-color);
  font-size: 24px;
  font-family: var(--uc-primary-font);
}

.counter-style-2 .counter-title {
  font-size: 15px;
  color: var(--uc-white-color);
  font-weight: 400;
  margin-bottom: 0;
}

/*==========================================================
# Property Block
==========================================================*/
.property-block .entry-thumbnail-wrapper {
  position: relative;
  overflow: hidden;
}

.property-block .post-meta {
  display: flex;
  align-items: center;
}

.property-block .entry-header {
  display: flex;
  flex-direction: column;
}

.property-block .entry-thumbnail {
  position: relative;
  display: block;
  overflow: hidden;
}

.property-block .property-type,
.property-block .property-type a {
  font-family: var(--uc-accent-font);
  font-size: 13px;
  text-decoration: none;
  color: var(--uc-default-color);
  font-weight: 500;
  display: block;
}

.property-block .entry-thumbnail-wrapper .type {
  top: 10px;
  left: 10px;
  position: absolute;
  z-index: 10;
}

.property-block .type span {
  padding: 0 10px;
  font-size: 13px;
  font-weight: 400;
  font-family: var(--uc-accent-font);
  height: 24px;
  line-height: 24px;
  display: inline-block;
  color: var(--uc-white-color);
}

.property-block .entry-header .badge span,
.property-block .type span {
  background-color: var(--uc-dark-color);
  color: var(--uc-white-color);
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.property-block .entry-wrapper:hover .entry-header .badge span,
.property-block .entry-wrapper:hover .type span {
  background-color: var(--uc-primary-color);
  color: var(--uc-dark-color);
}

.property-block .entry-header .badge .featured,
.property-block .type .featured {
  background-color: #0e0e0e;
}

.property-block .entry-thumbnail-wrapper .featured {
  position: absolute;
  color: var(--uc-white-color);
  top: 0;
  right: 0;
  z-index: 10;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.property-block .entry-wrapper:hover .entry-thumbnail-wrapper .featured {
  color: var(--uc-dark-color);
}

.property-block .entry-thumbnail-wrapper .featured span {
  z-index: 20;
  position: relative;
  right: 4px;
  top: 3px;
}

.property-block .entry-thumbnail-wrapper .featured::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: var(--uc-dark-color);
  top: -30px;
  right: -30px;
  z-index: 15;
  transform: rotate(45deg);
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.property-block .entry-wrapper:hover .entry-thumbnail-wrapper .featured::after {
  background-color: var(--uc-primary-color);
}

.property-block .listing-price {
  line-height: 1;
}

.quick-meta {
  margin: 0;
}

.quick-meta li {
  list-style: none;
}

.property-block .entry-thumbnail img {
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.property-block .entry-wrapper:hover .entry-thumbnail img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.property-block .entry-thumbnail-wrapper .quick-meta {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 5px;
  z-index: 10;
}

.property-block .entry-thumbnail-wrapper .quick-meta a {
  color: #000;
  font-size: 13px;
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: var(--uc-white-color);
  text-align: center;
  border-radius: 3px;
  text-decoration: none;
}

.property-block .property-seller-name {
  display: flex;
  gap: 10px;
}

.property-block .property-seller-name img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

.property-block .property-seller-name a {
  text-decoration: none;
}

.property-block .post-date {
  font-family: var(--uc-primary-font);
  font-size: 13px;
  color: var(--uc-default-color);
  font-weight: 400;
  line-height: 1;
}

.property-block .listing-title,
.property-block .listing-title a {
  display: inline-block;
  font-weight: 500;
  color: var(--uc-white-color);
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 0;
  line-height: 30px;
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.property-block .listing-title:hover,
.property-block .listing-title a:hover {
  color: var(--uc-primary-color);
}

.property-block .listing-location {
  display: inline-block;
  width: 100%;
  font-size: 13px;
  color: var(--uc-text-gray-color);
  line-height: 25px;
}

.property-block ul {
  margin: 0;
  padding: 0;
}

.property-block ul li {
  list-style: none;
  margin: 0;
}

.entry-footer .entry-author .property-author a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.entry-footer .entry-author .property-author img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

.entry-footer .message-author a {
  font-family: var(--uc-accent-font);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  padding: 0 10px;
  line-height: 35px;
  display: table;
  color: var(--uc-dark-color);
  background-color: var(--uc-light-color);
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

/* Property Block 1 */

.property-grid-1 .listing-price {
  font-weight: 500;
  color: var(--uc-primary-color);
  display: flex;
  font-family: var(--uc-primary-font);
  font-size: 20px;
  align-items: end;
  gap: 5px;
}

.property-grid-1 .listing-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--uc-default-color);
  line-height: 1;
}

.property-grid-1 .entry-wrapper {
  gap: 1rem;
}

.property-grid-1 .entry-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.property-grid-1 .listing-title,
.property-grid-1 .listing-title a {
  margin-bottom: 0;
}

.property-grid-1 .property-info {
  display: flex;
  gap: 1rem;
  padding: 12px 16px;
  background-color: var(--uc-light-color);
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.property-grid-1 .property-info li {
  color: var(--uc-default-color);
  font-size: 13px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: start;
  line-height: 1;
  gap: 5px;
  margin: 0;
}

.property-grid-1 .property-info li span {
  font-weight: 400;
}

.property-grid-1 .entry-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.property-grid-1 .post-meta {
  justify-content: start;
  gap: 0.5rem;
}

.property-grid-1 .quick-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.property-grid-1 .quick-meta a {
  line-height: 10px;
  background-color: transparent;
  color: var(--uc-white-color);
  font-size: 14px;
  display: block;
}

.property-grid-1 .quick-meta a:hover {
  color: var(--uc-primary-color);
}

/* Property Block 2 */

.property-grid-2 .entry-thumbnail-wrapper .post-meta {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 10;
  color: var(--uc-white-color);
  font-family: var(--uc-primary-font);
  background-color: var(--uc-dark-color);
  padding: 5px 10px;
}

.property-grid-2 .entry-content-wrapper {
  padding: 1rem;
  background-color: var(--uc-secondary-color);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.property-grid-2 .property-info {
  display: flex;
  gap: 1rem;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.property-grid-2 .property-info li {
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--uc-default-color);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  gap: 5px;
}

.property-grid-2 .property-info li span {
  font-weight: 400;
}

.property-grid-2 .entry-footer {
  padding-top: 10px;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.property-grid-2 .listing-price {
  font-weight: 500;
  color: var(--uc-primary-color);
  display: flex;
  font-family: var(--uc-primary-font);
  font-size: 21px;
  align-items: end;
  gap: 5px;
}

.property-grid-2 .listing-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--uc-default-color);
  line-height: 1;
}

.property-grid-2 .quick-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.property-grid-2 .quick-meta a {
  line-height: 10px;
  background-color: transparent;
  color: var(--uc-dark-color);
  font-size: 14px;
  display: block;
}

/* Property Block 3 */

.property-grid-3 .entry-thumbnail-wrapper .listing-price {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 10;
  background-color: var(--uc-white-color);
  padding: 5px 10px;
  font-weight: 700;
  color: var(--uc-dark-color);
  display: flex;
  font-family: var(--uc-primary-font);
  font-size: 18px;
  align-items: end;
  gap: 5px;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.property-grid-3 .entry-wrapper:hover .entry-thumbnail-wrapper .listing-price {
  background-color: var(--uc-primary-color);
}

.property-grid-3 .entry-thumbnail-wrapper .listing-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--uc-dark-color);
  line-height: 1;
}

.property-grid-3 .entry-content-wrapper {
  padding: 1rem;
  background-color: var(--uc-secondary-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.property-grid-3 .entry-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.property-grid-3 .property-info {
  display: flex;
  gap: 1rem;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  background-color: var(--uc-light-color);
  padding: 0.5rem 1rem;
}

.property-grid-3 .property-info li {
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--uc-default-color);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  gap: 5px;
}

.property-grid-3 .entry-footer {
  display: flex;
  justify-content: space-between;
}

.property-grid-3 .post-author {
  display: flex;
  gap: 5px;
  font-size: 14px;
}

.property-grid-3 .post-author a {
  color: var(--uc-white-color);
}

.property-grid-3 .quick-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.property-grid-3 .quick-meta a {
  line-height: 10px;
  background-color: transparent;
  color: var(--uc-white-color);
  font-size: 14px;
  display: block;
}

.property-grid-3 .quick-meta a:hover {
  color: var(--uc-primary-color);
}

/* Property Block 4 */

.property-grid-4 {
  height: 100%;
}

.property-grid-4 .entry-wrapper {
  background-color: var(--uc-secondary-color);
  height: 100%;
}

.property-grid-4 .entry-content-wrapper {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.property-grid-4 .listing-location {
  display: inline-block;
  width: 100%;
  font-size: 13px;
}

.property-grid-4 .property-info {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5em;
  justify-content: start;
  width: 100%;
  background-color: var(--uc-light-color);
  padding: 8px 12px;
}

.property-grid-4 .property-info li {
  color: var(--uc-default-color);
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  line-height: 20px;
}

.property-grid-4 .property-features {
  padding-left: 1.2rem;
  padding-bottom: 0.5rem;
}

.property-grid-4 .property-features li {
  list-style: disc;
  margin: 0;
}

.property-grid-4 .entry-content {
  display: flex;
  justify-content: start;
  flex-direction: column;
  gap: 10px;
}

.property-grid-4 .entry-content img {
  width: 20px;
  display: initial;
}

.property-grid-4 .entry-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 5px;
}

.property-grid-4 .quick-meta {
  display: flex;
  gap: 1px;
}

.property-grid-4 .quick-meta a {
  color: var(--uc-white-color);
  font-size: 14px;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.property-grid-4 .quick-meta a:hover {
  background-color: var(--uc-light-color);
}

.property-grid-4 .listing-price {
  font-size: 20px;
  font-family: var(--uc-primary-font);
  color: var(--uc-white-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.property-grid-4 .listing-price small {
  color: var(--uc-default-color);
  font-weight: 500;
}

.property-grid-4 .view-fiender {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 20;
  display: flex;
  gap: 2px;
}

.property-grid-4 .view-fiender li {
  margin: 0;
}

.property-grid-4 .view-fiender li a {
  color: var(--uc-white-color);
  font-size: 14px;
  display: flex;
  width: 31px;
  height: 31px;
  line-height: 1;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}

.property-grid-4 .view-fiender li a:hover {
  color: var(--uc-dark-color);
  background-color: var(--uc-white-color);
}

/* Property Block 5 */

.property-grid-5 .entry-content-wrapper {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--uc-border-color);
  margin-top: -1px;
  background-color: var(--uc-secondary-color);
}

.property-grid-5 .entry-content {
  display: flex;
  justify-content: start;
  flex-direction: column;
  gap: 10px;
}

.property-grid-5 .listing-title a {
  font-size: 15px;
  width: 100%;
  line-height: 1.5;
  font-weight: 400;
}

.property-grid-5 .listing-location {
  display: inline-block;
  width: 100%;
  font-size: 13px;
}

.property-grid-5 .property-info {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5em;
  justify-content: space-between;
  width: 100%;
  background-color: var(--uc-light-color);
  padding: 8px 12px;
}

.property-grid-5 .property-info li {
  color: var(--uc-default-color);
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  line-height: 20px;
}

.property-grid-5 .post-meta {
  align-items: start;
  gap: 1.5rem;
  padding: 5px 0;
}

.property-grid-5 .post-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1;
  font-size: 13px;
  font-weight: 500;
}

.property-grid-5 .post-meta > div a,
.property-grid-5 .post-meta > div span {
  font-size: 14px;
  color: var(--uc-white-color);
}

.property-grid-5 .entry-footer {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: var(--uc-border-color);
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
}

.property-grid-5 .listing-price {
  padding: 5px 12px;
  font-size: 18px;
  background-color: var(--uc-primary-color);
  color: var(--uc-dark-color);
  display: flex;
  align-items: end;
  gap: 5px;
  font-family: var(--uc-primary-font);
  font-weight: 600;
}

.property-grid-5 .quick-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.property-grid-5 .quick-meta a {
  color: var(--uc-white-color);
}

/* Property Block 6 */

.property-grid-6 .entry-wrapper {
  padding: 5px;
}

.property-grid-6 .entry-header .type {
  display: flex;
  gap: 5px;
  padding: 0;
  margin-bottom: 20px;
}

.property-grid-6 .entry-header .type span {
  padding: 0 10px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--uc-accent-font);
  letter-spacing: 1px;
  height: 20px;
  line-height: 20px;
  display: inline-block;
}

.property-grid-6 .quick-meta {
  display: flex;
  gap: 15px;
}

.property-grid-6 .quick-meta a {
  color: var(--uc-white-color);
  font-size: 13px;
  display: block;
  line-height: 1;
}

.property-grid-6 .entry-content-wrapper {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--uc-light-color);
  position: relative;
}

.property-grid-6 .listing-location {
  display: inline-block;
  width: 100%;
  font-size: 13px;
  color: var(--uc-text-color2);
}

.property-grid-6 .listing-price {
  padding: 8px 15px;
  font-size: 17px;
  font-weight: 700;
  background-color: var(--uc-primary-color);
  color: var(--uc-dark-color);
  display: flex;
  width: max-content;
  gap: 5px;
  font-family: var(--uc-primary-font);
  align-items: center;
  position: absolute;
  left: -5px;
  top: -25px;
  z-index: 1;
}

.property-grid-6 .listing-price::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 1px;
  left: 0;
  bottom: -6px;
  border-width: 3px;
  border-style: solid;
  border-color: var(--uc-primary-color);
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.property-grid-6 .listing-price small {
  font-size: 13px;
  font-weight: 700;
  color: var(--uc-dark-color);
}

.property-grid-6 .property-info {
  display: flex;
  gap: 10px;
  justify-content: start;
  width: 100%;
}

.property-grid-6 .property-info li {
  color: var(--uc-default-color);
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  line-height: 20px;
}

.property-grid-6 .property-info li span {
  color: var(--uc-white-color);
}

.property-grid-6 .entry-footer {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: var(--uc-border-color);
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}

/* Property Block 7 */

.property-grid-7 .entry-header {
  margin-bottom: 15px;
}

.property-grid-7 .listing-price {
  font-weight: 700;
  color: var(--uc-primary-color);
  display: flex;
  font-family: var(--uc-primary-font);
  font-size: 20px;
  align-items: center;
  gap: 5px;
}

.property-grid-7 .listing-price small {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.property-grid-7.property-block .listing-title,
.property-grid-7.property-block .listing-title a {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

.property-grid-7.property-block .listing-title:hover,
.property-grid-7.property-block .listing-title a:hover {
  color: var(--uc-primary-color);
}

.property-grid-7 .listing-location {
  display: inline-block;
  width: 100%;
  font-size: 13px;
  color: #fff;
}

.property-grid-7 .property-info {
  display: flex;
  gap: 15px;
  padding: 10px 0;
  align-items: star;
  justify-content: start;
  width: 100%;
}

.property-grid-7 .property-info li {
  color: #fff;
  font-size: 14px;
}

.property-grid-7 .entry-footer .quick-meta {
  display: flex;
  gap: 15px;
}

.property-grid-7 .property-info li span {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  font-size: 13px;
  margin-right: 5px;
}

.property-grid-7 .entry-footer .quick-meta li a {
  color: #fff;
  font-size: 12px;
}

.property-grid-7 .entry-footer {
  display: flex;
  justify-content: space-between;
}

.property-grid-7 .entry-footer .post-date {
  font-family: var(--uc-primary-font);
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.property-grid-7 .entry-wrapper {
  position: relative;
}

.property-grid-7 .entry-thumbnail::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: rgb(49, 49, 69);
  background: linear-gradient(
    0deg,
    rgba(49, 49, 69, 1) 10%,
    rgba(49, 49, 69, 0.2) 60%
  );
  z-index: 10;
}

.property-grid-7 .entry-content-wrapper {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 20px;
}

/* Property List Block 1 */

.property-list-1 .entry-wrapper,
.property-list-2 .entry-wrapper {
  display: flex;
  background-color: var(--uc-secondary-color);
  flex-direction: row;
}

.property-list-1 .entry-thumbnail-wrapper,
.property-list-2 .entry-thumbnail-wrapper {
  width: 270px;
  flex: 0 0 auto;
}

.property-list-1 .entry-thumbnail,
.property-list-2 .entry-thumbnail {
  height: 100%;
  display: flex;
  align-items: center;
}

.property-list-1 .entry-thumbnail img,
.property-list-2 .entry-thumbnail img {
  transform: scale(1.4);
}

.property-list-1 .entry-wrapper:hover .entry-thumbnail img,
.property-list-2 .entry-wrapper:hover .entry-thumbnail img {
  transform: scale(1.5);
}

.property-list-1 .entry-content-wrapper,
.property-list-2 .entry-content-wrapper {
  padding: 1.5rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.property-list-1.property-block .listing-title a,
.property-list-2.property-block .listing-title a {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 10px;
}

.property-list-1 .listing-price {
  font-weight: 500;
  color: var(--uc-primary-color);
  display: flex;
  font-family: var(--uc-primary-font);
  font-size: 21px;
  align-items: end;
  gap: 5px;
  margin-bottom: 5px;
}

.property-list-1 .listing-price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--uc-default-color);
  letter-spacing: 0.5px;
}

.property-list-1 .property-info {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background-color: var(--uc-light-color);
  align-items: center;
  justify-content: start;
}

.property-list-1 .property-info li {
  color: var(--uc-text-light-color);
  font-size: 14px;
  font-weight: 400;
}

.property-list-1 .post-meta {
  justify-content: start;
  gap: 0.5rem;
}

.property-list-1 .entry-footer,
.property-list-2 .entry-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-list-1 .quick-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.property-list-1 .quick-meta a {
  color: var(--uc-dark-color);
  display: flex;
  line-height: 1;
}

/* Property List 2 */

.property-list-2 .entry-thumbnail-wrapper .post-date {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 10;
  color: var(--uc-white-color);
  font-family: var(--uc-primary-font);
  background-color: var(--uc-dark-color);
  padding: 5px 10px;
}

.property-list-2 .property-info {
  display: flex;
  gap: 1rem;
  align-items: start;
  justify-content: start;
  width: 100%;
  background-color: var(--uc-light-color);
  padding: 1rem;
}

.property-list-2 .property-info li {
  display: flex;
  flex-direction: column;
  color: var(--uc-default-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin: 0px;
  gap: 0.5rem;
}

.property-list-2 .property-info li span {
  font-weight: 400;
}

.property-list-2 .entry-content {
  display: flex;
  justify-content: start;
  flex-direction: column;
  gap: 10px;
}

.property-list-2 .listing-price {
  font-weight: 500;
  color: var(--uc-primary-color);
  display: flex;
  font-family: var(--uc-primary-font);
  font-size: 21px;
  align-items: center;
  gap: 5px;
}

.property-list-2 .listing-price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--uc-default-color);
}

.property-list-2 .quick-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.property-list-2 .quick-meta a {
  line-height: 10px;
  background-color: transparent;
  color: var(--uc-white-color);
  font-size: 14px;
  display: block;
}

/* Tranding Block */
.tranding-block-1 .entry-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
}

.tranding-block-1 .entry-thumbnail-wrapper,
.tranding-block-1 .entry-content-wrapper {
  flex: 1 1 0;
}

.tranding-block-1 .entry-wrapper:hover img {
  filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

.tranding-block-1 .type {
  display: flex;
  flex-direction: row;
  gap: 5px;
  margin-bottom: 5px;
}

.tranding-block-1 .type span {
  display: block;
  background-color: var(--uc-white-color);
  padding: 3px 10px;
  color: var(--uc-dark-color);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
}

.tranding-block-1 .property-info {
  padding: 0;
  display: flex;
  gap: 30px;
  margin-bottom: 0;
}

.tranding-block-1 .property-info li {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tranding-block-1 .property-info li span {
  color: var(--uc-white-color);
  font-size: 14px;
}

.tranding-block-1 .entry-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
}

.tranding-block-1 .post-meta {
  display: flex;
  gap: 15px;
}

.tranding-block-1 .post-meta span,
.tranding-block-1 .post-meta a {
  color: var(--uc-white-color);
  font-size: 14px;
}

.tranding-block-1 .entry-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
}

.tranding-block-1 .listing-price {
  font-size: 24px;
  font-family: var(--uc-primay-font);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tranding-block-1 .listing-price span {
  color: var(--uc-white-color);
  font-weight: 700;
  display: flex;
  gap: 5px;
  align-items: center;
}

.tranding-block-1 .listing-price small {
  font-weight: 400;
}

.tranding-block-1 .quick-meta {
  display: flex;
  gap: 5px;
}

.tranding-block-1 .quick-meta a {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  border-radius: 3px;
  color: var(--uc-white-color);
  background-color: var(--uc-light-color);
  border: 1px solid;
  border-color: var(--uc-border-color);
  font-size: 15px;
}

.tranding-block-1 .quick-meta a:hover {
  background-color: var(--uc-primary-color);
  color: var(--uc-dark-color);
}

.tranding-block-1 .property-agent {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  margin-bottom: 0;
}

.tranding-block-1 .property-agent li {
  display: flex;
  gap: 10px;
}

.tranding-block-1 .property-agent li a {
  color: var(--uc-white-color);
  text-decoration: none;
}

.tranding-block-1 .property-features {
  margin-bottom: 0;
  padding-left: 1rem;
}

.tranding-block-1 .entry-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Modal Popup Block */

.modal-property-block {
  padding: 1.5rem;
  background-color: var(--uc-white-color);
}

.modal-property-block .entry-wrapper {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 1.5rem;
}

.modal-property-block .entry-thumbnail-wrapper {
  width: 40%;
  flex: 0 0 auto;
}

.modal-property-block .entry-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-property-block .listing-price {
  margin-top: 1rem;
  gap: 5px;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--uc-dark-color);
  font-weight: 700;
}

.modal-property-block .property-status {
  font-size: 13px;
  font-weight: 400;
  padding: 5px 10px;
  background-color: darkseagreen;
  color: var(--uc-white-color);
  margin-left: 20px;
}

.modal-property-block .listing-title,
.modal-property-block .listing-title a {
  font-size: 24px;
  margin-bottom: 5px;
}

.modal-property-block .property-info {
  display: flex;
  gap: 1rem;
  padding: 12px 16px;
  background-color: var(--uc-light-color);
  align-items: center;
  justify-content: start;
  width: fit-content;
}

.modal-property-block .property-info li {
  color: var(--uc-dark-color);
  font-size: 14px;
  display: flex;
  align-items: start;
  line-height: 1;
  gap: 5px;
  margin: 0;
}

.modal-property-block .entry-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-property-block .property-features {
  padding-left: 1.2rem;
  padding-bottom: 0.5rem;
}

.modal-property-block .property-features li {
  list-style: disc;
  margin: 0;
}

/*=======================================================
# Box Style
========================================================*/
.box-style-1 .entry-wrapper {
  padding: 40px;
  text-align: center;
  display: flex;
  gap: 20px;
  flex-direction: column;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.box-style-1 .entry-wrapper:hover {
  -moz-box-shadow: 0 70px 70px rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 0 70px 70px rgba(0, 0, 0, 0.8);
  box-shadow: 0 70px 70px rgba(0, 0, 0, 0.8);
  -webkit-transform: translate(0, -10px);
  -moz-transform: translate(0, -10px);
  transform: translate(0, -10px);
}

.box-style-1 .entry-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.box-style-1 .entry-title,
.box-style-1 .entry-title a {
  font-size: 20px;
  color: var(--uc-white-color);
  font-weight: 500;
  margin: 0;
}

.box-style-2 .entry-wrapper {
  background-color: var(--uc-light-color);
  padding: 50px;
  flex-direction: column;
}

.box-style-2 .entry-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.box-style-2 .entry-title,
.box-style-2 .entry-title a {
  font-size: 24px;
  font-weight: 500;
  color: var(--uc-dark-color);
}

.box-style-3 .entry-wrapper {
  padding: 35px;
  background-color: var(--uc-light-color);
  overflow: hidden;
  padding-top: 50px;
}

.box-style-3 .entry-thumbnail span,
.box-style-3 .entry-thumbnail i {
  font-size: 80px;
  font-family: var(--uc-primary-font);
  color: var(--uc-gray-color);
  font-weight: 700;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 0;
  line-height: 1;
}

.box-style-3 .entry-title,
.box-style-3 .entry-title a {
  font-family: var(--uc-primary-font);
  font-size: 24px;
  color: var(--uc-white-color);
  margin-bottom: 0;
  text-decoration: none;
}

.box-style-3 .entry-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: start;
  z-index: 10;
  position: relative;
}

.iconbox-angle-left .icon-box {
  position: relative;
  width: 70px;
  height: 70px;
  background-color: var(--uc-primary-color);
  text-align: center;
  line-height: 70px;
  margin-bottom: 30px;
}

.iconbox-angle-left .icon-box i {
  color: #fff;
  font-size: 20px;
}

.iconbox-angle-left .icon-box::before {
  position: absolute;
  content: "";
  border-width: 10px;
  bottom: -10px;
  left: 0;
  border-style: solid;
  border-color: transparent transparent transparent var(--uc-primary-color);
}

.iconbox-angle-left .entry-wrapper {
  display: flex;
  flex-direction: column;
}

.iconbox-angle-left .entry-title,
.iconbox-angle-left .entry-title a {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: var(--uc-dark-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.iconbox-angle-left .entry-title:hover,
.iconbox-angle-left .entry-title a:hover {
  color: var(--uc-primary-color);
}

.box-link {
  text-decoration: none;
  height: 100%;
}

.box-link .entry-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 24px;
  background-color: var(--uc-light-color);
  height: 100%;
}

.box-link .box-title,
.box-link .box-title a {
  font-size: 15px;
  color: var(--uc-dark-color);
  margin-bottom: 0;
  font-weight: 500;
}

.box-link p {
  color: var(--uc-default-color);
}

.box-link .icon-box {
  width: 50px;
  height: 50px;
}

.box-link .entry-content {
  font-family: var(--uc-text-font);
  color: var(--uc-default-color);
}

.box-link .entry-header .entry-title a,
.box-link .entry-header .entry-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--uc-white-color);
}

.hover-fade-other-box:hover .box-link {
  filter: blur(1px);
  opacity: 0.5;
  transform: scale(0.98);
  box-shadow: none;
}

.hover-fade-other-box:hover .box-link:hover {
  transform: scale(1);
  filter: blur(0px);
  opacity: 1;
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.125);
}

.box-hover-zoomer {
  position: relative;
  height: 100%;
}

.box-hover-zoomer .entry-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: var(--uc-light-gray-color);
  padding: 30px;
  height: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.box-hover-zoomer .entry-wrapper .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  margin: 0 auto;
  background-color: var(--uc-primary-color);
  color: #fff;
  text-align: center;
  line-height: 70px;
  margin-bottom: 20px;
  font-size: 24px;
}

.box-hover-zoomer .entry-wrapper .entry-title {
  margin-bottom: 0;
}

.box-hover-zoomer .entry-wrapper .entry-title a {
  font-family: var(--uc-primary-font);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--uc-dark-color);
  margin-bottom: 0;
  text-decoration: none;
}

.box-hover-zoomer .entry-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box-hover-zoomer .entry-wrapper:hover {
  height: 110%;
  background-color: var(--uc-primary-color);
}

.box-hover-zoomer .entry-wrapper:hover .entry-footer a,
.box-hover-zoomer .entry-wrapper:hover .entry-content,
.box-hover-zoomer .entry-wrapper:hover .entry-title a {
  color: #fff;
}

.box-hover-zoomer .entry-content-wrapper .entry-content {
  font-family: var(--uc-primary-font);
  letter-spacing: 1px;
}

.iconbox-simple .entry-wrapper {
  display: flex;
  padding: 35px;
  gap: 20px;
}

.iconbox-simple .entry-wrapper .icon-box {
  font-size: 24px;
  color: var(--uc-primary-color);
}

.iconbox-simple .entry-wrapper .entry-title,
.iconbox-simple .entry-wrapper .entry-title a {
  font-family: var(--uc-primary-font);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--uc-dark-color);
  text-decoration: none;
}

.iconbox-list .entry-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.iconbox-list .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: var(--uc-light-color);
  color: var(--uc-primary-color);
  text-align: center;
  line-height: 50px;
  font-size: 15px;
}

.iconbox-list .entry-header .entry-title {
  font-size: 14px;
  color: var(--uc-dark-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 0;
}

.box-hover-bottom-line .entry-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 35px;
  background-color: var(--uc-white-color);
  gap: 20px;
  position: relative;
}

.box-hover-bottom-line .entry-title,
.box-hover-bottom-line .entry-title a {
  font-family: var(--uc-primary-font);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--uc-dark-color);
  text-decoration: none;
  margin-bottom: 0;
}

.box-hover-bottom-line .icon-box {
  font-size: 24px;
  color: var(--uc-primary-color);
}

.box-hover-bottom-line .entry-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box-hover-bottom-line .entry-wrapper::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  bottom: 0;
  left: 50%;
  background-color: var(--uc-primary-color);
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.box-hover-bottom-line .entry-wrapper:hover::before {
  width: 100%;
  left: 0;
  right: 0;
}

.element-class-101 .entry-wrapper {
  padding-right: 200px;
  background-image: url("../images/background/bg-5.webp");
  background-repeat: no-repeat;
  background-position: 135%;
  background-size: contain;
  height: 100%;
}

/*===============================================================================
jSlider Style Start
==================================================================================*/
.jslider .jslider-pointer {
  background-color: var(--uc-primary-color);
  border: 4px solid;
  border-color: var(--uc-light-color);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2) !important;
}

.jslider {
  display: block;
  width: 95%;
  height: 1em;
  position: relative;
  top: 30px;
}

.jslider table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
}

.jslider td,
.jslider th {
  padding: 0;
  vertical-align: top;
  text-align: left;
  border: 0;
}

.jslider table,
.jslider table tr,
.jslider table tr td {
  width: 100%;
  vertical-align: top;
}

.jslider .jslider-bg {
  position: relative;
}

.jslider .jslider-bg .l {
  width: 10%;
  background-position: 0 0;
  left: 0;
  background: var(--uc-light-color);
}

.jslider .jslider-bg .f {
  width: 80%;
  left: 10%;
  background-repeat: repeat-x;
  background-position: 0 -20px;
  background: var(--uc-light-color);
}

.jslider .jslider-bg .r {
  background-position: right 0;
  width: 100%;
  right: -18px;
  background: var(--uc-light-color);
}

.jslider .jslider-bg i {
  height: 4px;
  position: absolute;
  font-size: 0;
  top: 0;
}

.jslider .jslider-bg .v {
  position: absolute;
  width: 60%;
  left: 20%;
  top: 0;
  height: 4px;
  background: var(--uc-primary-color);
}

.jslider .jslider-pointer {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-position: 0 -60px;
  position: absolute;
  left: 20%;
  top: -7px;
  cursor: pointer;
  cursor: hand;
}

.jslider .jslider-pointer-hover {
  background-position: -20px -60px;
}

.jslider .jslider-label {
  font-size: 9px;
  line-height: 12px;
  color: black;
  opacity: 0.4;
  white-space: nowrap;
  padding: 0px 2px;
  position: absolute;
  top: -18px;
  left: 0px;
}

.price-filter .jslider .jslider-label,
.area-filter .jslider .jslider-label {
  display: none !important;
}

.jslider .jslider-label-to {
  left: auto;
  right: 0;
}

.jslider-value > span {
  float: right;
}

.area-filter .jslider-value > span {
  float: left;
  padding-right: 3px;
}

.jslider .jslider-value {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  padding: 1px 2px 0;
  position: absolute;
  top: -30px;
  left: 20%;
  background: transparent;
  line-height: 13px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}

.jslider .jslider-value-to {
  margin-right: -18px;
}

.jslider .jslider-label small,
.jslider .jslider-value small {
  position: relative;
  top: -0.4em;
}

.jslider .jslider-scale {
  position: relative;
  top: 9px;
}

.jslider .jslider-scale span {
  position: absolute;
  height: 4px;
  border-left: 1px solid #999;
  font-size: 0;
}

.jslider .jslider-scale ins {
  font-size: 9px;
  text-decoration: none;
  position: absolute;
  left: 0px;
  top: 5px;
  color: #999;
}

.jslider-single .jslider-pointer-to,
.jslider-single .jslider-value-to,
.jslider-single .jslider-bg .v,
.jslider-limitless .jslider-label {
  display: none;
}

.price-range-toggle {
  width: 285px;
  padding: 30px;
  background: var(--uc-dark-color);
  border-radius: 6px;
  height: 100px;
  right: 0;
  top: 130%;
  position: absolute;
  box-shadow: 0px 0px 50px 0px rgba(32, 32, 32, 0.15);
  visibility: hidden;
  opacity: 0;
  z-index: 0;
}

.price-range-toggle.visible {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}

.aditional-features:before,
.price-range-toggle:before {
  background-color: var(--uc-dark-color);
  content: "";
  height: 20px;
  left: auto;
  margin: 0 auto;
  position: absolute;
  right: 30px;
  top: -5px;
  width: 20px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.opacity-1 {
  opacity: 1 !important;
}

/*================================================
# Owl Carousel
================================================*/
.owl-carousel.dot-disable .owl-dots,
.owl-carousel.nav-disable .owl-nav {
  display: none !important;
}

.owl-outer-20 .owl-stage-outer {
  padding: 20px;
  margin: -20px;
}

.owl-carousel .owl-nav button span {
  display: block;
  margin-top: -5px;
}

.owl-carousel.nav-top-right .owl-nav {
  position: absolute;
  right: 0;
  top: -70px;
  bottom: inherit;
  left: inherit;
  width: auto;
  transform: inherit;
  -webkit-transform: inherit;
  -moz-transform: inherit;
}

.owl-carousel.nav-top-right .owl-nav button {
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 1;
  border-radius: 0;
  background-color: #919191;
  color: var(--uc-white-color);
  margin-left: 5px;
  justify-content: center;
  align-items: center;
}

.owl-carousel.nav-between-in .owl-nav button.owl-prev {
  left: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
}

.owl-carousel.nav-between-in .owl-nav button.owl-next {
  right: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
}

.owl-carousel.nav-between-in .owl-nav button {
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 40px;
  border-radius: 5px;
  background-color: var(--uc-dark-color);
  color: var(--uc-white-color);
  margin-left: 5px;
}

.owl-carousel.nav-top-right .owl-nav button:hover {
  background-color: var(--uc-primary-color);
  color: var(--uc-dark-color);
}

.owl-carousel button.owl-dot.active {
  width: 10px;
  height: 10px;
  background-color: var(--uc-primary-color);
  border-radius: 50%;
  border: 3px solid;
  border-color: var(--uc-border-color);
}

.owl-carousel button.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: #e0e2e3;
  border: 3px solid #fff;
}

.testimonial-simple blockquote {
  font-size: 16px;
  color: #fff;
  line-height: 34px;
  padding: 30px 0;
  border: none;
}

.owl-carousel .owl-dots {
  display: table;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
  z-index: 10;
}

.owl-carousel .owl-nav {
  position: absolute;
  width: 150px;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.owl-carousel .owl-nav button {
  display: flex;
}

/*===============================================================================
# Team Block
================================================================================*/
.member-block-2 .entry-wrapper {
  width: 100%;
  padding: 24px;
  gap: 20px;
  background-color: var(--uc-light-color);
  margin: -1px;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.member-block-2 .entry-wrapper:hover {
  -webkit-box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
  box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
  -webkit-transform: translate(0, -10px);
  -moz-transform: translate(0, -10px);
  transform: translate(0, -10px);
}

.member-block-2 .entry-thumbnail img {
  border-radius: 10px;
}

.member-block-2 .entry-wrapper:hover img {
  filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

.member-block-2 .entry-content-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.member-block-2 .entry-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.member-block-2 .agent-contact-info {
  margin: 0;
  padding: 0;
}

.member-block-2 .agent-contact-info li {
  text-decoration: none;
  color: var(--uc-white-color);
  font-weight: 400;
  list-style: none;
}

.member-block-2 .agent-social {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.member-block-2 .agent-social a {
  text-decoration: none;
  color: var(--uc-white-color);
}

.member-block-2 .entry-content a {
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.member-block-2 .entry-content a:hover {
  color: var(--uc-primary-color);
}

.member-block-2 .member-name,
.member-block-2 .member-name a {
  font-size: 21px;
  font-weight: 600;
  color: var(--uc-white-color);
  text-decoration: none;
  margin-bottom: 0;
}

.member-block-2 .designation {
  display: inline-block;
  font-family: var(--uc-primary-font);
  font-weight: 500;
}

.member-block-2 .entry-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.member-block-2 .entry-footer span {
  font-size: 13px;
}

.member-block-2 .entry-footer .rating span {
  font-size: 15px;
}

.member-block-2 .entry-footer .agent-feedback {
  color: var(--uc-primary-color);
}

/*===============================================================================
Hover Effect
================================================================================*/
.hover-underline-animation::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background-color: var(--theme-primary-color);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
}

.hover-underline-animation:hover::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.hover-shadow-lg {
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.hover-shadow-lg:hover {
  -webkit-box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
  box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
  -webkit-transform: translate(0, -10px);
  -moz-transform: translate(0, -10px);
  transform: translate(0, -10px);
}

.hover-img-zoom {
  overflow: hidden;
}

.hover-grayscale img,
.hover-img-zoom img {
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.hover-img-zoom:hover img {
  transform: scale(1.05);
}

.hover-grayscale:hover img {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

/*===============================================================================
# Testimonial Block
================================================================================*/
.about-avata .name {
  font-weight: 600;
  color: var(--uc-dark-color);
}

.about-avata {
  font-family: var(--uc-primary-font);
}

.testimonial-block-1 .entry-wrapper {
  padding: 24px;
  gap: 40px;
  height: 100%;
}

.testimonial-block-1 .entry-footer {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 15px;
}

.testimonial-block-1 .image-avata {
  width: 50px;
}

.testimonial-block-1 p {
  font-size: 18px;
  line-height: 30px;
  font-style: italic;
}

.testimonial-block-1 .quote-icon {
  font-size: 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  z-index: 1;
}

.testimonial-block-2 .entry-wrapper {
  padding: 40px;
  gap: 1.5rem;
  height: 100%;
  background-color: var(--uc-light-color);
}

.testimonial-block-2 .entry-wrapper:hover img {
  filter: grayscale(0);
  -moz-filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

.testimonial-block-1 .entry-content {
  position: relative;
  z-index: 10;
}

.testimonial-block-2 .entry-footer {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 15px;
}

.testimonial-block-2 .image-avata {
  width: 50px;
}

.testimonial-block-2 p {
  font-size: 18px;
  line-height: 30px;
  font-style: italic;
}

.testimonial-block-2 .quote-icon {
  font-size: 40px;
  width: 50px;
  z-index: 1;
}

.testimonial-block-2 .entry-content {
  position: relative;
  z-index: 10;
}

.testimonial-block-3 .entry-wrapper {
  display: flex;
  flex-direction: row;
  gap: 5rem;
}

.testimonial-block-3 .entry-thumbnail-wrapper {
  flex: 0 0 auto;
  width: 80px;
}

.testimonial-block-3 .entry-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-block-3 .entry-content p {
  font-size: 18px;
  line-height: 30px;
  font-style: italic;
}

.testimonial-block-3 .entry-footer {
  position: relative;
  padding-left: 100px;
  font-size: 17px;
  color: var(--uc-dark-color);
  position: relative;
}

.testimonial-block-3 .entry-footer::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 2px;
  background-color: var(--uc-dark-color);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

/*==============================================================
# Post Block
==============================================================*/
.entry-post .entry-title,
.entry-post .entry-title a {
  text-decoration: none;
  font-size: 18px;
  line-height: 28px;
  color: var(--uc-white-color);
  font-family: var(--uc-primary-font);
  font-weight: 500;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.entry-post .post-title:hover {
  color: var(--uc-primary-color);
}

.entry-post .entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 18px;
}

.entry-post .entry-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.entry-post .entry-meta a {
  color: var(--uc-text-light-color);
  font-size: 13px;
  text-decoration: none;
  line-height: 1;
  position: relative;
}

.entry-post .entry-meta a:hover {
  text-decoration: underline;
  color: var(--uc-primary-color);
}

.entry-post .entry-wrapper:hover img {
  filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

.entry-post .entry-thumbnail img {
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

/* Post Grid 1 */

.post-block-1 {
  height: 100%;
}

.post-block-1 .entry-wrapper {
  gap: 0;
  height: 100%;
}

.post-block-1 .entry-content-wrapper {
  padding: 24px;
  padding-bottom: 60px;
  gap: 10px;
  flex-grow: 1;
  background-color: var(--uc-light-color);
}

.post-block-1 .entry-meta {
  position: absolute;
  bottom: 24px;
  gap: 15px;
}

.post-block-1 .entry-meta a:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: var(--uc-gray-color);
  right: -8px;
  top: 0;
}

.post-block-1.list-view .entry-wrapper {
  flex-direction: row;
  background-color: var(--uc-light-color);
}

.post-block-1.list-view .entry-thumbnail-wrapper {
  flex: 0 0 auto;
  width: 50%;
}

.post-block-1.list-view .entry-thumbnail {
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Blog Grid 2 */

.post-block-2 .entry-wrapper {
  background-color: var(--uc-secondary-color);
}

.post-block-2 .entry-thumbnail {
  overflow: hidden;
}

.post-block-2 .entry-wrapper:hover .entry-thumbnail img {
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.post-block-2 .entry-content-wrapper {
  padding: 24px;
}

.post-block-2 .entry-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-block-2 .entry-meta {
  gap: 15px;
}

.post-block-2 .entry-meta a {
  position: relative;
}

.post-block-2 .entry-meta a:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: var(--uc-gray-color);
  right: -8px;
  top: 0;
}

.post-block-2 a.btn-link {
  padding: 8px 20px;
  background-color: var(--uc-primary-color);
  color: var(--uc-dark-color);
  display: inline-block;
}

.post-block-2.list-view .entry-wrapper {
  flex-direction: row;
}

.post-block-2.list-view .entry-thumbnail-wrapper {
  flex: 0 0 auto;
  width: 50%;
}

.post-block-2.list-view .entry-thumbnail {
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Blog Grid 3 */

.post-block-3 .entry-wrapper {
  background-color: var(--uc-secondary-color);
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.post-block-3 .entry-wrapper:hover {
  -webkit-box-shadow: 2px 2px 20px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 20px 3px rgba(0, 0, 0, 0.5);
}

.post-block-3 .entry-content-wrapper {
  padding: 24px;
}

.post-block-3 .entry-meta {
  display: flex;
  gap: 15px;
  justify-content: start;
  margin-bottom: 10px;
}

.post-block-3 .entry-meta a {
  text-transform: capitalize;
  font-size: 13px;
  position: relative;
}

.post-block-3 .entry-meta a:not(:last-child)::after {
  content: "-";
  position: absolute;
  right: -10px;
  color: var(--uc-primary-color);
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.post-block-3 .entry-meta a i {
  color: var(--uc-primary-color);
}

.post-block-3 .entry-title {
  text-transform: capitalize;
}

.post-block-3 .entry-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Blog Grid 4 */

.post-block-4 .entry-thumbnail-wrapper {
  position: relative;
}

.post-block-4 .entry-thumbnail-wrapper::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#e6000000', GradientType=0);
}

.post-block-4 .entry-thumbnail {
  overflow: hidden;
}

.post-block-4 .entry-wrapper:hover img {
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.post-block-4 .entry-content-wrapper {
  padding: 30px;
  position: absolute;
  bottom: 0;
  z-index: 10;
}

.post-block-4 .entry-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.post-block-4 .entry-title a {
  color: var(--uc-white-color);
}

.post-block-4 .entry-meta {
  gap: 15px;
  flex-wrap: wrap;
}

.post-block-4 .entry-meta a {
  position: relative;
  color: var(--uc-white-color);
}

.post-block-4 .entry-meta a:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: var(--uc-gray-color);
  right: -8px;
  top: 0;
}

/* Blog Grid 5 */

.post-block-5 .entry-wrapper {
  gap: 20px;
}

.post-block-5 .entry-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-block-5 .entry-meta {
  gap: 15px;
  flex-wrap: wrap;
}

.post-block-5 .entry-meta a {
  position: relative;
  color: var(--uc-text-gray-color);
  font-weight: 400;
}

.post-block-5 .entry-meta a:not(:first-child)::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: var(--uc-gray-color);
  left: -9px;
  top: 0;
}

.post-block-5 .entry-meta a.post-date::before {
  display: none;
}

.post-block-5 .entry-meta a.post-date {
  position: absolute;
  background-color: var(--uc-primary-color);
  color: var(--uc-dark-color);
  top: -50px;
  padding: 0px 12px;
  height: 30px;
  line-height: 30px;
  z-index: 1;
  font-size: 16px;
  font-weight: 500;
}

.post-block-5 .entry-meta a.post-comments::before {
  display: none;
}

.post-block-5 .entry-meta a.post-comments {
  position: absolute;
  bottom: 3px;
  right: 0;
  color: var(--uc-white-color);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Blog Grid 6 */

.post-block-6 .entry-wrapper {
  gap: 20px;
}

.post-block-6 .entry-content-wrapper {
  padding-top: 20px;
  padding-bottom: 20px;
}

.post-block-6 .entry-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.post-block-6 .entry-meta {
  gap: 15px;
  flex-wrap: wrap;
}

.post-block-6 .entry-meta a {
  position: relative;
  letter-spacing: 1px;
  color: var(--uc-text-gray-color);
}

.post-block-6 .entry-meta a.post-cat {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--uc-primary-color);
}

/*==============================================================
# Single Post
==============================================================*/

.single-post-1 .entry-wrapper,
.single-post-2 .entry-wrapper {
  gap: 20px;
}

.single-post-1 .entry-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.single-post-1 .entry-title {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1;
}

.single-post-1 .entry-content-wrapper {
  position: static;
  gap: 30px;
}

.single-post-1 .entry-meta,
.single-post-2 .entry-meta {
  column-gap: 15px;
}

.single-post-1 .entry-meta a,
.single-post-2 .entry-meta a {
  color: var(--uc-text-gray-color);
  position: relative;
}

.single-post-1 .entry-social,
.single-post-1 .entry-tags,
.single-post-2 .entry-social,
.single-post-2 .entry-tags,
.single-post-3 .entry-social,
.single-post-3 .entry-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.single-post-1 .entry-social span,
.single-post-1 .entry-tags span,
.single-post-2 .entry-social span,
.single-post-2 .entry-tags span,
.single-post-3 .entry-social span,
.single-post-3 .entry-tags span {
  font-weight: 600;
  display: flex;
  align-items: center;
}

.single-post-1 .entry-tags a,
.single-post-2 .entry-tags a,
.single-post-3 .entry-tags a {
  background-color: var(--uc-white-color);
  color: var(--uc-dark-color);
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 2px;
  font-weight: 500;
  padding: 5px 8px;
  display: block;
  text-decoration: none;
  align-items: center;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.single-post-1 .entry-tags a:hover,
.single-post-2 .entry-tags a:hover,
.single-post-3 .entry-tags a:hover {
  background-color: var(--uc-primary-color);
  color: var(--uc-white-color);
}

.single-post-1 .entry-social a,
.single-post-2 .entry-social a,
.single-post-3 .entry-social a {
  background-color: var(--uc-secondary-color);
  color: var(--uc-white-color);
  font-size: 13px;
  border-radius: 2px;
  font-weight: 400;
  padding: 5px 15px;
  display: block;
  text-decoration: none;
  align-items: center;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.single-post-1 .entry-social a i,
.single-post-2 .entry-social a i,
.single-post-3 .entry-social a i {
  color: var(--uc-primary-color);
}

.single-post-1 .entry-footer,
.single-post-2 .entry-footer,
.single-post-3 .entry-footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.single-post-2 .entry-wrapper {
  background-color: var(--uc-secondary-color);
  padding: 2rem;
}

.single-post-2 .entry-title {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1;
}

.single-post-2 .entry-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.single-post-2 .entry-content-wrapper {
  gap: 20px;
}

.single-post-3 .entry-title {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1;
}

.single-post-3 .entry-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.single-post-3 .entry-content-wrapper {
  gap: 1.5rem;
}

.author-meta {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.author-meta .modal-title {
  color: var(--uc-white-color);
  font-size: 17px;
  text-transform: capitalize;
  font-weight: 500;
}

.author-meta .modal-header {
  padding: 0;
}

.author-meta .modal-body {
  display: flex;
  align-items: start;
  gap: 15px;
  padding: 1.5rem;
  background-color: var(--uc-dark-color);
}

.author-meta .modal-body p {
  font-family: "Times New Roman";
  font-style: italic;
  font-size: 18px;
}

.author-meta .author-image {
  flex: 0 0 80px;
  border-radius: 10px;
  overflow: hidden;
}

.entry-post-comments {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/*==============================================================
# Widget Style
==============================================================*/
.widget {
  margin-bottom: 1rem;
  color: var(--uc-white-color);
  font-family: var(--uc-primary-font);
  font-weight: 400;
  padding: 35px;
}

.listing-sidebar .widget {
  background-color: var(--uc-secondary-color);
}

.listing-sidebar .quick-search {
  padding: 0;
}

.widget-listing li {
  display: flex;
  gap: 10px;
  align-items: start;
}

.widget-listing li .listing-title,
.widget-listing li .listing-title a {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}

.widget-listing li .listing-price {
  display: flex;
  gap: 5px;
  color: var(--uc-primary-color);
  font-family: var(--uc-primary-font);
  font-weight: 600;
}

.widget-listing li .property-info li {
  color: var(--uc-white-color);
  font-size: 14px;
}

.widget-listing li .listing-price small {
  font-size: 13px;
  color: var(--uc-text-light-color);
  font-weight: 400;
}

.widget-listing li img {
  width: 80px;
  height: 80px;
  border-radius: 3px;
}

.widget.footer-widget {
  color: var(--uc-white-color);
  font-family: var(--uc-primary-font);
  font-weight: 400;
  padding: 0;
  margin-bottom: 30px;
}

.widget-title {
  font-size: 21px;
  color: var(--uc-white-color);
  font-family: var(--uc-primary-font);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-widget .widget-title {
  color: var(--uc-white-color);
  font-size: 17px;
  margin-top: 10px;
}

.footer-light .widget.footer-widget {
  color: var(--uc-default-color);
}

.footer-light .footer-widget .widget-title {
  color: var(--uc-white-color);
  font-weight: 600;
}

.footer-widget ul {
  display: flex;
  flex-direction: column;
}

.widget ul {
  margin: 0;
  padding: 0;
}

.widget ul li {
  line-height: 25px;
  list-style: none;
  margin: 0;
}

.widget ul li:hover img {
  filter: grayscale(0);
  -moz-filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

.widget ul li:first-child {
  margin-top: 0;
}

.widget ul li:last-child {
  margin-bottom: 0;
}

.widget ul li a {
  text-decoration: none;
}

.widget .widget-listing {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-widget {
  display: flex;
  gap: 20px;
}

.social-widget li a,
.social-widget a {
  font-size: 14px;
  text-decoration: none;
  color: var(--uc-dark-color);
}

.footer-widget.social-widget a {
  color: var(--uc-white-color);
  display: flex;
  line-height: 1;
  justify-content: center;
  align-items: center;
}

.footer-light .footer-widget.social-widget a {
  color: var(--uc-default-color);
}

.widget ul li a {
  text-decoration: none;
  color: var(--uc-white-color);
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.widget.footer-widget ul li {
  margin-top: 5px;
  margin-bottom: 5px;
}

.widget.footer-widget ul li a {
  color: var(--uc-white-color);
}

.footer-light .widget.footer-widget ul li a {
  color: var(--uc-default-color);
}

.footer-light .widget.footer-widget ul li a:hover {
  color: var(--uc-primary-color);
}

.footer-light .widget ul li a:hover,
.widget ul li a:hover {
  color: var(--uc-primary-color);
}

.widget-about .contact-info a {
  font-size: 21px;
  font-weight: 700;
}

.widget-sidebar-nav {
  background-color: var(--uc-secondary-color);
}

.widget-sidebar-nav ul li {
  padding: 10px 0;
}

.widget-sidebar-nav ul li:not(:last-child) {
  border-bottom: 1px;
  border-bottom-style: dashed;
  border-bottom-color: var(--uc-gray-color);
}

.widget-category ul li {
  padding: 8px 0;
}

.widget-category ul li a span {
  color: var(--uc-primary-color);
  font-size: 13px;
}

.widget-category ul li:not(:last-child) {
  border-bottom: 1px;
  border-bottom-style: dashed;
  border-bottom-color: var(--uc-gray-color);
}

.blog-sidebar .widget {
  background-color: var(--uc-secondary-color);
}

.widget_search .search-field {
  border: 1px solid;
  border-color: var(--uc-border-color);
  font-size: 14px;
  color: var(--uc-dark-color);
  background-color: var(--uc-dark-color);
  height: 45px;
  padding: 12px 15px;
  border-radius: 3px;
  width: 100%;
}

.widget_search .search-field:focus,
.widget_search .search-field:focus-visible {
  border: none;
}

.widget_search input[type="submit"] {
  display: none;
}

.widget_categories ul li {
  padding: 10px 0;
  color: var(--uc-primary-color);
}

.widget_categories ul li a {
  color: var(--uc-white-color);
}

.widget_categories ul li:not(:last-child) {
  border-bottom: 1px;
  border-bottom-style: dashed;
  border-bottom-color: var(--uc-gray-color);
}

.widget_recent_entries ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.widget_recent_entries ul li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
}

.widget_recent_entries .post-meta {
  display: flex;
  gap: 15px;
}

.widget_recent_entries .post-meta a {
  color: var(--uc-text-gray-color);
  font-size: 13px;
  position: relative;
  padding: 0;
}

.widget_recent_entries .post-meta a:not(:last-child)::after {
  content: "|";
  position: absolute;
  color: var(--uc-text-gray-color);
  right: -7px;
  top: -1px;
  height: 100%;
  width: 1px;
}

.widget_tag_cloud ul {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}

.widget_tag_cloud ul li a {
  background-color: var(--uc-light-color);
  color: var(--uc-text-gray-color);
  padding: 0 7px;
  font-size: 13px;
  display: block;
  line-height: 2;
}

.widget_tag_cloud ul li a:hover {
  color: var(--uc-dark-color);
  background-color: var(--uc-primary-color);
}

.property-carousel-widget .owl-carousel .owl-dots {
  margin-top: 20px;
}

/*==========================================================
Modal Popup
==========================================================*/
.modal-content {
  border-radius: 0;
}

.quick-email-modal,
.quick-view-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99992;
  width: 100%;
  height: 100%;
}

.view-close {
  cursor: pointer;
  position: absolute;
  right: 1px;
  top: 1px;
  z-index: 99;
  background-color: var(--uc-dark-color);
  display: block;
  width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  color: var(--uc-white-color);
}

.entry-thumbnail-modal {
  position: relative;
  overflow: hidden;
}

.modal-body .entry-title a {
  font-size: 18px;
  text-decoration: none;
  color: var(--uc-dark-color);
}

.modal-body .entry-title a:hover {
  color: var(--uc-primary-color);
}

.modal-body .product-status {
  background-color: var(--uc-secondary-color);
  color: var(--uc-white-color);
  font-size: 12px;
  letter-spacing: 1px;
  font-family: var(--uc-primary-font);
  padding: 0 12px;
}

.entry-thumbnail-modal,
.modal-body .entry-title a {
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

/*==========================================================
Listing Info Block
==========================================================*/
.listing-block-1 .entry-footer a::after {
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.listing-block-1,
.listing-block-2 {
  position: relative;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.listing-block-1 .entry-title,
.listing-block-1 .entry-title a {
  color: var(--uc-white-color);
}

.listing-block-1::before,
.listing-block-2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    0deg,
    rgba(22, 24, 26, 0.9) 10%,
    rgba(22, 24, 26, 0.1) 60%
  );
  z-index: 10;
}

.listing-block-1 .entry-content-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
  color: #fff;
}

.listing-block-1 .entry-content {
  font-size: 13px;
}

.listing-block-1 .entry-title {
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
}

.listing-block-1:hover .entry-thumbnail img {
  filter: grayscale(0);
  -moz-filter: grayscale(0);
  -webkit-filter: grayscale(0);
  transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
}

.listing-block-1 .entry-footer a {
  text-transform: capitalize;
  font-size: 14px;
  position: relative;
}

.listing-block-1 .entry-footer a::after {
  position: absolute;
  content: "\e930";
  font-family: "icomoon";
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 15;
}

.listing-block-1 .entry-footer a:hover::after {
  border-left-color: var(--uc-primary-color);
}

.listing-block-2 .entry-content-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  color: #fff;
}

.listing-block-2 .entry-content {
  font-size: 13px;
  font-weight: 400;
}

.listing-block-2 .entry-title {
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--uc-white-color);
}

.listing-block-2:hover .entry-thumbnail img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.listing-block-2 .entry-footer {
  width: 100%;
}

.listing-block-2 .entry-footer a {
  text-transform: capitalize;
  font-size: 14px;
  position: relative;
  width: 100%;
  background-color: var(--uc-secondary-color);
  text-align: center;
  margin-top: 20px;
  display: block;
  font-weight: 400;
  border: none;
  line-height: 50px;
}

.listing-block-2 .entry-footer a:hover {
  background-color: var(--uc-dark-color);
}

.listing-block-3 .entry-thumbnail {
  margin-bottom: 20px;
}

.listing-block-3 .entry-thumbnail {
  border-radius: 100%;
  overflow: hidden;
}

.listing-block-3 .entry-content-wrapper {
  text-align: center;
}

.listing-block-3 .entry-title,
.listing-block-3 .entry-title a {
  text-transform: capitalize;
  font-size: 18px;
  width: 100%;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  color: var(--uc-dark-color);
  margin-bottom: 0;
}

.listing-block-3 .entry-title:hover,
.listing-block-3 .entry-title a:hover {
  color: var(--uc-primary-color);
}

.listing-block-4 .entry-wrapper {
  background-color: var(--uc-dark-color);
  padding: 24px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.listing-block-4 .entry-icon {
  width: 75px;
  height: 75px;
  background-color: var(--uc-light-color);
  padding: 15px;
  border-radius: 100%;
}

.listing-block-4 .entry-icon span {
  font-size: 30px;
  line-height: 30px;
}

.listing-block-4 .entry-title,
.listing-block-4 .entry-title a {
  font-family: var(--uc-primary-font);
  color: var(--uc-white-color);
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  margin: 0;
}

.listing-block-5 .entry-wrapper {
  gap: 20px;
  align-items: center;
  flex-direction: row;
  background-color: var(--uc-light-color);
}

.listing-block-5 .entry-wrapper:hover img {
  filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

.listing-block-5 .entry-thumbnail {
  width: 120px;
  height: 120px;
}

.listing-block-5 .entry-wrapper .entry-title,
.listing-block-5 .entry-wrapper .entry-title a {
  font-size: 18px;
  color: var(--uc-white-color);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 0;
}

/*==========================================================
Tab Block Style
==========================================================*/
.tab-filter-nav {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.tab-filter-nav li {
  color: var(--uc-white-color);
  font-family: var(--uc-primary-font);
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  margin: 0;
}

.tab-filter-nav li.mixitup-control-active {
  color: var(--uc-primary-color);
  text-decoration: line-through;
}

.tab-color-primary li {
  color: var(--uc-primary-color);
}

.tab-color-white li {
  color: var(--uc-white-color);
}

.tab-color-dark li {
  color: var(--uc-dark-color);
}

.tab-style-1 {
  position: relative;
}

.tab-style-2 {
  width: max-content;
  max-width: 100%;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 50px;
  background: var(--uc-light-color);
  border-radius: 60px;
}

.tab-style-2 .tab-filter-nav li a.nav-link {
  font-family: var(--uc-primary-font);
  font-size: 15px;
  color: var(--uc-white-color);
  display: block;
  position: relative;
  padding: 0;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.tab-style-2 .tab-filter-nav li a.nav-link:hover {
  color: var(--uc-primary-color);
}

.tab-style-2 .tab-filter-nav li a.nav-link.active {
  color: var(--uc-primary-color);
  text-decoration: line-through;
}

.nav-tab-line {
  display: flex;
  gap: 25px;
  font-family: var(--uc-primary-font);
  font-weight: 400;
  margin-bottom: 20px;
  border-bottom: 2px;
  border-bottom-style: solid;
  border-color: var(--uc-border-color);
  padding: 0;
}

.nav-tab-line li {
  line-height: 40px;
  position: relative;
  cursor: pointer;
  margin: 0;
  list-style: none;
}

.nav-tab-line li:hover {
  color: var(--uc-primary-color) !important;
}

.nav-tab-line li.active {
  color: var(--uc-primary-color) !important;
}

.nav-tab-line li.active:before {
  position: absolute;
  content: "";
  width: 100%;
  bottom: -2px;
  left: 0;
  height: 2px;
  background-color: var(--uc-primary-color);
}

.tab-simple {
  display: flex;
  gap: 30px;
  flex-direction: column;
}

.tab-simple ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  margin-bottom: 0;
}

.tab-simple li {
  color: var(--uc-white-color);
  cursor: pointer;
  list-style: none;
  font-family: var(--uc-primary-font);
  font-weight: 400;
  font-size: 15px;
  margin: 0;
  position: relative;
}

.tab-simple li.active {
  color: var(--uc-primary-color);
}

.search-form-tab-block {
  padding: 35px;
  padding-bottom: 50px;
  background-color: var(--uc-secondary-color);
  border-top: 2px solid;
  border-top-color: var(--uc-primary-color);
}

.search-tab-style ul.tab-filter-nav {
  margin-bottom: 30px;
  gap: 5px;
  justify-content: start;
}

.search-tab-style ul.tab-filter-nav li {
  padding: 20px;
  padding-top: 25px;
  padding-bottom: 10px;
  background-color: var(--uc-white-color);
  color: var(--uc-dark-color);
  border-radius: 0 0 3px 3px;
  border: 1px solid;
  border-color: var(--uc-border-color);
  border-top: 0;
  font-weight: 600;
  font-size: 15px;
  text-transform: capitalize;
}

.search-tab-style ul.tab-filter-nav li.active {
  background-color: var(--uc-dark-color);
  border-color: var(--uc-dark-color);
  color: var(--uc-white-color);
}

/*==========================================================
Pricing Plan
==========================================================*/
.pricing-plan-1 li,
.pricing-plan-2 li {
  list-style: none;
}

.pricing-plan-1 .entry-wrapper {
  padding: 30px;
  background-color: var(--uc-light-color);
}

.pricing-plan-1 .entry-title {
  font-family: var(--uc-primary-font);
  color: var(--uc-white-color);
  font-size: 21px;
  font-weight: 600;
}

.pricing-plan-1 .plan-price {
  color: var(--uc-primary-color);
}

.pricing-plan-2 .entry-title {
  font-family: var(--uc-primary-font);
  color: var(--uc-dark-color);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.pricing-plan-2 .plan-price {
  color: var(--uc-primary-color);
  margin-bottom: 10px;
  font-family: var(--uc-primary-font);
}

.pricing-plan-2 .plan-price sup {
  font-size: 15px;
  top: -11px;
  left: -2px;
}

.pricing-plan-2 .entry-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
}

.pricing-plan-2 .entry-content-wrapper .entry-header {
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.pricing-plan-2 .entry-content-wrapper {
  border: 1px solid #ddd;
}

.pricing-plan-2 .entry-content-wrapper::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: transparent;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.pricing-plan-2 .entry-content-wrapper:hover::after {
  background-color: var(--uc-primary-color);
}

/*==========================================================
Modal Dialog Box
==========================================================*/
.quick-view-modal.show .modal-dialog {
  position: relative;
  z-index: 100;
}

.user-login-form {
  padding: 30px;
}

.modal-footer,
.modal-header {
  padding-left: 30px;
  padding-right: 30px;
}

.modal-header {
  border-radius: 0;
}

.modal-title {
  font-family: var(--uc-primary-font);
  font-size: 17px;
  text-transform: uppercase;
  color: var(--uc-dark-color);
  font-weight: 500;
}

.user-login-form .form-control {
  padding-left: 40px;
}

.user-login-form .access-field {
  position: relative;
  display: flex;
  align-items: center;
}

.user-login-form .access-field i {
  position: absolute;
  font-size: 14px;
  color: var(--uc-dark-color);
  z-index: 10;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

/*==========================================================
Google Map
==========================================================*/
#map-banner {
  position: relative;
  width: 100%;
}

#map-banner.visible {
  overflow: visible;
}

.homepage-map #map {
  width: 100%;
  height: 600px;
}

.marker-style {
  width: 16px;
  height: 16px;
  margin-left: -9px !important;
  margin-top: -46px !important;
}

.cluster > div {
  font-size: 12px !important;
  font-family: var(--uc-text-font) !important;
  line-height: 45px !important;
}

.gm-style img {
  width: 100%;
}

.infobox-wrapper {
  background-color: var(--uc-dark-color);
  width: 300px !important;
  margin-bottom: 85px;
  margin-left: -48px;
}

.infobox-wrapper > img {
  position: absolute !important;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 18px;
  height: 18px;
}

.property-map-block {
  width: 300px;
}

.infobox-wrapper:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 42.5%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--uc-dark-color);
}

.map-view-list,
.map-view-grid {
  padding-right: 12px !important;
}

/*==========================================================
Portfolio Block
==========================================================*/
.portfolio-style-1 .entry-wrapper {
  position: relative;
}

.portfolio-style-1 .entry-thumbnail::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: rgb(49, 49, 69);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 0.2) 60%
  );
  z-index: 10;
}

.portfolio-style-1 .entry-content-wrapper {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 20px;
}

.portfolio-style-1 .listing-price {
  font-weight: 700;
  color: var(--uc-primary-color);
  display: flex;
  font-family: var(--uc-primary-font);
  font-size: 24px;
  align-items: center;
  gap: 5px;
}

.portfolio-style-1 .listing-price small {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.portfolio-style-1 .listing-title,
.portfolio-style-1 .listing-title a {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.portfolio-style-1 .listing-title:hover,
.portfolio-style-1 .listing-title a:hover {
  color: var(--uc-primary-color);
}

/*==========================================
# FunFact
==========================================*/
.funfact-style-1 .entry-wrapper {
  padding: 30px;
  gap: 15px;
  background-color: var(--uc-dark-color);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.funfact-style-1 .entry-wrapper:hover {
  transform: translateY(-10px);
}

.funfact-style-1 .count-num {
  font-size: 40px;
  font-weight: 700;
  font-family: var(--uc-primary-font);
  color: var(--uc-white-color);
}

.funfact-style-1 .entry-title {
  font-size: 17px;
  font-weight: 400;
}
/*==========================================
#Progesss Bar
===========================================*/
.fact-counter .progress {
  height: 3px;
  width: 100%;
  overflow: visible;
  border-radius: 0;
  margin-top: 10px;
  background-color: var(--uc-gray-color);
}

.progress-bar {
  -moz-transition: all 3000ms linear 0s;
  -webkit-transition: all 3000ms linear 0s;
  transition: all 3000ms linear 0s;
  width: 0;
  overflow: visible;
  position: relative;
  background-color: var(--uc-white-color);
}

.progress-wrapper {
  font-weight: 500;
  position: relative;
}

.skill-percent {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 15px;
  color: var(--uc-white-color);
}

.skill-percent.msg-shape {
  top: inherit;
  bottom: 15px;
  padding: 3px 5px;
  background-color: var(--uc-white-color);
  color: var(--uc-dark-color);
  font-size: 13px;
  font-weight: 600;
}

.skill-percent.msg-shape::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 1px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent;
  border-right-color: var(--uc-white-color);
  right: 0;
  bottom: -4px;
}

.progress-title {
  font-family: var(--uc-primary-font);
  font-weight: 600;
  font-size: 14px;
  color: var(--uc-white-color);
}

/*=========================================================
# Listing Filter
=========================================================*/
.listing-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.listing-filter-bar .result-wrapper,
.listing-filter-bar .short-by-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

.listing-filter-bar .push-nav-toggle {
  position: fixed;
  width: fit-content;
  padding: 0 20px;
  top: 25%;
  left: -55px;
  z-index: 999;
  background-color: var(--uc-secondary-color);
  border-radius: 1px solid;
  border-color: var(--uc-border-color);
  color: var(--uc-white-color);
  transform: rotate(-90deg);
}

.navbar .push-navbar-left {
  position: fixed;
  left: 0;
  top: 0;
  width: 50px;
  height: 100vh;
  background-color: var(--uc-dark-color);
  border-right: 1px solid;
  border-color: var(--uc-border-color);
  z-index: 90;
}

.side-navbar-nav {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  gap: 1rem;
}

.navbar-slide-push .side-navbar-nav {
  align-items: start;
  margin-bottom: 1.5rem;
  margin-top: 0;
  gap: 0;
}

.side-navbar-nav li {
  list-style: none;
  width: 100%;
}

.side-navbar-nav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 18px;
}

.navbar-slide-push .side-navbar-nav li a {
  text-align: left;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
}

.side-navbar-nav li a:hover {
  color: var(--uc-primary-color);
}

.navbar .push-nav-toggle {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.short-by-wrapper .view-style {
  display: flex;
  gap: 5px;
}

.short-by-wrapper .view-style button {
  border: 0;
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  justify-content: center;
}

.short-by-wrapper .view-style button.grid-view {
  font-size: 18px;
}

.short-by-wrapper .view-style button.list-view {
  font-size: 20px;
}

.scrollableList {
  color: var(--uc-default-color);
  width: 170px;
  float: left;
  display: none;
  border-radius: 0;
  border: 1px solid;
  border-color: var(--uc-border-color);
  position: relative;
}

.scrollableList i {
  font-size: 11px;
  position: absolute;
  right: 10px;
  top: 35%;
}

.scrollableList ul {
  padding: 3px 0px 3px 0px;
  margin: 0;
  position: absolute;
  width: 170px;
  background: var(--uc-dark-color);
  margin-top: -1px;
  margin-left: -1px;
  border: 1px solid var(--uc-border-color);
  z-index: 100;
}

.scrollableList ul li {
  list-style: none;
  cursor: pointer;
  margin-left: 14px;
  line-height: 25px;
}

.selectedOption {
  cursor: pointer;
  padding: 0 12px;
  position: relative;
  z-index: 10;
  line-height: 40px;
  font-size: 14px;
  font-family: var(--uc-primary-font);
}

.scrollableList ul li:hover {
  color: #c33;
}

.selectedOption:hover {
  color: #fff;
}

.listing-ordering {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.listing-ordering label {
  order: 1;
  color: var(--uc-white-color);
  margin-bottom: 0;
}

.listing-ordering .scrollableList {
  border: 0;
}

.scrollableList {
  order: 2;
}

.nav-leftpush-overlay .navbar-expand-lg .navbar-slide-push {
  height: 100vh;
  width: 360px;
  padding: 70px 35px;
  overflow-y: scroll;
  position: fixed;
  background-color: var(--uc-dark-color);
  min-height: 100%;
  top: 0;
  left: -360px;
  opacity: 0;
  z-index: 1000;
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.nav-leftpush-overlay .navbar-expand-lg .navbar-slide-push::-webkit-scrollbar {
  display: none;
}

#page_wrapper.overlay::before {
  background-color: rgba(var(--uc-secondary-color-rgba), 0.8);
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 100;
}

.nav-leftpush-overlay .navbar-expand-lg .navbar-slide-push.visible {
  animation-name: slideInLeft;
  animation-duration: 0.1s;
  left: 0;
  opacity: 1;
}

.slide-nav-close {
  position: absolute;
  top: 24px;
  left: 40px;
  border-radius: 0 !important;
  line-height: 25px;
  font-size: 14px;
  cursor: pointer !important;
}

.clear-as-filter {
  position: absolute;
  top: 24px;
  right: 40px;
  border-radius: 0 !important;
  line-height: 25px;
  font-size: 14px;
  cursor: pointer !important;
}

.select-custom {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  padding: 0;
}

.select-custom li {
  list-style: none;
  line-height: normal;
}

.select-custom li label {
  padding: 1px 8px;
  border: 1px solid;
  border-color: var(--uc-border-color);
  font-size: 13px;
  color: var(--uc-default-color);
  cursor: pointer;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  display: block;
}

.select-custom li input[type="radio"]:checked + label {
  border-color: var(--uc-primary-color);
  color: var(--uc-primary-color);
}

.select-custom li input[type="radio"]:checked + label:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 1px;
  border: 12px;
  border-style: solid;
  border-color: var(--uc-primary-color) transparent transparent transparent;
  transform: rotate(-45deg);
  right: -12px;
  bottom: -12px;
}

.select-custom li input[type="radio"]:checked + label:after {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-size: 5px;
  right: -1px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  color: var(--uc-dark-color);
  font-weight: 900;
  z-index: 9;
}

.slide-filter .price-range-toggle {
  width: 100%;
}

.custom-check-box {
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  padding-left: 0;
}

.custom-check-box li {
  list-style: none;
}

.custom-check-box li .hide {
  display: none;
}

.custom-check-box label {
  padding-left: 27px;
  position: relative;
  cursor: pointer;
  line-height: 28px;
  margin-bottom: 0;
}

.custom-check-box label::before {
  background-color: #353535;
  border: 1px solid #000000;
  height: 18px;
  top: 0.25rem;
  width: 18px;
  box-sizing: border-box;
  border-radius: 0.25rem;
  content: "";
  left: 0;
  position: absolute;
  transition: border-color 0.3s ease 0s;
}

.custom-check-box input[type="checkbox"]:checked + label::before {
  font-size: 7px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  border: none;
  background-color: var(--uc-primary-color);
  color: var(--uc-dark-color);
}

/*==========================================================
Pagination
==========================================================*/
.pagination {
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
  gap: 2px;
  margin: 0;
}

.pagination li {
  list-style: none;
}

.pagination .page-item .page-link {
  display: flex;
  align-items: center;
  color: var(--uc-white-color);
  text-align: center;
  padding: 0;
  font-weight: 500;
  height: 40px;
  width: 40px;
  justify-content: center;
  font-family: var(--uc-primary-font);
  border-radius: 100%;
  border-color: transparent;
}

.pagination .page-item.active .page-link {
  background-color: var(--uc-primary-color);
  color: var(--uc-dark-color);
}

.pagination-wrap {
  margin-top: 50px;
}

.pagination .page-link,
.pagination .page-item.disabled .page-link {
  background: transparent;
}

/*==========================================================
Single Property
==========================================================*/
.single-property-page .entry-single-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.single-property-page .entry-title-wrapper nav {
  position: absolute;
  top: -35px;
  left: 0;
}

.single-property-page .entry-title {
  font-size: 30px;
  margin-bottom: 0;
  line-height: 1.2;
}

.single-property-page .post-meta {
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
}

.single-property-page .post-meta a {
  display: block;
  color: var(--uc-text-light-color);
}

.single-property-page .post-meta a:hover {
  color: var(--uc-primary-color);
}

.single-property-page .entry-single-header {
  display: flex;
  justify-content: space-between;
  padding: 3rem;
  padding-top: 5rem;
}

.single-property-page .entry-single-header .listing-location {
  font-size: 15px;
  color: var(--uc-text-light-color);
}

.single-property-page .entry-title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 10px;
  position: relative;
}

.single-property-page .entry-price-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: end;
  gap: 10px;
}

.single-property-page .single-property-control {
  display: flex;
  flex-direction: row;
  gap: 3px;
}

.single-property-control a {
  color: var(--uc-white-color);
  display: flex;
  padding: 8px;
}

.single-property-page .entry-price-wrapper .listing-price {
  font-size: 24px;
  color: var(--uc-white-color);
  font-family: var(--uc-primary-font);
  font-weight: 700;
  display: flex;
  gap: 3px;
  align-items: center;
}

.single-property-page .listing-price small {
  font-size: 14px;
  font-weight: 400;
}

.single-property-page .listing-available {
  padding: 3px 0;
  font-size: 14px;
  font-family: var(--uc-primary-font);
  font-weight: 400;
  color: mediumspringgreen;
}

.entry-single-thumbnail {
  position: relative;
}

.single-property-page .type {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 5px;
  z-index: 100;
}

.single-property-page .entry-single-thumbnail .type span {
  background-color: var(--uc-dark-color);
  font-size: 16px;
  line-height: 30px;
  height: auto;
}

.booking-shedule-tour,
.single-property-calculator,
.single-property-details,
.single-property-description,
.single-property-overview {
  padding: 3rem;
  background-color: var(--uc-secondary-color);
  position: relative;
}

.single-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.single-content-wrapper .update-on {
  position: absolute;
  right: 35px;
  top: 40px;
  font-size: 14px;
  color: var(--uc-text-light-color);
}

.single-content-wrapper .property-feature,
.single-content-wrapper .property-address,
.single-content-wrapper .property-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 1rem;
}

.single-content-wrapper .property-info li {
  width: 33%;
  flex: 0 0 auto;
  padding: 10px;
  display: flex;
  column-gap: 5px;
  line-height: 1;
  color: var(--uc-white-color);
}

.single-content-wrapper .property-address li {
  width: 50%;
  flex: 0 0 auto;
  padding: 10px;
  display: flex;
  column-gap: 5px;
  line-height: 1;
}

.single-content-wrapper .property-feature li {
  width: 33%;
  flex: 0 0 auto;
  display: flex;
  padding: 5px 10px;
}

.single-content-wrapper .property-feature li span,
.single-content-wrapper .property-info li span,
.single-content-wrapper .property-address li span {
  font-weight: 400;
  color: var(--uc-default-color);
}

.loan-calculator .input-group-prepend .input-group-text {
  width: 43px;
  text-align: center;
  border-radius: 0;
  font-family: var(--uc-primary-font);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: 100%;
}

.loan-result .input-group-prepend .input-group-text {
  height: 40px;
  text-align: center;
  border-radius: 0;
  font-family: var(--uc-primary-font);
  height: 100%;
}

.loan-result,
.loan-calculator {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#data-loading {
  display: none;
}

.loan-result {
  display: none;
}

.select-tour-type {
  display: flex;
  gap: 10px;
}

.select-tour-type label {
  flex: 0 1 auto;
  width: 50%;
  line-height: 40px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--uc-border-color);
  border-radius: 2px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  color: var(--uc-default-color);
}

.select-tour-type input[type="radio"]:checked + label {
  border-color: var(--uc-primary-color);
  color: var(--uc-primary-color);
}

.shedule-booking-form .scrollableList {
  width: 100%;
}

.shedule-booking-form .scrollableList ul {
  width: calc(100% + 2px);
  height: 200px;
  overflow-y: auto;
}

.overflow-mobile-scroll {
  overflow-x: none;
}

table td,
table th {
  border: none;
  padding: 10px;
}

.table-striped td {
  border-top: 1px solid;
  border-color: var(--uc-border-color);
}

.table-striped th {
  box-shadow: none;
}

.related-property-list .main-title,
.contact-with-agent .main-title,
.single-content-wrapper .main-title {
  font-size: 21px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid;
  border-bottom-color: var(--uc-border-color);
  margin-bottom: 1rem;
}

.comment-head {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 5px;
  gap: 20px;
  justify-content: space-between;
  border-bottom: 1px solid;
  border-bottom-color: var(--uc-border-color);
}

.user-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.comments-title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.comments-title {
  font-size: 18px;
  margin: 0;
}

.user-rating i {
  font-size: 10px;
}

.btn-review {
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--uc-primary-color);
  color: var(--uc-dark-color);
  text-decoration: none;
  display: block;
  line-height: 30px;
  border-radius: 3px;
  height: max-content;
}

.comments-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.comments-body .media {
  display: flex;
  flex-basis: auto;
  align-items: start;
  gap: 1rem;
}

.comments-body .media img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
}

.comments-user-name {
  font-size: 1rem;
  color: var(--uc-white-color);
  font-weight: 600;
  margin-bottom: 0;
}

.star-rating {
  overflow: hidden;
  position: relative;
  height: 20px;
  line-height: 1.2;
  top: 0;
  width: 60px;
  font-family: star;
}

.star-rating::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  color: #d3ced2;
  float: left;
  top: 3px;
  left: 0;
  position: absolute;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--uc-default-color);
}

.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.star-rating span::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  top: 3px;
  position: absolute;
  left: 0;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--bs-yellow);
}

.comments-date {
  font-family: var(--uc-primary-font);
  font-size: 13px;
  margin-bottom: 0.5rem;
  color: var(--uc-text-gray-color);
}

.comments-date a {
  color: var(--uc-white-color);
}

.comments-date a:hover {
  color: var(--uc-primary-color);
}

.comments-body .media-replay {
  display: flex;
  flex-basis: auto;
  align-items: start;
  margin-top: 30px;
  gap: 1rem;
}

.leave-feedback-wrapper {
  background-color: var(--uc-secondary-color);
  padding: 35px;
}

.feedback-title {
  font-size: 18px;
  margin-bottom: 1rem;
}

.leave-feedback-form .scrollableList {
  width: 100%;
}

.leave-feedback-form .scrollableList ul {
  width: calc(100% + 2px);
}

.related-property-list {
  margin-top: 50px;
}

.single-agent-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 2rem;
}

.single-agent-info img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}

.single-agent-info .agent-info {
  display: flex;
  flex-direction: column;
  line-height: initial;
}

.single-agent-info .agent-name {
  margin-bottom: 0;
  font-size: 17px;
}

.single-agent-info .btn-view-listing {
  color: var(--uc-primary-color);
}

.single-property-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 0;
}

.single-contact-agent .scrollableList {
  width: 100%;
}

.single-contact-agent .createdList {
  width: calc(100% + 2px);
}

/*=========================================================
Sidebar Filter
=========================================================*/
.left-sidebar-block {
  flex: 0 0 auto;
  width: 270px;
  min-height: 100vh;
  padding: 30px;
  background-color: var(--uc-white-color);
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.left-sidebar-block::-webkit-scrollbar {
  display: none;
}

.right-sidebar-block {
  flex-grow: 1;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/*=========================================================
# Dashboard
==========================================================*/
.dashboard-header {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid;
  border-bottom-color: var(--uc-border-color);
  background-color: var(--uc-dark-color);
}

.notice-warning {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 24px;
}

.dashboard-widget {
  background-color: var(--uc-secondary-color);
  display: block;
  padding: 35px;
  margin-bottom: 1rem;
}

.dashboard-activity {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

.dashboard-activity li {
  list-style: none;
}

.dashboard-nav .navbar-nav > .nav-item:hover,
.dashboard-nav .navbar-nav > .nav-item.active {
  background: var(--uc-primary-color);
  color: var(--uc-dark-color);
  font-weight: 600;
}

.dashboard-nav .navbar-nav > .nav-item:hover > .nav-link,
.dashboard-nav .navbar-nav > .nav-item.active > .nav-link {
  color: var(--uc-dark-color);
}

.dashboard-nav .navbar-nav {
  margin-bottom: 15px;
}

.dashboard-nav .navbar-nav .nav-link {
  font-size: 15px;
  padding: 7px 15px;
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  color: var(--uc-default-color);
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
}

.dashboard-nav {
  padding: 0 2px;
}

.dashboard-nav .navbar-nav {
  gap: 5px;
  margin: 0;
}

.dashboard-nav .navbar-nav li {
  list-style: none;
  margin: 0;
  position: relative;
}

.dashboard-nav .dropdown-menu {
  visibility: hidden;
  opacity: 0;
  padding: 10px 5px;
  margin: 0;
  position: absolute;
  display: block;
  min-width: 180px;
  left: 100%;
  top: -5px;
  z-index: 10;
  border-radius: 0;
  background-color: var(--uc-secondary-color);
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.dashboard-nav .navbar-nav li.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.dashboard-nav .navbar-nav li.dropdown li.active a,
.dashboard-nav .navbar-nav li.dropdown li a:hover {
  color: var(--uc-white-color);
}

.dashboard-header .navbar .navbar-nav li a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dashboard-user-nav {
  padding: 0 1rem;
}

.dashboard-user-nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.dashboard-user-nav ul li {
  list-style: none;
  margin: 0;
}

.dashboard-user-nav ul li a {
  color: var(--uc-default-color);
}

.dashboard-user-nav ul li a span {
  color: var(--uc-primary-color);
  font-weight: 600;
}

.dashboard-logo {
  padding: 0 10px;
}

.dashboard-logo img {
  width: 100px;
}

.dashboard-logo .logo {
  color: #fff;
  padding: 20px 5px;
  display: block;
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 20px;
}

.db-nav-expand {
  display: none;
}

.dashboard-nav-title {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 0;
  line-height: 40px;
}

.user-option img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin-right: 10px;
}

.navbar-nav.user-option li {
  display: flex;
  align-items: center;
}

.ball::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #fff;
  left: 15px;
  top: 35px;
  opacity: 0.3;
}

.activity-table li {
  line-height: 35px;
}

.dashboard-header sup {
  top: -12px;
  right: inherit;
  left: -18px;
  font-size: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: lightgreen;
  position: absolute;
  line-height: 20px;
  text-align: center;
}

.msg-history {
  height: 60vh;
  overflow-y: scroll;
  margin: 0;
  padding: 0;
}

.active-chat-list {
  height: 65vh;
  overflow-y: scroll;
  margin: 0;
  padding: 0;
}

.msg-history li,
.active-chat-list li {
  display: flex;
  padding: 10px 0;
  align-items: center;
}

.active-chat-list li {
  min-width: 100%;
  line-height: 20px;
  cursor: pointer;
  padding: 10px;
  border-radius: 3px;
}

.active-chat-list li.open-chat {
  background-color: darkred;
}

.active-chat-list li img {
  width: 50px;
  height: 50px;
}

.msg-history li .avata,
.active-chat-list li .avata {
  position: relative;
  cursor: pointer;
  margin-right: 10px;
}

.active-chat-list li.new-message .chat-time,
.active-chat-list li.new-message .chat-info {
  color: var(--uc-white-color);
}

.active-chat-list li .chat-time {
  font-size: 13px;
}

.active-chat-list li .user-status {
  position: absolute;
  top: 32px;
  left: 35px;
}

.active-chat-list li .un-read {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: var(--uc-white-color);
  text-align: center;
  line-height: 19px;
  margin-left: auto;
  color: var(--uc-dark-color);
  font-size: 11px;
  font-weight: 500;
}

.chatbox-head img {
  width: 70px;
  height: 70px;
}

.chat-write-box {
  padding-top: 1.5rem;
  border-top: 1px solid;
  border-color: var(--uc-border-color);
}

.chat-infor .name {
  font-weight: 500;
  font-size: 14px;
  color: var(--uc-general-color);
  display: table;
}

.search-form label {
  width: 100%;
}

.msg-history li .avata img {
  width: 40px;
  height: 40px;
}

.msg-history li.msg-replayer {
  flex-direction: row-reverse;
  margin-left: auto;
}

.msg-history li.msg-replayer .avata {
  margin-right: 0;
  margin-left: 10px;
}

.msg-history li {
  align-items: flex-start;
  width: 75%;
}

.msg-history li .avata {
  flex-shrink: 0;
}

.chat-write-box textarea {
  resize: none;
  padding-right: 115px;
  line-height: 28px;
}

.chat-write-box button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.msg-history li.msg-replayer .chat-info {
  text-align: right;
}

.chatbox-head .user-status {
  position: absolute;
  top: 50px;
  left: 50px;
}

.chatbox-head {
  border-bottom: 1px solid;
  border-color: var(--uc-border-color);
  margin-bottom: 15px;
}

.chat-info {
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.msg-history .chat-info {
  background-color: var(--uc-light-color);
}

.chat-info .receiver {
  font-size: 20px;
  color: var(--uc-dark-color);
  margin-bottom: 0;
}

.chat-info .date-time {
  font-size: 12px;
  color: var(--uc-white-color);
  margin-bottom: 0;
}

.use-on-chat {
  height: 100%;
  background-color: var(--uc-secondary-color);
  padding: 1.5rem;
}

.items-list tr td,
.items-list tr th {
  padding: 20px;
  font-weight: 400;
}

.items-list td img {
  width: 50px;
  float: left;
  margin-right: 10px;
}

.items-list td:hover img {
  filter: grayscale(0);
  -moz-filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

.list-action {
  display: flex;
  gap: 1rem;
}

.list-action a {
  color: var(--uc-white-color);
}

.items-list.bg-transparent tr {
  background-color: transparent;
  border-bottom: 1px solid;
  border-color: var(--uc-border-color);
}

.dashboard-panel .items-list thead tr {
  background-color: var(--uc-dark-color);
  border-bottom: 0;
}

.dashboard-panel .items-list thead tr th {
  color: var(--uc-white-color);
  font-weight: 500;
}

.property-info .property-title {
  font-size: 17px;
  color: var(--uc-white-color);
  font-weight: 500;
  line-height: 15px;
}

.items-list .price {
  font-family: var(--uc-primary-font);
  font-weight: 400;
  color: var(--uc-primary-color);
  font-size: 18px;
}

.submit-property {
  background-color: var(--uc-secondary-color);
  border-radius: 5px;
  position: relative;
  min-height: 60vh;
  padding-top: 10px;
  padding-bottom: 10px;
}

.submit-property label {
  color: var(--uc-white-color);
}

.media-upload .col {
  position: relative;
}

.media-upload a {
  position: absolute;
  top: 10px;
  right: 25px;
  color: var(--uc-dark-color);
  cursor: pointer;
  display: block;
  background: var(--uc-primary-color);
  padding: 4px 12px;
  font-size: 11px;
  border-radius: 3px;
}

.fileupload_label {
  background: transparent;
  cursor: pointer;
  font-weight: 400;
  padding: 70px 0;
  margin-bottom: 30px;
  margin-top: 30px;
  text-align: center;
  background: var(--uc-light-color);
  width: 100%;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.collaps-head {
  background-color: var(--uc-light-color);
  padding: 20px;
  color: var(--uc-white-color);
  display: block;
  cursor: pointer;
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.collaps-content {
  background-color: var(--uc-white-color);
  padding: 20px 0;
}

.submit-property .save-data {
  position: absolute;
  top: 25px;
  right: 30px;
}

.db-review-statistics {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 1rem;
}

.db-review-data {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  background-color: var(--uc-secondary-color);
  border-radius: 10px;
  flex: 1 1 0px;
}

.db-rating-score {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.db-score-avg {
  font-size: 40px;
  font-weight: 700;
  color: var(--uc-white-color);
}

.db-star-rating-bg {
  position: relative;
}

.db-star-rating-bg::before {
  content: "\2605\2605\2605\2605\2605";
  top: 50%;
  position: relative;
  left: 0;
  transform: translateY(-50%);
  text-indent: initial;
  color: #555;
  font-size: 20px;
  letter-spacing: -2px;
}

.db-star-rating {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
}

.db-star-rating::before {
  content: "\2605\2605\2605\2605\2605";
  position: relative;
  text-indent: initial;
  color: #f5b400;
  font-size: 20px;
  letter-spacing: -2px;
}

.db-rating-grow {
  padding: 2px 15px;
  background-color: darkseagreen;
  border-radius: 15px;
  font-size: 12px;
  color: #fff;
  line-height: 27px;
}

.db-score-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.db-score-list li {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  font-weight: 500;
}

.db-score-list .rating-length {
  height: 5px;
  background-color: var(--uc-gray-color);
  position: relative;
}

.db-score-list .rating-length span {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: green;
}

.submited-review-status {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  margin-bottom: 0;
}

.submited-review-status li {
  padding: 0 10px;
  border-right: 1px solid;
  border-color: var(--uc-border-color);
  line-height: 20px;
  list-style: none;
}

.submited-review-status li a {
  font-size: 13px;
  font-weight: 500;
  color: var(--uc-text-gray-color);
  text-decoration: none;
}

.db-comments-author {
  display: flex;
  gap: 10px;
  align-items: center;
}

.db-comments-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.db-comments-author span {
  font-weight: 500;
}

.db-comments-text {
  max-width: 700px;
  padding-bottom: 15px;
  position: relative;
}

.db-review-action {
  position: absolute;
  left: -10px;
  bottom: 0;
  display: flex;
  flex-direction: row;
  visibility: hidden;
  opacity: 0;
}

.db-review-table tbody tr:hover .db-review-action {
  visibility: visible;
  opacity: 1;
}

.db-review-action a {
  display: block;
  padding: 0 10px;
  line-height: 18px;
  text-decoration: none;
  border-right: 1px solid;
  border-color: var(--uc-border-color);
  font-size: 13px;
  font-weight: 400;
  color: var(--uc-white-color);
}

.db-review-action a:hover {
  color: var(--uc-primary-color);
}

.db-review-action a:last-child {
  border: none;
}

.db-review-table tbody td {
  vertical-align: top;
}

.db-response-property .property-title {
  font-size: 15px;
  margin-bottom: 0;
}

.db-feedback-status {
  display: block;
  color: darkorange;
  text-decoration: none;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 500;
}

.admin-profile {
  padding: 50px;
  background-color: var(--uc-secondary-color);
  text-align: center;
}

.admin-avata {
  position: relative;
  display: inline-block;
  text-align: center;
}

.admin-avata label {
  width: 100%;
  text-align: -webkit-center;
}

.admin-avata input[type="image"] {
  width: 200px;
  border-radius: 100%;
  margin-bottom: 10px;
}

.admin-avata label span {
  border-radius: 5px;
  background-color: var(--uc-light-color);
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
  color: var(--uc-default-color);
  font-size: 14px;
  height: 35px;
  line-height: 35px;
  width: 70px;
  display: block;
  cursor: pointer;
  position: absolute;
  top: -20px;
  right: -20px;
}

.admin-profile .admin-name {
  font-size: 18px;
  font-family: var(--uc-primary-font);
  color: var(--uc-white-color);
  font-weight: 700;
}

.admin-profile span {
  width: 100%;
  display: inline-block;
}

.user-profile-details {
  padding: 50px;
  position: relative;
  background-color: var(--uc-secondary-color);
}

.profile-settings {
  padding: 50px;
  background-color: var(--uc-secondary-color);
  position: relative;
}

.profile-settings .custom-check-box {
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.submit-property .tab-underline-active {
  padding: 25px 30px;
  border-bottom: 2px solid;
  border-bottom-color: var(--uc-border-color);
}

.submit-property .tab-underline-active li.active::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -27px;
  left: 0;
  height: 2px;
  background-color: var(--uc-primary-color);
  z-index: 1;
}

.submit-property .tab-element {
  padding: 30px;
}

.submit-property .tab-simple {
  gap: 0;
}

/*==============================================================
# Agent Block
===============================================================*/
[class*="agent-block"] .social-media {
  display: flex;
  gap: 1rem;
}

[class*="agent-block"] .social-media a {
  line-height: 1;
  display: flex;
  align-items: center;
  color: var(--uc-text-gray-color);
}

[class*="agent-block"] .social-media a:hover {
  color: var(--uc-primary-color);
}

/* Agent Block 1 Start */

.agent-block-1 {
  background-color: var(--uc-white);
}

.agent-block-1 .entry-wrapper {
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.agent-block-1 .entry-wrapper:hover {
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1);
}

.agent-block-1 .entry-wrapper:hover img {
  filter: grayscale(0);
  -moz-filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

.agent-block-1 .agent-level {
  position: absolute;
  z-index: 10;
  transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  top: 35px;
  left: -34px;
  width: 100px;
  text-align: center;
  background-color: var(--uc-primary-color);
  font-size: 13px;
  color: var(--uc-dark-color);
  font-weight: 500;
  height: 30px;
  line-height: 30px;
}

.agent-block-1 .entry-content-wrapper {
  padding: 20px;
  background-color: var(--uc-secondary-color);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.agent-block-1 .entry-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.agent-block-1.list-view .entry-content-wrapper {
  display: flex;
  flex-direction: column;
}

.agent-block-1 .join-date {
  font-size: 13px;
  color: var(--uc-text-light-color);
}

.agent-block-1 .entry-rating {
  padding: 0 8px;
  position: relative;
  width: max-content;
  cursor: default;
  background-color: var(--uc-primary-color);
  color: var(--uc-dark-color);
  font-size: 12px;
  line-height: 27px;
  border-radius: 2px;
  font-weight: 600;
}

.agent-block-1 .entry-rating::before {
  position: absolute;
  content: "";
  border: 5px solid;
  border-color: transparent var(--uc-primary-color) transparent transparent;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.agent-block-1 .entry-title,
.agent-block-1 .entry-title a {
  color: var(--uc-white-color);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

.agent-block-1 .entry-content ul {
  margin-bottom: 0;
  padding: 0;
}

.agent-block-1 .entry-content ul li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--uc-default-color);
}

.agent-block-1 .entry-content ul li a {
  color: var(--uc-primary-color);
}

.agent-block-1 .entry-footer {
  display: flex;
  justify-content: space-between;
}

.agent-block-1.list-view .entry-footer {
  margin-top: auto;
}

.agent-block-1 .entry-listed {
  padding: 5px 10px;
  border-radius: 3px;
  display: block;
  font-size: 15px;
  color: var(--uc-white-color);
  font-family: var(--uc-primary-font);
  font-weight: 500;
  line-height: 1;
}

.agent-block-1.list-view .entry-wrapper {
  flex-direction: row;
}

.agent-block-1.list-view .entry-thumbnail-wrapper {
  flex: 0 0 auto;
  width: 300px;
}

/* Agent Block 2 Start */

.agent-block-2 .entry-wrapper {
  padding: 35px;
  background-color: var(--uc-light-color);
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  border: 1px solid;
  border-color: var(--uc-border-color);
  margin: -1px;
}

.agent-block-2 .entry-wrapper:hover {
  -webkit-box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
  box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
  -webkit-transform: translate(0, -10px);
  -moz-transform: translate(0, -10px);
  transform: translate(0, -10px);
  z-index: 10;
}

.agent-block-2 .entry-thumbnail {
  padding: 0 30px;
}

.agent-block-2 .entry-thumbnail img {
  border-radius: 100%;
  margin-bottom: 30px;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.agent-block-2 .entry-wrapper:hover .entry-thumbnail img {
  filter: grayscale(0%);
}

.agent-block-2 .entry-content-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agent-block-2 .entry-title,
.agent-block-2 .entry-title a {
  font-size: 21px;
  font-weight: 500;
  color: var(--uc-white-color);
  text-decoration: none;
}

.agent-block-2 .designation {
  display: inline-block;
  color: var(--uc-default-color);
  font-size: 13px;
  font-family: var(--uc-primary-font);
  font-weight: 500;
  line-height: 24px;
}

.agent-block-3 .entry-wrapper {
  background-color: var(--uc-white-color);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  position: relative;
}

.agent-block-3 .entry-thumbnail {
  width: 150px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  border: 3px solid #eee;
  border-radius: 100%;
  padding: 5px;
}

.agent-block-3 .entry-thumbnail .entry-thumbnail {
  border-radius: 100%;
}

.agent-block-3 .entry-wrapper .entry-title,
.agent-block-3 .entry-wrapper .entry-title a {
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  color: var(--uc-dark-color);
  margin-bottom: 0;
}

.agent-block-3 .agent-media {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.agent-block-3 .agent-media li {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  text-align: center;
  line-height: 40px;
  background-color: var(--uc-light-gray-color);
  list-style: none;
}

.agent-block-3 .agent-media li a {
  color: var(--uc-secondary-color);
  font-size: 12px;
  display: block;
}

.agent-block-3 .entry-footer .contact-agent {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.agent-block-3 .entry-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agent-block-3 .entry-content-wrapper .agents-list {
  line-height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--uc-secondary-color);
  color: var(--uc-white-color);
}

/* Agent Details */

.agent-block-details .entry-wrapper {
  flex-direction: row;
}

.agent-block-details .entry-wrapper:hover img {
  filter: grayscale(0);
  -moz-filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

.agent-block-details .entry-thumbnail-wrapper {
  flex: 0 0 auto;
  width: 35%;
}

.agent-block-details .agent-level {
  position: absolute;
  z-index: 10;
  top: 20px;
  left: -10px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  background-color: var(--uc-primary-color);
  font-size: 14px;
  color: var(--uc-dark-color);
  font-weight: 500;
  height: 35px;
  line-height: 35px;
}

.agent-block-details .entry-content-wrapper {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background-color: var(--uc-secondary-color);
  flex: 1;
  gap: 1rem;
}

.agent-block-details .entry-title,
.agent-block-details .entry-title a {
  color: var(--uc-white-color);
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}

.agent-block-details .entry-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.agent-block-details .entry-content ul {
  margin-bottom: 0;
  padding: 0;
}

.agent-block-details .entry-content ul li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--uc-white-color);
}

.agent-block-details .entry-footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.agent-block-details .entry-review-wrapper {
  margin-top: 1rem;
}

.agent-block-details .entry-listed {
  padding: 5px 10px;
  background-color: var(--uc-light-color);
  border-radius: 3px;
  display: block;
  font-size: 15px;
  color: var(--uc-white-color);
  font-family: var(--uc-primary-font);
  font-weight: 500;
}

.agent-portfolio-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.agent-overview {
  padding: 35px;
  background-color: var(--uc-secondary-color);
}

.contact-with-agent {
  background-color: var(--uc-secondary-color);
  padding: 35px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
}

.agent-portfolio-wrapper .main-title {
  font-size: 21px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid;
  border-bottom-color: var(--uc-border-color);
  margin-bottom: 1rem;
}

/*======================================================
# Photo Gallery
======================================================*/
[class*="gallery-style"] .entry-wrapper:hover img {
  filter: grayscale(0);
  -moz-filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

/* Gallery 1 */
.gallery-style-1 .entry-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-style-1 .entry-title,
.gallery-style-1 .entry-title a {
  color: var(--uc-dark-color);
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 600;
}

.gallery-style-1 .entry-meta {
  display: flex;
  gap: 5px;
}

.gallery-style-1 .entry-meta a {
  background-color: var(--uc-primary-color);
  color: var(--uc-white-color);
  display: block;
  padding: 2px 5px;
  font-size: 12px;
  letter-spacing: 1px;
}

.gallery-style-1 .entry-wrapper::before {
  content: "";
  position: absolute;
  background: rgba(var(--uc-secondary-color-rgba), 0.3);
  height: 100%;
  left: 20%;
  right: 20%;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.gallery-style-1 .entry-wrapper:hover::before {
  opacity: 1;
  left: 0;
  right: 0;
  cursor: pointer;
}

.gallery-style-1 .entry-thumbnail {
  position: relative;
}

.gallery-style-1 a.quick-view,
.gallery-style-1 a.photo-view {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.gallery-style-1 .entry-wrapper:hover a.quick-view {
  visibility: visible;
  opacity: 1;
  margin-left: 24px;
}

.gallery-style-1 .entry-wrapper:hover a.photo-view {
  visibility: visible;
  opacity: 1;
  margin-left: -24px;
}

/* Gallery 2 */

.gallery-style-2 .entry-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gallery-style-2 .entry-title,
.gallery-style-2 .entry-title a {
  color: var(--uc-dark-color);
  font-size: 18px;
  font-weight: 500;
}

.gallery-style-2 .entry-meta {
  display: flex;
  gap: 5px;
}

.gallery-style-2 .entry-meta a {
  background-color: var(--uc-primary-color);
  color: var(--uc-white-color);
  display: block;
  padding: 2px 5px;
  font-size: 12px;
  font-weight: 400;
}

.gallery-style-2 .entry-thumbnail {
  position: relative;
}

.gallery-style-2 a.quick-view,
.gallery-style-2 a.photo-view {
  width: 50px;
  height: 50px;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.gallery-style-2 .entry-wrapper:hover a.quick-view {
  visibility: visible;
  opacity: 1;
  margin-left: 30px;
}

.gallery-style-2 .entry-wrapper:hover a.photo-view {
  visibility: visible;
  opacity: 1;
  margin-left: -30px;
}

/* Gallery 3 */

.gallery-style-3 .entry-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gallery-style-3 .entry-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.gallery-style-3 .entry-title {
  padding: 0 40px;
}

.gallery-style-3 .entry-title,
.gallery-style-3 .entry-title a {
  color: var(--uc-dark-color);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  margin-bottom: 0;
  text-transform: uppercase;
}

.gallery-style-3 .entry-title::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  top: 50%;
  left: 0;
  background-color: var(--uc-gray-color);
}

.gallery-style-3 .entry-title::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  top: 50%;
  right: 0;
  background-color: var(--uc-gray-color);
}

.gallery-style-3 .entry-meta {
  display: flex;
  gap: 10px;
}

.gallery-style-3 .entry-meta a {
  color: var(--uc-primary-color);
  display: block;
  font-weight: 400;
  font-size: 14px;
}

.gallery-style-3 .entry-thumbnail {
  position: relative;
}

.gallery-style-3 a.quick-view,
.gallery-style-3 a.photo-view {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.gallery-style-3 a.quick-view {
  margin-left: 30px;
}

.gallery-style-3 a.photo-view {
  margin-left: -30px;
}

.gallery-style-3 .entry-wrapper:hover a.quick-view {
  width: 50px;
  height: 50px;
  visibility: visible;
  opacity: 1;
}

.gallery-style-3 .entry-wrapper:hover a.photo-view {
  width: 50px;
  height: 50px;
  visibility: visible;
  opacity: 1;
}

/* Gallery 4 */

.gallery-style-4 .entry-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gallery-style-4 .entry-thumbnail {
  position: relative;
}

.gallery-style-4 .entry-thumbnail::before {
  content: "";
  position: absolute;
  background: rgba(var(--uc-secondary-color-rgba), 0.3);
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.gallery-style-4 .entry-wrapper:hover .entry-thumbnail::before {
  opacity: 1;
  width: 90%;
  height: 90%;
  cursor: pointer;
}

.gallery-style-4 .entry-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.gallery-style-4 .entry-title,
.gallery-style-4 .entry-title a {
  color: var(--uc-dark-color);
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  margin-bottom: 0;
}

.gallery-style-4 .entry-meta {
  display: flex;
  gap: 10px;
}

.gallery-style-4 .entry-meta a {
  color: var(--uc-primary-color);
  display: block;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gallery-style-4 a.quick-view,
.gallery-style-4 a.photo-view {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.gallery-style-4 a.quick-view {
  margin-left: 30px;
}

.gallery-style-4 a.photo-view {
  margin-left: -30px;
}

.gallery-style-4 .entry-wrapper:hover a.quick-view {
  width: 50px;
  height: 50px;
  visibility: visible;
  opacity: 1;
}

.gallery-style-4 .entry-wrapper:hover a.photo-view {
  width: 50px;
  height: 50px;
  visibility: visible;
  opacity: 1;
}

/*======================================================
# Partner Logo
======================================================*/
.brand-logo img {
  display: inline-block !important;
}

.brand-style-1 .brand-logo {
  text-align: center;
  width: 100%;
  display: block;
}

.brand-style-1 .brand-logo:hover img {
  -webkit-animation: elementUpshow cubic-bezier(0.6, 0, 0.2, 1) 0.5s 1;
  animation: elementUpshow cubic-bezier(0.6, 0, 0.2, 1) 0.5s 1;
}

@keyframes elementUpshow {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-webkit-calc(-100% - 25px));
    transform: translateY(calc(-100% - 25px));
    opacity: 1;
  }
  51% {
    -webkit-transform: translateY(-webkit-calc(-100% - 25px));
    transform: translateY(calc(-100% - 25px));
    opacity: 1;
  }
  52% {
    -webkit-transform: translateY(-webkit-calc(100% + 25px));
    transform: translateY(calc(100% + 25px));
  }
  86% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/*======================================================
# Compare
======================================================*/
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-list-properties {
  overflow-x: auto;
  width: 100%;
  --bs-table-bg: transparent;
}

.clip-item .fa-times {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25px;
  height: 25px;
  opacity: 0;
  padding: 5px;
  cursor: pointer;
  text-align: center;
  line-height: 16px;
  font-size: 10px;
}

.clip-item:hover .fa-times {
  opacity: 1;
}

.compare-list-properties tr:nth-child(even) {
  background: var(--uc-secondary-color);
}

.compare-list-properties tr:nth-child(odd) {
  background: var(--uc-dark-color);
}

.compare-list-properties td:first-child {
  text-align: left;
  width: 200px;
}

.compare-list-properties td {
  padding: 15px;
  text-align: center;
  position: relative;
  vertical-align: middle;
  color: var(--uc-default-color);
}

.compare-list-properties .available::before,
.compare-list-properties .not-available::before {
  content: "\f00c";
  color: #2ab160;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
}

.compare-list-properties .not-available::before {
  content: "\f00d";
  color: #d43e3e;
}

.compare-list-properties .clip-item .main-title {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 500;
  display: inline-block;
  width: 100%;
  color: var(--uc-white-color);
}

/*=====================================================
# Accordion
*====================================================*/
.ac-card .ac-title,
.ac-block .ac-title {
  padding: 15px 25px;
  border-radius: 5px;
  background-color: var(--uc-gray-color);
  color: var(--uc-white-color);
  font-family: var(--uc-primary-font);
  font-weight: 500;
  font-size: 15px;
  display: block;
  cursor: pointer;
}

.ac-card .ac-collapse,
.ac-block .ac-collapse {
  max-height: max-content;
}

.simple-accordion {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bb-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ac-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ac-toggle.active {
  background-color: var(--uc-primary-color);
  color: var(--uc-dark-color);
}

.ac-collapse {
  padding: 15px 25px;
  background-color: var(--uc-light-color);
  display: none;
}

.panel-content {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/*=====================================================
# Timeline
*====================================================*/
.timeline-style-1,
.timeline-style-2 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-style-1 .entry-wrapper {
  flex-direction: row;
  align-items: start;
  gap: 40px;
}

.timeline-style-1 .entry-date {
  white-space: nowrap;
  flex: 0 0 100px;
  font-family: var(--uc-primary-font);
  text-align: right;
}

.timeline-style-1 .entry-date span {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--uc-primary-color);
  color: var(--uc-white-color);
  font-size: 12px;
  position: relative;
}

.timeline-style-1 .entry-title,
.timeline-style-1 .entry-title a {
  color: var(--uc-dark-color);
}

.timeline-style-1 .entry-date span::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 1px;
  top: 0;
  right: -24px;
  border-width: 12px;
  border-color: transparent;
  border-left-color: var(--uc-primary-color);
  border-style: solid;
}

.timeline-style-1 .entry-content {
  position: relative;
  padding-left: 20px;
}

.timeline-style-1 .entry-content::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 35px;
  width: 1px;
  height: calc(100% - 20px);
  background-color: var(--uc-primary-color);
}

.timeline-style-1 .entry-content::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: var(--uc-primary-color);
}

.timeline-style-1 .entry-author {
  color: var(--uc-dark-color);
}

.timeline-style-1 .entry-author span {
  font-family: "Times New Roman";
  font-style: italic;
}

.timeline-style-2 .entry-wrapper {
  align-items: start;
  gap: 60px;
}

.timeline-style-2 .entry-wrapper:nth-child(odd) {
  flex-direction: row;
}

.timeline-style-2 .entry-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-style-2 .entry-date,
.timeline-style-2 .entry-content {
  flex: 1 1 50%;
}

.timeline-style-2 .entry-date {
  white-space: nowrap;
  font-family: var(--uc-primary-font);
  display: flex;
}

.timeline-style-2 .entry-wrapper:nth-child(odd) .entry-date {
  justify-content: end;
}

.timeline-style-2 .entry-wrapper:nth-child(even) .entry-date {
  justify-content: start;
}

.timeline-style-2 .entry-date span {
  display: flex;
  padding: 0px 10px;
  background-color: var(--uc-primary-color);
  color: var(--uc-dark-color);
  font-size: 13px;
  position: relative;
  height: 24px;
  line-height: 1;
  align-items: center;
}

.timeline-style-2 .entry-title,
.timeline-style-2 .entry-title a {
  color: var(--uc-white-color);
}

.timeline-style-2 .entry-wrapper:nth-child(odd) .entry-date span::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 1px;
  top: 0;
  right: -23px;
  border-width: 12px;
  border-color: transparent;
  border-left-color: var(--uc-primary-color);
  border-style: solid;
}

.timeline-style-2 .entry-wrapper:nth-child(even) .entry-date span::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 1px;
  top: 0;
  left: -23px;
  border-width: 12px;
  border-color: transparent;
  border-right-color: var(--uc-primary-color);
  border-style: solid;
}

.timeline-style-2 .entry-wrapper:nth-child(odd) .entry-content {
  position: relative;
  text-align: left;
}

.timeline-style-2 .entry-wrapper:nth-child(even) .entry-content {
  position: relative;
  text-align: right;
}

.timeline-style-2 .entry-wrapper:nth-child(odd) .entry-content::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 35px;
  width: 1px;
  height: calc(100% - 20px);
  background-color: var(--uc-primary-color);
}

.timeline-style-2 .entry-wrapper:nth-child(odd) .entry-content::after {
  content: "";
  position: absolute;
  left: -32px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: var(--uc-primary-color);
}

.timeline-style-2 .entry-wrapper:nth-child(even) .entry-content::before {
  content: "";
  position: absolute;
  right: -30px;
  top: 35px;
  width: 1px;
  height: calc(100% - 20px);
  background-color: var(--uc-primary-color);
}

.timeline-style-2 .entry-wrapper:nth-child(even) .entry-content::after {
  content: "";
  position: absolute;
  right: -32px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: var(--uc-primary-color);
}

.timeline-style-2 .entry-author {
  color: var(--uc-white-color);
}

.timeline-style-2 .entry-author span {
  font-family: "Times New Roman";
  font-style: italic;
}

.timeline-style-2 .entry-wrapper:nth-child(odd) .entry-date span {
  animation: linear infinite;
  animation-name: right-move;
  animation-duration: 1s;
}

@keyframes right-move {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

.timeline-style-2 .entry-wrapper:nth-child(even) .entry-date span {
  animation: linear infinite;
  animation-name: left-move;
  animation-duration: 1s;
}

@keyframes left-move {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}

/*=====================================================
# Sign In Page
*====================================================*/
.signin-form {
  padding: 50px;
  background-color: var(--uc-secondary-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.signin-form label {
  width: 100%;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.registration-form label {
  width: 100%;
}

/*=====================================================
# Contact Page
*====================================================*/

/*=====================================================
# Custom Scroll Bar
======================================================*/
.dashboard-nav-area::-webkit-scrollbar,
.left-filter-fixed::-webkit-scrollbar,
.nav-leftpush-overlay .navbar-expand-lg .navbar-slide-push::-webkit-scrollbar {
  display: none;
}

.active-chat-list::-webkit-scrollbar,
.msg-history::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.active-chat-list::-webkit-scrollbar-track,
.msg-history::-webkit-scrollbar-track {
  background: var(--theme-white-color);
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* Handle */

::-webkit-scrollbar-thumb {
  background: var(--theme-dark-color);
}

.active-chat-list::-webkit-scrollbar-thumb,
.msg-history::-webkit-scrollbar-thumb {
  background: var(--theme-gray-color);
}
/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  background: var(--theme-primary-color);
}

/*==========================================================
Responsive Code
==========================================================*/
@media screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-item {
    padding: 10px 15px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .navbar .navbar-nav li > ul.dropdown-menu {
    visibility: hidden;
    min-width: 180px;
    display: block;
    background-color: var(--uc-dark-color);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.75) !important;
    opacity: 0;
    border: 0;
    border-radius: 0;
    left: 0;
    top: 100%;
    transform: scaleY(0);
    transform-origin: 0 0;
    margin-top: 8px;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
  }

  .navbar .navbar-nav li > ul.dropdown-menu.mega-dropdown-menu {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 0;
  }

  .navbar .navbar-nav li.visible > ul.dropdown-menu,
  .navbar .navbar-nav li:hover > ul.dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }

  .navbar .navbar-nav li > ul.dropdown-menu ul.dropdown-menu {
    left: 100%;
    top: -16px;
  }

  .navbar .navbar-nav li > ul.dropdown-menu li.visible ul.dropdown-menu,
  .navbar .navbar-nav li > ul.dropdown-menu li:hover ul.dropdown-menu {
    left: 100%;
  }

  .mobile-login {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .box-layout {
    width: 85%;
  }

  .navbar-expand-lg .navbar-nav .nav-item {
    padding: 10px 20px;
  }

  .sidebar-layout .sidebar-block {
    flex: 0 0 auto;
    width: 30%;
  }

  .sidebar-layout .content-block {
    flex: 0 0 auto;
    width: 70%;
  }

  .small-navbar-left {
    padding-left: 50px;
  }
}

@media screen and (max-width: 1399px) {
  .property-list-1.property-block .listing-title,
  .property-list-1.property-block .listing-title a,
  .property-list-2.property-block .listing-title,
  .property-list-2.property-block .listing-title a {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 2px;
  }

  .property-list-1 .property-info {
    gap: 0.5rem;
  }

  .left-sidebar-block {
    width: 250px;
  }

  .hide-laptop {
    display: none !important;
  }
}

@media screen and (max-width: 1199px) {
  .straight-vertical-shape.shape-rotate-lg::after {
    width: 100%;
    height: 50%;
  }

  .header-style-1 .banner-search-form,
  .straight-vertical-shape.shape-lg-none:after {
    display: none;
  }

  .side-navbar-nav {
    display: none;
  }

  .navbar .push-navbar-left {
    position: static;
    height: auto;
    background-color: transparent;
    border: none;
  }

  .navbar .push-nav-toggle {
    width: 40px;
    height: 40px;
    font-size: 24px;
    border: 1px solid;
    border-color: var(--uc-border-color);
  }

  #page_wrapper {
    width: 100vw;
    overflow-x: hidden;
  }

  .left-sidebar-block {
    width: 65px;
  }

  .left-sidebar-block.expand {
    width: 250px;
  }

  .dashboard-nav {
    padding: 0 10px;
  }

  .dashboard-logo .logo {
    padding-left: 0;
    padding-right: 0;
    height: 80px;
    margin-bottom: 0;
  }

  .db-nav-expand {
    display: flex;
    font-size: 16px;
    width: 65px;
    justify-content: start;
    align-items: center;
    color: var(--uc-white-color);
    margin-top: 30px;
    padding: 0 25px;
    gap: 1rem;
  }

  .db-nav-expand i {
    transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
  }

  .expand .db-nav-expand i {
    transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  }

  .db-nav-expand span {
    display: none;
  }

  .expand .db-nav-expand span {
    display: block;
    line-height: 1;
  }

  .post-block-1.list-view .entry-thumbnail img,
  .post-block-2.list-view .entry-thumbnail img {
    transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
  }

  .hide-tablet-landscape {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .comments-title {
    flex-direction: column;
    gap: 10px;
    text-align: left;
    align-items: start;
  }

  .navbar .navbar-nav li > ul.dropdown-menu {
    background-color: var(--uc-dark-color);
    border-radius: 0;
  }

  .single-content-wrapper .property-info li {
    width: 50%;
  }

  .top-header {
    display: none;
  }

  .main-header .navbar .user-panel {
    display: none;
  }

  .header-absolute {
    position: static;
    background-color: var(--uc-dark-color);
  }

  .navbar-expand-lg
    .navbar-nav
    > li.dropdown
    > ul.dropdown-menu
    > li.dropdown
    .dropdown-toggle::after,
  .navbar-nav > li.dropdown > a.nav-link::after,
  .navbar-nav > li.dropdown .dropdown-toggle::after {
    right: 10px;
    width: 30px;
    text-align: center;
    height: 30px;
    line-height: 30px;
    z-index: 10;
  }

  .header-style-1 .navbar-toggler-icon,
  .header-style-1 .navbar-toggler,
  .header-style-2 .navbar-toggler-icon,
  .header-style-2 .navbar-toggler,
  .header-style-3 .navbar-toggler-icon,
  .header-style-3 .navbar-toggler {
    padding: 5px 10px;
  }

  .navbar-toggler {
    border: 1px solid;
    border-color: var(--uc-border-color);
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .field-search {
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .property-search-form.on-slider {
    margin: 0;
    background-color: var(--uc-light-color);
  }

  .property-search-form.on-slider .quick-search {
    box-shadow: none !important;
  }

  .price-range-toggle {
    width: 100%;
  }

  .mobile-login {
    margin-left: auto;
    border: 1px solid;
    border-color: var(--uc-border-color);
    background-color: var(--uc-white-color);
    color: var(--uc-dark-color);
    text-align: center;
    margin-right: 5px;
    width: 42px;
    height: 42px;
    border-radius: 5px;
  }

  .navbar-brand {
    width: 130px;
  }

  .main-header .navbar .btn {
    width: 100%;
  }

  .straight-vertical-shape.shape-rotate-md::after {
    width: 100%;
    height: 50%;
  }

  .straight-vertical-shape.shape-md-none:after {
    display: none;
  }

  .navbar .navbar-contact {
    display: none;
  }

  .spacing-001 {
    padding: 50px;
  }

  .tranding-block-1 .entry-wrapper {
    flex-direction: column;
  }

  .single-property-page .entry-single-header {
    flex-direction: column;
    gap: 1rem;
  }

  .single-property-page .entry-price-wrapper {
    align-items: start;
  }

  .dashboard-user-nav {
    position: absolute;
    top: 0;
    right: 0;
  }

  .dashboard-header .navbar-nav {
    padding-left: 1rem;
    padding-right: 1rem;
    top: 0;
  }

  .dashboard-header sup {
    position: static;
    line-height: 22px;
  }

  .db-comments-author,
  .db-review-statistics {
    flex-direction: column;
  }

  .items-list tr td,
  .items-list tr th {
    padding: 10px;
  }

  .dropdown-menu {
    border: none;
  }

  .hide-tablet-portrait {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  #page_wrapper {
    width: 100vw;
    overflow: hidden;
  }

  .booking-shedule-tour,
  .single-property-calculator,
  .single-property-details,
  .single-property-description,
  .single-property-overview,
  .leave-feedback-wrapper {
    padding: 2rem;
  }

  .single-property-page .entry-single-header {
    padding: 2rem;
    padding-top: 4rem;
  }

  .single-content-wrapper .property-feature li,
  .single-content-wrapper .property-address li {
    width: 100%;
  }

  .comment-head {
    flex-direction: column;
    align-items: start;
  }

  .single-content-wrapper .update-on {
    position: static;
  }

  .entry-property-price-wrapper {
    align-items: start;
  }

  .single-content-wrapper .property-info li {
    width: 100%;
  }

  .copyright {
    text-align: center;
  }

  .bottom-footer-nav {
    justify-content: center;
  }

  .listing-filter-bar {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
  }

  .listing-filter-bar .short-by-wrapper {
    justify-content: space-between;
    width: 100%;
  }

  .overflow-mobile-scroll {
    overflow-x: scroll;
  }

  .xs-mx-none {
    display: none !important;
  }

  .banner-search {
    padding-top: 150px;
  }

  .dashboard-header .navbar-collapse {
    flex-direction: column;
    align-items: start;
  }

  .dashboard-header sup {
    top: 0;
  }

  .dropdown-toggle {
    padding-right: 40px;
  }

  .straight-vertical-shape.shape-rotate-sm::after {
    width: 100%;
    height: 50%;
  }

  .owl-carousel .owl-nav {
    width: 250px;
  }

  .navbar .banner-search-form {
    display: none;
  }

  .spacing-001 {
    padding: 50px 20px;
  }

  .element-class-101 .entry-wrapper {
    padding-right: 50px;
  }

  .tranding-block-1 .entry-content-wrapper {
    padding: 20px;
  }

  .tranding-block-1 .property-info {
    gap: 15px;
  }

  .tranding-block-1 .property-info {
    gap: 10px;
  }

  .full-row {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .col .listing-block-1:last-child,
  .col .listing-block-2:last-child {
    margin-bottom: 0;
  }

  .inner-page-banner {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .property-list-1 .entry-wrapper,
  .property-list-2 .entry-wrapper {
    flex-direction: column;
  }

  .property-list-1 .entry-thumbnail-wrapper,
  .property-list-2 .entry-thumbnail-wrapper {
    width: 100%;
  }

  .property-list-1 .entry-thumbnail img,
  .property-list-2 .entry-thumbnail img {
    transform: none;
  }

  .single-property-page .post-meta {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .agent-block-1.list-view .entry-wrapper {
    flex-direction: column;
  }

  .agent-block-1.list-view .entry-thumbnail-wrapper {
    width: 100%;
  }

  .post-block-1.list-view .entry-thumbnail-wrapper,
  .post-block-2.list-view .entry-thumbnail-wrapper {
    width: 100%;
  }

  .post-block-1.list-view .entry-thumbnail img,
  .post-block-2.list-view .entry-thumbnail img {
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
  }

  .post-block-1.list-view .entry-wrapper,
  .post-block-2.list-view .entry-wrapper {
    flex-direction: column;
  }

  .hide-mobile {
    display: none !important;
  }
}

.kozhibgm {
  margin-top: -45px;
}

.listing-filter-bar .entry-tittlle {
  font-size: 30px;
  margin-bottom: 0;
  line-height: 1.2;
}

.full-roww .werwer {
  font-size: 18px;
  line-height: 24px;
  opacity: 80%;
}

.full-roww {
  padding-bottom: 50px;
  padding-top: 50px;
}

/* .bg-secondaryy{
    background-color: ;
} */

.full-roww .werweri {
  line-height: 27px;
  font-family: var(--uc-general-font);
  margin-top: 0;
  margin-bottom: 1rem;
  opacity: 70%;
}

.sidious {
  margin-left: 99px;
}

.snape .btns {
  margin-right: 255px;
}

.property-slider-wrap .owl-nav {
  display: none !important;
}

.property-slider-wrap .owl-dots {
  display: none !important;
}

.fulll-roww {
  padding-top: 0px;
  padding-bottom: 50px;
}

#whyDubaiMoreContent {
  display: none;
}

.full-rroww {
  padding-top: 0px;
  padding-bottom: 50px;
}

/* Where Next Cards */
.where-next-card {
  display: block;
  background: var(--color-secondary, #2a2a2a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 28px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
}

.where-next-card:hover {
  border-color: var(--color-primary, #c8a96e);
  transform: translateY(-4px);
}

.where-next-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.where-next-card:hover .where-next-icon {
  background: var(--color-primary, #c8a96e);
}

.where-next-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.where-next-card h6 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.where-next-card:hover h6 {
  color: var(--color-primary, #c8a96e);
}

.fuulll-row {
  padding-top: 20px;
  padding-bottom: 50px;
}

.ffull-row .tagliine {
  text-align: center;
}

.ffull-row {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* ===== Custom File Input - CV Upload ===== */
.cv-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bs-secondary, #2b2b2b);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  margin: 0;
  width: 100%;
  height: 46px;
  transition: border-color 0.3s ease;
}

.cv-file-label:hover {
  border-color: rgba(200, 169, 110, 0.5);
}

.cv-file-btn {
  background: #c8a96e;
  color: #000;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.cv-file-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cv-file-text.selected {
  color: #fff;
}

/* ===== Blog Table ===== */
.blog-table-dark {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: transparent;
}

.blog-table-dark thead tr {
  background: rgba(200, 169, 110, 0.15);
}

.blog-table-dark thead th {
  color: #c8a96e;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.blog-table-dark tbody tr {
  background: transparent;
  transition: background 0.2s ease;
}

.blog-table-dark tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.blog-table-dark tbody td {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

/* ── Read More toggle ── */
.ks_readmore_content {
  display: none;
}
.ks_readmore_content.active {
  display: block;
}

/* ── Why Dubai section ── */
.ks_why_dubai_section {
  padding: 60px 0;
}
.ks_why_dubai_title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #fff;
}
.ks_why_dubai_item {
  margin-bottom: 24px;
}
.ks_why_dubai_item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.ks_why_dubai_item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}
.ks_readmore_inner {
  margin-top: 30px;
}
.ks_why_dubai_btn {
  background: var(--bs-primary, #c9a84c);
  color: #fff;
  border: none;
  padding: 10px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.2s;
}
.ks_why_dubai_btn:hover {
  opacity: 0.85;
}

/* ── Call Modal ── */
.ks_call_modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.ks_call_modal.active {
  display: flex;
}
.ks_call_box {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  border-radius: 4px;
}
.ks_call_box button[id="ksCallClose"] {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}
.ks_call_head h3 {
  color: #fff;
  margin-bottom: 4px;
  font-size: 1.2rem;
}
.ks_call_head p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.ks_call_field {
  margin-bottom: 14px;
}
.ks_call_field label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 4px;
}
.ks_call_field input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 9px 12px;
  font-size: 0.88rem;
  outline: none;
  border-radius: 2px;
}
.ks_call_phone_row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ks_call_phone {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 10px;
  flex: 1;
  border-radius: 2px;
}
.ks_call_phone input {
  border: none;
  background: transparent;
  padding: 0;
  flex: 1;
}
.ks_call_code {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  white-space: nowrap;
}
.ks_call_btn {
  background: var(--bs-primary, #c9a84c);
  color: #fff;
  border: none;
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  white-space: nowrap;
}
.ks_call_note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-top: 10px;
}

/* ── Accordion ── */
.ks_guide_accordion_wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ks_guide_item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ks_guide_item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ks_guide_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  user-select: none;
}
.ks_guide_title_left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ks_guide_icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #c8a96e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ks_guide_icon i {
  color: #fff;
  font-size: 16px;
}

.ks_guide_title h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.ks_guide_toggle {
  font-size: 1.4rem;
  color: #c8a96e;
  line-height: 1;
  flex-shrink: 0;
}

.ks_guide_content {
  display: none;
  padding: 0 0 18px 54px;
}
.ks_guide_content p,
.ks_guide_content ol {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}
.ks_guide_steps {
  padding-left: 18px;
}
.ks_guide_steps li {
  margin-bottom: 6px;
}

.ks_guide_item.active .ks_guide_content {
  display: block;
}

/* ── Download modal ── */
.ks_download_popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.ks_download_popup.active {
  display: flex;
}
.ks_download_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.ks_download_modal {
  position: relative;
  z-index: 1;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 40px 36px;
  width: 100%;
  max-width: 520px;
}
.ks_download_modal h3 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.ks_download_modal > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.ks_download_close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}
.ks_download_form .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 4px;
}
.ks_download_form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.ks_download_form .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #c8a96e;
  box-shadow: none;
  color: #fff;
}

/* =====================================================
   Area Detail Page — add these rules into style.css
   ===================================================== */

/* ── FAQ Accordion ── */
.ks_faq_item {
  background: rgba(200, 169, 110, 0.04);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 4px;
  margin-bottom: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.ks_faq_item.active {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.ks_faq_question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 600;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s;
}

.ks_faq_question:hover {
  background: rgba(200, 169, 110, 0.08);
}

.ks_faq_item.active .ks_faq_question {
  background: rgba(200, 169, 110, 0.08);
}

.ks_faq_icon {
  font-size: 1.15rem;
  font-weight: 300;
  margin-left: 12px;
  flex-shrink: 0;
}

.ks_faq_answer {
  display: none;
  padding: 0 20px 15px;
}

.ks_faq_item.active .ks_faq_answer {
  display: block;
}

.ks_faq_answer p {
  font-size: 0.91rem;
  line-height: 1.8;
  margin: 0;
}

.whatsapp_icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.whatsapp_icon a img {
  width: 50px;
}