* {
  margin: 0;
  padding: 0;
  outline: none;
}

html {
  height: 100%;
}

body {
  height: 100%;
  font-family: Montserrat;
  font-size: 14px;
  line-height: 1.7;
  color: var(--theme-base-color);
  overflow-x: hidden;
}

p {
  margin-bottom: 16px;
}

a {
  outline: none;
}

.h-100 {
  height: 100% !important;
}

.w-100 {
  width: 100% !important;
}

.mw-100 {
  max-width: 100%;
}

.mw-500px {
  max-width: 500px;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.border-0 {
  border: none;
}

.d-block {
  display: block;
}

.d-none {
  display: none !important;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.lowercase {
  text-transform: lowercase;
}

.normal {
  text-transform: none;
}

.transition {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

.text-truncate {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden !important;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.ws-nowrap {
  white-space: nowrap;
}

.h-0 {
  height: 0;
}

.theme-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.o-hidden {
  overflow: hidden;
}

.p-relative {
  position: relative !important;
}

.bg-transparent {
  background: transparent !important;
}

.text-muted {
  color: rgba(0, 0, 0, 0.54) !important;
  color: var(--mdc-theme-text-secondary-on-background) !important;
}

.primary-color {
  color: var(--mdc-theme-primary) !important;
}

.accent-color {
  color: var(--mdc-theme-secondary) !important;
}

.warn-color {
  color: var(--mdc-theme-error) !important;
}

.divider {
  position: absolute;
  left: 0;
  width: 100%;
  display: block;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: var(--theme-divider);
}

.badge {
  position: absolute;
  top: 0;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 50%;
  background-color: #ccc;
  overflow: hidden;
  color: #fff;
  font-size: 9px;
}

.badge.md {
  top: -6px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  font-size: 12px;
}

.badge.warn {
  background-color: var(--mdc-theme-error);
}

.badge.primary {
  background-color: var(--mdc-theme-primary);
}

.bg-primary {
  background: var(--mdc-theme-primary) !important;
  color: #fff !important;
}

.bg-accent {
  background: var(--mdc-theme-secondary) !important;
  color: #fff !important;
}

.bg-warn {
  background: var(--mdc-theme-error) !important;
  color: #fff !important;
}

.border-accent {
  border-color: var(--mdc-theme-secondary);
}

.expansion-panel-wrapper .expansion-panel {
  position: relative;
}

.expansion-panel-wrapper .expansion-panel.expanded {
  margin: 16px 0;
}

.expansion-panel-wrapper .expansion-panel:first-child {
  margin-top: 0;
}

.expansion-panel-wrapper .expansion-panel-header {
  padding: 16px 48px 16px 24px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.expansion-panel-wrapper .expansion-panel:not(.expanded) .expansion-panel-header:hover {
  background: rgba(0, 0, 0, .1);
}

.expansion-panel-wrapper .expansion-panel-header::after {
  font-family: 'Material Icons';
  content: '\e313';
  font-size: 24px;
  line-height: 24px;
  display: inline-block;
  position: absolute;
  right: 16px;
  color: var(--mdc-theme-text-secondary-on-background);
  transition: 0.2s;
}

.expansion-panel-wrapper .expansion-panel.expanded .expansion-panel-header::after {
  transform: rotate(180deg);
}

.expansion-panel-wrapper .expansion-panel-body {
  position: relative;
  padding: 0 24px 16px 24px;
}

.mdc-tab-bar-wrapper.centered {
  display: flex;
  flex-direction: column;
}

.mdc-tab-bar-wrapper.centered .mdc-tab-bar {
  width: auto;
  margin: 0 auto;
}

.mdc-tab .mdc-tab__text-label {
  color: var(--theme-base-color);
}

.tab-content {
  display: none;
}

.tab-content--active {
  display: block;
}

.avatar {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

/**************************************************************/
/* MDC override
/**************************************************************/
.mdc-button,
.mdc-form-field,
.mdc-chip,
.mdc-drawer .mdc-list-item,
.mdc-tab,
.mdc-list,
.mdc-data-table__header-cell,
.mdc-data-table__content,
.mdc-data-table__cell {
  font-family: inherit;
  letter-spacing: 0;
}

.mdc-list-divider {
  border-bottom-color: var(--theme-divider);
}

.mdc-drawer,
.mdc-menu .mdc-list {
  color: var(--theme-base-color);
  background-color: var(--mdc-theme-surface);
}

.mdc-drawer .mdc-drawer__title,
.mdc-drawer .mdc-list-item,
.mdc-data-table__header-cell,
.mdc-data-table__content,
.mdc-data-table__cell {
  color: var(--theme-base-color);
}

.mdc-drawer .mdc-drawer__subtitle,
.mdc-drawer .mdc-list-group__subheader {
  color: var(--mdc-theme-text-secondary-on-background);
}

.mdc-fab.primary {
  background-color: var(--mdc-theme-primary);
}

.mdc-chip {
  background-color: var(--theme-unselected-chip);
  color: var(--theme-base-color);
  font-weight: 500;
}

.mdc-chip__icon--trailing {
  color: var(--mdc-theme-text-secondary-on-background);
}

.mdc-card-content>:last-child:not(.mdc-card-footer),
.mdc-card>:last-child:not(.mdc-card-footer) {
  margin-bottom: 0;
}

.mdc-icon-button .material-icons.mat-icon-xs,
.material-icons.mat-icon-xs {
  font-size: 14px !important;
  line-height: 14px !important;
  height: 14px !important;
  width: 14px !important;
}

.mdc-icon-button .material-icons.mat-icon-sm,
.material-icons.mat-icon-sm {
  font-size: 18px !important;
  line-height: 18px !important;
  height: 18px !important;
  width: 18px !important;
}

.mdc-icon-button .material-icons.mat-icon-md,
.material-icons.mat-icon-md {
  font-size: 24px !important;
  line-height: 24px !important;
  height: 24px !important;
  width: 24px !important;
}

.mdc-icon-button .material-icons.mat-icon-lg,
.material-icons.mat-icon-lg {
  font-size: 36px !important;
  line-height: 36px !important;
  height: 36px !important;
  ;
  width: 36px !important;
}

.mdc-icon-button .material-icons.mat-icon-xlg,
.material-icons.mat-icon-xlg {
  font-size: 48px !important;
  line-height: 48px !important;
  height: 48px !important;
  width: 48px !important;
}

.mdc-floating-label {
  font-family: inherit;
  letter-spacing: 0 !important;
  font-size: inherit !important;
}

.mdc-text-field:not(.mdc-text-field--textarea),
.mdc-select__anchor,
.mdc-select--outlined {
  height: 50px;
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,
.mdc-select:not(.mdc-select--disabled) .mdc-select__selected-text {
  color: inherit;
  font-size: inherit;
}

.mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-floating-label,
.mdc-select:not(.mdc-select--disabled):not(.mdc-select--focused) .mdc-floating-label {
  color: var(--mdc-theme-text-secondary-on-background);
}

.mdc-notched-outline:not(.mdc-notched-outline--notched) .mdc-notched-outline__notch,
.mdc-notched-outline:not(.mdc-notched-outline--notched) .mdc-notched-outline__notch {
  display: flex;
  align-items: center;
  border-color: #9f9f9f;
  border-color: var(--theme-inputs-border-color);
}

.mdc-text-field .mdc-notched-outline:not(.mdc-notched-outline--notched) .mdc-notched-outline__notch .mdc-floating-label,
.mdc-select .mdc-notched-outline:not(.mdc-notched-outline--notched) .mdc-notched-outline__notch .mdc-floating-label {
  transform: translateZ(0);
  top: 0;
}

.mdc-text-field:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,
.mdc-select:not(.mdc-select--disabled).mdc-select--focused .mdc-floating-label {
  color: var(--mdc-theme-primary);
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing,
.mdc-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__leading,
.mdc-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__notch,
.mdc-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__trailing {
  border-color: #9f9f9f;
  border-color: var(--theme-inputs-border-color);
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover~.mdc-notched-outline .mdc-notched-outline__leading,
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover~.mdc-notched-outline .mdc-notched-outline__notch,
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover~.mdc-notched-outline .mdc-notched-outline__trailing,
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover~.mdc-notched-outline .mdc-notched-outline__leading,
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover~.mdc-notched-outline .mdc-notched-outline__notch,
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover~.mdc-notched-outline .mdc-notched-outline__trailing,
.mdc-select--outlined:not(.mdc-select--disabled):not(.mdc-select--focused) .mdc-select__selected-text:hover~.mdc-notched-outline .mdc-notched-outline__leading,
.mdc-select--outlined:not(.mdc-select--disabled):not(.mdc-select--focused) .mdc-select__selected-text:hover~.mdc-notched-outline .mdc-notched-outline__notch,
.mdc-select--outlined:not(.mdc-select--disabled):not(.mdc-select--focused) .mdc-select__selected-text:hover~.mdc-notched-outline .mdc-notched-outline__trailing {
  border-color: var(--mdc-theme-on-surface);
  border-width: 2px;
}

.mdc-text-field--outlined:not(.mdc-text-field--textarea).mdc-notched-outline--upgraded .mdc-floating-label--float-above,
.mdc-text-field--outlined:not(.mdc-text-field--textarea) .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
  -webkit-transform: translateY(-31.75px) scale(0.75);
  transform: translateY(-31.75px) scale(0.75);
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
  -webkit-transform: translateY(-31.75px) translateX(-32px) scale(0.75);
  transform: translateY(-31.75px) translateX(-32px) scale(0.75);
}

.mdc-select .mdc-menu {
  width: 100%;
}

.mdc-menu .mdc-list {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  padding: 0;
}

.mdc-select__dropdown-icon {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid;
  margin: 0 4px;
  bottom: 22px;
  background: none;
  color: #9f9f9f;
  color: var(--theme-inputs-border-color);
}

.mdc-select--focused .mdc-select__dropdown-icon {
  background: none;
}

.mdc-select--focused.mdc-select--activated .mdc-select__dropdown-icon {
  -webkit-transform: rotate(180deg) translateY(0);
  transform: rotate(180deg) translateY(0);
}

.mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate)~.mdc-checkbox__background {
  border-color: var(--mdc-theme-text-secondary-on-background);
}

/**************************************************************/
/* Page Loading Spinner
/**************************************************************/
.spinner-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #fff;
  visibility: visible;
  opacity: 1;
  -webkit-transition: visibility 0.5s, opacity 0.3s linear;
  -moz-transition: visibility 0.5s, opacity 0.3s linear;
  transition: visibility 0.5s, opacity 0.3s linear;
}

.spinner-wrapper .spinner-container {
  height: 100%;
  width: 100%;
  display: table;
}

.spinner-wrapper .spinner-container .spinner-outer {
  vertical-align: middle;
  height: 100%;
  display: table-cell;
}

.spinner-wrapper .spinner-container .spinner-outer .spinner {
  position: relative;
  margin: 0 auto;
  height: 50px;
  width: 70px;
  box-sizing: border-box;
  animation: main 2s ease-in infinite;
}

.spinner-wrapper .spinner-container .spinner-outer .spinner .mask {
  box-sizing: border-box;
  overflow: hidden;
  position: absolute;
  border-radius: 3px;
}

.spinner-wrapper .spinner-container .spinner-outer .spinner .plane {
  background: #1976d2;
  width: 100%;
  height: 100%;
  position: absolute;
}

.spinner-wrapper .spinner-container .spinner-outer .spinner .left {
  width: 18px;
  height: 100%;
  left: 0;
}

.spinner-wrapper .spinner-container .spinner-outer .spinner .left .plane {
  bottom: -100%;
  animation: anim1 2s ease-in infinite;
}

.spinner-wrapper .spinner-container .spinner-outer .spinner .top {
  width: 100%;
  height: 18px;
  top: 0;
  border-radius: 1px;
}

.spinner-wrapper .spinner-container .spinner-outer .spinner .top .plane {
  left: -100%;
  animation: anim2 2s ease-in infinite;
}

.spinner-wrapper .spinner-container .spinner-outer .spinner .right {
  width: 18px;
  height: 100%;
  right: 0;
}

.spinner-wrapper .spinner-container .spinner-outer .spinner .right .plane {
  top: -100%;
  animation: anim3 2s ease-in infinite;
}

.spinner-wrapper .spinner-container .spinner-outer .spinner .triangle {
  box-sizing: border-box;
  overflow: hidden;
  position: absolute;
  width: 50px;
  height: 50px;
  top: -25px;
  left: 10px;
  transform: rotate(-45deg);
}

.spinner-wrapper .spinner-container .spinner-outer .spinner .triangle .triangle-plane {
  border: 50px solid transparent;
  border-right: 0;
  border-top-color: #1976d2;
  height: 0;
  width: 0;
  position: absolute;
  animation: anim4 2s ease-in infinite;
}

.spinner-wrapper .spinner-container .spinner-outer .spinner .top-left {
  width: 100%;
  height: 9px;
  transform: rotate(135deg);
  left: -22px;
  top: -28px;
}

.spinner-wrapper .spinner-container .spinner-outer .spinner .top-left .plane {
  left: 100%;
  animation: anim5 2s ease-in infinite;
}

.spinner-wrapper .spinner-container .spinner-outer .spinner .top-right {
  width: 100%;
  height: 9px;
  transform: rotate(45deg);
  right: -22px;
  top: -28px;
}

.spinner-wrapper .spinner-container .spinner-outer .spinner .top-right .plane {
  right: 100%;
  animation: anim6 2s ease-in infinite;
}

.spinner-wrapper .spinner-container .spinner-outer p.spinner-text {
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

@keyframes main {
  0% {
    opacity: 0;
  }

  10%,
  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes anim1 {
  0% {
    bottom: -100%;
  }

  10%,
  100% {
    bottom: 0%;
  }
}

@keyframes anim2 {

  0%,
  10% {
    left: -100%;
  }

  20%,
  100% {
    left: 0%;
  }
}

@keyframes anim3 {

  0%,
  20% {
    top: -100%;
  }

  30%,
  100% {
    top: 0%;
  }
}

@keyframes anim4 {

  0%,
  30% {
    top: -100%;
  }

  40%,
  100% {
    top: 0%;
  }
}

@keyframes anim5 {

  0%,
  40% {
    left: 100%;
  }

  50%,
  100% {
    left: 0%;
  }
}

@keyframes anim6 {

  0%,
  50% {
    right: 100%;
  }

  60%,
  100% {
    right: 0%;
  }
}

/**************************************************************/
/* Header
/**************************************************************/
header.main-toolbar-fixed #main-toolbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

header.has-bg-image #main-toolbar {
  box-shadow: none;
}

header.has-bg-image.main-toolbar-fixed #main-toolbar {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

header.has-bg-image:not(.main-toolbar-fixed) #main-toolbar {
  background: transparent !important;
}

header .logo svg {
  fill: var(--mdc-theme-primary);
}

header.toolbar-1.has-bg-image:not(.main-toolbar-fixed) #main-toolbar .logo svg {
  fill: #fff;
}

header.toolbar-1.has-bg-image:not(.main-toolbar-fixed) .horizontal-menu .mdc-button {
  color: #ffffff;
}

header.toolbar-1.has-bg-image:not(.main-toolbar-fixed) .horizontal-menu .mdc-menu .mdc-button {
  color: var(--theme-base-color);
}

header.toolbar-1.has-bg-image:not(.main-toolbar-fixed) .horizontal-menu .mdc-button.active-link {
  background-color: rgba(var(--theme-primary-rgb), 0.38);
}

header.toolbar-1.has-bg-image:not(.main-toolbar-fixed) .horizontal-menu .mdc-menu .mdc-button.active-link {
  background-color: transparent;
  color: var(--mdc-theme-primary);
}

header.toolbar-1.has-bg-image:not(.main-toolbar-fixed) .material-icons {
  color: #fff;
}

header.toolbar-2 #top-toolbar .toolbar-row:first-child,
header.toolbar-2 #top-toolbar .toolbar-row:first-child .right-section {
  height: 36px;
}

header.toolbar-2 #top-toolbar .toolbar-row:first-child .social-icon {
  display: none;
}

header.toolbar-2 #top-toolbar .toolbar-row:nth-child(2) {
  height: auto;
  font-size: 14px;
  font-style: italic;
  padding-top: 8px;
  padding-bottom: 44px;
}

header.toolbar-2 #top-toolbar .toolbar-row:nth-child(2) .item {
  white-space: normal;
  line-height: 1.5;
  padding: 0 8px;
  max-width: 180px;
}

header.toolbar-2 .horizontal-menu .mdc-button {
  color: #fff;
}

.header-image-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: -72px;
  padding-top: 36px;
}

