@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Poppins:200,300,400,400i,500,600,700i&amp;display=swap");

:root {
  --main-color-one: #fdb404;
  --main-color-two: #FF6E63;
  --heading-color: #101425;
  --paragraph-color: #212121;
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --body-font-size: 15px;
  --line-height30: 1.8;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: var(--body-font);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

.btn-yellow {
  background: #fdb404;
  color: #fff;
}

.btn-mob {
  margin-top: 10px;

}

@media screen and (min-width: 575px) {
  .btn-mob {
    display: none !important;
  }
}

.gt-logo {
    width: 100%;
    max-width: 120px;
}

.copy-right p{
  color: white;
}

.hotel-harmony {
  text-align: center;
}

.hotel {
  color: white;
  font-weight: 700;
  font-size: 12px;
}

.harmony {
  font-weight: 800;
  color: #fdb404;
  font-size: 27px;
  font-family: fangsong;
}

.logo li {
  text-align: center;
  list-style-type: none;
  line-height: 16px;
}

@media screen and (max-width:767px) {
  .harmony {
    font-size: 19px;
  }

  .hotel {
    font-size: 9px;
  }
  
  .footer-area .logo{
      margin-bottom: 12px;
  }
}

header {
  background: #fdb404;
}

/* Top Header */
.top-header {
  width: 100%;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
}

/* Inner container flex */
.top-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

/* Left & Right */
.header-left,
.header-right {
  display: flex;
  align-items: center;
}

.header-left a,
.header-right a {
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Colors */
.header-left a {
  color: #111111;
}

.header-right a {
  color: #111111;
}

/* Hover */
.top-header a:hover {
  text-decoration: underline;
}

/* 📱 Mobile Responsive */
@media (max-width: 576px) {
  .top-header-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .header-left,
  .header-right {
    justify-content: center;
  }
}

body {
  margin: 0;
  color: var(--paragraph-color);
  overflow-x: hidden;
  font-family: var(--body-font);
  line-height: var(--line-height30);
  font-size: var(--body-font-size);
}

h1 {
  font-size: 70px;
  line-height: 1.2333333333333333;
}

h2{
  font-size: 45px;
  line-height: 1.3380952380952381;
}

h3 {
  font-size: 32px;
  line-height: 1.3833333333333333;
}

h4 {
  font-size: 24px;
  line-height: 1.3380952380952381;
}

h5 {
  font-size: 20px;
  line-height: 1.3380952380952381;
}

h6 {
  font-size: 16px;
  line-height: 1.2380952380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 10px;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

a:hover {
  color: var(--main-color-one);
}

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li {
  list-style: none;
  margin-bottom: 1rem;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

button:hover,
button:active,
button:focus {
  outline: 0;
}

/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

.no-gutter.row,
.no-gutter.container,
.no-gutter.container-fluid {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.no-gutter>[class^="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.no-gutter[class^="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.h-100vh {
  height: 100vh;
}

code {
  color: #faa603;
}

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

.check-list li {
  display: block;
  padding-left: 20px;
  position: relative;
  z-index: 0;
}

.check-list li:after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'fontawesome';
  content: "\f105";
  color: var(--main-color);
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  clear: both;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.comment-navigation .nav-previous>a,
.posts-navigation .nav-previous>a,
.post-navigation .nav-previous>a,
.comment-navigation .nav-next>a,
.posts-navigation .nav-next>a,
.post-navigation .nav-next>a {
  -webkit-transition: .3s ease-in;
  -o-transition: .3s ease-in;
  transition: .3s ease-in;
}

.comment-navigation .nav-previous:hover>a,
.posts-navigation .nav-previous:hover>a,
.post-navigation .nav-previous:hover>a,
.comment-navigation .nav-next:hover>a,
.posts-navigation .nav-next:hover>a,
.post-navigation .nav-next:hover>a {
  color: var(--main-color);
}

.comment-list li {
  list-style: none;
}

.h-100vh {
  height: 100vh;
}

.position-relative {
  position: relative;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 15px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
.border-bottom-yellow {
  border-bottom: 1px solid var(--main-color-one);
}

.bg-gray {
  background: #F6F7FB;
}

.pd-top-30 {
  padding-top: 30px;
}

.pd-top-40 {
  padding-top: 40px;
}

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

.pd-top-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pd-top-70 {
  padding-top: 70px;
}

.pd-top-80 {
  padding-top: 80px;
}

.pd-top-85 {
  padding-top: 85px;
}

.pd-top-90 {
  padding-top: 90px;
}

.pd-top-92 {
  padding-top: 92px;
}

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

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

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

.pd-bottom-65 {
  padding-bottom: 65px;
}

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

.pd-bottom-80 {
  padding-bottom: 80px;
}

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

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

.pd-bottom-92 {
  padding-bottom: 92px;
}

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

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

.mg-top-100 {
  margin-top: 100px;
}

.mg-bottom-100 {
  margin-bottom: 100px;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  float: left;
  clear: both;
  margin-right: 20px;
}

.alignright {
  float: right;
  clear: both;
  margin-left: 20px;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

.alignfull {
  margin: 1.5em 0;
  max-width: 100%;
}

.alignwide {
  max-width: 1100px;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
  clear: both;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*----------------------------------------
    # Unit test
------------------------------------------*/
.wp-link-pages a {
  margin: 0 5px;
  -webkit-transition: .3s ease-in;
  -o-transition: .3s ease-in;
  transition: .3s ease-in;
}

.wp-link-pages {
  margin-bottom: 30px;
  margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
  border: 1px solid #e2e2e2;
  padding: 5px 15px;
  display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
  background-color: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}

.wp-link-pages span:first-child {
  margin-right: 5px;
}

dl,
ol,
ul {
  padding-left: 15px;
}

.post-password-form input {
  display: block;
  border: 1px solid #e2e2e2;
  height: 50px;
  border-radius: 3px;
  padding: 0 20px;
}

.post-password-form label {
  font-weight: 600;
  color: #333;
}

.post-password-form input[type=submit] {
  width: 100px;
  height: 50px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  -webkit-transition: .3s ease-in;
  -o-transition: .3s ease-in;
  transition: .3s ease-in;
}

.post-password-form input[type=submit]:hover {
  background-color: #121A2F;
}

.footer-widget .table td,
.footer-widget .table th {
  padding: 0.50rem !important;
}

@media only screen and (max-width: 1100px) {
  h4 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 991px) {
  h4 {
    font-size: 20px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1360px;
  }
}

/*---------------------------------------
    ## Button
---------------------------------------*/
.btn {
  height: 48px;
  line-height: 48px;
  padding: 0 30px;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  border: 0;
  font-size: 14px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 600;
}

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

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: scale(1, 0.5);
  -ms-transform: scale(1, 0.5);
  transform: scale(1, 0.5);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.btn:hover:before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.btn .right {
  padding-left: 12px;
  font-size: 16px;
}

.btn .left {
  padding-right: 15px;
}

.btn-yellow {
  background: var(--main-color-one);
  color: #fff;
}

.btn-yellow:hover,
.btn-yellow:focus {
  color: #fff;
  box-shadow: 0 10px 20px 0 #e4292c63;
}

.btn-orange {
  background: var(--main-color-two);
  color: #fff;
}

.btn-orange:hover,
.btn-orange:focus {
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--main-color-one);
}

.btn-white:hover,
.btn-white:focus {
  color: var(--main-color-one);
}

.readmore-btn {
  font-size: 14px;
  font-weight: 600;
  position: relative;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-left: -15px;
}

.readmore-btn i {
  position: absolute;
  right: -32px;
  font-size: 24px;
  top: -1px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.readmore-btn:hover {
  color: var(--main-color-one);
}

.readmore-btn:hover i {
  right: -36px;
}

/*---------------------------------------
    ## owl-controls
---------------------------------------*/
.owl-controls .owl-prev {
  height: 50px;
  width: 50px;
  border: 1px solid rgba(112, 112, 112, 0.17);
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  font-size: 28px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.owl-controls .owl-prev:hover {
  border-color: #FFEEE2;
  -webkit-box-shadow: 0px 2px 12px rgba(255, 233, 209, 0.75);
  box-shadow: 0px 2px 12px rgba(255, 233, 209, 0.75);
  color: var(--main-color-one);
}

.owl-controls .owl-next {
  height: 50px;
  width: 50px;
  border: 1px solid rgba(112, 112, 112, 0.17);
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  font-size: 28px;
  padding-left: 5px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.owl-controls .owl-next:hover {
  border-color: #FFEEE2;
  -webkit-box-shadow: 0px 2px 12px rgba(255, 233, 209, 0.75);
  box-shadow: 0px 2px 12px rgba(255, 233, 209, 0.75);
  color: var(--main-color-one);
}

.slider-control-top .owl-prev {
  position: absolute;
  right: 70px;
  top: -100px;
}

.slider-control-top .owl-next {
  position: absolute;
  right: 0;
  top: -100px;
}

/*------------------------------------------------
    ## Section title
------------------------------------------------*/
.section-title {
  margin-bottom: 45px;
  position: relative;
}

.section-title h1 img,
.section-title h2 img,
.section-title h3 img,
.section-title h4 img,
.section-title h5 img {
  margin-right: 15px;
  margin-top: -5px;
}

.section-title .sub-title {
  font-weight: 600;
  font-family: var(--body-font);
  margin-bottom: 20px;
  color: var(--main-color-one);
  font-size: 20px;
}

.section-title p {
  padding-top: 8px;
}

.section-title .btn-view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--main-color-one);
  text-decoration: underline;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
}

.section-title .btn-view-all-2 {
  font-weight: 600;
  color: var(--main-color-one);
  padding-right: 30px;
  position: relative;
  margin-top: 14px;
  display: inline-block;
}

.section-title .btn-view-all-2 i {
  font-size: 28px;
  position: absolute;
  bottom: -2px;
  right: -3px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.section-title .btn-view-all-2:hover i {
  right: -7px;
}

.section-title .floor-list {
  margin-top: 33px;
}

.section-title .btn {
  margin-top: 22px;
}

.section-title.pd-left {
  padding-left: 100px;
}

.filter-title {
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--heading-color);
  margin-bottom: 15px;
}

/*------------------------------------------------
    ## Back Top
------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 35px;
  height: 35px;
  color: #fff;
  background-color: var(--main-color-one);
  text-align: center;
  line-height: 32px;
  border-radius: 10px;
  z-index: 99;
  font-size: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: none !important;
  -webkit-animation: backto-top-bounce 4s infinite ease-in-out;
  animation: backto-top-bounce 4s infinite ease-in-out;
}

@-webkit-keyframes backto-top-bounce {
  0% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-5px);
  }

  50% {
    -webkit-transform: translateY(8px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-5px);
  }
}

@keyframes backto-top-bounce {
  0% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-5px);
  }

  50% {
    -webkit-transform: translateY(8px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-5px);
  }
}

/*-----------------------------------------
    ## Preloader Css
-------------------------------------------*/
.pre-wrap {
  position: fixed;
  content: '';
  -webkit-transform: translate(-100%, -240%);
  -ms-transform: translate(-100%, -240%);
  transform: translate(-100%, -240%);
  font-size: 62px;
}

.preloader-inner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999999999;
  background-color: rgba(2, 48, 71, 0.8);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.preloader-inner .cancel-preloader {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.preloader-inner .cancel-preloader a {
  background-color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--main-color);
  width: 200px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 30px;
  display: block;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.preloader-inner .cancel-preloader a:hover {
  background-color: var(--heading-color);
  color: #fff;
}

.spinner {
  margin: 120px auto;
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
  -webkit-animation: sk-rotate 2.0s infinite linear;
  animation: sk-rotate 2.0s infinite linear;
}

.dot1,
.dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: var(--main-color-one);
  border-radius: 100%;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes sk-bounce {

  0%,
  100% {
    -webkit-transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {

  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/*-----------------------------------------
    ##social-icon
-------------------------------------------*/
.social-icon {
  margin-bottom: 0;
  padding-left: 0;
}

.social-icon li {
  display: inline-block;
  margin: 0 5px;
}

.social-icon li a {
    display: inline-block;
    text-align: center;
    line-height: 38px;
    color: #ffb304;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    padding: 10px;
}

.social-icon li a:hover {
    color: #efb306;
}
.social-icon li .facebook {
  color: #3b5999;
}

.social-icon li .twitter {
  color: #55acee;
}

.social-icon.style-two li a {
  height: 60px;
  width: 60px;
  border-radius: 4px;
  line-height: 58px;
  font-size: 20px;
  border: 0;
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
}

/*-----------------------------------------
    ## call to action
-------------------------------------------*/
.call-to-action {
  border-radius: 10px;
  position: relative;
  background-size: cover;
  background-position: center center;
}

.call-to-action:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #00000082;
  opacity: 0.9;
  border-radius: 10px;
}

.call-to-action .cta-content {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 60px 50px;
}

.call-to-action .cta-content .title {
  display: inline-block;
  float: left;
  margin-bottom: 0;
  font-weight: 700;
  color: #fff;
}

.call-to-action .cta-content .btn {
  float: right;
}

/*-----------------------------------------
    ## rld-list-style
-------------------------------------------*/
.rld-list-style {
  margin: 0;
  padding: 0;
}

.rld-list-style li {
  list-style: none;
  margin-bottom: 18px;
}

.rld-list-style li img {
  margin-right: 6px;
}

.rld-list-style li i {
  margin-right: 6px;
  background: rgba(253, 169, 79, 0.1);
  color: var(--main-color-one);
  height: 24px;
  width: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 4px;
  padding-left: 2px;
}

.rld-list-style li:last-child {
  margin-bottom: 0;
}

/*-----------------------------------------
    ## slick slider extra
-------------------------------------------*/
.rld-slider-extra {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.rld-slider-extra .first {
  font-size: 45px;
  font-weight: 700;
  color: var(--main-color-one);
  height: 55px;
  width: 55px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.rld-slider-extra .devider {
  font-size: 45px;
  color: var(--main-color-one);
}

.rld-slider-extra .last {
  font-size: 24px;
  font-weight: 500;
  color: #FFFFFF59;
}

.ap2-list-progress {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--main-color-one);
  background-image: -webkit-gradient(linear, left top, right top, from(var(--heading-color)), to(var(--heading-color)));
  background-image: -webkit-linear-gradient(left, var(--heading-color), var(--heading-color));
  background-image: -o-linear-gradient(left, var(--heading-color), var(--heading-color));
  background-image: linear-gradient(to right, var(--heading-color), var(--heading-color));
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s ease-in-out;
  -o-transition: background-size .4s ease-in-out;
  transition: background-size .4s ease-in-out;
}

.rld-control-nav {
  width: 65px;
}

.rld-control-nav .slick-arrow {
  height: 50px;
  width: 50px;
  border: 1px solid rgba(112, 112, 112, 0.17);
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  font-size: 28px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: rgba(0, 0, 0, 0.3);
  display: inline-block !important;
}

.rld-control-nav .slick-arrow:before {
  display: none;
}

.rld-control-nav .slick-arrow:hover {
  border-color: var(--main-color-one);
  -webkit-box-shadow: 0px 2px 12px rgba(255, 233, 209, 0.75);
  box-shadow: 0px 2px 12px rgba(255, 233, 209, 0.75);
  color: var(--main-color-one);
}

/*-----------------------------------------
    ## Breadcumb 
------------------------------------------*/
.breadcrumb-area {
  padding: 186px 0 112px;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
}

.breadcrumb-area:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 100, 0)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 100, 0));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 100, 0));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 100, 0));
  height: 65%;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  z-index: 0;
  opacity: 0.5;
}

.breadcrumb-area .breadcrumb-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb-area .page-title {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.breadcrumb-area .page-list {
  margin: 0;
  padding: 0;
  color: #fff;
}

.breadcrumb-area .page-list li {
  font-size: 16px;
  font-weight: 200;
  list-style: none;
  display: inline-block;
  position: relative;
  padding-left: 8px;
}

.breadcrumb-area .page-list li:after {
  position: absolute;
  left: 0;
  top: 1px;
  content: "/";
  font-family: 'fontawesome';
}

.breadcrumb-area .page-list li:first-child {
  padding-left: 0;
}

.breadcrumb-area .page-list li:first-child:after {
  display: none;
}

/*-----------------------------------------
    ## shape-image-list
------------------------------------------*/
.shape-image-list-wrap img {
  border-radius: 8px;
}

.shape-image-list {
  position: relative;
  display: inline-block;
}

.shape-image-list:after {
  content: '';
  position: absolute;
  height: 205px;
  width: 230px;
  background: var(--main-color-one);
  z-index: -1;
  border-radius: 8px;
}

.shape-image-list.left-top {
  padding: 35px 0 0 35px;
}

.shape-image-list.left-top:after {
  left: 0;
  top: 0;
}

.shape-image-list.right-top {
  padding: 35px 35px 0 0;
}

.shape-image-list.right-top:after {
  right: 0;
  top: 0;
}

.shape-image-list.left-bottom {
  padding: 0 0 35px 35px;
}

.shape-image-list.left-bottom:after {
  left: 0;
  bottom: 0;
}

.shape-image-list.right-bottom {
  padding: 0 35px 35px 0;
}

.shape-image-list.right-bottom:after {
  right: 0;
  bottom: 0;
}

.shape-image-list img {
  border-radius: 8px;
}

.shape-image-list .shadow-img {
  -webkit-box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.2);
}

/*-----------------------------------------
    ## All size bg
------------------------------------------*/
.rld-1-3-bg {
  background-repeat: no-repeat;
  background-position: right;
  background-size: 70% 100%;
}

/*--------------------------------------------------------------
	## Widgets
--------------------------------------------------------------*/
.sitebar .widget {
  margin-bottom: 50px;
}

.widget {
  border: 1px solid rgba(197, 197, 197, 0.5);
  border-radius: 8px;
}

.widget-title {
  font-weight: 700;
  margin-bottom: 16px;
}

.widget_nav_menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.widget_nav_menu ul li {
  list-style: none;
}

.widget_nav_menu ul li a {
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 20px;
  padding: 15px;
}

.widget_nav_menu ul li a:hover {
  color: var(--main-color-one);
}

.widget-subscribe .rld-single-input {
  margin-bottom: 10px;
}

.widget-sidebar-search-wrap {
  padding: 30px;
}

.widget-sidebar-search-wrap .btn-wrap .btn {
  margin-top: 40px;
}

.widget-sidebar-search {
  float: left;
}

.widget-sidebar-search .title {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1;
}

.widget-sidebar-search .price {
  line-height: 1;
  padding-top: 5px;
}

.widget-sidebar-search .btn {
  height: 40px;
  line-height: 40px;
  padding: 0 18px;
}

.widget-sidebar-search .widget-sidebar-item-wrap {
  margin-bottom: 30px;
  display: block;
  float: left;
  width: 100%;
}

.widget-sidebar-search .rld-single-input.left-icon input,
.widget-sidebar-search .rld-single-select .single-select {
  height: 40px;
  line-height: 40px;
}

.widget-sidebar-search .rld-single-input.left-icon:before {
  top: 14px;
  left: 17px;
  background-size: contain;
  height: 13px;
  width: 13px;
}

.widget-sidebar-search .rld-single-select .single-select:before {
  top: 16px;
  height: 9px;
  width: 9px;
  background-size: 100%;
}

/********* widget-owner-info ********/
.widget-owner-info .owner-info {
  border-bottom: 1px solid rgba(197, 197, 197, 0.5);
  padding: 30px 15px 26px 15px;
}

.widget-owner-info .owner-info .thumb {
  border: 1px solid rgba(197, 197, 197, 0.5);
  border-radius: 8px;
  display: inline-block;
  padding: 10px;
  margin-bottom: 15px;
}

.widget-owner-info .owner-info .thumb img {
  border-radius: 6px;
}

.widget-owner-info .owner-info h6 {
  margin-bottom: 0;
}

.widget-owner-info .owner-info .designation {
  font-size: 12px;
}

.widget-owner-info .owner-info p {
  margin-bottom: 0;
  color: var(--main-color-one);
}

.widget-owner-info .owner-info p span {
  color: var(--heading-color);
  margin: 0 6px;
}

.widget-owner-info .contact {
  padding: 27px 30px 30px;
  border-bottom: 1px solid rgba(197, 197, 197, 0.5);
}

.widget-owner-info .contact .rld-single-input {
  margin-bottom: 20px;
}

.widget-owner-info .contact .rld-single-input input {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(197, 197, 197, 0.5);
  padding: 3px 0;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  background: #F6F7FB;
}

.widget-owner-info .contact-info {
  padding: 27px 30px 20px;
}

.widget-owner-info .contact-info .media {
  margin-bottom: 15px;
}

.widget-owner-info .contact-info .media .media-left {
  margin-right: 10px;
}

.widget-owner-info .contact-info .media .media-left i {
  color: var(--main-color-one);
}

.widget-owner-info .contact-info .media .media-body p {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--heading-font);
  color: var(--heading-color);
  margin-bottom: 0;
}

.widget-owner-info .contact-info .media .media-body span {
  font-size: 12px;
}

/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/
.navbar-area {
  padding: 0;
  width: 100%;

  z-index: 9999;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.navbar-area.style-two {
  position: relative;
  height: 95px;
  -webkit-box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
  box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
  background: #fff;
}

.navbar-area .nav-container {
  background-color: transparent;
  padding: 22px 0px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.navbar-area .nav-container .logo {
  border-radius: 7px;
  /* background: #fff; */
  padding: 6px;
}

.navbar-area .nav-container .logo a {
  font-family: var(--body-font);
}

.navbar-area .nav-container .logo a img {
  height: 60px;
  width: auto;
}

div#contact-us {
  background-color: #fdb40414;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
  text-align: right;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
  display: inline-block;
  font-weight: 500;
  line-height: 50px;
  text-transform: capitalize;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a {

  color: white;
  font-weight: 500;
  font-family: var(--heading-font);
}

.navbar-area-fixed.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
  color: #000;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li:hover a {
  color: #111;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
  margin-left: 20px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  position: relative;
  z-index: 0;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  position: absolute;
  right: -3px;
  top: 50%;
  content: '\f0d7';
  font-family: 'fontawesome';
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #fff;
}

.navbar-area-fixed.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  color: #000;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  text-align: left;
  min-width: 210px;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 9;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 4px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.border-bt0 {
  border-bottom: 0px !important;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
  display: block;
  margin-left: 0;
  line-height: 22px;
  font-size: 15px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  color: var(--heading-color);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  font-size: 14px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover {
  background: #FFEEE2;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover a {
  color: var(--main-color-one);
  text-decoration: underline;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:before {
  position: absolute;
  right: 15px;
  top: 50%;
  content: '\f105';
  font-family: 'fontawesome';
  -ms-transform: translateY(-50%);
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
  left: 100%;
  top: 20px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu .sub-menu .sub-menu {
  left: auto;
  right: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
  color: #fff;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav>li {
  padding-right: 15px;
  margin-right: 18px;
}

.navbar-area-fixed {
  background: #fff;
  -webkit-box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
  box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
}

.navbar-nav {
  opacity: 0;
  margin-right: -30px;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu-open {
  opacity: 1;
  margin-right: 0;
  visibility: visible;
}

.bar1 {
  width: 32px;
  height: 2px;
  margin-bottom: 5px;
  position: absolute;
  background: #fff;
  z-index: 9999;
  top: 10px;
  right: -5px;
}

.bar2 {
  width: 24px;
  height: 2px;
  margin-bottom: 5px;
  position: absolute;
  background: #fff;
  z-index: 9999;
  top: 17px;
  right: -5px;
}

.bar3 {
  width: 18px;
  height: 2px;
  margin-bottom: 5px;
  position: absolute;
  background: #fff;
  z-index: 9999;
  top: 24px;
  right: -5px;
}

.responsive-mobile-menu button:focus {
  outline: none;
  border: none;
}

@media only screen and (max-width: 991px) {
  .navbar-area .nav-container {
    padding: 5px 15px;
  }

  .nav-right-part {
    margin-right: 50px;
  }

  .nav-right-part .btn {
    height: 40px;
    line-height: 39px !important;
    padding: 0 15px;
    font-size: 11px;
  }

  .nav-right-part .btn .right {
    padding-left: 5px;
    font-size: 13px;
  }

  .navbar-area .nav-container {
    position: relative;
    z-index: 0;
  }

  .navbar-area .nav-container .navbar-toggler {
    padding: 0px;
  }

  .navbar-area .nav-container .navbar-collapse {
    margin-top: 13px;
    padding-right: 25px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    margin-top: 20px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: block;
    text-align: left;
    line-height: 30px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    display: block;
    color: #000;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
    border-bottom: none;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
    margin-left: 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    top: 25px;
    right: 0px !important;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: initial;
    display: block;
    width: 100%;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    height: auto;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    background-color: transparent;
    border-radius: 10px;
    padding: 0px;
    border-bottom: none;
    display: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    visibility: visible;
    opacity: 1;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
    content: "\f107";
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    padding: 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
    top: 30px;
    color: #fff;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
    border-top: none;
  }
}

@media only screen and (min-width: 992px) {
  .navbar-area-fixed .nav-container {
    padding: 10px 0px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
}

.toggle-btn {
  left: auto;
  right: 0;
  position: absolute;
  width: 40px;
  height: 40px;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  border: 0;
  background: transparent;
  top: 0px;
}

.toggle-btn .icon-left {
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  height: 2px;
  width: 11px;
  top: 18px;
  background-color: #fff;
  left: 7px;
}

.toggle-btn .icon-left:before {
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #fff;
  content: "";
  top: -7px;
  left: 0;
}

.toggle-btn .icon-left:after {
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #fff;
  content: "";
  top: 7px;
  left: 0;
}

.toggle-btn .icon-left:hover {
  cursor: pointer;
}

.toggle-btn .icon-right {
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  height: 2px;
  width: 11px;
  top: 18px;
  background-color: #fff;
  left: 18px;
}

.toggle-btn .icon-right:before {
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #fff;
  content: "";
  top: -7px;
  left: 0;
}

.toggle-btn .icon-right:after {
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #fff;
  content: "";
  top: 7px;
  left: 0;
}

.navbar-area-fixed .toggle-btn .icon-left,
.navbar-area-fixed .toggle-btn .icon-left:before,
.navbar-area-fixed .toggle-btn .icon-left:after,
.navbar-area-fixed .toggle-btn .icon-right,
.navbar-area-fixed .toggle-btn .icon-right:before,
.navbar-area-fixed .toggle-btn .icon-right:after {
  background-color: #000;
}

.toggle-btn .icon-right:after {
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #fff;
  content: "";
  top: 7px;
  left: 0;
}

.toggle-btn .icon-right:hover {
  cursor: pointer;
}

.toggle-btn.open .icon-left {
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  background: transparent;
}

.toggle-btn.open .icon-left:before {
  -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(2px, 1px);
  -ms-transform: rotate(45deg) scaleX(1.4) translate(2px, 1px);
  transform: rotateZ(45deg) scaleX(1.4) translate(2px, 1px);
}

.toggle-btn.open .icon-left:after {
  -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -1px);
  -ms-transform: rotate(-45deg) scaleX(1.4) translate(2px, -1px);
  transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -1px);
}

.toggle-btn.open .icon-right {
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  background: transparent;
}

.toggle-btn.open .icon-right:before {
  -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 1px);
  -ms-transform: rotate(-45deg) scaleX(1.4) translate(-2px, 1px);
  transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 1px);
}

.toggle-btn.open .icon-right:after {
  -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -1px);
  -ms-transform: rotate(45deg) scaleX(1.4) translate(-2px, -1px);
  transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -1px);
}

.toggle-btn:hover {
  cursor: pointer;
}

.nav-right-part-mobile {
  display: none;
}

.nav-right-part .btn {
  line-height: 46px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .navbar-area .nav-container {
    max-width: 95%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    font-size: 16px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    right: -9px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
    margin-left: 5px;
  }

  .navbar-nav li {
    padding-right: 10px !important;
  }

  .navbar-area .nav-container {
    max-width: 95%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .responsive-mobile-menu {
    display: block;
    width: 100%;
    position: relative;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1199px) {
  .margin-xlt-80 {
    margin-top: 0px;
  }

  .contact-widget .contact_info_list li.single-info-item .details {
    padding-left: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-area .logo {
    padding-top: 0px !important;
  }

  .widget ul {
    text-align: left;
  }

  .navbar-collapse {
    background: #fff;
    padding-left: 35px;
    margin-top: 0px;
    width: 100%;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    right: 20px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    margin-bottom: 20px;
  }

  .navbar-area {
    padding-bottom: 0px;
  }

  .bar1,
  .bar2,
  .bar3 {
    background: #fff;
  }

  .navbar-area .nav-container {
    max-width: 90%;
  }

  .party-box-wrapper {
    padding: 50px 0px;
  }

  .party-box-wrapper .party-box-content h4 {
    font-size: 30px;
    line-height: 45px;
  }

  .footer-area .copyright-area-inner {
    padding: 20px;
  }

  .navbar-expand-lg .navbar-collapse {
    margin-top: 0px;
  }

  .contact-widget .contact_info_list li.single-info-item .details {
    padding-left: 25px;
  }

  .footer-area .footer-top .widget.widget_nav_menu ul li a {
    font-size: 14px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    padding: 0 0 0 20px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    padding: 12px 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child a {
    padding-bottom: 3px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover i {
    opacity: 0;
    margin-right: -18px;
  }

  .nav-right-part-mobile {
    display: block;
  }

  .nav-right-part-desktop {
    display: none;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover {
    background: none;
  }
}

/* Tablet Layout wide: 767px. */
@media only screen and (max-width: 767px) {
  .logo-wrapper.mobile-logo {
    display: block;
    width: 100%;
  }

  .responsive-mobile-menu {
    display: block;
    width: 100%;
    position: relative;
  }

  .responsive-mobile-menu .navbar-toggler {
    position: absolute;
    left: calc(100% - 130px);
    top: 10px;
  }

  .table-responsive {
    display: block !important;
  }

  .btn-custom-default,
  .btn-custom-white {
    font-size: 14PX;
    line-height: 33px;
    padding: 6px 20px;
  }

  .navbar-area .nav-container {
    max-width: 100%;
  }

  .logo img {
    margin-left: 10px;
  }

  .navbar-area .logo {
    padding-top: 0px !important;
  }
}

/* medium tablet layout 599px */
@media only screen and (max-width: 575px) {
  .navbar-area .nav-container {
    margin: 0px 0px;
  }

  .navbar-area .logo {
    padding-top: 10px;
  }

  .widget.footer-widget .subscribe-form.subscribe-form-style2 .form-control {
    padding: 15px 20px;
  }

  .widget.footer-widget .subscribe-form.subscribe-form-style2 .btn {
    padding: 15px 20px;
  }

  .search-popup .search-form {
    min-width: 350px;
  }
}

@media only screen and (max-width: 375px) {

  .btn-custom-default,
  .btn-custom-white {
    padding: 5px 18px;
  }

  .search-popup .search-form .form-group .form-control,
  .search-popup .search-form .submit-btn {
    height: 45px;
  }

  .search-popup .search-form {
    min-width: 300px;
  }
}

@media only screen and (max-width: 320px) {
  .search-popup .search-form {
    min-width: 265px;
  }

  .responsive-mobile-menu .navbar-toggler {
    left: calc(100% - 95px);
  }
}

/*----------------------------------------------
    ## Banner
----------------------------------------------*/

.banner-inner-wrap {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.banner-inner-area {
  position: relative;
}

.banner-inner {
  padding: 25px;
  background: #00000082;
  backdrop-filter: blur(5px);
}

.banner-inner .sub-title {
  color: var(--paragraph-color);
  margin-bottom: 22px;
}

.banner-inner .content {
  margin-top: 20px;
  margin-bottom: 0;
}

.banner-inner .banner-btn-wrap {
  margin-top: 19px;
}

.banner-inner .btn {
  height: 55px;
  line-height: 55px;
}

.banner-inner .video-play-btn {
  height: 55px;
  width: 55px;
  line-height: 52px;
  text-align: center;
  border-radius: 6px;
  display: inline-block;
  border: 2px solid #D4D4D4;
  font-size: 20px;
  color: var(--main-color-one);
}

.banner-inner .rld-banner-search {
  margin-top: 33px;
}

.thumb-wrap {
  position: absolute;
  bottom: 0;
}

/******* banner tab style *****/

.hero-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-area {
  /*  background-image: url(../img/banner/ladakh.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; */
  inset: 0px;
  position: absolute;
  z-index: 1;
}

.banner-area img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner-area .overlay {
  background-color: #0000003d;
  /* backdrop-filter: blur(3px); */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*     z-index: -1;*/
}

.zoom_animation {
  animation: zoom-animation 20s ease-out infinite alternate;
}

@keyframes zoom-animation {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.banner-area .banner-search-wrap {
  margin-top: 24px;
}

.rld-banner-tab {
  border-bottom: 0;
}

.rld-banner-tab .nav-item {
  margin-bottom: 0;
}

.rld-banner-tab .nav-item a {
  border: 0;
  border-radius: 5px 5px 0 0;
  height: 50px;
  line-height: 50px;
  padding: 0 35px;
  margin-right: 8px;
  position: relative;
  display: block;
  letter-spacing: 0.4px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.rld-banner-tab .nav-item a:hover,
.rld-banner-tab .nav-item a:focus,
.rld-banner-tab .nav-item a.active {
  background: var(--main-color-one);
  color: #fff;
}

.rld-banner-tab .nav-item:last-child {
  margin-bottom: 0;
}

.navbar-area-3 {
  background: #fff;
}

.banner-search {
  margin-top: 80px;
}

/*-------------------------------------------------
    ##Footer
---------------------------------------------------*/
.footer-area {
  /*  background: #EBEEF3;
  padding-top: 50px;
  padding-bottom: 25px;
  z-index: 1;
  position: relative; */
  z-index: 9;
  font-weight: 500;
  position: relative;
  background: url(../img/footer-image.html) #fcfcfc;
  background-repeat: repeat-x;
  background-position: bottom;
  background-color: #000000;
}


.footer-area .widget {
  border: 0;
}

.footer-area .footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.247);
  padding: 22px 0px;
}

.footer-area .footer-logo img {
  max-width: 200px;
  border-radius: 7px;
  padding: 7px 12px;

}

.footer-area .footer-social span {
  margin-right: 20px;
  color: white;
}

.footer-area .footer-social .social-icon {
  display: inline-block;
}

.footer-area .footer-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.247);
}

.footer-area .copy-right {
  padding-top: 25px;
  padding-bottom: 25px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-area .copy-right a {
  font-weight: 600;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.footer-area .copy-right a:hover {
  color: var(--main-color-one);
}

.footer-area.style-two {
  margin-top: 200px;
}

.subscribe-area {
  background: #fff;
  -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 90px 25px 100px 25px;
  margin-bottom: 100px;
  margin-top: -300px;
}

.subscribe-area .rld-single-input {
  padding-right: 190px;
}

.subscribe-area p {
  margin-bottom: 42px;
}

.subscribe-area input {
  background: #E5E5E5;
  border: 0 !important;
}

.subscribe-area input::-webkit-input-placeholder {
  color: var(--heading-color);
}

.subscribe-area input:-ms-input-placeholder {
  color: var(--heading-color);
}

.subscribe-area input::-ms-input-placeholder {
  color: var(--heading-color);
}

.subscribe-area input::placeholder {
  color: var(--heading-color);
}

.subscribe-area button {
  position: absolute;
  right: 0;
  top: 0;
  height: 48px;
  border: 0;
  padding: 0 42px;
  font-weight: 600;
  background: var(--main-color-one);
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

/*----------------------------------------------
    ## All section style
----------------------------------------------*/
.city-intro-area {
  background-size: cover;
  background-position: bottom;
}

.follow-dream-area .thumb {
  border-radius: 10px;
  overflow: hidden;
  margin-right: 30px;
}

/*----------------------------------------------
    ## search page 
----------------------------------------------*/
.search-page-area {
  overflow: hidden;
}

.search-page-search-wrap {
  width: 45%;
  float: left;
  padding-right: 30px;
  position: fixed;
  z-index: 0;
}

.search-page-search-wrap #gmap {
  height: 100vh;
  margin-top: 90px;
}

.search-page-right-wrap {
  width: 55%;
  float: right;
}

.rld-search-page-tab {
  border-bottom: 0;
}

.rld-search-page-tab .nav-item {
  margin-bottom: 0;
}

.rld-search-page-tab .nav-item a {
  border: 0;
  padding: 0;
  text-align: center;
  border-radius: 5px;
  height: 48px;
  width: 48px;
  line-height: 52px;
  margin-right: 8px;
  position: relative;
  display: block;
  background: #FFEEE2;
  color: var(--main-color-one);
  font-family: var(--heading-font);
  font-weight: 600;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 18px;
}

.rld-search-page-tab .nav-item a:hover,
.rld-search-page-tab .nav-item a:focus,
.rld-search-page-tab .nav-item a.active {
  background: var(--main-color-one);
  color: #fff;
}

.rld-search-page-tab .nav-item:last-child {
  margin-bottom: 0;
}

.search-page-right-side {
  margin-right: 50px;
  padding-top: 135px;
}

.search-page-right-side .section-title .title {
  font-size: 24px;
}

.search-page-right-side .single-feature .thumb img {
  width: 100%;
}

.search-page-right-side .rld-main-search {
  padding: 20px 25px 4px 25px;
  margin-bottom: 30px;
  border-radius: 6px;
}

.search-page-right-side .rld-main-search .colx {
  padding: 0 10px;
  display: inline-block;
}

.search-page-right-side .rld-main-search .col1 {
  width: 30%;
}

.search-page-right-side .rld-main-search .col2 {
  width: 19%;
}

.search-page-right-side .rld-main-search .col3 {
  width: 17%;
}

.search-page-map .single-feature {
  margin-bottom: 0;
}

.gm-style .gm-style-iw-c {
  padding: 16px;
}

.gm-ui-hover-effect {
  background: var(--main-color-one) !important;
  top: 0 !important;
  right: 0 !important;
  width: 30px !important;
  height: 30px !important;
  z-index: 9999 !important;
  border-radius: 0 10px 0 10px !important;
  opacity: 1 !important;
}

/*----------------------------------------------
    ## single popular-post
----------------------------------------------*/
.post-and-search {
  -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
  padding: 25px 50px 40px 170px;
  position: relative;
  overflow: hidden;
  margin-top: -74px;
  background: #fff;
  border-radius: 10px;
}

.news-search-btn {
  position: absolute;
  left: 52px;
  top: 50%;
  margin-top: -15px;
  cursor: pointer;
}

.news-search-btn i {
  font-size: 30px;
  color: var(--main-color-one);
}

.news-search-box {
  position: absolute;
  width: 0;
  left: -10px;
  top: 0;
  height: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 3;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.news-search-box input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: 0 !important;
  border-right: 1px solid var(--main-color-one);
  padding: 0 30px;
  margin-right: 70px;
  font-size: 18px;
  color: rgba(16, 20, 37, 0.5);
  font-weight: 600;
}

.news-search-box input::-webkit-input-placeholder {
  color: rgba(16, 20, 37, 0.5);
  font-weight: 600;
}

.news-search-box input:-ms-input-placeholder {
  color: rgba(16, 20, 37, 0.5);
  font-weight: 600;
}

.news-search-box input::-ms-input-placeholder {
  color: rgba(16, 20, 37, 0.5);
  font-weight: 600;
}

.news-search-box input::placeholder {
  color: rgba(16, 20, 37, 0.5);
  font-weight: 600;
}

.news-search-box button {
  font-size: 30px;
  color: var(--main-color-one);
  position: absolute;
  right: 28px;
  top: 50%;
  margin-top: -28px;
  background: 0;
  border: 0;
  cursor: pointer;
}

.news-search-box.news-search-box-show {
  width: 100%;
  left: 0;
}

.popular-post-slider {
  position: relative;
}

.popular-post-slider:before {
  content: '';
  position: absolute;
  left: -50px;
  bottom: 8px;
  height: 100%;
  width: 1px;
  background: var(--main-color-one);
}

.single-popular-post .media-left {
  margin-right: 15px;
}

.single-popular-post .media-left img {
  border-radius: 4px;
}

.single-popular-post .media-body h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-popular-post .media-body span {
  font-size: 12px;
}

.single-popular-post:hover .media-body h6 {
  color: var(--main-color-one);
  text-decoration: underline;
}

/*----------------------------------------------
    ## service-slider-2
----------------------------------------------*/
.service-area-about {
  background-repeat: no-repeat;
  background-position: right;
  background-size: 44% 100%;
}

.service-slider-2 .single-intro {
  padding: 0 30px 35px 30px;
  margin: 0 15px;
  position: relative;
}

.service-slider-2 .single-intro:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 29px;
  bottom: 0;
  width: 100%;
  height: 88%;
  -webkit-box-shadow: 0px 2px 12px #97A1B21A;
  box-shadow: 0px 2px 12px #97A1B21A;
  z-index: -1;
  background: #fff;
}

.service-slider-2 .single-intro .thumb {
  height: 60px;
  width: 60px;
  line-height: 58px;
}

/*----------------------------------------------
    ## news-details-author-social
----------------------------------------------*/
.news-details-author-social {
  margin-top: -30px;
}

.news-details-author-social .author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news-details-author-social .author img {
  border-radius: 6px;
  height: 60px;
  width: 60px;
}

.news-details-author-social .author p {
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-bottom: 0;
  margin-left: 15px;
  font-size: 13px;
}

/*----------------------------------------------
    ## news-details-wrap
----------------------------------------------*/
.news-details-wrap p {
  margin-bottom: 23px;
}

.news-details-wrap .title1 {
  margin-bottom: 20px;
}

.news-details-wrap .title2 {
  margin-bottom: 25px;
  font-size: 18px;
}

.news-details-wrap .news-details-thumb {
  padding-top: 10px;
  margin-bottom: 35px;
}

/*----------------------------------------------
    ## contact page
----------------------------------------------*/
.contact-form-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  -webkit-box-shadow: 0 0px 10px 0 #0000005c;
  box-shadow: 0 0px 10px 0 #0000005c;
  position: relative;
}

.contact-form-wrap .rld-single-input {
  margin-top: 10px;
}

.contact-form-wrap button {
  margin-top: 23px;
  padding: 0 45px;
  letter-spacing: 0.5px;
}

.contact-form-wrap .social-icon {
  margin-top: 20px;
}

.contact-form-bg input,
.contact-form-bg textarea {
  background: #F3F3F3;
}

.contact-page-map {
  line-height: 1;
}

.contact-page-map iframe {
  height: 360px;
}

.single-contact-info {
  margin-bottom: 30px;
}

.single-contact-info p i {
  margin-right: 10px;
  color: var(--main-color-one);
  font-size: 18px;
}

.register-page-area {
  margin-top: -50px;
}

.rld-comment-form .single-page-small-title {
  margin-bottom: 22px;
}

.rld-comment-form .rld-single-input {
  margin-bottom: 20px;
}

/*----------------------------------------------
    ## property-details-slider
----------------------------------------------*/
.property-details-slider {
  margin-bottom: 40px;
}

.property-details-slider .thumb img {
  border-radius: 6px;
}

.property-details-slider .owl-prev {
  position: absolute;
  right: 90px;
  bottom: 25px;
  border: 1px solid #fff;
  color: #fff;
}

.property-details-slider .owl-next {
  position: absolute;
  right: 25px;
  bottom: 25px;
  border: 1px solid #fff;
  color: #fff;
}

.property-details-slider-info h3 {
  font-weight: 600;
}

.property-details-slider-info h3 span {
  color: var(--main-color-one);
  margin-right: 20px;
  font-weight: 700;
}

.property-details-slider-info del {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
}

.single-property-info h5 {
  font-weight: 500;
}

.single-property-info p i {
  margin-right: 10px;
  color: var(--main-color-one);
}

.single-property-info p img {
  margin-right: 11px;
}

.property-news-single-card {
  padding-bottom: 50px;
  margin-bottom: 95px;
}

.property-news-single-card h4 {
  font-weight: 700;
  margin-bottom: 20px;
}

.property-news-single-card p {
  margin-bottom: 20px;
}

.property-news-single-card a {
  font-weight: 600;
  color: var(--main-color-one);
  line-height: 1;
}

.property-news-single-card iframe {
  width: 100%;
  height: 330px;
}

.property-news-single-card.style-two {
  padding-bottom: 43px;
}

/*----------------------------------------------
    ## error page
----------------------------------------------*/
.error-page {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF4EF), to(#fff));
  background-image: -webkit-linear-gradient(#FFF4EF, #fff);
  background-image: -o-linear-gradient(#FFF4EF, #fff);
  background-image: linear-gradient(#FFF4EF, #fff);
}

.error-page a {
  color: var(--main-color-one);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 18px;
  position: absolute;
  left: 12px;
}

.error-page a:hover {
  text-decoration: underline;
}

.error-page h2 {
  font-size: 300px;
  font-weight: 700;
  color: #5B6880;
  background: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--main-color-one);
}

.error-page .error-page-wrap {
  display: inline-block;
  position: relative;
}

/*----------------------------------------------
    ## add-new-property-area
----------------------------------------------*/
.add-new-property-area .rld-single-select .single-select {
  padding: 0 35px 0 10px;
  border: 0 !important;
  border-bottom: 1px solid #D4D4D4 !important;
  border-radius: 0;
}

.add-new-property-area .rld-single-input textarea {
  padding: 10px;
  border: 0 !important;
  border-bottom: 1px solid #D4D4D4 !important;
  border-radius: 0;
}

.add-property-btn-wrap .btn {
  height: 44px;
  line-height: 44px;
  padding: 0 20px;
}

/*----------------------------------------------
    ## main search
----------------------------------------------*/
.main-search-area {
  margin-top: -50px;
}

.rld-main-search {
  padding: 50px 30px 35px 30px;
  background: #fff;
  -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0 6px 6px 6px;
}

.rld-main-search .rld-single-input,
.rld-main-search .rld-single-select .single-select {
  margin-bottom: 15px;
}

.rld-main-search .btn {
  width: 100%;
}

.rld-single-input {
  position: relative;
}

.rld-single-input input {
  height: 48px;
  line-height: 48px;
  width: 100%;
  padding: 0 20px;
  border: 1px solid #D4D4D4;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 4px;
  font-size: 15px;
}

.rld-single-input input:hover,
.rld-single-input input:active,
.rld-single-input input:focus {
  border: 1px solid var(--main-color-one);
}

.rld-single-input.left-icon:before {
  content: '';
  background-image: url("../img/icons/1.html");
  position: absolute;
  top: 17px;
  background-size: auto;
  height: 17px;
  width: 12px;
  left: 19px;
  background-repeat: no-repeat;
}

.rld-single-input.left-icon input {
  padding-left: 40px;
}

.rld-single-input textarea {
  height: 120px;
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #D4D4D4;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 4px;
  font-size: 15px;
}

.rld-single-input textarea:hover,
.rld-single-input textarea:active,
.rld-single-input textarea:focus {
  border: 1px solid var(--main-color-one);
}

.rld-single-select .single-select {
  height: 48px;
  line-height: 47px;
  width: 100%;
  padding: 0 34px 0 20px;
  border: 1px solid #D4D4D4;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  border-radius: 4px;
}

.rld-single-select .single-select:hover,
.rld-single-select .single-select:active,
.rld-single-select .single-select:focus {
  border: 1px solid var(--main-color-one);
}

.rld-single-select .single-select:after {
  border: 0;
}

.rld-single-select .single-select:before {
  content: '';
  background-image: url("../img/icons/2.html");
  position: absolute;
  top: 19px;
  background-size: auto;
  height: 10px;
  width: 11px;
  right: 14px;
  left: auto;
  background-repeat: no-repeat;
}

.rld-single-select .single-select .list {
  width: 100%;
}

.rld-price-slider-wrap .rld-price-slider,
.rld-price-slider-wrap .rld-size-slider {
  height: 5px;
  background: #FFF0E5;
  border: 0;
  margin: 20px 0 0 0;
}

.rld-price-slider-wrap .ui-slider-handle {
  height: 24px;
  width: 42px;
  background: var(--main-color-one);
  border: 0;
  text-align: center;
  color: #fff;
  border-radius: 30px;
  top: -10px;
  font-size: 13px;
  line-height: 25px;
}

/****** banner-search *******/
.rld-banner-search .rld-single-input input {
  -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  border: 0;
  padding-right: 140px;
}

.rld-banner-search .rld-single-input button {
  position: absolute;
  right: 0;
  top: 0;
  height: 48px;
  line-height: 48px;
  border: 0;
  padding: 0 20px;
  font-weight: 600;
  background: var(--main-color-one);
  color: #fff;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
}

/*---------------------------------------------
    ## Service
---------------------------------------------*/
.single-service {
  -webkit-box-shadow: 0px 2px 12px #97A1B21A;
  box-shadow: 0px 2px 12px #97A1B21A;
  background: #fff;
  padding: 50px 20px 45px 20px;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-service .thumb img {
  width: auto;
}

.single-service .thumb.double-img {
  margin-bottom: 30px;
  position: relative;
}

.single-service .thumb.double-img:before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  right: 0;
  margin: 0 auto;
  width: 58px;
  height: 58px;
  background: #FFF0E1;
  border-radius: 50%;
}

.single-service .thumb.double-img img {
  display: inline-block;
  padding-top: 25px;
  padding-left: 30px;
}

.single-service .details h4 {
  margin-bottom: 20px;
}

/********* service slider area style **********/
.service-slider .single-service .thumb img {
  width: auto;
  position: relative;
}

.service-slider .slick-prev {
  position: absolute;
  top: 50%;
  left: -100px;
  height: 50px;
  width: 50px;
  border: 1px solid rgba(112, 112, 112, 0.17);
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  font-size: 28px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: rgba(112, 112, 112, 0.17);
}

.service-slider .slick-prev:before {
  display: none;
}

.service-slider .slick-prev:hover {
  border-color: #FFEEE2;
  -webkit-box-shadow: 0px 2px 12px rgba(255, 233, 209, 0.75);
  box-shadow: 0px 2px 12px rgba(255, 233, 209, 0.75);
  color: var(--main-color-one);
}

.service-slider .slick-next {
  position: absolute;
  top: 50%;
  right: -100px;
  height: 50px;
  width: 50px;
  border: 1px solid rgba(112, 112, 112, 0.17);
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  font-size: 28px;
  padding-left: 5px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: rgba(112, 112, 112, 0.17);
}

.service-slider .slick-next:before {
  display: none;
}

.service-slider .slick-next:hover {
  border-color: #FFEEE2;
  -webkit-box-shadow: 0px 2px 12px rgba(255, 233, 209, 0.75);
  box-shadow: 0px 2px 12px rgba(255, 233, 209, 0.75);
  color: var(--main-color-one);
}

.service-slider .single-service {
  margin: 10px 15px 10px;
}

.service-slider .single-service:hover {
  margin-top: 0;
}

.service-slider.slick-slider .slick-active .single-service {
  margin: 10px 15px 10px 7px;
  box-shadow: 0 0px 10px 0 #0000005c;
}

.service-slider.slick-slider .slick-active~.slick-active .single-service {
  margin: 10px 15px 10px 15px !important;
}

.service-slider.slick-slider .slick-active~.slick-active~.slick-active .single-service {
  margin: 10px 15px 10px 15px !important;
}

.service-slider.slick-slider .slick-active~.slick-active~.slick-active~.slick-active .single-service {
  margin: 10px 7px 10px 15px !important;
}

.h1-service-slider-area {
  margin-top: -100px;
  z-index: 2;
}

/*---------------------------------------------
    ## Explore
---------------------------------------------*/
.single-explore {
  border-radius: 10px;
  -webkit-box-shadow: 0px 2px 12px #97A1B21A;
  box-shadow: 0px 2px 12px #97A1B21A;
  overflow: hidden;
  margin-bottom: 30px;
}

.single-explore .thumb {
  position: relative;
}

.single-explore .thumb a {
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 4px;
  background: #fff;
  color: #C5C5C5;
  height: 34px;
  width: 34px;
  line-height: 34px;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: 20px 0px 40px rgba(0, 0, 0, 0.3);
  box-shadow: 20px 0px 40px rgba(0, 0, 0, 0.3);
}

.single-explore .details {
  background: #fff;
  padding: 23px 25px;
}

.single-explore .details h4 {
  padding-left: 1px;
}

.single-explore .details .list {
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.single-explore .details .list li {
  display: inline-block;
  list-style: none;
}

.single-explore .details .list li img,
.single-explore .details .list li i {
  margin-right: 4px;
  color: var(--main-color-one);
}

.single-explore .details .list li:first-child {
  margin-right: 20px;
}

.single-explore:hover .thumb a {
  color: var(--main-color-one);
}

/*---------------------------------------------
    ## Feature
---------------------------------------------*/
.single-feature {
  border-radius: 18px;
  /*  overflow: hidden;*/
  margin-bottom: 30px;
  box-shadow: 0px 0px 10px #21252924;
  padding: 15px;
}

.single-feature .thumb {
  position: relative;
}

.single-feature .thumb .pkg-badge {
  background: #fdb404;
  border-radius: 5px;
  padding: 5px 10px;
  color: #fff;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 500;
  text-align: center;
  z-index: 9;
  border: 1px solid #ffffffcf;
  backdrop-filter: blur(10px);
  box-shadow: 0px 0px 7px #21252940;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.single-feature .thumb .offer-badge {
  background: #fdb404;
  border-radius: 5px;
  padding: 5px 10px;
  color: #fff;
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 500;
  text-align: center;
  z-index: 9;
  border: 1px solid #ffffffcf;
  backdrop-filter: blur(10px);
  box-shadow: 0px 0px 7px #21252940;
}

.single-feature .thumb {
  position: relative;
}

.single-feature .thumb a {
  position: absolute;
  left: 0px;
  top: 12px;
  font-size: 18px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  visibility: hidden;
  opacity: 0;
  color: var(--main-color-one);
}

.single-feature .thumb img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
  height: 215px;
  object-fit: cover;
  border-radius: 7px;
}

.single-feature .details {
  background: #fff;
  padding-top: 15px;
  position: relative;
}

.single-feature .details .feature-logo {
  height: 40px;
  width: 40px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  right: 25px;
  top: -25px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  -webkit-box-shadow: 20px 0px 40px rgba(0, 0, 0, 0.3);
  box-shadow: 20px 0px 40px rgba(0, 0, 0, 0.3);
  align-items: center;
  justify-content: center;
}

.single-feature .details .feature-logo img {
  width: auto;
  display: inline-block;
}

.single-feature .details .author {
  font-size: 12px;
}

.single-feature .details .title {
  padding-left: 1px;
  font-weight: 600;
  margin-bottom: 7px;
}

.single-feature .details .price {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 0;
}

.single-feature .details del {
  color: #C3CFE1;
  font-size: 14px;
}

.single-feature .details .info-list {
  padding: 5px 0 0 0;
  margin: 0px 0 10px 0;
  font-size: 14px;
  /*    border-top: 1px solid rgba(112, 112, 112, 0.1);*/
}

.single-feature .details .info-list li {
  display: inline-block;
  list-style: none;
  margin-right: 12px;
}

.single-feature .details .info-list li img,
.single-feature .details .info-list li i {
  margin-right: 4px;
  color: var(--main-color-one);
  width: auto;
  display: inline-block;
}

.single-feature .details .info-list li:last-child {
  margin-right: 0;
}

.single-feature .details .contact-list {
  margin: 0;
  padding: 0;
  width: 100%;
  padding: 15px 0 0 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  border-top: 1px solid rgba(112, 112, 112, 0.1);
}

.single-feature .details .contact-list li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
}

.single-feature .details .contact-list li i {
  color: #fff;
}

.single-feature .details .contact-list li .phone,
.single-feature .details .contact-list li .message {
  height: 36px;
  width: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 4px;
  display: inline-block;
}

.single-feature .details .contact-list li .phone {
  background: #0087ff;
}

.single-feature .details .contact-list li .phone i {
  color: #fff;
}

.single-feature .details .contact-list li .message {
  background: #4caf50f7;
}

.single-feature .details .contact-list li .phone img,
.single-feature .details .contact-list li .message img {
  width: auto;
  display: inline-block;
}

.single-feature .details .contact-list li .btn {
  height: 36px;
  border-radius: 4px;
  line-height: 36px;
  margin-top: -4px;
  padding: 0 20px;
}

.single-feature .details .contact-list li:last-child {
  margin-right: 0;
}

.single-feature:hover .thumb a {
  visibility: visible;
  opacity: 1;
  left: 20px;
}

/*  .single-feature:hover .thumb img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05); }*/
.single-feature .contact-list {
  text-align: center;
}

.single-feature:hover .contact-list {
  visibility: visible;
  opacity: 1;
  bottom: 0px;
  text-align: center;
}

.single-leading-feature {
  margin-bottom: 30px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.single-leading-feature .slf-overlay {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(52%, rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 100, 0)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 52%, rgba(0, 0, 100, 0));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 52%, rgba(0, 0, 100, 0));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 52%, rgba(0, 0, 100, 0));
  height: 70%;
  left: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.single-leading-feature .thumb {
  position: relative;
}

.single-leading-feature .thumb a {
  position: absolute;
  left: 0px;
  top: 12px;
  font-size: 18px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  visibility: hidden;
  opacity: 0;
  color: var(--heading-color);
}

.single-leading-feature .thumb img {
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.single-leading-feature .details {
  padding: 20px 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.single-leading-feature .details .logo {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  right: 25px;
  top: -25px;
  background: #fff;
  border-radius: 50%;
}

.single-leading-feature .details .author {
  font-size: 12px;
}

.single-leading-feature .details .title {
  padding-left: 1px;
  font-weight: 600;
  margin-bottom: 13px;
  color: #fff;
}

.single-leading-feature .details .price {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 0;
  color: #fff;
}

.single-leading-feature .details span {
  color: #fff;
  font-size: 15px;
}

.single-leading-feature:hover .thumb a {
  visibility: visible;
  opacity: 1;
  left: 20px;
}

.single-leading-feature:hover .thumb img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

/*---------------------------------------------
    ## Feature list style
---------------------------------------------*/
.single-feature.style-two {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 30px 0;
  border: 1px solid #CFD3DE;
  border-radius: 7px;
}

.single-feature.style-two .thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 200px;
  border-radius: 5px 0 0 5px;
}

.single-feature.style-two .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  border-radius: 5px 0 0 5px;
}

.single-feature.style-two .details {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  padding: 20px 20px 20px 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-feature.style-two .details .feature-logo {
  left: -26px;
  top: 20px;
}

.single-feature.style-two .details .contact-list {
  position: relative;
  padding: 20px 0 0 0;
  visibility: visible;
  opacity: 1;
  bottom: 0;
  border-top: 0;
}

/*---------------------------------------------
    ## intro
---------------------------------------------*/
.single-intro {
  margin-bottom: 30px;
}

.single-intro .thumb {
  background: var(--main-color-one);
  display: inline-block;
  height: 70px;
  width: 70px;
  line-height: 68px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 25px;
}

.single-intro .thumb img {
  width: auto;
  display: inline-block;
}

.single-intro .text {
  font-size: 45px;
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--main-color-one);
}

.single-intro .details .title {
  margin-bottom: 15px;
  font-weight: 700;
}

.single-intro .details p {
  margin-bottom: 0;
}

.single-intro .details .read-more {
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding-top: 12px;
  display: block;
}

.single-intro .details .read-more:hover {
  color: var(--main-color-one);
  text-decoration: underline;
}

.single-intro.style-two .thumb {
  border-radius: 50%;
  font-size: 26px;
  font-weight: 500;
  font-family: var(--heading-font);
  color: #fff;
}

.single-intro-media {
  background: var(--main-color-one);
  padding: 40px;
  border-radius: 10px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  margin-bottom: 30px;
}

.single-intro-media .media-body {
  padding-left: 30px;
}

.single-intro-media .media-body h4 {
  color: #fff;
  margin-bottom: 11px;
  font-weight: 600;
}

.single-intro-media .media-body p {
  color: #fff;
  margin-bottom: 0;
}

.single-intro-media.single-intro-media-active {
  background: #061B40;
}

/*---------------------------------------------
    ## follow-dream
---------------------------------------------*/
.single-follow-dream {
  margin-bottom: 17px;
}

.single-follow-dream .media-left {
  height: 50px;
  width: 50px;
  border-radius: 4px;
  background: #FFEEE2;
  line-height: 50px;
  text-align: center;
  margin-right: 30px;
  margin-top: 6px;
}

.single-follow-dream .media-left i {
  font-size: 16px;
  color: var(--main-color-one);
}

/*---------------------------------------------
    ## single cat
---------------------------------------------*/
.cat-single {
  border: 1px solid rgba(112, 112, 112, 0.2);
  display: block;
  padding: 50px 10px 40px 10px;
  margin-bottom: 30px;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.cat-single img,
.cat-single i {
  font-size: 46px;
  color: var(--main-color-one);
  margin-bottom: 15px;
}

.cat-single p {
  font-size: 20px;
  color: var(--heading-color);
  margin-bottom: 0;
}

.cat-single:hover {
  -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
}

/*---------------------------------------------
    ## single-floor-list
---------------------------------------------*/
.single-floor-list {
  margin-bottom: 30px;
}

.single-floor-list .media-left {
  background: #FFDEC5;
  border-radius: 5px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--main-color-one);
  margin-right: 15px;
}

.single-floor-list .media-body h6 {
  margin-bottom: 0;
  font-weight: 600;
}

.single-floor-list .media-body p {
  margin-bottom: 0;
  font-size: 14px;
}

/*--------------------------------------------
    ##social-icon
----------------------------------------------*/
.single-city {
  margin-bottom: 30px !important;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.single-city .sc-overlay {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 100, 0)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 100, 0));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 100, 0));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 100, 0));
  height: 90%;
  left: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.single-city .sc-overlay:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 100, 0)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 100, 0));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 100, 0));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 100, 0));
  visibility: hidden;
  opacity: 0;
  height: 100%;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.single-city .thumb img {
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  width: 100%;
}

