@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&display=swap");

:root {
  --main-color-one: #FDA94F;
  --main-color-two: #FF6E63;
  --heading-color: #101425;
  --paragraph-color: #666;
  --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  */
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0;
  color: var(--paragraph-color);
  font-family: var(--body-font);
  line-height: var(--line-height30);
  font-size: var(--body-font-size);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: black;
}

::-webkit-scrollbar-thumb {
  background-color: #bb8739;
  border-radius: 1rem;
  border: 0.1rem solid transparent;
  background-clip: content-box;
  height: 5px !important;
}


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: #bb8739;
}

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 #bb8739;
}

.bg-gray {
  background: #F6F7FB;
}

.pd-top-60 {
  padding-top: 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: 4px;
  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: #bb8739 !important;
  color: #fff !important;
  border: none;
}

.btn-yellow:hover,
.btn-yellow:focus {
  background: #bb8739;
  color: #fff;
}

.btn-orange {
  background: var(--main-color-two);
  color: #fff;
}

.btn-orange:hover,
.btn-orange:focus {
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #bb8739;
}

.btn-white:hover,
.btn-white:focus {
  color: #bb8739;
}

.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: -22px;
  font-size: 17px;
  top: 2px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.heading span {
  font-size: 28px;
  font-weight: bold;
  color: black;
}

.readmore-btn:hover {
  color: #bb8739;
}

.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: #bb8739;
}

.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: #bb8739;
}

.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 {
  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: #bb8739;
}

.section-title p {
  padding-top: 8px;
}

.section-title .btn-view-all {
  font-size: 14px;
  font-weight: 600;
  color: #bb8739;
  text-decoration: none;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
}

.seeall_a .btn-view-all i {
  font-size: 16px;
  transform: rotate(-45deg);
}

.seeall_a .btn-view-all:hover {
  color: whitesmoke;
}

.seeall_a {
  text-align: end;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 15px;
  position: relative;
}

.seeall_a a {
  color: #bb8739;
}

.section-title .btn-view-all-2 {
  font-weight: 600;
  color: #bb8739;
  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: 50px;
  height: 50px;
  color: #fff;
  background-color: #bb8739;
  text-align: center;
  line-height: 48px;
  border-radius: 50%;
  z-index: 99;
  font-size: 30px;
  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;
  -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: #bb8739;
  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 {
  height: 30px;
  width: 30px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  color: #bb8739;
  background: whitesmoke;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 2px solid rgba(253, 169, 79, 0.2);
  font-size: 15px;
}

.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;
}

.call-to-action:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #bb8739;
  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: #bb8739;
  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: #bb8739;
  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: #bb8739;
}

.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: #bb8739;
  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: #bb8739;
  -webkit-box-shadow: 0px 2px 12px rgba(255, 233, 209, 0.75);
  box-shadow: 0px 2px 12px rgba(255, 233, 209, 0.75);
  color: #bb8739;
}

/*-----------------------------------------
    ## 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: #bb8739;
  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;
}

.widget_nav_menu ul li {
  list-style: none;
}

.widget_nav_menu ul li a {
  color: whitesmoke;
  font-size: 13px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.widget_nav_menu ul li a:hover {
  color: #bb8739;
}

.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: #bb8739;
}

.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: #bb8739;
}

.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;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  background-color: black;
  border-bottom: 1px solid #bb8739;
}

.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: 10px 0px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.navbar-area .nav-container .logo a {
  font-family: var(--body-font);
}

.navbar-area .nav-container .logo a img {
  height: auto;
  filter: drop-shadow(1px 1px 1px black);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
  text-align: right;
  margin-right: 25px;

}

.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);
  font-size: 15px;
}

/* .bg-img{
  background-image: url(../image/image.webp);
} */


.navbar-area .nav-container .navbar-collapse .navbar-nav li:hover a {
  color: #bb8739;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
  margin-left: 11px;
}
.nav-right-part-desktop{
  width: 17%;
}
.pr-page-nav{
  width: 21% !important;
}
.pr-page-logo-w{
  width: 7.3% !important;
}
.whatsapp-li{
  width: 4%;
  padding-right: 0 !important;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  position: relative;
  z-index: 0;
}
.links-ul{
  border: 1px solid #bb8739;
  padding: 30px;
  margin: 0;
  list-style: none;
  max-height: 233px;
  overflow: auto;
  height: auto;
}
.links-ul li{
  list-style: inside !important;
  width: auto;
  float: left;
  color: #bb8739 !important;
  padding: 0px 0px 5px 0px;
}
.dis-ul li::before {
  content: "";
  margin-right: -10px;
}
.dis-ul li a {
  margin-right: 12px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  position: absolute;
  right: 0px;
  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: whitesmoke;
}

.rescom {
  border: 1px solid #bb8739a1;
}

.single-feature .thumb {
  height: 200px;
}

.rescom .size {
  width: 100%;
  height: 200px;
}

.bg-section {
  background-color: black;
}

.bg-b-t-c {
  color: #bb8739 !important;
}

.bg-b-p-c {
  color: whitesmoke;
}

.rescom .size img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px 0px 15px 15px;
}

.overview-img {
  height: 590px;
  width: 100%;
}

.overview-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.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: fit-content;
  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;
  border-bottom: 1px solid #bb8739;
}

.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: black;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover a {
  color: #bb8739;
}

.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: 0px;
}

.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;
}

.mob-btn-head a:hover {
  color: white !important;
}

@media only screen and (max-width: 991px) {
  .navbar-area .nav-container {
    padding: 15px 0px;
  }

  .nav-right-part {
    margin-right: 50px;
  }

  .nav-right-part .btn {
    height: 32px;
    line-height: 30px !important;
    padding: 0 7px;
    font-size: 12px;
  }

  .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 rgb(187 135 57);
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    display: block;
  }

  .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;
    border-bottom: 1px solid rgb(118 85 41);
    color: #ffffff;
  }

  .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:0px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
}

.toggle-btn {
  top: 6px;
  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;
}

.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: #bb8739;
  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: #bb8739;
  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: #bb8739;
  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: #bb8739;
  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: #bb8739;
  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: #bb8739;
  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: 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: #000;
    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;
    color: white;
  }

  .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: none;
    margin-top: 6px;
  }

  .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 .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: #bb8739;
}

.banner-inner .rld-banner-search {
  margin-top: 33px;
}

.thumb-wrap {
  position: absolute;
  bottom: 0;
}

/******* banner tab style *****/
.banner-area {
  background: #0000006b;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  background-image: url(../image/c-banner.webp);
  opacity: 1;
  /* width: 100%;
  height: 100vh; */
  background-blend-mode: overlay;
  animation: shrink 10s infinite alternate;
}

@keyframes shrink {
  0% {
    background-size: 120% 120%;
  }

  100% {
    background-size: 100% 100%;
  }
}

.banner-inner .title {
  font-size: 55px;
  color: #ffffff;
  -webkit-text-stroke: 1px black;
}

.banner-inner .sub-title {
  font-size: 25px !important;
  color: #bb8739;
  text-shadow: 1px 1px 1px black;
}
.view-m-i {
  font-size: 14px;
  color: #bb8739;
  cursor: pointer;
}
.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: #bb8739;
  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: black;
  padding-top: 45px;
  z-index: 1;
  position: relative;
  border-top: 1px solid #bb8739;
}

.footer-heading {
  color: #bb8739;
  font-size: 1.5rem;
    font-weight: 700;
}

.footer-area .widget {
  border: 0;
}

.footer-area .footer-top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 0;
}

.footer-contact-icon {
  color: #bb8739;
  margin-right: 7px;
}

