/*
@File: Clada Theme Styles

* This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.

This files table contents are outlined below>>>>>

/*--------------------------------
=========Table Of Contents========

1.  General Styles 
2.  Back To Top Button CSS
3.  Preloader CSS
4.  Button & Link CSS
5.  Section Title, Overlay & Shape CSS
6.  Pagination CSS
7.  Breadcrumb CSS
8.  Hero CSS
----------------------------------*/
:root {
  --FontBold:"Chillax-Bold";
  --FontSemibold:"Chillax-SemiBold";
  --FontMedium:"Chillax-Medium";
  --FontRegular:"Chillax-Regular";
  --FontLight:"Chillax-Light";
  --primaryColor: #FC5761;
  --secondaryColor: #111828;
  --optionalColor: #0075FF;
  --paraColor: #687693;
  --ashColor: #F1F3F5;
  --grayColor: #F7F8F9;
  --whiteColor: #ffffff;
  --offwhiteColor: #E9ECEF;
  --aztechColor:#00181d;
  --codColor: #111;
  --mildColor: #222;
  --blackColor: #000;
  --fontSize: 16px;
  --transition: all ease .5s;
}

@font-face {
  font-family: Chillax-Bold;
  src: url(../fonts/Chillax-Bold.woff);
}
@font-face {
  font-family: Chillax-SemiBold;
  src: url(../fonts/Chillax-Semibold.woff);
}
@font-face {
  font-family: Chillax-Medium;
  src: url(../fonts/Chillax-Medium.woff);
}
@font-face {
  font-family: Chillax-Regular;
  src: url(../fonts/Chillax-Regular.woff);
}
@font-face {
  font-family: Chillax-Light;
  src: url(../fonts/Chillax-Light.woff);
}
/*---------------------------------
    General Styles 
-----------------------------------*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:focus,
button:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  box-shadow: none;
}

a,
button,
input[type=submit] {
  cursor: pointer;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

input, textarea, select {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px 15px 12px;
  width: 100%;
  font-size: 16px;
}

.select-options {
  background-image: url(../img/icons/down-arrow.svg);
  background-position: calc(100% - 18px) 50%;
  background-size: 12px;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--whiteColor);
  letter-spacing: 0.8px;
  font-family: var(--secondaryFont);
  display: inline-block;
  height: 52px;
  width: 176px;
  padding: 12px 20px;
}
.select-options option {
  color: var(--blackColor);
}

input {
  height: 50px;
}

a {
  text-transform: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--paraColor);
}

a:hover,
a :focus {
  text-decoration: none;
  box-shadow: none;
}

a:focus {
  outline: 0 solid;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--FontSemibold);
  color: var(--secondaryColor);
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--optionalColor);
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: var(--primaryColor);
}

body {
  font-size: var(--fontSize);
  font-family: var(--FontMedium);
  color: var(--paraColor);
  line-height: 28px;
}

p {
  font-size: 16px;
  line-height: 28px;
}

select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: calc(100% - 15px) 50%;
  background-repeat: no-repeat;
}

.text_primary {
  color: var(--primaryColor);
}

.text_secondary {
  color: var(--secondaryColor);
}

.text-optional {
  color: var(--optionalColor);
}

.text-para {
  color: var(--paraColor);
}

.text-offwhite {
  color: var(--offwhiteColor);
}

.text_light {
  color: #9EA6BA;
}

.bg-ash {
  background-color: var(--ashColor);
}

.bg_secondary {
  background-color: var(--secondaryColor);
}

.bg-squeez {
  background-color: #F4F7FB;
}

.bg-one {
  background-color: #EFF5FA;
}

.bg-bismark {
  background-color: #47737C;
}

.bg-peach {
  background-color: #F4EDEB;
}

.bg-nebula {
  background-color: #D3E0DE;
}

.bg-gray {
  background-color: var(--grayColor);
}

.bg-optional {
  background-color: var(--optionalColor);
}

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

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

.f-regular {
  font-family: var(--FontRegular);
}

.f-medium {
  font-family: var(--FontMedium);
}

.f-semibold {
  font-family: var(--FontSemibold);
}

.f-Bold {
  font-family: var(--FontBold);
}

.f-optional {
  font-family: var(--optionalFont);
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-24 {
  font-size: 24px;
}

.fs-30 {
  font-size: 30px;
}

.fs-36 {
  font-size: 36px;
}

.fs-42 {
  font-size: 42px;
}

.fs-46 {
  font-size: 46px;
}

.fs-56 {
  font-size: 56px;
}

.fs-64 {
  font-size: 64px;
}

.lh-16 {
  line-height: 16px;
}

.lh-32 {
  line-height: 32px;
}

.lh-50 {
  line-height: 50px;
}

.h-52 {
  height: 52px;
}

.h-56 {
  height: 56px;
}

.h-160 {
  height: 160px;
}

.h-110 {
  height: 160px;
}

.h-76 {
  height: 76px;
}

.resize-0 {
  resize: none;
}

.index-1 {
  z-index: 1;
}

.index-2 {
  z-index: 2;
}

.hr-one {
  border-bottom: 1px solid #E9ECEF;
}

.pt-75 {
  padding-top: 75px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptb-65 {
  padding-top: 65px;
  padding-bottom: 65px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-45 {
  margin-top: 45px;
}

.mb-6 {
  margin-bottom: 6px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-13 {
  margin-bottom: 13px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-22 {
  margin-bottom: 22px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.round-5 {
  border-radius: 5px;
}

.round-10 {
  border-radius: 10px !important;
}

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

.btn {
  padding: 12px 30px 11.5px;
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-family: var(--Fontmedium);
  overflow: hidden;
  border-radius: 10px;
  border: none;
  transition: var(--transition);
}
.btn:before {
  position: absolute;
  top: -5%;
  left: -5%;
  content: "";
  width: 0%;
  height: 110%;
  z-index: -1;
  border-radius: 5px;
  transform: skewX(15deg);
  overflow: hidden;
  transition: var(--transition);
}
.btn:hover:before {
  width: 120%;
  visibility: visible;
  opacity: 1;
}
.btn.style-one {
  color: var(--whiteColor);
  background-color: var(--secondaryColor);
  border-color: transparent;
}
.btn.style-one:before {
  background-color: var(--optionalColor);
}
.btn.style-one:hover {
  color: var(--whiteColor);
}
.btn.style-two, .btn.style-six {
  color: var(--whiteColor);
  background-color: var(--optionalColor);
  border-color: transparent;
}
.btn.style-two:before, .btn.style-six:before {
  background-color: var(--secondaryColor);
}
.btn.style-two:hover, .btn.style-six:hover {
  color: var(--whiteColor);
}
.btn.style-three {
  color: var(--secondaryColor);
  background-color: var(--whiteColor);
  border-color: transparent;
}
.btn.style-three:before {
  background-color: var(--secondaryColor);
}
.btn.style-three:hover {
  color: var(--whiteColor);
}
.btn.style-four {
  color: var(--secondaryColor);
  border: 1px solid #E9ECEF;
  background-color: transparent;
}
.btn.style-four:before {
  background-color: var(--secondaryColor);
}
.btn.style-four:hover {
  border-color: transparent;
  color: var(--whiteColor);
}
.btn.style-five {
  color: var(--secondaryColor);
  border: 1px solid #9EA6BA;
  background-color: transparent;
}
.btn.style-five:before {
  background-color: var(--secondaryColor);
}
.btn.style-five:hover {
  border-color: transparent;
  color: var(--whiteColor);
}
.btn.style-six {
  padding: 15px 32px 14.5px;
}
.btn.style-seven {
  color: var(--whiteColor);
  border: 1px solid #9EA6BA;
  background-color: transparent;
}
.btn.style-seven:before {
  background-color: var(--optionalColor);
}
.btn.style-seven:hover {
  border-color: transparent;
  color: var(--whiteColor);
}
.btn.style-eight {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
  border-color: transparent;
}
.btn.style-eight:before {
  background-color: var(--optionalColor);
}
.btn.style-eight:hover {
  color: var(--whiteColor);
}
.btn.style-nine {
  color: var(--paraColor);
  background-color: var(--whiteColor);
  border-color: transparent;
  padding: 17px 30px 16.5px;
}
.btn.style-nine:before {
  background-color: var(--optionalColor);
}
.btn.style-nine img {
  position: relative;
  top: -2px;
  margin-right: 5px;
}
.btn.style-nine:hover {
  color: var(--whiteColor);
}

.link {
  position: relative;
  font-weight: 600;
}
.link:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--optionalColor);
  transition: var(--transition);
}
.link img {
  margin-left: 13px;
  position: relative;
  top: -1px;
  transition: var(--transition);
}
.link.style-two {
  color: var(--paraColor);
}
.link.style-two i {
  margin-right: 7px;
}
.link.style-two:after {
  background-color: var(--paraColor);
}
.link:hover::after {
  width: 100%;
}

.section-title.style-one {
  padding-left: 36px;
}
.section-title.style-one:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 6px;
  height: calc(100% - 3px);
  background-color: var(--lemonColor);
}
.section-title.style-two {
  padding-top: 16px;
}
.section-title.style-two:before {
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  width: 87px;
  height: 6px;
  transform: translateX(-50%);
  background-color: var(--lemonColor);
}
.section-title span {
  line-height: 14px;
  letter-spacing: 2.6px;
  margin-bottom: 15px;
}
.section-title h2 {
  font-size: 42px;
  line-height: 54px;
}

.subpara {
  padding-left: 36px;
}

.bg-f {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ddd;
}

.transition {
  transition: all 200ms linear;
}

.social-profile li {
  display: inline-block;
}

/*---------------------------------
     Back To Top Button CSS
-----------------------------------*/
@keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--primaryColor);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "\ea76";
  font-family: remixicon !important;
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: var(--primaryColor);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primaryColor);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/*---------------------------------
   Preloader Area CSS
----------------------------------*/
.loader-wrapper {
  --line-width: 5px;
  --curtain-color: #f1f1f1;
  --outer-line-color: #a8dadc;
  --middle-line-color: #457b9d;
  --inner-line-color: #1d3557;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--outer-line-color);
  border-radius: 100%;
  animation: spin 2s linear infinite;
  z-index: 1001;
}
.loader:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--inner-line-color);
  border-radius: 100%;
  animation: spin 3s linear infinite;
}
.loader:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--middle-line-color);
  border-radius: 100%;
  animation: spin 1.5s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: var(--curtain-color);
  width: 51%;
  height: 100%;
  z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
  left: 0;
}

.loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded .loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

/*---------------------------------
    Back To Top CSS
----------------------------------*/
#backtotop {
  opacity: 0;
  right: 20px;
  z-index: 99;
  width: 50px;
  bottom: 20px;
  height: 50px;
  font-size: 25px;
  transition: 0.5s;
  line-height: 49px;
  background-color: var(--optionalColor);
  animation: border-transform 10s linear infinite alternate forwards;
  color: var(--whiteColor);
}

#backtotop:hover {
  background-color: var(--secondaryColor);
}
@keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
/*---------------------------------
     Animation CSS
----------------------------------*/
.rotate {
  animation: rotation 20s infinite linear;
}

.bounce {
  animation: float 1500ms infinite ease-in-out;
}

.moveHorizontal {
  animation: moveHorizontal 3000ms infinite ease-in-out;
}

.moveVertical {
  animation: moveVertical 3000ms infinite ease-in-out;
}

.animationFramesTwo {
  animation: animationFramesTwo 20000ms infinite ease-in-out;
}

