/*title section
---------------------------------------------------------------- */
.tf-title-section .title-section .subtitle {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.08em;
    display: inline-block;
    text-transform: uppercase;
    color: var(--theme-primary-color);
    margin-bottom: 4px;
}

.tf-title-section .title-section .heading {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25em;
}

.tf-title-section .title-section .description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
  margin-top: 12px;
}


@media (max-width: 767px) {
    .tf-title-section .title-section .heading {
        font-size: 35px;
    }
}

.splitting .word,
.splitting .char {
  display: inline-block;
}
.splitting .char {
  position: relative;
}

.splitting .char::before,
.splitting .char::after {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: inherit;
  user-select: none;
}
.splitting {
  --word-center: calc((var(--word-total) - 1) / 2);
  --char-center: calc((var(--char-total) - 1) / 2);
  --line-center: calc((var(--line-total) - 1) / 2);
}

.splitting .word {
  --word-percent: calc(var(--word-index) / var(--word-total));
  --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
  --char-percent: calc(var(--char-index) / var(--char-total));
  --char-offset: calc(var(--char-index) - var(--char-center));
  --distance: calc(
     (var(--char-offset) * var(--char-offset)) / var(--char-center)
  );
  --distance-sine: calc(var(--char-offset) / var(--char-center));
  --distance-percent: calc((var(--distance) / var(--char-center)));
}

.splitting.tf-animated .char {
    animation-fill-mode: both;
    animation-duration: 1000ms;
    animation-delay: calc(200ms + calc(15ms * var(--char-index)));
}

.splitting.tf-animated .char {
    animation-name: uicoreFadeInUp, uicoreFadeIn!important;
    animation-timing-function: cubic-bezier(.22,1,.36,1),cubic-bezier(0,0,.2,1);
}