.header-image-wrapper .header-image-content {
  position: relative;
  min-height: 320px;
  color: #fff;
  z-index: 1;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-image-wrapper .header-image-content.offset-bottom {
  padding-bottom: 80px;
  min-height: 400px;
}

.header-image-wrapper .header-image-content.home-page {
  min-height: 480px;
}

.header-image-wrapper .header-image-content.mh-200 {
  min-height: 200px;
}

.header-image-wrapper .header-image-content .title {
  font-size: 48px;
  text-transform: uppercase;
  padding: 0 16px;
  text-align: center;
}

.header-image-wrapper .header-image-content .desc {
  margin: 0;
  font-size: 24px;
  font-style: italic;
  padding: 0 16px;
  text-align: center;
}

.header-image-wrapper .header-image-content .mdc-button {
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
  text-transform: uppercase;
  margin: 0 4px;
}

.header-image-wrapper .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 1;
}

.header-image-wrapper .bg {
  width: 110%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.header-image-wrapper .bg-anime {
  -webkit-animation-name: MOVE-BG;
  -webkit-animation-duration: 15s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  -moz-animation-name: MOVE-BG;
  -moz-animation-duration: 15s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite;
  -moz-animation-direction: alternate;
  -ms-animation-name: MOVE-BG;
  -ms-animation-duration: 15s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;
  -ms-animation-direction: alternate;
  animation-name: MOVE-BG;
  animation-duration: 15s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@-webkit-keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-7%);
  }
}

@-moz-keyframes MOVE-BG {
  from {
    -moz-transform: translateX(0);
  }

  to {
    -moz-transform: translateX(-7%);
  }
}

@-ms-keyframes MOVE-BG {
  from {
    -ms-transform: translateX(0);
  }

  to {
    -ms-transform: translateX(-7%);
  }
}

@keyframes MOVE-BG {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-7%);
  }
}

/**************************************************************/
/* Top Toolbar 
/**************************************************************/
#top-toolbar {
  position: relative;
  height: 36px;
  font-size: 12px;
  padding: 0 16px;
  z-index: 99;
}

#top-toolbar .mdc-button {
  color: inherit;
  font-size: 12px;
  padding: 0 10px;
}

#top-toolbar .mdc-button:before,
#top-toolbar .mdc-button:after {
  background-color: rgba(255, 255, 255, 0.5);
}

#top-toolbar .v-divider {
  width: 1px;
  height: 26px;
  margin: 0 16px;
  background-color: rgba(var(--theme-primary-rgb-lighter), 0.2);
}

.social-icon {
  display: inherit;
  color: inherit;
}

.social-icon .material-icons {
  background-repeat: no-repeat;
  display: inline-block;
  fill: currentColor;
  height: 24px;
  width: 24px;
}

.social-icon svg.mat-icon.mat-icon-lg {
  height: 37px;
}

#top-toolbar .mdc-menu {
  min-width: 64px;
}

#top-toolbar .mdc-menu .mdc-list {
  padding: 0;
  font-size: 12px;
}

#top-toolbar .mdc-menu .mdc-list-item {
  height: 36px;
  text-transform: uppercase;
}

.user-menu {
  width: 220px;
}

.user-menu .user-info {
  padding: 16px;
  font-size: 14px;
}

.user-menu .user-info img {
  border-radius: 4px;
  margin-right: 16px;
}

.flag-name {
  margin-left: 4px;
}

.toolbar-2 #top-toolbar {
  background-color: var(--mdc-theme-surface);
  color: var(--mdc-theme-on-primary);
  height: auto;
}

/**************************************************************/
/* Main Toolbar 
/**************************************************************/
#main-toolbar {
  position: relative;
  height: 72px;
  padding: 0 16px;
  transition: 0.2s;
  z-index: 9;
  box-sizing: border-box;
  width: 100%;
  background: var(--mdc-theme-primary);
}

#main-toolbar .logo svg {
  fill: var(--mdc-theme-primary);
}

#main-toolbar .mdc-menu {
  border-radius: 0;
}

#main-toolbar .mdc-menu .mdc-list {
  padding: 0;
  font-size: 12px;
}

#main-toolbar .mdc-menu .mdc-list-item {
  height: 36px;
  text-transform: uppercase;
}

.horizontal-menu {
  position: relative;
}

.horizontal-menu .mdc-button {
  height: 38px;
  line-height: 38px;
  padding: 0 16px;
}

.horizontal-menu .mdc-button.active-link {
  color: var(--mdc-theme-primary);
}

.horizontal-menu .mdc-button:not(.active-link) {
  color: #000;
  color: var(--mdc-theme-on-primary);
}

.horizontal-menu .mdc-menu-surface--anchor {
  display: inline-block;
}

.horizontal-menu .mdc-menu-surface--anchor .mdc-menu-surface--anchor {
  width: 100%;
}

.horizontal-menu .mdc-menu-surface--anchor .mdc-menu-surface--anchor .mdc-menu {
  top: 0 !important;
  margin-left: 200px;
}

.horizontal-menu .mdc-menu-surface--anchor .mdc-menu {
  overflow: visible;
}

.horizontal-menu .mdc-menu-surface--anchor .mdc-menu .mdc-button {
  min-width: 200px;
  border-radius: 0px;
}

.horizontal-menu .mdc-menu-surface--anchor .mdc-menu .mdc-button .mdc-button__ripple {
  border-radius: 0px;
}

.horizontal-menu .mdc-menu-surface--anchor .mdc-menu .mdc-button .mdc-button__label {
  text-align: left;
  width: 100%;
}

.horizontal-menu a.menu-item-has-children .mdc-button__label::after {
  font-family: 'Material Icons';
  content: '\e5c5';
  font-size: 24px;
  line-height: 24px;
  display: inline-block;
  position: absolute;
  top: 7px;
}

.horizontal-menu .mdc-menu a.menu-item-has-children .mdc-button__label::after {
  transform: rotate(270deg);
  right: 10px;
}

.horizontal-menu a.mdc-button.menu-item-has-children {
  padding: 0 28px 0 16px;
}

.horizontal-menu .mdc-menu a.mdc-button.menu-item-has-children {
  padding: 0 16px;
}

.toolbar-2 #main-toolbar {
  background-color: var(--mdc-theme-primary);
  color: #fff;
}

.toolbar-2 #main-toolbar #sidenav-toggle {
  color: #fff;
}

.toolbar-2 #main-toolbar #sidenav-toggle .material-icons {
  margin-top: -6px;
}

.toolbar-2 .horizontal-menu .mdc-menu-surface--anchor .mdc-menu .mdc-button {
  color: var(--mdc-theme-on-surface);
}

/**************************************************************/
/* Sidenav
/**************************************************************/
.sidenav.mdc-drawer {
  z-index: 9999;
  width: 280px;
}

.sidenav-scrim.mdc-drawer-scrim {
  z-index: 9998;
}

.page-sidenav.mdc-drawer {
  position: relative;
  float: left;
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 2px;
  width: 288px;
}

.page-drawer-container {
  position: relative;
  display: flex;
}

.page-sidenav-content {
  width: 100%;
  min-height: 600px;
  padding: 2px;
  padding-left: 16px;
  transition: 0.3s;
  overflow: hidden;
  box-sizing: border-box;
}

.page-sidenav.mdc-drawer:not(.mdc-drawer--modal).mdc-drawer--open:not(.mdc-drawer--closing)+.page-sidenav-content {
  margin-left: 256px;
  margin-right: 0;
}

/**************************************************************/
/* Vertical Menu
/**************************************************************/
.vertical-menu {
  padding: 0 16px;
}

.vertical-menu .mdc-button {
  display: flex;
  justify-content: left;
  color: var(--theme-base-color);
  padding: 0 16px;
  min-height: 38px;
}

.vertical-menu .mdc-button.active-link {
  background-color: var(--mdc-theme-primary);
  color: #fff;
}

.vertical-menu .mdc-menu-surface {
  position: relative;
  top: 0 !important;
  box-shadow: none;
  overflow: hidden;
  max-height: 100% !important;
  width: 100%;
}

.vertical-menu .mdc-menu-surface--anchor {
  line-height: normal;
}

.vertical-menu .mdc-menu .mdc-button {
  padding-left: 32px;
}

.vertical-menu .mdc-menu .mdc-menu .mdc-button {
  padding-left: 48px;
}

.vertical-menu a.menu-item-has-children .mdc-button__label::after {
  font-family: 'Material Icons';
  content: '\e5c5';
  font-size: 24px;
  line-height: 24px;
  display: inline-block;
  position: absolute;
  top: 7px;
  right: 8px;
}

/**************************************************************/
/* Carousel
/**************************************************************/
.swiper-lazy-preloader {
  margin-top: 20px;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: none;
}

button.swipe-arrow {
  position: absolute;
  top: 50%;
  margin-top: -22px;
  z-index: 10;
  background-image: none !important;
}

button.swipe-arrow.transparent {
  background: transparent !important;
  box-shadow: none;
}

.swiper-pagination.white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  vertical-align: -1px;
}

.carousel-outer {
  margin: -2px;
  padding: 2px;
}

/**************************************************************/
/* Header Carousel
/**************************************************************/
.header-carousel {
  height: 460px;
}

.header-carousel .slide-item {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #ffffff;
}



.header-carousel .swiper-lazy-preloader {
  top: 10%;
}

.header-carousel .slide-info {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: 2;
  box-sizing: border-box;
}

.header-carousel .slide-info .mdc-card {
  background: rgba(var(--theme-surface-rgb), 0.85);
  text-align: center;
  min-width: 450px;
  transition: 0.4s;
  margin: 0 16px;
}

.header-carousel .slide-info .mdc-card:hover {
  background: var(--mdc-theme-surface);
}