.single-city.sc-one {
  margin: 70px 0 0 0;
}

.single-city.sc-two {
  margin: 70px 0 0 0;
}

.single-city.sc-three {
  margin: 100px 0 0 0;
}

.single-city .details {
  position: absolute;
  left: 0;
  bottom: 15px;
  text-align: center;
  width: 100%;
  z-index: 3;
}

.single-city .details .title {
  color: #fff;
  margin-bottom: 3px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-city .details .title:hover {
  color: var(--main-color-one);
}

.single-city .details p {
  color: #fff;
  margin-bottom: 0;
  font-size: 14px;
}

.single-city:hover .sc-overlay:after {
  visibility: visible;
  opacity: 0.4;
}

.single-city:hover .thumb img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/*---------------------------------------------
    ## single-team
---------------------------------------------*/
.single-team {
  -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.single-team .thumb {
  overflow: hidden;
}

.single-team .thumb img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-team .team-details {
  padding: 24px 20px 24px 20px;
}

.single-team .team-details h4 {
  margin-bottom: 5px;
}

.single-team .team-details p {
  margin-bottom: 0;
  float: left;
}

.single-team .team-details ul {
  padding: 0;
  display: block;
  float: right;
}

.single-team .team-details ul li {
  list-style: none;
  display: inline-block;
  padding-left: 5px;
}

.single-team:hover .thumb img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

/*---------------------------------------------
    ## single-author
---------------------------------------------*/
.single-author {
  -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 40px 15px 36px 15px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-author .thumb {
  margin-bottom: 15px;
}

.single-author .thumb img {
  border-radius: 50%;
}

.single-author.style-two .thumb {
  border: 1px solid #FFEEE2;
  display: inline-block;
  height: 140px;
  width: 140px;
  line-height: 135px;
  border-radius: 10px;
}

.single-author.style-two .thumb img {
  border-radius: 0;
}

.single-author .author-details h4 {
  margin-bottom: 5px;
  font-weight: 500;
}

.single-author .author-details .view-more {
  margin-bottom: 0;
  font-weight: 600;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-author .author-details .view-more:hover {
  color: var(--main-color-one);
  text-decoration: underline;
}

.single-author:hover {
  -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
}

/*---------------------------------------------
    ## client 
---------------------------------------------*/
.client-slider .thumb img {
  width: auto;
  margin: 0 auto;
}

.client-slider-2 .owl-controls {
  max-width: 280px;
  margin: 0 auto;
  position: relative;
}

.client-slider-2 .owl-nav {
  display: inline-block;
}

.client-slider-2 .owl-nav .owl-prev {
  position: absolute;
  bottom: -10px;
  border: 0;
  left: 0;
}

.client-slider-2 .owl-nav .owl-prev:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.client-slider-2 .owl-nav .owl-next {
  position: absolute;
  bottom: -10px;
  border: 0;
  right: 0;
}

.client-slider-2 .owl-nav .owl-next:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.client-slider-2 .owl-dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #FFEEE2;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: inline-block;
  margin: 0 4px;
}

.client-slider-2 .owl-dot.active {
  width: 30px;
  border-radius: 10px;
  background: var(--main-color-one);
}

.single-client-review .thumb {
  margin-bottom: 33px;
}

.single-client-review .thumb img {
  width: auto;
  margin: 0 auto;
  border-radius: 5px;
}

.single-client-review .review-details p {
  margin-bottom: 25px;
}

.single-client-review .review-details h4 {
  margin-bottom: 0;
}

.client-review-img {
  position: relative;
}

.client-review-img .clr-img {
  position: absolute;
  border-radius: 10px;
  opacity: 0.35;
}

.client-review-img .clr-img1 {
  left: 0;
  top: 0;
}

.client-review-img .clr-img2 {
  left: 200px;
  top: 50%;
  margin-top: -37px;
  height: 50px;
  width: 50px;
}

.client-review-img .clr-img3 {
  left: 40px;
  bottom: 0;
  height: 60px;
  width: 60px;
}

.client-review-img .clr-img4 {
  right: 100px;
  top: 0;
  height: 60px;
  width: 60px;
}

.client-review-img .clr-img5 {
  right: 0;
  bottom: 0;
}

/*----------------------------------------------
    ## Apartments slider
----------------------------------------------*/
.apartments-slider .thumb {
  position: relative;
}

.apartments-slider .thumb .title {
  position: absolute;
  margin-left: -170px;
  top: 60px;
  font-weight: 700;
  z-index: 3;
}

.apartments-slider .thumb img {
  border-radius: 10px;
}

.apartments-slider .thumb:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
  border-radius: 10px;
}

.apartments-slider .details .title {
  display: none;
}

.apartments-slider .details del {
  color: rgba(0, 0, 0, 0.13);
}

.apartments-slider .details h3 {
  font-weight: 600;
  font-size: 32px;
}

.apartments-slider .details .sub-title {
  margin-bottom: 0;
  margin-top: 18px;
}

.apartments-slider .details span i {
  color: var(--main-color-one);
  margin-right: 8px;
}

.apartments-slider .owl-controls {
  max-width: 280px;
  margin: 0 auto;
  position: relative;
  margin-top: 25px;
  margin-bottom: 10px;
}

.apartments-slider .owl-nav {
  display: inline-block;
}

.apartments-slider .owl-nav .owl-prev {
  position: absolute;
  bottom: -10px;
  left: 0;
}

.apartments-slider .owl-nav .owl-prev:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.apartments-slider .owl-nav .owl-next {
  position: absolute;
  bottom: -10px;
  right: 0;
}

.apartments-slider .owl-dots {
  text-align: center;
}

.apartments-slider .owl-dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #FFEEE2;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: inline-block;
  margin: 0 4px;
}

.apartments-slider .owl-dot.active {
  width: 30px;
  border-radius: 10px;
  background: var(--main-color-one);
}

/*----------------------------------------------
    ## Apartments slider 2
----------------------------------------------*/
.apartments-slider-2 .item {
  margin-bottom: 80px;
}

.apartments-slider-2 .thumb img {
  border-radius: 10px;
}

.apartments-slider-2 .details {
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
  padding: 20px 30px 35px;
  position: relative;
}

.apartments-slider-2 .details span {
  font-size: 45px;
  font-weight: 700;
  color: #E2E2E2;
  line-height: 1.2;
}

.apartments-slider-2 .details h6 {
  position: absolute;
  top: 45px;
  left: 32px;
  margin-bottom: 0;
}

.apartments-slider-2 .details p {
  margin-bottom: 30px;
}

.apartments-slider-2 .align-self-end {
  margin-bottom: -80px;
  margin-left: -113px;
}

.ap2-slider-controls {
  margin-bottom: 10px;
}

.ap2-slider-controls .text {
  display: inline-block;
}

.ap2-slider-controls .ap2-list-progress {
  width: 77%;
  display: inline-block;
  margin-right: 50px;
}

.ap2-slider-controls .rld-control-nav {
  display: inline-block;
  position: relative;
}

/*---------------------------------------------
    ## gallery
---------------------------------------------*/
.gallery-thumb {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

/* --------------------------------------------------
	##All filter 
---------------------------------------------------- */
.property-filter-menu {
  margin-bottom: 40px;
}

.property-filter-menu button {
  background: #FFEEE2;
  color: var(--main-color-one);
  height: 52px;
  padding: 0 30px;
  line-height: 52px;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-right: 6px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.property-filter-menu button:hover,
.property-filter-menu button:focus,
.property-filter-menu button.active {
  background: var(--main-color-one);
  color: #fff;
}

/* --------------------------------------------------
	##Blog / News 
---------------------------------------------------- */
.single-news {
  border-radius: 10px;
  -webkit-box-shadow: 0px 2px 12px #97A1B21A;
  box-shadow: 0px 2px 12px #97A1B21A;
  overflow: hidden;
  margin-bottom: 30px;
}

.single-news .details {
  background: #fff;
  padding: 25px 30px 30px;
}

.single-news .details h4 a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-news .details h4 a:hover {
  color: var(--main-color-one);
  text-decoration: underline;
}

.single-news .details p {
  margin-bottom: 25px;
}

.single-news .details .author img {
  margin-right: 15px;
  border-radius: 50%;
}

.single-news .details .author span {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--heading-font);
}

.single-news .details .author .date {
  margin-left: 20px;
}

/*----------------------------------------------
    ## Accordion
----------------------------------------------*/
.single-accordion {
  border: 1px solid #F5F9FF;
  border-radius: 8px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0px 2px 12px #97A1B21A;
  box-shadow: 0px 2px 12px #97A1B21A;
  padding: 25px 30px;
}

.single-accordion .card-header {
  background: transparent;
  border-radius: 0;
  border: 0;
  padding: 0;
}

.single-accordion .card-header h2 button {
  font-size: 18px;
  color: var(--main-color-one);
  width: 100%;
  text-align: left;
  position: relative;
  background: transparent;
  border-radius: 0;
  border: 0;
  padding: 0;
  float: left;
  font-weight: 500;
  padding-right: 20px;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.single-accordion .card-header h2 button:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 12px;
  background: var(--main-color-one);
  top: 50%;
  right: 0;
  opacity: 1;
}

.single-accordion .card-header h2 button:before {
  content: '';
  position: absolute;
  height: 2px;
  width: 12px;
  background: var(--main-color-one);
  top: 50%;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  right: 0;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.single-accordion .card-header h2 button:hover,
.single-accordion .card-header h2 button:focus,
.single-accordion .card-header h2 button:active {
  text-decoration: none;
}

.single-accordion .card-header h2 button.collapsed {
  color: var(--heading-color);
}

.single-accordion .card-header h2 button.collapsed:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  background: var(--heading-color);
}

.single-accordion .card-header h2 button.collapsed:after {
  background: var(--heading-color);
}

.single-accordion .card-body {
  padding: 0;
  margin-top: 20px;
}

/*--------------------------------------------------------------
	## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.comments-area {
  margin-top: 65px;
}

.comments-area .comments-title {
  line-height: 33px;
  margin-bottom: 40px;
  font-family: var(--body-font);
}

.comments-area .comments-title span {
  font-size: 18px;
  line-height: 24px;
}

.comments-area .comment-list .comment-respond {
  margin-bottom: 30px;
}

.comments-area .comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
  margin-bottom: 40px;
}

.comments-area .comment-list li {
  margin-top: 30px;
}

.comments-area .comment-list li:last-child {
  margin-bottom: 0;
}

.comments-area .comment-list li:last-child .single-comment-wrap {
  border: 0;
  padding-bottom: 0;
}

.comments-area .comment-list li ul.children {
  margin: 0;
  padding: 0;
  margin-left: 50px;
  list-style: none;
  list-style-type: none;
}

.comments-area .comment-list li ul {
  list-style: none;
}

.comments-area .comment-list li ul.children {
  margin-left: 50px;
}

.comments-area .comment-list li ul.children li {
  list-style-type: none;
  list-style: none;
}

.comments-area .comment-list li .single-comment-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
  align-self: flex-start;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  padding-bottom: 20px;
}

.comments-area .comment-list li .single-comment-wrap .thumb {
  margin-right: 25px;
  height: 65px;
  width: 65px;
  border-radius: 8px;
}

.comments-area .comment-list li .single-comment-wrap .thumb img {
  border-radius: 8px;
}

.comments-area .comment-list li .single-comment-wrap .date,
.blog-details-page-content-area .comments-area .comment-list li .single-comment-wrap .time {
  display: block;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.14px;
  margin-bottom: 18px;
  color: rgba(66, 84, 134, 0.8);
}

.comments-area .comment-list li .single-comment-wrap .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  overflow: auto;
}

.comments-area .comment-list li .single-comment-wrap .content .title {
  font-size: 16px;
  line-height: 27px;
  font-weight: 600;
  letter-spacing: 0.22px;
  margin-bottom: 5px;
  font-family: var(--body-font);
}

.comments-area .comment-list li .single-comment-wrap .content .comment-content {
  max-width: 620px;
}

.comments-area .comment-list li .single-comment-wrap .content p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  margin-bottom: 15px;
  word-break: break-word;
}

.comments-area .comment-list li .single-comment-wrap .content p:last-child {
  margin-bottom: 0;
}

.comments-area .comment-list li .single-comment-wrap .content .like {
  letter-spacing: 0.3px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  height: 35px;
  line-height: 35px;
  padding: 0 10px;
  font-weight: 600;
  color: var(--heading-color);
}

.comments-area .comment-list li .single-comment-wrap .content .like i {
  font-weight: 700;
  margin-right: 4px;
}

.comments-area .comment-list li .single-comment-wrap .content .reply {
  letter-spacing: 0.3px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  height: 35px;
  line-height: 35px;
  padding: 0 10px;
  font-weight: 600;
  color: var(--heading-color);
}

.comments-area .comment-list li .single-comment-wrap .content .reply span {
  padding-left: 25px;
  padding-right: 0;
}

.comments-area .reply-title,
.comments-area .comment-reply-title {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 20px;
}

.comments-area .form-submit {
  margin-bottom: 0;
}

.comment-form .form-group.textarea .form-control {
  min-height: 160px;
  resize: none;
  line-height: 26px;
}

.comment-form .form-group.textarea .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.comment-form .form-group .form-control {
  height: 50px;
  line-height: 50px;
  border: 1px solid #e2e2e2;
}

.comment-form .submit-btn {
  height: 50px;
  width: auto;
  border-radius: 5px;
  font-weight: 400;
  background-color: var(--main-color-one);
  border: none;
  cursor: pointer;
  -webkit-transition: .3s ease-in;
  -o-transition: .3s ease-in;
  transition: .3s ease-in;
  color: #fff;
}

.comment-form .submit-btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.comments-area .comment-list .children li:last-child {
  margin-bottom: 30px;
}

.comment-form-cookies-consent input[type=checkbox] {
  margin-right: 5px;
}

/* --------------------------------------------------
	## User List
---------------------------------------------------- */
.single-user-list {
  -webkit-box-shadow: 0px 2px 12px #97A1B21A;
  box-shadow: 0px 2px 12px #97A1B21A;
  padding: 40px 18px 32px 18px;
  margin-bottom: 30px;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-user-list .thumb {
  height: 70px;
  width: 70px;
  line-height: 70px;
  background: #FFEEE2;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 25px;
}

.single-user-list .details h4 a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-user-list .details h4 a:hover {
  text-decoration: underline;
}

.single-user-list .details p {
  margin-bottom: 15px;
}

.single-user-list .details span {
  color: var(--main-color-one);
  font-weight: 500;
  font-size: 14px;
}

.single-user-list .details span i {
  margin-right: 8px;
}

.single-user-list .details .phone {
  margin-right: 20px;
}

.single-user-list .details .social-list {
  margin-top: 18px;
}

.single-user-list .details .social-list a {
  font-size: 20px;
  padding: 0 8px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-user-list .details .social-list a:hover {
  color: var(--main-color-one);
}

.single-user-list:hover {
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
}

/* --------------------------------------------------
	## Pricing list
---------------------------------------------------- */
.single-pricing {
  -webkit-box-shadow: 0px 2px 12px #97A1B21A;
  box-shadow: 0px 2px 12px #97A1B21A;
  padding: 40px 15px 40px 15px;
  margin-bottom: 30px;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #fff;
}

.single-pricing .thumb.double-img {
  margin-bottom: 33px;
  position: relative;
}

.single-pricing .thumb.double-img:before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  right: 0;
  margin: 0 auto;
  width: 60px;
  height: 60px;
  background: #FFF0E1;
  border-radius: 50%;
  z-index: 0;
}

.single-pricing .thumb.double-img img {
  display: inline-block;
  padding-top: 16px;
  padding-left: 16px;
  z-index: 1;
  position: relative;
}

.single-pricing .details .title {
  font-weight: 600;
  margin-bottom: 14px;
}

.single-pricing .details .price {
  font-weight: 500;
}

.single-pricing .details h6 {
  margin-bottom: 25px;
}

.single-pricing .details ul {
  margin: 0;
  padding: 0;
}

.single-pricing .details ul li {
  list-style: none;
  margin-bottom: 5px;
}

.single-pricing .details .btn {
  margin-top: 27px;
  letter-spacing: 0.26px;
}

.single-pricing:hover {
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
}

.lnkhigh {
  position: absolute;
  left: -9px;
  top: 10px;
  background: #fdb404;
  padding: 0px 16px;
  font-size: 16px;
  color: #fff;
  border-radius: 7px 0px 0px 0px;
  animation: blink 1s linear infinite;
  z-index: 9;
}

.single-feature .lnkhigh {
  position: absolute;
  left: -9px;
  top: 10px;
  background: #fdb404;
  padding: 0px 7px;
  font-size: 12px;
  color: #fff;
  border-radius: 3px 0px 0px 0px;
  animation: blink 1s linear infinite;
  z-index: 9;
}

.lnkhigh::after {
  border-style: solid;
  border-width: 9px 0px 9px 9px;
  border-color: #fdb404 transparent transparent;
  bottom: -18px;
  content: "";
  left: 0px;
  position: absolute;
}

.lnkhigh i {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(1%, rgba(255, 255, 255, 0.03)), color-stop(30%, rgba(255, 255, 255, 0.85)), color-stop(50%, rgba(255, 255, 255, 0.85)), color-stop(70%, rgba(255, 255, 255, 0.85)), color-stop(71%, rgba(255, 255, 255, 0.85)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1);
  width: 35%;
  height: 100%;
  transform: skew(-10deg, 0deg);
  -webkit-transform: skew(-10deg, 0deg);
  -moz-transform: skew(-10deg, 0deg);
  -ms-transform: skew(-10deg, 0deg);
  -o-transform: skew(-10deg, 0deg);
  animation: move 2s;
  animation-iteration-count: infinite;
  animation-delay: .3s;
  -webkit-animation: move 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-delay: .3s;
  -moz-transform: skew(-10deg, 0deg);
  -moz-animation: move 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-delay: .3s;
  -ms-transform: skew(-10deg, 0deg);
  -ms-animation: move 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-delay: .3s;
  -o-transform: skew(-10deg, 0deg);
  -o-animation: move 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-delay: .3s;
}

@keyframes move {
  0% {
    left: 0;
    opacity: 0
  }

  5% {
    opacity: 0
  }

  48% {
    opacity: .5
  }

  80% {
    opacity: 0
  }

  100% {
    left: 82%
  }
}

@-webkit-keyframes move {
  0% {
    left: 0;
    opacity: 0
  }

  5% {
    opacity: 0
  }

  48% {
    opacity: .5
  }

  80% {
    opacity: 0
  }

  100% {
    left: 82%
  }
}

@-moz-keyframes move {
  0% {
    left: 0;
    opacity: 0
  }

  5% {
    opacity: 0
  }

  48% {
    opacity: .5
  }

  80% {
    opacity: 0
  }

  100% {
    left: 88%
  }
}

@-ms-keyframes move {
  0% {
    left: 0;
    opacity: 0
  }

  5% {
    opacity: 0
  }

  48% {
    opacity: .5
  }

  80% {
    opacity: 0
  }

  100% {
    left: 82%
  }
}

@-o-keyframes move {
  0% {
    left: 0;
    opacity: 0
  }

  5% {
    opacity: 0
  }

  48% {
    opacity: .5
  }

  80% {
    opacity: 0
  }

  100% {
    left: 82%
  }
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 0px solid rgba(0, 0, 0, .2);
  border-radius: 25px;
  outline: 0;
}

.form-header {
  position: relative;
  z-index: 9;
}

.close i {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 14px;
}

.close i {
  color: black;
  font-size: 18px;
  font-weight: normal;
  padding: 8px;
}

.banner-inner .title {
  font-size: 90px;
  text-shadow: 1px 1px 3px #4f4f4f;
  color: #fff;
  font-weight: 900;
}

.banner-inner .sub-title {
  font-size: 15px;
  color: #fff;
  font-weight: normal;
  text-shadow: 1px 1px 3px #4f4f4f;
}

.eventbtn {
  pointer-events: none;
}

.actionbtn {
  position: relative;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color-one);
  border-radius: 7px;
  border: 0;
  color: #fff;
}

.actionbtn:hover {
  /*  box-shadow: 0 0 10px #080808 inset, 0px 1px 0 #3b3b3b;*/

  background: #212121;
  color: #fff;
}

.actionbtn:active {
  /*  box-shadow: 0 0 10px #080808 inset, 0px 1px 0 #3b3b3b;*/
  color: #ffffff;
  background: #080808;
  background: linear-gradient(to bottom, #3b3b3b 0%, #2e2e2e 50%, #141414 51%, #080808 100%);
}

.actionbtn.eventbtn {
  background-color: #212121;
  padding-right: 40px;
  height: 40px;
}

.actionbtn.eventbtn:before {
  content: "";
  width: 0px;
  height: 0px;
  border-radius: 50%;
  position: absolute;
  border: 2px solid #ffffff;
  border-right: 3px solid #27ae60;
  -webkit-animation: rotate360 0.5s infinite linear, exist 0.1s forwards ease;
  animation: rotate360 0.5s infinite linear, exist 0.1s forwards ease;
  top: 50%;
  left: 45%;
}

@-webkit-keyframes rotate360 {
  100% {
    transform: rotate(360deg);
  }
}

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

@-webkit-keyframes exist {
  100% {
    width: 15px;
    height: 15px;
    margin: -8px 5px 0 0;
  }
}

@keyframes exist {
  100% {
    width: 15px;
    height: 15px;
    margin: -8px 5px 0 0;
  }
}

.banner-content {
  position: relative;
  padding: 50px 0 50px 0;
  z-index: 1;
  width: 100%;
}

.overlay {
  background-color: #01101a6e;
  /* backdrop-filter: blur(3px); */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*    z-index: -1;*/
}

/*.banner-content * {*/
/*  color: #ffffff;*/
/*}*/

.banner-content h1 {
  color: #ffffff;
  font-size: 50px;
  line-height: 70px;
  font-weight: 900;
  font-family: sans-serif;
  text-transform: capitalize;
}

.banner-content h1 span {
  background: white;
  color: transparent;
  background-clip: text;
}

.banner-content h5 {
  font-size: 16px;
}

.banner-content p {
  color: #ffffff;
  text-shadow: 2px 1px 3px #00000078;
  margin-top: 15px;
  font-size: 14px;
}

.banner-content h4 {
  color: #ffffff;
  text-shadow: 2px 1px 3px #00000078;
  margin-top: 20px;
  font-size: 17px;
  line-height: 18px;
}

.banner-content .banner-btn {
  margin-left: -10px;
  margin-right: -10px;
}

.banner-content .banner-btn a {
  margin: 10px;
}

.contact-from-wrap {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  -webkit-box-shadow: 0px 0px 10px #00000030;
  -moz-box-shadow: 0px 0px 10px #00000030;
  -ms-box-shadow: 0px 0px 10px #00000030;
  -o-box-shadow: 0px 0px 10px #00000030;
  box-shadow: 0px 0px 10px #00000030;
  background: #fff;
  position: relative;
}

.form_header {
  border-radius: 7px 7px 0px 0px;
}

.contact-from-wrap .form_header h2 {
  margin-bottom: 0;
  text-transform: capitalize;
  color: #000000;
  margin: 0;
  padding: 15px;
  font-size: 16px;
  font-family: "Popins", sans-serif;
  font-weight: 700;
  text-align: center;
  background: #fff;
  border-radius: 25px;
  line-height: 26px;
  padding-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-from {
  background: #fff;
  padding: 0px 25px 25px 25px;
  border-radius: 0 0 25px 25px;
}

.banner-content .contact-from-wrap {
  background: #ffffffb5;
  backdrop-filter: blur(10px);
  color: #212121 !important;
}

.banner-content .contact-from-wrap .form_header h2 {
  padding-top: 50px;
  background: transparent;
  color: #212121 !important;
}

.banner-content .contact-from {
  background: transparent;
}

.featured-ul {
  margin-top: 10px;
  display: flex;
  justify-content: start;
}

.featured-ul .featured-icon {
  width: 100%;
  max-width: 50px;
}

.featured-ul ul {
  margin-bottom: 0px;
  margin: inherit;
  display: table;
  padding: 0px;
  width: 60%;
}

.featured-ul ul li {
  float: left;
  display: inline;
  text-align: center;
  width: 25%;
  padding: 0px 15px;
  margin-bottom: 15px;
}

.featured-ul ul li a {
  background: #ffffff45;
  width: 100%;
  height: 90px;
  display: block;
  padding: 18px 2px 10px 2px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  line-height: 24px;
  border: 1px solid #ffffff;
  backdrop-filter: blur(10px);
}

.featured-ul ul li a img {
  display: table;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 5px;
  width: 36px;
}

.Inclusion-list .icon-title {
  padding: 0;
  font-size: 14px;
  margin-bottom: 7px;
  font-weight: 700;
  font-family: system-ui !important;
  color: #223645;
}

.pkg-desc {
  height: 60px !important;
  overflow-y: auto !important;
  width: 100%;
}

.Inclusion-list .row h6.Incl-lt-sb-t {
  font-size: 14px;
  font-family: system-ui !important;
  display: flex;
  margin: 2px;
  font-weight: 600;
}

.Inclusion-list .row h6.Incl-lt-sb-t figure {
  margin-bottom: 0;
}

.Inclusion-list .row h6.Incl-lt-sb-t figure img {
  width: 12px;
  margin-right: 10px;
}

.sclr-style::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  border-radius: 10px;
}

.sclr-style::-moz-scrollbar {
  width: 4px;
  height: 4px;
  border-radius: 10px;
}

.sclr-style::-webkit-scrollbar-track {
  background-color: #0a6db136;
  border-radius: 10px;
  ;
}

.sclr-style::-moz-scrollbar-track {
  background-color: #0a6db136;
  border-radius: 10px;
}

.sclr-style::-webkit-scrollbar-thumb {
  background: #0a6db1;
  border-radius: 10px;
  height: 10px;
  transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.sclr-style::-moz-scrollbar-thumb {
  background: #0a6db1;
  border-radius: 10px;
  height: 10px;
  transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.sclr-style::-webkit-scrollbar-thumb:hover {
  background: #fc6b4d;
  transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.sclr-style::-moz-scrollbar-thumb:hover {
  background: #fc6b4d;
  transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.two_buttons_footer {
  display: none;
}

@media screen and (max-width: 1200px) {
  .single-feature .thumb .offer-badge {
    font-size: 12px;
  }
}

@media screen and (max-width: 991px) {
  .banner-content .banner-title {
    font-size: 50px;
  }

  .banner-content h1 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 800;
  }

  .featured-ul ul li {
    width: 48%;
  }
}

@media screen and (max-width: 767px) {
    .hero-section {
        height: auto !important;
    }
    
    .banner-content .contact-from-wrap {
        margin: 28px 0px;
    }
    
  .banner-content .banner-title {
    font-size: 40px;
  }

  .two_buttons_footer {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
    justify-content: space-between;

  }

  .two_buttons_footer a.btn.btn-yellow {
    width: 49%;
    padding: 8px 0;
    height: 48px;
    font-size: 14px;
    line-height: 35px;
    margin-bottom: 10px;
    margin-left: 15px;
    margin-right: 7px;
  }

  .two_buttons_footer a.wp.btn.btn-primary {
    width: 49%;
    margin: 0;
    padding: 7px 0;
    font-size: 14px;
    line-height: 35px;
    background: #1bb348;
    border: 0;
    margin-bottom: 10px;
    margin-left: 7px;
    margin-right: 15px;
  }
}

@media screen and (max-width: 575px) {
  .banner-content {
    padding: 100px 0 50px 0;
  }

  .banner-content .banner-title {
    font-size: 30px;
  }

  .banner-content .banner-btn {
    margin-left: -5px;
    margin-right: -5px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .banner-content .banner-btn a {
    padding: 10px 15px;
    text-align: center;
    margin: 5px;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
  }
}

.itnry {
  margin: 0;
  list-style-type: none;
  border-bottom: solid 1px #e3e3e3;
  border-top: 1px solid #e3e3e3;
  padding: 5px 0;
  display: flex;
  justify-content: center;
}

.itnry li {
  padding: 5px;
  margin: 7px;
  list-style-type: none;
  display: inline-block;
  width: 25%;
  text-align: center;
  font-size: 13px;
  color: #0f4174;
  background: #ddd;
  background: #f8f8f8;
  border: 0.5px solid #e9e3e3;
  border-radius: 7px;
}

.itnry li:first-child {
  margin-left: 0;
}

.itnry li:last-child {
  margin-right: 0;
}

.itnry li figure,
.itnry li p {
  margin-bottom: 0px;
  color: #000;
  font-size: 11px;
  font-weight: 500;
}

.itnry li figure img {
  width: 40px;
  height: 40px;
}

span.ribbon-left:before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0px;
  width: 0;
  height: 0;
  border-bottom: 20px solid transparent;
  border-top: 0 solid transparent;
  border-left: 0px;
  border-right: 8px solid #fdb404;
  z-index: 0;
}

span.ribbon-left:after {
  content: "";
  position: absolute;
  left: -7px;
  bottom: 0px;
  width: 0;
  height: 0;
  border-bottom: 0 solid transparent;
  border-top: 20px solid transparent;
  border-left: 0px;
  border-right: 8px solid #fdb404;
  z-index: 0;
}

span.ribbon-right:before {
  content: "";
  position: absolute;
  right: -7px;
  top: 0px;
  width: 0;
  height: 0;
  border-bottom: 20px solid transparent;
  border-top: 0 solid transparent;
  border-right: 0px;
  border-left: 8px solid #fdb404;
  z-index: 0;
}

span.ribbon-right:after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 0px;
  width: 0;
  height: 0;
  border-bottom: 0 solid transparent;
  border-top: 20px solid transparent;
  border-right: 0px;
  border-left: 8px solid #fdb404;
  z-index: 0;
}

.em-hand {
  text-align: center;
  margin-right: 3px;
  margin-left: 10px;
  -webkit-animation: wave 0.3s alternate infinite;
  -moz-animation: wave 0.3s alternate infinite;
  -ms-animation: wave 0.3s alternate infinite;
  animation: wave 0.3s alternate infinite;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  width: 20px;
}

@keyframes wave {
  0% {
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
  }
}

.scrollbar {
  max-height: 60vh;
  background: #F5F5F5;
  overflow-x: scroll;
  overflow-y: scroll;
  margin-bottom: 25px;
}

#wrapper {
  text-align: center;
}

.style-8::-webkit-scrollbar {
  width: 4px;
  height: 70px;
  border-radius: 10px;
}

.style-8::-moz-scrollbar {
  width: 4px;
  height: 70px;
  border-radius: 10px;
}

.style-8::-webkit-scrollbar-track {
  background-color: #e7e7e7;
  border-radius: 10px;
  ;
}

.style-8::-moz-scrollbar-track {
  background-color: #e7e7e7;
  border-radius: 10px;
}

.style-8::-webkit-scrollbar-thumb {
  background: #0000007d;
  border-radius: 10px;
  height: 70px;
  transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.style-8::-moz-scrollbar-thumb {
  background: #0000007d;
  border-radius: 10px;
  height: 70px;
  transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.style-8::-webkit-scrollbar-thumb:hover {
  background: #000;
  transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.style-8::-moz-scrollbar-thumb:hover {
  background: #000;
  transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.business-info {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 10px 0 #00000026;
  padding: 20px;
}

.business-info .profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.revws-caps a {
  color: #000;
}

.reviewsec .item .card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 15px;
  box-shadow: none;
  margin-bottom: 0;
  padding: 15px;
}

.reviewsec .item .card .card-body {
  padding: 0px;
}

.reviewsec .title img.office-img {
  height: 65px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 0 2px rgba(0, 0, 0, .12), 0 2px 4px rgba(0, 0, 0, .24);
  background: #fff;
  padding: 5px;
}

.reviewsec .review-con,
.reviewsec .ratings {
  color: #fb8e28;
}

.reviewsec .poweredby {
  margin: 6px 0 0 !important;
}

.reviewsec .poweredby img {
  max-width: 144px !important;
}

.reviewsec .reviewus {
  margin: 15px 0 8px !important;
  font-size: 14px;
  color: #fff !important;
  padding: 4px 18px 4px !important;
  outline: none !important;
  border-radius: 27px !important;
  background: #0a6cff !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
  text-shadow: 1px 1px 0 #00000052 !important;
  box-shadow: 0 0 2px rgba(0, 0, 0, .12), 0 2px 4px rgba(0, 0, 0, .24) !important;
  user-select: none !important;
  transition: all .2s ease-in-out !important;
  width: max-content;
}

.reviewsec .reviewus a {
  color: #fff;
}

.reviewsec .reviewus img {
  object-fit: cover;
  width: 23px;
  height: 23px;
  padding: 3px;
  margin: 0 0 0 4px;
  background: #fff;
  border-radius: 50%;
}

.reviewsec .revws-pic {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  border: none !important;
  float: left !important;
  margin-right: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 0 2px rgba(0, 0, 0, .12), 0 2px 4px rgba(0, 0, 0, .24) !important;
}

.reviewsec .revws-caps h6 {
  color: #154fc1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  font-weight: bold !important;
  margin: 0 0 2px !important;
  padding-right: 6px !important;
  font-size: 14px;
}

.reviewsec .revws-caps p.time {
  color: #555 !important;
  font-size: 13px !important;
}

.reviewsec .clients-ratings {
  margin: 15px 0 7px !important;
}

.reviewsec .top-g-icon {
  width: 18px !important;
  height: 18px !important;
}

.reviewsec .revws-desc {
  height: 100px !important;
  overflow-y: auto !important;
  margin-top: 5px;
}

.reviewsec .revws-desc p.text-md {
  padding-right: 10px;
  margin-bottom: 0;
  line-height: normal;
}

.plans-one__price-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0px;
  margin-top: 10px;
  border-radius: 8px;
  width: 100%;
  z-index: 1;
  align-items: flex-end;
}

.plans-one__price-inner p {
  margin-bottom: 0;
}

.plans-one__price {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  color: #e4292c;
  text-align: left;
  margin-bottom: 0;
}

.plans-one__price small {
  color: #767676;
  font-size: 15px;
  position: relative;
  margin-right: 3px;
  margin-left: 3px;
}

.plans-one__price small.oldprice {
  margin-right: 5px;
  margin-left: 0px;
}

.plans-one__price small.oldprice:after {
  content: "";
  position: absolute;
  left: 0;
  top: 56%;
  transform: translateY(-50%) rotate(345deg);
  border-bottom: 1px solid #212121;
  width: 100%;
  height: 1px;
}

.rechargebtn:hover .plans-one__price-inner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 8px;
  opacity: 1;
  transition: .5s;
  overflow: hidden;
}

.rechargetag {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  position: relative;
  margin-right: 10px;
}

.save-amount {
  font-weight: 600;
  font-size: 14px;
  color: #009615;
  letter-spacing: 0px;
}

.rechargetag:after {
  content: "";
  position: absolute;
  right: -27px;
  top: 10px;
  background: url(../img/icons/rightArrow.html) no-repeat;
  width: 25px;
  height: 25px;
}

.icon-text {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.icon-text span {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px 0 #0000001f;
  width: 55px;
  height: 55px;
  padding: 5px;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-text span i {
  margin-right: 0;
  font-size: 25px;
}

.single-contact-info {
  display: flex;
  align-items: center;
}

.div-icons {
  background: white;
  width: 100%;
  max-width: 408px;
  padding: 10px;
  border-radius: 12px;
}

.single-contact-info h5 {
  font-size: 14px;
}

.sticky-btn {
  position: fixed;
  left: 20px;
  bottom: 10px;
  z-index: 9;
}

.sticky-btn .call-sticky {
  background: #3b82f6;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  padding: 10px;
  box-shadow: 0 0 10px 0 #0000004f;
}

.btn-sec {
  margin-top: 15px;
  padding: 0;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #e3e3e3;
}

.btn-sec .btn {
  margin: 5px;
}

.btn-sec .btn.btn-primary {
  background-color: #f96b2d;
  border: solid 1px #f96b2d;
}

.btn-sec .call.btn.btn-primary {
  background-color: #2196f3;
  border: solid 1px #2196f3;
}

.btn-sec .wpbtn.btn.btn-primary {
  background-color: #4ec247;
  border: solid 1px #4ec247;
}

.btn-sec .btn.btn-primary:hover {
  background-color: #174b90;
  border: solid 1px #174b90;
}

.btn-sec .btn.btn-primary.whatsappbtn,
.btn-sec .btn.btn-primary.enqbtn,
.btn-sec .btn.btn-primary.callbtn {
  padding: 4px 11.6px 4px;
  font-size: 14px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  width: 33%;
}

.btn-sec .btn.btn-primary.whatsappbtn i,
.btn-sec .btn.btn-primary.enqbtn i,
.btn-sec .btn.btn-primary.callbtn i {
  margin-right: 3px;
}

.btn-sec .btn.btn-primary.whatsappbtn {
  background-color: #0d9f16;
  border: 1px solid #0d9f16;
}

.btn-sec .btn.btn-primary.whatsappbtn:hover {
  background-color: transparent;
  border: 1px solid #0d9f16;
  color: #0d9f16;
}

.btn-sec .btn.btn-primary.enqbtn {
  background-color: #093e59;
  border: 1px solid #093e59;
  margin-right: 0;
}

.btn-sec .btn.btn-primary.enqbtn:hover {
  background-color: transparent;
  border: 1px solid #093e59;
  color: #093e59;
}

.btn-sec .btn.btn-primary.callbtn {
  background-color: #2196f3;
  border: 1px solid #2196f3;
  margin-left: 0;
}

.btn-sec .btn.btn-primary.callbtn:hover {
  background-color: transparent;
  border: 1px solid#2196f3;
  color: #2196f3;
}

@media (max-width: 480px) {

  .btn-sec .btn.btn-primary.whatsappbtn,
  .btn-sec .btn.btn-primary.enqbtn,
  .btn-sec .btn.btn-primary.callbtn {
    font-size: 12px;
  }
}

.covered {
  margin-bottom: 10px
}

.covered ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  overflow-x: scroll;
  width: 100%;
  white-space: nowrap;
  cursor: grab;
  user-select: none;
}

.covered ul li:last-child:after {
  display: none;
  margin-right: 0px;
}

.covered ul li {
  display: inline-block;
  position: relative;
  padding-right: 20px;
  line-height: 20px;
  font-weight: 500;
  font-size: 11px;
  font-family: var(--montserrat-fonts);
  background: #ececec;
  padding: 1px 8px;
  border-radius: 50px;
  margin-right: 7px;
  margin-bottom: 7px;
  color: #212121;
}

.footer-widget h4.widget-title {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 15px;
  font-size: 17px;
  color: #ffffff;
  text-transform: uppercase;
  font-family: var(--montserrat-fonts);
  font-weight: 600;
}

.footer-widget h4.widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  border-radius: 40px;
  display: block;
  background: linear-gradient(90deg, #ffffff, transparent)
}

.footer-widget ul {
  padding: 0;
  margin: 0
}

.footer-widget ul li {
  list-style: none;
  margin-top: 10px;
  display: block
}

.footer-widget ul li a {
  color: #6e8497;
  font-size: 13px
}

.footer-widget ul li a:hover {
  color: var(--bs-primary)
}

.footer-widget ul li a:focus {
  color: var(--bs-primary)
}

.footer-widget ul li a:active {
  color: var(--bs-primary)
}

.footer-widget ul li p {
  color: #6e8497;
  font-size: 15px
}

.footer-widget ul.footer-menu li {
  font-size: 15px;
  margin-top: 20px;
  color: #444
}

.footer-widget ul.footer-menu li a {
  color: #444;
  font-size: 16px
}

.footer-widget ul.footer-menu li a:hover {
  color: var(--bs-primary)
}

.footer-widget ul.footer-menu li a:focus {
  color: var(--bs-primary)
}

.certify {
  width: 100%;
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
}

.certify li {
  display: inline-block;
}

.certify li img {
  max-width: 300px;
  margin-right: 4px;
  margin-bottom: 25px;
}

.feature-offer.text-center {
  padding: 15px;
  padding-top: 0;
}

.feature-offer.text-center .speciality {
  border-left: none;
  padding: 16px !important;
  color: var(--thm-black);
  background: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0px 0px 11px 0px #0000000d;
  position: relative;
  overflow: hidden;
}

.feature-offer.text-center .speciality1 {
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0.25turn, rgb(237 56 0), rgb(253 125 33), rgb(253 203 2));
  border-image-slice: 1;
  width: 100%;
}

.feature-offer.text-center .speciality2 {
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0.25turn, rgb(14 11 198), rgb(108 108 255), rgb(108 108 255));
  border-image-slice: 1;
  width: 100%;
}

.feature-offer.text-center .speciality3 {
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0.25turn, rgb(239 114 122), rgb(239 114 122), rgb(234 144 160));
  border-image-slice: 1;
  width: 100%;
}

.feature-offer.text-center .speciality4 {
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0.25turn, rgb(221 206 77), rgb(255 233 62), rgb(254 232 62));
  border-image-slice: 1;
  width: 100%;
}

.feature-offer.text-center .speciality5 {
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0.25turn, rgb(135 149 222), rgb(135 149 222), rgba(56, 2, 155, 0));
  border-image-slice: 1;
  width: 100%;
}

.feature-offer.text-center .speciality6 {
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0.25turn, rgb(230 140 21), rgb(255 173 57), rgba(56, 2, 155, 0));
  border-image-slice: 1;
  width: 100%;
}