.footer-area .footer-logo img {
  width: 175px;
}

.footer-area .footer-social span {
  margin-right: 20px;
  color: #bb8739;
  font-weight: 700;
}

.footer-area .footer-social .social-icon {
  display: inline-block;
}



.footer-area .copy-right {
  padding: 8px 0;
  color: rgb(187 135 57);
  font-size: 12px;
  border-top: 1px solid;
}


.navbar .logo {
  width: 5%;
  padding: 3px;
}

.footer-area .widget {
  margin-bottom: 20px;
}

.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: #bb8739;
  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: #bb8739;
  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: #bb8739;
  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: #bb8739 !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: #bb8739;
}

.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 #bb8739;
  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: #bb8739;
  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: #bb8739;
}

.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: #bb8739;
  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: 0px 2px 12px #97A1B21A;
  box-shadow: 0px 2px 12px #97A1B21A;
}

.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: 474px;
}

.single-contact-info {
  margin-bottom: 30px;
}

.single-contact-info p i {
  margin-right: 10px;
  color: #bb8739;
  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: #bb8739;
  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: #bb8739;
}

.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: #bb8739;
  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: #bb8739;
  -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: #bb8739;
}

.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 #bb8739;
}

.rld-single-input.left-icon:before {
  content: '';
  background-image: url("../../assets/img/icons/1.png");
  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 #bb8739;
}

.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 #bb8739;
}

.rld-single-select .single-select:after {
  border: 0;
}

.rld-single-select .single-select:before {
  content: '';
  background-image: url("../../assets/img/icons/2.png");
  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: #bb8739;
  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: #bb8739;
  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: -40px;
  height: 50px;
  width: 50px;
  border: 1px solid rgb(187 135 57);
  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: rgb(187 135 57);
}

.team-details h6 {
  color: #bb8739;
  font-size: 18px;
}

.position {
  position: fixed;
  bottom: 0;
  z-index: 100;
  width: 100%;
  display: none;
}
.qaf__bottomNavs {
  width: 100%;
  padding: 0 16px 8px !important;
  position: fixed;
  bottom: 0;
  z-index: 3;
  box-shadow: 0 -4px 8px 0 rgb(0 106 194 / 20%);
  background: linear-gradient(#d59b43, #744c0f);
  display: flex;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.qaf__bottomNavs>div {
  padding: 6px 16px 0;
  text-align: center;
  flex-grow: 1;
}
.qaf__iconPos {
  font-size: 26px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spacer4:after {
  content: '';
  display: block;
  height: 4px;
  width: 100%;
  clear: both;
}
.caption_subdued_small {
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: #8993a4;
  display: block;
  text-align: center;
  vertical-align: middle;
}

.section-pd {
  padding: 40px 0;
}

.service-slider .slick-prev:before {
  display: none;
}

.service-slider .slick-prev:hover {
  border-color: #bb8739;
  -webkit-box-shadow: 0px 2px 12px rgba(255, 233, 209, 0.75);
  box-shadow: 0px 2px 12px rgba(255, 233, 209, 0.75);
  color: #bb8739;
}

.service-slider .slick-next {
  position: absolute;
  top: 50%;
  right: -40px;
  height: 50px;
  width: 50px;
  border: 1px solid rgb(187 135 57);
  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: rgb(187 135 57);
}

.service-slider .slick-next:before {
  display: none;
}

.service-slider .slick-next:hover {
  border-color: #bb8739;
  -webkit-box-shadow: 0px 2px 12px rgba(255, 233, 209, 0.75);
  box-shadow: 0px 2px 12px rgba(255, 233, 209, 0.75);
  color: #bb8739;
}

.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;
}

.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: #bb8739;
}

.single-explore .details .list li:first-child {
  margin-right: 20px;
}

.single-explore:hover .thumb a {
  color: #bb8739;
}

/*---------------------------------------------
    ## Feature
---------------------------------------------*/
.single-feature {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #bb8739;
}

.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: #bb8739;
}

.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;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hd-pd-card {
  padding: 0 8px;
}

.single-feature .details {
  background: #F6F6F6;
  padding: 20px 20px;
  position: relative;
}

.single-feature .details .feature-logo {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  right: 25px;
  top: -25px;
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 20px 0px 40px rgba(0, 0, 0, 0.3);
  box-shadow: 20px 0px 40px rgba(0, 0, 0, 0.3);
  padding: 0 3px;
}

.single-feature .details .feature-logo img {
  width: auto;
  display: inline-block;
}

.single-feature .details .author {
  font-size: 11px;
  margin-bottom: -8px;
}

.single-feature .details .title {
  padding-left: 1px;
  font-weight: 600;
  margin-bottom: 6px;
}

.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: 13px 0 0 0;
  margin: 15px 0 0 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;
  width: 30%;
  font-weight: 500;
}

.single-feature .details .info-list li img,
.single-feature .details .info-list li i {
  margin-right: 0px;
  color: #bb8739;
  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;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: -50px;
  padding: 10px 20px 14px 20px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #F6F6F6;
  width: 100%;
  visibility: hidden;
  opacity: 1;
  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: #bb8739;
}

.single-feature .details .contact-list li .phone,
.single-feature .details .contact-list li .message {
  background: #F6E6D3;
  height: 36px;
  width: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 4px;
  display: inline-block;
}

.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;
  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:hover .contact-list {
  visibility: visible;
  opacity: 1;
  bottom: 0px;
}

.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: #bb8739;
  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: #bb8739;
}

.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: #bb8739;
  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: #bb8739;
  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: #bb8739;
}

/*---------------------------------------------
    ## 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: #bb8739;
  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: #bb8739;
  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: 50%;
  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;
}

.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: #bb8739;
}

.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;
}

.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: 15px 0px 15px 0px;
}

.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: #bb8739;
  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: #bb8739;
}

.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: #bb8739;
  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: #bb8739;
}

/*----------------------------------------------
    ## 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: #bb8739;
  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: #bb8739;
  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: #bb8739;
  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: #bb8739;
  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: #bb8739;
  top: 50%;
  right: 0;
  opacity: 1;
}

.single-accordion .card-header h2 button:before {
  content: '';
  position: absolute;
  height: 2px;
  width: 12px;
  background: #bb8739;
  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: #bb8739;
  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;
}

.comment-respond {
  /*margin-top: 20px;*/
}

.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: #bb8739;
  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: #bb8739;
}

.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);
}





.filter {
  text-align: center;
  max-width: 1050px;
  margin: auto;
}

.btn {
  padding: 0px 20px;
  margin: 5px 4px 4px 0;
  display: inline-block;
  color: #003;
  background: #eee;
  border: 1px solid #bb8739;
  transition: all 0.4s;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
}

.btn:hover,
.btn-active {
  background: #bb8739;
  color: #fff !important;
}

.gallery {
  display: flex;
  justify-content: center;
  width: fit-content;
  max-width: 1320px;
  flex-wrap: wrap;
  margin: 25px auto;
  /* gap: 14px; */
}

.gallery a {
  display: flex;
}

.gallery img {
  width: 200px;
  height: 220px;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  border-radius: 12px;
  overflow: hidden;
  margin: 10px 10px;
}

.gallery img:hover {
  transform: scale(1.1);
}

.sets .hide,
.sets .pophide {
  width: 0%;
  opacity: 0;
}

.closeBtn {
  position: absolute;
  font-size: 22px;
  font-weight: 500;
  right: 25px;
  top: 25px;
  color: white;
  transition: 0.5s linear;
  padding: 0px 14px;
  border-radius: 28px;
  background: transparent;
  outline-offset: -7px;
  outline: 2px solid #fff;
}