.animationFramesThree {
  animation: animationFramesThree 20000ms infinite ease-in-out;
}
@keyframes zoom-in {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationFramesThree {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(-141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(-83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes mymove {
  from {
    left: 0;
  }
  to {
    left: -100px;
  }
}
@keyframes mymovetwo {
  from {
    right: 0;
  }
  to {
    right: -100px;
  }
}
/*-------------------------------
        Pagination  CSS
-------------------------------*/
.page-nav li {
  margin: 0 4px;
  display: inline-block;
}
.page-nav li:first-child a i {
  left: -2px;
}
.page-nav li:last-child a i {
  right: -2px;
}
.page-nav li a {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 16px;
  line-height: 46px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--secondaryColor);
  background-color: var(--grayColor);
  transition: var(--transition);
  border: none;
}
.page-nav li a i {
  font-size: 23px;
  line-height: 0.8;
  font-weight: 300;
  margin: 0 auto;
  position: relative;
  top: 3px;
  transition: var(--transition);
}
.page-nav li a.active, .page-nav li a:hover {
  color: var(--whiteColor);
  opacity: 1;
  background-color: var(--primaryColor);
  border-color: transparent;
}
.page-nav li a.active i, .page-nav li a:hover i {
  color: var(--whiteColor);
}

/*-------------------------------
    Breadcrumb CSS
-------------------------------*/
.breadcrumb-wrap {
  padding: 90px 0;
}
.breadcrumb-wrap h1, .breadcrumb-wrap h2, .breadcrumb-wrap h3, .breadcrumb-wrap h4, .breadcrumb-wrap h5, .breadcrumb-wrap h6 {
  font-size: 46px;
  margin-bottom: 12px;
}
.breadcrumb-wrap .br-menu li {
  display: inline-block;
  margin-right: 7px;
  padding-right: 17px;
  color: var(--primaryColor);
  font-size: 17px;
  font-family: var(--FontRegular);
  position: relative;
}
.breadcrumb-wrap .br-menu li a {
  color: var(--paraColor);
}
.breadcrumb-wrap .br-menu li a:hover {
  color: var(--primaryColor);
}
.breadcrumb-wrap .br-menu li:after {
  position: absolute;
  top: 0px;
  right: 0;
  content: "/";
  font-size: 16px;
  color: var(--paraColor);
}
.breadcrumb-wrap .br-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.breadcrumb-wrap .br-menu li:last-child:after {
  display: none;
}

/*-------------------------------
        Hero CSS
-------------------------------*/
.hero-section.style-one {
  background-color: var(--whiteColor);
}
.hero-section.style-one:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 40, 0.65);
  z-index: -1;
}
.hero-section.style-one .hero-content {
  padding: 230px 0;
}
.hero-section.style-one .hero-content p {
  font-size: 22px;
  line-height: 36px;
  margin-bottom: 18px;
}
.hero-section.style-one .hero-content h1 {
  font-size: 82px;
  line-height: 84px;
  margin-bottom: 32px;
}
.hero-section.style-one .hero-content .listing-search-form {
  border-radius: 10px;
  padding: 11px 12px;
}
.hero-section.style-one .hero-content .listing-search-form button {
  width: 76px;
  height: 52px;
  padding: 0;
}
.hero-section.style-one .hero-content .listing-search-form button i {
  font-size: 24px;
}
.hero-section.style-one .hero-content .listing-search-form .form-group-wrap {
  width: calc(100% - 76px);
}
.hero-section.style-one .hero-content .listing-search-form .form-group-wrap .form-group {
  position: relative;
  width: 33.33%;
}
.hero-section.style-one .hero-content .listing-search-form .form-group-wrap .form-group.search-form input {
  padding: 0 18px 0;
  margin-bottom: 0;
}
.hero-section.style-one .hero-content .listing-search-form .form-group-wrap .form-group.search-form i {
  position: absolute;
  top: 19px;
  right: 30px;
  left: auto;
  font-size: 16px;
}
.hero-section.style-one .hero-content .listing-search-form .form-group-wrap .form-group:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 1px;
  height: 52px;
  background-color: #E9ECEF;
}
.hero-section.style-one .hero-content .listing-search-form .form-group-wrap .form-group .select {
  padding-left: 20px;
  padding-right: 30px;
  font-size: 15px;
}
.hero-section.style-two {
  overflow: hidden;
  padding: 35px 0 80px;
}
.hero-section.style-two .listing-search-form {
  border-radius: 10px;
  padding: 21px 30px 21px 45px;
  border-radius: 100px;
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.06);
}
.hero-section.style-two .listing-search-form button {
  width: 62px;
  height: 62px;
  padding: 0;
}
.hero-section.style-two .listing-search-form button i {
  font-size: 24px;
}
.hero-section.style-two .listing-search-form .form-group-wrap {
  width: calc(100% - 85px);
}
.hero-section.style-two .listing-search-form .form-group-wrap .form-group {
  position: relative;
}
.hero-section.style-two .listing-search-form .form-group-wrap .form-group:nth-child(1) {
  width: 31.5%;
}
.hero-section.style-two .listing-search-form .form-group-wrap .form-group:nth-child(2) {
  width: 35%;
}
.hero-section.style-two .listing-search-form .form-group-wrap .form-group:nth-child(3) {
  width: 33.5%;
}
.hero-section.style-two .listing-search-form .form-group-wrap .form-group:nth-child(3):after {
  right: -20px;
}
.hero-section.style-two .listing-search-form .form-group-wrap .form-group.search-form label {
  padding-left: 0;
}
.hero-section.style-two .listing-search-form .form-group-wrap .form-group.search-form input {
  padding: 0;
  margin-bottom: 0;
}
.hero-section.style-two .listing-search-form .form-group-wrap .form-group.search-form i {
  position: absolute;
  top: 32px;
  right: 30px;
  left: auto;
  font-size: 16px;
}
.hero-section.style-two .listing-search-form .form-group-wrap .form-group:last-child:after {
  display: none;
}
.hero-section.style-two .listing-search-form .form-group-wrap .form-group:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 1px;
  height: 52px;
  background-color: #E9ECEF;
}
.hero-section.style-two .listing-search-form .form-group-wrap .form-group .select {
  padding: 0 30px 0 20px;
  font-size: 15px;
  height: 28px;
}
.hero-section.style-two .listing-search-form .form-group-wrap .form-group .select .selectBtn {
  padding: 0 20px 10px 10px;
}
.hero-section.style-two .listing-search-form .form-group-wrap .form-group .select .selectBtn:after {
  top: 1px;
}
.hero-section.style-two .listing-search-form .form-group-wrap .form-group label {
  padding-left: 30px;
  line-height: 1;
}
.hero-section.style-two .hero-cat-wrapper {
  padding: 0 9px;
  margin: 90px 0 40px;
  z-index: -1;
  position: relative;
}
.hero-section.style-two .hero-cat-wrapper .hero-cat {
  width: calc(20% - 18px);
  margin: 0 9px;
  position: relative;
  margin-bottom: 30px;
}
.hero-section.style-two .hero-cat-wrapper .hero-cat h6 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: calc(100% - 30px);
  border-radius: 3px;
  background: rgba(65, 65, 65, 0.35);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  font-size: 18px;
  font-family: var(--FontMedium);
  line-height: 20px;
  margin: 0;
  padding: 23px 10px;
  text-align: center;
  border-radius: 3px;
  transform: translateX(-50%);
}
.hero-section.style-two .hero-cat-wrapper .hero-cat h6 span {
  font-size: 15px;
  color: var(--primaryColor);
  margin-left: 4px;
}
.hero-section.style-two .hero-cat-wrapper .hero-cat:hover {
  transform: translateY(-5px);
}
.hero-section.style-two h1 {
  font-size: 50px;
  line-height: 64px;
}
.hero-section.style-three {
  padding: 243px 0 250px;
}
.hero-section.style-three:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(17, 24, 40, 0.69) 29.17%, rgba(17, 24, 40, 0) 100%);
  z-index: -1;
}
.hero-section.style-three .listing-search-form {
  border-radius: 10px;
  padding: 21px 25px 21px 25px;
  border-radius: 100px;
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.06);
}
.hero-section.style-three .listing-search-form button {
  width: 140px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 0;
}
.hero-section.style-three .listing-search-form button i {
  font-size: 22px;
  display: inline-block;
  margin-right: 11px;
}
.hero-section.style-three .listing-search-form .form-group-wrap {
  width: calc(100% - 140px);
}
.hero-section.style-three .listing-search-form .form-group-wrap .form-group {
  position: relative;
}
.hero-section.style-three .listing-search-form .form-group-wrap .form-group:nth-child(1) {
  width: 31.5%;
}
.hero-section.style-three .listing-search-form .form-group-wrap .form-group:nth-child(2) {
  width: 35%;
}
.hero-section.style-three .listing-search-form .form-group-wrap .form-group:nth-child(3) {
  width: 33.5%;
}
.hero-section.style-three .listing-search-form .form-group-wrap .form-group:nth-child(3):after {
  right: -20px;
}
.hero-section.style-three .listing-search-form .form-group-wrap .form-group.search-form label {
  padding-left: 0;
}
.hero-section.style-three .listing-search-form .form-group-wrap .form-group.search-form input {
  padding: 0;
  margin-bottom: 0;
}
.hero-section.style-three .listing-search-form .form-group-wrap .form-group.search-form i {
  position: absolute;
  top: 32px;
  right: 30px;
  left: auto;
  font-size: 16px;
}
.hero-section.style-three .listing-search-form .form-group-wrap .form-group:last-child:after {
  display: none;
}
.hero-section.style-three .listing-search-form .form-group-wrap .form-group:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 1px;
  height: 52px;
  background-color: #E9ECEF;
}
.hero-section.style-three .listing-search-form .form-group-wrap .form-group .select {
  padding: 0 30px 0 20px;
  font-size: 15px;
  height: 28px;
}
.hero-section.style-three .listing-search-form .form-group-wrap .form-group .select .selectBtn {
  padding: 0 20px 10px 10px;
}
.hero-section.style-three .listing-search-form .form-group-wrap .form-group .select .selectBtn:after {
  top: 1px;
}
.hero-section.style-three .listing-search-form .form-group-wrap .form-group label {
  padding-left: 30px;
  line-height: 1;
}
.hero-section.style-three .hero-content h1 {
  font-size: 64px;
  line-height: 76px;
  margin-bottom: 30px;
}

.select {
  position: relative;
}
.select .selectBtn {
  padding: 10px;
  box-sizing: border-box;
  border-radius: 3px;
  width: 100%;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: #fff;
}
.select .selectBtn.toggle {
  border-radius: 3px 3px 0 0;
}
.select .selectBtn:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0px;
  content: "\ea4e";
  font-family: remixicon !important;
  transition: 0.2s ease;
}
.select .selectDropdown {
  position: absolute;
  top: 100%;
  width: 306px;
  border-radius: 20px;
  background-color: #F4F7FB;
  overflow: hidden;
  padding: 22px 30px 25px;
  z-index: 10 !important;
  transform: scale(1, 0);
  transform-origin: top center;
  visibility: hidden;
  transition: 0.2s ease;
}
.select .selectDropdown .close_dropdown,
.select .selectDropdown .close-dropdown {
  top: 0px;
  right: 0px;
  width: 34px !important;
  height: 34px !important;
  cursor: pointer;
  background-color: #E9ECEF;
  z-index: 9;
}
.select .selectDropdown .close_dropdown i,
.select .selectDropdown .close-dropdown i {
  font-size: 19px !important;
  line-height: 0.8;
  position: relative;
  display: block;
  left: -1px;
  top: 1px;
  margin: 0 !important;
  color: var(--secondaryColor);
}
.select .selectDropdown span {
  color: var(--secondaryColor);
  font-size: 18px;
  margin-bottom: 15px;
  display: block;
  font-family: var(--FontMedium);
}
.select .selectDropdown .option {
  padding: 0 0 10px;
  box-sizing: border-box;
  transition: 0.2s ease;
  cursor: pointer;
}
.select .selectDropdown .option:last-child {
  padding-bottom: 0;
}
.select .selectDropdown .option:hover {
  color: var(--primaryColor);
}

.select .selectBtn.toggle:after {
  transform: translateY(-50%) rotate(-135deg);
}

.select .selectDropdown .option:hover {
  background: #f8f8f8;
}

.select .selectDropdown.toggle {
  visibility: visible;
  transform: scale(1, 1);
}

/*-------------------------------
    About CSS
-------------------------------*/
.about-wrap.style-one, .about-wrap.style-two {
  padding: 52px 0;
}
.about-wrap.style-one:after, .about-wrap.style-two:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 67%;
  height: 100%;
  background-color: #F4EDEB;
  z-index: -1;
}
.about-wrap.style-one:after {
  background-color: #F4EDEB;
}
.about-wrap.style-two:after {
  background-color: #F4F7FB;
}
.about-wrap .about-content .feature-list {
  -moz-columns: 2;
       columns: 2;
  margin: 30px 0 12px;
  position: relative;
}
.about-wrap .about-content .feature-list:after {
  position: absolute;
  top: 50%;
  left: 40%;
  content: "";
  width: 1px;
  height: 162px;
  background-color: var(--whiteColor);
  transform: translateY(-50%);
}
.about-wrap .about-content .feature-list li {
  padding-left: 32px;
  margin-bottom: 18px;
}
.about-wrap .about-content .feature-list li i {
  font-size: 22px;
  line-height: 0.8;
  position: absolute;
  top: 5px;
  left: 0;
  color: var(--primaryColor);
}

.feature-wrap .feature-list-wrap > div:nth-child(2) .feature-list {
  padding-left: 20px;
}
.feature-wrap .feature-list-wrap > div:nth-child(3) .feature-list {
  padding-left: 20px;
}
.feature-wrap .feature-list-wrap > div:nth-child(4) .feature-list {
  padding-left: 20px;
}
.feature-wrap .feature-list-wrap > div:nth-child(4) .feature-list:after {
  display: none;
}
.feature-wrap .feature-list {
  position: relative;
}
.feature-wrap .feature-list:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 1px;
  height: 162px;
  background-color: #E9ECEF;
  transform: translateY(-50%);
}
.feature-wrap .feature-list li {
  padding-left: 32px;
  margin-bottom: 18px;
}
.feature-wrap .feature-list li i {
  font-size: 22px;
  line-height: 0.8;
  position: absolute;
  top: 5px;
  left: 0;
  color: var(--primaryColor);
}

/*-------------------------------
    Category CSS
-------------------------------*/
.category-card .cat-img,
.category-card .cat-icon {
  margin-bottom: 22px;
}
.category-card h3 span {
  margin-left: 5px;
}
.category-card:hover .cat-img img {
  transform: scale(1.05);
}
.category-card:hover h3 {
  color: var(--primaryColor);
}
.category-card:hover h3 span {
  color: var(--primaryColor);
}

/*-------------------------------
    CTA CSS
-------------------------------*/
.cta-wrapper.style-one {
  background-color: var(--primaryColor);
  padding: 10px 0;
}
.cta-wrapper.style-one .cta-img .btn.style-five {
  color: var(--whiteColor);
  border: 1px solid var(--secondaryColor);
}
.cta-wrapper.style-two {
  background-image: url(../img/about/cta-bg.webp);
  position: relative;
  z-index: 1;
  padding: 91px 0;
}
.cta-wrapper.style-two:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(17, 24, 40, 0.65) 0%, rgba(17, 24, 40, 0.65) 100%);
  z-index: -1;
}

/*-------------------------------
    Listing CSS
-------------------------------*/
.listing-tabs {
  padding: 10.5px 30px;
}
.listing-tabs .nav-item {
  padding-right: 28px;
  margin-right: 28px;
}
.listing-tabs .nav-item:last-child {
  padding-right: 0;
  margin-right: 0;
}
.listing-tabs .nav-item:last-child:after {
  display: none;
}
.listing-tabs .nav-item:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 2px;
  height: 30px;
  transform: translateY(-50%);
}
.listing-tabs .nav-item .nav-link {
  color: var(--secondaryColor);
}
.listing-tabs .nav-item .nav-link:hover, .listing-tabs .nav-item .nav-link.active {
  color: var(--primaryColor);
}
.listing-tabs.style-one .nav-item:after {
  background-color: rgba(255, 255, 255, 0.65);
}
.listing-tabs.style-two .nav-item:after {
  background-color: #E9ECEF;
}
.listing-tabs.style-three .nav-item:after {
  background-color: #E9ECEF;
}