.header-carousel .slide-info .mdc-card .slide-title {
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.header-carousel .slide-info .mdc-card .location {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 24px;
  font-weight: 500;
}

.header-carousel .slide-info .mdc-card .price {
  font-size: 24px;
  min-width: 200px;
  padding: 8px 16px;
  height: 100%;
}

.header-carousel.offset-bottom {
  height: 400px;
}

.header-carousel.offset-bottom .slide-info {
  padding-bottom: 80px;
}

/**************************************************************/
/* Testimonials Carousel
/**************************************************************/
.testimonials-carousel .swiper-container {
  padding-bottom: 50px;
}

.testimonials-carousel .swiper-container .content {
  max-width: 650px;
  margin: 0 auto;
}

.testimonials-carousel .swiper-container .content img {
  border-radius: 50%;
  width: 140px;
  height: 140px;
}

.testimonials-carousel .swiper-container .content .quote {
  font-size: 50px;
  line-height: 14px;
}

.testimonials-carousel .swiper-container .content .quote.open {
  margin-top: 24px;
}

.testimonials-carousel .swiper-container .content .quote.close {
  margin-bottom: 24px;
}

.testimonials-carousel .swiper-container .content .text {
  font-weight: 500;
}

.testimonials-carousel .swiper-container .content .author {
  text-transform: uppercase;
}

/**************************************************************/
/* Clients Carousel
/**************************************************************/
.clients-carousel {
  position: relative;
  padding: 8px 0;
}

.clients-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  /* dynamic width for seamless scroll */
}

.clients-carousel .client-item img {
  max-width: 160px;
  height: auto;
  object-fit: contain;
  display: block;
}

.clients-carousel .swiper-container .client-item {
  height: 88px;
  display: flex;
  align-items: center;
}

