/********** Template CSS **********/
:root {
  --primary: #96793c;
  --secondary: #ff6922;
  --light: #f5f5f5;
  --dark: #000;
}
.txt-primary {
  color: #96793c !important;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}
html,
body {
  overflow-x: hidden;
}
body {
  background-color: #fff;
  color: #000;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: #000;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}
a:hover {
  color: #000;
}
.dropdown-item:active {
  background: #000;
}
/*** Button ***/
.btn {
  transition: 0.5s;
  text-transform: uppercase;
}
.btn:focus,
input:focus,
select:focus {
  box-shadow: none !important;
}
.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(127, 91, 15, 1) 0%,
    rgba(197, 163, 93, 1) 49%,
    rgba(127, 91, 15, 1) 100%
  );
  border: 0;
}
.btn.btn-primary:hover,
.btn.btn-secondary:hover {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 49%,
    rgba(07, 0, 0, 1) 100%
  );
}
.btn-square {
  width: 38px;
  height: 38px;
}
.btn-sm-square {
  width: 32px;
  height: 32px;
}
.btn-lg-square {
  width: 48px;
  height: 48px;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}
.btn-dark {
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 49%,
    rgba(07, 0, 0, 1) 100%
  );
  border: 0;
}
.btn-dark:hover {
  background: linear-gradient(
    90deg,
    rgba(127, 91, 15, 1) 0%,
    rgba(197, 163, 93, 1) 49%,
    rgba(127, 91, 15, 1) 100%
  );
}
.bg-dark {
  background-color: #000 !important;
}
.bg-light {
  background-color: #f5f5f5 !important;
}
.btn.btn-search {
  color: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(127, 91, 15, 1) 0%,
    rgba(197, 163, 93, 1) 49%,
    rgba(127, 91, 15, 1) 100%
  );
  border: 0;
}

/*** Navbar ***/
.nav-bar {
  position: relative;
  margin-top: 0px;
  padding: 0 3rem;
  transition: 0.5s;
  z-index: 9999;
}
.nav-bar.sticky-top {
  position: fixed;
  padding: 0;
  z-index: 9999;
  top: 0;
  width: 100%;
}
.navbar {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 5px;
  transition: 0.5s;
}
.navbar .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(-180deg);
}
.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .nav-bar {
    margin: 0;
    padding: 0;
  }
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

.navbar-light .navbar-brand {
  height: 75px;
}
.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    top: 100%;
    margin-top: 0;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.hero-section h1 {
  color: #000;
}
.text-primary {
  color: var(--primary) !important;
}
.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 7px 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 40px;
  font-size: 20px;
  transition: 0.5s;
}
.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--dark);
}
.header-carousel .owl-item img {
  min-height: 500px;
}

@media (max-width: 768px) {
  .header-carousel .owl-nav {
    left: 25px;
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #dddddd;
}
.top-bar {
  padding: 10px 0px;
  background: #000;
  color: #fff;
  position: relative;
  z-index: 1;
}
.top-left a {
  color: #fff;
}
.top-left span {
  padding-right: 15px;
  font-size: 15px;
}
.top-left span i {
  color: #e0bf7d;
}
.top-left span:last-child {
  padding-right: 0px;
}
.top-social {
  text-align: right;
  float: right;
  margin-right: 30px;
}
.top-social span {
  display: inline-block;
  margin: 0px 8px;
  font-size: 16px;
}
.top-social span a {
  color: #e0bf7d;
}

/*** Icon ***/
.icon {
  width: 150px;
  padding: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.search-area {
  padding: 35px;
}
.search-area .form-control,
.search-area .form-select {
  background-color: #e8e8e8;
}

/*** About ***/
.about-img img {
  position: relative;
  z-index: 2;
}
.about-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: var(--dark);
  transform: skew(20deg);
  z-index: 1;
}
.about ul {
  padding: 0;
}
.about ul li {
  list-style: none;
  margin-bottom: 5px;
}
.play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#e21b15 50%, rgba(0, 0, 0, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
  z-index: 11;
}
.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(226, 27, 21, 0.7);
  top: -13%;
  left: -13%;
  background: rgba(226, 27, 21, 1);
}
.play-btn:hover::after {
  border-left: 15px solid rgba(226, 27, 21, 1);
  transform: scale(20);
}
.play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.list-box {
  padding: 15px 15px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
}
.list-box i {
  line-height: 0;
  background: #ecf3ff;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
  color: var(--primary) !important;
}
.list-box span {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
  position: relative;
}
.counts:before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.counts .count-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  position: relative;
  z-index: 1;
}
.counts .count-box i {
  font-size: 36px;
  line-height: 0;
  margin-right: 20px;
  color: var(--primary);
}
.counts .count-box span {
  font-size: 33px;
  display: block;
  font-weight: 600;
  color: #000;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.purecounter::after {
  content: " +";
  font-weight: 500;
  margin-left: -5px;
}
.purecounter1::after {
  content: " %" !important;
  font-weight: 500;
  margin-left: -5px;
}
.purecounter2::after {
  content: " /" !important;
  font-weight: 500;
  margin-left: -5px;
}
.purecounter3::after {
  content: "" !important;
  font-weight: 500;
  margin-left: -5px;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
}
.features .feature-box h3 {
  font-size: 18px;
  color: #012970;
  font-weight: 700;
  margin: 0;
}
.features .feature-box i {
  line-height: 0;
  background: #ecf3ff;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}
.features .feature-box:hover i {
  background: #4154f1;
  color: #fff;
}
.features .feture-tabs h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .features .feture-tabs h3 {
    font-size: 28px;
  }
}