.closeBtn:hover {
  cursor: pointer;
  background: white;
  color: black;
  outline: 2px solid #000;
}

.openDiv {
  width: 100%;
  height: 100vh;
  background: #000000e7;
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  z-index: 9999;
}

.imgPreview {
  width: 70%;
  object-fit: scale-down;
  max-height: 40vw;
  height: auto;
}

.prevButton,
.nextButton {
  transition: 1s linear;
  padding: 10px 35px;
  font-size: 18px;
  border: none;
  color: white;
  background: #0005;
  border-radius: 10px;
  border: 1px solid white;
  margin: 10px;
}

.prevButton:hover,
.nextButton:hover {
  background: #fff;
  color: black;
}

.container {
  max-width: 1430px;
}

.underlne img {
  width: 20%;
}

.context {
  width: 100%;
  height: 78px;
  background: black;
}

.footer-social {
  text-align: end;
}

.hero-content-main {
  width: 100%;
}

.main-1 {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

.main {
  text-align: center;
  text-transform: uppercase;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 45px;
  color: #fff;
  margin: 0 auto;
}

.animation {
  position: relative;
  width: 100%;
}

.animation div {
  overflow: hidden;
  width: 100%;
  height: 100%;
  transform: skewX(-20deg);
}

.animation div::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #fff;
}

.animation span {
  padding: 0 10px;
}

.animation-left::before {
  left: 0;
  /* animation: widthLineLeft 1.2s 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.1) forwards; */
}

.animation-left span {
  display: block;
  animation: slideLeft 1.2s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.1) forwards;
  transform: translateX(200px) skewX(20deg);
}

.animation-right {
  position: absolute;
  right: 0;
  top: 0;
}

.animation-right:before {
  bottom: 0;
  right: 0;
  /* animation: widthLineRight 1.2s 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.1) forwards; */
}

.animation-right span {
  position: absolute;
  width: 100%;
  left: -100%;
  transform: translateX(-200px) skewX(20deg);
  animation: slideRight 1.2s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.1) forwards;/
}

.scroll-gif img {
  width: 20%;
}

@keyframes slideLeft {
  from {
    transform: translateX(200px) skewX(20deg);
  }

  to {
    transform: translateX(0%) skewX(20deg);
  }
}

@keyframes slideRight {
  from {
    transform: translateX(-200px) skewX(20deg);
  }

  to {
    transform: translateX(0%) skewX(20deg);
  }
}

@keyframes widthLineLeft {
  0% {
    width: 0%;
    left: 0%;
  }

  50% {
    width: 100%;
    left: 0%;
  }

  100% {
    width: 0%;
    left: 100%;
  }
}

@keyframes widthLineRight {
  0% {
    width: 0%;
    right: 0%;
  }

  50% {
    width: 100%;
    right: 0%;
  }

  100% {
    width: 0%;
    right: 100%;
  }
}

.bg-sectionc {
  background: #000000c9;
  color: #fff;
  background-image: url(../image/banner1.jpg);
  background-position: center;
  background-size: cover;
  opacity: 3;
  background-blend-mode: overlay;
  background-attachment: fixed;
}

.section-title p {
  font-size: 14px;
  margin-bottom: 8px;
  color: whitesmoke;
}

.mt-51 {
  margin-top: 2rem;
}

.gag tr th {
  width: 25%;
  font-size: 18px;
  color: #bb8739;
}


.border-con {
  border: 1px solid #bb8739;
}

.bg-t {
  background-color: transparent;
  border: none;
}

.bg-w {
  background-color: white;
}

.btn-com {
  background: transparent;
  color: white;
  font-size: 25px;
  opacity: 1;
  border-radius: 50%;
  padding-right: 0px !important;
  margin-right: -20px !important;
}

.btn-com:hover {
  color: white;
  opacity: 1;
}

.pd-col-none {
  padding: 0;
}

.contact-bg {
  height: 438px;
}

.contact-bg iframe {
  height: 100%;
}

.con-form {
  padding: 30px 10px;
}

.let-color {
  color: #bb8739;
}

.contact-info-box {
  text-align: center;
  border-radius: 5px;
  background: #ffffff;
  padding: 7px 0 7px 0;
  border: 1px solid #8080803b;
}

.contact-info-box .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 30px;
  position: relative;
  color: #bb8739;
  margin-bottom: 10px;
}

.contact-info-box p {
  margin-bottom: 0;
}

.main__card {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 0 1em rgb(0 0 0 / 26%);
}

.card__line {
  position: absolute;
  animation: 2s 2s linear infinite;
}