.listing-card.style-one .listing-info .listing-metainfo li img, .listing-card.style-two .listing-info .listing-metainfo li img {
  position: relative;
  top: -1.5px;
  margin-right: 8px;
}
.listing-card.style-one .listing-info .listing-metainfo li i, .listing-card.style-two .listing-info .listing-metainfo li i {
  color: var(--secondaryColor);
  margin-right: 6px;
  font-size: 22px;
  font-weight: 300;
  position: relative;
  top: 1.5px;
  line-height: 0.8;
}
.listing-card.style-one .listing-info .listing-metainfo li a, .listing-card.style-two .listing-info .listing-metainfo li a {
  color: #9EA6BA;
}
.listing-card.style-one .listing-info .listing-metainfo li a:hover, .listing-card.style-two .listing-info .listing-metainfo li a:hover {
  color: var(--primaryColor);
}
.listing-card.style-one .listing-info h3 a, .listing-card.style-two .listing-info h3 a {
  color: var(--secondaryColor);
}
.listing-card.style-one .listing-info h3 a:hover, .listing-card.style-two .listing-info h3 a:hover {
  color: var(--primaryColor);
}
.listing-card.style-one .listing-info p, .listing-card.style-two .listing-info p {
  margin: 0 0 15px;
}
.listing-card.style-one .listing-info p img, .listing-card.style-one .listing-info p i, .listing-card.style-two .listing-info p img, .listing-card.style-two .listing-info p i {
  position: relative;
  top: -2px;
  margin-right: 10px;
}
.listing-card.style-one .listing-info .seller-info .seller-img, .listing-card.style-two .listing-info .seller-info .seller-img {
  width: 33px;
  height: 33px;
  border: 2px solid var(--whiteColor);
  margin-right: 10px;
}
.listing-card.style-one .listing-info .seller-info .seller-img img, .listing-card.style-two .listing-info .seller-info .seller-img img {
  border-radius: 50% !important;
}
.listing-card.style-one .listing-info .seller-info a:hover, .listing-card.style-two .listing-info .seller-info a:hover {
  color: var(--primaryColor);
}
.listing-card.style-one .listing-info .btn-wrap a, .listing-card.style-one .listing-info .btn-wrap .compare, .listing-card.style-two .listing-info .btn-wrap a, .listing-card.style-two .listing-info .btn-wrap .compare {
  margin-right: 13px;
  padding-right: 18px;
  position: relative;
}
.listing-card.style-one .listing-info .btn-wrap a:after, .listing-card.style-one .listing-info .btn-wrap .compare:after, .listing-card.style-two .listing-info .btn-wrap a:after, .listing-card.style-two .listing-info .btn-wrap .compare:after {
  position: absolute;
  top: 56%;
  right: 0;
  content: "";
  width: 1px;
  height: 20px;
  transform: translateY(-50%);
  background-color: #E9ECEF;
}
.listing-card.style-one .listing-info .btn-wrap a img, .listing-card.style-one .listing-info .btn-wrap .compare img, .listing-card.style-two .listing-info .btn-wrap a img, .listing-card.style-two .listing-info .btn-wrap .compare img {
  filter: brightness(0) invert(0.45);
}
.listing-card.style-one .listing-info .btn-wrap a:hover img, .listing-card.style-one .listing-info .btn-wrap .compare:hover img, .listing-card.style-two .listing-info .btn-wrap a:hover img, .listing-card.style-two .listing-info .btn-wrap .compare:hover img {
  filter: brightness(1) invert(0);
}
.listing-card.style-one .listing-info .btn-wrap .compare, .listing-card.style-two .listing-info .btn-wrap .compare {
  display: inline-block;
  margin-right: 0;
  padding-right: 0;
}
.listing-card.style-one .listing-info .btn-wrap .compare::after, .listing-card.style-two .listing-info .btn-wrap .compare::after {
  display: none;
}
.listing-card.style-one .listing-info .rtcl-price, .listing-card.style-two .listing-info .rtcl-price {
  font-size: 18px;
  margin-bottom: 23px;
}
.listing-card.style-one .add-to-wishlist, .listing-card.style-two .add-to-wishlist {
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background-color: var(--secondaryColor);
}
.listing-card.style-one .add-to-wishlist i, .listing-card.style-two .add-to-wishlist i {
  font-size: 18px;
  font-weight: 300;
  line-height: 0.8;
  position: relative;
  top: 1px;
  left: 1px;
}
.listing-card.style-one:hover .listing-img img, .listing-card.style-two:hover .listing-img img {
  transform: scale(1.04);
}
.listing-card.style-one .listing-img img, .listing-card.style-two .listing-img img {
  transition: all 200ms linear;
  border-radius: 10px;
}
.listing-card.style-one .featured {
  top: 15px;
  left: 15px;
  padding: 4.5px 9.5px;
}
.listing-card.style-one .listing-info {
  padding: 17px 25px 30px;
}
.listing-card.style-one .listing-info h3 {
  margin: 9px 0 15px;
}
.listing-card.style-one .listing-info .clada-price {
  margin: 0 0 23px;
}
.listing-card.style-two .featured {
  top: -7px;
  left: -7px;
  width: 40px;
  height: 40px;
  padding: 4.5px 9.5px;
}
.listing-card.style-two .listing-info {
  padding: 17px 25px 25px;
}
.listing-card.style-two .listing-info h3 {
  margin: 9px 0 13px;
}
.listing-card.style-two .listing-info .clada-price {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E9ECEF;
}
.listing-card.style-three .listing-img .seller-img, .listing-card.style-four .listing-img .seller-img {
  bottom: -17px;
  right: 25px;
  width: 33px;
  height: 33px;
  border: 2px solid var(--whiteColor);
}
.listing-card.style-three .listing-img .seller-img img, .listing-card.style-four .listing-img .seller-img img {
  border-radius: 50% !important;
}
.listing-card.style-three .listing-info, .listing-card.style-four .listing-info {
  padding: 17px 25px 25px;
}
.listing-card.style-three .listing-info .listing-tag, .listing-card.style-four .listing-info .listing-tag {
  color: #9EA6BA;
}
.listing-card.style-three .listing-info .listing-tag:hover, .listing-card.style-four .listing-info .listing-tag:hover {
  color: var(--primaryColor);
}
.listing-card.style-three .listing-info h3 a, .listing-card.style-four .listing-info h3 a {
  color: var(--secondaryColor);
}
.listing-card.style-three .listing-info h3 a:hover, .listing-card.style-four .listing-info h3 a:hover {
  color: var(--primaryColor);
}
.listing-card.style-three .listing-info p, .listing-card.style-four .listing-info p {
  margin: 3px 0 5px;
}
.listing-card.style-three .listing-info p img, .listing-card.style-three .listing-info p i, .listing-card.style-four .listing-info p img, .listing-card.style-four .listing-info p i {
  position: relative;
  top: -2px;
  margin-right: 10px;
}
.listing-card.style-three .listing-info .listing-title h3, .listing-card.style-four .listing-info .listing-title h3 {
  position: relative;
  top: -1.5px;
}
.listing-card.style-three .listing-info .seller-info .seller-img, .listing-card.style-four .listing-info .seller-info .seller-img {
  width: 33px;
  height: 33px;
  border: 2px solid var(--whiteColor);
  margin-right: 10px;
}
.listing-card.style-three .listing-info .seller-info .seller-img img, .listing-card.style-four .listing-info .seller-info .seller-img img {
  border-radius: 50% !important;
}
.listing-card.style-three .listing-info .seller-info a:hover, .listing-card.style-four .listing-info .seller-info a:hover {
  color: var(--primaryColor);
}
.listing-card.style-three .listing-info .btn-wrap a, .listing-card.style-three .listing-info .btn-wrap .compare, .listing-card.style-four .listing-info .btn-wrap a, .listing-card.style-four .listing-info .btn-wrap .compare {
  margin-right: 13px;
  padding-right: 18px;
  position: relative;
}
.listing-card.style-three .listing-info .btn-wrap a:after, .listing-card.style-three .listing-info .btn-wrap .compare:after, .listing-card.style-four .listing-info .btn-wrap a:after, .listing-card.style-four .listing-info .btn-wrap .compare:after {
  position: absolute;
  top: 56%;
  right: 0;
  content: "";
  width: 1px;
  height: 20px;
  transform: translateY(-50%);
  background-color: #E9ECEF;
}
.listing-card.style-three .listing-info .btn-wrap a img, .listing-card.style-three .listing-info .btn-wrap .compare img, .listing-card.style-four .listing-info .btn-wrap a img, .listing-card.style-four .listing-info .btn-wrap .compare img {
  filter: brightness(0) invert(0.45);
}
.listing-card.style-three .listing-info .btn-wrap a:hover img, .listing-card.style-three .listing-info .btn-wrap .compare:hover img, .listing-card.style-four .listing-info .btn-wrap a:hover img, .listing-card.style-four .listing-info .btn-wrap .compare:hover img {
  filter: brightness(1) invert(0);
}
.listing-card.style-three .listing-info .btn-wrap .compare, .listing-card.style-four .listing-info .btn-wrap .compare {
  display: inline-block;
  margin-right: 0;
  padding-right: 0;
}
.listing-card.style-three .listing-info .btn-wrap .compare::after, .listing-card.style-four .listing-info .btn-wrap .compare::after {
  display: none;
}
.listing-card.style-four {
  border: 1px solid #E9ECEF;
  border-radius: 10px;
}
.listing-card.style-four .listing-img {
  padding: 10px 10px 0;
}
.listing-card.style-four .listing-img .add-to-wishlist {
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  z-index: 3;
  background-color: var(--secondaryColor);
}
.listing-card.style-four .listing-img .add-to-wishlist i {
  font-size: 18px;
  font-weight: 300;
  line-height: 0.8;
  position: relative;
  top: 1px;
  left: 0;
}
.listing-card.style-five {
  display: flex;
  flex-wrap: wrap;
}
.listing-card.style-five .listing-img {
  width: 252px;
}
.listing-card.style-five .listing-img .featured {
  top: -7px;
  left: -7px;
  width: 40px;
  height: 40px;
  padding: 4.5px 9.5px;
}
.listing-card.style-five .listing-info {
  width: calc(100% - 252px);
}
.listing-card.style-five .featured {
  top: 15px;
  left: 15px;
  padding: 4.5px 9.5px;
}
.listing-card.style-five .listing-info {
  padding: 17px 25px 30px;
}
.listing-card.style-five .listing-info h3 {
  margin: 9px 0 15px;
}
.listing-card.style-five .listing-info .clada-price {
  margin: 0 0 15px;
  padding-bottom: 13px;
  border-bottom: 1px solid #E9ECEF;
}
.listing-card.style-five .listing-info .listing-metainfo li img {
  position: relative;
  top: -1.5px;
  margin-right: 8px;
}
.listing-card.style-five .listing-info .listing-metainfo li i {
  color: var(--secondaryColor);
  margin-right: 6px;
  font-size: 22px;
  font-weight: 300;
  position: relative;
  top: 1.5px;
  line-height: 0.8;
}
.listing-card.style-five .listing-info .listing-metainfo li a {
  color: #9EA6BA;
}
.listing-card.style-five .listing-info .listing-metainfo li a:hover {
  color: var(--primaryColor);
}
.listing-card.style-five .listing-info h3 a {
  color: var(--secondaryColor);
}
.listing-card.style-five .listing-info h3 a:hover {
  color: var(--primaryColor);
}
.listing-card.style-five .listing-info p {
  margin: 0 0 15px;
}
.listing-card.style-five .listing-info p img, .listing-card.style-five .listing-info p i {
  position: relative;
  top: -2px;
  margin-right: 10px;
}
.listing-card.style-five .listing-info .seller-info .seller-img {
  width: 33px;
  height: 33px;
  border: 2px solid var(--whiteColor);
  margin-right: 10px;
}
.listing-card.style-five .listing-info .seller-info .seller-img img {
  border-radius: 50% !important;
}
.listing-card.style-five .listing-info .seller-info a:hover {
  color: var(--primaryColor);
}
.listing-card.style-five .listing-info .btn-wrap a, .listing-card.style-five .listing-info .btn-wrap .compare {
  margin-right: 13px;
  padding-right: 18px;
  position: relative;
}
.listing-card.style-five .listing-info .btn-wrap a:last-child, .listing-card.style-five .listing-info .btn-wrap .compare:last-child {
  margin-right: 0;
  padding-right: 0;
}
.listing-card.style-five .listing-info .btn-wrap a:last-child::after, .listing-card.style-five .listing-info .btn-wrap .compare:last-child::after {
  display: none;
}
.listing-card.style-five .listing-info .btn-wrap a:after, .listing-card.style-five .listing-info .btn-wrap .compare:after {
  position: absolute;
  top: 56%;
  right: 0;
  content: "";
  width: 1px;
  height: 20px;
  transform: translateY(-50%);
  background-color: #E9ECEF;
}
.listing-card.style-five .listing-info .btn-wrap a img, .listing-card.style-five .listing-info .btn-wrap .compare img {
  filter: brightness(0) invert(0.45);
}
.listing-card.style-five .listing-info .btn-wrap a:hover img, .listing-card.style-five .listing-info .btn-wrap .compare:hover img {
  filter: brightness(1) invert(0);
}
.listing-card.style-five .listing-info .btn-wrap .compare {
  display: inline-block;
  margin-right: 0;
  padding-right: 0;
}
.listing-card.style-five .listing-info .btn-wrap .compare::after {
  display: none;
}
.listing-card.style-five .add-to-wishlist {
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  z-index: 3;
  background-color: var(--secondaryColor);
}
.listing-card.style-five .add-to-wishlist i {
  font-size: 18px;
  font-weight: 300;
  line-height: 0.8;
  position: relative;
  top: 1px;
  left: 1px;
}

.price-range {
  margin-top: 40px;
}
.price-range p {
  width: 65px;
}
.price-range #slider-container {
  width: calc(100% - 65px);
}

#slider-container {
  margin: -10px auto 0;
}
#slider-container #range-slider {
  width: 100%;
  height: 5px;
  position: relative;
  background-color: #EFF5FA;
  border-radius: 5px;
}
#slider-container #slider-fill {
  height: 100%;
  background-color: var(--optionalColor);
  border-radius: 50px 0 0 50px;
  position: absolute;
  top: 0;
  left: 0;
}
#slider-container #slider-handle {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--whiteColor);
  border: 3px solid var(--optionalColor);
  border-radius: 50%;
  cursor: pointer;
}
#slider-container #value-display {
  position: absolute;
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
  display: inline-block;
  background-color: #F4EDEB;
  border-radius: 4px;
  padding: 0px 6px;
  color: var(--paraColor);
  font-family: var(--FontRegular);
  font-weight: 600;
  position: relative;
  bottom: 37px;
  transform: translateX(-50%);
}

.filter-radio-group .checkbox {
  width: 50%;
}
.filter-radio-group .checkbox label {
  font-size: 15px;
  font-family: var(--FontRegular);
}

.filter-row p {
  width: calc(100% - 215px);
}
.filter-row select {
  width: 212px;
  border-radius: 5px;
  font-size: 14px;
  background-image: url(../img/icons/down-arrow.svg);
  background-position: calc(100% - 15px) 50%;
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.14);
}

/*-------------------------------
    Counter  CSS
-------------------------------*/
.counter-wrapper:after, .counter-wrapper:before {
  position: absolute;
  left: 0;
  content: "";
  background-color: #F4EDEB;
}
.counter-wrapper:before {
  top: 0;
  height: 100%;
  background-color: var(--whiteColor);
  z-index: 0;
}
.counter-wrapper:after {
  bottom: 0;
  width: 100%;
  height: 50%;
  background-color: var(--ashColor);
  z-index: -1;
}

.counter-card-wrap {
  border-radius: 0 10px 10px 0;
}
.counter-card-wrap .counter-card {
  position: relative;
  z-index: 1;
  width: 25%;
}
.counter-card-wrap .counter-card h2 {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 13px;
}
.counter-card-wrap .counter-card p {
  padding: 0 20px;
  line-height: 24px;
  font-family: var(--FontLight);
}

/*-------------------------------
        Pagination  CSS
-------------------------------*/
/*-------------------------------
        App  CSS
-------------------------------*/
.app-wrapper.style-one {
  position: absolute;
}
.app-wrapper.style-one .app-img {
  position: absolute;
}
.app-wrapper.style-two .container {
  border-radius: 0 10px 10px 0;
}
.app-wrapper.style-two:before, .app-wrapper.style-two:after {
  position: absolute;
  left: 0;
  content: "";
}
.app-wrapper.style-two:before {
  bottom: 0;
  height: 100%;
  background-color: #D3E0DE;
}
.app-wrapper.style-two:after {
  bottom: 0;
  width: 100%;
  height: 47%;
  z-index: -1;
  background-color: var(--ashColor);
}

.app-btn a {
  padding: 16.7px 32px;
}
.app-btn a:first-child {
  margin-right: 20px;
}
.app-btn a img {
  margin-right: 10px;
  position: relative;
  top: -1.5px;
}