.clients-carousel .swiper-container .client-item img {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.clients-carousel .swiper-container .client-item .swiper-lazy-preloader {
  top: 0;
}

/**************************************************************/
/* Compare Carousel
/**************************************************************/
.compare-carousel .swiper-slide {
  height: auto;
}

.compare-toolbar button.swipe-arrow {
  position: relative;
  margin-top: 0;
  right: 0;
  left: 0;
  z-index: 2;
}

.compare-item.property-item .title {
  text-align: center;
}

.compare-item.property-item .address {
  justify-content: center;
}

.compare-item.property-item .mdc-chip {
  font-size: 16px;
  font-weight: 600;
}

.compare-item.property-item .remove {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.compare-item.property-item .details .item {
  padding: 8px 0;
  display: flex;
  flex-direction: row;
  border-bottom: 1px dotted var(--theme-divider);
  color: var(--mdc-theme-text-secondary-on-background);
  font-weight: 500;
}

.compare-item.property-item .details .item span:first-child {
  margin-right: 8px;
  min-width: 114px;
  color: var(--theme-base-color);
}

.compare-item.property-item .details .item .list span {
  min-width: auto;
  color: var(--mdc-theme-text-secondary-on-background);
}

.compare-item.property-item .details .item .list span:not(.last):after {
  content: ",";
}

.compare-item.property-item .details .item .list span.last:after {
  content: none;
}


/**************************************************************/
/* Single Property Main Carousel
/**************************************************************/
.single-property .main-carousel {
  position: relative;
  overflow: hidden;
}

.single-property .main-carousel .swiper-slide img {
  max-width: 100%;
  height: auto;
}

.single-property .main-carousel .control-icons {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
}

.single-property .main-carousel .control-icons button.mdc-button {
  min-width: 36px;
  width: 36px;
  padding: 0;
  margin: 0 4px;
  background: rgba(255, 252, 252, 0.6);
  transition: 0.2s;
  color: rgba(0, 0, 0, 0.87);
}

.single-property .main-carousel .control-icons button.mdc-button:disabled {
  color: rgba(0, 0, 0, 0.26);
}

.single-property .main-carousel .control-icons button.mdc-button:hover:enabled {
  background: rgba(255, 252, 252, 1);
}


.single-property .small-carousel {
  position: relative;
  overflow: hidden;
}

.single-property .small-carousel .swiper-slide img {
  max-width: 100%;
  height: auto;
  display: block;
  opacity: 0.3;
}

.single-property .small-carousel .swiper-slide.active-thumb img {
  border-width: 3px;
  border-style: solid;
  box-sizing: border-box;
  opacity: 1;
  border-color: var(--mdc-theme-primary);
}

/* Show buttons only on mobile */
@media (max-width: 768px) {

  .small-prev,
  .small-next {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
  }

  .small-prev::after,
  .small-next::after {
    font-size: 16px;
    color: #fff;
  }

  .small-prev {
    left: 5px;
  }

  .small-next {
    right: 5px;
  }
}


/**************************************************************/
/* Pages
/**************************************************************/
main.main-toolbar-fixed {
  padding-top: 72px;
}

.main-content-header {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  padding: 7px !important;
}

main.content-offset-to-top .main-content-header {
  margin-top: -80px;
  border-top: 5px solid var(--mdc-theme-primary);
}

.section {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding: 40px 0;
}

.section:before {
  content: '';
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.section.testimonials:before {
  background-image: url('assets/images/props/flat-1/3-big.jpg');
}

.section.agents:before {
  background-image: url('assets/images/props/office-2/4-big.jpg');
}

.section.default:before {
  background-image: url('assets/images/others/default-bg.png');
  background-repeat: repeat;
  background-size: 350px;
  background-position: center;
  opacity: 1;
}

.section .section-title {
  margin-bottom: 20px;
  position: relative;
}

.section .section-title:after {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 160px;
  margin: 0 auto;
  height: 2px;
}


#contact-map {
  height: 400px;
}

.agents-wrapper {
  margin: -16px;
  padding: 32px 0;
}

.agent-wrapper {
  margin: -24px !important;
}

.agent-wrapper img {
  border-radius: 4px;
}

.agent-wrapper .listed-count {
  font-weight: 600;
  min-width: 24px;
}

/**************************************************************/
/* Pricing
/**************************************************************/
.pricing-tabs .tab-content {
  margin: 0 -8px;
}

.pricing-card.mdc-card {
  padding: 0;
  overflow: hidden;
  border-width: 4px 0 0 0;
  border-style: solid;
}

.pricing-card.mdc-card .pricing-title {
  text-transform: uppercase;
  font-weight: 500;
}

.pricing-card.mdc-card .pricing-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.pricing-card.mdc-card .pricing-header small {
  font-weight: normal;
}

.pricing-card.mdc-card .del {
  text-decoration: line-through;
}

.box {
  border-radius: 0;
}

.box .box-header {
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.box .box-header .error {
  font-size: 48px;
  margin-bottom: 12px;
}

.box .box-content {
  position: relative;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.box .box-content .box-content-inner {
  position: absolute;
  top: -34px;
  left: 34px;
  right: 34px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
}

.box .box-content .box-content-header {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
}

.box .box-content .box-content-header.server-error {
  margin-bottom: 36px;
}

.box .box-content .box-text {
  margin-bottom: 10px;
  text-align: center;
}

.box .box-content .box-text:last-child {
  margin-bottom: 15px;
}

.box .box-content .box-footer {
  position: relative;
  bottom: 16px;
}

.box .box-content .box-footer button {
  min-width: 70px;
  margin: 0 2px;
}

.auth {
  white-space: nowrap;
  padding: 7px 14px;
  font-weight: 500;
}

/**************************************************************/
/* Landing
/**************************************************************/
.landing-page .logo svg {
  fill: #fff;
}

.landing-page .header-section {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url('assets/images/props/office-2/1-big.jpg');
}

.landing-page .header-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.81);
}

.landing-page .header-section .content {
  position: relative;
  z-index: 9;
  color: #fff;
  text-align: center;
}

.landing-page .header-section .content h1 {
  font-size: 36px;
  font-weight: 500;
}

.landing-page .header-section .content h4 {
  font-size: 16px;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

.landing-page .main-wrapper {
  margin: -16px;
}

.landing-page .main-wrapper .box {
  text-align: center;
  padding: 16px;
  margin-bottom: 24px;
}

.landing-page .main-wrapper .box h2 {
  padding: 16px 0;
  font-weight: 500;
}

.landing-page .main-wrapper .box .mdc-card {
  background-size: cover;
  height: 300px;
  background-position: top;
  transition: 5s;
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}

.landing-page .main-wrapper .box:hover .mdc-card {
  background-position: bottom;
}

.landing-page p {
  font-size: 16px;
  color: var(--mdc-theme-text-secondary-on-background) !important;
  font-weight: 500;
}

/**************************************************************/
/* Submit Property
/**************************************************************/
.submit-property .tab-content {
  max-width: 760px;
  margin: 0 auto;
}

.submit-property .mdc-text-field,
.submit-property .mdc-select__anchor {
  width: 100%;
}

.submit-property .features .mdc-form-field>label {
  padding: 0;
  margin-right: 8px;
  cursor: pointer;
  color: var(--mdc-theme-text-secondary-on-background) !important;
  font-weight: 500;
}

.dropzone {
  border-color: var(--theme-inputs-border-color);
}

.dropzone .dz-preview .dz-remove:hover {
  background-color: var(--theme-divider);
}

.dropzone .dz-preview .dz-remove svg {
  width: 24px;
  height: 24px
}

.dropzone .dz-preview .dz-remove svg path {
  fill: var(--mdc-theme-primary);
  cursor: pointer;
}

.dropzone .dz-preview .dz-error-message {
  background: var(--mdc-theme-error);
}

.dropzone .dz-preview .dz-error-message:after {
  border-bottom-color: var(--mdc-theme-error);
}

.submit-property .step-section {
  padding: 20px 10px;
  border-radius: 4px;
  margin: 8px 8px 16px;
  background: rgba(0, 0, 0, 0.015);
}

/**************************************************************/
/* Lock Screen
/**************************************************************/
.lock-screen {
  position: relative;
}

.lock-screen:before {
  content: '';
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url('assets/images/others/default-bg.png');
  background-repeat: repeat;
  background-size: 350px;
  background-position: center;
  opacity: 1;
}

.lock-screen form {
  position: relative;
}

.lock-screen form .name {
  position: absolute;
  top: -2px;
  right: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.lock-screen form img {
  border-radius: 50%;
  width: 90px;
  height: 90px;
  border: 8px solid #fff;
}

.lock-screen form input {
  background: #fff;
  padding: 16px 44px 16px 16px;
  width: 140px;
  margin-left: -6px;
  border: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  text-align: center;
  outline: none;
  box-shadow: 4px 0px 4px -2px rgba(0, 0, 0, 0.2),
    4px 3px 4px 0px rgba(0, 0, 0, 0.14),
    4px 1px 4px 0px rgba(0, 0, 0, 0.12);
}

.lock-screen form a {
  position: absolute;
  bottom: -8px;
  right: 4px;
  margin: 0;
  font-size: 13px;
}

.lock-screen form button.submit {
  margin-left: -44px;
}

.lock-screen p.time {
  font-size: 48px;
  margin-top: 16px;
}


/**************************************************************/
/* Properties Filter
/**************************************************************/
.search-wrapper {
  margin: -8px;
}

.search-wrapper .mdc-text-field,
.search-wrapper .mdc-select__anchor {
  width: 100%;
}

.search-wrapper .to {
  position: relative;
}

.search-wrapper .to:before {
  font-family: 'Material Icons';
  content: '\e15b';
  position: absolute;
  top: 22px;
  left: -8px;
  color: var(--theme-inputs-border-color);
}

.search-wrapper .features .mdc-form-field>label {
  padding: 0;
  margin-right: 8px;
  cursor: pointer;
  color: var(--mdc-theme-text-secondary-on-background) !important;
  font-weight: 500;
}

/**************************************************************/
/* Properties
/**************************************************************/
.properties-wrapper {
  margin: 8px -8px;
}

.properties-wrapper .item {
  padding: 8px;
}

.property-item {
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding: 0 !important;
  flex-flow: row wrap;
  box-sizing: border-box;
  display: flex;
}

.property-item .thumbnail-section {
  position: relative;
}

.property-item .property-content-wrapper {
  flex: 1 1 100%;
  box-sizing: border-box;
  max-width: 100%;
  padding: 16px;
}

.property-item .property-image {
  position: relative;
  min-height: 180px;
}

.property-item .property-image img {
  width: 100%;
  height: auto;
  display: block;
}

.property-item .property-image .swiper-container .swipe-arrow.mdc-icon-button {
  color: #fff;
  padding: 0;
  display: flex;
}

.property-item .property-image .swiper-container .swiper-lazy-preloader {
  margin-top: 0px;
  top: 42%;
}

.property-item .property-image .swiper-container .swipe-arrow.mdc-icon-button.swiper-button-next {
  right: 4px;
}

.property-item .property-image .swiper-container .swipe-arrow.mdc-icon-button.swiper-button-prev {
  left: 4px;
}

.property-item .property-imagee .swiper-slide {
  text-align: center;
  padding-bottom: 66.25%;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
}

.property-item .property-status {
  position: absolute;
  z-index: 2;
}

.property-status span {
  padding: 3px 6px;
  margin: 4px;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
  background: #01579B;
}

.property-status span.green {
  background: #558B2F;
}

.property-status span.blue {
  background: #1E88E5;
}

.property-status span.teal {
  background: #009688;
}

.property-status span.orange {
  background: #FFA000;
}

.property-status span.red {
  background: #F44336;
}

.property-status span.dark {
  background: #000;
}

.property-item .control-icons {
  position: absolute;
  z-index: 2;
  right: 4px;
  margin-top: -30px;
}

.property-item .control-icons button.mdc-button {
  height: 26px;
  min-width: 26px;
  width: 26px;
  line-height: 26px;
  padding: 0;
  background: rgba(255, 252, 252, 0.6);
  transition: 0.2s;
  color: rgba(0, 0, 0, 0.87);
}

.property-item .control-icons button.mdc-button:disabled {
  color: rgba(0, 0, 0, 0.26);
}

.property-item .control-icons button.mdc-button:hover:enabled {
  background: rgba(255, 252, 252, 1);
}

.property-item .property-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
}

.property-item .property-content .grow {
  flex: 1 1 100%;
  box-sizing: border-box;
  max-height: 100%;
}

.property-item .title {
  font-size: 18px;
}

.property-item .title a {
  transition: 0.2s;
  text-decoration: none;
  color: var(--theme-base-color);
}

.property-item .title a:hover {
  color: var(--mdc-theme-primary);
}

.property-item .address,
.property-item .date {
  font-style: italic;
  margin-top: 8px;
  display: flex;
  align-items: center;
  color: var(--mdc-theme-text-secondary-on-background) !important;
  font-weight: 500;
}

.property-item .address .material-icons,
.property-item .date .material-icons {
  margin-left: -4px;
}

.property-item .price span {
  display: block;
}

.property-item .features p span:first-child {
  float: left;
  padding: 0 .4em 0 0;
  color: var(--mdc-theme-text-secondary-on-background) !important;
  font-weight: 500;
}

.property-item .features p span+span {
  float: right;
  padding: 0 0 0 .4em;
  font-weight: 500;
}

.property-item .features p:after {
  content: "";
  display: block;
  overflow: hidden;
  height: 1em;
  border-bottom: 1px dotted #ccc;
  border-bottom: 1px dotted var(--theme-divider);
}

.ratings {
  color: #fbc02d;
}

.property-item .description {
  color: var(--mdc-theme-text-secondary-on-background) !important;
  font-weight: 500;
}

.property-item.grid-item {
  flex-direction: row;
  flex-flow: column !important;
}

.property-item.grid-item .description {
  display: none;
}

.property-item.grid-item.column-2 .title {
  font-size: 22px;
}

.property-item.grid-item.column-2 .price {
  font-size: 18px;
}

.property-item.grid-item.column-3 .title {
  font-size: 18px;
}

.property-item.grid-item.column-3 .address,
.property-item.grid-item.column-3 .date {
  font-size: 12px;
}

.property-item.grid-item.column-3 .address .material-icons,
.property-item.grid-item.column-3 .date .material-icons {
  font-size: 18px;
  width: 18px;
  height: 18px;
}

.property-item.grid-item.full-width-page.column-2 .title {
  font-size: 28px;
}

.property-item.grid-item.full-width-page.column-2 .price {
  font-size: 20px;
}

.property-item.grid-item.full-width-page.column-3 .title {
  font-size: 22px;
}

.property-item.grid-item.full-width-page.column-3 .address,
.property-item.grid-item.full-width-page.column-3 .date {
  font-size: 14px;
}

.property-item.grid-item.full-width-page.column-3 .address .material-icons,
.property-item.grid-item.full-width-page.column-3 .date .material-icons {
  font-size: 24px;
  width: 24px;
  height: 24px;
}

.property-item.grid-item.full-width-page.column-3 .price {
  font-size: 18px;
}

.property-item.grid-item.full-width-page.column-4 .title {
  font-size: 18px;
}

.property-item.grid-item.full-width-page.column-4 .address,
.property-item.grid-item.full-width-page.column-4 .date {
  font-size: 12px;
}

.property-item.grid-item.full-width-page.column-4 .address .material-icons,
.property-item.grid-item.full-width-page.column-4 .date .material-icons {
  font-size: 18px;
  width: 18px;
  height: 18px;
}

.property-item.list-item .thumbnail-section {
  flex: 1 3 100%;
  box-sizing: border-box;
  max-width: 40%;
}

.property-item.list-item .property-content-wrapper {
  flex: 1 1 100%;
  box-sizing: border-box;
  max-width: 60%;
}

.property-item.list-item .title {
  font-size: 22px;
  margin-top: -8px;
}

.property-item.list-item .price {
  font-size: 20px;
}

.property-item.list-item .features {
  display: flex;
  flex-flow: wrap;
}

.property-item.list-item .features p {
  margin-right: 24px;
  display: flex;
  white-space: nowrap;
}

.property-item.list-item .features p span:first-child:after {
  content: ":";
  margin: 0 1px;
}

.property-item.list-item .features p:after {
  content: none;
}

.property-item.list-item:not(.full-width-page) .description {
  display: none;
}

.page-sidenav.mdc-drawer .property-item {
  height: auto !important;
}


/******* Single property *******/
.single-property .page-sidenav-content {
  padding-left: 2px;
  padding-right: 16px;
}

.single-property .details .item span:first-child {
  margin-right: 8px;
  font-weight: 500;
  min-width: 114px;
  display: inline-block;
  color: var(--mdc-theme-text-secondary-on-background);
}

.single-property .details .item .list span {
  font-weight: normal;
  min-width: auto;
  color: var(--theme-base-color);
}

.single-property .details .item .list span:not(.last):after {
  content: ",";
}

.single-property .details .item .list span.last:after {
  content: none;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.single-property .page-sidenav {
  max-width: 360px;
  width: 100%;
}

.widget {
  margin-bottom: 40px;
}

.widget .widget-title {
  margin: 0 -16px 16px;
  padding: 8px 16px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
}

.widget .widget-title:first-child .widget-title {
  margin: -16px -16px 16px;
  padding: 8px 16px;
  text-transform: uppercase;
  font-weight: 500;
}

/**************************************************************/
/* Pagination
/**************************************************************/
.theme-pagination {
  padding: 16px;
  width: 100%;
}

.theme-pagination li {
  display: inline-block;
  padding: 4px 12px;
}

.theme-pagination .pagination-previous a::before,
.theme-pagination .pagination-previous.disabled::before {
  content: '«';
  display: inline-block;
  margin: 0 8px;
}

.theme-pagination .pagination-next a::after,
.theme-pagination .pagination-next.disabled::after {
  content: '»';
  display: inline-block;
  margin: 0 8px;
}

.theme-pagination a,
.theme-pagination button {
  color: var(--theme-base-color);
  display: block;
  border-radius: 0;
  cursor: pointer;
}

.theme-pagination .current {
  background: var(--mdc-theme-primary);
  color: #fff;
  cursor: default;
}

.theme-pagination .disabled {
  color: var(--mdc-theme-text-secondary-on-background);
}

/**************************************************************/
/* Footer
/**************************************************************/
footer {
  position: relative;
  overflow: hidden;
  background: rgba(33, 33, 33, 0.93);
  color: #fff;
}

footer:before {
  content: '';
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url('assets/images/others/homepage.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

footer .content {
  border-width: 0px 0px 1px 0px;
  border-style: solid;
  border-color: rgba(227, 242, 253, .2);
}

footer .content .logo svg {
  fill: #fff;
}

footer .content .desc {
  color: rgba(255, 255, 255, 0.7);
}

footer .content .subscribe-form {
  position: relative;
  padding: 0;
}

footer .content .subscribe-form .subscribe-input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 16px;
  width: 100%;
  flex: 1 1 0%;
  box-sizing: border-box;
  color: #fff;
  outline: none;
}

footer .content .subscribe-form:before {
  content: '';
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  transition: 0.05s;
}

footer .content .subscribe-form:hover:before {
  border: 2px solid #fff;
}

footer .content .subscribe-form.active:before {
  border: 2px solid var(--mdc-theme-primary);
}

footer .content .subscribe-form .subscribe-btn {
  margin-left: -4px;
  border-radius: 0 4px 4px 0;
  text-transform: uppercase;
  height: 50px;
}

footer .feedback-form .mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-floating-label,
footer .feedback-form .mdc-select:not(.mdc-select--disabled):not(.mdc-select--focused) .mdc-floating-label {
  color: rgba(255, 255, 255, 0.7);
}

footer .feedback-form .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,
footer .feedback-form .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,
footer .feedback-form .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing,
footer .feedback-form .mdc-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__leading,
footer .feedback-form .mdc-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__notch,
footer .feedback-form .mdc-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__trailing {
  border-color: #9f9f9f;
  border-color: rgba(255, 255, 255, 0.3);
}

footer .feedback-form .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover~.mdc-notched-outline .mdc-notched-outline__leading,
footer .feedback-form .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover~.mdc-notched-outline .mdc-notched-outline__notch,
footer .feedback-form .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover~.mdc-notched-outline .mdc-notched-outline__trailing,
footer .feedback-form .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover~.mdc-notched-outline .mdc-notched-outline__leading,
footer .feedback-form .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover~.mdc-notched-outline .mdc-notched-outline__notch,
footer .feedback-form .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover~.mdc-notched-outline .mdc-notched-outline__trailing,
footer .feedback-form .mdc-select--outlined:not(.mdc-select--disabled):not(.mdc-select--focused) .mdc-select__selected-text:hover~.mdc-notched-outline .mdc-notched-outline__leading,
footer .feedback-form .mdc-select--outlined:not(.mdc-select--disabled):not(.mdc-select--focused) .mdc-select__selected-text:hover~.mdc-notched-outline .mdc-notched-outline__notch,
footer .feedback-form .mdc-select--outlined:not(.mdc-select--disabled):not(.mdc-select--focused) .mdc-select__selected-text:hover~.mdc-notched-outline .mdc-notched-outline__trailing {
  border-color: #fff;
}

footer .feedback-form .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,
footer .feedback-form .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,
footer .feedback-form .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing {
  border-color: #6200ee;
  border-color: var(--mdc-theme-primary, #6200ee);
}

footer input,
footer .feedback-form input,
footer .feedback-form textarea {
  font-family: inherit;
}

footer input::placeholder,
footer .feedback-form input::placeholder,
footer .feedback-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

footer input::-moz-placeholder,
footer .feedback-form input::-moz-placeholder,
footer .feedback-form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

footer input::-webkit-input-placeholder,
footer .feedback-form input::-webkit-input-placeholder,
footer .feedback-form textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

footer input::-ms-input-placeholder,
footer .feedback-form input::-ms-input-placeholder,
footer .feedback-form textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

footer #location-map {
  height: 330px;
}

footer .copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

footer .copyright p {
  margin: 0;
  display: flex;
  align-items: center;
}

footer .copyright .mdc-button {
  text-transform: initial;
}

.get-in-touch {
  position: relative;
  margin-top: 80px;
}

.get-in-touch img {
  max-width: 200px;
  position: absolute;
  bottom: 0;
}

.get-in-touch .content {
  padding-left: 200px;
}

.get-in-touch .mdc-button {
  background: var(--mdc-theme-surface);
  color: var(--theme-base-color);
}

/**************************************************************/
/* Spaces
/**************************************************************/
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 2.5rem !important;
}

.mt-5,
.my-5 {
  margin-top: 2.5rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 2.5rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 2.5rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 2.5rem !important;
}

.m-6 {
  margin: 4rem !important;
}

.mt-6,
.my-6 {
  margin-top: 4rem !important;
}

.mr-6,
.mx-6 {
  margin-right: 4rem !important;
}

.mb-6,
.my-6 {
  margin-bottom: 4rem !important;
}

.ml-6,
.mx-6 {
  margin-left: 4rem !important;
}

.m-7 {
  margin: 6rem !important;
}

.mt-7,
.my-7 {
  margin-top: 6rem !important;
}

.mr-7,
.mx-7 {
  margin-right: 6rem !important;
}

.mb-7,
.my-7 {
  margin-bottom: 6rem !important;
}

.ml-7,
.mx-7 {
  margin-left: 6rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 2.5rem !important;
}

.pt-5,
.py-5 {
  padding-top: 2.5rem !important;
}

.pr-5,
.px-5 {
  padding-right: 2.5rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 2.5rem !important;
}

.pl-5,
.px-5 {
  padding-left: 2.5rem !important;
}

.p-6 {
  padding: 4rem !important;
}

.pt-6,
.py-6 {
  padding-top: 4rem !important;
}

.pr-6,
.px-6 {
  padding-right: 4rem !important;
}

.pb-6,
.py-6 {
  padding-bottom: 4rem !important;
}

.pl-6,
.px-6 {
  padding-left: 4rem !important;
}

.p-7 {
  padding: 6rem !important;
}

.pt-7,
.py-7 {
  padding-top: 6rem !important;
}

.pr-7,
.px-7 {
  padding-right: 6rem !important;
}

.pb-7,
.py-7 {
  padding-bottom: 6rem !important;
}

.pl-7,
.px-7 {
  padding-left: 6rem !important;
}


/**************************************************************/
/* Flexbox
/**************************************************************/
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.column {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media only screen and (min-width: 600px) {

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 960px) {

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 1280px) {

  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

/**************************************************************/
/* Options
/**************************************************************/
.options {
  width: 60px;
  height: 300px;
  position: fixed;
  top: 100px;
  right: -62px;
  z-index: 999;
}

.options .options-icon {
  padding: 0;
  position: absolute;
  top: 12px;
  left: -36px;
  min-width: 38px;
  z-index: 1;
  box-shadow: -2px 3px 1px -2px rgba(0, 0, 0, .2),
    -2px 2px 2px 0 rgba(0, 0, 0, .14),
    -2px 1px 5px 0 rgba(0, 0, 0, .12);
}

.options .mdc-card {
  position: absolute;
  padding: 14px;
  width: 100%;
  height: 100%;
}

.options.show {
  right: -2px;
}

.options .mdc-button {
  color: var(--theme-base-color);
  background-color: var(--mdc-theme-surface);
}

.options .mdc-button i.close {
  display: none;
}

.options.show .mdc-button i.close {
  display: flex;
}

.options.show .mdc-button i.palette {
  display: none;
}

.options .skin-primary {
  width: 32px;
  height: 32px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.options .skin-primary .skin-secondary {
  width: 0;
  height: 0;
  padding: 0;
  border-bottom: 32px solid;
  border-left: 32px solid transparent;
}

.options .skin-primary.blue {
  background-color: #1976d2;
  border: 1px solid #1976d2;
}

.options .skin-primary.green {
  background-color: #689f38;
  border: 1px solid #689f38;
}

.options .skin-primary.red {
  background-color: #d32f2f;
  border: 1px solid #d32f2f;
}

.options .skin-primary.pink {
  background-color: #c2185b;
  border: 1px solid #c2185b;
}

.options .skin-primary.purple {
  background-color: #7b1fa2;
  border: 1px solid #7b1fa2;
}

.options .skin-primary.grey {
  background-color: #455a64;
  border: 1px solid #455a64;
}

.options .skin-primary.orange-dark {
  background-color: #f4511e;
  border: 1px solid #f4511e;
}

.options .skin-primary.orange-dark .skin-secondary {
  border-bottom-color: #303030;
}


/**************************************************************/
/* Back To Top
/**************************************************************/
#back-to-top {
  position: fixed;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 999999;
  right: 20px;
  bottom: 20px;
  opacity: .5;
  color: #fff;
  background-color: rgba(0, 0, 0, .75);
  border-radius: 50%;
  transition: 0.3s;
  display: none;
  align-items: center;
  justify-content: center;
}

#back-to-top.show {
  display: flex;
}

#back-to-top:hover {
  opacity: 0.9;
}


/**************************************************************/
/* webkit-scrollbar
/**************************************************************/
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: #e1e1e1;
  border: 0px none #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #cccccc;
}

::-webkit-scrollbar-thumb:active {
  background: #888888;
}

::-webkit-scrollbar-track {
  background: #666666;
  border: 0px none #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-track:hover {
  background: #666666;
}

::-webkit-scrollbar-track:active {
  background: #333333;
}

::-webkit-scrollbar-corner {
  background: transparent;
}


/**************************************************************/
/* Comments
/**************************************************************/
.reviews .review-item {
  display: flex;
}

.reviews .review-content {
  padding-left: 16px;
}

.reviews img.author-img {
  width: 80px;
  height: 80px;
}

.reviews .author-name {
  font-size: 16px;
  font-weight: 500;
}

.reviews .text {
  white-space: unset;
  font-style: italic;
  margin: 10px 0 36px;
}

.comment-form {
  margin: -16px;
  padding: 8px;
}

.headerSwiper,
.headerSwiper .swiper-slide,
.header-image-wrapper {
  width: 100%;
  height: 400px;

}

.headerSwiper .swiper-slide {
  transition: opacity 1.5s ease-in-out !important;
}

.properties-slider .swiper-slide {
  display: flex !important;
  justify-content: center !important;
}



@media (max-width: 575px) {
  .property-item {
    width: 92% !important;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .property-item {
    width: 90% !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .property-item {
    width: 95% !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .property-item {
    width: 100% !important;
  }
}

@media (min-width: 1200px) {
  .property-item {
    width: 100% !important;
  }
}

@media (max-width: 576px) {

  .filter-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    overflow-x: scroll;
  }

  .filter-row .col-xs-6 {
    width: 100% !important;
    text-align: left !important;
  }

  .filter-row a.mdc-button {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 10px 0 !important;
  }

  .filter-row h3 {
    font-size: 18px !important;
  }
}

/* Ensure slider stays inside box */
#projectSlider {
  overflow: hidden;
  position: relative;
}

/* Arrows inside container */
.swiper-button-prev {
  left: 10px !important;
}

.swiper-button-next {
  right: 10px !important;
}

/* Slider wrapper control */
.properties-wrapper {
  position: relative;
}

/* Card */
.property-card {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

.property-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.property-card h4 {
  text-align: center;
  font-size: 18px;
  padding: 14px;
  font-weight: 600;
  margin: 0;
}

/* Arrows */
.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .25s ease;
}

.arrow-btn i {
  font-size: 20px;
  color: #333;
}

.arrow-btn:hover {
  background: #2e55fa;
}

.arrow-btn:hover i {
  color: #fff;
}

/* Arrow position (inside) */
.swiper-button-next,
.swiper-button-prev {
  top: 60%;
  transform: translateY(-50%);
  z-index: 10;
}

/* Smooth slider transition */
.swiper-wrapper {
  transition-timing-function: ease-out !important;
}

/* Mobile */
@media (max-width: 576px) {

  .property-card img {
    height: 150px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

@media (max-width: 576px) {
  .properties-carousel .swiper-slide {
    width: 100% !important;
    display: flex;
    justify-content: center;
  }

  .property-item {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 576px) {

  /* Make arrows visible */
  .prop-prev,
  .prop-next {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 999 !important;
  }

  /* Avoid clipping */
  .properties-carousel,
  .carousel-outer,
  .swiper,
  .swiper-container,
  .swiper-wrapper {
    overflow: visible !important;
  }

  /* Position arrows inside the slider */
  .prop-prev,
  .prop-next {
    position: absolute !important;
    top: 8% !important;
    width: 38px !important;
    height: 38px !important;
    transform: translateY(-50%);
  }

  .prop-prev {
    left: 270px !important;
  }

  .prop-next {
    right: 5px !important;
  }
}

.clients-carousel .custom-nav {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  top: 70%;
  transform: translateY(-50%);
}

.clients-carousel .swiper-button-prev::after,
.clients-carousel .swiper-button-next::after {
  font-size: 18px;
  color: #333;
}

.clients-carousel .swiper-button-prev {
  left: -10px;
}

.clients-carousel .swiper-button-next {
  right: -10px;
}

/* CARD WRAPPER */
.city-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* CITY IMAGE */
.city-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* CITY INFO OVERLAY */
.city-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  color: #fff;
}

.city-info h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.city-info span {
  font-size: 14px;
  opacity: 0.8;
}

/* HOVER EFFECTS */
.city-card:hover img {
  transform: scale(1.08);
}

.city-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* NAV BUTTONS */
.arrow-btn {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  font-size: 20px;
}

.arrow-btn:hover {
  background: #f1f1f1;
}

.prop-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding: 0px 10px 0px 10px;
}

.prop-title h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.prop-count {
  font-size: 13px;
  color: #6c757d;
  font-weight: 500;
  white-space: nowrap;
}

.city-header {
  margin-top: 20px;
  margin-bottom: 10px;
}

.city-header .section-title {
  font-weight: 700;
  font-size: 28px;
  color: #1c1c1c;
}

.city-header .section-title span {
  color: #ff5a3c;
}

.view-all-link {
  font-size: 16px;
  font-weight: 600;
  color: #ff5a3c;
  text-decoration: none;
  transition: 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  text-align: end;
}

.view-all-link:hover {
  color: #d8432e;
  border-bottom: 2px solid #d8432e;
}

.section-subtitle {
  font-size: 14px;
  color: #777;
}

/* Section */
.seller-section {
  padding: 30px 0;
}

.view-all-link {
  text-decoration: none;
  font-weight: 600;
  color: #ff5b2e;
}

/* Header mobile center */
.header-mobile .section-title {
  font-size: 20px;
}

.header-mobile .view-all-link {
  display: inline-block;
  font-size: 15px;
}

/* Slider Wrapper */
.seller-slider-wrapper {
  position: relative;
  overflow: hidden;
}

/* Card */
.seller-card {
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: 0.3s;
  display: block;
  text-decoration: none;
  color: inherit;
}

.seller-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.seller-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: #ff5b2e;
}

.seller-name {
  font-size: 15px;
  margin: 0;
}

.tag {
  font-size: 11px;
  padding: 3px 8px;
}

.seller-bottom {
  font-size: 13px;
  margin-top: 12px;
}

/* Arrows */
.seller-arrow {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
}

.swiper-button-prev.seller-arrow {
  left: -6px;
}

.swiper-button-next.seller-arrow {
  right: -6px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

/* FULL MOBILE RESPONSIVE */
@media(max-width: 480px) {
  .sellerSwiper {
    padding-right: 10px;
  }

  .seller-avatar {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .seller-card {
    padding: 12px;
  }

  .seller-arrow {
    width: 30px;
    height: 30px;
    top: 70%;
  }

  .swiper-button-prev.seller-arrow {
    left: -8px;
  }

  .swiper-button-next.seller-arrow {
    right: -8px;
  }
}

.testimonials-carousel {
  position: relative;
}

.testi-arrow {
  color: #333;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.testi-arrow:after {
  font-size: 18px;
}

.testimonialSwiper .content {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonialSwiper img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.sell-property-section {
  width: 100%;
  padding-top: 20px;
}

.sell-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 30px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(150, 0, 255, 0.15);
  gap: 20px;
}

.sell-box::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  height: 180px;
  background: url("assets/images/wave-bg.png") no-repeat;
  background-size: contain;
  opacity: 0.22;
}

.sell-left img,
.sell-right img {
  width: 160px;
  height: auto;
  max-width: 100%;
}

.sell-content {
  text-align: center;
  max-width: 500px;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.sell-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 10px;
}

.sell-content p {
  font-size: 15px;
  line-height: 22px;
  color: #555;
  margin-bottom: 20px;
}

.sell-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 30px;
  border: 1px solid #8a3dff;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

.float-anim {
  animation: floatMove 3.5s ease-in-out infinite;
}

@keyframes floatMove {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

.fade-in {
  animation: fadeIn 0.9s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* =============================
   RESPONSIVE OPTIMIZATION
   ============================= */

/* Tablets (768px - 991px) */
@media(max-width: 991px) {
  .sell-box {
    padding: 35px 20px;
    gap: 10px;
  }

  .sell-left img,
  .sell-right img {
    width: 130px;
  }

  .sell-content h2 {
    font-size: 24px;
  }
}

/* Mobile Screens (max-width: 768px) */
@media(max-width: 768px) {
  .header-mobile {
    padding-left: 1rem;

  }

  .mobile-holder {
    padding-left: 1rem !important;

  }

  .sell-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .sell-left img,
  .sell-right img {
    width: 120px;
    margin-bottom: 10px;
  }

  .sell-content h2 {
    font-size: 22px;
  }

  .sell-content p {
    font-size: 14px;
    line-height: 20px;
  }

  .sell-btn {
    padding: 10px 28px;
    font-size: 15px;
  }
}

/* Very Small Devices (max-width: 480px) */
@media(max-width: 480px) {
  .sell-box {
    padding: 25px 15px;
  }

  .sell-left img,
  .sell-right img {
    width: 100px;
  }

  .sell-content h2 {
    font-size: 20px;
  }
}

.mdc-chip-set {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mdc-chip {
  padding: 7px 14px;
  background: #f3f3f3;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.25s;
  font-size: 14px;
  border: 1px solid transparent;
}

.mdc-chip:hover {
  background: #e8f5ff;
}

.mdc-chip.active-chip {
  background: #d6ecff;
  border-color: #4ca3ff;
  color: #0065c3;
  font-weight: 600;
}

.inactive-chip {
  opacity: 0.8;
}

.count-chip {
  background: #ffe7c2 !important;
  border: none !important;
  font-weight: 700;
}

/* Responsive */
@media(max-width: 576px) {
  .mdc-chip {
    font-size: 12px;
    padding: 6px 10px;
  }
}

.hot-offer-section img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.full-card {
  overflow: hidden;
  border-radius: 1px;
}

/* Outer arrows */
.outer-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 20;
}

.hotOfferPrev {
  left: 3px;
}

.hotOfferNext {
  right: 3px;
}

/* Inner arrows */
.inner-arrow {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .outer-arrow {
    width: 30px;
    height: 30px;
  }

  .full-card {
    margin: 10px 0;
  }

  .property-content p {
    font-size: 14px;
  }
}

/* FORCE OVERFLOW HIDDEN */
.blogSwiper {
  overflow: hidden !important;
  padding-bottom: 10px;
}

/* Section Title */
.news-section .section-title {
  font-size: 28px;
  font-weight: 700;
}

/* See All */
.see-all-btn {
  font-size: 15px;
  font-weight: 500;
  color: #7647e0;
  text-decoration: none;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  transition: .3s;
}

.blog-card:hover {
  transform: translateY(-6px);
}

/* Image */
.blog-img {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  object-fit: cover;
}

/* Text */
.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin: 12px 0 6px;
}

.blog-text {
  font-size: 14px;
  color: #555;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777;
  margin-top: 12px;
}

/* ARROW BUTTON FIX */
.slider-btn {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-btn i {
  font-size: 22px;
  color: #444;
}

/* Hover */
.slider-btn:hover {
  background: #7647e0;
}

.slider-btn:hover i {
  color: #fff;
}

/* Hide default arrow SVG */
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none !important;
}

/* Responsive */
@media(max-width: 768px) {
  .blog-img {
    height: 160px;
  }

  .news-section .section-title {
    font-size: 22px;
  }
}

.quick-links-x-section {
  overflow: hidden !important;
  padding-top: 40px;
}

.section-title-x {
  font-size: 28px;
  font-weight: 700;
}

/* Tabs */
.qlx-tabs {
  display: flex;
  gap: 25px;
  padding: 0;
  list-style: none;
  margin-bottom: 12px;
}

.qlx-tabs li {
  font-size: 18px;
  cursor: pointer;
  padding-bottom: 6px;
}

.qlx-tabs li.active {
  color: #0056ff;
  font-weight: 600;
  border-bottom: 3px solid #0056ff;
}

/* Arrows */
.qlx-slider-arrows {
  display: flex;
  gap: 12px;
}

.qlx-slider-arrows div {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #007bff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* SLIDE CARD BOX */
.qlx-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

/* COLUMN STYLE */
.qlx-column {
  margin-bottom: 25px;
}

.qlx-column h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.qlx-column a {
  display: block;
  color: #444;
  margin-bottom: 6px;
  text-decoration: none;
}

.view-more-x {
  margin-top: 6px;
  color: #0056ff !important;
  font-weight: 500;
}

/* Responsive */
@media(max-width: 768px) {
  .qlx-card {
    padding: 25px 18px;
  }
}

.swiper-qlx {
  overflow: hidden !important;
}

.hk-footer {
  background: #1a1a1a;
  color: #cccccc;
  padding: 60px 0 30px;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-list {
  list-style: none;
  padding: 10;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list li a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14px;
  transition: all .3s ease;
}

.footer-list li a:hover {
  color: #ff5a5f;
  padding-left: 4px;
}

.contact-item {
  color: #dadada;
  margin-bottom: 10px;
  font-size: 14px;
}

.text-accent {
  color: #ff5a5f;
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #2a2a2a;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  font-size: 18px;
  transition: .3s;
}

.footer-social a:hover {
  background: #ff5a5f;
}

.app-btns img {
  width: 130px;
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #9a9a9a;
  font-size: 14px;
}

.footer-bottom .rs {
  color: #ff5a5f;
  font-weight: 700;
}

.desktop-slider {
  display: block;
}

.mobile-header-image {
  display: none;
}

@media (max-width: 767px) {
  .mobileviewlive {
    display: flex;
    flex-direction: column;
  }
}



@media (max-width: 767px) {
  .header-image-wrapper {
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }


  .desktop-slider {
    display: none !important;
  }

  .mobile-header-image {
    display: block !important;
  }

  .mobile-image-wrapper {
    width: 100%;
    height: 50vh;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 480px) {
  .mobile-image-wrapper {
    height: 42vh;
  }
}

/* Base styling for chips */
.mdc-chip-set {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.mdc-chip {
  flex: 0 1 auto;
}

@media (max-width: 768px) {
  .mdc-chip-set {
    flex-direction: row;
    /* Keep chips in a row, but they will wrap to the next line */
    justify-content: space-between;
    gap: 10px;
  }

  .mdc-chip {
    width: 45%;
    /* Set each chip to take up 48% of the container width (leaving space for 2 columns) */
    margin-bottom: 10px;
    /* Space between rows */
  }
}

.filter-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 5px 0;
  overflow: hidden;
}

.filter-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.filter-scroll::-webkit-scrollbar {
  display: none;
}

.chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 25px;
  background: #fff;
  border: 1px solid #e4e4e4;
  font-size: 14px;
  color: #707070;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.2s;
}

.chip.active {
  border-color: #ff9800;
  color: #ff9800;
  font-weight: 600;
}

.chip.active .dot {
  width: 8px;
  height: 8px;
  background: red;
  border-radius: 50%;
  display: inline-block;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ddd;
  padding: 5px 12px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: opacity 0.3s ease;
}

.left-btn {
  left: 5px;
}

.right-btn {
  right: 5px;
}

/* RESPONSIVE STYLES */
@media (max-width: 575.98px) {
  .chip {
    padding: 8px 12px;
    font-size: 12px;
    gap: 4px;
  }

  .scroll-btn {
    padding: 4px 10px;
    font-size: 16px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .chip {
    padding: 9px 14px;
    font-size: 13px;
    gap: 5px;
  }

  .scroll-btn {
    padding: 5px 11px;
    font-size: 17px;
  }
}

@media (min-width: 768px) {
  .chip {
    padding: 10px 18px;
    font-size: 14px;
    gap: 6px;
  }

  .scroll-btn {
    padding: 5px 12px;
    font-size: 18px;
  }
}

/* Default: show desktop, hide mobile */
.desktop-view {
  display: block;
}

.mobile-view {
  display: none;
}

/* Shared styles for header wrapper */
.header-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Background image */
.header-image-wrapper .bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}

/* Mask overlay */
.header-image-wrapper .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Content positioning */
.header-image-wrapper .header-image-content {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  padding: 0 15px;
}

/* Responsive Text */
.header-image-wrapper .header-image-content .desc {
  font-size: 24px;
  line-height: 1.4;
}

/* Mobile Styles */
@media (max-width: 767px) {
  .desktop-view {
    display: none;
  }

  .mobile-view {
    display: block;
  }

  /* Dynamic height based on viewport */
  .mobile-view {
    height: 30vh;
    /* 50% of viewport height */
  }

  .mobile-view .bg {
    height: 100%;
    background-size: cover;
    background-position: center;
  }

  .mobile-view .header-image-content {
    padding: 0 10px;
  }

  .mobile-view .header-image-content .desc {
    font-size: 16px;
    line-height: 1.3;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1024px) {
  .desktop-view {
    height: 40vh;
  }

  .desktop-view .header-image-content .desc {
    font-size: 20px;
  }
}

.desktop-view {
  height: 40vh;
}

/* Default: Hide on desktop */
.mobile-search-box {
  display: none;
}

/* Only mobile: Show */
@media (max-width: 768px) {
  .mobile-search-box {
    display: block !important;
    width: 100%;
  }

  .mobile-search-box .input-group {
    display: flex;
    gap: 8px;
  }

  .mobile-search-box input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
  }

  .mobile-search-box button {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    border: none;
    color: #fff;
  }

  .mobile-search-box .btn-primary {
    background: #007bff;
  }

  .mobile-search-box .btn-secondary {
    background: #6c757d;
  }
}

.category-box {
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-box h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #222;
}

.category-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
}

.category-list a {
  display: block;
  border-radius: 6px;
  font-size: 14px;
  color: #444;
  transition: 0.3s;
  text-decoration: none;
  cursor: pointer;

}

.property-section-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
  margin-top: 30px;
}

.property-section-title {
  font-size: 22px;
  font-weight: 700;
  color: #0a2342;
  margin-bottom: 25px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.property-column h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}

.property-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.property-list li a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.property-list li a:hover {
  color: #007bff;
  padding-left: 3px;
}

@media (max-width: 768px) {
  .property-grid {
    grid-template-columns: 1fr;
  }
}

.dealer-actions {
  background: #fff;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Dealer Info */
.dealer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dealer-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.dealer-badge {
  background: #ff8c37;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.dealer-name {
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

/* Buttons */
.dealer-buttons {
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.btn-view-number {
  padding: 6px 10px;
  border: 2px solid #007bff;
  background: #fff;
  color: #007bff;
  font-weight: 600;
}

.btn-contact {
  padding: 6px 18px;
  background: #007bff;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

a {
  text-decoration: none !important;
}

/* 🔥 Mobile Responsive */
@media (max-width: 576px) {
  .dealer-actions {
    flex-direction: column;
    /* everything vertical on mobile */
    align-items: flex-start;
    /* align left */
    gap: 15px;
  }

  .dealer-buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* 2 buttons side by side */
  }

  .btn-view-number,
  .btn-contact {
    flex: 1;
    /* equal width buttons */
    text-align: center;
    padding: 10px;
  }
}

.tabs-wrapper {
  position: relative;
  padding: 0 40px;
}

.tabs-container {
  white-space: nowrap;
  padding-bottom: 8px;
  scroll-behavior: smooth;
}

.tab-item {
  display: inline-block;
  margin: 0 25px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  color: #444;
}

.tab-item.active {
  color: #1486E1;
  font-weight: 700;
}

.tab-item.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -6px;
  width: 45%;
  height: 3px;
  border-radius: 50px;
  background: #1486E1;
}

.tab-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36px;
  height: 36px;
  margin: auto;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  cursor: pointer;
}

.tab-arrow.left {
  left: 0;
}

.tab-arrow.right {
  right: 0;
}

.tab-arrow:hover {
  background: #eee;
}

.scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.scroll-box {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  padding: 10px 0px;
}

.scroll-btn {
  position: absolute;
  z-index: 10;
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
}

.left-btn {
  left: 0;
}

.right-btn {
  right: 0;
}

.component__scrollerTabsStyle {
  padding: 5px 10px 5px 10px;
  background-color: whitesmoke;
  color: black;
  font-size: large;
  font-weight: 600;
  font-family: serif;
  border: 1px solid gray;
  border-radius: 8px;
}

.location-wrapper {
  display: flex;
  align-items: center;
  font-size: 15px;
}

.location-icon {
  font-size: 20px;
  margin-right: 6px;
  color: #6c757d;
}

.location-text {
  color: #646464;
  font-weight: 500;
}

.loc-item {
  color: #1b74e4;
  text-decoration: none;
  font-weight: 600;
  padding: 0 3px;
  transition: 0.2s ease-in-out;
}

.loc-item:hover {
  color: #0a58ca;
  text-decoration: underline;
  padding-left: 4px;
}

.owner-card-wrapper {
  padding: 15px;
}

.owner-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.owner-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e6e6e6;
}

.owner-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.owner-subtitle {
  margin: 0;
  font-size: 14px;
  color: #6d7073;
}

.owner-info-list p {
  margin: 5px 0;
  font-size: 15px;
  color: #333;
}

.form-heading {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 600;
}

.user-type-label {
  font-size: 14px;
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: #333;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d4d4d4;
  font-size: 15px;
}

.form-mobile-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.form-small {
  width: 95px;
}

.form-flex {
  flex: 1;
}

.text-counter {
  display: block;
  text-align: right;
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

.form-check-row {
  margin-bottom: 14px;
  font-size: 14px;
}

.form-check-row input {
  margin-right: 6px;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #0066d3;
}

.download-brochure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #343a40;
  font-size: 15px;
  border: 1px solid #dee2e6;
  transition: 0.3s ease-in-out;
}

.download-brochure:hover {
  background: #e9ecef;
  border-color: #ced4da;
  color: #000;
}

.download-brochure .left-icon,
.download-brochure .right-icon {
  font-size: 18px;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .download-brochure {
    width: 100%;
    justify-content: center;
  }
}

/* Sidebar Base */
.custom-filter-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 90%;
  height: 100%;
  background: #ffffff;
  box-shadow: -3px 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: all 0.4s ease;
  overflow-y: auto;
}

/* Mobile Responsive */
@media (max-width: 575px) {
  .custom-filter-sidebar {
    width: 100%;
    right: -100%;
    padding: 15px;
  }
}

/* Tablets */
@media (min-width: 576px) and (max-width: 768px) {
  .custom-filter-sidebar {
    width: 90%;
    right: -90%;
  }
}

/* Small Laptops */
@media (min-width: 769px) and (max-width: 1024px) {
  .custom-filter-sidebar {
    width: 380px;
    right: -380px;
  }
}

/* Overlay */
.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 9998;
}

/* Header */
.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.filter-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.close-filter {
  font-size: 28px;
  cursor: pointer;
}

/* Filter Box */
.filter-box {
  margin-top: 25px;
}

.filter-box h5 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.filter-box label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.filter-toggle-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 600;
  color: #444;
  transition: 0.3s;
}

.filter-toggle-btn i {
  font-size: 22px;
}

.filter-toggle-btn:hover {
  color: #000;
  transform: translateY(-1px);
}

.applyfilter {
  cursor: pointer;
}


/* Filter Container */
.filter-body {
  background: #ffffff;
}

/* Each Box */
.filter-box {
  padding: 15px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f5f7ff, #ffffff);
  border: 1px solid #e0e4ff;
  transition: 0.3s ease;
}

.filter-box:hover {
  box-shadow: 0 0 12px rgba(120, 90, 255, 0.25);
  transform: translateY(-2px);
}

/* Headings */
.filter-box h5 {
  font-size: 17px;
  font-weight: 600;
  color: #4a3aff;
  margin-bottom: 10px;
  border-left: 4px solid #ff5fbd;
  padding-left: 8px;
}

.filter-box h6 {
  font-size: 15px;
  font-weight: 600;
  color: #7a65ff;
  margin-top: 12px;
}

/* Inputs */
.filter-box input[type="text"] {
  border: 2px solid #c9c7ff;
  border-radius: 10px;
  padding: 8px 12px;
  transition: 0.3s;
}

.filter-box input[type="text"]:focus {
  border-color: #7b5bff;
  box-shadow: 0 0 8px rgba(123, 91, 255, 0.5);
}

/* Checkbox Styling */
.filter-box label {
  display: block;
  cursor: pointer;
  margin-bottom: 6px;
  font-size: 14px;
  color: #444;
}

.filter-box input[type="checkbox"] {
  accent-color: #7b5bff;
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

/* Apply Button */
.filter-body .btn-primary {
  background: linear-gradient(90deg, #6b4dff, #ff3fa4);
  padding: 12px;
  font-size: 16px;
  border-radius: 50px;
  border: none;
  transition: 0.3s ease;
}

.filter-body .btn-primary:hover {
  box-shadow: 0 5px 14px rgba(255, 63, 164, 0.5);
}

/* Links */
.filter-box a {
  font-weight: 600;
  text-decoration: none;
}

.filter-box a:hover {
  text-decoration: underline;
}

/* ================================
   MAIN SECTION
================================ */
.post-property-section {
  padding: 50px 0 20px;
  position: relative;
}

/* ================================
   LEFT TITLE AREA
================================ */
.main-heading {
  font-size: 34px;
  font-weight: 800;
  color: #05264d;
  line-height: 1.25;
  margin-bottom: 25px;
  padding-top: 35px;
}

.main-heading .highlight {
  color: #0066ff;
}

/* Bullet List */
.tick-points {
  list-style: none;
  padding-left: 0;
}

.tick-points li {
  font-size: 18px;
  margin-bottom: 12px;
  padding-left: 30px;
  color: #21324a;
  position: relative;
}

.tick-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #00b02f;
  font-size: 19px;
}

/* ================================
   FLOATING RIGHT CARD
================================ */
.form-card {
  padding: 35px;


}

.form-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Buttons Group */
.btn-group-option button {
  padding: 7px 20px;
  border-radius: 22px;
  border: 1px solid #d8e2ec;
  background: #fff;
  font-size: 14px;
  margin-right: 8px;
  transition: 0.25s;
}

.btn-group-option button:hover {
  background: #f0f5ff;
}

.btn-group-option .active {
  background: #0066ff;
  color: #fff;
  border-color: #0066ff;
}

/* Radio Options */
.property-types label {
  margin-right: 22px;
  font-size: 15px;
  cursor: pointer;
}

/* Tags (chips) */
.tags-box span {
  background: #e8f2ff;
  padding: 8px 16px;
  font-size: 14px;
  display: inline-block;
  border-radius: 20px;
  margin: 0 8px 10px 0;
}

/* Input */
.phone-input {
  height: 20px;
  width: 37%;
  padding-left: 10px;
  border-radius: 2px !important;
  border: 1px solid #0066ff;
}

.phone-input:focus {
  border-color: #0066ff;
  box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.2);
}

/* Login Text */
.login-text {
  font-size: 13px;
  margin-top: 8px;
  color: #555;
}

/* Button */
.start-now-btn {
  width: 100%;
  font-size: 17px;
  padding: 12px;
  background: #0066ff;
  color: #fff;
  border: none;
  border-radius: 10px;
  margin-top: 12px;
  transition: 0.25s;
}

.start-now-btn:hover {
  background: #004fd6;
}

/* ================================
   DESKTOP IMAGE SIZING
================================ */
.illustration-box img {
  max-width: 520px;
  border-radius: 8px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {

  .post-property-section {
    padding: 60px 0 60px;
  }

  .form-card {
    position: static;
    width: 85%;
    margin-top: 0px;
  }

  .main-heading {
    font-size: 32px;
  }

  .illustration-box img {
    max-width: 320px;
    margin: auto;
  }
}

@media (max-width: 576px) {

  .main-heading {
    font-size: 28px;
  }

  .tick-points li {
    font-size: 15px;
    padding-left: 25px;
  }

  .form-card {
    padding: 25px;
  }

  .phone-input {
    width: 88%;
  }

  .mobile-view-hidden {
    display: none;
  }

  .post-property-section {
    padding: 0 !important;
  }
}


.top-subtitle {
  font-weight: 600;
  letter-spacing: 2px;
  color: #8e9aac;
  margin-bottom: 5px;
}

.main-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
}

.main-title span {
  color: #0066ff;
}

.step-box {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all .3s ease;
  height: 100%;
  position: relative;
}

.step-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
  margin: 0 auto 20px auto;
  transition: all .3s ease;
}

/* Gradient Icons */
.icon-1 {
  background: linear-gradient(135deg, #ff8c5a, #ff5c7c);
}

.icon-2 {
  background: linear-gradient(135deg, #5c9dff, #0066ff);
}

.icon-3 {
  background: linear-gradient(135deg, #3ecf8e, #0abf53);
}

.step-box h5 {
  font-weight: 700;
  font-size: 20px;
}

.step-box h5 span {
  color: #0066ff;
}

.step-box p {
  color: #6c7a90;
  margin-top: 10px;
}

.post-btn {
  margin-top: 80px;
  display: inline-block;
  padding: 12px 40px;
  font-weight: 600;
  background: #0066ff;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: .3s;
}

.post-btn:hover {
  background: #004ccc;
}

.stats-section {
  position: relative;
  padding: 80px 0;
}

.stats-bg {
  background-image: url('https://images.unsplash.com/photo-1501183638710-841dd1904471');
  background-size: cover;
  background-position: center;
  height: 380px;
  border-radius: 6px;
}

.stats-card {
  background: #ffffff;
  padding: 60px 50px;
  margin-top: -120px;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  width: 100%;
  max-width: 1100px;
}

.stats-heading {
  font-size: 32px;
  font-weight: 700;
  color: #0a2342;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.4;
}

.stats-row .stat-box {
  padding: 15px 10px;
}

.stat-label {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #8d98a8;
  margin-bottom: 5px;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #0a2342;
}

.stat-title {
  color: #6c7a89;
  font-size: 15px;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 767px) {
  .stats-card {
    padding: 40px 25px;
  }

  .stats-heading {
    font-size: 24px;
  }

  .stat-number {
    font-size: 32px;
  }
}

.hk-ab-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #8a96a3;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hk-ab-heading {
  font-size: 38px;
  font-weight: 800;
  color: #263b5e;
  line-height: 1.3;
  margin-bottom: 25px;
}

.hk-ab-text {
  font-size: 16px;
  color: #5c6470;
  line-height: 1.75;
  margin-bottom: 18px;
}

.hk-ab-btn {
  background: #4c84ff;
  color: #fff;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  box-shadow: 0px 4px 12px rgba(76, 132, 255, 0.3);
  transition: 0.3s;
}

.hk-ab-btn:hover {
  background: #3b6fe0;
  box-shadow: 0px 4px 14px rgba(76, 132, 255, 0.4);
}

.hk-action-buttons {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 15px;
  margin-top: 25px;
}

/* Button Design */
.hk-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #263b5e;
  border: 2px solid #e2e8f5;
  transition: 0.3s;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}

.hk-btn i {
  font-size: 18px;
  color: #4c84ff;
  transition: 0.3s;
}

.hk-btn:hover {
  background: #4c84ff;
  color: #fff;
  border-color: #4c84ff;
  transform: translateY(-4px);
  box-shadow: 0px 8px 20px rgba(76, 132, 255, 0.35);
}

.hk-btn:hover i {
  color: #fff;
}

/* Mobile: 2 per row */
@media(max-width: 767px) {
  .hk-action-buttons {
    grid-template-columns: repeat(1, 1fr);
  }
}

#postfreestart {
  display: flex;
  justify-content: center;
}

.form-card {
  width: 100%;
  background: #fff;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef2f8;
}

.form-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0a1f44;
}

.small-label {
  display: block;
  font-size: 14px;
  color: #5b6470;
  margin-bottom: 6px;
  font-weight: 600;
}

/* PURPOSE BUTTON GROUP */
.btn-group-option {
  display: flex;
  gap: 10px;
}

.btn-group-option button {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #d4d9e2;
  background: #f8fafc;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-group-option button.active {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25);
}

/* CATEGORY */
.property-types {
  margin-top: 5px;
}

.property-types label {
  padding: 8px 12px;
  background: #f1f5f9;
  border-radius: 10px;
  border: 1px solid #d6dce5;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* TAGS */
.tags-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.tags-box .tag {
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 13px;
  border: 1px solid #dbe2ec;
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.tags-box .tag.active {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

/* INPUT */
.form-control {
  padding: 11px 14px;
  border-radius: 10px !important;
  border: 1px solid #cfd5e1;
  font-size: 14px;
  width: 40%;
  margin-top: 10px;
}

/* Login text */
.login-text {
  font-size: 13px;
  color: #6b7280;
}

.login-text a {
  color: #007bff;
  font-weight: 700;
}

/* Submit button */
.start-now-btn {
  width: 100%;
  padding: 13px;
  margin-top: 14px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.30);
  transition: 0.2s;
}

.start-now-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 767px) {

  .btn-group-option button.purpose-btn,
  .radio-box {
    flex: 1 1 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {

  #postfreestart {
    padding-top: 10px !important;
    width: 100% !important;
  }

  #postfreestart .form-card {
    width: 100% !important;
  }

  #postfreestart .form-title {
    font-size: 20px !important;
    text-align: center !important;
    margin-bottom: 15px !important;
    width: 100% !important;
  }

  /* PURPOSE BUTTONS */
  #postfreestart .btn-group-option {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  #postfreestart .purpose-btn {
    width: 100% !important;
    padding: 12px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
  }

  /* RADIO GROUP */
  #postfreestart .property-types {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  #postfreestart .radio-box {
    width: 92% !important;
    padding: 12px !important;
    border-radius: 8px !important;
    border: 1px solid #ddd !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 15px !important;
  }

  /* INPUT FIELDS */
  #postfreestart .form-control {
    width: 92% !important;
    margin-bottom: 12px !important;
    font-size: 15px !important;
    padding: 12px !important;
    border-radius: 8px !important;
  }

  /* Row Fix */
  #postfreestart .row {
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
  }

  #postfreestart .login-text {
    text-align: center !important;
    font-size: 14px !important;
    width: 100% !important;
  }

  /* SUBMIT BUTTON */
  #postfreestart .start-now-btn {
    width: 100% !important;
    padding: 14px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    margin-top: 10px !important;
  }
}