.card__line_left {
  animation-name: to-top;
  background: linear-gradient(to bottom, #bb8739, transparent);
  left: 0;
  bottom: -100%;
  width: 0.2em;
  height: 100%;
}

.card__line_right {
  animation-name: to-bottom;
  background: linear-gradient(to bottom, transparent, #bb8739);
  right: 0;
  top: -100%;
  width: 0.2em;
  height: 100%;
}

.card__line_top {
  animation-delay: 1.5s;
  animation-name: to-right;
  background: linear-gradient(to right, transparent, #bb8739);
  width: 100%;
  height: 0.2em;
  top: 0;
  left: -100%;
}

.card__line_bottom {
  animation-delay: 1.5s;
  animation-name: to-left;
  background: linear-gradient(to right, #bb8739, transparent);
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 0.2em;
}

.trending_card img {
  transform: scale(1);
  transition: .8s
}



@keyframes to-top {
  to {
    bottom: 200%;
  }
}

@keyframes to-bottom {
  to {
    top: 200%;
  }
}

@keyframes to-left {
  to {
    right: 200%;
  }
}

@keyframes to-right {
  to {
    left: 200%;
  }
}

.custom-field1 {
  position: relative;
  font-size: 14px;
  border-top: 10px solid transparent;
  margin-bottom: 5px;
  display: inline-block;
  --field-padding: 12px;
  width: 100%;
}

.custom-field1 input,
.custom-field1 textarea {
  border: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f2f2f2;
  padding: var(--field-padding);
  border-radius: 3px;
  width: 100%;
  outline: none;
  font-size: 14px;
}

.custom-field1 .placeholder1 {
  position: absolute;
  left: var(--field-padding);
  width: calc(100% - (var(--field-padding) * 2));
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  top: 22px;
  line-height: 100%;
  transform: translateY(-50%);
  color: #dadada;
  transition:
    top 0.3s ease,
    color 0.3s ease,
    font-size 0.3s ease;
}

.custom-field1 input.dirty+.placeholder1,
.custom-field1 input:focus+.placeholder1,
.custom-field1 input:not(:placeholder-shown)+.placeholder1,
.custom-field1 textarea.dirty+.placeholder1,
.custom-field1 textarea:focus+.placeholder1,
.custom-field1 textarea:not(:placeholder-shown)+.placeholder1 {
  top: -0px;
  font-size: 10px;
  color: #bb8739;
  background: black;
  width: auto
}

.custom-field1.one input,
.custom-field1.one textarea {
  background: none;
  border: 2px solid #bb8739;
  transition: border-color 0.3s ease;
  color: whitesmoke;
}

.custom-field1.one input+.placeholder1,
.custom-field1.one textarea+.placeholder1 {
  left: 8px;
  padding: 3px 5px;
}

.custom-field1.one input.dirty,
.custom-field1.one input:not(:placeholder-shown),
.custom-field1.one input:focus,
.custom-field1.one textarea.dirty,
.custom-field1.one textarea:not(:placeholder-shown),
.custom-field1.one textarea:focus {
  border-color: #bb8739;
  transition-delay: 0.1s
}

.custom-field1.one input.dirty+.placeholder1,
.custom-field1.one input:not(:placeholder-shown)+.placeholde1r,
.custom-field1.one input:focus+.placeholder1,
.custom-field1.one textarea.dirty+.placeholder1,
.custom-field1.one textarea:not(:placeholder-shown)+.placeholde1r,
.custom-field1.one textarea:focus+.placeholder1 {
  top: 0;
  font-size: 10px;
  color: #bb8739;
  background: black;
  width: auto
}

.mess-input {
  height: 150px;
}
.dis-ul{
  display: flow-root;
  margin-bottom: 30px !important;
}


.custom-field2 {
  position: relative;
  font-size: 14px;
  border-top: 10px solid transparent;
  margin-bottom: 2px;
  display: inline-block;
  --field-padding: 8px;
  width: 100%;
}

.custom-field2 input,
.custom-field2 textarea {
  border: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f2f2f2;
  padding: var(--field-padding);
  border-radius: 8px;
  width: 100%;
  outline: none;
  font-size: 13px;
}
.accordion button .icon1 {
  display: inline-block;
  position: absolute;
  width: 22px;
  height: 22px;
}
.text-jus{
  text-align: justify;
  color: whitesmoke !important;
}
.content {
  display: -webkit-inline-box;
  color: whitesmoke;
}

#more {
  display: none;
}
.id-pd-l-1{
  padding-top: 35px !important;
}

.read-btn {
  background: none;
  color: white;
  border: none;
  padding: 0;
  font-size: 16px;
  cursor: pointer;
  font-weight: 900;
}
.accordion-title b{
  margin-right: 8px;
}

.custom-field2 .placeholder2 {
  position: absolute;
  left: var(--field-padding);
  width: calc(100% - (var(--field-padding) * 2));
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  top: 22px;
  line-height: 100%;
  transform: translateY(-50%);
  color: #565656;
  transition:
    top 0.3s ease,
    color 0.3s ease,
    font-size 0.3s ease;
  font-size: 13px;
}

.custom-field2 input.dirty+.placeholder2,
.custom-field2 input:focus+.placeholder2,
.custom-field2 input:not(:placeholder-shown)+.placeholder2,
.custom-field2 textarea.dirty+.placeholder2,
.custom-field2 textarea:focus+.placeholder2,
.custom-field2 textarea:not(:placeholder-shown)+.placeholder2 {
  top: -0px;
  font-size: 10px;
  color: #bb8739;
  background: black;
  width: auto
}

.custom-field2.one input,
.custom-field2.one textarea {
  background: none;
  border: 2px solid #bb8739;
  transition: border-color 0.3s ease;
  color: black;
}

.custom-field2.one input+.placeholder1,
.custom-field2.one textarea+.placeholder1 {
  left: 8px;
  padding: 3px 5px;
}

.custom-field2.one input.dirty,
.custom-field2.one input:not(:placeholder-shown),
.custom-field2.one input:focus,
.custom-field2.one textarea.dirty,
.custom-field2.one textarea:not(:placeholder-shown),
.custom-field2.one textarea:focus {
  border-color: #bb8739;
  transition-delay: 0.1s
}

.custom-field2.one input.dirty+.placeholder2,
.custom-field2.one input:not(:placeholder-shown)+.placeholder2,
.custom-field2.one input:focus+.placeholder2,
.custom-field2.one textarea.dirty+.placeholder2,
.custom-field2.one textarea:not(:placeholder-shown)+.placeholder2,
.custom-field2.one textarea:focus+.placeholder2 {
  top: 0;
  font-size: 10px;
  color: #bb8739;
  background: whitesmoke;
  width: auto
}

.mess-input2 {
  height: 80px;
}

.custom-field2.start {
  border-top: none !important;
}



.con-sub-btn {
  padding-top: 10px;
}

.con-sub-btn input {
  height: 47px;
}

.con-form {
  padding: 30px 10px;
}

.contact-info-box .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 30px;
  position: relative;
  color: #bb8739;
  margin-bottom: 10px;
}

.contact-info-box p {
  margin-bottom: 0;
  color: black;
}

.blog_post {
  background: #fff;
  margin-top: 75px;
  border-radius: 10px;
  box-shadow: 0px 0px 1rem rgb(0 0 0 / 8%);
  position: relative;
  border: 1px solid #8080802b;
}

.img_pod {
  border: 5px solid #bb8739;
  height: 130px;
  width: 130px;
  z-index: 10;
  box-shadow: 0px 0px 1rem rgb(0 0 0 / 8%);
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img_pod img {
  height: 100%;
  width: 100%;
  position: relative;
  border-radius: 100%;
  box-shadow: 0px 0px 1rem rgb(0 0 0 / 8%);
  z-index: 1;
  object-fit: cover;
}

.container_copy {
  padding: 1rem;
}

.container_copy p {
  font-weight: 500;
  color: black;
  height: 65px;
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 0;
}

.blog-read-btn {
  color: #bb8739;
  font-size: 13px;
}

.heading .blog-d-h1 {
  font-size: 28px;
  font-weight: bold;
  color: black;
}

.blog-img1 {
  width: 100%;
  height: 500px;
  border-radius: 15px;
}

.blog-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.mt-52 {
  margin-top: 1rem;
}

.blog-content {
  text-align: justify;
    max-width: 900px;
    margin: 0 auto;
}

.cout-show-main {
  display: flex;
  margin-top: 20px;
}

.show-count {
  width: 100%;
  color: whitesmoke;
}

.show-page {
  color: whitesmoke;
  width: 100%;
  text-align: end;
}

.pagi-text-c {
  text-align: center;
  padding: 20px 0;
}

.prenext-btn {
  background: #bb8739;
  color: white;
  border: none;
  border-radius: 22px;
  padding: 7px 18px;
  border: 1px solid #bb8739;
  cursor: pointer;
}

.prenext-btn:hover {
  background: whitesmoke;
  color: black;
}

.pagination-c {
  text-align: center;
  padding: 20px 0 0 0;
  justify-content: center;
}

.page {
  border: 1px solid #dad6d6;
  background: transparent;
  border-radius: 50%;
  padding: 6px;
  margin-right: 3px;
  margin-left: 3px;
  width: 40px;
  color: white;
}

.active3 {
  color: white;
  border: 2px solid #bb8739;
  font-weight: 700;
}

.p-t-c {
  display: flex;
  color: whitesmoke;
  font-size: 16px;
}

.property-type-c {
  margin-left: 5px;
  font-size: 16px;
}


/* property detaill */

.home-banner {
  background: #0000006b;
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-blend-mode: overlay;
}

.home-banner-img {
  display: none;
}

.banner-cnt {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 15px;
  z-index: 1;
}

.project-configurations {
  text-shadow: 0px 1px 2px #000;
  padding-left: 30px;
}

.project-configurations h1 {
  color: #fff;
  font-size: 42px;
}

.project-configurations p {
  font-size: 18px;
  color: #fff;
}

.banner-configurations-site-visit {
  display: flex;
  align-items: center;
}

.banner-configurations {
  display: flex;
}

.configurations-size {
  position: relative;
}

.configuration-item {
  padding-right: 20px;
  text-align: center;
}

.configuration-item h4 {
  color: #bb8739;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bolder;
}

.project-configurations .configuration-item p {
  margin: 0;
}

.project-configurations p {
  font-size: 18px;
  color: #fff;
}

.configurations-size::after {
  content: "";
  background-color: gainsboro;
  width: 1px;
  height: 100%;
  position: absolute;
  right: 10px;
  bottom: 0;
}

.same-section {
  margin: 30px 0;

}

.highlight-div {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.highlight-div h3 {
  background-color: #bb8739;
  color: #fff;
  font-size: 20px;
  padding: 20px 32px;
  margin: 0 0 30px 0;
}

.highlight-div ul {
  list-style: none;
  width: 100%;
  display: inline-block;
  padding-right: 10px;
}

.highlight-div ul li {
  color: whitesmoke;
  font-size: 15px;
  font-weight: 600;
  padding-left: 30px;
  margin-bottom: 7px;
  position: relative;
}

.highlight-div ul li::before {
  position: absolute;
  content: '\f00c';
  left: 0px;
  top: 0px;
  color: #bb8739;
  font-size: 18px;
  font-weight: 400;
  font-family: 'FontAwesome';
}

.highlight-image {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.col-pd {
  padding: 0;
}

.highlight-di {
  background: black;
  box-shadow: 0px 0px 10px #80808073;
}

.project-info-section {
  display: none;
}

.project-site-visit {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.button-wiggle {
  -webkit-animation: wiggle 4s 2s infinite;
  animation: wiggle 4s 2s infinite;
}

@-webkit-keyframes wiggle {

  5%,
  50% {
    transform: scale(1);
  }

  10% {
    transform: scale(0.9);
  }

  15% {
    transform: scale(1.15);
  }

  20% {
    transform: scale(1.15) rotate(-5deg);
  }

  25% {
    transform: scale(1.15) rotate(5deg);
  }

  30% {
    transform: scale(1.15) rotate(-3deg);
  }

  35% {
    transform: scale(1.15) rotate(2deg);
  }

  40% {
    transform: scale(1.15) rotate(0);
  }
}

@keyframes wiggle {

  5%,
  50% {
    transform: scale(1);
  }

  10% {
    transform: scale(0.9);
  }

  15% {
    transform: scale(1.15);
  }

  20% {
    transform: scale(1.15) rotate(-5deg);
  }

  25% {
    transform: scale(1.15) rotate(5deg);
  }

  30% {
    transform: scale(1.15) rotate(-3deg);
  }

  35% {
    transform: scale(1.15) rotate(2deg);
  }

  40% {
    transform: scale(1.15) rotate(0);
  }
}

.button {
  width: 100%;
  position: relative;
  cursor: pointer;
  font-size: 13px;
  color: white;
  background: #bb8739;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid white;
  border-radius: 1000px;
  padding: 8px 11px;
  margin: 0px;
  box-shadow: 0 2px 5px 0 rgba(3, 6, 26, 0.15);
  transition: 0.5s all ease-in-out;
}

.overview-detail {
  padding: 0 22px;
  color: whitesmoke;
  text-align: justify;
  padding-bottom: 10px;
}

.gallery-item {
  height: 225px;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  border: 2px solid #bb8739;
}

.gallery-border {
  position: relative;
}

.gallery-border:before {
  content: '';
  position: absolute;
  border: 1px solid #bb8739;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  z-index: 2;
}

.col-gl-pd {
  padding: 0 6px;
}

.section-pd-g {
  padding-bottom: 40px;
  padding-top: 20px;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
  background-color: transparent;
}

.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #bb8739;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #474747;
  font-size: 15px;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #bb8739;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #bb8739;
  border: 1px solid #bb8739;
}

.accordion button .accordion-title {
  display: flex;
  font-size: 15px;
  font-weight: 400;
  
}

.accordion button .accordion-title .que-b{
  margin-right: 5px;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  color: #bb8739;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
  font-size: 28px;
  font-weight: bold;
  color: black;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded=true] {
  color: #bb8739;
}

.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}

.accordion button[aria-expanded=true]+.accordion-content {
  opacity: 1;
  max-height: fit-content;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  text-align: justify;
  font-size: 14px;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 14px;
  font-weight: 300;
  margin: 10px 0px 10px 10px;
}

.accordion .accordion-content ul {
  margin-left: 13px;
}

.accordion {
  --bs-accordion-border-color: none;
}

.accordion-content ul li {
  font-weight: 300;
}

.accordion-content ul li::marker {
  color: #bb8739;
}

.accordion-content a {
  color: blue;
}

.info-li {
  width: 68% !important;
}


.id-pdg {
  margin-bottom: 0px;
  padding-top: 95px;
}

.id-pdc {
  margin-top: 100px;
  margin-bottom: -70px;
}

.carousel-cell2 {
  width: 19.3%;
  height: auto;
}

.carousel-cell,
.carousel-cell1,
.carousel-cell2,
.carousel-cell3 {
  border-radius: 5px;
  margin-right: 10px;
}

.card-design-bui-img {
  height: 80px !important;
  padding: 23px 70px;
}

.tcp {
  text-align: justify;
  margin-top: 20px;
}

.flickity-page-dots {
  display: none;
}


.flickity-prev-next-button .flickity-button-icon {
  color: #bb8739;
}

/* resposive CSS Code */

@media (max-width: 1199px) {
  .section-padding {
    padding-top: 70px;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding-top: 50px;
  }
}

@media (max-width: 767px) {
  .title {
    font-size: 18px;
  }

  .gallery img {
    margin: 8px 8px;
    width: 175px;
  }

  .closeBtn {
    padding: 6px 25px;
  }

  .prevButton,
  .nextButton {
    font-size: 18px;
    padding: 8px 25px;
  }
}

@media (max-width: 540px) {
  .banner-inner {
    padding-top: 50px !important;
  }

  .flickity-button {
    display: none;
  }

  #tab-button li a {
    height: 35px !important;
  }

  .gag tr th {
    font-size: 14px;
  }

  .t-border tr td {
    font-size: 12px;
  }

  .section-padding {
    padding-top: 30px;
  }

  .gallery img {
    margin: 8px 6px;
    width: 155px;
  }

  .closeBtn {
    font-size: 18px;
    border-radius: 15px;
  }

  .prevButton,
  .nextButton {
    font-size: 18px;
    padding: 6px 20px;
    border-radius: 10px;
    margin: 5px;
  }

  .imgPreview {
    width: 90%;
    max-height: 50vh;
    height: auto;
  }

}

:root {
  --white: #eee;
  --black: #141414;
  --color: #3333ff;
  scroll-behavior: smooth;
}

.link {
  font-size: 20px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  position: relative;
}

.link span,
.link i {
  position: relative;
}

.link i {
  margin-left: -5px;
  margin-right: 7px;
  font-size: 17px;
}

.a37 {
  animation: ring 4s .7s ease-in-out infinite;
  transform-origin: 50% 4px;
}

@keyframes ring {
  0% {
    transform: rotate(0);
  }

  5% {
    transform: rotate(30deg);
  }

  10% {
    transform: rotate(-28deg);
  }

  15% {
    transform: rotate(34deg);
  }

  20% {
    transform: rotate(-32deg);
  }

  25% {
    transform: rotate(30deg);
  }

  30% {
    transform: rotate(-28deg);
  }

  35% {
    transform: rotate(26deg);
  }

  40% {
    transform: rotate(-24deg);
  }

  45% {
    transform: rotate(22deg);
  }

  50% {
    transform: rotate(-20deg);
  }

  55% {
    transform: rotate(18deg);
  }

  60% {
    transform: rotate(-16deg);
  }

  65% {
    transform: rotate(14deg);
  }

  70% {
    transform: rotate(-12deg);
  }

  75% {
    transform: rotate(10deg);
  }

  80% {
    transform: rotate(-8deg);
  }

  85% {
    transform: rotate(6deg);
  }

  90% {
    transform: rotate(-4deg);
  }

  95% {
    transform: rotate(2deg);
  }

  100% {
    transform: rotate(-1deg);
  }
}
.w-100{
  width: 84% !important;
}

.link .color {
  width: 35px;
  height: 35px;
  border-radius: 2em;
  background-color: var(--color);
  position: absolute;
  top: 52%;
  transform: translatey(-50%);
  left: -0.65em;
}


.context {
  height: 71px;
}

.deatil-main-section {
  padding: 40px 0 40px 0;
}

.wrapper-detail {
  background-color: black;
}

.sp-lg-title {
  color: #ad8637;
}

.lo-text {
  color: whitesmoke !important;
}

.pr-titel {
  font-size: 30px;
  font-weight: bold;
}
.accordion.accordion-item.accordion-button-1{
  color: whitesmoke !important;
}
.rating i {
  color: #FF9529;
  margin-right: 2px;
}

.rate-on {
  font-size: 20px;
  font-weight: bold;
}

.rate-on i {
  color: #ad8637;

}

.location-i i {
  color: #ad8637;
}

.pr-sec-det {
  padding: 20px 0 0px 0;
}

.gallery-img {
  height: 316px;
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.galler-con {
  position: absolute;
  bottom: 10px;
  color: #fff;
  width: 100%;
  z-index: 1;
  padding: 0 12px;
  font-size: 12px !important;
}

.galler-con::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: -webkit-fill-available;
  height: 50px;
  left: 0;
  display: inline-block;
  background-image: linear-gradient(0deg, #000000d1 0%, rgb(255 255 255 / 0%) 100%);
}
.fs-5 {
  font-weight: 500;
}
.all-pro{
  color: #bb8739 !important;
}
.all-pro:hover{
  color: white !important;
}
.serach-div-main{
  text-align: end;
}
.no-found{
  text-align: center;
    color: #bb8739;
    font-size: 30px;
    font-weight: 900;
    padding-top: 52px;
}
.serach-div input{
  border-radius: 8px;
  border: 2px solid #bb8739;
  background: whitesmoke;
  padding: 5px 10px;
}
#success{
  border: 1px solid #00000059;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
}
#success span{
  color: green;
}
.galler-con span:first-child {
  display: inline-block;
  font-weight: 600;
  color: white;
  position: relative;
  z-index: 1;
}
.thanks-head{
	padding: 35px 25px;
	text-align: center;
	margin: 0 auto 30px auto;
	width: 500px;
	max-width: 100%;
  }
  .click-circle{
	color: white;
	font-weight: bold;
	font-size: 65px;
	background: green;
	border-radius: 100%;
	width: 100px;
	height: 100px;
	text-align: center;
	display: block;
	margin-bottom: 15px;
	margin: 0 auto;
	line-height: 100px;
  }
  .cl{
    font-size: 16px !important;
  }
  .thaks-con{
	font-weight: 600;
	  color: black;
    line-height: 50px;
	  font-size: 40px;
	  text-transform: capitalize;
  }
  .logo-div {
    width: 100%;
    height: 100px;
    padding: 23px 0;
    text-align: center;
}
.logo-div img{
  width: 8%;
}
.Click-here {
  cursor: pointer;
}
.ata-j {
  display: inline-block;
  font-size: 14px;
  text-transform: capitalize;
  line-height: 24px;
  padding: 10px 20px;
  border: 2px solid #f26324;
  background: #f26324;
  color: #ffffff;
}
.theme-btn {
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}
.schedule-h{
  margin-top: -6px;
  margin-bottom: 9px;
}
.galler-con h2 {
  font-size: 12px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
  color: white;
  position: relative;
  z-index: 1;
}

.map-gal-con {
  bottom: 173px !important;
}

.galler-con span:last-child {
  float: right;
  color: white;
  position: relative;
  z-index: 1;
}

.gallery-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: 1px solid #ad8637;
  border-radius: 8px;
}

.map-img {
  height: 153px;
  width: 100%;
}

.map-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.layout-img {
  margin-top: 10px;
}

.col-r {
  padding-right: 5px;
  padding-left: 0;
}

.col-l {
  padding-left: 5px;
  padding-right: 0;
}

.price-left-side {
  text-align: end;
  margin-top: 8px;
}

.price-left-side p {
  margin-bottom: 0;
}

.gallery-modal {
  max-width: 100%;
  margin: 1.75rem 185px;
}


.mySlides {
  height: 500px;
  padding: 0 22px;
  width: -webkit-fill-available;
  margin: 0 auto;
}

.mySlides2 {
  height: 500px;
  padding: 0 22px;
  width: -webkit-fill-available;
  margin: 0 auto;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 55px;
  text-shadow: 0px 0px 4px black;
}

.mySlides img {
  height: 100%;
  object-fit: cover;
}

.mySlides2 img {
  height: 100%;
  object-fit: cover;
}

.mySlides1 {
  height: 500px;
  height: 500px;
  padding: 0 22px;
  width: -webkit-fill-available;
  margin: 0 auto;
}

.numbertext1 {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 55px;
  text-shadow: 0px 0px 4px black;
}

.mySlides1 img {
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 0;
}

.con a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  transition: .3s;
}

