.modal {
  z-index: 11100;
}

.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  transition: 0.4s;
  padding: 8px 0px;
}
.header-wrap .navbar-brand {
  padding: 0;
}
.header-wrap .navbar-brand img {
  max-width: 120px;
}
.header-wrap.sticky {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  background: var(--light-color);
}
.header-wrap.sticky .topNavBar {
  display: none !important;
}
.header-wrap .currency {
  border: 1px solid var(--primary-color);
}
.header-wrap .currency a {
  font-size: 1.1rem;
}
.header-wrap .currency a.active {
  color: var(--primary-color) !important;
}

@media (min-width: 992px) {
  .header-wrap .nav-contain .contact-nav a:hover {
    color: var(--primary-color);
  }
  .header-wrap .nav-contain .navbar {
    padding: 0;
  }
  .header-wrap .nav-contain .navbar ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
  }
  .header-wrap .nav-contain .navbar .navbar-nav {
    justify-content: space-between;
  }
  .header-wrap .nav-contain .navbar .navbar-nav > .nav-item > a:after {
    position: absolute;
    bottom: 10px;
    left: 0;
    content: "";
    width: 0;
    height: 2px;
    background: var(--primary-color);
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item {
    position: relative;
    margin: 0 5px;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item.first-child {
    margin-left: 0;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item .menu-expand {
    display: none;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item a {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    padding: 14px 0;
    transition: 0.4s;
    position: relative;
    text-transform: capitalize;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item a:hover, .header-wrap .nav-contain .navbar .navbar-nav .nav-item a:focus, .header-wrap .nav-contain .navbar .navbar-nav .nav-item a.active {
    color: var(--primary-color);
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item a:hover:after, .header-wrap .nav-contain .navbar .navbar-nav .nav-item a:focus:after, .header-wrap .nav-contain .navbar .navbar-nav .nav-item a.active:after {
    visibility: visible;
    opacity: 1;
    width: 100%;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item a i {
    font-size: 14px;
    line-height: 1;
    position: relative;
    top: 3px;
    display: inline-block;
    transition: 0.4s;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item .dropdown-menu {
    display: block !important;
    border: none;
    top: 100%;
    left: 0;
    z-index: 99;
    opacity: 0;
    width: -moz-max-content;
    width: max-content;
    display: block;
    border-left: 2px solid var(--primary-color);
    position: absolute;
    visibility: hidden;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    transition: 0.4s;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item .dropdown-menu li {
    margin: 0;
    padding: 0 10px;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item .dropdown-menu li:last-child {
    border-bottom: none;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item .dropdown-menu li a {
    padding: 9px 20px;
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 500;
    transition: 0.4s;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item .dropdown-menu li a::before {
    position: absolute;
    top: 18px;
    left: 20px;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item .dropdown-menu li a.active, .header-wrap .nav-contain .navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
    color: var(--primary-color);
    background-color: transparent;
    padding-left: 32px;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item .dropdown-menu li a.active:before, .header-wrap .nav-contain .navbar .navbar-nav .nav-item .dropdown-menu li a:hover:before {
    visibility: visible;
    opacity: 1;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .header-wrap .nav-contain .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .header-wrap .nav-contain .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
    width: 100%;
    right: auto;
    left: 0;
    background-color: transparent;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item .dropdown-menu li a i {
    margin: 0;
    position: absolute;
    top: 55%;
    font-size: 16px;
    line-height: 1;
    transform: translateY(-50%);
    right: 15px;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    top: 0;
    opacity: 0;
    left: -250px;
    right: auto;
    visibility: hidden;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item:hover i {
    transform: rotate(180deg);
  }
  .header-wrap .nav-contain .navbar .navbar-nav .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  .header-wrap .navbar-brand {
    padding: 0;
  }
  .header-wrap .navbar-brand img {
    max-width: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-wrap .navbar-brand img {
    max-width: 100px;
  }
  .header-wrap .navbar .navbar-nav .nav-item {
    margin: 0 7px;
  }
  .header-wrap .navbar .navbar-nav .nav-item a {
    font-size: 15px;
    padding: 15px 0;
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .header-wrap .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .header-wrap .navbar-brand {
    padding: 0;
  }
  .header-wrap .navbar-brand img {
    max-width: 60px;
  }
  .header-wrap .navbar .navbar-collapse {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
  }
  .header-wrap .navbar .navbar-nav {
    width: 100%;
    flex-direction: column;
  }
  .header-wrap .navbar .navbar-nav .nav-item {
    position: relative;
  }
  .header-wrap .navbar .navbar-nav .nav-item .menu-expand {
    position: absolute;
    right: 0;
    top: 14px;
    cursor: pointer;
  }
  .header-wrap .navbar .navbar-nav .nav-item .menu-expand i {
    color: rgba(0, 0, 0, 0.7);
    font-size: 18px;
    line-height: 1;
    position: relative;
    top: 7px;
  }
  .header-wrap .navbar .navbar-nav .nav-item a {
    border-bottom: 1px solid #F3F4F6;
    padding-top: 15px;
    padding-bottom: 15px;
    text-transform: capitalize;
  }
  .header-wrap .navbar .navbar-nav .nav-item a i {
    display: none;
  }
  .header-wrap .navbar .navbar-nav .nav-item a.active {
    color: var(--secondary-color);
  }
  .header-wrap .navbar .navbar-nav .nav-item .btn {
    margin-top: 15px;
    display: block;
    width: 100%;
  }
  .header-wrap .navbar .navbar-nav .nav-item .btn:after {
    display: none;
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu {
    width: 100%;
    background-color: var(--light-color);
    border: none;
    padding: 0;
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li a {
    font-size: 14px;
    padding-left: 10px;
    margin-left: 10px;
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li a:active {
    background-color: transparent;
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
    color: var(--secondary-color);
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
    margin-left: 20px;
  }
  .header-wrap .navbar .navbar-nav .nav-item .btn.style1 {
    margin-top: 15px;
    color: var(--light-color);
  }
  .mobile-bar-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    position: relative;
    top: 4px;
  }
  .menu-close {
    position: absolute;
    top: 13px;
    right: 16px;
    background: transparent;
    border: none;
  }
  .menu-close:focus {
    outline: none;
    box-shadow: none;
  }
  .menu-close i {
    color: rgba(0, 0, 0, 0.7);
    font-size: 25px;
  }
  .mobile-menu {
    text-align: right;
    display: inline-block;
    position: relative;
    top: -1px;
  }
  .mobile-menu button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    background: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
  }
  .mobile-menu button i {
    font-size: 22px;
    color: var(--light-color);
    margin: 0 auto;
  }
  .main-menu-wrap {
    width: 100%;
    position: fixed;
    background: var(--light-color);
    z-index: 999;
    top: 0;
    height: 100vh;
    left: -100%;
    padding: 50px 20px 10px;
    overflow-y: auto;
    transition: 0.4s;
  }
  .main-menu-wrap.open {
    left: 0;
  }
  .main-menu > li.has-children.menu-open > span.menu-expand {
    transform: rotate(180deg);
  }
  .main-menu > li.has-children.menu-open > span.menu-expand i {
    color: rgba(0, 0, 0, 0.7);
  }
  .main-menu > li > ul > li.has-children.menu-open > span.menu-expand {
    transform: rotate(180deg);
  }
  .main-menu li {
    position: relative;
  }
  .main-menu li:last-child {
    margin: 0;
  }
  .main-menu li > span.menu-expand {
    position: absolute;
    right: 0;
    top: 13px;
    cursor: pointer;
  }
  .main-menu li > span.menu-expand i {
    color: rgba(0, 0, 0, 0.7);
    font-size: 18px;
  }
  .main-menu li > span.menu-expand:hover {
    color: rgba(0, 0, 0, 0.7);
  }
  .main-menu li a.active {
    color: var(--secondary-color);
  }
  .main-menu li > a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    text-transform: capitalize;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
  .main-menu li > a:hover {
    color: rgba(0, 0, 0, 0.7);
  }
  .main-menu li > ul.sub-menu {
    padding-left: 20px;
  }
  .header-wrap .header-bottom .main-menu-wrap #menu > ul > li > a::after {
    display: none;
  }
  .main-menu li a.active {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    border-color: rgba(0, 0, 0, 0.3);
  }
}
.theme-dark .header-wrap.sticky {
  background-color: #111 !important;
}
@media (max-width: 991.98px) {
  .theme-dark .main-menu li a:hover {
    color: var(--secondary-color);
  }
  .theme-dark .main-menu-wrap,
  .theme-dark .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu {
    background-color: #111;
  }
  .theme-dark .header-wrap .navbar .navbar-nav .nav-item a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .theme-dark .menu-close i,
  .theme-dark .header-wrap .navbar .navbar-nav .nav-item .menu-expand i {
    color: var(--light-color);
  }
  .theme-dark .main-menu li a.active,
  .theme-dark .main-menu li a {
    border-color: rgba(255, 255, 255, 0.5);
  }
}
@media (min-width: 992px) {
  .theme-dark .main-menu-wrap #menu ul li.has-children .sub-menu {
    background-color: #111;
  }
  .theme-dark .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu {
    background-color: #111;
  }
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  transition: 0.4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  left: -2px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: 0.4s;
  box-shadow: 0 0px 15px rgba(32, 32, 32, 0.2392156863);
  border-radius: 50%;
  background: #fff url(../img/night.png);
  background-repeat: no-repeat;
  background-position: center;
}

input:checked + .slider {
  background-color: var(--light-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.7);
}

input:checked + .slider:before {
  transform: translateX(24px);
  background: #fff url(../img/sunny.png);
  background-repeat: no-repeat;
  background-position: center;
}

.footer-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer-wrap .container {
  position: relative;
}
.footer-wrap .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
}
.footer-wrap .footer-widget {
  margin-bottom: 25px;
}
.footer-wrap .footer-widget .footer-logo {
  display: block;
}
.footer-wrap .footer-widget .footer-logo img {
  display: block;
  max-width: 180px;
}
.footer-wrap .footer-widget .footer-widget-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
}
.footer-wrap .footer-widget .footer-widget-title:after {
  display: block;
  margin-top: 1rem;
  content: "";
  width: 55px;
  height: 2px;
  background: var(--secondary-color);
}
.footer-wrap .footer-widget .comp-desc {
  margin: 25px 0 16px;
  padding-right: 10px;
}
.footer-wrap .footer-widget h6 {
  margin: 0 0 15px;
  font-weight: 600;
}
.footer-wrap .footer-widget .footer-menu li {
  margin-bottom: 15px;
}
.footer-wrap .footer-widget .footer-menu li:last-child {
  margin-bottom: 0;
}
.footer-wrap .footer-widget .footer-menu li a {
  position: relative;
}
.footer-wrap .footer-widget .footer-menu li a i {
  margin: 0 8px;
  color: var(--primary-color);
  transition: 0.5s;
}
.footer-wrap .footer-widget .footer-menu li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.footer-wrap .footer-widget .footer-menu li a:hover i {
  color: var(--primary-color);
}
.footer-wrap.style2 {
  background: var(--primary-color);
  position: relative;
  z-index: 1;
}
.footer-wrap.style2 .footer-shape-one {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.footer-wrap.style2 .footer-widget {
  color: var(--light-color);
}
.footer-wrap.style2 .footer-widget .footer-widget-title {
  color: var(--light-color);
}
.footer-wrap.style2 .footer-widget .footer-widget-title:after {
  background-color: var(--light-color);
}
.footer-wrap.style2 .footer-widget .comp-desc {
  color: var(--light-color);
}
.footer-wrap.style2 .footer-widget h6 {
  color: var(--light-color);
}
.footer-wrap.style2 .footer-widget .footer-menu li a {
  color: var(--light-color);
}
.footer-wrap.style2 .footer-widget .footer-menu li a i {
  color: var(--primary-color);
}
.footer-wrap.style2 .footer-widget .footer-menu li a:hover {
  color: var(--primary-color);
}
.footer-wrap.style2 .footer-widget .text-widget a {
  color: var(--light-color);
}
.footer-wrap.style2 .footer-widget .text-widget a:hover {
  color: var(--light-color);
}
.footer-wrap.style2 .footer-widget .social-profile li a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: none;
  background: var(--secondary-color);
}
.footer-wrap.style2 .footer-widget .social-profile li a i {
  font-size: 19px;
  color: var(--light-color);
  transition: 0.4s;
}
.footer-wrap.style2 .copyright-text {
  color: var(--light-color);
}
.footer-wrap.style2 .copyright-text a {
  color: var(--secondary-color);
}

.copyright-text {
  text-align: left;
  margin: 0;
}
.copyright-text i {
  position: relative;
  top: 2px;
  margin-right: 2px;
}
.copyright-text span {
  color: var(--primary-color);
}
.copyright-text a {
  color: var(--primary-color);
  font-weight: 600;
}
.copyright-text a:hover {
  text-decoration: underline;
}

@media (min-width: 1200px) {
  .footer-wrap .footer-widget .comp-desc {
    padding-right: 30px;
  }
  .footer-wrap .footer-widget .footer-widget-title {
    margin-top: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-wrap .footer-widget .footer-widget-title {
    font-size: 22px;
  }
  .footer-wrap .footer-widget .comp-desc {
    padding-right: 25px;
  }
}
@media (max-width: 1199px) {
  .footer-wrap .footer-widget .footer-widget-title {
    margin-bottom: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-wrap .footer-widget .footer-widget-title {
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 12px;
  }
  .footer-wrap .footer-widget .comp-desc {
    padding-right: 40px;
    margin: 15px 0 15px;
  }
}
@media (max-width: 767px) {
  .footer-wrap .footer-widget .footer-widget-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .footer-wrap .footer-widget .comp-desc {
    font-size: 14px;
    padding-right: 10px;
    margin: 12px 0 12px;
  }
  .footer-wrap .footer-widget .footer-menu li {
    margin-bottom: 8px;
  }
  .footer-wrap .footer-widget .footer-menu li a {
    font-size: 14px;
    padding-left: 16px;
  }
  .footer-wrap .footer-widget .footer-menu li a i {
    font-size: 16px;
    top: 3px;
  }
  .footer-wrap .footer-bottom .copyright-text {
    text-align: center;
    margin-bottom: 15px;
  }
}
*, html {
  box-sizing: border-box;
}
*:not(input):not(button):not(a), html:not(input):not(button):not(a) {
  /* Keyword values */
  user-select: none;
  /* Mozilla-specific values */
  -moz-user-select: none;
  /* WebKit-specific values */
  -webkit-user-select: none;
}

html {
  scroll-behavior: smooth;
}

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

.select2-container .select2-selection--single {
  height: 50px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
  height: 50px;
  text-align: start;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 15px;
}

.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;
  margin: 0;
}

a {
  color: rgba(0, 0, 0, 0.7);
  text-transform: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover,
a :focus {
  text-decoration: none;
  box-shadow: none;
  color: rgba(0, 0, 0, 0.7);
}

a:focus {
  outline: 0 solid;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.5);
  font-family: var(--font-family);
}

body {
  font-size: 16px;
  font-family: var(--font-family);
  color: #666666;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

.page-wrapper {
  margin-top: 115px;
  overflow-x: hidden;
  overflow-y: hidden;
}
@media (max-width: 992px) {
  .page-wrapper {
    margin-top: 100px;
  }
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 85px;
  width: 85px;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: center center;
  border-radius: 50%;
  box-shadow: 0 0 0 0 #fff;
  animation: ripple 3s infinite;
}

.play-now {
  position: relative;
  height: 85px;
  width: 85px;
  text-align: center;
  line-height: 92px;
  background-color: var(--light-color);
  color: #fff;
  z-index: 1;
  font-size: 28px;
  padding-left: 5px;
  display: block;
  transform-origin: center center;
  border-radius: 50%;
  margin: 0 auto;
}
.play-now i {
  color: var(--primary-color);
  font-size: 24px;
}
.play-now .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.play-now .ripple:after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.back-to-top {
  font-size: 24px;
  width: 45px;
  height: 45px;
  line-height: 42px;
  text-align: center;
  display: none;
  position: fixed;
  bottom: 230px;
  right: 20px;
  z-index: 999;
  background: var(--primary-color);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}
.back-to-top.open {
  bottom: 30px;
}
.back-to-top i {
  color: var(--light-color);
}

.btn {
  display: inline-block;
  line-height: 26px;
  font-weight: 400;
  text-align: center;
  transition: 0.7s;
  position: relative;
  z-index: 1;
  border: 1px solid transparent;
  padding: 14px 35px 14px;
  color: var(--light-color);
  overflow: hidden;
  white-space: nowrap;
}
.btn i {
  position: relative;
  top: 3px;
  font-size: 16px;
  margin-left: 7px;
  transition: 0.4s;
}
.btn:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: 0.4s;
}
.btn:after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: 0.4s;
}
.btn:hover {
  color: var(--light-color);
}
.btn:hover:after, .btn:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.btn.style1 {
  background: var(--secondary-color);
}
.btn.style1:hover {
  color: var(--light-color) !important;
}
.btn.style1:after, .btn.style1:before {
  background: var(--primary-color);
}
.btn.style2 {
  background: var(--primary-color);
  color: var(--light-color);
}
.btn.style2:after, .btn.style2:before {
  background: var(--secondary-color);
}
.btn.style2:hover {
  color: var(--light-color);
}
.btn.style3 {
  background-color: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}
.btn.style3:after, .btn.style3:before {
  background: var(--primary-color);
}
.btn.style3:hover {
  color: var(--light-color);
  border-color: transparent;
}
.btn.style4 {
  background-color: var(--light-color);
  color: var(--primary-color);
}
.btn.style4:after, .btn.style4:before {
  background: var(--secondary-color);
}
.btn.style4:hover {
  color: var(--light-color);
}
.btn.style5 {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.btn.style5:after, .btn.style5:before {
  background: var(--primary-color);
}
.btn.style5:hover {
  color: var(--light-color);
}
.btn.style6 {
  background-color: var(--light-color);
  color: var(--primary-color);
}
.btn.style6:after, .btn.style6:before {
  background: var(--primary-color);
}
.btn.style6:hover {
  color: var(--light-color);
}
.btn.fb, .btn.twitter, .btn.linkedin {
  display: block;
  width: 100%;
  text-align: left;
}
.btn.fb span, .btn.twitter span, .btn.linkedin span {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  text-align: center;
  flex-direction: column;
}
.btn.fb span i, .btn.twitter span i, .btn.linkedin span i {
  font-size: 22px;
  position: relative;
  top: -1px;
  margin: 0;
}
.btn.fb {
  background-color: #1976D3;
}
.btn.fb span {
  background-color: #156ABD;
}
.btn.linkedin {
  background-color: #FF641A;
}
.btn.linkedin span {
  background-color: #E55A17;
}
.btn.twitter {
  background-color: #03A9F5;
}
.btn.twitter span {
  background-color: #0398DC;
}

.link {
  font-weight: 600;
  line-height: 26px;
  display: inline-block;
  position: relative;
  color: var(--primary-color);
  transition: 0.4s;
}
.link:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background: var(--primary-color);
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}
.link i {
  position: relative;
  top: 3px;
  margin-left: 5px;
  font-size: 14px;
  transition: 0.4s;
}
.link:hover {
  color: var(--primary-color);
}
.link:hover:after {
  visibility: visible;
  opacity: 1;
  width: 100%;
}
.link:hover i {
  margin-left: 10px;
}

.owl-carousel .owl-nav {
  display: flex;
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.4s;
}
.owl-carousel .owl-nav button.owl-prev i, .owl-carousel .owl-nav button.owl-next i {
  font-size: 18px;
  line-height: 0.8;
  display: inline-block;
  position: relative;
  top: 1px;
  color: #666666;
  margin: 0 auto;
  transition: 0.4s;
}
.owl-carousel .owl-nav button.owl-prev:hover, .owl-carousel .owl-nav button.owl-next:hover {
  background: var(--primary-color);
  border-color: transparent;
}
.owl-carousel .owl-nav button.owl-prev:hover i, .owl-carousel .owl-nav button.owl-next:hover i {
  color: var(--light-color);
}
.owl-carousel .owl-dots button.owl-dot {
  display: inline-block;
  margin: 0 6px;
  position: relative;
  bottom: -5px;
}
.owl-carousel .owl-dots button.owl-dot span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid transparent;
  position: relative;
  transition: 0.4s;
}
.owl-carousel .owl-dots button.owl-dot span:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
}
.owl-carousel .owl-dots button.owl-dot.active span {
  border-color: var(--primary-color);
}
.owl-carousel .owl-dots button.owl-dot.active span:after {
  background: var(--primary-color);
  width: 7px;
  height: 7px;
}

.section-title,
.content-title {
  position: relative;
}
.section-title h2,
.content-title h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}
.section-title p,
.content-title p {
  width: 50%;
  margin: auto;
}
.section-title span,
.content-title span {
  display: inline-block;
  font-weight: 600;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.section-title.style1 span,
.content-title.style1 span {
  color: var(--primary-color);
}
.section-title.style2 span,
.content-title.style2 span {
  letter-spacing: 8px;
  color: var(--primary-color);
}

.bg-white {
  background-color: var(--light-color);
}

.bg-seashell {
  background-color: #f5f5f5;
}

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

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

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

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
.blur-up {
  opacity: 0;
  transition: opacity 200ms;
}

.blur-up.lazyloaded,
.blur-up.lazyloading {
  opacity: 1;
}

.social-profile li {
  display: inline-block;
  margin: 0 4px;
}
.social-profile li:first-child {
  margin-left: 0;
}
.social-profile li:last-child {
  margin-right: 0;
}
.social-profile li a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  width: 35px;
  height: 35px;
  text-align: center;
  transition: 0.3s;
  background: var(--light-color);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.social-profile li a i {
  transition: 0.3s;
  font-size: 16px;
  line-height: 0.8;
  color: var(--primary-color);
}
.social-profile li a:hover {
  border-color: transparent;
  color: var(--primary-color);
  background: var(--primary-color);
  transform: translateY(-3px);
}
.social-profile li a:hover i {
  color: var(--light-color);
}

.content-wrapper {
  margin-top: 85px;
}

.modal-backdrop {
  opacity: 0.8 !important;
}

.sidebar .sidebar-widget {
  margin: 0 0 30px;
  position: relative;
  z-index: 1;
  padding: 25px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.09);
}
.sidebar .sidebar-widget h4 {
  margin: 0 0 25px;
  font-size: 24px;
  position: relative;
  line-height: 1;
  position: relative;
}
.sidebar .sidebar-widget:last-child {
  margin: 0;
}
.sidebar .form-wrap .col-md-6 {
  width: 100%;
}

.top-1 {
  top: 105px;
}

.category-box ul li {
  position: relative;
}
.category-box ul li:first-child a {
  padding-top: 0;
}
.category-box ul li:first-child a i {
  top: 6px;
}
.category-box ul li:last-child a {
  border-bottom: none;
  padding-bottom: 0;
}
.category-box ul li a {
  font-weight: 600;
  padding: 8px 0 8px 20px;
  display: block;
  font-size: 16px;
  color: #666666;
  transition: 0.4s;
}
.category-box ul li a i {
  position: absolute;
  top: 16px;
  left: 0;
  font-size: 10px;
  line-height: 0.8;
  color: #666666;
  transition: 0.4s;
}
.category-box ul li a span {
  float: right;
  font-weight: 400;
  margin-left: 4px;
  font-size: 16px;
  color: #666666;
}
.category-box ul li a:hover {
  color: var(--primary-color);
  padding-left: 25px;
}
.category-box ul li a:hover i {
  color: var(--primary-color);
}

.add-listing-bg {
  position: relative;
  height: 100%;
  aspect-ratio: 512/341;
}

.add-listing-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: url(../img/add-listing-shape.png);
  height: 100%;
  aspect-ratio: 512/341;
}

.property-slider-two.owl-carousel .owl-stage {
  display: flex;
}
.property-slider-two.owl-carousel .owl-stage-outer {
  padding-bottom: 1rem;
}
.property-slider-two.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 25px;
}
.property-slider-two.owl-carousel .owl-dots .owl-dot span {
  width: 24px;
  height: 6px;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.1);
}
.property-slider-two.owl-carousel .owl-dots .owl-dot span:after {
  display: none;
}
.property-slider-two.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--primary-color);
}

.accordion-collapse {
  border: none;
}

.accordion-button:not(.collapsed) span i.fa-plus {
  visibility: hidden;
  opacity: 0;
}

.accordion-button:not(.collapsed) span i.fa-minus {
  visibility: visible !important;
  opacity: 1 !important;
}

article {
  margin-bottom: 25px;
}
article p {
  margin-bottom: 15px;
}
article p strong {
  color: rgba(0, 0, 0, 0.7);
}
article p a {
  color: var(--primary-color);
}
article p a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}
article h1 {
  font-size: 30px;
  margin-bottom: 15px;
}
article h2 {
  font-size: 28px;
  margin-bottom: 15px;
}
article h3 {
  font-size: 26px;
  margin-bottom: 15px;
}
article h4 {
  font-size: 24px;
  margin-bottom: 15px;
}
article h5 {
  font-size: 22px;
  margin-bottom: 15px;
}
article h6 {
  font-size: 20px;
  margin-bottom: 15px;
}
article ol {
  margin-top: 20px;
  margin-bottom: 25px;
}
article ol li {
  margin-bottom: 15px;
  color: #666666;
  padding-left: 3px;
}

.form-wrap {
  margin-bottom: -10px;
}
.form-wrap .form-group {
  margin: 0 0 20px;
}
.form-wrap .form-group input,
.form-wrap .form-group textarea {
  width: 100%;
  background: #f5f5f5;
  border: none;
  padding: 10px 15px;
}
.form-wrap .form-group input:focus,
.form-wrap .form-group textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.09);
}
.form-wrap .form-group input {
  height: 60px;
}
.form-wrap .form-group textarea {
  height: 163px;
  resize: none;
  padding-top: 18px;
}

.btn.disabled {
  opacity: 1;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.fixed-bottom {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: unset;
  display: block;
  z-index: 1040;
}
.fixed-bottom:hover {
  opacity: 0.7;
  transition: all 0.4s ease-in;
  color: var(--light-color);
}
.fixed-bottom::before {
  position: absolute;
  content: " ";
  z-index: -1;
  top: 0;
  left: 0;
  background-color: rgba(48, 183, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  opacity: 0.6;
  animation: pulse 1.5s ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.7);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
.modal-contact .modal-dialog {
  max-width: 85%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  width: -moz-max-content;
  width: max-content;
}
.modal-contact .modal-dialog .modal-content {
  flex-direction: row;
  overflow: hidden;
  border: none;
}
.modal-contact .modal-dialog .modal-content .form-contain {
  width: 40%;
  padding: 1.5rem;
}
.modal-contact .modal-dialog .modal-content .form-contain .col-md-6 {
  width: 100%;
}
.modal-contact .modal-dialog .modal-content .form-contain .form-wrap .form-group {
  margin-bottom: 10px;
}
.modal-contact .modal-dialog .modal-content .form-contain .form-wrap .form-group input {
  height: 50px;
}
.modal-contact .modal-dialog .modal-content .form-contain .form-wrap .form-group textarea {
  height: 120px;
  padding-top: 10px;
}
.modal-contact .modal-dialog .modal-content .image {
  width: 60%;
}
.modal-contact .modal-dialog .modal-content .image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: inherit;
}

.iti--allow-dropdown {
  width: 100%;
}

.iti__flag-container {
  height: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
  background: var(--primary-color);
  color: var(--light-color);
}

.iti__arrow {
  display: none;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background: var(--primary-color);
}

.iti__country-list {
  white-space: normal;
  min-width: 300px;
}

@media (max-width: 575px) {
  .section-title.style2 span,
  .content-title.style2 span {
    letter-spacing: 5px;
  }
}
@media (max-width: 767px) {
  p,
  input,
  textarea {
    font-size: 14px;
  }
  .pb-50 {
    padding-bottom: 25px;
  }
  .link, .btn, select, button {
    font-size: 14px;
  }
  .btn {
    padding: 12px 25px 12px;
  }
  .content-wrapper {
    margin-top: 63px;
  }
  .back-to-top {
    font-size: 20px;
    width: 35px;
    height: 35px;
    line-height: 32px;
    right: 10px;
  }
  .back-to-top i {
    font-size: 18px;
  }
  .section-title.style2 span, .section-title.style3 span, .content-title.style2 span, .content-title.style3 span {
    font-size: 12px;
  }
  .section-title.style1 span, .content-title.style1 span {
    font-size: 14px;
  }
  .section-title h2, .content-title h2 {
    font-size: 24px;
    line-height: 1.3;
  }
  .section-title p, .content-title p {
    width: 100%;
  }
  .owl-carousel .owl-nav {
    direction: ltr;
  }
  .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
  }
  .owl-carousel .owl-nav button.owl-prev i, .owl-carousel .owl-nav button.owl-next i {
    font-size: 14px;
  }
  .project-result {
    margin-bottom: 20px;
  }
  article h2,
  article h3 {
    margin-bottom: 15px;
  }
  article p {
    margin-bottom: 15px;
  }
  article ol,
  .service-desc ol,
  .project-desc ol {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  article h1 {
    font-size: 24px;
  }
  article h2 {
    font-size: 22px;
  }
  article h3 {
    font-size: 20px;
  }
  article h4 {
    font-size: 18px;
  }
  article h5 {
    font-size: 17px;
  }
  article h6 {
    font-size: 16px;
  }
  article ol li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  article ol li:last-child {
    margin-bottom: 0;
  }
  article ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  article ul li:last-child {
    margin-bottom: 0;
  }
  .sidebar .sidebar-widget {
    padding: 20px;
  }
  .sidebar .sidebar-widget h4 {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-title h2,
  .content-title h2 {
    font-size: 35px;
  }
  .content-wrapper {
    margin-top: 63px;
  }
}
@media (max-width: 991.98px) {
  .modal-contact .modal-dialog {
    max-width: 90%;
    margin: 1rem 0;
  }
  .modal-contact .modal-dialog .modal-content .form-contain {
    width: 100%;
    padding: 1rem;
  }
  .modal-contact .modal-dialog .modal-content .form-contain h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .modal-contact .modal-dialog .modal-content .form-contain .form-wrap .form-group {
    margin-bottom: 15px;
  }
  .modal-contact .modal-dialog .modal-content .form-contain .form-wrap .form-group input {
    height: 40px;
  }
  .modal-contact .modal-dialog .modal-content .form-contain .form-wrap .form-group textarea {
    height: 80px;
  }
  .modal-contact .modal-dialog .modal-content .form-contain .btn {
    padding: 8px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-title h2,
  .content-title h2 {
    font-size: 35px;
  }
  .content-wrapper {
    margin-top: 83px;
  }
}
@media (max-width: 1199px) {
  .sidebar {
    margin: 50px 0 0;
  }
}
@media (min-width: 1200px) {
  .content-title p {
    padding-right: 25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .section-title h2,
  .content-title h2 {
    font-size: 40px;
  }
}
.theme-light .footer-logo .logo-dark,
.theme-light .navbar-brand .logo-dark {
  display: none !important;
}
.theme-light .footer-logo .logo-light,
.theme-light .navbar-brand .logo-light {
  display: block !important;
}
.theme-light .hero-wrap .hero-image img.dark {
  display: none !important;
}
.theme-light .modal-contact .modal-dialog .modal-content .image img.light {
  display: block !important;
}

.theme-dark body {
  color: rgba(var(--light-color), 0.8);
}
.theme-dark .listing-content .btn.style4 {
  color: var(--primary-color) !important;
}
.theme-dark .footer-logo .logo-light,
.theme-dark .navbar-brand .logo-light {
  display: none !important;
}
.theme-dark .footer-logo .logo-dark,
.theme-dark .navbar-brand .logo-dark {
  display: block !important;
}
.theme-dark .td-cod,
.theme-dark .td-cod.bg-seashell {
  background-color: #111 !important;
}
.theme-dark body,
.theme-dark .bg-white {
  background-color: rgba(0, 0, 0, 0.7) !important;
}
.theme-dark .bg-seashell {
  background-color: #454449 !important;
}
.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4,
.theme-dark h5,
.theme-dark h6,
.theme-dark h3 a,
.theme-dark a {
  color: var(--light-color) !important;
}
.theme-dark p,
.theme-dark span,
.theme-dark .form_group label,
.theme-dark article ol li {
  color: rgba(var(--light-color), 0.8) !important;
}
.theme-dark h3:hover a,
.theme-dark a:hover,
.theme-dark article p strong {
  color: var(--primary-color) !important;
}
.theme-dark article {
  border-color: rgba(255, 255, 255, 0.19);
}
.theme-dark .footer-wrap .footer-widget .footer-widget-title::after {
  background-color: var(--light-color);
}
.theme-dark .link.style1 {
  color: var(--primary-color) !important;
}
.theme-dark .btn.style3 {
  background-color: var(--light-color);
  border: 1px solid transparent;
  color: #002172;
}
.theme-dark .btn.style3:after {
  background: var(--primary-color);
}
.theme-dark .btn.style3:hover {
  border-color: transparent;
}
.theme-dark .form-wrap .form-group input,
.theme-dark .form-wrap .form-group textarea {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--light-color);
}
.theme-dark .sidebar .sidebar-widget {
  box-shadow: none;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.theme-dark .owl-carousel .owl-dots button.owl-dot span:after {
  background-color: var(--light-color);
}
.theme-dark .owl-carousel .owl-dots button.owl-dot.active span:after {
  background: var(--primary-color);
}
.theme-dark .property-slider-two.owl-carousel .owl-dots .owl-dot span {
  background-color: var(--light-color);
}
.theme-dark .property-slider-two.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--primary-color);
}
.theme-dark .iti__country-list {
  background-color: rgba(0, 0, 0, 0.7);
}
.theme-dark .modal-contact .modal-dialog .modal-content .form-contain {
  background: rgba(0, 0, 0, 0.768627451);
}
.theme-dark .modal-contact .modal-dialog .modal-content .image img.dark {
  display: block !important;
}

.no-subscription-border {
  border: 2px solid var(--primary-color);
}
.no-subscription-border .fas.fa-exclamation-circle {
  font-size: 2rem;
}

.right-flags {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
}
.right-flags * {
  display: inline-block;
  margin-top: 0.5rem;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  border-radius: 0.25rem;
  padding: 0.2rem 0.6rem;
}
.right-flags .property-status {
  background-color: #8B0000;
  color: var(--light-color);
  font-size: 1rem;
}
.right-flags .property-exclusive {
  background: var(--primary-color);
  color: #fff;
  font-size: 1rem;
}
.right-flags .property-pending {
  background-color: #ff3434;
  color: #fff;
  font-size: 1rem;
}
.right-flags .property-code {
  background-color: #cfd64e;
  color: #fff;
  font-size: 1rem;
}
.right-flags .property-discount {
  background: var(--secondary-color);
  color: #fff;
  font-size: 1rem;
}

[dir=rtl] .right-flags {
  position: absolute;
  top: 15px;
  left: unset;
  right: 15px;
  z-index: 1;
}
[dir=rtl] .fa-chevron-right:before {
  content: "\f053";
}
[dir=rtl] .section-title.style2 span,
[dir=rtl] .content-title.style2 span {
  letter-spacing: 0;
}
[dir=rtl] .sort-by .dropdown-toggle::after {
  right: unset;
  left: 15px;
}

.nav.nav-pills {
  display: flex;
  flex-wrap: nowrap;
}
.nav.nav-pills:before, .nav.nav-pills:after {
  display: none;
}
.nav.nav-pills .nav-item {
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  float: none;
  cursor: pointer;
}
.nav.nav-pills .nav-item a {
  padding: 10px 15px;
  font-size: 17px;
  background: rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.7);
  text-transform: capitalize;
}
@media (max-width: 992px) {
  .nav.nav-pills .nav-item a {
    padding: 5px 10px;
  }
}
.nav.nav-pills .nav-item.active a, .nav.nav-pills .nav-item:hover a {
  background: var(--primary-color) !important;
  color: var(--light-color) !important;
}
@media (max-width: 991.98px) {
  .nav.nav-pills {
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  .nav.nav-pills .nav-item {
    width: -moz-max-content;
    width: max-content;
    white-space: nowrap;
    margin: 10px 10px 10px 0;
  }
}

.primaryLabel {
  color: white;
  margin-top: 15px;
}

.loginBtn {
  background: var(--primary-color) !important;
  border: 1px solid transparent !important;
  color: #fff;
  padding: 1px 12px !important;
}
.loginBtn:hover {
  background-color: transparent !important;
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

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

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

.breadcrumb-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  background: var(--secondary-color);
}
.breadcrumb-wrap .breadcrumb-title {
  position: relative;
  z-index: 1;
  width: 100%;
}
.breadcrumb-wrap .breadcrumb-title h2 {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 15px;
  color: var(--light-color);
}
.breadcrumb-wrap .breadcrumb-title .breadcrumb-menu li {
  display: inline-block;
  position: relative;
  color: var(--light-color);
  font-weight: 500;
}
.breadcrumb-wrap .breadcrumb-title .breadcrumb-menu li:after {
  content: "/";
  font-size: 16px;
  margin: 0 10px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb-wrap .breadcrumb-title .breadcrumb-menu li:first-child {
  margin-left: 0;
}
.breadcrumb-wrap .breadcrumb-title .breadcrumb-menu li:first-child a {
  padding-left: 0;
}
.breadcrumb-wrap .breadcrumb-title .breadcrumb-menu li:last-child {
  margin-right: 0;
  color: var(--primary-color);
}
.breadcrumb-wrap .breadcrumb-title .breadcrumb-menu li:last-child:after {
  display: none;
}
.breadcrumb-wrap .breadcrumb-title .breadcrumb-menu li a {
  font-size: 16px;
  line-height: 22px;
  display: inline-block;
  padding: 0px 5px;
  transition: 0.3s;
  position: relative;
  color: var(--light-color);
}
.breadcrumb-wrap .breadcrumb-title .breadcrumb-menu li a:hover {
  color: var(--primary-color);
}
.breadcrumb-wrap .breadcrumb-title .breadcrumb-menu li:last-child a:after {
  display: none;
}

.resale-card {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
  height: 100%;
}
.resale-card .property-img {
  overflow: hidden;
  position: relative;
  height: 250px;
  display: block;
}
.resale-card .property-img img {
  transition: 0.4s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.resale-card .property-img .right-flags {
  position: absolute;
  top: 15px;
  left: 15px;
}
.resale-card .property-img .right-flags * {
  display: inline-block;
  margin-top: 0.5rem;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  border-radius: 0.25rem;
  padding: 0.2rem 0.6rem;
}
.resale-card .property-img .right-flags .property-status {
  background-color: #8B0000;
  color: var(--light-color);
  font-size: 1rem;
}
.resale-card .property-img .right-flags .property-exclusive {
  background: var(--primary-color);
  color: #fff;
  font-size: 1rem;
}
.resale-card .property-img .right-flags .property-pending {
  background-color: #ff3434;
  color: #fff;
  font-size: 1rem;
}
.resale-card .property-img .right-flags .property-code {
  background-color: #cfd64e;
  color: #fff;
  font-size: 1rem;
}
.resale-card .property-img .right-flags .property-discount {
  background: var(--secondary-color);
  color: #fff;
  font-size: 1rem;
}
.resale-card .property-price {
  font-weight: 700;
  margin: 0;
}
.resale-card .property-price span {
  margin-left: 3px;
  font-size: 14px;
  font-weight: 400;
}
.resale-card .property-info {
  padding: 25px 25px;
  height: calc(100% - 250px);
  display: flex;
  flex-direction: column;
}
.resale-card .property-info .property-status-wrap {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.resale-card .property-info .property-status-wrap .property-price {
  color: var(--primary-color);
  margin: 0;
}
.resale-card .property-info .property-status-wrap .property-state i {
  color: var(--primary-color);
  position: relative;
  top: 1px;
  margin-right: 6px;
}
.resale-card .property-info h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 15px;
}
.resale-card .property-info h3 a:hover {
  color: var(--primary-color);
}
.resale-card .property-info p {
  margin: 0 0 20px;
}
.resale-card .property-info p i {
  position: relative;
  top: 2px;
  color: var(--primary-color);
  font-size: 15px;
  margin-right: 5px;
}
.resale-card .property-info .property-meta-info {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: center;
  margin-top: auto;
  border: 1px solid rgba(0, 0, 0, 0.09);
}
.resale-card .property-info .property-meta-info li {
  width: 30.33%;
  padding: 10px 5px;
  position: relative;
  border-right: 1px solid rgba(0, 0, 0, 0.09);
  text-align: center;
  font-size: 15px;
}
.resale-card .property-info .property-meta-info li:last-child {
  width: 36.33%;
  border-right: none;
}
.resale-card .property-info .property-meta-info li i {
  color: var(--primary-color);
  position: relative;
  top: 1px;
  font-size: 14px;
  margin-right: 5px;
}

.theme-dark .resale-card {
  background-color: #454449 !important;
}
.theme-dark .resale-card .property-info .property-meta-info {
  border-color: var(--light-color);
}
.theme-dark .resale-card .property-info .property-meta-info li {
  border-color: var(--light-color);
}

.property-search-form .form-group-wrap {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  border-radius: 5px;
}
.property-search-form .form-group-wrap .form-group {
  width: 32%;
}
.property-search-form button {
  width: 200px;
  display: block;
  padding: 15px;
  margin: 1rem auto 0;
}
.property-search-form .rang-title {
  margin-bottom: 50px;
  color: var(--light-color);
  font-size: 2rem;
}
.property-search-form .noUi-horizontal .noUi-handle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: -10px;
}
.property-search-form .noUi-horizontal .noUi-handle:after, .property-search-form .noUi-horizontal .noUi-handle:before {
  display: none;
}
.property-search-form .noUi-target {
  height: 8px;
}
.property-search-form .noUi-connect {
  background: var(--primary-color);
}
.property-search-form .rang-contain {
  max-width: 90%;
  margin: auto;
}

.sidebar .sidebar-widget .property-search-form .form-group-wrap {
  flex-wrap: wrap;
}
.sidebar .sidebar-widget .property-search-form .form-group-wrap .form-group {
  width: 100%;
}
.sidebar .sidebar-widget .property-search-form label {
  color: rgba(0, 0, 0, 0.7);
}
.sidebar .sidebar-widget .property-search-form button {
  width: 100%;
}

@media (max-width: 991.98px) {
  .property-search-form .form-group-wrap {
    flex-direction: column;
  }
  .property-search-form .form-group-wrap .form-group {
    width: 100%;
  }
  .property-search-form #slider-range {
    width: 90%;
    margin: auto;
  }
  .property-search-form button {
    width: 100%;
    border-radius: 0 0 5px 5px;
  }
  .property-search-form .noUi-tooltip {
    font-size: 13px;
  }
}
.sort-by {
  width: 100%;
  position: relative;
}
.sort-by .dropdown-toggle {
  background-color: var(--light-color);
  color: rgba(0, 0, 0, 0.7);
  border: 1px solid #000;
  border-radius: 5px;
  width: 100%;
  text-align: initial;
  padding: 0.5rem 1rem;
  position: relative;
}
.sort-by .dropdown-toggle::after {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.sort-by .dropdown-menu {
  width: 100%;
  inset: unset !important;
  transform: none !important;
  min-width: unset !important;
  padding: 0;
}
.sort-by .dropdown-menu .dropdown-item {
  padding: 0.8rem 1rem;
}
.sort-by .dropdown-menu .dropdown-item.active {
  background: var(--primary-color);
}
.sort-by .dropdown-menu .dropdown-item:active {
  background-color: transparent;
}

.theme-dark .sort-by .dropdown-menu .dropdown-item {
  color: rgba(0, 0, 0, 0.7) !important;
}

.page-nav {
  text-align: center;
}
.page-nav li {
  margin: 0 5px;
  display: inline-block;
}
.page-nav li a, .page-nav li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.7;
  color: #666666;
  background: #f5f5f5;
  text-align: center;
  transition: 0.4s;
}
.page-nav li a i, .page-nav li span i {
  font-size: 14px;
  position: relative;
  color: var(--secondary-color);
  transition: 0.4s;
}
.page-nav li a.active, .page-nav li a:hover, .page-nav li span.active, .page-nav li span:hover {
  color: var(--light-color);
  opacity: 1;
  background: var(--primary-color);
  border-color: transparent;
}
.page-nav li a.active i, .page-nav li a:hover i, .page-nav li span.active i, .page-nav li span:hover i {
  color: var(--light-color);
}
.page-nav li.active span {
  color: var(--light-color);
  opacity: 1;
  background: var(--primary-color);
  border-color: transparent;
}
.page-nav li.active span i {
  color: var(--light-color);
}
.page-nav li.disabled span {
  cursor: not-allowed;
  color: #666666;
  background: #f5f5f5;
}

@media (max-width: 575px) {
  .page-nav li a, .page-nav li span {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .page-nav li a i, .page-nav li span i {
    font-size: 13px;
  }
}
.page-wrapper {
  overflow: visible !important;
}
/*# sourceMappingURL=resale.css.map */