/* Wrapper left */
.rx-filter-left {
  flex: 1;
}

/* Input custom */
.rx-search-input {
  width: 95%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #cfcfcf;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

.rx-search-input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 6px rgba(13, 110, 253, 0.2);
}

/* Buttons Box */
.rx-actions-box {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Search Button */
.rx-search-btn {
  background: #0d6efd !important;
  color: #fff !important;
  border: none !important;
  padding: 13px 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s;
}

.rx-search-btn:hover {
  background: #0b5ed7 !important;
}

/* Reset Button */
.rx-reset-btn {
  background: #fff !important;
  border: 1px solid #dc3545 !important;
  color: #dc3545 !important;
  padding: 8px 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s;
}

.rx-reset-btn:hover {
  background: #dc3545 !important;
  color: #fff !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .rx-actions-box {
    width: 100%;
    justify-content: flex-start;
  }

  .rx-actions-box button {
    width: 120px;
  }

  .mobileviewhidden {
    display: none;
  }
}

/* MAIN WRAPPER */
.rk-dealer-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 14px 0px;
  width: 100%;
  flex-wrap: wrap;
  gap: 12px;
}

/* LEFT BOX */
.rk-dealer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Dealer Photo */
.rk-dealer-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0d6efd;
}

/* Dealer Name Box */
.rk-dealer-meta .rk-dealer-tag {
  font-size: 11px;
  font-weight: 700;
  color: #0d6efd;
  letter-spacing: 0.3px;
}