/*-------------------------------
    How It Works Section CSS
-------------------------------*/
.hw-card.style-one {
  padding: 25px;
}
.hw-card.style-one .hw-counter {
  right: 30px;
  top: 28px;
}
.hw-card.style-one h6 {
  margin-bottom: 15px;
  display: inline-block;
}
.hw-card.style-one h6:after {
  position: absolute;
  bottom: 0;
  right: calc(0% - 72px);
  content: "";
  width: 57px;
  height: 1px;
  background-color: #E9ECEF;
}
.hw-card.style-two .hw-icon {
  width: 76px;
  height: 76px;
  margin-right: 15px;
}
.hw-card.style-two h6 {
  width: calc(100% - 91px);
}
.hw-card.style-two:hover .hw-icon {
  background-color: var(--optionalColor) !important;
}
.hw-card.style-two:hover .hw-icon img {
  filter: brightness(0) invert(1);
}

.hw-card-wrapper {
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 35px;
}
.hw-card-wrapper .hw-card {
  width: 33.33%;
}
.hw-card-wrapper .hw-card:nth-child(2), .hw-card-wrapper .hw-card:nth-child(3) {
  padding-left: 30px;
}
.hw-card-wrapper .hw-card:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 1px;
  height: 76px;
  background-color: #E9ECEF;
}
.hw-card-wrapper .hw-card:last-child:after {
  display: none;
}

/*-------------------------------
    Brand Section CSS
-------------------------------*/
.brand-wrapper .brand-logo {
  min-height: 259px;
  padding: 0 20px;
  border-right: 1px solid #E9ECEF;
  border-bottom: 1px solid #E9ECEF;
}

.partner-wrapper:after {
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  width: calc(100% - 20px);
  height: 100%;
  border-radius: 50px;
  background-color: #F4EDEB;
  transform: translateX(-50%);
  z-index: -1;
}
.partner-wrapper .container {
  border-radius: 50px;
}
.partner-wrapper .partner-content .feature-list li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}
.partner-wrapper .partner-content .feature-list li:after {
  position: absolute;
  top: 13px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--secondaryColor);
  content: "";
  transform: translateY(-50%);
}
.partner-wrapper .partner-content .feature-list li:last-child {
  margin-bottom: 0;
}

/*-------------------------------
    Pricing Section CSS
-------------------------------*/
.pricing-card-wrap .pricing-card {
  margin-bottom: 25px;
}
.pricing-card-wrap .pricing-card:last-child {
  margin-bottom: 0;
}

.pricing-card {
  padding: 30px 30px 15px;
}
.pricing-card .price-tag {
  font-size: 48px;
}
.pricing-card .price-tag span {
  font-size: 15px;
}
.pricing-card .btn {
  padding: 14px 30px 13.5;
}
.pricing-card .pricing-features {
  -moz-columns: 2;
       columns: 2;
  margin: 31px 0 0;
}
.pricing-card .pricing-features:after {
  position: absolute;
  top: 44%;
  left: 39%;
  content: "";
  width: 1px;
  height: 116px;
  background-color: #E9ECEF;
  transform: translateY(-50%);
}
.pricing-card .pricing-features li {
  margin-bottom: 18px;
  padding-left: 35px;
}
.pricing-card .pricing-features li i {
  position: absolute;
  top: 3px;
  left: 0;
  font-size: 25px;
  line-height: 0.8;
  font-weight: 300;
  color: var(--primaryColor);
}
.pricing-card.style-two .pricing-features:after {
  left: 42%;
}
.pricing-card.style-two .pricing-features li {
  padding-left: 37px;
}
.pricing-card.style-two .pricing-features li i {
  color: var(--optionalColor);
  top: 5px;
}
.pricing-card.bg_secondary .pricing-features:after {
  background: rgba(233, 236, 239, 0.1);
}

/*-------------------------------
    City Section CSS
-------------------------------*/
.city-card.style-one .city-img {
  margin-bottom: 21px;
}
.city-card.style-one:hover .city-img img {
  transform: scale(1.04);
}
.city-card.style-one:hover span {
  color: var(--primaryColor);
}
.city-card.style-two {
  border-radius: 10px;
}
.city-card.style-two span {
  bottom: 16px;
  left: 50%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  font-size: 20px;
  font-family: var(--FontMedium);
  line-height: 20px;
  margin: 0;
  padding: 13.5px 80px 15.5px;
  text-align: center;
  transform: translateX(-50%);
  transition: var(--transition);
}
.city-card.style-two:hover span {
  bottom: 23px;
}

/*-------------------------------
    Testimonial Section CSS
-------------------------------*/
.testimonial-card.style-one .client-quote {
  padding: 30px 30px 35px;
}
.testimonial-card.style-one .client-quote p {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 32px;
}
.testimonial-card.style-one .client-quote h6 {
  margin-bottom: 8px;
}
.testimonial-card.style-two {
  padding: 30px 25px 35px;
}
.testimonial-card.style-two p {
  margin-bottom: 33px;
  font-size: 18px;
  line-height: 32px;
}
.testimonial-card.style-two .client-info-wrap .client-img {
  width: 58px;
  height: 58px;
  margin-right: 20px;
}
.testimonial-card.style-two .client-info-wrap .client-info {
  top: 1px;
}
.testimonial-card.style-two .client-info-wrap .client-info h6 {
  margin-bottom: 8px;
}

.testimonial-slider-one .testimonial-pagination,
.testimonial-slider-two .testimonial-pagination {
  margin-top: 40px;
  text-align: center;
}
.testimonial-slider-one .testimonial-pagination .swiper-pagination-bullet,
.testimonial-slider-two .testimonial-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  margin: 0 6px !important;
  background: rgba(0, 117, 255, 0.1);
  transition: var(--transition);
}
.testimonial-slider-one .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.testimonial-slider-two .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 11px;
  height: 11px;
  position: relative;
  top: 1px;
  background-color: var(--optionalColor);
}

.testimonial-slider-one .testimonial-pagination {
  position: absolute;
  left: 0;
  text-align: right;
  bottom: 105px;
  z-index: 1;
  padding-right: 35px;
}

.testimonial-slider-two .testimonial-pagination {
  margin-top: 40px;
}

/*-------------------------------
    Blog  CSS
-------------------------------*/
.blog-card .blog-metainfo li {
  display: inline-block;
  position: relative;
  margin-right: 10px;
  padding-right: 20px;
  padding-left: 25px;
  font-size: 14px;
}
.blog-card .blog-metainfo li:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  transform: translateY(-50%);
}
.blog-card .blog-metainfo li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.blog-card .blog-metainfo li:last-child:after {
  display: none;
}
.blog-card .blog-metainfo li img {
  top: 5px;
  left: 0;
}
.blog-card .blog-metainfo li i {
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 0.9;
}
.blog-card .blog-metainfo li a:hover {
  color: var(--primaryColor);
}
.blog-card.style-one .blog-cat, .blog-card.style-two .blog-cat {
  bottom: -12px;
  right: 15px;
  padding: 4px 10px;
  transition: var(--transition);
}
.blog-card.style-one .blog-cat:hover, .blog-card.style-two .blog-cat:hover {
  background-color: var(--secondaryColor);
}
.blog-card.style-one h3 {
  margin: 21px 0 13px;
}
.blog-card.style-one h3 a {
  color: var(--secondaryColor);
}
.blog-card.style-one h3 a:hover {
  color: var(--primaryColor);
}
.blog-card.style-one .blog-metainfo li:after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--paraColor);
}
.blog-card.style-one .blog-metainfo li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.blog-card.style-one .blog-metainfo li:last-child:after {
  display: none;
}
.blog-card.style-one .blog-metainfo li img {
  top: 5px;
  left: 0;
}
.blog-card.style-one .blog-metainfo li i {
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 0.9;
}
.blog-card.style-one .blog-metainfo li a:hover {
  color: var(--primaryColor);
}
.blog-card.style-one:hover {
  transform: translateY(-5px);
}
.blog-card.style-two:before, .blog-card.style-two:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.blog-card.style-two:after {
  z-index: 0;
  background: linear-gradient(0deg, rgba(17, 24, 40, 0.65) 0%, rgba(17, 24, 40, 0.65) 100%);
}
.blog-card.style-two:before {
  visibility: hidden;
  opacity: 0;
  left: -100%;
  z-index: 1;
  transition: var(--transition);
  background: linear-gradient(0deg, #E9ECEF 0%, #E9ECEF 100%);
}
.blog-card.style-two .blog-info {
  bottom: 30px;
  left: 25px;
  width: calc(100% - 50px);
  position: relative;
  z-index: 1;
}
.blog-card.style-two .blog-info h3 {
  margin: 15px 0 15px;
  padding-bottom: 10px;
  transition: var(--transition);
  transition-delay: 0.2s;
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
}
.blog-card.style-two .blog-info h3 a {
  color: var(--whiteColor);
}
.blog-card.style-two .blog-info .blog-metainfo li {
  margin-right: 8px;
  padding-right: 16px;
  margin-bottom: 5px;
  color: #E9ECEF;
  transition: var(--transition);
}
.blog-card.style-two .blog-info .blog-metainfo li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.blog-card.style-two .blog-info .blog-metainfo li:last-child:after {
  display: none;
}
.blog-card.style-two .blog-info .blog-metainfo li img {
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.blog-card.style-two .blog-info .blog-metainfo li a {
  color: #E9ECEF;
}
.blog-card.style-two .blog-info .blog-metainfo li a:hover {
  color: var(--primaryColor);
}
.blog-card.style-two .blog-info .blog-metainfo li:after {
  width: 1px;
  height: 30px;
  background: rgba(233, 236, 239, 0.1);
  transition: var(--transition);
  transition-delay: 0.2s;
}
.blog-card.style-two .blog-info .blog-metainfo li:first-child {
  padding-left: 0;
}
.blog-card.style-two .blog-info .blog-metainfo li .author-img {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  border: 1px solid var(--whiteColor);
  transition: var(--transition);
}
.blog-card.style-two .blog-info .blog-metainfo li .author-img img {
  filter: brightness(1) invert(0);
}
.blog-card.style-two:hover:before {
  visibility: visible;
  opacity: 1;
  left: 0;
}
.blog-card.style-two:hover h3 {
  border-color: #F4F7FB;
}
.blog-card.style-two:hover h3 a {
  color: var(--primaryColor);
}
.blog-card.style-two:hover .blog-metainfo li {
  color: var(--paraColor);
}
.blog-card.style-two:hover .blog-metainfo li img {
  filter: brightness(1) invert(0);
}
.blog-card.style-two:hover .blog-metainfo li .author-img {
  border-color: var(--optionalColor);
}
.blog-card.style-two:hover .blog-metainfo li:after {
  background: #F4F7FB;
}
.blog-card.style-two:hover .blog-metainfo li a {
  color: var(--paraColor);
}

/*---------------------------------
    Sidebar CSS
----------------------------------*/
.sidebar .sidebar-widget {
  padding: 35px 25px;
  margin-bottom: 25px;
  position: relative;
}
.sidebar .sidebar-widget.style-one {
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.14);
}
.sidebar .sidebar-widget.style-two {
  padding: 29px 25px;
}
.sidebar .sidebar-widget.style-three {
  padding: 0;
}
.sidebar .sidebar-widget .sidebar-widget-title {
  margin-bottom: 25px;
}
.sidebar .sidebar-widget .sidebar-title {
  position: relative;
  border-bottom: 1px solid #EFF5FA;
  padding-bottom: 20px;
}
.sidebar .sidebar-widget .sidebar-title h6, .sidebar .sidebar-widget .sidebar-title a {
  color: var(--secondaryColor);
  transition: var(--transition);
}
.sidebar .sidebar-widget .sidebar-title h6 i, .sidebar .sidebar-widget .sidebar-title a i {
  font-size: 18px;
  font-weight: 300;
  color: var(--primaryColor);
  margin-right: 7px;
  transition: var(--transition);
}
.sidebar .sidebar-widget .sidebar-title h6:hover, .sidebar .sidebar-widget .sidebar-title a:hover {
  color: var(--primaryColor);
}
.sidebar .sidebar-widget .sidebar-title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 45%;
  height: 2px;
  background-color: var(--optionalColor);
}

.filter-widget {
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.14);
  padding: 29px 25px;
}
.filter-widget .sidebar-title {
  position: relative;
  border-bottom: 1px solid #EFF5FA;
  padding-bottom: 20px;
}
.filter-widget .sidebar-title h6, .filter-widget .sidebar-title a {
  color: var(--secondaryColor);
  transition: var(--transition);
}
.filter-widget .sidebar-title h6 i, .filter-widget .sidebar-title a i {
  font-size: 18px;
  font-weight: 300;
  color: var(--primaryColor);
  margin-right: 7px;
  transition: var(--transition);
}
.filter-widget .sidebar-title h6:hover, .filter-widget .sidebar-title a:hover {
  color: var(--primaryColor);
}
.filter-widget .sidebar-title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 45%;
  height: 2px;
  background-color: var(--optionalColor);
}

.search-form input {
  margin-bottom: 15px;
  padding-left: 43px;
  border-radius: 3px;
}
.search-form input::-moz-placeholder {
  color: var(--paraColor);
  opacity: 1;
}
.search-form input::placeholder {
  color: var(--paraColor);
  opacity: 1;
}
.search-form i {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 20px;
  line-height: 1;
  color: var(--paraColor);
}

.category-list li {
  border-bottom: 1px solid #E9ECEF;
  margin-bottom: 17px;
  padding-bottom: 17px;
}
.category-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.category-list li a {
  font-size: 15px;
}
.category-list li a span {
  float: right;
  width: 28px;
  height: 28px;
  transition: var(--transition);
}
.category-list li a:hover {
  color: var(--primaryColor);
}
.category-list li a:hover span {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.pp-post-wrap .pp-post-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E9ECEF;
}
.pp-post-wrap .pp-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.pp-post-wrap .pp-post-item .pp-post-img {
  width: 106px;
  border-radius: 5px;
}
.pp-post-wrap .pp-post-item .pp-post-img img {
  border-radius: 5px;
}
.pp-post-wrap .pp-post-item .pp-post-info {
  width: calc(100% - 122px);
  margin-left: 15px;
}
.pp-post-wrap .pp-post-item .pp-post-info h3 {
  line-height: 24px;
  margin-bottom: 5px;
}
.pp-post-wrap .pp-post-item .pp-post-info h3 a {
  color: var(--secondaryColor);
  transition: var(--transition);
}
.pp-post-wrap .pp-post-item .pp-post-info h3 a:hover {
  color: var(--primaryColor);
}
.pp-post-wrap .pp-post-item .pp-post-info .post-date {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
}
.pp-post-wrap .pp-post-item .pp-post-info .post-date img {
  position: absolute;
  top: 0px;
  left: 0;
}
.pp-post-wrap .pp-post-item .pp-post-info .post-date:hover {
  color: var(--primaryColor);
}

.tag-list {
  margin-top: -15px;
}
.tag-list li {
  display: inline-block;
  margin: 10px 10px 0 0;
}
.tag-list li a {
  border-radius: 5px;
  padding: 4px 10px;
  font-family: var(--FontRegular);
}
.tag-list li a:hover {
  background-color: var(--secondaryColor);
}