.features .feture-tabs .nav-pills {
  border-bottom: 1px solid #eee;
}
.features .feture-tabs .nav-link {
  background: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  padding: 12px 0;
  margin-right: 25px;
  margin-bottom: -2px;
  border-radius: 0;
}
.features .feture-tabs .nav-link.active {
  color: var(--primary) !important;
  border-bottom: 3px solid var(--primary) !important;
}
.features .feture-tabs .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: #012970;
}
.features .feture-tabs .tab-content i {
  font-size: 24px;
  line-height: 0;
  margin-right: 8px;
  color: #4154f1;
}
.features .feature-icons {
  margin-top: 120px;
}
.features .feature-icons h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.col-rt img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
.img-cont .img-area img {
  width: 40%;
}
.features-area ul {
  display: flex;
  justify-content: center;
}
.features-area ul li a {
  margin: 0 25px -2px;
}
.features .feture-tabs .tab-content .content-area h4 {
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}
.features .feture-tabs .tab-content .content-area ul {
  background-color: var(--primary);
  padding: 30px;
  margin-bottom: 0;
}
.features .feture-tabs .tab-content .content-area ul li {
  display: flex;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px dashed #fff;
  padding: 10px 0;
}
.features .feture-tabs .tab-content .content-area ul li:last-child {
  border-bottom: 0;
}

@media (max-width: 768px) {
  .features .feature-icons h3 {
    font-size: 28px;
  }
}

.features .feature-icons .content .icon-box {
  display: flex;
}
.features .feature-icons .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #012970;
}
.features .feature-icons .content .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: #0245bc;
  margin-right: 15px;
}
.features .feature-icons .content .icon-box p {
  font-size: 15px;
  color: #848484;
}

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .box {
  padding: 50px;
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  border-bottom: 3px solid var(--primary);
}
.values .box img {
  transition: 0.5s;
  width: 65px;
}
.values .box h3 {
  font-size: 22px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 18px;
}
.values .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  background-color: var(--primary);
}
.values .box:hover h3,
.values .box:hover p {
  color: #fff;
}
.values .box:hover img {
  transform: scale(1.1);
}
.read-more {
  color: var(--primary);
}
.values .box:hover .read-more {
  color: #fff;
}
.btn-outline-primary.active {
  background: linear-gradient(
    90deg,
    rgba(127, 91, 15, 1) 0%,
    rgba(197, 163, 93, 1) 49%,
    rgba(127, 91, 15, 1) 100%
  );
  border-color: var(--primary);
  color: #fff !important;
}
.btn-outline-primary {
  color: #000 !important;
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  color: #fff !important;
  background: linear-gradient(
    90deg,
    rgba(127, 91, 15, 1) 0%,
    rgba(197, 163, 93, 1) 49%,
    rgba(127, 91, 15, 1) 100%
  );
  border-color: var(--primary);
}
.featured-prop .tab-pane h5 span {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.video {
  padding: 180px 0px;
  position: relative;
}

/*** Category ***/
.cat-item div {
  background: #ffffff;
  transition: 0.5s;
}
.cat-item:hover div {
  background: var(--primary);
  border-color: transparent;
}
.cat-item .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
}
.cat-item i {
  font-size: 40px;
  margin-bottom: 0px;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.cat-item span {
  color: #000;
}
.cat-item div * {
  transition: 0.5s;
}
.cat-item:hover div * {
  color: #ffffff !important;
}

/*** Property List ***/
.nav-pills .nav-item .btn {
  color: var(--dark);
}
.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
  color: #ffffff;
}
.property-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}
.property-item img {
  transition: 0.5s;
}
.property-item:hover img {
  transform: scale(1.1);
}
.property-item .border-top {
  border-top: 1px dashed rgba(0, 185, 142, 0.3) !important;
}
.property-item .border-end {
  border-right: 1px dashed rgba(0, 185, 142, 0.3) !important;
}