.rk-dealer-meta .rk-dealer-title {
  font-size: 16px;
  font-weight: 600;
  margin: 2px 0 0;
  color: #222;
}

/* Right: Single Button */
.rk-dealer-right {
  display: flex;
  align-items: center;
}

/* Contact Button */
.rk-btn-contact {
  background: #0d6efd;
  padding: 9px 20px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.rk-btn-contact:hover {
  background: #005dce;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 768px) {
  .rk-dealer-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .rk-dealer-right {
    width: 100%;
  }

  .rk-btn-contact {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* WRAPPER */
.rk-slider-wrapper {
  width: 100%;
  margin: 30px auto;
  text-align: center;
}

.rk-slider-title {
  font-size: 15px;
  font-weight: 600;
  color: #8c97a7;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* SLIDER */
.rk-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.rk-slider-track {
  display: flex;
  gap: 22px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 10px 5px;
}

/* CARD */
.rk-slide-card {
  min-width: 254px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.rk-slide-card:hover {
  transform: translateY(-4px);
}

.rk-slide-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.rk-slide-card p {
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2933;
}

/* NEW TAG */
.rk-new-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ff004c;
  color: #fff;
  padding: 3px 7px;
  font-size: 10px;
  border-radius: 4px;
  font-weight: 700;
}

/* ARROWS */
.rk-slide-btn {
  background: #fff;
  border: none;
  padding: 10px 14px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 10;
  transition: 0.2s;
}

.rk-slide-prev {
  left: 1px;
}

.rk-slide-next {
  right: 1px;
}

.rk-slide-btn:hover {
  background: #eef4ff;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .rk-slide-card {
    min-width: 250px;
  }

  .rk-slider-title {
    font-size: 13px;
  }
}

.rk-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.rk-slider-track {
  display: flex;
  gap: 22px;
  overflow-x: auto !important;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
  padding: 10px 5px;
}

/* IMPORTANT FIX */
.rk-slider-track::-webkit-scrollbar {
  display: none;
}

.rk-card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 30px 0;
}

.rk-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 14px;
  text-decoration: none;
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8f0ff;
  transition: 0.3s ease;
  display: block;
}

.rk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.18);
  border-color: #0d6efd;
}