.author-widget .author-img {
  width: 83px;
  height: 83px;
  border: 2px solid var(--whiteColor);
}
.author-widget .author-info {
  width: calc(100% - 98px);
  margin-left: 15px;
}
.author-widget .author-info h6 {
  margin-bottom: 5px;
}
.author-widget .author-info p {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.author-widget .author-info p i {
  position: absolute;
  top: 7px;
  left: 0;
  font-size: 18px;
  line-height: 0.8;
  color: #9EA6BA;
}
.author-widget .author-info p a {
  color: var(--secondaryColor);
}
.author-widget .author-info p:hover a {
  color: var(--primaryColor);
}

.seller-widget .social-profile li,
.details-widget .social-profile li {
  margin-right: 12px;
}
.seller-widget .social-profile li:last-child,
.details-widget .social-profile li:last-child {
  margin-right: 0;
}
.seller-widget .social-profile li a,
.details-widget .social-profile li a {
  width: 49px;
  height: 49px;
  box-shadow: 0px 4px 30px rgba(52, 105, 153, 0.14);
}
.seller-widget .social-profile li a img,
.details-widget .social-profile li a img {
  transition: var(--transition);
}
.seller-widget .social-profile li a:hover,
.details-widget .social-profile li a:hover {
  transform: translateY(-4px);
}
.seller-widget .social-profile li a:hover img,
.details-widget .social-profile li a:hover img {
  transform: rotate(360deg);
}

.contact-widget .contact-widget-form .form-group i {
  font-size: 18px;
  top: 50px;
}
.contact-widget .contact-widget-form .form-group input, .contact-widget .contact-widget-form .form-group select, .contact-widget .contact-widget-form .form-group textarea {
  padding-left: 45px;
}
.contact-widget .contact-info li {
  margin-bottom: 6px;
  color: var(--secondaryColor);
}
.contact-widget .contact-info li:last-child {
  margin-bottom: 0;
}
.contact-widget .contact-info li i {
  position: relative;
  margin-right: 8px;
  color: var(--paraColor);
}
.contact-widget .contact-info li a {
  color: var(--secondaryColor);
}
.contact-widget .contact-info li a:hover {
  color: var(--primaryColor);
}

.seller-widget {
  text-align: center;
  padding: 0 0 30px;
}
.seller-widget h4 {
  margin: 20px 0 15px;
}
.seller-widget .ratings {
  margin-bottom: 15px;
}
.seller-widget .social-profile {
  margin-top: 15px;
}
.seller-widget .sold-stat {
  border-top: 1px solid #E9ECEF;
  padding-top: 5px;
  margin-top: 30px;
}
.seller-widget .sold-stat div {
  width: 50%;
}

.action-btn li {
  display: inline-block;
  margin: 10px 8px 0 0;
}
.action-btn li i {
  position: relative;
  top: 1px;
  margin-right: 7px;
}
.action-btn li a, .action-btn li button {
  font-size: 13px;
  color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  border-radius: 50px;
  padding: 10px 15px;
  line-height: 1;
  display: inline-block;
  background-color: transparent;
  transition: var(--transition);
}
.action-btn li a:hover, .action-btn li button:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.pp-listing-wrap .pp-listing-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E9ECEF;
}

.pp-listing-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E9ECEF;
}
.pp-listing-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.pp-listing-item .pp-listing-img {
  width: 106px;
  border-radius: 5px;
}
.pp-listing-item .pp-listing-img img {
  border-radius: 5px;
}
.pp-listing-item .pp-listing-info {
  width: calc(100% - 122px);
  margin-left: 15px;
}
.pp-listing-item .pp-listing-info h6 {
  line-height: 24px;
  margin-bottom: 7px;
}
.pp-listing-item .pp-listing-info h6 a {
  color: var(--secondaryColor);
  transition: var(--transition);
}
.pp-listing-item .pp-listing-info h6 a:hover {
  color: var(--primaryColor);
}
.pp-listing-item .pp-listing-info p {
  line-height: 16px;
  margin-bottom: 9px;
  color: var(--primaryColor);
}

/*-------------------------------
    Compare & Bookmark  CSS
-------------------------------*/
.compare-table {
  padding: 40px 25px;
  border-radius: 5px;
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.14);
  width: 100%;
  overflow-x: auto;
}
.compare-table thead tr th, .compare-table thead tr td, .compare-table tbody tr th, .compare-table tbody tr td {
  border: none;
  padding: 15px;
}
.compare-table thead tr th, .compare-table tbody tr th {
  color: var(--secondaryColor);
  font-family: var(--FontRegular);
  text-align: right;
}
.compare-table thead tr th .compare-product .compare-product-img, .compare-table tbody tr th .compare-product .compare-product-img {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}
.compare-table thead tr th .compare-product .compare-product-img .close-btn, .compare-table tbody tr th .compare-product .compare-product-img .close-btn {
  width: 30px;
  height: 30px;
  background-color: var(--primaryColor);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: -6px;
  right: -6px;
}
.compare-table thead tr th .compare-product .compare-product-img img, .compare-table tbody tr th .compare-product .compare-product-img img {
  border-radius: 10px;
  max-width: 312px;
}
.compare-table thead tr th .compare-product h3 a, .compare-table tbody tr th .compare-product h3 a {
  color: var(--secondaryColor);
}
.compare-table thead tr th .compare-product h3 a:hover, .compare-table tbody tr th .compare-product h3 a:hover {
  color: var(--primaryColor);
}
.compare-table thead tr td, .compare-table tbody tr td {
  text-align: center;
  color: var(--paraColor);
}
.compare-table thead tr {
  background-color: transparent;
}
.compare-table thead tr th {
  background-color: transparent;
}
.compare-table tbody tr:nth-child(odd) td, .compare-table tbody tr:nth-child(odd) th {
  background-color: #F7F8F9;
}

.bookmark-table thead tr th {
  font-size: 18px;
  font-family: var(--FontRegular);
  font-weight: 600;
  border-color: #E9ECEF;
  padding: 0 10px 20px;
}
.bookmark-table tbody tr {
  vertical-align: middle;
}
.bookmark-table tbody tr td {
  padding: 18px 30px;
  color: var(--paraColor);
  border-color: #E9ECEF;
}
.bookmark-table tbody tr td .pp-listing-item .pp-listing-img {
  width: 82px;
  border-radius: 10px;
}
.bookmark-table tbody tr td .pp-listing-item .pp-listing-img img {
  border-radius: 10px;
}
.bookmark-table tbody tr td .pp-listing-item .pp-listing-info span img {
  margin-right: 6px;
  position: relative;
  top: -1px;
}

/*----------------------------
    FAQ  & Error CSS
------------------------------*/
.faq-wrap .accordion-item {
  border: none;
  margin: 0 0 20px;
  background: transparent;
}
.faq-wrap .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-wrap .accordion-item .accordion-header {
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}
.faq-wrap .accordion-item .accordion-header .accordion-button {
  border-radius: 5px 5px 0 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: var(--titleColor);
  text-align: left;
  align-items: center;
  border: none;
  padding: 34px 50px 34px 30px;
  border-radius: 5px;
  transition: var(--transition);
}
.faq-wrap .accordion-item .accordion-header .accordion-button:after {
  display: none;
}
.faq-wrap .accordion-item .accordion-header .accordion-button:focus {
  outline: none;
  box-shadow: none;
}
.faq-wrap .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: #F4EDEB;
  box-shadow: none;
  padding: 37px 40px 27px 30px;
}
.faq-wrap .accordion-item .accordion-header .accordion-button:not(.collapsed) span {
  border-color: var(--optionalColor);
}
.faq-wrap .accordion-item .accordion-header .accordion-button:not(.collapsed) span i {
  color: var(--optionalColor);
}
.faq-wrap .accordion-item .accordion-header .accordion-button span {
  display: inline-block;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 2px solid var(--paraColor);
  position: absolute;
  top: 50px;
  right: 30px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  transform: translateY(-50%);
}
.faq-wrap .accordion-item .accordion-header .accordion-button span i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 300;
  line-height: 0.8;
  color: var(--paraColor);
  display: block;
  margin: 0 auto;
}
.faq-wrap .accordion-item .accordion-header .accordion-button span i.minus {
  visibility: hidden;
  opacity: 0;
}
.faq-wrap .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: #F4F7FB;
}
.faq-wrap .accordion-item .accordion-body {
  border-radius: 0 0 5px 5px;
  background-color: #F4EDEB;
  padding: 0 0 30px;
}
.faq-wrap .accordion-item .accordion-body p, .faq-wrap .accordion-item .accordion-body ul {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  margin: 0 30px;
  color: var(--paraColor);
}
.faq-wrap .accordion-collapse {
  border: none;
}
.faq-wrap .accordion-button:not(.collapsed) span i.plus {
  visibility: hidden;
  opacity: 0;
}
.faq-wrap .accordion-button:not(.collapsed) span i.minus {
  visibility: visible !important;
  opacity: 1 !important;
}

/*---------------------------------
    Contact Page CSS 
-----------------------------------*/
.contact-card {
  padding: 36px 35px;
}
.contact-card .contact-icon {
  width: 66px;
  height: 66px;
  background-color: var(--whiteColor);
  transition: var(--transition);
}
.contact-card .contact-icon i {
  font-size: 30px;
  line-height: 0.8;
  color: var(--primaryColor);
}
.contact-card .contact-info {
  width: calc(100% - 86px);
  margin-left: 20px;
}
.contact-card .contact-info h5 {
  margin-bottom: 18px;
}
.contact-card .contact-info a {
  display: block;
}
.contact-card .contact-info a:hover {
  color: var(--primaryColor);
}
.contact-card .contact-info p {
  margin-bottom: 0;
}
.contact-card:hover .contact-icon {
  background-color: var(--primaryColor);
}
.contact-card:hover .contact-icon i {
  color: var(--whiteColor);
}

.contact-map {
  height: 670px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
}

/*-------------------------------
    Blog & Listing Details  CSS
-------------------------------*/
.terms-wrap p,
.listing-details p,
.blog-desc p {
  margin-bottom: 18px;
}
.terms-wrap p:last-child,
.listing-details p:last-child,
.blog-desc p:last-child {
  margin-bottom: 0;
}
.terms-wrap p strong, .terms-wrap p b,
.listing-details p strong,
.listing-details p b,
.blog-desc p strong,
.blog-desc p b {
  color: var(--secondaryColor);
}
.terms-wrap p a,
.listing-details p a,
.blog-desc p a {
  color: var(--optionalColor);
}
.terms-wrap p a:hover,
.listing-details p a:hover,
.blog-desc p a:hover {
  text-decoration: underline;
  color: var(--primaryColor);
}
.terms-wrap h1, .terms-wrap h2, .terms-wrap h3, .terms-wrap h4, .terms-wrap h5, .terms-wrap h6,
.listing-details h1,
.listing-details h2,
.listing-details h3,
.listing-details h4,
.listing-details h5,
.listing-details h6,
.blog-desc h1,
.blog-desc h2,
.blog-desc h3,
.blog-desc h4,
.blog-desc h5,
.blog-desc h6 {
  margin-bottom: 22px;
}
.terms-wrap h1,
.listing-details h1,
.blog-desc h1 {
  font-size: 36px;
}
.terms-wrap h2,
.listing-details h2,
.blog-desc h2 {
  font-size: 32px;
}
.terms-wrap h3,
.listing-details h3,
.blog-desc h3 {
  font-size: 28px;
}
.terms-wrap h4,
.listing-details h4,
.blog-desc h4 {
  font-size: 24px;
}
.terms-wrap h5,
.listing-details h5,
.blog-desc h5 {
  font-size: 20px;
}
.terms-wrap h6,
.listing-details h6,
.blog-desc h6 {
  font-size: 18px;
}
.terms-wrap ol,
.listing-details ol,
.blog-desc ol {
  margin-top: 20px;
  margin-bottom: 30px;
}
.terms-wrap ol li,
.listing-details ol li,
.blog-desc ol li {
  margin-bottom: 15px;
  color: var(--paraColor);
  padding-left: 3px;
}
.terms-wrap .single-img .blog-cat,
.listing-details .single-img .blog-cat,
.blog-desc .single-img .blog-cat {
  bottom: -12px;
  right: 25px;
  padding: 4px 10px;
}
.terms-wrap .single-box,
.listing-details .single-box,
.blog-desc .single-box {
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.14);
  margin-bottom: 25px;
}
.terms-wrap .single-box .blog-metainfo,
.listing-details .single-box .blog-metainfo,
.blog-desc .single-box .blog-metainfo {
  margin: 0 0 20px;
}
.terms-wrap .single-box .single-para,
.listing-details .single-box .single-para,
.blog-desc .single-box .single-para {
  padding: 28px 30px 35px;
}
.terms-wrap .feature-list,
.listing-details .feature-list,
.blog-desc .feature-list {
  margin-bottom: 25px;
}
.terms-wrap .feature-list.style-one li,
.listing-details .feature-list.style-one li,
.blog-desc .feature-list.style-one li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}
.terms-wrap .feature-list.style-one li:after,
.listing-details .feature-list.style-one li:after,
.blog-desc .feature-list.style-one li:after {
  position: absolute;
  top: 15px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--paraColor);
  content: "";
  transform: translateY(-50%);
}
.terms-wrap .feature-list.style-one li:last-child,
.listing-details .feature-list.style-one li:last-child,
.blog-desc .feature-list.style-one li:last-child {
  margin-bottom: 0;
}
.terms-wrap .feature-list.style-two,
.listing-details .feature-list.style-two,
.blog-desc .feature-list.style-two {
  -moz-columns: 2;
       columns: 2;
  margin: 30px 0 12px;
  position: relative;
}
.terms-wrap .feature-list.style-two:after,
.listing-details .feature-list.style-two:after,
.blog-desc .feature-list.style-two:after {
  position: absolute;
  top: 50%;
  left: 40%;
  content: "";
  width: 1px;
  height: 145px;
  background-color: #E9ECEF;
  transform: translateY(-50%);
}
.terms-wrap .feature-list.style-two li,
.listing-details .feature-list.style-two li,
.blog-desc .feature-list.style-two li {
  padding-left: 32px;
  margin-bottom: 15px;
}
.terms-wrap .feature-list.style-two li i,
.listing-details .feature-list.style-two li i,
.blog-desc .feature-list.style-two li i {
  font-size: 22px;
  line-height: 0.8;
  position: absolute;
  top: 5px;
  left: 0;
  color: var(--primaryColor);
}
.terms-wrap .blog-metainfo li,
.listing-details .blog-metainfo li,
.blog-desc .blog-metainfo li {
  display: inline-block;
  position: relative;
  margin-right: 10px;
  padding-right: 20px;
  padding-left: 25px;
  font-size: 14px;
}
.terms-wrap .blog-metainfo li:after,
.listing-details .blog-metainfo li:after,
.blog-desc .blog-metainfo li:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--paraColor);
  content: "";
  transform: translateY(-50%);
}
.terms-wrap .blog-metainfo li:first-child,
.listing-details .blog-metainfo li:first-child,
.blog-desc .blog-metainfo li:first-child {
  padding-left: 0;
}
.terms-wrap .blog-metainfo li:last-child,
.listing-details .blog-metainfo li:last-child,
.blog-desc .blog-metainfo li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.terms-wrap .blog-metainfo li:last-child:after,
.listing-details .blog-metainfo li:last-child:after,
.blog-desc .blog-metainfo li:last-child:after {
  display: none;
}
.terms-wrap .blog-metainfo li img,
.listing-details .blog-metainfo li img,
.blog-desc .blog-metainfo li img {
  top: 5px;
  left: 0;
}
.terms-wrap .blog-metainfo li i,
.listing-details .blog-metainfo li i,
.blog-desc .blog-metainfo li i {
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 0.9;
}
.terms-wrap .blog-metainfo li a:hover,
.listing-details .blog-metainfo li a:hover,
.blog-desc .blog-metainfo li a:hover {
  color: var(--primaryColor);
}
.terms-wrap .blog-metainfo li .author-img,
.listing-details .blog-metainfo li .author-img,
.blog-desc .blog-metainfo li .author-img {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  border: 2px solid var(--optionalColor);
  transition: var(--transition);
}
.terms-wrap .blog-metainfo li .author-img img,
.listing-details .blog-metainfo li .author-img img,
.blog-desc .blog-metainfo li .author-img img {
  filter: brightness(1) invert(0);
}