.nextt,
.prevv {
  cursor: pointer;
  position: absolute;
  top: 60%;
  height: 50px;
  width: 50px;
  padding: 7px;
  text-align: center;
  margin-top: -50px;
  color: #fff !important;
  font-weight: 700;
  font-size: 20px !important;
  border-radius: 50%;
  user-select: none;
  -webkit-user-select: none;
  background-color: #ad8637;
}
.modal-image-con{
  font-size: 13.6px;
}
.gale-modal-body{
  padding: 2px 1rem 1rem 1rem !important;
}

.nextt {
  right: 13px;
  border-radius: 50%;
}

.pop-glry-con {
  width: -webkit-fill-available;
  text-align: center;
  margin-right: 37px;
}

.pop-glry-con span {
  float: none !important;
  font-size: 17px !important;
  margin-bottom: 16px !important;
}

.pop-glry-con::after {
  bottom: 6px !important;
  height: 100px !important;
}

.pr-section-main {
  background: whitesmoke;
  padding: 20px 10px;
  border-radius: 8px;
}

.pd-pr-d-only {
  padding: 20px 10px 0 10px !important;
  background: whitesmoke;
}

.pr-heding {
  font-size: 19px;
  color: #ad8637;
  font-weight: bold;
  margin-bottom: 0px;
}