/*** Testimonial ***/
.testimonial-carousel {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 576px) {
  .testimonial-carousel {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.testimonial-carousel .testimonial-item .border {
  box-shadow: 0 0 20px rgba(171, 171, 171, 0.24);
  border: 0 !important;
}
.testimonial-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 40px;
  top: calc(50% - 20px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 40px;
  font-size: 20px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--dark);
}

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
  box-shadow: 0 0 20px rgba(171, 171, 171, 0.24);
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  margin: -30px -30px 15px -30px;
  position: relative;
}
.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}
.recent-blog-posts .post-box .post-date {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  display: block;
  margin-bottom: 10px;
}
.recent-blog-posts .post-box .post-title {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  transition: 0.3s;
}
.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: var(--primary);
}
.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}
.recent-blog-posts .post-box:hover .post-title {
  color: var(--primary);
}
.recent-blog-posts .post-box:hover .post-img img {
  transform: rotate(6deg) scale(1.2);
}

.gallery-area .gallery-carousel .item img {
  transition: 0.5s;
}
.gallery-area .gallery-carousel .item img:hover {
  transform: rotate(6deg) scale(1.2);
}

/*** Footer ***/
.f-logo img {
  background-color: #fff;
  width: 150px;
  margin-bottom: 10px;
}
.footer p {
  font-size: 15px;
}
.footer p a {
  color: #fff;
}
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 35px;
  transition: 0.3s;
}
.footer .btn.btn-social:hover {
  color: var(--primary);
  border-color: var(--light);
}
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}
.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}
.footer .form-control {
  border-color: rgba(255, 255, 255, 0.5);
  padding-left: 10px;
  padding-right: 55px;
}
.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}
.footer .copyright a {
  color: #fff;
}
.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/*-------------ABout Us----------*/
.about_banner a {
  color: rgba(127, 91, 15, 1) !important;
  text-decoration: none;
}

.about_banner {
  background: url(../img/about_banner.jpg);
  padding: 80px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
}
.about_banner .breadcrumb-content {
  width: auto;
  background: #ffffffd1;
  padding: 20px 20px;
  display: inline-block;
}
.about_banner .breadcrumb-content h2 {
  font-size: 30px;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.about_banner .breadcrumb-content ul li {
  display: inline-block;
  font-size: 16px;
  margin-right: 20px;
  color: #333;
  text-transform: capitalize;
}

.team-item {
  width: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.43s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.team-item .thumbnail {
  width: 300px;
  height: 300px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.team-item .thumbnail .team-social {
  position: absolute;
  left: 5%;
  width: 90%;
  height: 90%;
  display: flex;
  justify-content: center;
  z-index: 1;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  top: 5%;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
}
.thumbnail:hover .team-social {
  transform: scale(1);
}
.team-item .team-social ul li {
  display: inline-block;
  margin: 0px 2px;
  list-style: none;
}
.team-item .team-social ul li a {
  background: #fff;
  color: #333;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 13px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.team-item .content {
  padding-top: 25px;
  padding-bottom: 20px;
}
.team-item .content h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 25px;
}
.team-item .content p {
  font-size: 18px;
}

.below_bar {
  position: relative;
}
.below_bar::before {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 3px;
  width: 60px;
  background: linear-gradient(
    90deg,
    rgba(127, 91, 15, 1) 0%,
    rgba(197, 163, 93, 1) 49%,
    rgba(127, 91, 15, 1) 100%
  );
}

/*--------CONTACT US----------*/
.property-location {
  padding: 1.5rem !important;
  background: #fff;
  border: 1px solid #eaeff5;
  box-shadow: 0 0 10px 1px rgba(71, 85, 95, 0.08);
}
#contact_form input {
  width: 100%;
  border-radius: 4px;
  height: 48px;
  font-size: 14px;
}
#contact_form input:focus {
  border-color: rgba(197, 163, 93, 1);
  box-shadow: none !important;
}
#contact_form textarea:focus {
  border-color: rgba(197, 163, 93, 1);
  box-shadow: none !important;
}
#contact_form textarea {
  width: 100%;
  border-radius: 4px;
  font-size: 14px;
}
.bgc {
  background: linear-gradient(rgba(65, 67, 73, 0.8), rgba(32, 51, 100, 0.8)),
    url(../img/contact-bg.jpg) no-repeat center center;
  /* background: linear-gradient(rgba(38, 41, 48, 0.8), rgba(31, 32, 37, 0.8)), url(../img/contact-bg.jpg) no-repeat center center; */
  padding: 2rem;
  background-size: cover;
}
.call-info h3 {
  color: #fff;
  margin-bottom: 2rem;
}
.call-info p {
  color: #fff;
}
.contact_section ul li {
  list-style: none;
  font-weight: 300;
}
.call-info .info {
  display: flex;
  margin-bottom: 1rem;
}
.call-info ul li .fa {
  font-size: 1.6rem;
  color: #fff;
}
.call-info .info p {
  color: #fff;
  margin: 0px;
  margin-left: 1.5rem;
  font-weight: 300;
}