.listing-details .listing-info p img, .listing-details .listing-info p i {
  position: relative;
  top: -2px;
  margin-right: 10px;
}
.listing-details .listing-info .action-btn li a {
  border-color: #E9ECEF;
  color: var(--paraColor);
}
.listing-details .listing-info .action-btn li a:hover {
  background-color: transparent;
  color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.listing-details .comp-map {
  height: 390px;
}
.listing-details .comp-map iframe {
  width: 100%;
  height: 100%;
}

.post-metaoption {
  padding: 20.5px 30px;
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.14);
}

.post-tag li {
  margin: 0 10px 0 0;
}

.post-share ul {
  box-shadow: 0px 4px 20px 0px rgba(84, 196, 217, 0.15);
  padding: 6px 20px 5px;
  border-radius: 50px;
}
.post-share ul li {
  margin-right: 5px;
}
.post-share ul li:last-child {
  margin-right: 0;
}
.post-share ul li a {
  display: inline-block;
  box-shadow: none;
  text-align: center;
  width: 25px;
}
.post-share ul li a i {
  color: var(--primaryColor);
  display: block;
  margin: 0 auto;
  font-size: 20px;
  line-height: 0.8;
  transition: var(--transition);
}
.post-share ul li a:hover i {
  color: var(--titleColor);
}

.comment-item-wrap {
  padding: 32px 30px 35px;
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.14);
}
.comment-item-wrap .comment-item {
  margin-bottom: 20px;
  margin-bottom: 25px;
}
.comment-item-wrap .comment-item.reply {
  margin-left: 40px;
}
.comment-item-wrap .comment-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.comment-item-wrap .comment-item:last-child .comment-author-info {
  border-bottom: none;
  padding-bottom: 0;
}
.comment-item-wrap .comment-item .comment-author-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  position: relative;
  top: 1px;
}
.comment-item-wrap .comment-item .comment-author-img img {
  border-radius: 50%;
}
.comment-item-wrap .comment-item .comment-author-info {
  width: calc(100% - 73px);
  margin-left: 15px;
  padding-bottom: 18px;
  border-bottom: 1px solid #EEF4FA;
}
.comment-item-wrap .comment-item .comment-author-info .comment-author-name {
  margin: 0 0 20px;
}
.comment-item-wrap .comment-item .comment-author-info .comment-author-name h5 {
  line-height: 1;
  margin: 0;
  font-size: 18px;
  display: inline-block;
}
.comment-item-wrap .comment-item .comment-author-info .comment-author-name .comment-date {
  display: block;
  font-size: 14px;
  line-height: 1;
  margin-top: 7px;
}
.comment-item-wrap .comment-item .comment-author-info .comment-text p {
  margin: 0;
}
.comment-item-wrap .reply-btn {
  display: inline-block;
  line-height: 1;
  color: var(--primaryColor);
  font-size: 14px;
  font-family: var(--FontSemibold);
  transition: var(--transition);
}
.comment-item-wrap .reply-btn:hover {
  color: var(--secondaryColor);
}

#cmt-form {
  padding: 33px 30px 35px;
}

.register-form {
  padding: 30px 30px;
}

.or-text {
  position: relative;
}
.or-text:after, .or-text:before {
  position: absolute;
  top: 13px;
  content: "";
  width: 42%;
  height: 1px;
  background-color: #E9ECEF;
}
.or-text:after {
  left: 0;
}
.or-text:before {
  right: 0;
}

.register-form .form-group,
.post-listing-form .form-group,
.filter-form .form-group,
.contact-widget-form .form-group,
.comment-form .form-group {
  margin-bottom: 20px;
  position: relative;
}
.register-form .form-group label,
.post-listing-form .form-group label,
.filter-form .form-group label,
.contact-widget-form .form-group label,
.comment-form .form-group label {
  margin-bottom: 8px;
}
.register-form .form-group input, .register-form .form-group select, .register-form .form-group textarea,
.post-listing-form .form-group input,
.post-listing-form .form-group select,
.post-listing-form .form-group textarea,
.filter-form .form-group input,
.filter-form .form-group select,
.filter-form .form-group textarea,
.contact-widget-form .form-group input,
.contact-widget-form .form-group select,
.contact-widget-form .form-group textarea,
.comment-form .form-group input,
.comment-form .form-group select,
.comment-form .form-group textarea {
  width: 100%;
  border: 1px solid #E4EEF7;
  padding: 10px 20px 10px 55px;
  color: var(--paraColor);
  letter-spacing: 0.3px;
}
.register-form .form-group input::-moz-placeholder, .register-form .form-group select::-moz-placeholder, .register-form .form-group textarea::-moz-placeholder, .post-listing-form .form-group input::-moz-placeholder, .post-listing-form .form-group select::-moz-placeholder, .post-listing-form .form-group textarea::-moz-placeholder, .filter-form .form-group input::-moz-placeholder, .filter-form .form-group select::-moz-placeholder, .filter-form .form-group textarea::-moz-placeholder, .contact-widget-form .form-group input::-moz-placeholder, .contact-widget-form .form-group select::-moz-placeholder, .contact-widget-form .form-group textarea::-moz-placeholder, .comment-form .form-group input::-moz-placeholder, .comment-form .form-group select::-moz-placeholder, .comment-form .form-group textarea::-moz-placeholder {
  opacity: 1;
  color: var(--paraColor);
}
.register-form .form-group input::placeholder, .register-form .form-group select::placeholder, .register-form .form-group textarea::placeholder,
.post-listing-form .form-group input::placeholder,
.post-listing-form .form-group select::placeholder,
.post-listing-form .form-group textarea::placeholder,
.filter-form .form-group input::placeholder,
.filter-form .form-group select::placeholder,
.filter-form .form-group textarea::placeholder,
.contact-widget-form .form-group input::placeholder,
.contact-widget-form .form-group select::placeholder,
.contact-widget-form .form-group textarea::placeholder,
.comment-form .form-group input::placeholder,
.comment-form .form-group select::placeholder,
.comment-form .form-group textarea::placeholder {
  opacity: 1;
  color: var(--paraColor);
}
.register-form .form-group input, .register-form .form-group select,
.post-listing-form .form-group input,
.post-listing-form .form-group select,
.filter-form .form-group input,
.filter-form .form-group select,
.contact-widget-form .form-group input,
.contact-widget-form .form-group select,
.comment-form .form-group input,
.comment-form .form-group select {
  height: 56px;
}
.register-form .form-group textarea,
.post-listing-form .form-group textarea,
.filter-form .form-group textarea,
.contact-widget-form .form-group textarea,
.comment-form .form-group textarea {
  height: 99px;
  resize: none;
}
.register-form .form-group i,
.post-listing-form .form-group i,
.filter-form .form-group i,
.contact-widget-form .form-group i,
.comment-form .form-group i {
  position: absolute;
  top: 48px;
  left: 20px;
  opacity: 0.7;
  font-size: 20px;
  color: var(--paraColor);
}

.filter-form .form-group.search_form button {
  right: 15px;
  height: 100%;
}
.filter-form .form-group.search_form button i {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
}
.filter-form .form-group img {
  top: 21px;
  right: 17px;
}
.filter-form .form-group i {
  top: 15px;
  opacity: 1;
  font-size: 18px;
  color: var(--primaryColor);
}
.filter-form .form-group select {
  background-image: url(../img/icons/down-arrow.svg);
  background-position: calc(100% - 20px) 50%;
}

.rating-panel {
  min-height: 36px;
  width: 100%;
  display: block;
  /* hover previous stars in list */
}
.rating-panel .rating {
  border: none;
  float: left;
}
.rating-panel .rating > input {
  display: none;
}
.rating-panel .rating > label:before {
  margin: 5px;
  font-size: 25px;
  font-family: remixicon !important;
  display: inline-block;
  content: "\f186";
}
.rating-panel .rating > .half:before {
  content: "\f186";
  position: absolute;
}
.rating-panel .rating > label {
  color: #ddd;
  float: right;
}
.rating-panel .rating > input:checked ~ label,
.rating-panel .rating:not(:checked) > label:hover,
.rating-panel .rating:not(:checked) > label:hover ~ label {
  color: #FFD700;
}
.rating-panel .rating > input:checked + label:hover,
.rating-panel .rating > input:checked ~ label:hover,
.rating-panel .rating > label:hover ~ input:checked ~ label,
.rating-panel .rating > input:checked ~ label:hover ~ label {
  color: #FFED85;
}
.rating-panel input, .rating-panel label {
  cursor: pointer;
}
.rating-panel input[type=submit] {
  margin-top: 5px;
  background-color: #302d2b;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 12px 30px;
}
.rating-panel input[type=submit]:focus {
  outline: 0;
}
.rating-panel input[type=submit]:active {
  transform: scale(0.98);
}
.rating-panel input[type=submit]:disabled {
  background-color: #ddd;
  cursor: not-allowed;
}

.checkbox {
  display: block;
}
.checkbox.form-check {
  padding-left: 0;
}
.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox label {
  position: relative;
  cursor: pointer;
  color: var(--paraColor);
  padding-left: 29px;
}
.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  border: 1px solid #9EA6BA;
  display: inline-block;
  width: 17px;
  height: 17px;
  border-radius: 3px;
  position: absolute;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 4px;
}
.checkbox.style-two label:before {
  content: "";
  border: 1px solid var(--optionalColor);
  border-radius: 50%;
}
.checkbox.style-three label:before {
  top: 7px;
  width: 12px;
  height: 12px;
  background-color: var(--whiteColor);
  border: 1px solid #E4EEF7;
  border-radius: 2px;
  content: "";
}

.checkbox input:checked + label:before {
  border-color: var(--secondaryColor);
}

.checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  border: none;
  background: var(--secondaryColor);
}

.checkbox.style-two input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--optionalColor);
}

.checkbox.style-three input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  border: none;
  background: var(--optionalColor);
}

.rating li i {
  font-size: 19px;
  line-height: 0.8;
}
.rating li.rated i {
  color: #FFC107;
}
.rating li.unrated i {
  color: var(--grayColor);
}

/*-------------------------------
    Store Page CSS
-------------------------------*/
.store-card {
  padding: 34px 34px 34px;
}
.store-card .store-option {
  width: auto;
  top: 15px;
  right: 15px;
}
.store-card .store-option .dropdown-toggle:after {
  display: none;
}
.store-card .store-option .dropdown-toggle i {
  color: var(--paraColor);
  font-size: 20px;
  line-height: 0.8;
}
.store-card .store-option .dropdown-menu {
  border-radius: 2px;
  box-shadow: 0px 10px 35px 0px rgba(50, 110, 189, 0.2);
  width: 145px;
  min-width: 145px;
  padding: 4px 0;
  border: none;
  left: 0;
  right: auto !important;
  transform: translate(-100%, 8px) !important;
}
.store-card .store-option .dropdown-menu li a, .store-card .store-option .dropdown-menu li button {
  font-size: 14px;
  padding: 3px 14px;
  font-family: var(--FontRegular);
  color: var(--paraColor);
  display: block;
  width: 100%;
  text-align: left;
  transition: var(--transition);
}
.store-card .store-option .dropdown-menu li a:hover, .store-card .store-option .dropdown-menu li button:hover {
  background-color: #F8FAFC;
  color: var(--primaryColor);
}
.store-card .store-option .dropdown-menu li a:hover i, .store-card .store-option .dropdown-menu li button:hover i {
  color: var(--primaryColor);
}
.store-card .store-option .dropdown-menu li a i, .store-card .store-option .dropdown-menu li button i {
  position: relative;
  top: 1px;
  margin-right: 8px;
  font-size: 17px;
  color: #9EA6BA;
  line-height: 0.8;
}
.store-card h3 {
  margin-bottom: 7px;
}
.store-card h3 a {
  color: var(--secondaryColor);
}
.store-card h3 a:hover {
  color: var(--primaryColor);
}
.store-card span {
  margin: 0 0 17px;
}
.store-card .store-stat {
  margin: 20px 0 0;
}
.store-card .store-stat div {
  width: 50%;
  position: relative;
}
.store-card .store-stat div:nth-child(1):after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 1px;
  height: 44px;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.65);
}
.store-card .store-stat div:nth-child(2) {
  padding-left: 55px;
}
.store-card .store-stat div p {
  margin-bottom: 5px;
}

.store-box {
  padding: 40px 30px;
}
.store-box .store-info {
  margin-left: 20px;
}
.store-box .store-info h3 {
  margin-bottom: 18px;
}
.store-box .store-info p {
  margin-bottom: 25px;
}
.store-box .store-info .ratings {
  margin-right: 35px;
}
.store-box .store-info .ratings .rating li.unrated i {
  color: rgba(0, 0, 0, 0.15);
}
.store-box .store-info .ratings .rating li i {
  font-size: 18px;
}
.store-box .store-info .contact-info li {
  display: inline-block;
  margin-right: 40px;
  color: var(--secondaryColor);
}
.store-box .store-info .contact-info li:last-child {
  margin-right: 0;
}
.store-box .store-info .contact-info li i {
  position: relative;
  margin-right: 8px;
  color: var(--paraColor);
}
.store-box .store-info .contact-info li a {
  color: var(--secondaryColor);
}
.store-box .store-info .contact-info li a:hover {
  color: var(--primaryColor);
}

.modal-backdrop {
  --bs-backdrop-opacity: 0.7;
}