@keyframes uicoreFadeInUp {
    0% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes uicoreFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Animated Headline
-------------------------------------------------------------- */
  
.tf-headline {
    font-size: 42px;
    color: rgb(43, 43, 43);
    font-weight: 700;
    line-height: 1.2;
}

.tf-text.tf-highlighted-text {
    position: relative;
}

.tf-text.tf-highlighted-text.type .item-text {
  position: relative;
}

.tf-text.tf-highlighted-text.type .item-text::after {
    content: '';
    width: 100%;
    height: 3px;
    background: currentColor;
    position: absolute;
    left: 0;
    bottom: 3px;
}

.tf-highlighted-text {
    color: var(--theme-primary-color);
}

.animationtext {
    font-size: 3rem;
    line-height: 1.2;
  }
  
  .animationtext.font-style-normal i,
  .animationtext.font-style-normal em {
    font-style: normal;
  }
  
  .animationtext .item-text {
      margin: 0;
  }
  
  .cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
  }
  .cd-words-wrapper .item-text {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
    font-weight: inherit;
  }
  .cd-words-wrapper .item-text.is-visible {
    position: relative;
  }
  .no-js .cd-words-wrapper .item-text {
    opacity: 0;
  }
  .no-js .cd-words-wrapper .item-text.is-visible {
    opacity: 1;
  }
  
  /* -------------------------------- 
  
  xrotate-1 
  
  -------------------------------- */
  .animationtext.rotate-1 .cd-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
  }
  .animationtext.rotate-1 .item-text {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
  }
  .animationtext.rotate-1 .item-text.is-visible {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-animation: cd-rotate-1-in 1.2s;
    -moz-animation: cd-rotate-1-in 1.2s;
    animation: cd-rotate-1-in 1.2s;
  }
  .animationtext.rotate-1 .item-text.is-hidden {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    -webkit-animation: cd-rotate-1-out 1.2s;
    -moz-animation: cd-rotate-1-out 1.2s;
    animation: cd-rotate-1-out 1.2s;
  }
  
  @-webkit-keyframes cd-rotate-1-in {
    0% {
      -webkit-transform: rotateX(180deg);
      opacity: 0;
    }
    35% {
      -webkit-transform: rotateX(120deg);
      opacity: 0;
    }
    65% {
      opacity: 0;
    }
    100% {
      -webkit-transform: rotateX(360deg);
      opacity: 1;
    }
  }
  @-moz-keyframes cd-rotate-1-in {
    0% {
      -moz-transform: rotateX(180deg);
      opacity: 0;
    }
    35% {
      -moz-transform: rotateX(120deg);
      opacity: 0;
    }
    65% {
      opacity: 0;
    }
    100% {
      -moz-transform: rotateX(360deg);
      opacity: 1;
    }
  }
  @keyframes cd-rotate-1-in {
    0% {
      -webkit-transform: rotateX(180deg);
      -moz-transform: rotateX(180deg);
      -ms-transform: rotateX(180deg);
      -o-transform: rotateX(180deg);
      transform: rotateX(180deg);
      opacity: 0;
    }
    35% {
      -webkit-transform: rotateX(120deg);
      -moz-transform: rotateX(120deg);
      -ms-transform: rotateX(120deg);
      -o-transform: rotateX(120deg);
      transform: rotateX(120deg);
      opacity: 0;
    }
    65% {
      opacity: 0;
    }
    100% {
      -webkit-transform: rotateX(360deg);
      -moz-transform: rotateX(360deg);
      -ms-transform: rotateX(360deg);
      -o-transform: rotateX(360deg);
      transform: rotateX(360deg);
      opacity: 1;
    }
  }
  @-webkit-keyframes cd-rotate-1-out {
    0% {
      -webkit-transform: rotateX(0deg);
      opacity: 1;
    }
    35% {
      -webkit-transform: rotateX(-40deg);
      opacity: 1;
    }
    65% {
      opacity: 0;
    }
    100% {
      -webkit-transform: rotateX(180deg);
      opacity: 0;
    }
  }
  @-moz-keyframes cd-rotate-1-out {
    0% {
      -moz-transform: rotateX(0deg);
      opacity: 1;
    }
    35% {
      -moz-transform: rotateX(-40deg);
      opacity: 1;
    }
    65% {
      opacity: 0;
    }
    100% {
      -moz-transform: rotateX(180deg);
      opacity: 0;
    }
  }
  @keyframes cd-rotate-1-out {
    0% {
      -webkit-transform: rotateX(0deg);
      -moz-transform: rotateX(0deg);
      -ms-transform: rotateX(0deg);
      -o-transform: rotateX(0deg);
      transform: rotateX(0deg);
      opacity: 1;
    }
    35% {
      -webkit-transform: rotateX(-40deg);
      -moz-transform: rotateX(-40deg);
      -ms-transform: rotateX(-40deg);
      -o-transform: rotateX(-40deg);
      transform: rotateX(-40deg);
      opacity: 1;
    }
    65% {
      opacity: 0;
    }
    100% {
      -webkit-transform: rotateX(180deg);
      -moz-transform: rotateX(180deg);
      -ms-transform: rotateX(180deg);
      -o-transform: rotateX(180deg);
      transform: rotateX(180deg);
      opacity: 0;
    }
  }
  /* -------------------------------- 
  
  xtype 
  
  -------------------------------- */
  .animationtext.type .cd-words-wrapper {
    vertical-align: top;
    overflow: hidden;
  }
  .animationtext.type .cd-words-wrapper::after {
    /* vertical bar */
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 90%;
    width: 1px;
    background-color: #aebcb9;
  }
  .animationtext.type .cd-words-wrapper.waiting::after {
    -webkit-animation: cd-pulse 1s infinite;
    -moz-animation: cd-pulse 1s infinite;
    animation: cd-pulse 1s infinite;
  }
  /* .animationtext.type .cd-words-wrapper.selected {
    background-color: #aebcb9;
  }
  .animationtext.type .cd-words-wrapper.selected::after {
    visibility: hidden;
  }
  .animationtext.type .cd-words-wrapper.selected .item-text {
    color: #0d0d0d;
  } */
  .animationtext.type .item-text {
    visibility: hidden;
  }
  .animationtext.type .item-text.is-visible {
    visibility: visible;
  }
  .animationtext.type i {
    position: absolute;
    visibility: hidden;
    font-style: normal;
  }
  .animationtext.type i.in {
    position: relative;
    visibility: visible;
  }
  
  @-webkit-keyframes cd-pulse {
    0% {
      -webkit-transform: translateY(-50%) scale(1);
      opacity: 1;
    }
    40% {
      -webkit-transform: translateY(-50%) scale(0.9);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(-50%) scale(0);
      opacity: 0;
    }
  }
  @-moz-keyframes cd-pulse {
    0% {
      -moz-transform: translateY(-50%) scale(1);
      opacity: 1;
    }
    40% {
      -moz-transform: translateY(-50%) scale(0.9);
      opacity: 0;
    }
    100% {
      -moz-transform: translateY(-50%) scale(0);
      opacity: 0;
    }
  }
  @keyframes cd-pulse {
    0% {
      -webkit-transform: translateY(-50%) scale(1);
      -moz-transform: translateY(-50%) scale(1);
      -ms-transform: translateY(-50%) scale(1);
      -o-transform: translateY(-50%) scale(1);
      transform: translateY(-50%) scale(1);
      opacity: 1;
    }
    40% {
      -webkit-transform: translateY(-50%) scale(0.9);
      -moz-transform: translateY(-50%) scale(0.9);
      -ms-transform: translateY(-50%) scale(0.9);
      -o-transform: translateY(-50%) scale(0.9);
      transform: translateY(-50%) scale(0.9);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(-50%) scale(0);
      -moz-transform: translateY(-50%) scale(0);
      -ms-transform: translateY(-50%) scale(0);
      -o-transform: translateY(-50%) scale(0);
      transform: translateY(-50%) scale(0);
      opacity: 0;
    }
  }
  /* -------------------------------- 
  
  xrotate-2 
  
  -------------------------------- */
  .animationtext.rotate-2 .cd-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
  }
  .animationtext.rotate-2 i, .animationtext.rotate-2 em {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .animationtext.rotate-2 .item-text {
    opacity: 0;
  }
  .animationtext.rotate-2 i {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    -moz-transform: translateZ(-20px) rotateX(90deg);
    -ms-transform: translateZ(-20px) rotateX(90deg);
    -o-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
    opacity: 0;
  }
  .is-visible .animationtext.rotate-2 i {
    opacity: 1;
  }
  .animationtext.rotate-2 i.in {
    -webkit-animation: cd-rotate-2-in 0.4s forwards;
    -moz-animation: cd-rotate-2-in 0.4s forwards;
    animation: cd-rotate-2-in 0.4s forwards;
  }
  .animationtext.rotate-2 i.out {
    -webkit-animation: cd-rotate-2-out 0.4s forwards;
    -moz-animation: cd-rotate-2-out 0.4s forwards;
    animation: cd-rotate-2-out 0.4s forwards;
  }
  .animationtext.rotate-2 em {
    -webkit-transform: translateZ(20px);
    -moz-transform: translateZ(20px);
    -ms-transform: translateZ(20px);
    -o-transform: translateZ(20px);
    transform: translateZ(20px);
  }
  
  .no-csstransitions .animationtext.rotate-2 i {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 0;
  }
  .no-csstransitions .animationtext.rotate-2 i em {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  
  .no-csstransitions .animationtext.rotate-2 .is-visible i {
    opacity: 1;
  }
  
  @-webkit-keyframes cd-rotate-2-in {
    0% {
      opacity: 0;
      -webkit-transform: translateZ(-20px) rotateX(90deg);
    }
    60% {
      opacity: 1;
      -webkit-transform: translateZ(-20px) rotateX(-10deg);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateZ(-20px) rotateX(0deg);
    }
  }
  @-moz-keyframes cd-rotate-2-in {
    0% {
      opacity: 0;
      -moz-transform: translateZ(-20px) rotateX(90deg);
    }
    60% {
      opacity: 1;
      -moz-transform: translateZ(-20px) rotateX(-10deg);
    }
    100% {
      opacity: 1;
      -moz-transform: translateZ(-20px) rotateX(0deg);
    }
  }
  @keyframes cd-rotate-2-in {
    0% {
      opacity: 0;
      -webkit-transform: translateZ(-20px) rotateX(90deg);
      -moz-transform: translateZ(-20px) rotateX(90deg);
      -ms-transform: translateZ(-20px) rotateX(90deg);
      -o-transform: translateZ(-20px) rotateX(90deg);
      transform: translateZ(-20px) rotateX(90deg);
    }
    60% {
      opacity: 1;
      -webkit-transform: translateZ(-20px) rotateX(-10deg);
      -moz-transform: translateZ(-20px) rotateX(-10deg);
      -ms-transform: translateZ(-20px) rotateX(-10deg);
      -o-transform: translateZ(-20px) rotateX(-10deg);
      transform: translateZ(-20px) rotateX(-10deg);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateZ(-20px) rotateX(0deg);
      -moz-transform: translateZ(-20px) rotateX(0deg);
      -ms-transform: translateZ(-20px) rotateX(0deg);
      -o-transform: translateZ(-20px) rotateX(0deg);
      transform: translateZ(-20px) rotateX(0deg);
    }
  }
  @-webkit-keyframes cd-rotate-2-out {
    0% {
      opacity: 1;
      -webkit-transform: translateZ(-20px) rotateX(0);
    }
    60% {
      opacity: 0;
      -webkit-transform: translateZ(-20px) rotateX(-100deg);
    }
    100% {
      opacity: 0;
      -webkit-transform: translateZ(-20px) rotateX(-90deg);
    }
  }
  @-moz-keyframes cd-rotate-2-out {
    0% {
      opacity: 1;
      -moz-transform: translateZ(-20px) rotateX(0);
    }
    60% {
      opacity: 0;
      -moz-transform: translateZ(-20px) rotateX(-100deg);
    }
    100% {
      opacity: 0;
      -moz-transform: translateZ(-20px) rotateX(-90deg);
    }
  }
  @keyframes cd-rotate-2-out {
    0% {
      opacity: 1;
      -webkit-transform: translateZ(-20px) rotateX(0);
      -moz-transform: translateZ(-20px) rotateX(0);
      -ms-transform: translateZ(-20px) rotateX(0);
      -o-transform: translateZ(-20px) rotateX(0);
      transform: translateZ(-20px) rotateX(0);
    }
    60% {
      opacity: 0;
      -webkit-transform: translateZ(-20px) rotateX(-100deg);
      -moz-transform: translateZ(-20px) rotateX(-100deg);
      -ms-transform: translateZ(-20px) rotateX(-100deg);
      -o-transform: translateZ(-20px) rotateX(-100deg);
      transform: translateZ(-20px) rotateX(-100deg);
    }
    100% {
      opacity: 0;
      -webkit-transform: translateZ(-20px) rotateX(-90deg);
      -moz-transform: translateZ(-20px) rotateX(-90deg);
      -ms-transform: translateZ(-20px) rotateX(-90deg);
      -o-transform: translateZ(-20px) rotateX(-90deg);
      transform: translateZ(-20px) rotateX(-90deg);
    }
  }
  /* -------------------------------- 
  
  xloading-bar 
  
  -------------------------------- */
  .animationtext.loading-bar span {
    display: inline-block;
    padding: .2em 0;
  }
  .animationtext.loading-bar .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
  }
  .animationtext.loading-bar .cd-words-wrapper::after {
    /* loading bar */
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #0096a7;
    z-index: 2;
    -webkit-transition: width 0.3s -0.1s;
    -moz-transition: width 0.3s -0.1s;
    transition: width 0.3s -0.1s;
  }
  .animationtext.loading-bar .cd-words-wrapper.is-loading::after {
    width: 100%;
    -webkit-transition: width 3s;
    -moz-transition: width 3s;
    transition: width 3s;
  }
  .animationtext.loading-bar .item-text {
    top: .2em;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .animationtext.loading-bar .item-text.is-visible {
    opacity: 1;
    top: 0;
  }
  
  /* -------------------------------- 
  
  xslide 
  
  -------------------------------- */
  .animationtext.slide span {
    display: inline-block;
    /* padding: .2em 0; */
  }
  .animationtext.slide .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
  }
  .animationtext.slide .item-text {
    opacity: 0;
    top: .2em;
  }
  .animationtext.slide .item-text.is-visible {
    top: 0;
    opacity: 1;
    -webkit-animation: slide-in 0.6s;
    -moz-animation: slide-in 0.6s;
    animation: slide-in 0.6s;
  }
  .animationtext.slide .item-text.is-hidden {
    -webkit-animation: slide-out 0.6s;
    -moz-animation: slide-out 0.6s;
    animation: slide-out 0.6s;
  }
  
  @-webkit-keyframes slide-in {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-100%);
    }
    60% {
      opacity: 1;
      -webkit-transform: translateY(20%);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
    }
  }
  @-moz-keyframes slide-in {
    0% {
      opacity: 0;
      -moz-transform: translateY(-100%);
    }
    60% {
      opacity: 1;
      -moz-transform: translateY(20%);
    }
    100% {
      opacity: 1;
      -moz-transform: translateY(0);
    }
  }
  @keyframes slide-in {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-100%);
      -moz-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
      -o-transform: translateY(-100%);
      transform: translateY(-100%);
    }
    60% {
      opacity: 1;
      -webkit-transform: translateY(20%);
      -moz-transform: translateY(20%);
      -ms-transform: translateY(20%);
      -o-transform: translateY(20%);
      transform: translateY(20%);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
    }
  }
  @-webkit-keyframes slide-out {
    0% {
      opacity: 1;
      -webkit-transform: translateY(0);
    }
    60% {
      opacity: 0;
      -webkit-transform: translateY(120%);
    }
    100% {
      opacity: 0;
      -webkit-transform: translateY(100%);
    }
  }
  @-moz-keyframes slide-out {
    0% {
      opacity: 1;
      -moz-transform: translateY(0);
    }
    60% {
      opacity: 0;
      -moz-transform: translateY(120%);
    }
    100% {
      opacity: 0;
      -moz-transform: translateY(100%);
    }
  }
  @keyframes slide-out {
    0% {
      opacity: 1;
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
    }
    60% {
      opacity: 0;
      -webkit-transform: translateY(120%);
      -moz-transform: translateY(120%);
      -ms-transform: translateY(120%);
      -o-transform: translateY(120%);
      transform: translateY(120%);
    }
    100% {
      opacity: 0;
      -webkit-transform: translateY(100%);
      -moz-transform: translateY(100%);
      -ms-transform: translateY(100%);
      -o-transform: translateY(100%);
      transform: translateY(100%);
    }
  }
  /* -------------------------------- 
  
  xclip 
  
  -------------------------------- */
  .animationtext.clip span {
    display: inline-block;
    padding: 0;
  }
  .animationtext.clip .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
  }
  .animationtext.clip .cd-words-wrapper::after {
    /* line */
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #aebcb9;
  }
  .animationtext.clip .item-text {
    opacity: 0;
  }
  .animationtext.clip .item-text.is-visible {
    opacity: 1;
  }
  
  /* -------------------------------- 
  
  xzoom 
  
  -------------------------------- */
  .animationtext.zoom .cd-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
  }
  .animationtext.zoom .item-text {
    opacity: 0;
  }
  .animationtext.zoom .item-text.is-visible {
    opacity: 1;
    -webkit-animation: zoom-in 0.8s;
    -moz-animation: zoom-in 0.8s;
    animation: zoom-in 0.8s;
  }
  .animationtext.zoom .item-text.is-hidden {
    -webkit-animation: zoom-out 0.8s;
    -moz-animation: zoom-out 0.8s;
    animation: zoom-out 0.8s;
  }
  
  @-webkit-keyframes zoom-in {
    0% {
      opacity: 0;
      -webkit-transform: translateZ(100px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateZ(0);
    }
  }
  @-moz-keyframes zoom-in {
    0% {
      opacity: 0;
      -moz-transform: translateZ(100px);
    }
    100% {
      opacity: 1;
      -moz-transform: translateZ(0);
    }
  }
  @keyframes zoom-in {
    0% {
      opacity: 0;
      -webkit-transform: translateZ(100px);
      -moz-transform: translateZ(100px);
      -ms-transform: translateZ(100px);
      -o-transform: translateZ(100px);
      transform: translateZ(100px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateZ(0);
      -moz-transform: translateZ(0);
      -ms-transform: translateZ(0);
      -o-transform: translateZ(0);
      transform: translateZ(0);
    }
  }
  @-webkit-keyframes zoom-out {
    0% {
      opacity: 1;
      -webkit-transform: translateZ(0);
    }
    100% {
      opacity: 0;
      -webkit-transform: translateZ(-100px);
    }
  }
  @-moz-keyframes zoom-out {
    0% {
      opacity: 1;
      -moz-transform: translateZ(0);
    }
    100% {
      opacity: 0;
      -moz-transform: translateZ(-100px);
    }
  }
  @keyframes zoom-out {
    0% {
      opacity: 1;
      -webkit-transform: translateZ(0);
      -moz-transform: translateZ(0);
      -ms-transform: translateZ(0);
      -o-transform: translateZ(0);
      transform: translateZ(0);
    }
    100% {
      opacity: 0;
      -webkit-transform: translateZ(-100px);
      -moz-transform: translateZ(-100px);
      -ms-transform: translateZ(-100px);
      -o-transform: translateZ(-100px);
      transform: translateZ(-100px);
    }
  }
  /* -------------------------------- 
  
  xrotate-3 
  
  -------------------------------- */
  .animationtext.rotate-3 .cd-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
  }
  .animationtext.rotate-3 .item-text {
    opacity: 0;
  }
  .animationtext.rotate-3 i {
    display: inline-block;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
  }
  .is-visible .animationtext.rotate-3 i {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  .animationtext.rotate-3 i.in {
    -webkit-animation: cd-rotate-3-in 0.6s forwards;
    -moz-animation: cd-rotate-3-in 0.6s forwards;
    animation: cd-rotate-3-in 0.6s forwards;
  }
  .animationtext.rotate-3 i.out {
    -webkit-animation: cd-rotate-3-out 0.6s forwards;
    -moz-animation: cd-rotate-3-out 0.6s forwards;
    animation: cd-rotate-3-out 0.6s forwards;
  }
  
  .no-csstransitions .animationtext.rotate-3 i {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    opacity: 0;
  }
  
  .no-csstransitions .animationtext.rotate-3 .is-visible i {
    opacity: 1;
  }
  
  @-webkit-keyframes cd-rotate-3-in {
    0% {
      -webkit-transform: rotateY(180deg);
    }
    100% {
      -webkit-transform: rotateY(0deg);
    }
  }
  @-moz-keyframes cd-rotate-3-in {
    0% {
      -moz-transform: rotateY(180deg);
    }
    100% {
      -moz-transform: rotateY(0deg);
    }
  }
  @keyframes cd-rotate-3-in {
    0% {
      -webkit-transform: rotateY(180deg);
      -moz-transform: rotateY(180deg);
      -ms-transform: rotateY(180deg);
      -o-transform: rotateY(180deg);
      transform: rotateY(180deg);
    }
    100% {
      -webkit-transform: rotateY(0deg);
      -moz-transform: rotateY(0deg);
      -ms-transform: rotateY(0deg);
      -o-transform: rotateY(0deg);
      transform: rotateY(0deg);
    }
  }
  @-webkit-keyframes cd-rotate-3-out {
    0% {
      -webkit-transform: rotateY(0);
    }
    100% {
      -webkit-transform: rotateY(-180deg);
    }
  }
  @-moz-keyframes cd-rotate-3-out {
    0% {
      -moz-transform: rotateY(0);
    }
    100% {
      -moz-transform: rotateY(-180deg);
    }
  }
  @keyframes cd-rotate-3-out {
    0% {
      -webkit-transform: rotateY(0);
      -moz-transform: rotateY(0);
      -ms-transform: rotateY(0);
      -o-transform: rotateY(0);
      transform: rotateY(0);
    }
    100% {
      -webkit-transform: rotateY(-180deg);
      -moz-transform: rotateY(-180deg);
      -ms-transform: rotateY(-180deg);
      -o-transform: rotateY(-180deg);
      transform: rotateY(-180deg);
    }
  }
  /* -------------------------------- 
  
  xscale 
  
  -------------------------------- */
  .animationtext.scale .item-text {
    opacity: 0;
  }
  .animationtext.scale .item-text.is-visible {
    opacity: 1;
  }
  .animationtext.scale i {
    display: inline-block;
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  /*.is-visible .animationtext.scale i {
    opacity: 1;
  }*/
  .animationtext.scale .item-text.is-visible {
    -webkit-animation: scale-up 0.6s forwards;
    -moz-animation: scale-up 0.6s forwards;
    animation: scale-up 0.6s forwards;
  }
  .animationtext.scale .item-text {
    -webkit-animation: scale-down 0.6s forwards;
    -moz-animation: scale-down 0.6s forwards;
    animation: scale-down 0.6s forwards;
  }
  
  .no-csstransitions .animationtext.scale .item-text {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  
  .no-csstransitions .animationtext.scale .is-visible i {
    opacity: 1;
  }
  
  @-webkit-keyframes scale-up {
    0% {
      -webkit-transform: scale(0);
      opacity: 0;
    }
    60% {
      -webkit-transform: scale(1.2);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1);
      opacity: 1;
    }
  }
  @-moz-keyframes scale-up {
    0% {
      -moz-transform: scale(0);
      opacity: 0;
    }
    60% {
      -moz-transform: scale(1.2);
      opacity: 1;
    }
    100% {
      -moz-transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes scale-up {
    0% {
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      -ms-transform: scale(0);
      -o-transform: scale(0);
      transform: scale(0);
      opacity: 0;
    }
    60% {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
      -o-transform: scale(1.2);
      transform: scale(1.2);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
      opacity: 1;
    }
  }
  @-webkit-keyframes scale-down {
    0% {
      -webkit-transform: scale(1);
      opacity: 1;
    }
    60% {
      -webkit-transform: scale(0);
      opacity: 0;
    }
  }
  @-moz-keyframes scale-down {
    0% {
      -moz-transform: scale(1);
      opacity: 1;
    }
    60% {
      -moz-transform: scale(0);
      opacity: 0;
    }
  }
  @keyframes scale-down {
    0% {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
      opacity: 1;
    }
    60% {
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      -ms-transform: scale(0);
      -o-transform: scale(0);
      transform: scale(0);
      opacity: 0;
    }
  }
  /* -------------------------------- 
  
  xpush 
  
  -------------------------------- */
  .animationtext.push .item-text {
    opacity: 0;
  }
  .animationtext.push .item-text.is-visible {
    opacity: 1;
    -webkit-animation: push-in 0.6s;
    -moz-animation: push-in 0.6s;
    animation: push-in 0.6s;
  }
  .animationtext.push .item-text.is-hidden {
    -webkit-animation: push-out 0.6s;
    -moz-animation: push-out 0.6s;
    animation: push-out 0.6s;
  }
  
  @-webkit-keyframes push-in {
    0% {
      opacity: 0;
      -webkit-transform: translateX(-100%);
    }
    60% {
      opacity: 1;
      -webkit-transform: translateX(10%);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0);
    }
  }
  @-moz-keyframes push-in {
    0% {
      opacity: 0;
      -moz-transform: translateX(-100%);
    }
    60% {
      opacity: 1;
      -moz-transform: translateX(10%);
    }
    100% {
      opacity: 1;
      -moz-transform: translateX(0);
    }
  }
  @keyframes push-in {
    0% {
      opacity: 0;
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      -o-transform: translateX(-100%);
      transform: translateX(-100%);
    }
    60% {
      opacity: 1;
      -webkit-transform: translateX(10%);
      -moz-transform: translateX(10%);
      -ms-transform: translateX(10%);
      -o-transform: translateX(10%);
      transform: translateX(10%);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0);
    }
  }
  @-webkit-keyframes push-out {
    0% {
      opacity: 1;
      -webkit-transform: translateX(0);
    }
    60% {
      opacity: 0;
      -webkit-transform: translateX(110%);
    }
    100% {
      opacity: 0;
      -webkit-transform: translateX(100%);
    }
  }
  @-moz-keyframes push-out {
    0% {
      opacity: 1;
      -moz-transform: translateX(0);
    }
    60% {
      opacity: 0;
      -moz-transform: translateX(110%);
    }
    100% {
      opacity: 0;
      -moz-transform: translateX(100%);
    }
  }
  @keyframes push-out {
    0% {
      opacity: 1;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0);
    }
    60% {
      opacity: 0;
      -webkit-transform: translateX(110%);
      -moz-transform: translateX(110%);
      -ms-transform: translateX(110%);
      -o-transform: translateX(110%);
      transform: translateX(110%);
    }
    100% {
      opacity: 0;
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
      transform: translateX(100%);
    }
  }
  
  .tf-highlighted-text{
      display: inline-block;
      position: relative;
      font-size: unset;
  }
  .tf-highlighted-text svg {
      position: absolute;
      top: 50%;
      left: 50%;
      width: calc(100% + 20px);
      height: calc(100% + 20px);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      overflow: visible;
  }
  
  .tf-highlighted-text svg path{
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke: red;
      stroke-width: 10;
      fill: none;
      stroke-dasharray: 1500;
      -webkit-animation: elementor-headline-dash 5s infinite;
      animation: elementor-headline-dash 5s infinite;
  }
  
  .tf-highlighted-text svg path:nth-of-type(2) {
      -webkit-animation-delay: .6s;
      animation-delay: .6s
  }
  
  @-webkit-keyframes elementor-headline-dash {
      0% {
          stroke-dasharray: 0 1500
      }
      15% {
          stroke-dasharray: 1500 1500
      }
      85% {
          opacity: 1
      }
      90% {
          stroke-dasharray: 1500 1500;
          opacity: 0
      }
      to {
          stroke-dasharray: 0 1500;
          opacity: 0
      }
  }
  
  .tf-highlighted .item {
      display: none;
  }
  .tf-highlighted .item.active {
      display: block;
  }
  
  .tf-highlighted-drop-in {
      position: relative;
      font-weight: 200;
      font-size: 4em; }
  
  .tf-highlighted-drop-in .text-wrapper {
      position: relative;
      display: inline-block;
      padding-top: 0.2em;
      padding-right: 0.05em;
      padding-bottom: 0.1em;
      overflow: hidden; }
  
  .tf-highlighted-drop-in .letter {
      transform-origin: 50% 100%;
      display: inline-block;
      line-height: 1em; }
  
  @media (min-width: 992px) { 
  .tf-headline-wrap.tf-headline-break .tf-text {
      zoom: 1; }
  .tf-headline-wrap.tf-headline-break .tf-text:before, .tf-headline-wrap.tf-headline-break .tf-text:after {
      content: "";
      display: table; }
  .tf-headline-wrap.tf-headline-break .tf-text:after {
      clear: both; }
  }
  
  @media (max-width: 991px) { 
      .tf-headline-wrap.tf-headline-break-tablet .tf-text {
          zoom: 1; }
      .tf-headline-wrap.tf-headline-break-tablet .tf-text:before, .tf-headline-wrap.tf-headline-break-tablet .tf-text:after {
          content: "";
          display: table; }
      .tf-headline-wrap.tf-headline-break-tablet .tf-text:after {
          clear: both; }
  }
  
  @media (max-width: 767px) { 
      .tf-headline-wrap.tf-headline-break-mobi .tf-text {
          zoom: 1; }
      .tf-headline-wrap.tf-headline-break-mobi .tf-text:before, .tf-headline-wrap.tf-headline-break-mobi .tf-text:after {
          content: "";
          display: table; }
      .tf-headline-wrap.tf-headline-break-mobi .tf-text:after {
          clear: both; }
    .tf-text.tf-highlighted-text {
      display: block;
    }
    .cd-words-wrapper {
      text-align: unset;
    }
    .cd-words-wrapper .item-text {
      right: 0;
  }
  .animationtext.rotate-1 .cd-words-wrapper {
    width: 100% !important;
}
.animationtext.rotate-1 .cd-words-wrapper .item-text {
  white-space: unset !important;
  }
}
  .elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=".svg"]{width:48px}.elementor-widget-image img{display:inline-block;vertical-align:middle}img.image-taxonomy {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tf-taxonomy-wrap .tf-taxonomy-inner.column-6 .item{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66%;
    flex: 0 0 16.66%;
    max-width: 16.66%;
}

.tf-taxonomy-wrap .tf-taxonomy-inner.column-5 .item{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.tf-taxonomy-wrap .tf-taxonomy-inner.column-4 .item{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.tf-taxonomy-wrap .tf-taxonomy-inner.column-3 .item{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.tf-taxonomy-wrap .tf-taxonomy-inner.column-2 .item{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.tf-taxonomy-wrap .tf-taxonomy-inner.column-1 .item{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

/* style 1 */

.tf-taxonomy-wrap.style1 .box-card-inner {
    border-radius: 16px;
    background: #fff;
    padding: 30px 24px 24px 24px;
    border: 1px solid #ECECEC;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
    overflow: hidden;
}

.tf-taxonomy-wrap.style1 .box-card-inner::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--theme-primary-color);
    transform: scale(1, 0);
    transition: transform 400ms ease;
    transform-origin: bottom center;
    overflow: hidden;
    border-radius: 16px;
}

.tf-taxonomy-wrap.style1 .box-card-inner:hover {
    border-color: transparent;
}

.tf-taxonomy-wrap.style1 .box-card-inner:hover::after {
    transform: scale(1, 1);
    transform-origin: top center;
}

.tf-taxonomy-wrap.style1 .count-property {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #2C2E3399;
}

.tf-taxonomy-wrap.style1 .feature-image {
    margin-bottom: 24px;
}

.tf-taxonomy-wrap.style1 .name {
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
}

.tf-taxonomy-wrap.style1 .content,
.tf-taxonomy-wrap.style1 .feature-image {
    position: relative;
    z-index: 2;
}

.tf-taxonomy-wrap.style1 .feature-image .image-wrap > * {
    min-height: 80px;
    max-height: 80px;
}

.tf-taxonomy-wrap.style1 .box-card-inner .name a,
.tf-taxonomy-wrap.style1 .box-card-inner .count-property { 
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tf-taxonomy-wrap.style1 .box-card-inner:hover .name a,
.tf-taxonomy-wrap.style1 .box-card-inner:hover .count-property {
    color: #fff;
}

.tf-taxonomy-wrap.style1 .box-card-inner:hover .feature-image svg path {
    fill: #fff;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/* style 2 */

.tf-taxonomy-wrap.style2 .box-card-inner {
    padding: 16px;
    background-color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 17px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tf-taxonomy-wrap.style2 .box-card-inner:hover {
    box-shadow: 0px 30px 60px 0px #00000012;
}

.tf-taxonomy-wrap.style2 .feature-image {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 101px;
    width: 101px;
    border-radius: 16px;
    border: 1px solid rgb(236, 236, 236);
    flex-shrink: 0;
}

.tf-taxonomy-wrap.style2 .box-card-inner:hover .feature-image {
    background: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
}

.tf-taxonomy-wrap.style2 .box-card-inner .feature-image svg path {
    fill: #A8ABAE;
}

.tf-taxonomy-wrap.style2 .box-card-inner:hover  .feature-image svg path {
    fill: #fff;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.tf-taxonomy-wrap.style2 .box-card-inner .feature-image .image-wrap > * {
    max-width: 50px;
    max-height: 50px;
}

.tf-taxonomy-wrap.style2 .name {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 10px;
}

.tf-taxonomy-wrap.style2 .count-property {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #5C5E61;
    width: max-content;
}

/* style 3 */

.tf-taxonomy-wrap.style3 .box-card-inner .feature-image svg path {
    fill: #fff;
    stroke: #fff;
}

.tf-taxonomy-wrap.style3 .tf-taxonomy-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tf-taxonomy-wrap.style3 .feature-image .image-wrap > * {
    max-width: 16px;
    max-height: 16px;
}

.tf-taxonomy-wrap.style3 .feature-image .image-wrap {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tf-taxonomy-wrap.style3 .name {
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    margin: 0;
}

.tf-taxonomy-wrap.style3 .name a {
    color: #fff;
}

.tf-taxonomy-wrap.style3 .box-card-inner {
    background: #00000066;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.tf-taxonomy-wrap.style3 .box-card-inner:hover {
    background: var(--theme-primary-color);
}

/* carousel */
.tf-taxonomy-wrap.has-carousel {
    position: relative;
}

.tf-taxonomy-wrap.has-carousel .owl-prev,
.tf-taxonomy-wrap.has-carousel .owl-next {
    position: absolute;
    top: 50%;
}

.tf-taxonomy-wrap.has-carousel .owl-prev {
    left: -31px;
    transform: translate(-50%, -50%);
}

.tf-taxonomy-wrap.has-carousel .owl-next {
    right: -30px;
    transform: translate(50%, -50%);
}

.tf-taxonomy-wrap.has-carousel .tf-taxonomy-inner .item {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; 
}

.tf-taxonomy-wrap.has-carousel .owl-carousel .owl-nav button.owl-prev,
.tf-taxonomy-wrap.has-carousel .owl-carousel .owl-nav button.owl-next {
    border: 1px solid #E4E4E4;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 22px;
}
.tf-taxonomy-wrap.has-carousel .owl-carousel .owl-nav button.owl-prev:hover,
.tf-taxonomy-wrap.has-carousel .owl-carousel .owl-nav button.owl-next:hover {
    border-color: var(--theme-primary-color);
    background: var(--theme-primary-color);
    color: #fff;
}

.tf-taxonomy-wrap.has-carousel .owl-carousel .owl-nav button.owl-prev.disabled,
.tf-taxonomy-wrap.has-carousel .owl-carousel .owl-nav button.owl-next.disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

/* Bullet */

.tf-taxonomy-wrap.has-carousel .owl-dots {
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    bottom: -57px;
}

.tf-taxonomy-wrap.has-carousel .owl-carousel .owl-dots .owl-dot {
    margin: 0 7.5px;
    width: 8px;
    height: 8px;
    line-height: 8px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    overflow: unset;
    background: #E4E4E4;
    flex-shrink: 0;
}

.tf-taxonomy-wrap.has-carousel .owl-carousel .owl-dots .owl-dot.active {
    opacity: 1;
    background: var(--theme-primary-color);
}

.tf-taxonomy-wrap.has-carousel .owl-carousel .owl-dots .owl-dot.active::after {
    border: 1px solid var(--theme-primary-color);
}

.tf-taxonomy-wrap.has-carousel .owl-carousel .owl-dots .owl-dot::after {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    width: 14px;
    height: 14px;
    overflow: visible;
    border: 1px solid transparent;
    padding: 0;
}

@keyframes toBottomFromTop {
    49% {
        transform: translateY(100%);
    }
    50% {
        opacity: 0;
        transform: translateY(-100%);
    }
    51% {
        opacity: 1;
    }
}

@media only screen and (max-width: 991px) {    
    .tf-taxonomy-wrap.column-tablet-1 .tf-taxonomy-inner .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;        
    }

    .tf-taxonomy-wrap.column-tablet-2:not(.has-carousel) .tf-taxonomy-inner .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;        
    }

    .tf-taxonomy-wrap.column-tablet-3:not(.has-carousel) .tf-taxonomy-inner .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
        max-width: 33.33%;       
    }

    .tf-taxonomy-wrap.column-tablet-4:not(.has-carousel) .tf-taxonomy-inner .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;       
    }
}

@media only screen and (max-width: 767px) { 

    .tf-taxonomy-wrap.has-carousel .owl-dots {
        bottom: -15px;
    }

    .tf-taxonomy-wrap.column-mobile-1:not(.has-carousel) .tf-taxonomy-inner .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;  
    }

    .tf-taxonomy-wrap.column-mobile-2:not(.has-carousel) .tf-taxonomy-inner .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;        
    }

    .tf-taxonomy-wrap.column-mobile-3:not(.has-carousel) .tf-taxonomy-inner .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
        max-width: 33.33%;       
    }

    .tf-taxonomy-wrap.column-mobile-4:not(.has-carousel) .tf-taxonomy-inner .item{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;       
    }

}/* Iconbox  */

.tficonbox .number-step {
    width: 70px;
    height: 70px;
    border: 2px solid var(--theme-primary-color);
    color: var(--theme-primary-color);
    font-size: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tficonbox:hover .number-step {
    background-color: var(--theme-primary-color);
    color: #fff;
}

.tficonbox .content .tf-button:hover i {
    color: var(--theme-primary-color);
}

.tficonbox.style1 {
    padding: 24px 24px;
    border-radius: 16px;
    background: #fff;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    text-align: center;
}

.tficonbox.style1:hover {
    box-shadow: 0px 30px 60px 0px var(--theme-primary-rgba);
}

.tficonbox.style1 .wrap-icon {
    font-size: 50px;
    margin-bottom: 32px;
}

.tficonbox.style1 .content .title {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 24px;
    position: relative;
    z-index: 5;
}

.tficonbox.style1 .content .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #5C5E61;
    margin-bottom: 31px;
}

.tficonbox.style1 .content .tf-button  {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: var(--theme-primary-color);
    background: transparent;
    border: 1px solid var(--theme-primary-color);
    border-radius: 16px;
    padding: 13px 41px;
    display: inline-block;
}

.tficonbox.style1 .content .tf-button:hover {
    background: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
    color: #fff;
}

.tficonbox.style1 .content .tf-button i {
    vertical-align: middle;
}

.tficonbox .wrap-icon-inner > * {
    display: inline-block;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -ms-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

.tficonbox:hover .wrap-icon-inner > * {
    transform: rotateY(360deg) !important;
}

.tficonbox.style1:not(.hover-border-button) .tf-button span,
.tficonbox.style2 .tf-button span,
.tficonbox.style5 .tf-button span,
.tficonbox.style3 .tf-button span {
    position: relative;
}

.tficonbox.style2 .tf-button span::after,
.tficonbox.style5 .tf-button span::after,
.tficonbox.style3 .tf-button span::after {
    position: absolute;
    content: "";
    bottom: 0;
    height: 2px;
    width: 0;
    left: auto;
    right: 0;
    -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    background-color: currentColor;
}

.tficonbox.style2:hover .tf-button span::after,
.tficonbox.style5:hover .tf-button span::after,
.tficonbox.style3:hover .tf-button span::after {
    width: 100%;
    left: 0;
    right: auto;
}

/* style 2 */

.tficonbox.style2 {
    box-shadow: 0px 30px 60px 0px var(--theme-primary-rgba);
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.tficonbox.style2 .wrap-icon {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.tficonbox.style2 .wrap-icon .wrap-icon-inner {
    width: 50px;
    height: 50px;
    background: var(--theme-primary-rgba);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--theme-primary-color);
    font-size: 40px;
    flex-shrink: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tficonbox.style2:hover .wrap-icon-inner {
    background: var(--theme-primary-color);
    color: #fff;
}

.tficonbox.style2 .wrap-icon-inner > * {
    all: unset;
}

.tficonbox.style2 .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 0px;
}

.tficonbox.style2 .content .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #5C5E61;
    margin-bottom: 24px;
}

.tficonbox.style2 .content .tf-button  {
    font-size: 16px;
    font-weight: 700;
    line-height: 22.4px;
    color: var(--theme-primary-color);
    display: inline-flex;
    align-items: center;
    column-gap: 11px;
    width: max-content;
    justify-content: center;
}

.tficonbox.style2 .content .tf-button i {
    vertical-align: middle;
}

.tficonbox.style2 .content .tf-button:hover {
    color: #2C2E33;
}

/* style 3 */

.tficonbox.style3 {
    padding: 24px;
    border-radius: 16px;
    background: var(--theme-primary-rgba);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.elementor-widget-tficonbox:not(.flex-style) .tficonbox.style3:hover {
    background: var(--theme-primary-color);
}

.elementor-widget-tficonbox:not(.flex-style) .tficonbox.style3:hover .title,
.elementor-widget-tficonbox:not(.flex-style) .tficonbox.style3:hover .description,
.elementor-widget-tficonbox:not(.flex-style) .tficonbox.style3:hover .tf-button {
    color: #fff !important;
}

.tficonbox.style3 .wrap-icon .wrap-icon-inner {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
    color: var(--theme-primary-color);
    box-shadow: 0px 8px 18px 0px var(--theme-primary-rgba);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tficonbox.style3 .wrap-icon i {
    font-size: 40px;
}

.tficonbox.style3 .wrap-icon {
    margin-bottom: 23px;
}

.tficonbox.style3 .content .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 24px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tficonbox.style3 .content .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #808285;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tficonbox.style3 .content .tf-button  {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: var(--theme-primary-color);
    display: inline-flex;
    align-items: center;
    column-gap: 7px;
    width: max-content;
    justify-content: center;
    margin-top: 10px;
}

.tficonbox.style3 .content .tf-button i {
    vertical-align: middle;
}

.tficonbox.style3 .content .tf-button:hover {
    color: var(--theme-primary-color);
}

.flex-style .tficonbox.style3 {
    display: flex;
    gap: 24px;
    background: #fff;
}

.flex-style .tficonbox.style3 .wrap-icon-inner {
    box-shadow: unset;
    background: var(--theme-primary-rgba);
}

.flex-style .tficonbox.style3:hover .wrap-icon-inner {
    background: var(--theme-primary-color);
    color: #fff;
}

.flex-style .tficonbox.style3 .wrap-icon .wrap-icon-inner {
    width: 76px;
    height: 76px;
}

.flex-style .tficonbox.style3 .content .title {
    margin-bottom: 16px;
}

.flex-style .tficonbox.style3 .content .tf-button {
    margin-top: 14px;
}



/* style 4 */

.tficonbox.style4 {
    text-align: center;
    border-radius: 16px;
    padding: 32px 32px 32px 32px;
    background: #fff;
}

.tficonbox.style4 .wrap-icon i {
    font-size: 70px;
    color: var(--theme-primary-color);
}

.tficonbox.style4 .wrap-icon {
    width: 120px;
    height: 120px;
    background: var(--theme-primary-rgba);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tficonbox.style4 .content .title {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 32px;
}

.tficonbox.style4 .content .title.show-line::after {
    content: '';
    width: 80px;
    height: 1px;
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translate(-50%);
    background: #ECECEC;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tficonbox.style4:hover .wrap-icon,
.tficonbox.style4:hover .content .title.show-line::after {
    background: var(--theme-primary-color);
}

.tficonbox.style4:hover .wrap-icon i {
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tficonbox.style4:hover .wrap-icon path {
    fill: #fff;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tficonbox.style4:hover {
    box-shadow: 0px 30px 60px 0px #00000012;
}

.tficonbox.style4 .content .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #5C5E61;
}

.tficonbox.style4 .content .tf-button  {
    font-size: 16px;
    font-weight: 600;
    border-radius: 16px;
    line-height: 26px;
    letter-spacing: 0em;
    color: var(--theme-primary-color);
    padding: 7px 36px;
    border: 2px solid var(--theme-primary-color);
    display: inline-flex;
    align-items: center;
    column-gap: 7px;
    width: max-content;
    justify-content: center;
    margin-top: 10px;
}

.tficonbox.style4 .content .tf-button:hover {
    border-color: var(--theme-primary-color);
    background: var(--theme-primary-color);
    color: #fff;
}

.tficonbox.style4 .content .tf-button i {
    vertical-align: middle;
    font-size: 21px;
}

/* style 5 */

.tficonbox.style5 {
    box-shadow: 0px 30px 60px 0px #C79E3426;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.tficonbox.style5 .wrap-icon {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tficonbox.style5 .wrap-icon .wrap-icon-inner {
    width: 76px;
    height: 76px;
    background: var(--theme-primary-rgba);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--theme-primary-color);
    font-size: 40px;
    flex-shrink: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tficonbox.style5:hover .wrap-icon-inner {
    background: var(--theme-primary-color);
    color: #fff;
}

.tficonbox.style5 .wrap-icon-inner > * {
    all: unset;
}

.tficonbox.style5 .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 16px;
}

.tficonbox.style5 .content .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #5C5E61;
    margin-bottom: 16px;
}

.tficonbox.style5 .content .tf-button  {
    font-size: 16px;
    font-weight: 700;
    line-height: 22.4px;
    color: var(--theme-primary-color);
    display: inline-flex;
    align-items: center;
    column-gap: 11px;
    width: max-content;
    justify-content: center;
}

.tficonbox.style5 .content .tf-button i {
    vertical-align: middle;
}

.tficonbox.style5 .content .tf-button:hover {
    color: #2C2E33;
}


/* default */

.tficonbox,
.tficonbox .wrap-icon i,
.tficonbox .wrap-icon svg {
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -ms-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

.tficonbox .content .tf-button i {
    display: inline-block;
}

.tficonbox:hover .content .tf-button i {
    -webkit-animation: toRight 0.3s forwards;
    -moz-animation: toRight 0.3s forwards;
    animation: toRight 0.3s forwards;
}

/* hover border */

.tficonbox.hover-border-button .tf-button span {
    position: relative;
}

.tficonbox.hover-border-button .tf-button span::after,
.tficonbox.hover-border-button .tf-button span::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--theme-primary-color);
    transition: all ease 0.4s;
}

.tficonbox.hover-border-button .tf-button span::after {
    width: 0;
    left: 0;
    transition: all ease 0.8s;
}

.tficonbox.hover-border-button .tf-button:hover span::after {
    width: 100%;
}

.tficonbox.hover-border-button .tf-button:hover span::before {
    width: 0;
}

@keyframes toRight {
    49% {
        transform: translate(100%);
    }
    50% {
        opacity: 0;
        transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}

/* icon list */

.tf-icon-carousel .item-icon-list {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    padding: 41px 40px 43px 40px;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tf-icon-carousel .item-icon-list:hover h6::after {
    background: var(--theme-primary-color);
}

.tf-icon-carousel .item-icon-list .icon {
    font-size: 60px;
    color: var(--theme-primary-color);
}

.tf-icon-carousel .item-icon-list .wrap-icon .wrap-icon-inner > * {
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -ms-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

.tf-icon-carousel .item-icon-list:hover .wrap-icon .wrap-icon-inner > * {
    transform: rotateY(360deg);
}

.tf-icon-carousel .item-icon-list h6 {
    font-size: 20px;
    color: rgb(43, 43, 43);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 44px;
    position: relative;
}

.tf-icon-carousel .item-icon-list h6::after {
    content: '';
    width: 90px;
    height: 2px;
    position: absolute;
    bottom: -21px;
    left: 50%;
    transform: translate(-50%);
    background: #eaeaea;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tf-icon-carousel .item-icon-list .description {
    font-size: 16px;
    color: rgb(85, 85, 85);
    line-height: 1.625;
}

.tf-icon-carousel .item-icon-list .wrap-icon {
    margin-bottom: 27px;
}

.tf-icon-carousel .item-icon-list .wrap-icon .wrap-icon-inner > * {
    max-height: 71px;
    min-height: 71px;
    margin-left: auto;
    margin-right: auto;
    font-size: 54px;
    color: var(--theme-primary-color);
}

.tf-icon-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    color: #fff !important;
    background: var(--theme-primary-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tf-icon-carousel .owl-nav button i::before {
    vertical-align: middle;
}

.tf-icon-carousel .owl-nav button:hover,
.tf-icon-carousel .owl-nav button.disabled {
    opacity: 0.8;
}

.tf-icon-carousel .owl-nav {
    display: flex;
    align-items: center;
    column-gap: 10px;
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translate(-50%);
}

.step-custom .elementor-widget-container .elementor-heading-title {
    position: relative;
}

.step-custom .elementor-widget-container .elementor-heading-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed var(--theme-primary-color);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #FEF7F1;
    z-index: -1;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    width: max-content;
}

.filter-bar.center {
    margin-right: auto;
    margin-left: auto;
}

.filter-bar.flex-start {
    margin-right: auto;
}

.filter-bar.flex-end {
    margin-left: auto;
}

.filter-bar .filter-properties {
    position: relative;
    display: flex;
    padding: 8px 10px;
    align-items: flex-start;
    gap: 16px;
    border-radius: 12px;
    border: 1px solid #ECECEC;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #5C5E61;
    min-width: 124px;
    text-align: center;
    justify-content: center;
}

.filter-bar .filter-properties .properties-counter {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 0px;
    top: -74px;
    width: 100%;
    height: 100%;
}

.filter-bar .filter-properties .properties-counter .content {
    position: absolute;
    bottom: -26px;
    display: flex;
    margin: 0 auto;
    padding: 12px;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
    border-radius: 6px;
    background: var(--system-background-light-primary, #FFF);
    box-shadow: 0px 4px 26px 0px rgba(66, 71, 76, 0.12);
    color: var(--text-body-text, #3A3A3C) !important;

    /* Body Text/Text Main B */
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.filter-bar .filter-properties .properties-counter i {
    position: absolute;
    bottom: -37px;
    flex-shrink: 0;
    font-size: 20px;
    color: #fff;
}

.filter-bar a.filter-properties:hover,
.filter-bar a.filter-properties.active {
    background: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
    color: #fff;
}

.filter-bar a.filter-properties.active {
    font-weight: 700;
}

.tf-properties-wrap .filter-bar {
    margin-bottom: 32px;
}


/* End Filter Bar*/

.tf-properties-wrap.disable-border-radius-card *,
.tf-properties-wrap.disable-border-radius-card .wrap-properties-post .item .properties-post .view-gallery::before,
.tf-properties-wrap.disable-border-radius-card .hv-tool::before,
.tf-properties-wrap.disable-border-radius-card .wrap-properties-post .item .properties-post .view-gallery::after {
    border-radius: 0 !important;
}

/* loading tab */


.tf-properties-wrap .wrap-properties-post .content-tab .content-tab-inner .properties>.loading-icon,
.cards-container .group-card-item-property .loading-icon {
    background: rgba(255, 255, 255, 0.8);
    opacity: 1;
    z-index: 99;
}


.tf-properties-wrap .wrap-properties-post .content-tab .content-tab-inner .loading-icon,
.cards-container .group-card-item-property .loading-icon {
    transition: .5s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.cards-container .group-card-item-property .loading-icon {
    opacity: 1;
}

.loading-icon .bubble {
    width: 10px !important;
    height: 10px !important;
    display: inline-block;
    margin: 0 5px;
}

.loading-icon .dot {
    min-width: 10px !important;
    min-height: 10px !important;
    display: block;
    border-radius: 50%;
    background-color: #000;
    width: 100%;
    height: 100%;
    transform-origin: 50% 50%;
    animation: bubble 1.2s -.6s infinite ease-out;
    -webkit-animation: bubble 1.2s -.6s infinite ease-out;
}

.dot-flashing {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: var(--theme-primary-color);
    color: var(--theme-primary-color);
    animation: dot-flashing 1s infinite linear alternate;
    animation-delay: 0.5s;
}

.dot-flashing::before,
.dot-flashing::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
}

.dot-flashing::before {
    left: -15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: var(--theme-primary-color);
    color: var(--theme-primary-color);
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 0s;
}

.dot-flashing::after {
    left: 15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: var(--theme-primary-color);
    color: var(--theme-primary-color);
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 1s;
}

@keyframes dot-flashing {
    0% {
        background-color: var(--theme-primary-color);
    }

    50%,
    100% {
        background-color: rgba(255, 169, 32, 0.2);
    }
}

/*Column Properties*/

.tf-properties-wrap .wrap-properties-post .item {
    padding: 15px 20px 25px 20px;
}

.tf-properties-wrap .owl-carousel .owl-item .item {
    padding: 15px 0;
}

.tf-properties-wrap .wrap-properties-post.column-1 .item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.tf-properties-wrap .wrap-properties-post.column-2 .item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 49.99%;
    flex: 0 0 49.99%;
    max-width: 49.99%;
}

.tf-properties-wrap .wrap-properties-post.column-3 .item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.tf-properties-wrap .wrap-properties-post.column-4 .item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

/*End Column Properties*/

/* default style */

.tf-properties-wrap .tfre-compare-property .fa-plus::before {
    content: '\e900';
    font-family: 'proty';
}

.tf-properties-wrap .tfre-compare-property .fa-minus::before {
    content: '\e963';
    font-family: 'proty';
}

.tf-properties-wrap .featured-property .list-controller .fa-bookmark::before {
    content: "\e94a";
    font-family: 'proty';
}

.tf-properties-wrap .featured-property .list-controller a.active {
    background: var(--theme-primary-color) !important;
    color: #fff !important;
}

.tf-properties-wrap .featured-property {
    z-index: 1;
}

/* Grid 1 */

.tf-properties-wrap.grid1 .featured-property .view-gallery,
.tf-properties-wrap.list1 .featured-property .view-gallery {
    border-radius: 16px 16px 0 0;
    transition: none;
}

.tf-properties-wrap.grid1 .featured-property,
.tf-properties-wrap.list1 .featured-property {
    position: relative;
}

.tf-properties-wrap.grid1 .featured-property .list-text,
.tf-properties-wrap.list1 .featured-property .list-text {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-content: flex-start;
}

.tf-properties-wrap.grid1 .featured-property .list-text span,
.tf-properties-wrap.list1 .featured-property .list-text span {
    font-size: 14px;
    font-weight: 600;
    line-height: 19.6px;
    padding: 5px 13px 3px 11px;
    border-radius: 999px;
    color: #fff;
}

.tf-properties-wrap.grid1 .featured-property .list-text li,
.tf-properties-wrap.list1 .featured-property .list-text li {
    display: flex;
    height: max-content;
}

.tf-properties-wrap.grid1 .featured-property .list-text span.featured-text,
.tf-properties-wrap.list1 .featured-property .list-text span.featured-text {
    background: var(--theme-primary-color);
}

.tf-properties-wrap.grid1 .featured-property .list-text span.status-text,
.tf-properties-wrap.list1 .featured-property .list-text span.status-text {
    background: #0B213266;
}

.tf-properties-wrap.grid1 .featured-property .list-controller,
.tf-properties-wrap.list1 .featured-property .list-controller {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tf-properties-wrap.grid1 .featured-property .list-controller a,
.tf-properties-wrap.list1 .featured-property .list-controller a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--theme-primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: translateY(10px);
}

.tf-properties-wrap.grid1 .featured-property .list-controller li:nth-child(1) a,
.tf-properties-wrap.list1 .featured-property .list-controller li:nth-child(1) a {
    transition-delay: 0.1s;
}

.tf-properties-wrap.grid1 .featured-property .list-controller li:nth-child(2) a,
.tf-properties-wrap.list1 .featured-property .list-controller li:nth-child(2) a {
    transition-delay: 0.2s;
}

.tf-properties-wrap.grid1 .featured-property .list-controller li:nth-child(3) a,
.tf-properties-wrap.list1 .featured-property .list-controller li:nth-child(3) a {
    transition-delay: 0.3s;
}

.tf-properties-wrap.grid1 .featured-property .bottom-infor-features,
.tf-properties-wrap.list1 .featured-property .bottom-infor-features {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 8px;
    left: 8px;
    right: 16px;
    z-index: 10;
}

.tf-properties-wrap.grid1 .featured-property .label-text,
.tf-properties-wrap.list1 .featured-property .label-text {
    padding: 0 8px;
    background: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #161E2D;
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 10;
}

.tf-properties-wrap .featured-property .list-controller {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    opacity: 0;
    width: max-content;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tf-properties-wrap .properties-post:hover .list-controller {
    opacity: 1;
    visibility: visible;
}

.tf-properties-wrap .properties-post:hover .list-controller a {
    transform: translateY(0);
}

.tf-properties-wrap.grid1 .content,
.tf-properties-wrap.list1 .content {
    padding: 24px 24px 24px 24px;
    border-radius: 0 0 16px 16px;
    background: transparent;
}

.tf-properties-wrap.grid1 .content {
    border: 1px solid #ECECEC;
    border-top: unset;
    background: #fff;
}

.tf-properties-wrap.grid1 .properties-post:hover,
.tf-properties-wrap.list1 .properties-post:hover {
    box-shadow: 0px 15px 20px 0px #00000012;
}

.tf-properties-wrap.grid1 .properties-post:hover .content {
    border-color: #fff;
    background: #fff;
}

.tf-properties-wrap.grid1 .properties-post {
    border-radius: 16px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tf-properties-wrap .properties-post .bottom-prop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tf-properties-wrap .properties-post .bottom-prop .inner {
    display: flex;
    align-items: center;
    gap: 21px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tf-properties-wrap .properties-post .bottom-prop .prop-btn {
    border: 1px solid var(--theme-primary-color);
    color: var(--theme-primary-color);
    padding: 10px 28px;
    border-radius: 12px;
}

.tf-properties-wrap .properties-post .bottom-prop .prop-btn:hover {
    background: var(--theme-primary-color);
    color: #fff;
}

.tf-properties-wrap .properties-post .bottom-prop .tfre-compare-property {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #2C2E33;
}

.tf-properties-wrap .properties-post .bottom-prop .tfre-compare-property i {
    color: #5C5E61;
    margin-right: 7px;
    font-size: 20px;
    vertical-align: bottom;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tf-properties-wrap .properties-post .bottom-prop .tfre-compare-property:hover i,
.tf-properties-wrap .properties-post .bottom-prop .tfre-compare-property.active i {
    color: var(--theme-primary-color);
}

.tf-properties-wrap.grid1 .property-type,
.tf-properties-wrap.list1 .property-type {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 6px;
    color: #2b2b2b;
}

.tf-properties-wrap.list1 .property-type,
.tf-properties-wrap.grid1 .property-type {
    margin-bottom: 6px;
}

.tf-properties-wrap.grid1 .featured-property img {
    max-height: 267px;
    width: 100%;
}

.tf-properties-wrap.grid1 .property-type::before,
.tf-properties-wrap.list1 .property-type::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--theme-primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.tf-properties-wrap.grid1 .content .title,
.tf-properties-wrap.list1 .content .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 10px;
}

.tf-properties-wrap.list1 .content .title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.tf-properties-wrap.grid1 .content .address,
.tf-properties-wrap.list1 .content .address {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #5C5E61;
    margin-bottom: 13px;
}

.tf-properties-wrap .content .address i {
    font-size: 18px;
    margin-right: 7px;
    vertical-align: text-top;
}

.tf-properties-wrap.grid1 .content .description,
.tf-properties-wrap.list1 .content .description {
    display: flex;
    align-items: center;
    column-gap: 16px;
    row-gap: 10px;
    flex-wrap: wrap;
}

.tf-properties-wrap.grid1 .content .description .value,
.tf-properties-wrap.list1 .content .description .value {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    color: #161E2D;
}

.tf-properties-wrap.grid1 .content .description .property-information,
.tf-properties-wrap.list1 .content .description .property-information {
    display: flex;
    align-items: center;
    column-gap: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #969799;
}

.tf-properties-wrap.grid1 .content .description .property-information span,
.tf-properties-wrap.list1 .content .description .property-information span {
    color: #2C2E33;
}

.tf-properties-wrap .content .description {
    padding-bottom: 14px;
    border-bottom: 1px solid #ECECEC;
    margin-bottom: 16px;
}

.tf-properties-wrap .content .description .property-information svg {
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: left;
    margin-right: 5px;
    flex-shrink: 0;
}

.tf-properties-wrap .content .description .property-information svg path {
    fill: #aaaaaa !important;
    stroke: #aaaaaa !important;
    stroke-linecap: unset !important;
    stroke-linejoin: unset !important;
    stroke-width: 0px !important;
}

.tf-properties-wrap.grid1 .bottom,
.tf-properties-wrap.list1 .bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    padding-top: 14px;
    margin-top: 19px;
    row-gap: 10px;
    border-top: 1px solid #E4E4E4;
}

.tf-properties-wrap.grid1 .bottom .avatar img,
.tf-properties-wrap.list1 .bottom .avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.tf-properties-wrap.list1 .bottom .avatar img {
    width: 38px;
    height: 38px;
}

.tf-properties-wrap.grid1 .bottom .avatar,
.tf-properties-wrap.list1 .bottom .avatar {
    display: flex;
    align-items: center;
    column-gap: 7px;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 26px !important;
    letter-spacing: 0em !important;
    color: #555 !important;
}

.tf-properties-wrap.list1 .bottom .avatar {
    column-gap: 12px;
}

.tf-properties-wrap.grid1 .price,
.tf-properties-wrap.list1 .price {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    color: var(--theme-primary-color);
}

.tf-properties-wrap.grid1 .price span,
.tf-properties-wrap.list1 .price span {
    font-size: 16px;
    font-weight: 800;
    line-height: 26px;
    letter-spacing: 0em;
    color: #5C5E61;
    margin-left: 3px;
    vertical-align: text-bottom;
}

.tf-properties-wrap .bottom-prop .view-details {
    padding: 3px 15px !important;
}

.tf-properties-wrap .bottom-prop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    row-gap: 10px;
}

.tf-properties-wrap .bottom-prop .view-details {
    font-weight: 500;
    font-size: 15px;
    border: 1px solid #bfbfbf;
    padding: 4px 15px;
    border-radius: 99px;
    display: inline-block;
    flex-shrink: 0;
}

.tf-properties-wrap .bottom-prop .view-details:hover {
    background: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
    color: #fff;
}

/* list 1 */

.tf-properties-wrap.list1 .properties-post {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tf-properties-wrap.list1 .featured-property .view-gallery {
    border-radius: 16px 0px 0 16px;
}

.tf-properties-wrap.list1 .content {
    border-radius: 0px 16px 16px 0px;
}

.tf-properties-wrap.list1 .properties-post a,
.tf-properties-wrap.list1 .properties-post a img {
    height: 100%;
}

.tf-properties-wrap.list1 .featured-property .view-gallery {
    border-radius: 0;
}

.tf-properties-wrap.list1 .properties-post .content {
    width: 50%;
}

.tf-properties-wrap.list1 .properties-post .featured-property {
    width: 46.8%;
}

.tf-properties-wrap.list1 .content {
    padding: 25px 25px 16px 30px;
    background: #fff;
    flex: 1;
    border: 1px solid #ECECEC;
    border-left: unset;
}

.tf-properties-wrap.list1 .content .description .property-information {
    color: #3A3A3C;
    width: max-content;
}

.tf-properties-wrap.list1 .content .description .property-information span {
    font-weight: 600;
    margin-left: 6px;
}

.tf-properties-wrap .content .description .property-information i {
    font-size: 20px;
    margin-right: 4px;
}

.tf-properties-wrap.list1 .content .description {
    column-gap: 30px;
    row-gap: 3px;
    margin-bottom: 7px;
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    border: none;
}

.tf-properties-wrap.list1 .properties-post .bottom-prop {
    border-top: 1px solid #ECECEC;
    padding-top: 24px;

}

.tf-properties-wrap.list1 .content {
    padding: 23px 22px 23px 24px;
}

.tf-properties-wrap.list1 .price {
    margin-bottom: 5px;
}

.tf-properties-wrap.list1 .content .address {
    margin-bottom: 21px;
}

.tf-properties-wrap.list1 .bottom {
    padding-top: 14px;
    margin-top: 18px;
}

/* Carousel */

.tf-properties-wrap.has-carousel .owl-carousel .owl-stage-outer {
    padding: 15px;
    margin: -15px;
    cursor: ew-resize;
}

.tf-properties-wrap.has-carousel .row {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 60px;
}

.tf-properties-wrap.has-carousel .row>* {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.tf-properties-wrap.has-carousel .wrap-properties-post .owl-carousel.owl-loaded {
    display: flex;
    justify-content: center;
}

.tf-properties-wrap.has-carousel .wrap-properties-post .item {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

.tf-properties-wrap.has-carousel .owl-carousel .owl-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -69px;
    display: flex;
    align-items: center;
    column-gap: 135px;
}

.tf-properties-wrap.has-carousel .owl-carousel .owl-nav.disabled {
    display: none;
}

.tf-properties-wrap.has-carousel .owl-carousel .owl-nav .owl-next,
.tf-properties-wrap.has-carousel .owl-carousel .owl-nav .owl-prev {
    display: flex;
    width: 58px;
    height: 58px;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-radius: 50%;
    border: 1px solid #ECECEC;
    font-size: 25px;
    color: #5C5E61;
}

.tf-properties-wrap.has-carousel .owl-carousel .owl-nav .disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

.tf-properties-wrap.has-carousel .owl-carousel .owl-nav .owl-prev:before,
.tf-properties-wrap.has-carousel .owl-carousel .owl-nav .owl-next:before,
.tf-properties-wrap.has-carousel .owl-carousel .owl-dots .owl-dot:before {
    display: none;
}

.tf-properties-wrap.has-carousel .owl-carousel .owl-nav .owl-next:hover,
.tf-properties-wrap.has-carousel .owl-carousel .owl-nav .owl-prev:hover {
    background: var(--theme-primary-color);
    color: #fff;
    border-color: var(--theme-primary-color);
}

.tf-properties-wrap.has-carousel .wrap-properties-post.owl-carousel .item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.tf-properties-wrap.has-carousel .owl-carousel.row {
    margin: 0 !important;
}

.tf-properties-wrap.has-carousel .owl-carousel .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8.4%;
    display: flex;
    gap: 13px;
}

.tf-properties-wrap.has-carousel .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    line-height: 8px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    overflow: unset;
    background: #E4E4E4;
}

.tf-properties-wrap.has-carousel .owl-dots .owl-dot::after {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    width: 14px;
    height: 14px;
    overflow: visible;
    border: 1px solid var(--theme-primary-color);
    opacity: 0;
    padding: 0;
}

.tf-properties-wrap.has-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.tf-properties-wrap.has-carousel .owl-dots .owl-dot:hover,
.tf-properties-wrap.has-carousel .owl-dots .owl-dot.active {
    opacity: 1;
    background: var(--theme-primary-color);
}

.tf-properties-wrap.has-carousel .owl-carousel .owl-stage {
    display: flex;
}

/* End Carousel */

/* overlay at start */
.mfp-zoom-in.mfp-bg {
    opacity: 0;

    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-zoom-in.mfp-bg.mfp-ready {
    opacity: 0.8;
}

/* overlay animate out */
.mfp-zoom-in.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */
.mfp-zoom-in.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-zoom-in.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

/* content animate out */
.mfp-zoom-in.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.mfp-zoom-in .mfp-container,
.mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-container,
.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

/* Swiper */
.swiper-button-next2 {
    right: 0%;
    left: auto;
}

.swiper-button-prev2 {
    right: auto;
    left: 0%;
}

.tf-properties-wrap .swiper-pagination {
    cursor: default;
}

.tf-properties-wrap .wrap-properties-post .item .properties-post:hover .swiper-button-next2 {
    right: 4%;
}

.tf-properties-wrap .wrap-properties-post .item .properties-post:hover .swiper-button-prev2 {
    left: 4%;
}

.swiper-button-next2,
.swiper-button-prev2 {
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-1);
    position: absolute;
    z-index: 101;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    transition-delay: 0.2s;
    display: grid;
    align-items: center;
    justify-content: center;
}

.swiper-button-next2:hover,
.swiper-button-prev2:hover {
    color: var(--theme-primary-color);
}

.tf-properties-wrap .swiper-button-disabled {
    cursor: not-allowed;
}

.tf-properties-wrap .wrap-properties-post .item .properties-post .swiper-pagination-bullets-dynamic {
    bottom: 15px;
}

.swiper-button-next2 i,
.swiper-button-prev2 i {
    font-size: 18px;
    font-weight: 400;
}

.swiper-container-horizontal>.swiper-pagination {
    z-index: 100;
}

.swiper-container-horizontal>.swiper-pagination.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    opacity: 0;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    background: var(--color-1);
    width: 6px;
    height: 6px;
    margin: 0 2px !important;
    opacity: 1;
}

.tf-properties-wrap .wrap-properties-post .item .properties-post:hover .featured-property .swiper-pagination.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.tf-properties-wrap .wrap-properties-post .item .properties-post:hover .featured-property .swiper-button-next2,
.tf-properties-wrap .wrap-properties-post .item .properties-post:hover .featured-property .swiper-button-prev2 {
    opacity: 1;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    position: relative;
    margin: 0px 2px 0px 2px !important;
    background: transparent;
    border: 2px solid #fff;
    width: 8px;
    height: 8px;
}

.tf-properties-wrap .wrap-properties-post .item .properties-post .featured-property .view-gallery,
.tf-properties-wrap .wrap-properties-post .item .properties-post .featured-property .carousel-image-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.tf-properties-wrap .wrap-properties-post .item .properties-post .featured-property img {
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
}

.tf-properties-wrap .wrap-properties-post .item .properties-post:hover .featured-property img {
    -webkit-transform: scale3d(1.07, 1.07, 1.07);
    transform: scale3d(1.07, 1.07, 1.07);
}

.tf-properties-wrap .wrap-properties-post .item .properties-post .swiper-pagination .img-style::before,
.tf-properties-wrap .wrap-properties-post .item .properties-post .swiper-button-next2 .img-style::before,
.tf-properties-wrap .wrap-properties-post .item .properties-post .swiper-button-prev2 .img-style::before,
.tf-properties-wrap .wrap-properties-post .item .properties-post .img-style::before,
.tf-properties-wrap .wrap-properties-post .item .properties-post .view-gallery::before,
.tf-properties-wrap.style4 .wrap-properties-post .item .properties-post .view-gallery::after {
    content: "";
    top: -50%;
    right: 0;
    left: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
    z-index: 5;
}

.tf-properties-wrap .wrap-properties-post .item .properties-post:hover .swiper-pagination .img-style::before,
.tf-properties-wrap .wrap-properties-post .item .properties-post:hover .swiper-button-next2 .img-style::before,
.tf-properties-wrap .wrap-properties-post .item .properties-post:hover .swiper-button-prev2 .img-style::before,
.tf-properties-wrap .wrap-properties-post .item .properties-post:hover .img-style::before,
.tf-properties-wrap .wrap-properties-post .item .properties-post:hover .view-gallery::before,
.tf-properties-wrap .wrap-properties-post .item .properties-post:hover .icon-plus::before,
.tf-properties-wrap .wrap-properties-post .item .properties-post:hover .icon-plus::after {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.tf-properties-wrap .wrap-properties-post .item .properties-post .icon-plus {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.50);
}

.tf-properties-wrap .wrap-properties-post .item .properties-post:hover .featured-property .icon-plus {
    opacity: 1;
    visibility: visible;
}

/* End Swiper */

.owl-carousel .owl-dots .owl-dot {
    overflow: unset;
    position: relative;
}

.has-carousel .owl-dots .owl-dot::after {
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    display: inline-flex;
    width: 100%;
    height: 100%;
    padding: 10px;
    align-items: center;
    justify-content: center;
}

/* Responsive */

/* Single Properties */

/* Single Properties */

.single-property-post.style1 .featured-single-property {
    display: flex;
    align-items: center;
    background: var(--theme-primary-rgba2);
}

.single-property-post.style1 .featured-single-property .tfre-property-info {
    width: 49.4%;
    position: relative;
    z-index: 99;
}

.single-property-post.style1 .featured-single-property .content-wrapper {
    width: 50%;
    padding: 18px 80px 18px 80px;
}

.single-property-post.style1 .group-title p {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.08em;
    color: var(--theme-primary-color);
    margin-bottom: 4px;
}

.single-property-post.style1 .group-title h4 {
    margin: 0;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25em;
}

.single-property-post.style1 .group-title {
    margin-bottom: 48px;
}

.single-property-post.style1 .content .top {
    display: flex;
    align-items: center;
    column-gap: 7px;
    margin-bottom: 16px;
}

.single-property-post.style1 .content .top span {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    color: var(--theme-primary-color);
    border-radius: 99px;
    padding: 4.5px 12px;
    background: var(--theme-primary-rgba3);
}

.single-property-post.style1 .content .top .featured-text {
    background: var(--theme-primary-color);
    color: #fff;
}

.single-property-post.style1 .content .address {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #5C5E61;
    display: flex;
    align-items: center;
    column-gap: 6px;
}

.single-property-post.style1 .content .address i {
    font-size: 18px;
    margin-right: 2px;
}

.single-property-post.style1 .content .heading .title {
    margin-bottom: 11px;
font-size: 30px;
font-weight: 600;
line-height: 1.4em;
}

.single-property-post.style1 .content .property-information {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #3A3A3C;
    display: flex;
    align-items: center;
}

.single-property-post.style1 .content .property-information i {
    margin-right: 9px;
    color: #5C5E61;
    font-size: 20px;
}

.single-property-post.style1 .content .property-information .value {
    margin-left: 10px;
    font-weight: 600;
}

.single-property-post.style1 .content .description {
    display: flex;
    align-items: center;
    column-gap: 32px;
    row-gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.single-property-post.style1 .content .contact-agent .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.single-property-post.style1 .content .contact-agent .agent {
    display: flex;
    align-items: center;
}

.single-property-post.style1 .content .contact-agent .agent-position {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #5C6368;
    margin-bottom: -1px;
}

.single-property-post.style1 .content .contact-agent a {
    font-size: 18px;
    font-weight: 600;
    line-height: 25.2px;
    color: #161E2D;
}

.single-property-post.style1 .content .contact-agent a:hover {
    color: var(--theme-primary-color);
}

.single-property-post.style1 .content .heading {
    margin-bottom: 16px;
}

.single-property-post.style1 .content .price-content .price {
    font-size: 30px;
    font-weight: 600;
    line-height: 42px;
    color: #161E2D;
}

.single-property-post.style1 .content .price-content .price span {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #5C6368;
}

.single-property-post.style1 .content .list-controller {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.single-property-post.style1 .content .list-controller a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    color: var(--theme-primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.single-property-post.style1 .content .list-controller a.active,
.single-property-post.style1 .content .list-controller a:hover {
    background: var(--theme-primary-color);
    color: #fff;
}

.single-property-post.style1 .content .list-controller .fa-plus::before {
    content: '\e982';
    font-family: 'proty';
}

.single-property-post.style1 .content .list-controller .fa-bookmark::before {
    content: "\e984";
    font-family: 'proty';
}

.single-property-post.style1 .content .list-controller .fa-minus::before {
    content: '\e93e';
    font-family: 'proty';
}

.single-property-post.style1 .content .price-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 550px;
    row-gap: 15px;
    border-top: 1px solid #E4E4E4;
    padding-top: 40px;
}

.single-property-post.style1 .content .contact-agent {
    margin-bottom: 39px;
    margin-top: 40px;
}

.single-property-post.style1 .content .prop-btn {
    border: 1px solid var(--theme-primary-color);
    color: var(--theme-primary-color);
    padding: 11px 28px;
    border-radius: 12px;
}

.single-property-post.style1 .content .prop-btn:hover {
    background: var(--theme-primary-color);
    color: #fff;
}

.single-property-post.style1 .content .tfre-compare-property .fa-plus::before {
    content: '\e900';
    font-family: 'proty';
}

.single-property-post.style1 .content .tfre-compare-property .fa-minus::before {
    content: '\e963';
    font-family: 'proty';
}

.single-property-post.style1 .content .tfre-compare-property i {
    font-size: 20px;
    margin-right: 7px;
    vertical-align: bottom;
}

.single-property-post.style1 .content .price-content .inner {
    display: flex;
    align-items: center;
    column-gap: 20px;
    row-gap: 10px;
}

.single-property-post.style1 .tfre-property-info .single-property-image-main-1 .property-gallery-item img {
    height: 692px;
    object-fit: cover;
}

.single-property-post .owl-dots {
    position: absolute;
    top: 50%;
    right: -97px;
    transform: translateY(-50%) rotate(90deg);
}

.single-property-post .owl-carousel .owl-dots .owl-dot {
    margin: 0 7.5px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    overflow: unset;
    flex-shrink: 0;
    background-color: rgb(223, 223, 223);
    width: 12px;
    height: 12px;
}

.single-property-post .owl-carousel .owl-dots .owl-dot.active {
    opacity: 1;
    background: var(--theme-primary-color);
    width: 16px;
    height: 16px;
}

/* Single Arrow */

.single-property-post .owl-nav button {
    border: 1px solid #E4E4E4;
    width: 60px;
    height: 60px;
    background: #fff;
    color: #161E2D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 30px;
}

.single-property-post .owl-nav button:hover,
.single-property-post .owl-nav button.disabled {
    border-color: var(--theme-primary-color);
    background: var(--theme-primary-color);
    color: #fff;
}

.single-property-post .owl-nav button.disabled {
    opacity: 0;
    visibility: hidden;
}

.single-property-post .owl-prev,
.single-property-post .owl-next {
    position: absolute;
    top: 50%;
    z-index: 99;
    transform: translate(50%, -50%);
}

.single-property-post .owl-next {
    right: -1px;
}

.single-property-post .owl-prev {
    left: -60px;
}

.single-property-post.style2 .owl-next {
    right: 60px;
}

.single-property-post.style2 .owl-prev {
    left: 0px;
}

/* style 2 */

.single-property-post.style2 .featured-single-property {
    position: relative;
}

.single-property-post.style2 .featured-single-property .content-wrapper {
    position: absolute;
    top: 50%;
    left: 16.1%;
    transform: translateY(-50%);
}

.single-property-post.style2 .featured-single-property .content-wrapper .content {
    padding: 20px 15px 15px 18px;
    display: inline-block;
    background: #fff;
    border-radius: 8px;
}

.single-property-post.style2 .group-title p {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.08em;
    color: var(--theme-primary-color);
    margin-bottom: 4px;
}

.single-property-post.style2 .group-title h4 {
    margin: 0;
}

.single-property-post.style2 .group-title {
    margin-bottom: 41px;
}

.single-property-post.style2 .content .top {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 13px;
}

.single-property-post.style2 .content .top span {
    font-size: 12px;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 4px;
    padding: 0 8px;
    background: #0B213266;
}

.single-property-post.style2 .content .top .featured-text {
    background: #198754;
}

.single-property-post.style2 .content .address {
    color: #5C6368;
    display: flex;
    align-items: center;
    column-gap: 6px;
    margin-left: 3px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.single-property-post.style2 .content .heading .title {
    margin-bottom: 8px;
}

.single-property-post.style2 .content .property-information {
    color: #161E2D;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.single-property-post.style2 .content .property-information i {
    width: unset !important;
    height: unset;
    display: unset;
    align-items: unset;
    font-size: 28px;
    margin-right: 12px;
}

.single-property-post.style2 .content .property-information .value {
    margin-right: 4px;
}

.single-property-post.style2 .content .description {
    display: flex;
    align-items: center;
    column-gap: 61px;
    row-gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.single-property-post.style2 .content .contact-agent .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.single-property-post.style2 .content .contact-agent .agent {
    display: flex;
    align-items: center;
}

.single-property-post.style2 .content .contact-agent .agent-position {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #5C6368;
    margin-bottom: 0px;
}

.single-property-post.style2 .content .contact-agent a {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    color: #161E2D;
}

.single-property-post.style2 .content .contact-agent a:hover {
    color: var(--theme-primary-color);
}

.single-property-post.style2 .content .heading {
    margin-bottom: 20px;
}

.single-property-post.style2 .content .price-content .price {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    color: #161E2D;
}

.single-property-post.style2 .content .price-content .price span {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #5C6368;
}

.single-property-post.style2 .content .list-controller {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.single-property-post.style2 .content .list-controller a {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    background: #fff;
    color: #161E2D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E4E4E4;
    font-size: 21px;
}

.single-property-post.style2 .content .list-controller a.active,
.single-property-post.style2 .content .list-controller a:hover {
    background: var(--theme-primary-color);
    color: #fff;
    border-color: var(--theme-primary-color);
}

.single-property-post.style2 .content .list-controller .fa-plus::before {
    content: '\e982';
    font-family: 'proty';
}

.single-property-post.style2 .content .list-controller .fa-bookmark::before {
    content: "\e984";
    font-family: 'proty';
}

.single-property-post.style2 .content .list-controller .fa-minus::before {
    content: '\e93e';
    font-family: 'proty';
}

.single-property-post.style2 .content .price-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 550px;
    row-gap: 15px;
}

.single-property-post.style2 .content .property-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 10px;
    border-top: 1px solid #E4E4E4;
    padding-top: 13px;
}

.single-property-post.style2 .tfre-property-info .single-property-image-main-2 .property-gallery-item img {
    height: 900px;
    object-fit: cover;
}

.single-property-post .owl-nav.disabled {
    display: none;
}

.custom-arrow .tf-posts .owl-nav button.owl-prev {
    left: calc(100% - 110px);
}

@media only screen and (max-width: 1350px) {
    .single-property-post.style1 .content .description {
        column-gap: 30px;
    }

    .single-property-post.style1 .group-title,
    .single-property-post.style1 .content .description {
        margin-bottom: 25px;
    }

    .single-property-post .owl-prev {
        left: -15px;
    }

    .single-property-post .owl-next {
        right: 45px;
    }
    .tf-properties-wrap .wrap-properties-post.column-4 .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
}

@media only screen and (max-width: 1024px) {
    .tf-properties-wrap.list1 .content .description, .tf-properties-wrap.style2 .content .description {
        column-gap: 20px;
        row-gap: 10px;
    }
    .single-property-post.style1 .featured-single-property .content-wrapper {
        padding: 18px 30px 18px 30px;
    }
}

@media only screen and (max-width: 991px) {

    .tf-properties-wrap .wrap-properties-post.column-4 .item,
    .tf-properties-wrap .wrap-properties-post.column-3 .item,
    .tf-properties-wrap .wrap-properties-post.column-1 .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .tf-properties-wrap .wrap-properties-post.column-4 .item,
    .tf-properties-wrap .wrap-properties-post.column-3 .item,
    .tf-properties-wrap .wrap-properties-post.column-1 .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .tf-properties-wrap.grid1 .price ,
        .tf-properties-wrap.style1 .price {
        font-size: 20px;
    }

    .single-property-post.style1 .featured-single-property {
        display: block;
    }

    .single-property-post.style1 .featured-single-property .tfre-property-info,
    .single-property-post.style1 .featured-single-property .content-wrapper {
        width: 100% !important;
    }

    .single-property-post.style1 .content .price-content {
        max-width: unset;
    }

    .single-property-post.style2 .tfre-property-info .single-property-image-main-2 .property-gallery-item img {
        height: 500px;
        object-fit: cover;
    }

    .tf-properties-wrap.grid2 .bottom-prop {
        flex-wrap: wrap;
    }

    .single-property-post.style1 .featured-single-property .content-wrapper {
        padding: 50px 20px;
    }

    .tf-properties-wrap.list1 .content .description {
        display: flex;
        gap: 20px 10px;
        flex-wrap: wrap;
    }

}

@media only screen and (max-width: 767px) {

    .tf-properties-wrap .wrap-properties-post.column-4 .item,
    .tf-properties-wrap .wrap-properties-post.column-3 .item,
    .tf-properties-wrap .wrap-properties-post.column-2 .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .tf-properties-wrap.list1 .wrap-properties-post .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .tf-properties-wrap .wrap-properties-post .item {
        padding: 15px 10px 25px 10px;
    }

    .tf-properties-wrap .properties.row {
        margin-right: -10px;
        margin-left: -10px;
    }

    .tf-properties-wrap.has-carousel .properties.row {
        margin-right: 0px;
        margin-left: 0px;
    }

    .tf-properties-wrap .content .title a,
    .tf-properties-wrap.grid1 .content .address, .tf-properties-wrap.list1 .content .address  {
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
    }

    .tf-properties-wrap.list1 .content .description {
        grid-template-columns: 1fr;
    }

    .tf-properties-wrap .content {
        padding: 20px 10px !important;
    }

    .tf-properties-wrap .featured-property .list-controller {
        top: unset;
        transform: translateX(-50%);
        bottom: 20px;
    }

    .tf-properties-wrap.grid1 .featured-property .list-text,
     .tf-properties-wrap.list1 .featured-property .list-text {
        gap: 5px;
    }

    .tf-properties-wrap.grid1 .featured-property .list-text span,
     .tf-properties-wrap.list1 .featured-property .list-text span {
        font-size: 10px;
        padding: 1px 10px 0px 10px;
    }

    .tf-properties-wrap.grid1 .content .description, .tf-properties-wrap.list1 .content .description {
        column-gap: 10px;
        row-gap: 0px;
    }

    .tf-properties-wrap.grid1 .featured-property .list-controller a, .tf-properties-wrap.list1 .featured-property .list-controller a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .tf-properties-wrap .filter-bar {
        flex-wrap: nowrap;
        overflow-y: scroll;
        width: 100%;
        justify-content: left;
    }

    .hv-tool::after,
    .hv-tool::before,
    .single-property-post .owl-prev,
    .single-property-post .owl-next,
    .single-property-post .owl-nav button {
        display: none;
    }

    .single-property-post.style1 .tfre-property-info .single-property-image-main-1 .property-gallery-item img {
        height: 100%;
    }

    .single-property-post.style2 .featured-single-property .content-wrapper {
        left: 50%;
        width: 90%;
        transform: translate(-50%, -50%);
    }
    
    .single-property-post.style1 .featured-single-property .content-wrapper .content {
        margin: 0;
    }

}

/* End Responsive */


/* Type with map */


.tf-properties-wrap.type-with-map .wrap-properties-post .loading-icon {
    align-items: flex-start !important;
    background: rgba(255, 255, 255, 0.9) !important;
    opacity: 1 !important;
    z-index: 99 !important;
}

.tf-properties-wrap.type-with-map .owl-stage {
    margin: 0 auto;
}

.tf-properties-wrap.type-with-map .wrap-properties-post  .loading-icon .dot-flashing {
    top: 120px;
} 


.tf-properties-wrap.type-with-map .filter-bar { 
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
    gap: 10px;
    margin-bottom: 0;
    align-items: stretch;
}

.tf-properties-wrap.type-with-map .no-item {
    padding: 15px;
}

.tf-properties-wrap.type-with-map .filter-bar a {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    background: transparent;
    color: #5C6368;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    border-bottom: 4px solid transparent;
    border-radius: 0;
}

.tf-properties-wrap.type-with-map .filter-bar a.active,
.tf-properties-wrap.type-with-map .filter-bar a:hover {
    color: #161E2D;
    border-color: var(--theme-primary-color);
}

.tf-properties-wrap.type-with-map .filter-bar a svg {
    max-width: 40px;
    max-height: 40px;
}

.tf-properties-wrap.type-with-map .filter-bar a svg path {
    fill: #5C6368;
}

.tf-properties-wrap.type-with-map .filter-bar a.active svg path,
.tf-properties-wrap.type-with-map .filter-bar a:hover svg path {
    fill: #161E2D;
}


.tf-properties-wrap.type-with-map .content-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.tf-properties-wrap.type-with-map .wrap-properties-post .content-tab .content-tab-inner .properties {
    position: relative;
}

.tf-properties-wrap.type-with-map .content-inner .content-left {
    width: calc(53.7% - 17px);
    margin-left: 17px;
    height: calc(100vh - 258px);
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 40px;
}

.tf-properties-wrap.type-with-map .content-inner .content-left::-webkit-scrollbar-thumb {
    background: #e4e4e4;
}

.tf-properties-wrap.type-with-map .content-inner .content-left::-webkit-scrollbar {
    width: 5px;
}


.tf-properties-wrap.type-with-map .content-inner .content-right {
    width: 46.3%;
    height: calc(100vh - 258px);
    overflow: hidden;
}

.tf-properties-wrap.map .featured-property .view-gallery {
    border-radius: 12px 12px 0 0;
}

.tf-properties-wrap.map .content {
    padding: 16px 16px;
}

.tf-properties-wrap.map .content .title {
    font-size: 18px;
    color: #161E2D;
    line-height: 28px;
    margin-bottom: 4px;
}

.tf-properties-wrap.map .content .address {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 16px;
}

.tf-properties-wrap.map .content .description .property-information {
    column-gap: 7px;
}

.tf-properties-wrap.map .content .description .value {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    color: #161E2D;
}

.tf-properties-wrap.map .content .description .property-information i {
    font-size: 19px;
}

.tf-properties-wrap.map .content .description {
    column-gap: 22px;
}

.tf-properties-wrap.map .bottom {
    border-radius: 0 0 12px 12px;
    padding: 14px 14px;
}

.tf-properties-wrap.map .bottom .avatar {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 22px !important;
}

.tf-properties-wrap.map .price {
    font-size: 20px;
}

.tf-properties-wrap.taxo-carousel .owl-carousel .owl-nav button.owl-prev,
.tf-properties-wrap.taxo-carousel .owl-carousel .owl-nav button.owl-next {
    border: 1px solid #E4E4E4;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    background-color: #fff;
}


.tf-properties-wrap.taxo-carousel .owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: 10px;
}

.tf-properties-wrap.taxo-carousel .owl-carousel .owl-nav button.owl-prev span,
.tf-properties-wrap.taxo-carousel .owl-carousel .owl-nav button.owl-next span {
    color: inherit;
}

.tf-properties-wrap.taxo-carousel .owl-carousel .owl-nav .owl-prev:hover,
.tf-properties-wrap.taxo-carousel .owl-carousel .owl-nav .owl-next:hover {
    color: #fff;
    background-color: var(--theme-primary-color);
}

/* Map Property */

.tf-map-property .map-container:has(#map) {
    position: inherit;
    overflow: inherit;
    height: 460px !important;
}

.tf-map-property .mapboxgl-map {
    width: 100% !important;
    position: relative !important;
    height: 100% !important;
}

@media only screen and (max-width: 1500px) { 
    .tf-properties-wrap.type-with-map .wrap-properties-post.column-4 .item,
    .tf-properties-wrap.type-with-map .wrap-properties-post.column-3 .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .tf-properties-wrap.grid1 .content .description .property-information, .tf-properties-wrap.grid2 .content .description .property-information, .tf-properties-wrap.list1 .content .description .property-information, .tf-properties-wrap.style1 .content .description .property-information {
        width: unset;
    }
}

@media only screen and (max-width: 991px) { 
    .tf-properties-wrap.type-with-map .wrap-properties-post.column-4 .item,
    .tf-properties-wrap.type-with-map .wrap-properties-post.column-3 .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .tf-properties-wrap.taxo-carousel .owl-carousel .owl-nav button.owl-prev,
    .tf-properties-wrap.taxo-carousel .owl-carousel .owl-nav button.owl-next {
        display: none;
    }
    .tf-properties-wrap.type-with-map .content-inner .content-left {
        padding-right: 20px;
    }
}

@media only screen and (max-width: 767px) { 
    .tf-properties-wrap.type-with-map .content-inner {
        flex-direction: column;
    }
    .tf-properties-wrap.type-with-map .content-inner .content-left,
    .tf-properties-wrap.type-with-map .content-inner .content-right {
        width: 100%;
        margin: 0;
        padding: 0 15px;
    }
    .tf-properties-wrap .wrap-properties-post.column-1 .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .tf-properties-wrap.type-with-map .content-inner .content-left,
    .tf-properties-wrap.type-with-map .content-inner .content-right {
        height: 100%;
    }

    .tf-properties-wrap.type-with-map .content-inner .content-left {
        margin-bottom: 50px;
    }
    .tf-posts .owl-nav button {
        display: none !important;
    }
    
    .tf-properties-wrap.has-carousel .owl-carousel .owl-nav {
        display: none;
    }

    .single-property-post.style1 .group-title h4 {
        font-size: 30px;
    }

    .tf-properties-wrap .properties-post .bottom-prop .prop-btn {
        padding: 5px 21px;
    }
}.tf-list-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}
.tf-list-image .box-item {
    position: relative;
    -webkit-animation: slide-har 30s linear infinite;
    animation: slide-har 30s linear infinite;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.tf-list-image .box-item .item {
    padding: 0 25px;
    width: 250px;
}

.tf-list-image .box-item .item .image img {
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-list-image.hover-image .image img {
    filter: grayscale(1);
}

.tf-list-image.hover-image .item:hover .image img {
    filter: grayscale(0);
}

.tf-list-image.hover-stop:hover .box-item {
    animation-play-state: paused;
}

.style-dark .tf-list-image .image {
    border: 1px solid #FFFFFF1A;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.style-dark .tf-list-image .image:hover {
    border-color: var(--theme-primary-rgba);
}

.style-dark .tf-list-image .image img {
    max-width: 126px;
    max-height: 82px;
}

.tf-list-image.swap-animation .box-item {
    -webkit-animation: slide-har2 30s linear infinite;
    animation: slide-har2 30s linear infinite;
}


.flash-content .image {
    position: relative;
    overflow: hidden;
}
  
.flash-content .image::after {
    position: absolute;
    top: 0;
    left: -160%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
  }
  
  .flash-content:hover .image::after {
    animation: shineFlash 2s alternate;
  }
  
  @keyframes shineFlash {
    100% {
      left: 125%;
  }
  }

@keyframes slide-har {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes slide-har2 {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}.tf-counter .counter-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-top: 11px;
}

.tf-counter .counter-number-wrapper {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 0em;
    color: #2b2b2b;
    display: inline-flex;
}

.tf-counter .counter-number-suffix {
    color: var(--theme-primary-color);
}

.tf-counter .wrap-counter-inner {
    text-align: center;
}

.style-circle .tf-counter {
    position: relative;
}

.style-circle .tf-counter::after {
    content: '';
    border: 1px solid #FFFFFF1A;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* style default */

.tf-testimonial-carousel.left .item-testimonial {
    text-align: left;
}

.tf-testimonial-carousel.center .item-testimonial {
    text-align: center;
}

.tf-testimonial-carousel.right .item-testimonial {
    text-align: right;
}

.tf-testimonial-carousel.left .group-author,
.tf-testimonial-carousel.left .rating {
    justify-content: left;
}

.tf-testimonial-carousel.center .group-author,
.tf-testimonial-carousel.center .rating {
    justify-content: center;
}

.tf-testimonial-carousel.right .group-author,
.tf-testimonial-carousel.right .rating {
    justify-content: right;
}

.tf-testimonial-carousel.style1 .item-testimonial {
    text-align: center;
}

.tf-testimonial-carousel.style1 .item-testimonial {
    border: 1px solid #ECECEC;
    padding: 24px 24px 21px 24px;
    border-radius: 20px;
    background: #fff;
}

.tf-testimonial-carousel.style1 .thumb {
    margin-bottom: 15px;
}

.tf-testimonial-carousel.style1 .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 23px;
}

.tf-testimonial-carousel.style1 .rating i {
    color: #f2b138;
}

.tf-testimonial-carousel.style1 .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 23px;
}

.tf-testimonial-carousel.style1 .group-author {
    text-align: center;
    display: inline-block;
}

.tf-testimonial-carousel.style1 .thumb img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto;
    object-fit: cover;
}

.tf-testimonial-carousel.style1 .group-author h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 25.2px;
    margin-bottom: 3px;
}

.tf-testimonial-carousel.style1 .group-author p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #5C6368;
}

.tf-testimonial-carousel.style1 .group-author .thumb {
    margin-bottom: 22px;
}

.owl-carousel.has-overlay .owl-item.active_overlay {
    opacity: 0.3;
}

.owl-carousel.has-overlay .owl-item {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/* style mansory */

.tf-testimonial-carousel.grid .grid-testimonial {
    column-count: 3;
    display: block;
    column-gap: 40px;
}

.tf-testimonial-carousel.grid .grid-testimonial .item {
    break-inside: avoid;
}

.tf-testimonial-carousel.grid .item-testimonial {
    border: 1px solid #ECECEC;
    padding: 22px 24px 24px 24px;
    border-radius: 20px;
    margin-bottom: 40px;
    background: #fff;
}

.tf-testimonial-carousel.grid .item-testimonial .rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #FFA800;
    margin-bottom: 15px;
}

.tf-testimonial-carousel.grid .item-testimonial .description {
font-size: 16px;
font-weight: 400;
line-height: 22px;
color: #5C5E61;
margin-bottom: 23px;
}

.tf-testimonial-carousel.grid .item-testimonial .group-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tf-testimonial-carousel.grid .item-testimonial .thumb img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.tf-testimonial-carousel.grid .item-testimonial .thumb {
    flex-shrink: 0;
}

.tf-testimonial-carousel.grid .item-testimonial h6 {
font-size: 18px;
font-weight: 600;
line-height: 25.2px;
margin-bottom: 3px;
}

.tf-testimonial-carousel.grid .item-testimonial .content p {
font-size: 12px;
font-weight: 400;
line-height: 16px;
color: #5C6368;
}

/*carousel optiont*/

.owl-nav .owl-prev.disabled, 
.owl-nav .owl-next.disabled {
    cursor: not-allowed;
}

.tf-testimonial-carousel .owl-nav .owl-prev:before, 
.tf-testimonial-carousel .owl-nav .owl-next:before,
.tf-testimonial-carousel .owl-dots .owl-dot:before {
    display: none;
}

.tf-testimonial-carousel.no-arrow .owl-nav .owl-prev,
.tf-testimonial-carousel.no-arrow .owl-nav .owl-next {
    display: none;
}

.tf-testimonial-carousel.has-arrow .owl-nav .owl-prev,
.tf-testimonial-carousel.has-arrow .owl-nav .owl-next {
    display: block;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.tf-testimonial-carousel.has-arrow .owl-nav .disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

.tf-testimonial-carousel .owl-dots {
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    bottom: -40px;
}

.tf-testimonial-carousel .owl-dots .owl-dot {
    padding: 0;
    width: 10px;
    height: 10px;
    background: #0080f0;
    display: inline-block;
    margin: 0 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.tf-testimonial-carousel.has-carousel.no-bullets .owl-dots,
.tf-testimonial-carousel.no-bullets .owl-dots {
    display: none;
}

.tf-testimonial-carousel.has-carousel.has-bullets .owl-dots {
    display: block;
}

.tf-testimonial-carousel .owl-carousel .owl-dots .owl-dot {
    margin: 0 7.5px;
    width: 8px;
    height: 8px;
    line-height: 8px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    overflow: unset;
    background: #E4E4E4;
    flex-shrink: 0;
}

.tf-testimonial-carousel .owl-carousel .owl-dots .owl-dot::after {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    width: 14px;
    height: 14px;
    overflow: visible;
    border: 1px solid var(--theme-primary-color);
    opacity: 0;
}

.tf-testimonial-carousel .owl-carousel .owl-dots .owl-dot.active {
    opacity: 1;
    background: var(--theme-primary-color);
}

.tf-testimonial-carousel .owl-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.tf-testimonial-carousel.style1 .owl-dots {
    bottom: -82px;
}

/* Custom Cursor
-------------------------------------------------------------- */

.tfmouseCursor {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translateZ(0);
    visibility: hidden;
    text-align: center;
  }
  
  .cursor-inner {
    margin-left: -40px;
    margin-top: -40px;
    width: 80px;
    height: 80px;
    color: #fff;
    cursor: grab;
    font-weight: 500;
    background: var(--theme-primary-color);
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0;
    transition: all 0.1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    gap: 7px;
  }
  
  .cursor-inner::after {
    content: '\e915';
    font-family: 'proty';
    color: #fff;
  }
  
  .cursor-inner::before {
    content: '\e91d';
    font-family: 'proty';
    color: #fff;
  }

  .tf-testimonial-carousel:hover .cursor-inner {
    opacity: 1;
  }
  
  .tfmouseCursor.cursor-hover {
    opacity: 0 !important;
  }

  .tf-testimonial-carousel.has-custom-cusor .owl-stage-outer {
    cursor: grab;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .tf-testimonial-carousel .owl-nav button {
    width: 58px;
    height: 58px;
    border: 1px solid #ECECEC !important;
    border-radius: 50%;
    color: #5C5E61 !important;
    display: flex;
    align-items: center;
    justify-content: center;  
    position: absolute;
    bottom: -106px;
    font-size: 25px !important;
  }

  .tf-testimonial-carousel .owl-nav button.owl-next {
    right: 40.5%;
  }

  .tf-testimonial-carousel .owl-nav button.owl-prev {
    left: 40%;
  }

  .tf-testimonial-carousel .owl-nav button:hover {
    background: var(--theme-primary-color) !important;
    border-color: var(--theme-primary-color) !important;
    color: #fff !important;
  }

  .tf-testimonial-carousel .item-testimonial {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .tf-testimonial-carousel .owl-item.center .item-testimonial {
    box-shadow: 0px 15px 30px 0px #00000012;
  }


  @media (max-width: 1200px) {
    .tfmouseCursor {
        display: none;
    }
  }

@media (max-width: 991px) {
    .tf-testimonial-carousel.grid .grid-testimonial {
        column-count: 2;
    }
    .tf-testimonial-carousel .owl-nav button.owl-next {
        right: 34.5%;
    }
    .tf-testimonial-carousel .owl-nav button.owl-prev {
        left: 35%;
    }
}

@media (max-width: 767px) { 
    .tf-testimonial-carousel.grid .grid-testimonial {
        column-count: 1;
    }
    .tf-testimonial-carousel .owl-nav {
        display: none;
    }
}


.tf-posts.no-carousel {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.tf-posts.no-carousel.column-1 .item {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.tf-posts.no-carousel.column-2 .item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.tf-posts.no-carousel.column-3 .item {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.tf-posts.no-carousel.column-4 .item {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.tf-posts.has-carousel .item {
    padding: 0 !important;
}

/* style-1 */

.tf-posts .blog-post {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.tf-posts .blog-post .featured-post {
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: unset;
}

.tf-posts .blog-post .featured-post a {
    width: 100%;
    display: block;
    border-radius: 16px;
    overflow: hidden;
}

.tf-posts .blog-post .featured-post .blog-plus {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1C1C1E;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 30px;
    -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
    visibility: hidden;
    opacity: 0;
}

.tf-posts .blog-post:hover .featured-post .blog-plus {
    visibility: visible;
    opacity: 0.6;
    cursor: pointer;
}

.tf-posts.style1 .blog-post .meta-text {
    display: flex;
    gap: 10px;
    position: absolute;
    top: 8px;
    left: 8px;
}

.tf-posts.style1 .blog-post .meta-text a {
    width: max-content !important;
    background: var(--theme-primary-color);
    padding: 5px 16px 4px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0;
    display: inline-block !important;
    color: #fff;
    border-radius: 999px;
}

.tf-posts .blog-post .meta-text a:hover {
    color: #161E2D;
    color: #fff;
}

.tf-posts .blog-post .featured-post img {
    height: 264px;
    object-fit: cover;
    width: 100%;
    border-radius: 0;
    -webkit-transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
}

.tf-posts .blog-post:hover .featured-post img {
    -webkit-transform: scale3d(1.07, 1.07, 1.07);
    transform: scale3d(1.07, 1.07, 1.07);
}

.tf-posts .blog-post .content {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.tf-posts .blog-post .content-post {
    font-weight: 400;
    font-size: 16px;
    color: rgb(85, 85, 85);
    line-height: 1.5;
    margin-bottom: 12px;
}

.tf-posts .blog-post .tf-button-container a {
    font-size: 16px;
    color: var(--theme-primary-color);
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
}

.tf-posts .blog-post .tf-button-container a span {
    position: relative;
}

.tf-posts .blog-post .tf-button-container a span::after {
    position: absolute;
    content: "";
    width: 0;
    left: 0;
    bottom: -1px;
    background: var(--theme-primary-color);
    height: 2px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-posts .blog-post .tf-button-container a:hover span::after {
    width: 100%;
}

.tf-posts .blog-post .tf-button-container a i {
    margin-left: 4px;
    display: inline-block;
    font-size: 20px;
    vertical-align: text-bottom;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-delay: 0.2s;
}

.tf-posts .blog-post .tf-button-container a:hover i {
    transform: translateX(4px);
}

@keyframes toRight {
    49% {
        transform: translate(100%);
    }
    50% {
        opacity: 0;
        transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}

.tf-posts .owl-nav button {
    width: 46px;
    height: 46px;
    border: 2px solid  var(--theme-primary-color) !important;
    border-radius: 4px;
    color: var(--theme-primary-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.tf-posts .owl-nav button.owl-next {
    right: 0;
}

.tf-posts .owl-nav button.owl-prev {
    left: 0;
}

.tf-posts .owl-nav button.disabled {
    border: 2px solid #eaeaea !important;
    color: #aaaaaa !important;
}

.tf-posts .owl-nav button:hover {
    border-color: var(--theme-primary-color);
    color: var(--theme-primary-color);
}

.tf-posts .blog-post .meta-date {
    color: #2C2E33;
    font-size: 14px;
    font-weight: 500;
    line-height: 19.6px;
    margin-bottom: 13px;
    display: block;
    padding-left: 2px;
}

.tf-posts .blog-post .meta-date:hover {
    color: var(--theme-primary-color);
}

.tf-posts .blog-post .meta-date i {
    font-size: 18px;
    vertical-align: text-top;
    margin-right: 2px;
}

.tf-posts .blog-post .title {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 17px;
}

.tf-posts .blog-post .title a {
    color: #1C1C1E;
}

.tf-posts .blog-post .title a:hover {
    color: var(--theme-primary-color);
}

.tf-posts .blog-post .category-post a {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.tf-posts .blog-post .meta-features {
    padding: 7px 15px;
    border-radius: 6px;
    background: #FFF;
    display: flex;
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.tf-posts .blog-post .post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.tf-posts .blog-post .post-meta .inner {
    position: relative;
    margin-right: 17px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
}

.tf-posts .blog-post .post-meta .inner .author {
    color: #161E2D;
    font-weight: 700;
}

.tf-posts .blog-post .post-meta .inner .author:hover {
    color: var(--theme-primary-color);
}

.tf-posts .blog-post .post-meta .inner:not(:last-child):after {
    content: '';
    width: 1px;
    height: 12px;
    background-color: #E4E4E4;
    position: absolute;
    top: 50%;
    right: -9px;
    transform: translateY(-50%);
}

.tf-posts .blog-post .meta-post {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    flex-wrap: wrap;
}

.tf-posts .blog-post .meta-features .post-meta.meta-time,
.tf-posts .blog-post .meta-features .category-post a {
    color: #000;
    font-size: 13px;
    font-weight: 600;
    line-height: 150%;
}

.tf-posts .blog-post .meta-features .post-meta.meta-time {
    margin-right: 17px;
}

.tf-posts .blog-post .meta-features .category-post i {
    margin-right: 7px;
}

.tf-posts .blog-post .meta-features .category-post {
    display: flex;
    align-items: center;
}

.tf-posts .blog-post .meta-features .category-post a {
    color: var(--theme-primary-color);
}

.tf-posts .blog-post .meta-post .post-meta:not(:last-child) {
    margin-right: 16px;
}

.tf-posts .blog-post .meta-post .post-meta a,
.tf-posts .blog-post .meta-post .post-meta.meta-time {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #1C1C1E;
}

.tf-posts .blog-post .meta-post .post-meta.meta-author span {
    color: #64666C;
    margin-right: 5px;
}

.tf-posts .blog-post .meta-post .post-meta a:hover {
    color: var(--theme-primary-color);
}

.tf-posts .blog-post .tf-button-container i {
    vertical-align: middle;
    margin-left: 8px;
    display: inline-block;
}

.tf-posts .item {
    display: flex;
    display: -webkit-box;
    padding: 15px 15px 15px 15px;

}

.tf-posts .item .blog-post {
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
}

/* style 2 */

.tf-posts.style2 .blog-post .featured-post img {
    min-height: 450px;
}

.tf-posts.style2 .blog-post .title {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0em;
    margin-bottom: 4px;
}

.tf-posts.style2 .blog-post .meta-text {
    width: max-content !important;
    background: var(--theme-primary-color);
    padding: 2px 6px;
    display: inline-block !important;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.tf-posts.style2 .blog-post .meta-text:hover {
    background: #161E2D;
}

.tf-posts.style2 .blog-post .post-meta .inner .author {
    font-weight: 500;
}

.tf-posts.style2 .blog-post .content {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.tf-posts.style2 .blog-post .content-post {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    transform: translateY(10px);
}

.tf-posts.style2 .blog-post .title a,
.tf-posts.style2 .blog-post .post-meta .inner a,
.tf-posts.style2 .blog-post .content-post,
.tf-posts.style2 .blog-post .post-meta .inner .author {
    color: #fff;
}

.tf-posts.style2 .blog-post .title a:hover,
.tf-posts.style2 .blog-post .post-meta .inner a:hover,
.tf-posts.style2 .blog-post .post-meta .inner .author:hover {
    color: var(--theme-primary-color);
}

.tf-posts.style2 .blog-post .featured-post .blog-plus {
    background: linear-gradient(180deg, rgba(11, 33, 50, 0) 0%, #161E2D 100%);
    visibility: visible;
    opacity: 1;
}

.tf-posts.style2 .blog-post .featured-post {
    border-radius: 16px;
}

.tf-posts .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6.4%;
    display: flex;
    gap: 13px;
}

.tf-posts .owl-dots button {
    width: 8px;
    height: 8px;
    line-height: 8px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    overflow: unset;
    background: #E4E4E4;
    margin: 0 5px;
}

.tf-posts .owl-dots button:hover,
.tf-posts .owl-dots button.active {
    opacity: 1;
    background: var(--theme-primary-color);
}

.tf-posts .owl-dots button::after {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    width: 14px;
    height: 14px;
    overflow: visible;
    border: 1px solid var(--theme-primary-color);
    opacity: 0;
    padding: 0;
}

.tf-posts .owl-dots button.active::after {
    opacity: 1;
}

@media (max-width: 991px) {
    .tf-posts.no-carousel.tablet-column-1 .item {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tf-posts.no-carousel.tablet-column-2 .item {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .tf-posts.no-carousel.tablet-column-3 .item {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

}

@media (max-width: 767px) {
    .tf-posts.no-carousel.mobile-column-1 .item {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tf-posts.no-carousel.mobile-column-2 .item {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

}@font-face {
  font-family: 'proty';
  src:  url(//tivrarealty.com/wp-content/themes/proty/fonts/proty.eot?j6eml6);
  src:  url(//tivrarealty.com/wp-content/themes/proty/fonts/proty.eot?j6eml6#iefix) format('embedded-opentype'),
    url(//tivrarealty.com/wp-content/themes/proty/fonts/proty.ttf?j6eml6) format('truetype'),
    url(//tivrarealty.com/wp-content/themes/proty/fonts/proty.woff?j6eml6) format('woff'),
    url(//tivrarealty.com/wp-content/themes/proty/fonts/proty.svg?j6eml6#proty) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-proty-"], [class*=" icon-proty-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'proty' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-proty-pass-login:before {
  content: "\e984";
}
.icon-proty-mail-login:before {
  content: "\e985";
}
.icon-proty-user-login:before {
  content: "\e986";
}
.icon-proty-search2:before {
  content: "\e983";
}
.icon-proty-plus-2:before {
  content: "\e981";
}
.icon-proty-minus-sign:before {
  content: "\e982";
}
.icon-proty-incoming-call:before {
  content: "\e97e";
}
.icon-proty-location4:before {
  content: "\e97f";
}
.icon-proty-enveloper5:before {
  content: "\e980";
}
.icon-proty-datee:before {
  content: "\e97d";
}
.icon-proty-pass:before {
  content: "\e96a";
}
.icon-proty-userr:before {
  content: "\e96b";
}
.icon-proty-logout2:before {
  content: "\e96c";
}
.icon-proty-notee:before {
  content: "\e96d";
}
.icon-proty-setting:before {
  content: "\e96e";
}
.icon-proty-chatt:before {
  content: "\e96f";
}
.icon-proty-folder2:before {
  content: "\e970";
}
.icon-proty-favorite:before {
  content: "\e971";
}
.icon-proty-packagee:before {
  content: "\e972";
}
.icon-proty-dashboardd:before {
  content: "\e973";
}
.icon-proty-solution:before {
  content: "\e974";
}
.icon-proty-menug:before {
  content: "\e975";
}
.icon-proty-trash:before {
  content: "\e976";
}
.icon-proty-hide:before {
  content: "\e977";
}
.icon-proty-ticky:before {
  content: "\e978";
}
.icon-proty-message:before {
  content: "\e979";
}
.icon-proty-favoritess:before {
  content: "\e97a";
}
.icon-proty-count:before {
  content: "\e97b";
}
.icon-proty-properti:before {
  content: "\e97c";
}
.icon-proty-printing:before {
  content: "\e966";
}
.icon-proty-share:before {
  content: "\e967";
}
.icon-proty-compare2:before {
  content: "\e968";
}
.icon-proty-heart:before {
  content: "\e969";
}
.icon-proty-close:before {
  content: "\e964";
}
.icon-proty-gallery:before {
  content: "\e965";
}
.icon-proty-loading:before {
  content: "\e962";
}
.icon-proty-minus:before {
  content: "\e963";
}
.icon-proty-acc-down:before {
  content: "\e960";
}
.icon-proty-acc-up:before {
  content: "\e961";
}
.icon-proty-tele:before {
  content: "\e95c";
}
.icon-proty-finnance:before {
  content: "\e95d";
}
.icon-proty-house2:before {
  content: "\e95e";
}
.icon-proty-map-location:before {
  content: "\e95f";
}
.icon-proty-shield2:before {
  content: "\e959";
}
.icon-proty-user5:before {
  content: "\e95a";
}
.icon-proty-homee:before {
  content: "\e95b";
}
.icon-proty-arrow-right:before {
  content: "\e952";
}
.icon-proty-arrow-left:before {
  content: "\e957";
}
.icon-proty-president:before {
  content: "\e958";
}
.icon-proty-money2:before {
  content: "\e951";
}
.icon-proty-user4:before {
  content: "\e953";
}
.icon-proty-location3:before {
  content: "\e954";
}
.icon-proty-doc:before {
  content: "\e955";
}
.icon-proty-star:before {
  content: "\e956";
}
.icon-proty-garade:before {
  content: "\e94c";
}
.icon-proty-size:before {
  content: "\e94d";
}
.icon-proty-bath2:before {
  content: "\e94e";
}
.icon-proty-bed2:before {
  content: "\e94f";
}
.icon-proty-location2:before {
  content: "\e950";
}
.icon-proty-zoom:before {
  content: "\e949";
}
.icon-proty-bookmark:before {
  content: "\e94a";
}
.icon-proty-filter:before {
  content: "\e94b";
}
.icon-proty-logout:before {
  content: "\e93e";
}
.icon-proty-notes4:before {
  content: "\e93f";
}
.icon-proty-setting-user:before {
  content: "\e940";
}
.icon-proty-quote:before {
  content: "\e941";
}
.icon-proty-search-folder:before {
  content: "\e942";
}
.icon-proty-notes3:before {
  content: "\e943";
}
.icon-proty-package:before {
  content: "\e944";
}
.icon-proty-notes2:before {
  content: "\e945";
}
.icon-proty-notes:before {
  content: "\e946";
}
.icon-proty-menu:before {
  content: "\e947";
}
.icon-proty-pin:before {
  content: "\e948";
}
.icon-proty-search:before {
  content: "\e93c";
}
.icon-proty-toggle-off:before {
  content: "\e93a";
}
.icon-proty-toggle-on:before {
  content: "\e93b";
}
.icon-proty-angle-down-2:before {
  content: "\e939";
}
.icon-proty-dribble:before {
  content: "\e92e";
}
.icon-proty-stack-overflow:before {
  content: "\e92f";
}
.icon-proty-spotify:before {
  content: "\e930";
}
.icon-proty-skype:before {
  content: "\e931";
}
.icon-proty-digg:before {
  content: "\e932";
}
.icon-proty-bitcoin:before {
  content: "\e933";
}
.icon-proty-behance:before {
  content: "\e934";
}
.icon-proty-vimeo:before {
  content: "\e935";
}
.icon-proty-youtube:before {
  content: "\e936";
}
.icon-proty-pinterest:before {
  content: "\e937";
}
.icon-proty-google:before {
  content: "\e938";
}
.icon-proty-chat:before {
  content: "\e92b";
}
.icon-proty-folder:before {
  content: "\e92c";
}
.icon-proty-user:before {
  content: "\e92d";
}
.icon-proty-footer-right:before {
  content: "\e92a";
}
.icon-proty-letter2:before {
  content: "\e923";
}
.icon-proty-phone-call:before {
  content: "\e925";
}
.icon-proty-letter:before {
  content: "\e903";
}
.icon-proty-angle-right:before {
  content: "\e915";
}
.icon-proty-angle-left:before {
  content: "\e91d";
}
.icon-proty-circle-right:before {
  content: "\e921";
}
.icon-proty-date:before {
  content: "\e922";
}
.icon-proty-user2:before {
  content: "\e914";
}
.icon-proty-compare:before {
  content: "\e900";
}
.icon-proty-bed:before {
  content: "\e901";
}
.icon-proty-bad:before {
  content: "\e902";
}
.icon-proty-mail2:before {
  content: "\e904";
}
.icon-proty-phone:before {
  content: "\e905";
}
.icon-proty-ruler:before {
  content: "\e906";
}
.icon-proty-hammer:before {
  content: "\e907";
}
.icon-proty-crop:before {
  content: "\e908";
}
.icon-proty-bathtub:before {
  content: "\e909";
}
.icon-proty-Bed:before {
  content: "\e90a";
}
.icon-proty-garage:before {
  content: "\e90b";
}
.icon-proty-slider:before {
  content: "\e90c";
}
.icon-proty-SlidersHorizontal:before {
  content: "\e90d";
}
.icon-proty-house:before {
  content: "\e90e";
}
.icon-proty-phone2:before {
  content: "\e90f";
}
.icon-proty-mail3:before {
  content: "\e910";
}
.icon-proty-globe:before {
  content: "\e911";
}
.icon-proty-mail4:before {
  content: "\e912";
}
.icon-proty-phone3:before {
  content: "\e913";
}
.icon-proty-shield:before {
  content: "\e916";
}
.icon-proty-user3:before {
  content: "\e917";
}
.icon-proty-home2:before {
  content: "\e918";
}
.icon-proty-money:before {
  content: "\e919";
}
.icon-proty-location:before {
  content: "\e91a";
}
.icon-proty-vali:before {
  content: "\e91b";
}
.icon-proty-mail5:before {
  content: "\e91c";
}
.icon-proty-map:before {
  content: "\e91e";
}
.icon-proty-list:before {
  content: "\e91f";
}
.icon-proty-gird:before {
  content: "\e920";
}
.icon-proty-clock:before {
  content: "\e924";
}
.icon-proty-instagram:before {
  content: "\e926";
}
.icon-proty-linkedin:before {
  content: "\e927";
}
.icon-proty-twitter:before {
  content: "\e928";
}
.icon-proty-facebook:before {
  content: "\e929";
}
.icon-proty-angle-down:before {
  content: "\e93d";
}