.overview-element {
  position: relative;
  display: flex;
  margin-bottom: 25px;
}

.overview-element .icon {
  border: 1px solid #cfa352;
  border-radius: 12px;
  color: var(--headings-color);
  display: block;
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  width: 50px;
}

.overview-element .icon i {
  color: #cfa352;
}

.ml15 {
  margin-left: 15px !important;
}

.text {
  color: black;
  font-size: 15px;
  font-weight: bold;
}

.pr-d-h {
  font-size: 13px;
  font-weight: bold;
  line-height: 0;
  color: #727272;
}

.overview-data {
  text-align: justify;
  background-color: transparent !important;
}
.overview-data p span{
  background-color: transparent !important;
}

.overview-data p {
  font-size: 15px;
  margin-bottom: 0;
}

.view-all-content {
  text-align: end;
}

.view-all-content span {
  cursor: pointer;
  color: #ad8637;
  font-size: 13px;
}

.size-table tr th,
.size-table tr td {
  font-size: 14px;
}

.homes-list {
  padding: 0;
  margin: 0;
}

.ame_ul li {
  display: grid;
  list-style: none;
  text-align: center;
  width: 17.6%;
  float: left;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  border: 1px solid #8080806b;
  margin: 0 9px;
  border-radius: 8px;
  height: 110px;
  padding: 3px;
  background: beige;
  color: black;
}


.ame_icon {
  width: 40% !important;
  margin-left: 44px;
}