.elementor-editor-active [data-cue=bounceInDown], .elementor-editor-active [data-cue=bounceInLeft], .elementor-editor-active [data-cue=bounceInRight], .elementor-editor-active [data-cue=bounceInUp], .elementor-editor-active [data-cue=bounceIn], .elementor-editor-active [data-cue=fadeIn], .elementor-editor-active [data-cue=rotateIn], .elementor-editor-active [data-cue=slideInDown], .elementor-editor-active [data-cue=slideInLeft], .elementor-editor-active [data-cue=slideInRight], .elementor-editor-active [data-cue=slideInUp], .elementor-editor-active [data-cue=zoomIn], .elementor-editor-active [data-cue=zoomOut], .elementor-editor-active [data-cues=bounceInDown] > *, .elementor-editor-active [data-cues=bounceInLeft] > *, .elementor-editor-active [data-cues=bounceInRight] > *, .elementor-editor-active [data-cues=bounceInUp] > *, .elementor-editor-active [data-cues=bounceIn] > *, .elementor-editor-active [data-cues=fadeIn] > *, .elementor-editor-active [data-cues=rotateIn] > *, .elementor-editor-active [data-cues=slideInDown] > *, .elementor-editor-active [data-cues=slideInLeft] > *, .elementor-editor-active [data-cues=slideInRight] > *, .elementor-editor-active [data-cues=slideInUp] > *, .elementor-editor-active [data-cues=zoomIn] > *, .elementor-editor-active [data-cues=zoomOut] > * {
  opacity: 1;
}

.post-type-archive-rtcl_listing nav.rtcl-breadcrumb {
  display: none;
}

div#rtcl-sidebar .widget {
  box-shadow: 0px 4px 18px 0px rgba(52, 105, 153, 0.14);
  padding: 35px 25px;
  margin-bottom: 25px;
  position: relative;
  margin-left: 20px;
  margin-top: 20px;
}
div#rtcl-sidebar .rtcl-widget-heading h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
div#rtcl-sidebar .rtcl-widget-search button {
  width: auto;
  margin-top: 15px;
}
div#rtcl-sidebar .form-control {
  color: var(--paraColor);
  height: 45px;
  border-radius: 0;
}
div#rtcl-sidebar .form-group {
  margin-bottom: 15px;
}
div#rtcl-sidebar button {
  cursor: pointer;
}
div#rtcl-sidebar .rtcl .btn:hover {
  background-color: var(--secondaryColor);
  color: #fff;
}
div#rtcl-sidebar input[type=radio] {
  height: 15px !important;
}
div#rtcl-sidebar a.btn.btn-danger.my-3 {
  display: none;
}

.rtcl .rtcl-wrapper {
  max-width: 1330px;
}

.rtcl .rtcl-listings-actions .rtcl-result-count {
  font-size: 16px;
  font-weight: 500;
}

.rtcl .rtcl-listings-actions .rtcl-ordering select {
  width: 212px;
  border-radius: 5px;
  font-size: 14px;
  background-position: calc(100% - 15px) 50%;
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.14);
  height: unset;
  border: none;
  padding: 12px 15px 12px;
}

.rtcl-pagination ul.page-numbers li span.page-numbers.current, .rtcl-pagination ul.page-numbers li a.page-numbers:hover {
  color: #fff;
}

.rtcl nav.rtcl-pagination ul li {
  border-color: var(--primaryColor);
}

.rtcl.post-type-archive-rtcl_listing .rtcl-wrapper > #primary {
  padding: 0 15px;
}

@media only screen and (max-width: 767px) {
  .rtcl .rtcl-listing-header {
    margin: 0;
  }
  .rtcl .rtcl-listings-actions {
    text-align: center;
  }
  .rtcl .rtcl-listings-actions .rtcl-ordering {
    margin: auto;
  }
}
.listing-card.style-one .listing-img img, .listing-card.style-two .listing-img img {
  width: 100%;
}

.single-rtcl_listing .rtcl-breadcrumb {
  display: none;
}
.single-rtcl_listing .listing-sidebar {
  border: none !important;
}
.single-rtcl_listing .sidebar {
  padding-left: 0;
}
.single-rtcl_listing .rtcl-listing-user-info, .single-rtcl_listing .widget, .single-rtcl_listing .single-listing-inner-sidebar {
  border: none !important;
  border-radius: 10px !important;
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.14);
  margin-bottom: 25px;
}
.single-rtcl_listing span.rtcl-icon.rtcl-icon-phone.mr-2 {
  display: none;
}
.single-rtcl_listing .single-listing-inner-sidebar {
  padding: 20px;
}

.rtcl-listing-user-info .reveal-phone.revealed .numbers .revealed-whatsapp-number i {
  display: none;
}

.rtcl-single-listing-details {
  border: none;
}

.rtcl-single-listing-details .rtcl-listing-title {
  display: none;
}

.rtcl-single-listing-details .rtcl-slider-wrapper {
  background-color: #fff;
  border: none;
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.14);
  border-radius: 10px;
  padding-top: 20px;
  margin: 0;
  padding: 28px 30px 35px;
}

.rtcl-single-listing-details .rtcl-main-content-wrapper {
  padding: 0;
}

.rtcl-responsive-img {
  width: 100%;
  border-radius: 10px;
}

.rtcl-slider-nav .rtcl-slider-thumb-item img {
  border-radius: 10px;
}

.rtcl-slider-nav .rtcl-slider-thumb-item {
  width: auto !important;
  margin-right: 11px !important;
}

.media div, .media span {
  display: inline-block;
}

.rtcl .btn:hover {
  background-color: var(--secondaryColor);
  color: #fff;
}

.rtcl .listing-sidebar .rtcl-listing-side-title {
  padding: 16px 20px;
}

.embed-responsive {
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.14);
  border-radius: 10px;
  background: #fff;
  padding: 28px 30px 35px;
}

.rtcl .rtcl-related-listing {
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.14);
  border-radius: 10px;
  border: none;
  margin-top: 20px;
}

.rtcl .rtcl-related-listing .rtcl-related-title {
  padding-top: 19px;
}

.rtcl-related-listing .listing-item {
  background-color: #fff;
  padding: 15px 0;
  width: 33% !important;
}

.rtcl .rtcl-related-listing .related-item-inner.grid-item {
  box-shadow: 0px 1px 11px 0px rgba(52, 105, 153, 0.14);
  margin: 0;
  border-radius: 13px;
  border: 1px solid rgba(37, 37, 37, 0.1);
}

.rtcl-form-page .rtcl-listing-info-selecting, .rtcl-form-page .rtcl-post-form-wrap {
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.14);
  margin-bottom: 25px;
  border-radius: 10px;
}

.rtcl-form-page .form-control {
  color: var(--paraColor);
  font-size: 16px;
  border-color: #E4EEF7;
  height: 51px;
}

.rtcl .rtcl-post-section-title h3:before {
  background-color: #E4EEF7;
}

.rtcl input[type=radio] {
  height: 15px !important;
  width: auto;
}

div#rtcl-pricing-wrap {
  margin-top: 30px;
}

#rtcl-price-wrap .price-wrap {
  margin-bottom: 10px;
}

div#rtcl-pricing-wrap {
  margin-bottom: 20px;
}

.rtcl-post .wp-editor-wrap {
  position: relative;
  margin-bottom: 20px;
}

.rtcl-post-contact-detail .form-group {
  margin-bottom: 10px;
}

.rtcl-form-check input {
  height: auto;
  width: auto;
}

.rtcl .rtcl-breadcrumb {
  display: none;
}

@media (min-width: 768px) {
  .rtcl .rtcl-wrapper .rtcl-sidebar-wrapper {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
#rtcl-report-abuse-form button.close {
  background: transparent;
  border: none;
  font-size: 25px;
}

.style-five .listing-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.listing-img .rtcl-meta-buttons .rtcl-btn {
  background: transparent;
}

.rtcl-login-form-submit-wrap input#rtcl-rememberme {
  display: inline-block;
  width: auto;
  padding: 0;
  height: auto;
}

.btn-wrap .compare {
  cursor: pointer;
}

.compare-table .rtcl-price {
  display: unset;
  font-size: 18px;
}

.compare-table thead tr th, .compare-table tbody tr th {
  text-align: center;
  font-size: 15px;
}

.compare-table tbody tr td {
  font-size: 15px;
}

.not-found-listing {
  margin-bottom: -10px;
}
.not-found-listing a {
  color: var(--primaryColor);
}

input#rtcl-rememberme {
  height: unset;
  display: inline-block;
  width: auto;
}

.compare-popup {
  position: fixed;
  background-color: #fff;
  padding: 12px 27px;
  bottom: 13%;
  z-index: 9999;
  right: 0;
  margin: 0;
  border: 1px solid #e1e1e1;
  line-height: 0;
  border-radius: 8px;
  border-left: 5px solid #000;
  box-shadow: 0px 10px 9px -8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
}
.compare-popup p {
  margin: 0;
}
.compare-popup a {
  color: var(--primaryColor);
}
.compare-popup.activate {
  opacity: 1;
  overflow: hidden;
}

.single-listing-details-area .rtcl-listing-meta {
  display: none;
}

.rtcl-single-listing-details .rtcl-listing-meta {
  margin-bottom: 0;
  padding: 0;
}

.rtcl .rtcl-listing-meta-data li i {
  color: var(--primaryColor);
}

.rtcl .rtcl-listing-description {
  padding: 28px 30px 35px;
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.14);
  border-radius: 10px !important;
}

.clada-sticky-logo {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999999;
}

.related-item-inner .rtcl-listing-meta-data li {
  display: inline-block !important;
}
.related-item-inner span.rtcl-price-amount.amount {
  font-size: 17px;
}
.related-item-inner ul.listing-meta.rtcl-listing-meta-data {
  padding: 9px 0 !important;
}

.rtcl .rtcl-related-listing .related-item-inner .item-content {
  padding: 18px;
}

.rtcl .rtcl-listings .listing-item h3.listing-title a {
  color: var(--secondaryColor);
}

.rtcl .rtcl-listings .listing-item h3.listing-title a:hover {
  color: var(--primaryColor);
}

.elementor-widget-text-editor p {
  color: unset;
}

/*-----------------------------------------------
========= Home Demo 4 & 5 CSS ========
-------------------------------------------------*/
:root {
  --paraColorTwo: #585858;
}

.ls-2 {
  letter-spacing: -0.02em;
}

.ls-4 {
  letter-spacing: -0.04em;
}

.font-regular {
  font-family: var(--FontRegular);
}

.text-paraTwo {
  color: var(--paraColorTwo);
}

.text-ash {
  color: #B3B5B8;
}