/*----------BUY HOME---------------------*/

.dropdown-item.active {
  background-color: #000 !important;
}
.home_cards .card {
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  border: 1px solid #e7e7e7;
}
.home_cards .card-body {
  overflow: hidden;
}
.home_cards .card:hover img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  transform: scale(1.05);
  transition: all 0.5s ease-in-out;
}
.home_cards .card img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  height: 230px;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.home_cards .card h6 {
  font-size: 20px !important;
}

/*------Faqs-----------*/
.faq-section .nav-pills .nav-link.active {
  color: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(127, 91, 15, 1) 0%,
    rgba(197, 163, 93, 1) 49%,
    rgba(127, 91, 15, 1) 100%
  ) !important;
  border: 0;
}
.faq-section .nav-pills .nav-link {
  background-color: #f5f5f5 !important;
  color: var(--primary);
  margin-bottom: 15px;
  padding: 0.75rem 1rem !important;
}

.faq-section .accordion-button {
  background-color: #fff !important;
  color: #0a0a0a;
  align-items: start !important;
}
.faq-section .accordion-button:focus {
  box-shadow: none !important;
  border-color: var(--primary);
}
.faq-section .accordion-button:not(.collapsed) {
  color: var(--primary) !important;
  background: #f5f5f5 !important;
}
.faq-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2396793c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
  background-color: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.faq-section .accordion-item {
  margin-bottom: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.policy-section a,
.terms-section a {
  color: var(--primary);
}
.sub-c-form form {
  width: 100%;
  position: relative;
}
.sub-c-form form input {
  height: 60px;
  border: none;
  border-radius: 0px;
  background: #062231;
  width: 100%;
  position: relative;
  padding: 0px 20px;
  font-size: 15px;
  color: #ddd;
  padding-right: 75px;
}
.sub-c-form:focus-visible {
  border: 0 !important;
  box-shadow: unset !important;
  outline: 0 !important;
}
.sub-c-form input:focus {
  border: 0 !important;
  box-shadow: unset !important;
  outline: 0 !important;
}
.sub-c-form form button {
  position: absolute;
  top: 10%;
  right: 10px;
  height: 80%;
  border: none;
  padding: 0px 16px;
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(127, 91, 15, 1) 0%,
    rgba(197, 163, 93, 1) 49%,
    rgba(127, 91, 15, 1) 100%
  ) !important;
  cursor: pointer;
}

.rotate-phone {
  transform: rotate(90deg) !important;
}
.success-message {
  color: green;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}
.error-message {
  color: red;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

/*----------------------------------------------*/

@media only screen and (max-width: 767px) {
  .faq-section .fa-arrow-right {
    transform: rotate(90deg) !important;
  }
  .about_banner .breadcrumb-content h2 {
    font-size: 20px;
  }
  .about_banner {
    padding: 60px 0;
  }
  .about_banner .breadcrumb-content {
    padding: 15px 15px;
  }
  .about_banner .breadcrumb-content ul li {
    font-size: 14px;
  }
  .team-item .thumbnail {
    width: 250px;
    height: 250px;
  }
  .top-bar {
    display: none;
  }
  #navbarCollapse {
    position: absolute;
    top: 75px;
    width: 100%;
    left: 0;
    right: 0;
  }
  .navbar-light .navbar-nav {
    background: #fff;
    padding: 10px 30px;
    border-bottom: 1px solid #ddd;
  }
  .navbar-light .navbar-nav .dropdown-menu {
    border: 0;
    padding: 0;
  }
  .navbar-light .navbar-toggler {
    color: rgb(0, 0, 0);
    border-color: var(--primary);
    background: var(--primary) !important;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .header-carousel .owl-item img {
    min-height: 250px;
  }
  .search-area {
    padding: 20px;
  }
  .col-rt img {
    height: 100%;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .faq-section .nav {
    flex-direction: row !important;
    justify-content: center !important;
  }
  .faq-section .nav-link {
    margin-right: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .top-social {
    margin-right: 0;
  }
  .header-carousel .owl-item img {
    min-height: 400px;
    object-fit: cover;
  }
  .col-rt img {
    height: 350px;
    margin-top: 20px;
  }
  .values .box {
    padding: 20px;
  }
  .features .feture-tabs .nav-link {
    margin-right: 15px;
  }
  .features-area ul li a {
    margin: 0 18px -2px;
  }
  .recent-blog-posts .post-box {
    padding: 10px;
  }
  .recent-blog-posts .post-box .post-title {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .navbar-toggler {
    padding: 0.25rem 0.45rem !important;
  }
}

@media screen and (max-width: 475px) {
  .faq-section .nav-pills .nav-link {
    padding: 0.5rem 0.75rem !important;
    font-size: 15px;
  }
}