.ame-veiw {
  position: absolute;
  background: #ad8637;
  width: 35px;
  height: 35px;
  line-height: 37px;
  left: 92%;
  border-radius: 50%;
  margin-top: 4%;
  color: white;
  text-align: center;
  cursor: pointer;
  box-shadow: 0px 0px 10px #80808096;
}

.feature-ul ul {
  margin-bottom: 0;
}

.last-li {
  position: relative;
}

.pop-ame-ul li {
  margin-bottom: 16px !important;
  width: 18%;

}

.feature-ul ul li {
  margin-top: 5px !important;
  font-size: 15px !important;
  background-color: transparent !important;
  padding-left: 0 !important;
}

.size-col-pdr {
  padding-right: 0;
}

.ad_ul li {
  list-style: none;
  width: 31.3%;
  float: left;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  border: 1px solid #8080806b;
  margin: 9px 9px;
  border-radius: 8px;
  height: auto;
  padding: 3px;
  background: beige;
  color: black;
}

.ad_ul li img {
  width: 22%;
  /* margin-left: 35px; */
}

.pd-rd {
  padding-right: 0;
}

.main-card1 {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.main-card1 img {
  width: 100% !important;
  margin-top: 5px;
}

.pd-ld {
  padding-left: 0;
}

.card-title {
  font-size: 13px;
}

.ad-ti {
  margin-left: 17px;
  height: 66px;
}

.ad-ti p {
  color: #676767;
}

.ad-view {
  top: 10% !important;
}

.ad-up-pop li {
  margin-bottom: 20px;
  width: 31.4% !important;
}

.down-br {
  padding: 14px 10px !important;
  margin-bottom: 20px;
}

.project-site-visit span i {
  font-size: 18px;
}

.br-sh-btn {
  border-radius: 8px;
}

.custom-field2.one input+.placeholder2,
.custom-field2.one textarea+.placeholder2 {
  left: 8px;
  padding: 3px 5px;
}

.faq-head span {
  color: #ad8637;
}

#content {
  position: relative;
}




.fixed {
  position: fixed;
  top: 108px;
  right: 55px;
  width: 21.3%;
}

.bottom {
  top: auto;
  bottom: 0;
  position: absolute;
  width: auto;
  right: 15px;
  left: 15px;
}

.id-pd {
  padding-top: 90px;
  margin-bottom: -70px;
}

.id-pd-l {
  padding-top: 90px;
  margin-bottom: 0px;
}

.id-pd-g {
  padding-top: 0px;
  margin-bottom: -70px;
}

.pd-l-p {
  padding-left: 0;
  padding-right: 0;
}

.pd-l-t {
  padding-left: 0;
}

.amenities-mob {
  display: none;
}

.loc-adv-mob {
  display: none;
}

.mySlides2 img {
  border-radius: 0;
  border: none;
}

.show {
  background: #000000cf;
}

.form-modal {
  margin: 1.75rem 530px;
}

.popup-form-bg {
  background-color: whitesmoke;
  margin-top: 45%;
  border-radius: 15px;
}

.overflow-pro-bhk {
  overflow-y: auto;
  height: 24px;
  overflow-x: hidden;
}

.pr-list-item {
  display: flex;
}

.pd-pr-d-listing {
  padding: 0 !important;
}

.listing-col {
  padding: 0;
}

.homes-list2 {
  padding: 0;
  margin: 0;
  padding-left: 0;
  padding-bottom: 0.9rem;
  margin: 0;
}

.homes-list2 li {
  width: 50% !important;
  float: left;
  font-size: 12px;
  line-height: 40px;
  list-style: none;
  color: #ff385c;
}

.homes {
  height: 232px;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
}

.homes img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.homes-content {
  padding-top: 12px;
}

.listing-title {
  font-size: 24px;
  color: #bb8739;
  font-weight: bold;
}

.homes-address {
  font-size: 14px;
  font-weight: 500;
  color: #727272;
}

.text2 {
  font-size: 13px;
}

.overview-element2 {
  margin-bottom: 20px;
}

.overview-element2 .icon {
  border: 1px solid #cfa352;
  border-radius: 8px;
  color: var(--headings-color);
  display: block;
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 40px;
}

.overview-element2 .icon i {
  color: #bb8739;
}

.ml8 {
  margin-left: 8px;
}

.p-t-c .productCountclass {
  font-size: 16px !important;
}

#tab-button {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

#tab-button li {
  display: table-cell;
  width: 20%;
}

#tab-button li a {
  display: block;
  padding: 0.5em;
  background: #e0e0e0;
  border: 1px solid #9b9a9a;
  text-align: center;
  color: #000;
  text-decoration: none;
  height: 53px;
  font-size: 13px;
}


#tab-button li:not(:first-child) a {
  border-left: none;
}

#tab-button li a:hover,
#tab-button .is-active a {
  border-bottom-color: transparent;
  background: #bb8739;
  color: white;
}

.tab-contents {
  border: 1px solid #ddd;
  border-radius: 0px 0px 8px 8px;
  padding: 1em 5px 0em;
  background: #f6faf7;
  overflow-x: auto;

}

@media screen and (min-width: 768px) {
  .tab-button-outer {
    position: relative;
    z-index: 2;
    display: block;
  }

  .tab-contents {
    position: relative;
    top: -1px;
    margin-top: 0;
    padding: 1em 1em 0em;
    background: beige;
  }

  #tab-button li a {
    display: block;
    padding: 0.5em;
    background: #e0e0e0;
    border: 1px solid #9b9a9a;
    text-align: center;
    color: #000;
    text-decoration: none;
    font-size: 18px;
  }

}

.t-border tr td p {
  margin-bottom: 0;
}


.nav-home {
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  background-color: transparent;
  border-bottom: none;
}

.navbar-area-fixed {
  background-color: black;
  border-bottom: 1px solid #bb8739;
}

.banner-inner {
  padding-top: 150px;
}