.pt-120 {
  padding-top: 120px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-120 {
  padding-bottom: 120px;
}

.ptb-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.round-10 {
  border-radius: 10px;
}

.round-20 {
  border-radius: 20px;
}

.btn.style-ten {
  background-color: transparent;
  border: 1px solid var(--primaryColor);
  padding: 11px 31px 10.5px;
  border-radius: 10px;
}
.btn.style-ten:before {
  background-color: var(--primaryColor);
}
.btn.style-ten:hover {
  color: var(--whiteColor);
  border-color: transparent;
}
.btn.style-eleven {
  color: var(--optionalColor);
  border: 1px solid #E9ECEF;
  background-color: transparent;
  padding-left: 22px;
  padding-right: 22px;
}
.btn.style-eleven:before {
  background-color: var(--optionalColor);
}
.btn.style-eleven:hover {
  border-color: transparent;
  color: var(--whiteColor);
}

/*--------------------------
        Hero CSS
----------------------------*/
.hero-section.style-four .move-text {
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.hero-section.style-five {
  background-color: #131011;
  padding: 70px 0 80px;
}
.hero-section.style-five .hero-top-shape {
  right: 10%;
  z-index: 2;
}
.hero-section.style-five .hero-bottom-shape {
  left: 50%;
  transform: translateX(-50%);
}
.hero-section.style-five .hero-content {
  margin-bottom: 45px;
}
.hero-section.style-five .hero-content .hero-content-shape {
  position: absolute;
  bottom: 54px;
  right: -10px;
  z-index: -1;
}
.hero-section.style-five .hero-content h2 {
  font-size: 64px;
  line-height: 80px;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.hero-section.style-five .hero-content p {
  letter-spacing: 0;
}
.hero-section.style-five .listing-search-form {
  position: relative;
  z-index: 2;
  width: calc(100% + 140px);
  border-radius: 10px;
  padding: 21px 30px 21px 45px;
  border-radius: 100px;
  margin-bottom: 82px;
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.06);
}
.hero-section.style-five .listing-search-form button {
  width: 62px;
  height: 62px;
  padding: 0;
}
.hero-section.style-five .listing-search-form button i {
  font-size: 24px;
}
.hero-section.style-five .listing-search-form .form-group-wrap {
  width: calc(100% - 85px);
}
.hero-section.style-five .listing-search-form .form-group-wrap .form-group {
  position: relative;
}
.hero-section.style-five .listing-search-form .form-group-wrap .form-group:nth-child(1) {
  width: 31.5%;
}
.hero-section.style-five .listing-search-form .form-group-wrap .form-group:nth-child(2) {
  width: 35%;
}
.hero-section.style-five .listing-search-form .form-group-wrap .form-group:nth-child(3) {
  width: 33.5%;
}
.hero-section.style-five .listing-search-form .form-group-wrap .form-group:nth-child(3):after {
  right: -20px;
}
.hero-section.style-five .listing-search-form .form-group-wrap .form-group.search-form label {
  padding-left: 0;
}
.hero-section.style-five .listing-search-form .form-group-wrap .form-group.search-form input {
  height: 28px;
  padding: 0;
  margin-bottom: 0;
  position: relative;
  top: 8px;
}
.hero-section.style-five .listing-search-form .form-group-wrap .form-group.search-form i {
  position: absolute;
  top: 28px;
  right: 30px;
  left: auto;
  font-size: 16px;
}
.hero-section.style-five .listing-search-form .form-group-wrap .form-group:last-child:after {
  display: none;
}
.hero-section.style-five .listing-search-form .form-group-wrap .form-group:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 1px;
  height: 52px;
  background-color: #E9ECEF;
}
.hero-section.style-five .listing-search-form .form-group-wrap .form-group .select {
  padding: 0 30px 0 20px;
  font-size: 15px;
  height: 28px;
}
.hero-section.style-five .listing-search-form .form-group-wrap .form-group .select .selectBtn {
  padding: 0 20px 10px 10px;
}
.hero-section.style-five .listing-search-form .form-group-wrap .form-group .select .selectBtn:after {
  top: 1px;
}
.hero-section.style-five .listing-search-form .form-group-wrap .form-group label {
  padding-left: 30px;
  line-height: 1;
}
.hero-section.style-five .hero-client-review h6 {
  font-size: 44px;
  line-height: 44px;
  margin-right: 12px;
  color: var(--whiteColor);
}
.hero-section.style-five .hero-client-review p {
  color: #CCCCCE;
  margin-bottom: 11px;
}
.hero-section.style-five .hero-client-review .client-list li {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-left: -24px;
  border: 2px solid var(--whiteColor);
}
.hero-section.style-five .hero-client-review .client-list li:first-child {
  margin-left: 0;
}
.hero-section.style-five .hero-client-review .client-list li span {
  width: 50px;
  height: 50px;
  border: 2px solid var(--whiteColor);
  background-color: var(--optionalColor);
  color: var(--whiteColor);
  font-size: 14px;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.hero-section.style-five .hero-img-slider {
  padding-bottom: 100px;
}
.hero-section.style-five .hero-img-slider .hero-img-one,
.hero-section.style-five .hero-img-slider .hero-img-two {
  border-radius: 10px;
}
.hero-section.style-five .hero-img-slider .hero-img-one {
  top: 100px;
  position: relative;
}
.hero-section.style-five .hero-slider-wrap .slider-btn {
  position: absolute;
  bottom: 0px;
  right: 0;
  z-index: 1;
}
.hero-section.style-five .hero-slider-wrap .slider-btn .prev-btn {
  margin-right: 24px;
}

/*--------------------------
        Listing CSS
----------------------------*/
.listing-area.style-four:after {
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  width: calc(100% - 20px);
  height: 60%;
  border-radius: 20px;
  transform: translateX(-50%);
  background-color: var(--secondaryColor);
  z-index: -1;
}
.listing-area.style-four.listing-area-srbg:after {
  height: 100%;
}
.listing-area.style-four .listing-content {
  margin-bottom: 52px;
  padding: 120px 0 0;
}
.listing-area.style-four .listing-content h1 {
  font-size: 64px;
  line-height: 80px;
  letter-spacing: -0.04em;
}
.listing-area.style-four .listing-content p {
  color: #B3B5B8;
}
.listing-area.style-four .listing-search-form {
  border-radius: 10px;
  padding: 21px 30px 21px 45px;
  border-radius: 100px;
  box-shadow: 0px 4px 30px 0px rgba(52, 105, 153, 0.06);
  margin-bottom: 115px;
}
.listing-area.style-four .listing-search-form button {
  width: 62px;
  height: 62px;
  padding: 0;
}
.listing-area.style-four .listing-search-form button i {
  font-size: 24px;
}
.listing-area.style-four .listing-search-form .form-group-wrap {
  width: calc(100% - 85px);
}
.listing-area.style-four .listing-search-form .form-group-wrap .form-group {
  position: relative;
}
.listing-area.style-four .listing-search-form .form-group-wrap .form-group:nth-child(1) {
  width: 31.5%;
}
.listing-area.style-four .listing-search-form .form-group-wrap .form-group:nth-child(2) {
  width: 35%;
}
.listing-area.style-four .listing-search-form .form-group-wrap .form-group:nth-child(3) {
  width: 33.5%;
}
.listing-area.style-four .listing-search-form .form-group-wrap .form-group:nth-child(3):after {
  right: -20px;
}
.listing-area.style-four .listing-search-form .form-group-wrap .form-group.search-form label {
  padding-left: 0;
}
.listing-area.style-four .listing-search-form .form-group-wrap .form-group.search-form label.search-form-pt {
  padding-top: 7px;
}
.listing-area.style-four .listing-search-form .form-group-wrap .form-group.search-form input {
  height: 28px;
  padding: 0;
  margin-bottom: 0;
  position: relative;
  top: 8px;
}
.listing-area.style-four .listing-search-form .form-group-wrap .form-group.search-form i {
  position: absolute;
  top: 32px;
  right: 30px;
  left: auto;
  font-size: 16px;
}
.listing-area.style-four .listing-search-form .form-group-wrap .form-group:last-child:after {
  display: none;
}
.listing-area.style-four .listing-search-form .form-group-wrap .form-group:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 1px;
  height: 52px;
  background-color: #E9ECEF;
}
.listing-area.style-four .listing-search-form .form-group-wrap .form-group .select {
  padding: 0 30px 0 20px;
  font-size: 15px;
  height: 28px;
}
.listing-area.style-four .listing-search-form .form-group-wrap .form-group .select .selectBtn {
  padding: 0 20px 10px 10px;
}
.listing-area.style-four .listing-search-form .form-group-wrap .form-group .select .selectBtn:after {
  top: 1px;
}
.listing-area.style-four .listing-search-form .form-group-wrap .form-group label {
  padding-left: 30px;
  line-height: 1;
}

.listing-card.style-six .listing-img-wrap {
  margin-bottom: 17px;
}
.listing-card.style-six .listing-img-wrap .add-to-wishlist {
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  z-index: 3;
  background-color: var(--whiteColor);
}
.listing-card.style-six .listing-img-wrap .add-to-wishlist i {
  font-size: 18px;
  font-weight: 300;
  line-height: 0.8;
  position: relative;
  top: 1px;
  left: 1px;
  color: #FF0000;
  transition: var(--transition);
}
.listing-card.style-six .listing-img-wrap .add-to-wishlist.rtcl-meta-buttons .rtcl-btn {
  background-color: transparent !important;
}
.listing-card.style-six .listing-img-wrap .add-to-wishlist.rtcl-meta-buttons .rtcl-btn .rtcl-icon {
  color: #FF0000 !important;
  position: relative;
  top: 2px;
  transition: 0.7s;
}
.listing-card.style-six .listing-img-wrap .add-to-wishlist:hover {
  background-color: #FF0000 !important;
}
.listing-card.style-six .listing-img-wrap .add-to-wishlist:hover i {
  color: var(--whiteColor);
}
.listing-card.style-six .listing-img-wrap .add-to-wishlist:hover.rtcl-meta-buttons .rtcl-btn {
  background-color: transparent !important;
}
.listing-card.style-six .listing-img-wrap .add-to-wishlist:hover.rtcl-meta-buttons .rtcl-btn .rtcl-icon {
  color: var(--whiteColor) !important;
}
.listing-card.style-six .listing-img-wrap img {
  transition: var(--transition);
}
.listing-card.style-six .listing-info h3 {
  margin-bottom: 15px;
}
.listing-card.style-six .listing-info h3 a {
  color: #241F10;
}
.listing-card.style-six .listing-info h3 a:hover {
  color: var(--primaryColor);
}
.listing-card.style-six .listing-info p {
  margin-bottom: 6px;
}
.listing-card.style-six .listing-info .property-amenity {
  margin-bottom: 4px;
  line-height: 1;
}
.listing-card.style-six .listing-info .property-amenity li {
  display: inline-block;
  padding-right: 4px;
  font-size: 15px;
  position: relative;
  margin-right: 1px;
}
.listing-card.style-six .listing-info .property-amenity li:after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: ",";
  font-size: 16px;
  color: var(--paraColor);
}
.listing-card.style-six .listing-info .rtcl-price {
  font-size: 15px;
  font-family: var(--FontSemibold);
  color: var(--optionalColor);
}
.listing-card.style-six:hover .listing-img-wrap img {
  transform: scale(1.05);
}

.property-img-slider .property-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  line-height: 1;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
}
.property-img-slider .property-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 6px;
  height: 6px;
}
.property-img-slider .property-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgb(255, 255, 255);
}

/*--------------------------
        About CSS
----------------------------*/
.about-area.style-four:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 68%;
  height: 86%;
  border-radius: 0 20px 20px 0;
  background-color: #F4EDEB;
  z-index: -1;
}
.about-area.style-four .section-shape {
  position: absolute;
  bottom: 19%;
  left: 50px;
  z-index: 0;
}
.about-area.style-four .about-features .feature-list {
  -moz-columns: 2;
  columns: 2;
  position: relative;
}
.about-area.style-four .about-features .feature-list li {
  padding-left: 32px;
  margin-bottom: 18px;
}
.about-area.style-four .about-features .feature-list li i {
  font-size: 22px;
  line-height: 0.8;
  position: absolute;
  top: 5px;
  left: 0;
  color: var(--primaryColor);
}
.about-area.style-four .about-img-wrap .about-img-one {
  top: 60%;
  left: 5px;
  z-index: 1;
  transform: translateY(-50%);
  border-radius: 10px;
  box-shadow: 0 4px 34px rgba(0, 0, 0, 0.25);
}
.about-area.style-four .about-img-wrap .video-container {
  position: relative;
  width: 760px;
  height: 480px;
  margin-left: auto;
  border-radius: 10px;
}
.about-area.style-four .about-img-wrap .video-container video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.about-area.style-five {
  padding-left: 50px;
  padding-right: 50px;
}
.about-area.style-five h6 {
  line-height: 46px;
}
.about-area.style-five .video-container {
  position: relative;
  width: 384;
  height: 180px;
  border-radius: 30px;
}
.about-area.style-five .video-container video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
.about-area.style-five .feature-item-wrap {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 55px;
  margin-top: 75px;
}
.about-area.style-five .feature-item-wrap .feature-item {
  width: 33.33%;
}
.about-area.style-five .feature-item-wrap .feature-item .feature-icon {
  width: 88px;
  height: 80px;
  background-image: url(../img/feature/feature-bg.webp);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 88px 80px;
}
.about-area.style-five .feature-item-wrap .feature-item .feature-text {
  width: calc(100% - 112px);
  margin-left: auto;
}
.about-area.style-five .feature-item-wrap .feature-item .feature-text h3 {
  margin-bottom: 10px;
}
.about-area.style-five .feature-item-wrap .feature-item .feature-text p {
  max-width: 75%;
  color: #666C78;
  line-height: 26px;
}
.about-area.style-five .feature-item-wrap .feature-item:nth-child(3) {
  position: relative;
  left: 45px;
}

.mute-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  display: none;
}

.video-container:hover .mute-button {
  display: block;
}

/*--------------------------
        Process CSS
----------------------------*/
.process-area .process-shape {
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

.process-card-wrap {
  padding-top: 60px;
}
.process-card-wrap .process-card {
  width: calc(33.33% - 40px);
  position: relative;
  transition: var(--transition);
}
.process-card-wrap .process-card:nth-child(1) {
  transform: rotate(-14deg);
}
.process-card-wrap .process-card:nth-child(1):hover {
  transform: rotate(0);
}
.process-card-wrap .process-card:nth-child(2) {
  margin-top: -35px;
}
.process-card-wrap .process-card:nth-child(3) {
  transform: rotate(14deg);
}
.process-card-wrap .process-card:nth-child(3):hover {
  transform: rotate(0);
}

.process-card.style-one {
  border-radius: 20px 20px 0 0;
  padding: 62px 20px 115px;
}
.process-card.style-one .process_counter {
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.process-card.style-one h3 {
  padding-top: 26px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*----------------------------
    FAQ  CSS
------------------------------*/
.faq-wrap.style-two .accordion-item {
  margin: 0 0 20px;
  border-radius: 10px;
}
.faq-wrap.style-two .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-wrap.style-two .accordion-item .accordion-header .accordion-button {
  font-size: 20px;
  color: var(--secondaryColor);
}
.faq-wrap.style-two .accordion-item .accordion-header .accordion-button:not(.collapsed) span {
  border-color: var(--optionalColor);
}
.faq-wrap.style-two .accordion-item .accordion-header .accordion-button:not(.collapsed) span i {
  color: var(--optionalColor);
}
.faq-wrap.style-two .accordion-item .accordion-header .accordion-button span {
  border: 2px solid var(--optionalColor);
}
.faq-wrap.style-two .accordion-item .accordion-header .accordion-button span i {
  color: var(--optionalColor);
}
.faq-wrap.style-two .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: #F4F7FB;
}

/*--------------------------
        Property CSS
----------------------------*/
.property-area .move-text {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}

.property-section-title .shape-one {
  top: -25px;
  left: 0;
  z-index: -1;
}

.property-features .shape-one {
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.property-features .feature-list {
  position: relative;
}
.property-features .feature-list li {
  padding-left: 32px;
  margin-bottom: 18px;
}
.property-features .feature-list li i {
  font-size: 22px;
  line-height: 0.8;
  position: absolute;
  top: 5px;
  left: 0;
  color: var(--primaryColor);
}

.property-slider {
  width: 400px;
  height: 500px;
}
.property-slider .swiper-slide {
  position: relative;
  border-radius: 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.property-slider .swiper-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.property-slider .swiper-slide .img-position {
  -o-object-position: 50% 0%;
     object-position: 50% 0%;
}

/*--------------------------
        Funfact CSS
----------------------------*/
.counter-wrapper.style-two:before {
  background-color: var(--optionalColor);
}

.counter-card-wrap.style-two {
  border-radius: 0 10px 10px 0;
}
.counter-card-wrap.style-two .counter-card:before {
  position: absolute;
  top: -20px;
  left: 30px;
  content: "";
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.counter-card-wrap.style-two .counter-card h2 {
  font-weight: 900;
}
.counter-card-wrap.style-two .counter-card p {
  color: #CFD4DD;
}

/*-------------------------------
    CTA Section CSS
-------------------------------*/
.cta-wrapper.style-three {
  background-image: url(../img/property/cta-bg.webp);
  padding: 90px 20px 95px 60px;
  border-radius: 15px;
}
.cta-wrapper.style-three:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(17, 24, 40, 0.6);
  border-radius: 15px;
  z-index: -1;
}
.cta-wrapper.style-three .cta-promo-text {
  position: absolute;
  top: 24px;
  right: 27px;
  color: #BABEBF;
}
.cta-wrapper.style-three p {
  color: #767B87;
}

/*-------------------------------
    How It Works CSS
-------------------------------*/
.hw-card-wrap .hw-card-item {
  margin-bottom: 50px;
}
.hw-card-wrap .hw-card-item:last-child {
  margin-bottom: 0;
}
.hw-card-wrap .hw-card-item.style-two {
  position: relative;
  left: -110px;
}
.hw-card-wrap .hw-card-item .hw-card {
  height: 100%;
}

/*-------------------------------
    Testimonial CSS
-------------------------------*/
.testimonial-wrapper.style-four:after {
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--secondaryColor);
  z-index: -1;
  border-radius: 20px;
  transform: translateX(-50%);
}
.testimonial-wrapper .testimonial-slider-two.style-two .testimonial-pagination .swiper-pagination-bullet {
  background: rgba(231, 235, 240, 0.1) !important;
}
.testimonial-wrapper .testimonial-slider-two.style-two .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primaryColor) !important;
}

.testimonial-slider-two.style-two .testimonial-pagination .swiper-pagination-bullet {
  background: rgba(231, 235, 240, 0.1);
}
.testimonial-slider-two.style-two .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primaryColor);
}

/*-------------------------------
    Moving Text Section CSS
-------------------------------*/
.move-text {
  position: relative;
  overflow: hidden;
}
.move-text.style-one {
  height: 100px;
}
.move-text.style-one ul {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  animation: mymove 16s linear infinite alternate;
}
.move-text.style-one ul li {
  display: inline-block;
  font-size: 120px;
  line-height: 1;
  color: #DCDEE2;
  margin: 0 12px;
  position: relative;
}
.move-text.style-two {
  height: 122px;
}
.move-text.style-two ul {
  position: absolute;
  top: -5px;
  left: 0;
  white-space: nowrap;
  animation: mymove 20s linear infinite alternate;
}
.move-text.style-two ul li {
  display: inline-block;
  font-size: 120px;
  line-height: 1;
  margin: 0 12px;
  letter-spacing: 0;
  position: relative;
  -webkit-text-stroke: 1px rgba(17, 24, 40, 0.3);
  -webkit-text-fill-color: transparent;
}

.rtcl .rtcl-btn, .rtcl-btn {
  background-color: transparent !important;
  text-align: center;
}
.rtcl .rtcl-btn:hover, .rtcl-btn:hover {
  background-color: transparent !important;
}

.rtcl .rtcl-btn .rtcl-icon, .rtcl-btn .rtcl-icon {
  margin-right: 0;
}
@keyframes mymove {
  from {
    left: 0;
  }
  to {
    left: -100%;
  }
}/*# sourceMappingURL=clada-main.css.map */