.feature-offer.text-center .speciality::before {
  content: '';
  background-image: linear-gradient(90deg, rgba(254, 147, 5, 1) 0%, rgba(255, 227, 3, 1) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.feature-offer.text-center p {
  margin-bottom: 0;
  position: relative;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}

.feature-offer.text-center .icon {
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  margin-top: 15px;
}

.feature-offer.text-center .icon::after {
  content: '';
  width: 75px;
  height: 75px;
  position: absolute;
  top: 0;
  left: 24%;
  border-radius: 50%;
  -webkit-transition: all 800ms ease;
  transition: all 800ms ease;
  opacity: 1;
}

.feature-offer.text-center .speciality:hover .icon {
  color: #fff;
}

.feature-offer.text-center .speciality:hover .icon::after {
  left: 35%;
}

.feature-offer.text-center .speciality p,
.feature-offer.text-center .speciality:hover p {
  color: #000;
}

.feature-offer.text-center .icon::before {
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.feature-offer.text-center .icon img {
  z-index: 9;
}

.google-button {
  display: block;
  margin: 0;
  width: 300px;
  padding: 10px 10px 10px 10px;
  border: 1px solid var(--bs-primary);
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  font-size: 15px;
  line-height: 26px;
  color: var(--bs-primary);
  background: url(../img/icons/google-favicon.html) no-repeat left 10px center / 50px 50px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-animation: wiggle 2s ease-in infinite;
  -moz-animation: wiggle 2s ease-in infinite;
  -o-animation: wiggle 2s ease-in infinite;
  animation: wiggle 2s ease-in infinite
}

.google-button:hover {
  color: #fff;
  background-color: var(--bs-primary);
  background-image: url(../img/icons/google-favicon-white.html)
}

.google-button strong {
  font-size: 18px;
  display: block
}

@-webkit-keyframes wiggle {

  0%,
  20%,
  100% {
    background-position: left 20px center
  }

  5% {
    background-position: left 15px center
  }

  10% {
    background-position: left 20px center
  }

  15% {
    background-position: left 25px center
  }
}

@-moz-keyframes wiggle {

  0%,
  20%,
  100% {
    background-position: left 20px center
  }

  5% {
    background-position: left 15px center
  }

  10% {
    background-position: left 20px center
  }

  15% {
    background-position: left 25px center
  }
}

@-o-keyframes wiggle {

  0%,
  20%,
  100% {
    background-position: left 20px center
  }

  5% {
    background-position: left 15px center
  }

  10% {
    background-position: left 20px center
  }

  15% {
    background-position: left 25px center
  }
}

@keyframes wiggle {

  0%,
  20%,
  100% {
    background-position: left 20px center
  }

  5% {
    background-position: left 15px center
  }

  10% {
    background-position: left 20px center
  }

  15% {
    background-position: left 25px center
  }
}