/* home 2 */
.welcome-area {
  background: #00000026;
  background-image: url(../image/c-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
    background-blend-mode: overlay;
}
.welcome-area {
  height: 470px;
  z-index: 1;
}
.main-search {
  padding: 0 17rem;
  top: 88%;
  position: relative;
  z-index: 10;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.boddy {
  background: #e7efe7;
  border-radius: .5rem;
  width: 100%;
  height: auto;
  box-shadow: 0 0 11px -2px;
}
.btn-head {
  margin: 0 1rem;
  padding: 10px 0;
}
.btn-head .search {
  min-width: 0;
  position: relative;
  margin: .5rem 0;
  flex-direction: row;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  padding: 0;
}
.btn-head .search, .btn-under ul, .filter-btn, .search-input {
  display: flex;
  display: flex;
}
.search-input {
  flex: 1 1 0%;
  font-size: 15px;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  flex-shrink: 0;
  position: relative;
  outline: 0;
  color: gray;
  border-radius: .5rem;
  padding: .75rem 12px;
  margin: 0;
  min-height: 3rem;
  min-width: 3rem;
  border: 1px solid #8080805c;
}

.featured_search {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 11px -2px;
  left: 0;
  padding: 10px;
  position: absolute;
  top: 63px;
  width: 100%;
}
.featured_search p {
  margin-bottom: 4px;
}
.trending_projects_search ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding-left: 0;
}
.page_link {
  color: #000;
  text-decoration: none;
}
.trending_projects_search ul li {
  background-color: #e0ba577d;
  border-radius: 4px;
  font-size: 13px;
  margin: 6px;
  padding: 2px 6px;
}
.trending_projects_search ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
#suggestion{
  display: none;
}
.heading_box {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.heading_span_ico3, .heading_span_ico4 {
  position: relative;
}

.best_project_heading {
  color: black;
font-size: 30px;
  font-weight: 600;
}
.heading_span {
  color: #bb8739;
}
.view_all_btn {
  color: #bb8739;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.section-pd-h{
  padding-top: 40px;
  padding-bottom: 40px;
}
.expl-s{
  justify-content: space-between;
  margin-left: 0px;
  text-align: center;
}
.img-div{
  border-radius: 17px;
}
.img-div img{
  border-radius: 17px;
  width: 100%;
  height: 100%;
}

.section-bg{
  background-color: #eefbfe;
}
.desk_hide {
  display: none;
}

.expl-v{
  justify-content: space-between;
  margin-left: 0px;
}
.pr-name{
  font-weight: 600;
}
.pr-lo{
  font-size: 12px;
  margin-bottom: 0px;
}
.info-lists {
  padding: 7px 0 0 0;
  font-size: 12px;
 }
.info-lists li {
  display: inline-block;
  list-style: none;
  width: 28%;
  font-weight: 500;
}
.info-lis {
  width: 70% !important;
}
.info-lists li i{
  color: #bb8739;
}
.expl-text p{
  font-weight: 600;
}

.hi-f-col{
  height: auto;
}
.hi-f-col .img-div{
  height: 83%;
}
.hi-f-col .img-div img{
  height: 100%;
  width: 100%;
}
.loc-main-div{
  display: inline-grid;
}
.loc-main-div .img-div{
  display: inline-block;
  width: 100px;
  height: 98px;
  margin-right: 10px;
  border-radius: 10px;
}
.loc-main-div img{
  border-radius: 11px;
  width: 100%;
  height: 100%;
}
.loc-main-div .expv-text{
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #091e42;
  text-align: left;
  vertical-align: middle;
}
.loc-main-div .expv-text p{
  margin-bottom: 3px;
}
.loc-main-div .expv-text span{
  color: #8993a4;
  font-size: 14px;
  font-weight: 500;
}
.loc-mrb{
  margin-bottom: 15px;
}

.mob-show{
  display: none;
}



input[type="search"]::placeholder {
  color: #bbb;
}

input.nosubmit {
  width: 260px;
  display: block;
  padding: 9px 4px 9px 35px;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat 13px center;
  background-color: white;
}

.input_box {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px #00000029;
  height: 43px;
  margin-top: 0;
  position: relative;
}
.input_box input {
  border: none;
  border-radius: 8px;
  color: gray;
  outline: none;
  padding: 9px 9px 9px 41px;
  position: absolute;
  transition: all .3sease-in-out;
  width: 100%;
}
.textarea-box{
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px #00000029;
  height: 124px;
  margin-top: 0;
  position: relative;
}
.input_box textarea {
  border: none;
  border-radius: 8px;
  color: gray;
  outline: none;
  padding: 9px 9px 9px 41px;
  position: absolute;
  transition: all .3sease-in-out;
  width: 100%;
}
.input_box i {
  color: #bb8739;
  font-size: 16px;
  left: 12px;
  position: absolute;
  top: 13px;
}
.input_box textarea i {
  color: #bb8739;
  font-size: 16px;
  left: 12px;
  position: absolute;
  top: 13px;
}
.custom_form_check a {
  color: #bb8739;
  font-weight: 500;
}
.custom_form_check {
  margin-left: 10px;
}

.custom_form_check {
  padding-left: 26px;
}
.site_btn {
  background-color: #bb8739;
  border: 1px solid #bb8739;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  padding: 10px 22px;
  transition: all .5s;
  width: 100%;
}
.site_btn:hover{
  background-color: white;
  color: #bb8739;
}
.contact_num {
  color: #002441;
  color: black;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
}
.property_expert_right {
  height: 450px;
  justify-content: space-evenly;
}

.property_expert_left, .property_expert_right {
  display: flex;
  flex-direction: column;
  height: 500px;
  justify-content: center;
}
.contact_right {
  margin-left: 29px;
  width: 50%;
  padding-bottom: 43px;
}
.contact_right_heading {
  color: black;
  font-size: 18px;
  font-weight: 500;
  margin-left: 8px;
}
.contact_right_img img {
  width: 30px;
}
.mob {
  bottom: 0;
  right: 70px;
  width: 282px;
}
.mob_texts {
  bottom: 0;
  height: 113px;
  left: 181px;
  position: absolute;
}
.mob_texts .mobile_image {
  display: flex
;
}
.mob_texts p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
  margin-left: 6px;
}
.mob_call_now {
  border: 1px solid #ff385c;
  border: 1px solid #bb8739;
  border-radius: 10px;
  color: #ff385c;
  color: #bb8739;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 62px;
  text-align: center;
}
.mob_call_now .fa {
  margin-right: 4px;
}
.section-bg1{
 align-items: center;
  background-image: url(../image/contact-home-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 500px;
}

.sup1 {
  font-size: 15px;
  color: red;
  top: 0px;
}
.text-end1{
  text-align: end;
}

.expl-img {
  padding-left: 0;
  padding-right: 0;
}

.info-lis-plot{
  width: 55% !important;
}
.info-lis-plot-rs{
  width: 43% !important; 
}









.captcha {
  margin: 0px 0px 15px 0px;
}
.captcha .preview {
  color:#555;
  width:100%;
  text-align:center;
  height:43px;
  line-height:43px;
  letter-spacing:8px;
  border:1px dashed #888;
  border-radius: 4px;
  font-family:"monospace";
}
.captcha .preview span {
  display:inline-block;
  user-select:none;
}
.captcha .captcha-form {
  display:flex;
}

.captcha .captcha-form .captcha-refresh {
  cursor:pointer;
}

.captcha .preview-2 {
  color: #555;
  width: 100%;
  text-align: center;
  height: 35px !important;
  line-height: 35px !important;
  letter-spacing: 8px;
  border: 1px dashed #888;
  border-radius: 4px;
  font-family: "monospace";
}

.captcha-refresh-btn{
  padding: 8px 0 0px 7px;
}
.captch-2{
  margin: 0;
}



.captcha1 {
  margin: 0px 0px 15px 0px;
}
.captcha1 .preview1 {
  color:#555;
  width:100%;
  text-align:center;
  height:43px;
  line-height:43px;
  letter-spacing:8px;
  border:1px dashed #888;
  border-radius: 4px;
  font-family:"monospace";
}
.captcha1 .preview1 span {
  display:inline-block;
  user-select:none;
}
.captcha1 .captcha-form1 {
  display:flex;
}

.captcha1 .captcha-form1 .captcha-refresh1 {
  cursor:pointer;
}

.captcha1 .preview-3 {
  color: #555;
  width: 100%;
  text-align: center;
  height: 35px !important;
  line-height: 35px !important;
  letter-spacing: 8px;
  border: 1px dashed #888;
  border-radius: 4px;
  font-family: "monospace";
}

.captcha-refresh-btn1{
  padding: 8px 0 0px 7px;
}
.captch-3{
  margin: 0;
}
.pre-c{
  color: whitesmoke !important;
  border: 1px dashed whitesmoke !important;
  margin-top: 13px;
}
.cap-ref{
  margin-left: 13px !important;
    margin-top: 12px !important;
    color: whitesmoke !important;
}
.cus-c{
  display: flex !important;
}
.maps-h{
  font-size: 24px;
}
.cur{
  cursor: zoom-in;
}
.br-bo{
  border-bottom: 1px solid gray;
}

.section-pd-hm {
  padding-top: 20px;
  padding-bottom: 10px;
}
.container-blog{
  max-width: 1050px !important;
}