.rk-card-icon {
  width: 85px;
  height: 85px;
  background: #f8f9ff;
  border-radius: 50%;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rk-card-icon img {
  width: 50%;
  height: 50%;
  object-fit: contain;
  opacity: 0.9;
}

.rk-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.rk-card p {
  color: #6d7485;
  font-size: 15px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
  .rk-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .rk-card-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 576px) {

  .custom-filter-box {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 12px !important;
  }

  .rx-filter-left,
  .rx-actions-box {
    width: 100% !important;
  }

  /* Search input full width */
  .rx-search-input {
    width: 92% !important;
    font-size: 14px;
    padding: 10px 12px;
  }

  /* Buttons full width + stacked */
  .rx-actions-box {
    display: flex;
    flex-direction: column;
    gap: 10px !important;
  }

  .rx-search-btn,
  .rx-reset-btn {
    width: 100% !important;
    text-align: center;
    padding: 10px;
    font-size: 15px;
    border-radius: 7px;
  }
}

/* ////////////////////////////////////////////// */

/* -------------------------------
   MEGA MENU WRAPPER
---------------------------------- */
.rk-mega-wrapper {
  display: grid;
  grid-template-columns: 25% 35% 35%;
  gap: 25px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  min-width: 900px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-family: 'Roboto', sans-serif;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
  z-index: 999;
  font-size: 15px;
  /* Base font size */
}

/* Hover to show */
.mdc-menu-surface--anchor:hover .rk-mega-wrapper {
  opacity: 1;
  visibility: visible;
}

/* LEFT COLUMN */
.rk-left-column {
  border-right: 1px solid #e0e0e0;
  padding-right: 20px;
}

.rk-left-column .mdc-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.rk-left-column .mdc-button:hover {
  background: #f0f4ff;
  color: #0d6efd;
}

.rk-center-column .mdc-button {
  padding: 0px 10px !important;
}

/* CENTER COLUMN */
.rk-center-column .column-title {
  font-size: 13px;
  /* smaller heading */
  font-weight: 600;
  color: #777;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rk-center-column .mdc-list div a {
  display: block;
  padding: 5px 0;
  color: #2c3e50;
  text-decoration: none;
  font-size: 14px;
  /* link size */
  transition: color 0.2s;
}

.rk-center-column .mdc-list div a:hover {
  color: #0d6efd;
}

/* RIGHT INFO CARD */
.rk-info-card {
  background: #eaf4ff;
  padding: 18px;
  border-radius: 12px;
}

.rk-info-card .rk-sub {
  font-size: 12px;
  /* small subtitle */
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.rk-info-card .rk-title {
  font-size: 16px;
  /* main title */
  font-weight: 600;
  margin-bottom: 10px;
  color: #1c1c1c;
}

.rk-info-card .rk-features li {
  font-size: 14px;
  /* feature list */
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.rk-info-card .check-icon {
  color: #0d6efd;
  margin-right: 6px;
}

/* LAPTOP/TABLET RESPONSIVE */
@media (max-width:1024px) {
  .rk-mega-wrapper {
    grid-template-columns: 1.2fr 1.2fr 0.8fr;
    gap: 18px;
    padding: 16px;
    font-size: 14px;
    /* slightly smaller on tablet */
  }

  .rk-left-column .mdc-button {
    padding: 8px 12px;
    font-size: 14px;
  }

  .rk-center-column .column-title {
    font-size: 12px;
  }

  .rk-center-column .mdc-list div a {
    font-size: 13px;
  }

  .rk-info-card .rk-title {
    font-size: 15px;
  }

  .rk-info-card .rk-sub {
    font-size: 11px;
  }

  .rk-info-card .rk-features li {
    font-size: 13px;
  }
}

/* HIDE ON MOBILE */
@media (max-width:767px) {
  .rk-mega-wrapper {
    display: none !important;
  }
}


/* Contact info */
.rk-contact {
  font-size: 12px;
  color: #888;
  margin-top: 20px;
  line-height: 1.4;
}

.rk-contact strong {
  color: #333;
}

.rk-contact span {
  font-size: 11px;
  color: #aaa;
}

/* Center column contact/email */
.rk-contact-email {
  font-size: 12px;
  color: #888;
  margin-top: 15px;
}

.rk-contact-email a {
  color: #0d6efd;
  text-decoration: none;
}

.colorsethere {
  color: #000 !important;
}

.rk-features li a {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #2c3e50;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s;
}

.rk-features li a:hover {
  color: #0d6efd;
}

.rk-features .check-icon {
  color: #0d6efd;
  margin-right: 8px;
  font-size: 15px;
}

.rk-center-box {
  display: none;
}

.rk-center-box.show {
  display: block;
}

.rk-left-item:hover,
.rk-left-item.active {
  color: #0d6efd;
  font-weight: 600;
}


.agent-photo-box {
  width: 180px;
  height: 180px;
  margin: auto;
  overflow: hidden;
  border: 6px solid #e9eef6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.agent-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modal */
.contact-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
}

.contact-modal-content {
  background: #fff;
  width: 40%;
  margin: 80px auto;
  padding: 30px;
  border-radius: 16px;
  position: relative;
  animation: fadeIn .3s ease;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;
  font-size: 28px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* Whole Card Custom */
#agentCard {
  background: #ffffff;
  border: 1px solid #e9edf5;
  transition: 0.3s;
}

/* Image Section */
#agentPhotoBox {
  border: 6px solid #dde6f4;
}

/* Name */
#agentName {
  color: #212534;
  font-weight: 700;
}

/* Rating Stars */
#ratingStars i {
  font-size: 20px;
}

/* Icons Row */
#agentCompanyRow i,
#agentEmailRow i,
#agentPhoneRow i {
  font-size: 22px;
  color: #0d6efd;
}

/* Tags */
#agentFeaturedTag span {
  background: #ffe5d0;
  color: #d95c00;
  border-radius: 8px;
  padding: 5px 12px;
}

#agentVerifiedTag span {
  background: #e5ffe9;
  color: #0b8a3d;
  border-radius: 8px;
  padding: 5px 12px;
}

#agentTotalListing span {
  background: #f3f5f8;
  color: #3f4144;
  border-radius: 8px;
  padding: 5px 12px;
}

/* Contact Button */
#contactAgentBtn {
  background: linear-gradient(45deg, #0d6efd, #4a8fff);
  padding: 12px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 123, 255, 0.35);
  transition: 0.3s;
}

#contactAgentBtn:hover {
  background: #0b5ed7;
  transform: translateY(-3px);
}

/* Outer Card Center Fix */
#agentWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image Column = Full center */
#agentImageCol {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Details Column Center Alignment */


/* Name center */
#agentName {
  font-size: 26px;
  color: #0d1b2a;
  font-weight: 700;
}

/* Stars center */



/* Right column styling (align to center vertically) */
#agentRightCol {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
}

/* Tags spacing clean */
#agentRightCol .badge-tag {
  margin: 6px 0;
}

/* Tag glossy look */
.tag-orange {
  display: inline-block;
  background: #ffe8d8;
  padding: 4px 12px;
  border-radius: 8px;
  color: #d06700;
  font-weight: 600;
}

.tag-green {
  display: inline-block;
  background: #e5ffe8;
  padding: 4px 12px;
  border-radius: 8px;
  color: #0b8c3a;
  font-weight: 600;
}

.tag-grey {
  display: inline-block;
  background: #f1f3f6;
  padding: 4px 12px;
  border-radius: 8px;
  color: #333;
  font-weight: 600;
}

/* Contact Agent Button polished */
#contactAgentBtn {
  background: linear-gradient(45deg, #0d6efd, #256eff);
  padding: 12px 28px;
  border-radius: 12px;
  box-shadow: 0px 12px 25px rgba(0, 123, 255, .28);
  transition: .3s ease;
}

#contactAgentBtn:hover {
  transform: translateY(-3px);
  background: #0b5ed7;
}

.sticky-aside {
  position: sticky !important;
  top: 5rem;
  height: fit-content !important;
  z-index: 1 !important;
}

/* .content-offset-to-top,
.theme-container,
.page-drawer-container,
.page-sidenav-content,
.mdc-card {
  overflow: visible !important;
} */

/* WRAPPER */
#dashboardWrapper .mdc-card {
  border-radius: 14px !important;
  border: 1px solid #e6e9f0;
  background: #fff;
  transition: 0.25s ease;
}

#dashboardWrapper .mdc-card:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

/* STAT BOXES */
#dashboardWrapper .stat-box {
  transition: 0.3s ease;
  border-radius: 12px !important;
}

#dashboardWrapper .stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}

#dashboardWrapper .stat-box .material-icons {
  font-size: 42px;
}

/* Equal height */
@media (min-width: 768px) {
  #dashboardWrapper .stat-box {
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* RECENT LIST */
#dashboardWrapper .list-group-item {
  border: none;
  border-bottom: 1px solid #eef1f5;
  padding: 14px 10px;
  background: transparent;
}

#dashboardWrapper .list-group-item:last-child {
  border-bottom: none;
}

#dashboardWrapper .list-group-item:hover {
  background: #f9fbfd;
}

/* PROPERTY CARDS */
#dashboardWrapper .property-suggest-card {
  border-radius: 14px !important;
  transition: 0.25s ease;
}

#dashboardWrapper .property-suggest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
}

#dashboardWrapper .property-suggest-card img {
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 768px) {
  #dashboardWrapper .stat-box .material-icons {
    font-size: 32px;
  }

  #dashboardWrapper .property-suggest-card img {
    height: 140px;
  }
}

.searched-property-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}



.property-details {
  padding: 15px;
}

.property-time {
  font-size: 12px;
  color: #666;
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 4px;
}

.small-icon {
  font-size: 14px;
  vertical-align: middle;
  margin-right: 4px;
}

.property-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.feature {
  background: #f8f9fa;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  color: #666;
}

.mdc-button.btn-sm {
  padding: 6px 16px;
  font-size: 13px;
  min-width: auto;
}

@media (max-width: 768px) {
  .searched-property-card .row>div {
    width: 100%;
  }


}

.property-img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
}

@media (max-width: 768px) {
  .property-img {
    height: 280px !important;
  }
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.header-row .section-title {
  margin: 0;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .header-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hotproperty-img {
  width: 100% !important;
  height: 400px !important;
  object-fit: cover !important;
  border-radius: 8px !important;

}

@media (max-width: 768px) {
  .hotproperty-img {
    height: 300px !important;
  }

}

/* =====================================
   SELLER SLIDER – SCOPED STYLES
===================================== */

#seller-slider .seller-card {
  display: block;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

#seller-slider .seller-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* =========================
   AVATAR
========================= */
#seller-slider .seller-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f5c542;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-weight: 600;
  font-size: 18px;
  color: #222;
}

#seller-slider .seller-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =========================
   LEFT SECTION
========================= */
#seller-slider .seller-left {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* =========================
   NAME & LOCATION
========================= */
#seller-slider .seller-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

#seller-slider .tag {
  font-size: 12px;
  color: #6b7280;
}

/* =========================
   BADGES
========================= */
#seller-slider .seller-bottom {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

#seller-slider .seller-badge {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

/* Experience badge */
#seller-slider .exp-badge {
  background: #eef5ff;
  color: #1d4ed8;
}

/* Property badge */
#seller-slider .prop-badge {
  background: #ecfdf5;
  color: #047857;
}

/* =========================
   FALLBACK UI
========================= */
#seller-slider .seller-card.text-center {
  text-align: center;
  padding: 30px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {
  #seller-slider .seller-avatar {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  #seller-slider .seller-card {
    padding: 12px;
  }
}

.mdc-chip.active {
  background: #3f51b5;
  color: #fff;
}

/* Mobile Small - 320px to 480px */
@media (max-width: 480px) {
  .header-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 6px 12px;
  }

  .header-row .section-title {
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    flex: 1;
  }

  .header-row a {
    flex-shrink: 0;
  }

  .header-row .mdc-button {
    min-width: unset;
    padding: 0 10px;
    height: 32px;
  }

  .header-row .mdc-button__label {
    font-size: 12px;
    white-space: nowrap;
  }
}

/* Mobile Large - 481px to 768px */
@media (min-width: 481px) and (max-width: 768px) {
  .header-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 8px 16px;
  }

  .header-row .section-title {
    font-size: 18px;
    margin: 0;
    white-space: nowrap;
    flex: 1;
  }

  .header-row a {
    flex-shrink: 0;
  }

  .header-row .mdc-button {
    min-width: unset;
    padding: 0 12px;
    height: 36px;
  }

  .header-row .mdc-button__label {
    font-size: 13px;
    white-space: nowrap;
  }
}

/* Tablet - 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .header-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 10px 20px;
  }

  .header-row .section-title {
    font-size: 20px;
    margin: 0;
    flex: 1;
  }

  .header-row a {
    flex-shrink: 0;
  }

  .header-row .mdc-button {
    min-width: unset;
    padding: 0 16px;
    height: 38px;
  }

  .header-row .mdc-button__label {
    font-size: 14px;
  }
}