/*
@File: Surma Template Styles

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

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

*******************************************
*******************************************

** - Default CSS
** - Preloader Area CSS
** - Go Top CSS
** - Navbar Area CSS
** - Banner Area CSS
** - Page title Area CSS
** - Partner Area CSS
** - Service Area CSS
** - Featured Area CSS
** - Play Button Area CSS
** - Blog Area CSS
** - Neighborhoods Area CSS
** - Contact Area CSS
** - About Area CSS
** - Blog Post Area CSS
** - Contact Us Area CSS
** - Product Details Area CSS
** - Comment Area CSS
** - Pagenavigation Area CSS
** - Blog Details Area CSS
** - Property Area CSS
** - Checkbox Area CSS
** - Client Area CSS
** - Gallery Area CSS
** - Price Area CSS
** - Signup Area CSS
** - Popular Area CSS
** - Footer Area CSS


*******************************************
*/
/*
Default Style
============================*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hurricane&family=Merriweather:wght@300;400;500;700&display=swap");
body {
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  font-family: "Open Sans", sans-serif;
  color: #212529;
}

a {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: none;
  color: #071c07;
}

a:hover {
  text-decoration: none;
  color: #252a26;
}

a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #252a26;
  font-family: "Merriweather", sans-serif;
  font-weight: 600;
}

h3 {
  font-size: 19px;
  line-height: 1.5;
  overflow: hidden;
  display: block;
  -webkit-line-clamp: 2;
  display: box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

p {
  font-size: 15px;
  margin-bottom: 15px;
}

p:last-child {
  margin-bottom: 0;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-control {
  height: 50px;
  color: #252a26;
  border: 1px solid #e8e8e8;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  font-size: 15px;
  padding: 10px 20px;
  width: 100%;
}

.form-control::-webkit-input-placeholder {
  color: #495057;
  font-size: 13px;
}

.form-control:-ms-input-placeholder {
  color: #495057;
  font-size: 13px;
}

.form-control::-ms-input-placeholder {
  color: #495057;
  font-size: 13px;
}

.form-control::placeholder {
  color: #495057;
  font-size: 13px;
}

.form-control:focus {
  color: #000000;
  background-color: transparent;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  outline: 0;
  border: 1px solid #008037;
}

.form-control:hover:focus,
.form-control:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

textarea.form-control {
  height: auto;
  height: 250px;
}

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

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

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

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

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

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

.bg-color {
  background: #f5faff;
}

@-webkit-keyframes rotaed360 {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
  }
}

@keyframes rotaed360 {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
  }
}

/*
Go Top Style*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 93%;
  right: -1%;
  background-color: #008037;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #008037;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top:hover {
  color: #ffffff;
  background-color: #252a26;
}

.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top:focus {
  color: #ffffff;
}

.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 1%;
  top: 93%;
}

/** Section tittle Css **/
.section-title {
  position: relative;
  max-width: 620px;
  margin: -8px auto 40px;
  text-align: center;
}

.section-title span {
  color: #008037;
  font-size: 14px;
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  background: #0080371c;
  color: #008037;
  padding: 3px 20px;
  border-radius: 7px;
}

.section-title h2 {
  font-size: 40px;
  text-transform: capitalize;
  color: #293a5c;
  margin-bottom: 20px;
}

/** Box Btn Css **/
.box-btn {
  font-size: 16px;
  color: #ffffff;
  padding: 12px 25px;
  line-height: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background-color: #008037;
}

.box-btn::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 100%;
  right: 100%;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: #034b03;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translate3d(50%, -50%, 0) scale3d(0, 0, 0);
          transform: translate3d(50%, -50%, 0) scale3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

.box-btn.border-btn {
  background-color: transparent;
  border: 1px solid #fff;
}

.box-btn:hover {
  color: #fff;
}

.box-btn:hover::before {
  -webkit-transform: translate3d(50%, -50%, 0) scale3d(15, 15, 15);
          transform: translate3d(50%, -50%, 0) scale3d(15, 15, 15);
}

.alt-btn {
  font-size: 16px;
  letter-spacing: 1px;
  padding: 5px 25px;
  outline: 0;
  border: 1px solid #000;
  color: #fff;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
}

.alt-btn:before {
  content: "";
  background-color: #008037;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: -1;
}

.alt-btn:hover {
  color: #fff;
}

.alt-btn:hover::before {
  top: 0px;
  left: 0px;
}

/** Line Btn Css **/
.line-bnt {
  font-size: 14px;
  color: #252a26;
  font-weight: 600;
  line-height: 1;
}

.line-bnt:hover {
  letter-spacing: 1px;
  color: #252a26;
}

/** Preloader Css **/
.loader-content {
  background: #e8e8e8;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 9999999;
  left: 0;
  top: 0;
  text-align: center;
}

.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #008037;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
          animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
          transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube2::before {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
          transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube3::before {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
          transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube4::before {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

/*
Go Top Style*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 93%;
  right: -10%;
  background-color: #008037;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #008037;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top:hover {
  color: #ffffff;
  background-color: #252a26;
}

.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top:focus {
  color: #ffffff;
}

.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 3%;
  top: 93%;
}

::-webkit-scrollbar {
  width: 5px;
}

/*
Navbar Area Style
======================================================*/
.navbar-area {
  position: relative;
  background-color: transparent;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-area.is-sticky {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.navbar-area .container-fluid {
  max-width: 1720px;
  margin: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.navbar-area.style-three {
  background-color: transparent;
}

.navbar-area.style-three.is-sticky {
  background-color: #3c312b;
}

.desktop-nav {
  padding-top: 0;
  padding-bottom: 0;
}

.desktop-nav .navbar {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 2;
  padding-right: 0;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
}

.desktop-nav .navbar ul {
  margin-bottom: 0;
  list-style-type: none;
}

.desktop-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-right: 0;
  padding-left: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item a {
  font-size: 15px;
  color: #252a26;
  line-height: 1;
  position: relative;
  font-weight: 400;
  padding-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  margin-left: 15px;
  margin-right: 15px;
}

.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle {
  padding-right: 20px;
}

.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::after {
  display: none;
}

.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::before {
  content: "\ea13";
  position: absolute;
  top: 0;
  right: 0;
  font-family: remixicon !important;
  line-height: 1;
  font-size: 17px;
}

.desktop-nav .navbar .navbar-nav .nav-item a:hover, .desktop-nav .navbar .navbar-nav .nav-item a:focus, .desktop-nav .navbar .navbar-nav .nav-item a.active {
  color: #008037;
}

.desktop-nav .navbar .navbar-nav .nav-item a i {
  font-size: 18px;
  line-height: 0;
  position: relative;
  top: 4px;
}

.desktop-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item:hover a, .desktop-nav .navbar .navbar-nav .nav-item:focus a, .desktop-nav .navbar .navbar-nav .nav-item.active a {
  color: #008037;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #ffffff;
  position: absolute;
  visibility: hidden;
  border-radius: 0;
  display: block;
  width: 250px;
  border: none;
  z-index: 99;
  opacity: 0;
  top: 80px;
  left: 0;
  padding: 0;
  border-radius: 4px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #252a26;
  padding: 15px;
  border-bottom: 1px dashed #ededed;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  display: block;
  position: relative;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::after {
  display: none;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::before {
  content: "\EA4E";
  position: absolute;
  top: 14px;
  right: 13px;
  font-family: remixicon !important;
  line-height: 1;
  font-size: 17px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #008037;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: 250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #252a26;
  border-bottom: 1px dashed #ededed;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  position: relative;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.dropdown-toggle::after {
  display: none;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.dropdown-toggle::before {
  content: "\EA4E";
  position: absolute;
  top: 14px;
  right: 13px;
  font-family: remixicon !important;
  line-height: 1;
  font-size: 17px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #008037;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: 250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #000000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #008037;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #000000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #008037;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #000000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #008037;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #000000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #008037;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #000000;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #008037;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #008037;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #008037;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -1px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #008037;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  top: -1px;
  visibility: visible;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #008037;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  top: -15px;
  visibility: visible;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: #008037;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: #008037;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
  border-bottom: none;
}

.desktop-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  top: 100%;
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}

.desktop-nav .navbar .others-options {
  margin-left: 30px;
}

.desktop-nav .navbar .others-options ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.desktop-nav .navbar .others-options ul li {
  margin-right: 20px;
  display: inline-block;
}

.desktop-nav .navbar .others-options ul li:last-child {
  margin-right: 0;
}

.desktop-nav .navbar .others-options ul li .default-btn.login {
  background-color: transparent;
  color: #008037;
}

.desktop-nav .navbar .others-options ul li .default-btn.login:hover {
  background-color: #212529;
  color: #ffffff;
}

.desktop-nav .navbar .others-options .box-btn {
  padding: 10px 15px;
  font-size: 14px;
}

.desktop-nav .navbar .others-options .border-btn {
  font-size: 15px;
}

.desktop-nav.style-three .navbar .navbar-nav .nav-item a {
  color: #ffffff;
}

.desktop-nav.style-three .navbar .others-options ul li .default-btn.login {
  color: #ffffff;
}

.mobile-responsive-nav {
  display: none;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

.is-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 999;
  -webkit-animation: fadeInDown 500ms ease-in-out;
          animation: fadeInDown 500ms ease-in-out;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background: #fff;
}

/*
Others Option For Responsive Area Style
======================================================*/
.others-option-for-responsive {
  display: none !important;
}

.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  right: 60px;
  top: -26px;
}

.others-option-for-responsive .dot-menu .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
}

.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #008037;
}

.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: #008037;
}

.others-option-for-responsive .container {
  position: relative;
}

.others-option-for-responsive .container .container {
  position: absolute;
  right: -2px;
  top: 15px;
  max-width: 320px;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}

.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.others-option-for-responsive .others-options {
  background-color: #ededed;
  padding: 20px;
  text-align: center;
}

.others-option-for-responsive .others-options ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.others-option-for-responsive .others-options ul li {
  margin-right: 20px;
  display: inline-block;
}

.others-option-for-responsive .others-options ul li:last-child {
  margin-right: 0;
}

/*
Banner Area Css
======================================================*/
.banner-area {
  position: relative;
  background: url(../images/banner.jpg);
  background-size: cover;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.banner-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -1;
  left: 0;
  top: 0;
  opacity: 0.5;
}

.banner-area .banner-content span {
  color: #008037;
  font-weight: 500;
  font-size: 15px;
  background: #fff;
  padding: 2px 10px;
}

.banner-area .banner-content span i {
  margin-right: 5px;
  position: relative;
  top: 1px;
}

.banner-area .banner-content h1 {
  font-size: 55px;
  color: #fff;
  margin: 0 0 25px;
  margin-top: 10px;
}

.banner-area .banner-content p {
  color: #fff;
}

.banner-area .banner-content .banner-btn {
  margin-top: 30px;
}

.banner-area .banner-content .banner-btn .box-btn {
  margin-right: 20px;
  color: #fff !important;
}

.banner-area .banner-content .banner-btn .box-btn::before {
  background: #000000;
}

.banner-area .banner-content .banner-btn .box-btn:hover {
  color: #fff;
}

.banner-area .banner-content .count {
  margin-top: 20px;
}

.banner-area .banner-content .count .single-count h3 {
  margin-bottom: 0 !important;
  color: #008037;
}

.banner-area .banner-search {
  position: relative;
  padding: 60px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.banner-area .price-filter {
  margin-top: 10px;
}

.banner-area .price-filter span.prg {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
}

.banner-area .find-now {
  max-width: 70%;
  margin: 0 auto;
  margin-top: 30px;
}

/*
Error Area Css
======================================================*/
.error-area {
  position: relative;
  text-align: center;
  height: 100vh;
  max-width: 650px;
  margin: auto;
  padding: 50px 0;
}

.error-area h3 {
  color: #e6335a;
  margin-top: 20px;
}

/* 
Page Title Area Css
=====================================================*/
.page-title-area {
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #008037;
  background: url(../images/page.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  text-align: center;
  z-index: 1;
}

.page-title-area .page-title-content h2 {
  margin-bottom: 15px;
  color: #071c07;
  font-size: 40px;
  font-weight: 700;
}

.page-title-area .page-title-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 10px;
  margin-bottom: 0;
  color: #071c07;
}

.page-title-area .page-title-content ul li {
  display: inline-block;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  padding-right: 15px;
  padding-left: 15px;
  color: #071c07;
}

.page-title-area .page-title-content ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  right: -7px;
  background-color: #008037;
  width: 8px;
  height: 8px;
}

.page-title-area .page-title-content ul li:last-child::before {
  display: none;
}

.page-title-area .page-title-content ul li a {
  color: #071c07;
}

.page-title-area .page-title-content ul li a i {
  position: relative;
  top: 2px;
  left: -2px;
}

.page-title-area .page-title-content ul li a:hover {
  color: #008037;
}

.page-title-area .page-title-content ul .active {
  color: #008037;
}

/* 
Partner Area Css
=====================================================*/
.partner-area {
  position: relative;
}

.partner-area .rating {
  float: right;
}

.partner-area .rating .rate {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.partner-area .rating .rate i {
  margin-right: 5px;
  color: #f8b42a;
}

.partner-area .single-partner {
  position: relative;
  padding: 15px;
  text-align: center;
}

/*
Service Area Css
======================================================*/
.Service-area {
  position: relative;
}

.Service-area .single-service {
  position: relative;
  background: #fff;
  border-top: 2px solid #7fbf9a6b;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 20px;
}

.Service-area .single-service .service-inner img {
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  width: 90px;
  height: 90px;
  text-align: center;
  -o-object-fit: contain;
     object-fit: contain;
}

.Service-area .single-service .service-inner .content h3 {
  color: #008037;
}

.Service-area .single-service:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.service-area-2 {
  position: relative;
  background-color: #f2f3f5;
}

.service-area-2::before {
  position: absolute;
  content: "";
  background: url(../images/service/bg.svg);
  opacity: 0.2;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service-area-2 .single-service .service-inner img {
  width: 80px;
  height: 80px;
  text-align: center;
  -o-object-fit: contain;
     object-fit: contain;
}

.service-area-2 .single-service .service-inner .content h3 {
  color: #008037;
}

/*
Featured Area Css
======================================================*/
.featured-area {
  position: relative;
}

.featured-area .single-featured {
  position: relative;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.featured-area .single-featured .featured-inner {
  position: relative;
  height: 270px;
  overflow: hidden;
}

.featured-area .single-featured .featured-inner .homes-img {
  position: relative;
  overflow: hidden;
  height: 270px;
  width: 100%;
}

.featured-area .single-featured .featured-inner .homes-img img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  height: 270px;
  overflow: hidden;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.featured-area .single-featured .featured-inner .badges {
  position: absolute;
  top: 10px;
  padding: 0 10px;
  width: 100%;
}

.featured-area .single-featured .featured-inner .badges .featured {
  background: #008037;
  color: #fff;
  padding: 2px 4px;
}

.featured-area .single-featured .featured-inner .badges .sale {
  background: #14100f;
  color: #fff;
  padding: 0px 5px;
  float: right;
}

.featured-area .single-featured .featured-inner .product-location {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 70%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px 15px;
  margin: 0;
}

.featured-area .single-featured .featured-inner .product-location a {
  color: #fff;
}

.featured-area .single-featured .featured-inner .product-location .popup {
  display: inline-block;
}

.featured-area .single-featured .featured-inner .product-location .popup .popup-img,
.featured-area .single-featured .featured-inner .product-location .popup .popup-video {
  width: 30px;
  height: 30px;
  background: #5c727d9e;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.featured-area .single-featured .content {
  padding: 20px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.featured-area .single-featured .content .price {
  color: #008037;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
}

.featured-area .single-featured .content .details {
  position: relative;
  overflow: hidden;
}

.featured-area .single-featured .content .details ul li {
  width: 45%;
  float: left;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 17px !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

.featured-area .single-featured .content .details ul li span {
  margin-left: 5px;
}

.featured-area .single-featured .content .details ul li i {
  margin-right: 10px;
  height: 30px;
  width: 30px;
  border: none;
  display: inline-block;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  background: #008037;
  color: #f5faff;
}

.featured-area .single-featured .content h3 {
  margin-bottom: 5px;
  overflow: hidden;
  display: block;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.featured-area .single-featured .content h3 a {
  overflow: hidden;
  display: block;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  color: #252a26;
}

.featured-area .single-featured .content .address {
  color: #666;
  margin-bottom: 5px;
}

.featured-area .single-featured .content .address i.ri-map-pin-2-line {
  position: relative;
  top: 2px;
  left: -5px;
}

.featured-area .single-featured .content:hover .featured-inner .homes-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.featured-area .tittle {
  padding-right: 30%;
  margin-bottom: 30px;
}

.featured-area .owl-dots {
  position: relative;
  text-align: center;
  left: 0;
  width: 100%;
}

.featured-area .owl-dots button.owl-dot {
  width: 7px;
  height: 7px;
  margin-right: 5px;
  background: #00803791;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.featured-area .owl-dots button.owl-dot.active {
  background-color: #008037;
  width: 15px;
}

.featured-carousel-two {
  position: relative;
}

.featured-carousel-two .single-featured {
  position: relative;
}

.featured-carousel-two .single-featured .content p {
  font-size: 14px;
}

.featured-carousel-two .single-featured .content h3 a {
  font-size: 16px;
}

.featured-carousel-two .single-featured .content .price {
  font-size: 17px;
  font-style: normal;
}

.featured-carousel-two .single-featured .content .details ul li {
  width: auto;
  margin-right: 10px;
}

.featured-carousel-two .single-featured .content .details ul li span {
  margin-left: 0;
  font-weight: bold;
}

.featured-carousel-two .single-featured .content .details ul li i {
  background: #ededed78;
  color: #008037;
  font-size: 18px;
  font-weight: 500;
}

.single-featured {
  position: relative;
  margin-bottom: 30px;
}

.single-featured .featured-inner {
  position: relative;
  height: 270px;
  overflow: hidden;
}

.single-featured .featured-inner .homes-img {
  position: relative;
  overflow: hidden;
  height: 270px;
  width: 100%;
}

.single-featured .featured-inner .homes-img img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
  height: 270px;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.single-featured .featured-inner .badges {
  position: absolute;
  top: 10px;
  padding: 0 10px;
  width: 100%;
}

.single-featured .featured-inner .badges .featured {
  background: #008037;
  color: #fff;
  padding: 2px 4px;
}

.single-featured .featured-inner .badges .sale {
  background: #14100f;
  color: #fff;
  padding: 0px 5px;
  float: right;
}

.single-featured .featured-inner .product-location {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 70%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px 15px;
  margin: 0;
}

.single-featured .featured-inner .product-location a {
  color: #fff;
}

.single-featured .featured-inner .product-location .popup {
  display: inline-block;
}

.single-featured .featured-inner .product-location .popup .popup-img,
.single-featured .featured-inner .product-location .popup .popup-video {
  width: 30px;
  height: 30px;
  background: #5c727d9e;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.single-featured .content {
  padding: 20px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.single-featured .content .price {
  color: #008037;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
}

.single-featured .content .details {
  position: relative;
  overflow: hidden;
}

.single-featured .content .details ul li {
  width: 45%;
  float: left;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 17px !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

.single-featured .content .details ul li span {
  margin-left: 5px;
}

.single-featured .content .details ul li i {
  margin-right: 10px;
  height: 30px;
  width: 30px;
  border: none;
  display: inline-block;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  background: #008037;
  color: #f5faff;
}

.single-featured .content h3 {
  margin-bottom: 5px;
  overflow: hidden;
  display: block;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.single-featured .content h3 a {
  color: #252a26;
}

.single-featured .content .address {
  color: #666;
  margin-bottom: 5px;
}

.single-featured .content .address i.ri-map-pin-2-line {
  position: relative;
  top: 2px;
  left: -5px;
}

.single-featured .content:hover .homes-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.single-featured:hover .featured-inner .homes-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*
Play Button Area Css
======================================================*/
.play-btn.play-btn-big .play-icon {
  background: #fff;
  color: #008037;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.play-btn.play-btn-big .play-icon:hover {
  background-color: #008037;
  color: #fff;
}

.play-btn .play-icon {
  display: inline-block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #008037;
  color: #fff;
  line-height: 58px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.play-btn .play-icon i {
  font-size: 30px;
}

.play-btn .play-icon.style-1 {
  margin-right: 24px;
}

.play-btn .play-icon.style-2 {
  margin-right: 0;
}

.play-btn .play-icon::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid #008037;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}

.play-btn .play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #008037;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}

.play-btn .play-text {
  color: #70778b;
  display: inline-block;
  position: relative;
  line-height: 24px;
  font-weight: 600;
  font-size: 15px;
}

.play-btn .play-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  text-transform: capitalize;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0;
  }
}

/*
Blog Area Css
======================================================*/
.home-blog-area {
  position: relative;
}

.home-blog-area .tittle {
  padding-right: 30%;
  margin-bottom: 30px;
}

.home-blog-area .single-blog {
  background: #fff;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 2px 2px 20px 4px rgba(0, 0, 0, 0.07);
          box-shadow: 2px 2px 20px 4px rgba(0, 0, 0, 0.07);
  z-index: 1;
}

.home-blog-area .single-blog .content {
  padding: 30px;
}

.home-blog-area .single-blog .content ul {
  padding: 0;
  margin: 0;
}

.home-blog-area .single-blog .content ul li {
  font-size: 13px;
  display: inline-block;
}

.home-blog-area .single-blog .content ul li a {
  position: relative;
  margin-left: 25px;
}

.home-blog-area .single-blog .content ul li a::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  left: -18px;
  top: 11px;
  background: #212529;
}

.home-blog-area .single-blog .content span {
  color: #293a5c;
  font-weight: 500;
}

.home-blog-area .single-blog .content h3 {
  margin-top: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 0;
}

.home-blog-area .single-blog .content p {
  margin-top: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.home-blog-area .single-blog .content .line-bnt {
  color: #051242;
}

.home-blog-area .single-blog::after {
  position: absolute;
  content: "";
  background: #008037;
  opacity: 0.8;
  bottom: 0;
  left: 100%;
  right: 0;
  width: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
  height: 100%;
}

.home-blog-area .single-blog:hover::before {
  width: 100%;
  left: 0;
}

.home-blog-area .single-blog:hover::after {
  width: 100%;
  left: 0;
}

.home-blog-area .single-blog:hover span,
.home-blog-area .single-blog:hover h3 {
  color: #ffffff;
}

.home-blog-area .single-blog:hover p {
  color: #ffffff;
}

.home-blog-area .single-blog:hover ul li {
  color: #ffffff;
}

.home-blog-area .single-blog:hover ul li a {
  color: #ffffff;
}

.home-blog-area .single-blog:hover .line-bnt {
  color: #ffffff;
}

.home-blog-area .single-blog .blog-img {
  height: 270px;
  overflow: hidden;
}

.home-blog-area .single-blog .blog-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.home-blog-area .blog-btn {
  margin-top: 20px;
}

.home-blog-area .blog-btn p {
  font-size: 17px;
  color: #293a5c;
  margin-bottom: 0;
}

.home-blog-area .blog-btn p a {
  color: #3d59fa;
  text-decoration: underline;
}

/*
Neighborhoods Area Css
======================================================*/
.neighborhoods-area {
  position: relative;
  background: url(../images/nei.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.neighborhoods-area:before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background: #fff;
  opacity: 0.7;
  z-index: -1;
}

.neighborhoods-area .single-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  border-bottom: 1px solid #efefef;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background: white;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}

.neighborhoods-area .single-item::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #008037;
  -webkit-transform-origin: center right;
          transform-origin: center right;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.45s ease-in-out;
  transition: -webkit-transform 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
}

.neighborhoods-area .single-item .thumb {
  float: left;
  height: 160px;
  overflow: hidden;
  position: relative;
  width: 160px;
  margin-right: 15px;
}

.neighborhoods-area .single-item .thumb .fullimage {
  width: 165px;
  height: 160px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
  position: relative;
  background-color: #252a26;
}

.neighborhoods-area .single-item .thumb .fullimage img.cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.neighborhoods-area .single-item .info {
  overflow: hidden;
}

.neighborhoods-area .single-item .info span {
  display: block;
  color: #666666;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.neighborhoods-area .single-item .info .title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 600;
}

.neighborhoods-area .single-item .info .title a {
  display: inline-block;
  color: #474c40;
  font-size: 16px;
}

.neighborhoods-area .single-item .info p {
  margin-bottom: 0;
  font-weight: bold;
  line-height: normal;
}

.neighborhoods-area .single-item:hover {
  background: #008037;
}

.neighborhoods-area .single-item:hover span {
  color: #fff;
}

.neighborhoods-area .single-item:hover .title a {
  color: #fff;
}

.neighborhoods-area .single-item:hover::before {
  -webkit-transform-origin: center left;
          transform-origin: center left;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.neighborhoods-area .section-btn {
  text-align: right;
}

.neighborhoods-area .section-btn .box-btn {
  text-align: right;
}

.neighborhoods-area .tittle {
  padding-right: 30%;
  margin-bottom: 30px;
}

.neighborhoods-area-2 {
  position: relative;
  background: none;
  overflow: hidden;
}

.neighborhoods-area-2 .single-nei {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.neighborhoods-area-2 .single-nei .content {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 70%);
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  text-align: center;
  padding-bottom: 30px;
}

.neighborhoods-area-2 .single-nei .content h3 {
  color: #fff;
}

.neighborhoods-area-2 .single-nei .content span {
  background: #008037;
  color: #fff;
  padding: 3px 10px;
}

.neighborhoods-area-2 .single-nei img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.neighborhoods-area-2 .single-nei.one {
  height: 265px;
  overflow: hidden;
}

.neighborhoods-area-2 .single-nei.two {
  height: 550px;
  margin-bottom: 0px !important;
}

.neighborhoods-area-2 .single-nei:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/*
Contact Area Css
======================================================*/
.home-contact-area .content {
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  border-radius: 4px;
  padding: 30px;
}

.home-contact-area .content input.form-control {
  height: 55px;
  border: 1px solid #eeeeee;
  margin-bottom: 20px;
  padding-left: 25px;
  background-color: #f9f9f9;
}

.home-contact-area .content input.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #008037;
}

.home-contact-area .content textarea.form-control {
  width: 100%;
  border: 1px solid #eeeeee;
  max-height: 170px;
  min-height: 170px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-left: 25px;
  padding-top: 15px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
}

.home-contact-area .content textarea.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #008037;
}

.home-contact-area .content button {
  border: none;
  padding: 15px 35px;
  display: table;
  text-align: center;
  margin: 0 auto -8px;
}

.home-contact-area .list-unstyled {
  color: #dc3545;
  margin-top: -13px;
  margin-bottom: -8px;
  font-size: 13px;
}

.home-contact-area .text-danger {
  color: #dc3545 !important;
  margin-top: 15px;
}

.home-contact-area .text-success {
  color: green !important;
}

.home-contact-area #msgSubmit {
  text-align: center;
}

.home-contact-area .form-group {
  margin-bottom: 30px;
}

.home-2-contact .content {
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  border-radius: 4px;
}

.home-2-contact .content input.form-control {
  border-radius: 4px;
}

.home-2-contact .content textarea.form-control {
  border-radius: 4px;
}

.home-2-contact .contact-map {
  width: 100%;
  height: 100%;
}

.home-2-contact .contact-map iframe {
  width: 100%;
  height: 100%;
}

.contact-area .single-contact {
  text-align: center;
  position: relative;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 30px;
}

.contact-area .single-contact .icon {
  width: 45px;
  height: 45px;
  background-color: #008037;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
  margin-bottom: 20px;
}

.contact-area .single-contact .icon i {
  font-size: 23px;
  line-height: 45px;
}

.contact-area .single-contact:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/*
About Area Css
======================================================*/
.home-about-area {
  position: relative;
}

.home-about-area .about-img {
  background: url(../images/about.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-animation: none;
          animation: none;
}

.home-about-area .about-img .play-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}

.home-about-area .about-img .play-btn .play-icon:before, .home-about-area .about-img .play-btn .play-icon:after {
  border: 2px solid #008037;
}

.home-about-area .about-img img {
  display: none;
}

.home-about-area .service-img {
  position: relative;
  padding-left: 30px;
}

.home-about-area .service-img:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 85%;
  width: 30px;
  background: #008037;
}

.home-about-area .about-content {
  position: relative;
  margin: 0 auto;
  max-width: 85%;
}

.home-about-area .about-content span {
  background: #0080371c;
  color: #008037;
  padding: 3px 20px;
  border-radius: 7px;
}

.home-about-area .about-content h3 {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.home-about-area .about-content .about-list {
  margin-top: 20px;
}

.home-about-area .about-content .about-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}

.home-about-area .about-content .about-list li .icon {
  width: 35px;
  height: 35px;
  background-color: #0080371c;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  margin-right: 10px;
}

.home-about-area .about-content .about-list li .icon i {
  font-size: 20px;
  line-height: 35px;
  color: #008037;
}

.about-agent-area {
  position: relative;
}

.about-agent-area .single-agent {
  position: relative;
  height: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.about-agent-area .single-agent img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.about-agent-area .single-agent .info {
  padding: 20px;
  text-align: center;
  border: 2px solid #dddddd5e;
}

.about-agent-area .single-agent .info ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-agent-area .single-agent .info ul li a {
  width: 35px;
  height: 35px;
  background-color: #008037;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
  margin-right: 10px;
}

.about-agent-area .single-agent .info ul li a i {
  font-size: 20px;
  line-height: 35px;
}

/*
Product Details Area Css
======================================================*/
.product-details-area {
  position: relative;
  background-color: #f5faff;
}

.product-details-area .pro-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
}

.product-details-area .pro-wrapper .listing-title-bar span {
  font-size: 14px;
  background: #008037;
  color: #fff;
  padding: 2px 15px;
}

.product-details-area .pro-wrapper .listing-title-bar h3 {
  margin-top: 10px;
}

.product-details-area .pro-wrapper .listing-title-bar h4 {
  font-size: 20px;
  color: #008037;
}

.product-details-area .pro-wrapper .listing-title-bar a {
  color: #6c757d;
}

.product-details-area .detail-slider {
  position: relative;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.product-details-area .detail-slider .details-swiper-top {
  overflow: hidden;
}

.product-details-area .detail-slider .details-swiper-top .swiper-slide {
  height: 450px;
}

.product-details-area .detail-slider .details-swiper-top .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-details-area .detail-slider .details-swiper {
  margin-top: 20px;
}

.product-details-area .detail-slider .details-swiper .swiper-slide {
  height: 100px;
  overflow: hidden;
  opacity: 0.6;
}

.product-details-area .details-swiper .swiper-slide-thumb-active {
  opacity: 1 !important;
}

.product-details-area .swiper-button-next,
.product-details-area .swiper-button-prev {
  top: 50%;
  background: #fff;
}

.product-details-area .swiper-button-next:after,
.product-details-area .swiper-button-prev:after {
  font-size: 15px;
  color: #008037;
}

.product-details-area .overview-area {
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.product-details-area .overview-area .gallery-icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.product-details-area .overview-area .gallery-icon-box .item-icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
}

.product-details-area .overview-area .gallery-icon-box .item-icon-box .item-icon i {
  font-size: 22px;
  height: 40px;
  width: 40px;
  border-style: solid;
  border-width: 1px;
  border-color: #e8e9f1;
  background-color: #ffffff;
  display: inline-block;
  line-height: 38px;
  text-align: center;
}

.product-details-area .overview-area .gallery-icon-box .item-icon-box .item-number {
  margin-left: 15px;
}

.product-details-area .overview-area .gallery-icon-box .item-icon-box .item-number li {
  color: #878c9f;
  font-size: 15px;
  line-height: normal;
}

.product-details-area .overview-area .gallery-icon-box .item-icon-box .item-number .deep-clr {
  color: #212121;
  font-weight: 500;
  font-size: 15px;
}

.product-details-area .overview-area .gallery-icon-box .item-icon-box-amen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 30px;
}

.product-details-area .overview-area .gallery-icon-box .item-icon-box-amen .item-icon i {
  font-size: 22px;
  height: 40px;
  width: 40px;
  border-style: solid;
  border-width: 1px;
  border-color: #e8e9f1;
  background-color: #ffffff;
  display: inline-block;
  line-height: 38px;
  text-align: center;
}

.product-details-area .overview-area .gallery-icon-box .item-icon-box-amen .item-number {
  margin-left: 15px;
}

.product-details-area .overview-area .gallery-icon-box .item-icon-box-amen .item-number li {
  color: #878c9f;
  font-size: 15px;
  line-height: normal;
}

.product-details-area .overview-area .gallery-icon-box .item-icon-box-amen .item-number .deep-clr {
  color: #212121;
  font-weight: 500;
  font-size: 15px;
}

.product-details-area .product-details-info {
  margin-top: 20px;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.product-details-area #listing-location {
  margin-top: 20px;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.product-details-area #listing-location iframe {
  width: 100%;
  height: 300px;
}

.product-details-area .details-sidebar {
  position: relative;
}

.product-details-area .details-sidebar .widget-boxed {
  position: relative;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.product-details-area .details-sidebar .widget-boxed .author-box {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.product-details-area .details-sidebar .widget-boxed .author-box h3 {
  margin-bottom: 0;
  line-height: normal;
  margin-top: 10px;
}

.product-details-area .details-sidebar .widget-boxed .author-box img {
  float: left;
  width: 85px;
  height: 85px;
  border: 4px solid #fff;
  margin-right: 15px;
}

.product-details-area .details-sidebar .widget-boxed .author-contact li {
  color: #666;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 15px;
}

.product-details-area .details-sidebar .widget-boxed .author-contact li i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #fff;
  color: #008037;
  border-radius: 50%;
  font-size: 18px;
  margin-right: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  top: 2px !important;
  left: 0 !important;
}

.product-details-area .details-sidebar .widget-boxed .author-contact li a {
  color: #666;
}

.product-details-area .details-sidebar .widget-boxed .recent-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-details-area .details-sidebar .widget-boxed .recent-main .recent-img {
  max-width: 25%;
  margin-right: 10px;
}

.product-details-area .details-sidebar .widget-boxed .recent-main .recent-img img {
  width: 90px;
  height: 80px;
  margin-right: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-details-area .details-sidebar .widget-boxed .recent-main h6 {
  overflow: hidden;
  display: block;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  margin-bottom: 0px;
}

.product-details-area .details-sidebar .widget-boxed .recent-main p {
  margin-bottom: 0px;
  font-size: 14px;
}

.product-details-area .details-sidebar .widget-boxed .recent-main .info-img {
  max-width: 75%;
}

.product-details-area .details-sidebar .widget-boxed-body {
  position: relative;
}

.product-details-area .details-sidebar .widget-boxed-body .owl-nav {
  position: absolute;
  top: -45px;
  right: 0;
}

.product-details-area .details-sidebar .widget-boxed-body .owl-nav .owl-prev,
.product-details-area .details-sidebar .widget-boxed-body .owl-nav .owl-next {
  width: 25px;
  height: 25px;
  background: #008037;
  color: #fff;
  padding: 3px;
}

.product-details-area .details-sidebar .widget-boxed-body .owl-nav .owl-prev i,
.product-details-area .details-sidebar .widget-boxed-body .owl-nav .owl-next i {
  font-size: 18px;
  line-height: 24px;
}

.product-details-area .details-sidebar .widget-boxed-body .owl-nav .owl-prev {
  margin-right: -3px;
}

.product-details-area .details-sidebar .widget-boxed-body button.owl-next {
  margin-left: 10px;
}

.product-details-area .details-sidebar .form-control {
  height: 42px;
}

.product-details-area .details-sidebar textarea.form-control {
  height: 150px;
}

/*
Comment Area Css
======================================================*/
.comments-area {
  padding: 25px;
  margin-top: 30px;
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
  background-color: #ffffff;
}

.comments-area .comments-title {
  position: relative;
  margin-bottom: 30px;
  line-height: initial;
  font-size: 22px;
}

.comments-area .comments-title::before {
  content: "";
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: #008037;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.comments-area ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

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

.comments-area .children {
  margin-left: 40px;
}

.comments-area .comment-body {
  border-bottom: 1px solid #eeeeee;
  padding-left: 65px;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.comments-area .comment-body .reply {
  margin-top: 15px;
}

.comments-area .comment-body .reply a {
  border: 1px solid #ded9d9;
  color: #252a26;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
}

.comments-area .comment-body .reply a:hover {
  color: #ffffff;
  background-color: #008037;
  border-color: #008037;
}

.comments-area .comment-meta {
  margin-bottom: 0.8em;
}

.comments-area .comment-author {
  font-size: 16px;
  margin-bottom: 0.4em;
  position: relative;
  z-index: 2;
}

.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
  border-radius: 50%;
}

.comments-area .comment-author .fn {
  font-weight: 600;
  color: #252a26;
  font-size: 18px;
}

.comments-area .comment-author .says {
  display: none;
}

.comments-area .comment-metadata {
  color: #666666;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}

.comments-area .comment-metadata a {
  color: #666666;
  font-size: 11px;
}

.comments-area .comment-metadata a:hover {
  color: #008037;
}

.comments-area .comment-content p {
  font-size: 14px;
}

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

.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 15px;
  position: relative;
  font-size: 22px;
}

.comments-area .comment-respond .comment-reply-title::before {
  content: "";
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: #008037;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  display: inline-block;
}

.comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.comments-area .comment-respond .comment-form-comment {
  margin-bottom: 30px;
  float: left;
  width: 100%;
}

.comments-area .comment-respond label {
  display: block;
  font-weight: 500;
  color: #252a26;
  margin-bottom: 5px;
}

.comments-area .comment-respond input[type="datetime-local"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond input[type="datetime-local"]:focus {
  border-color: #008037;
}

.comments-area .comment-respond input[type="week"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond input[type="week"]:focus {
  border-color: #008037;
}

.comments-area .comment-respond input[type="month"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond input[type="month"]:focus {
  border-color: #008037;
}

.comments-area .comment-respond input[type="text"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond input[type="text"]:focus {
  border-color: #008037;
}

.comments-area .comment-respond input[type="email"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond input[type="email"]:focus {
  border-color: #008037;
}

.comments-area .comment-respond input[type="url"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond input[type="url"]:focus {
  border-color: #008037;
}

.comments-area .comment-respond input[type="password"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond input[type="password"]:focus {
  border-color: #008037;
}

.comments-area .comment-respond input[type="search"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond input[type="search"]:focus {
  border-color: #008037;
}

.comments-area .comment-respond input[type="tel"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond input[type="tel"]:focus {
  border-color: #008037;
}

.comments-area .comment-respond input[type="number"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond input[type="number"]:focus {
  border-color: #008037;
}

.comments-area .comment-respond textarea {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond textarea:focus {
  border-color: #008037;
}

.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 6px;
}

.comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #666666;
  font-weight: normal;
}

.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}

.comments-area .comment-respond .form-submit input {
  background: #008037;
  border: none;
  color: #ffffff;
  padding: 14px 30px 12px;
  display: inline-block;
  cursor: pointer;
  outline: 0;
  border-radius: 0;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
}

.comments-area .comment-respond .form-submit input:hover {
  color: #ffffff;
  background-color: #252a26;
}

.comments-area .comment-respond .form-submit input:focus {
  color: #ffffff;
  background-color: #008037;
}

/* 
Pagenavigation Area Css
=====================================================*/
.page-navigation-area {
  text-align: center;
  margin: 20px auto 0;
  display: table;
}

.page-navigation-area .page-link {
  background-color: #008037;
  width: 40px;
  height: 40px;
  line-height: 24px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #ffffff !important;
  line-height: 23px;
}

.page-navigation-area .page-link i {
  font-size: 21px;
}

.page-navigation-area .page-link:hover {
  color: #ffffff;
  background-color: #000;
}

.page-navigation-area .page-link:focus {
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.page-navigation-area .page-item {
  padding: 0 8px 0;
}

.page-navigation-area .page-item:first-child .page-link {
  border-radius: 0 !important;
}

.page-navigation-area .page-item:last-child .page-link {
  border-radius: 0 !important;
}

.page-navigation-area .page-link.page-links i::before {
  margin-left: -4px;
}

.page-navigation-area .page-item.active .page-link {
  z-index: 1;
  color: #ffffff;
  background-color: #000;
}

/*
Blog Details Area Style
=====================================================*/
.blog-details-area {
  /*
	Sidebar Widget Area Style
	================================*/
}

.blog-details-area .blog-details-desc .article-image {
  position: relative;
  background-color: #252a26;
}

.blog-details-area .blog-details-desc .article-content {
  margin-top: 30px;
}

.blog-details-area .blog-details-desc .article-content .entry-meta {
  margin-bottom: -10px;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li {
  position: relative;
  display: inline-block;
  color: #008037;
  margin-right: 21px;
  font-size: 14px;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li span {
  display: inline-block;
  color: #008037;
  font-weight: 500;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li a {
  display: inline-block;
  color: #666666;
  font-size: 13px;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li a:hover {
  color: #008037;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li i {
  color: #008037;
  margin-right: 2px;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  right: -15px;
  width: 6px;
  height: 1px;
  background: #008037;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li:last-child {
  margin-right: 0;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li:last-child::before {
  display: none;
}

.blog-details-area .blog-details-desc .article-content h3 {
  margin-bottom: 13px;
  margin-top: 25px;
  font-size: 30px;
}

.blog-details-area .blog-details-desc .article-content .wp-block-gallery.columns-3 {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.blog-details-area .blog-details-desc .article-content .wp-block-gallery.columns-3 li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 10px;
  padding-left: 10px;
}

.blog-details-area .blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}

.blog-details-area .blog-details-desc .article-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

.blog-details-area .blog-details-desc .article-footer .article-tags {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-area .blog-details-desc .article-footer .article-tags span {
  display: inline-block;
  color: #008037;
  font-size: 20px;
  margin-right: 5px;
  position: relative;
  top: 4px;
}

.blog-details-area .blog-details-desc .article-footer .article-tags a {
  display: inline-block;
  color: #666666;
  font-weight: 600;
}

.blog-details-area .blog-details-desc .article-footer .article-tags a:hover {
  color: #008037;
}

.blog-details-area .blog-details-desc .article-footer .article-share {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-area .blog-details-desc .article-footer .article-share .social {
  padding-left: 0;
  list-style-type: none;
  text-align: right;
  margin-bottom: 0;
}

.blog-details-area .blog-details-desc .article-footer .article-share .social li {
  display: inline-block;
}

.blog-details-area .blog-details-desc .article-footer .article-share .social li span {
  display: inline-block;
  margin-right: 2px;
  font-weight: 500;
  color: #666666;
}

.blog-details-area .blog-details-desc .article-footer .article-share .social li a {
  display: block;
  color: #ffffff;
  width: 32px;
  height: 32px;
  line-height: 33px;
  border-radius: 50%;
  background-color: #008037;
  text-align: center;
  font-size: 14px;
}

.blog-details-area .blog-details-desc .article-footer .article-share .social li a:hover {
  -webkit-animation: rubberBand 1s linear;
          animation: rubberBand 1s linear;
}

.blog-details-area .blog-details-desc .post-navigation {
  margin-top: 30px;
}

.blog-details-area blockquote {
  overflow: hidden;
  background-color: #f2f6f7;
  padding: 50px !important;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  margin-top: 20px;
  border-radius: 4px;
}

.blog-details-area blockquote p {
  color: #252a26;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 600;
  font-size: 17px !important;
  text-align: center;
}

.blog-details-area blockquote cite {
  display: none;
}

.blog-details-area blockquote::before {
  color: #008037;
  content: "\ec51";
  position: absolute;
  left: 0px;
  top: -20px;
  z-index: -1;
  font-family: "remixicon";
  font-size: 140px;
  opacity: 0.5;
}

.blog-details-area .comments-area {
  padding: 25px;
  margin-top: 30px;
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
  background-color: #ffffff;
}

.blog-details-area .comments-area .comments-title {
  position: relative;
  margin-bottom: 30px;
  line-height: initial;
  font-size: 22px;
}

.blog-details-area .comments-area .comments-title::before {
  content: "";
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: #008037;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-details-area .comments-area ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .comments-area .children {
  margin-left: 40px;
}

.blog-details-area .comments-area .comment-body {
  border-bottom: 1px solid #eeeeee;
  padding-left: 65px;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.blog-details-area .comments-area .comment-body .reply {
  margin-top: 15px;
}

.blog-details-area .comments-area .comment-body .reply a {
  border: 1px solid #ded9d9;
  color: #252a26;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
}

.blog-details-area .comments-area .comment-body .reply a:hover {
  color: #ffffff;
  background-color: #008037;
  border-color: #008037;
}

.blog-details-area .comments-area .comment-meta {
  margin-bottom: 0.8em;
}

.blog-details-area .comments-area .comment-author {
  font-size: 16px;
  margin-bottom: 0.4em;
  position: relative;
  z-index: 2;
}

.blog-details-area .comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
  border-radius: 50%;
}

.blog-details-area .comments-area .comment-author .fn {
  font-weight: 600;
  color: #252a26;
  font-size: 18px;
}

.blog-details-area .comments-area .comment-author .says {
  display: none;
}

.blog-details-area .comments-area .comment-metadata {
  color: #666666;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}

.blog-details-area .comments-area .comment-metadata a {
  color: #666666;
  font-size: 11px;
}

.blog-details-area .comments-area .comment-metadata a:hover {
  color: #008037;
}

.blog-details-area .comments-area .comment-content p {
  font-size: 14px;
}

.blog-details-area .comments-area .comment-respond {
  margin-top: 30px;
}

.blog-details-area .comments-area .comment-respond .comment-reply-title {
  margin-bottom: 15px;
  position: relative;
  font-size: 22px;
}

.blog-details-area .comments-area .comment-respond .comment-reply-title::before {
  content: "";
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: #008037;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-details-area .comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  display: inline-block;
}

.blog-details-area .comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.blog-details-area .comments-area .comment-respond .comment-form-comment {
  margin-bottom: 30px;
  float: left;
  width: 100%;
}

.blog-details-area .comments-area .comment-respond label {
  display: block;
  font-weight: 500;
  color: #252a26;
  margin-bottom: 5px;
}

.blog-details-area .comments-area .comment-respond input[type="datetime-local"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="datetime-local"]:focus {
  border-color: #008037;
}

.blog-details-area .comments-area .comment-respond input[type="week"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="week"]:focus {
  border-color: #008037;
}

.blog-details-area .comments-area .comment-respond input[type="month"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="month"]:focus {
  border-color: #008037;
}

.blog-details-area .comments-area .comment-respond input[type="text"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="text"]:focus {
  border-color: #008037;
}

.blog-details-area .comments-area .comment-respond input[type="email"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="email"]:focus {
  border-color: #008037;
}

.blog-details-area .comments-area .comment-respond input[type="url"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="url"]:focus {
  border-color: #008037;
}

.blog-details-area .comments-area .comment-respond input[type="password"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="password"]:focus {
  border-color: #008037;
}

.blog-details-area .comments-area .comment-respond input[type="search"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="search"]:focus {
  border-color: #008037;
}

.blog-details-area .comments-area .comment-respond input[type="tel"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="tel"]:focus {
  border-color: #008037;
}

.blog-details-area .comments-area .comment-respond input[type="number"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="number"]:focus {
  border-color: #008037;
}

.blog-details-area .comments-area .comment-respond textarea {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond textarea:focus {
  border-color: #008037;
}

.blog-details-area .comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
}

.blog-details-area .comments-area .comment-respond .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
  margin-bottom: 20px;
}

.blog-details-area .comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.blog-details-area .comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog-details-area .comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 6px;
}

.blog-details-area .comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #666666;
  font-weight: normal;
}

.blog-details-area .comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}

.blog-details-area .comments-area .comment-respond .form-submit input {
  background: #008037;
  border: none;
  color: #ffffff;
  padding: 14px 30px 12px;
  display: inline-block;
  cursor: pointer;
  outline: 0;
  border-radius: 0;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
}

.blog-details-area .comments-area .comment-respond .form-submit input:hover {
  color: #ffffff;
  background-color: #252a26;
}

.blog-details-area .comments-area .comment-respond .form-submit input:focus {
  color: #ffffff;
  background-color: #008037;
}

.blog-details-area .widget-area .widget {
  margin-top: 35px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
}

.blog-details-area .widget-area .widget .post-wrap {
  padding: 20px;
}

.blog-details-area .widget-area .widget:first-child {
  margin-top: 0;
}

.blog-details-area .widget-area .widget .widget-title {
  text-transform: capitalize;
  position: relative;
  font-size: 20px;
  margin-bottom: 0;
  background-color: #ececec;
  padding: 10px 20px;
  color: #252a26;
  position: relative;
}

.blog-details-area .widget-area .widget .widget-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #008037;
}

.blog-details-area .widget-area .widget_search form {
  position: relative;
}

.blog-details-area .widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.blog-details-area .widget-area .widget_search form .screen-reader-text {
  display: none;
}

.blog-details-area .widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .widget-area .widget_search form .search-field:focus {
  border-color: #008037;
}

.blog-details-area .widget-area .widget_search form button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  border: none;
  color: #ffffff;
  background-color: #008037;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}

.blog-details-area .widget-area .widget_search form button:hover {
  background-color: #252a26;
}

.blog-details-area .widget-area .widget-peru-posts-thumb {
  position: relative;
  overflow: hidden;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item {
  overflow: hidden;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #efefef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 80px;
  margin-right: 15px;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
  position: relative;
  background-color: #252a26;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg1 {
  background-image: url(../../assets/images/blog/1.jpg);
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg2 {
  background-image: url(../../assets/images/blog/2.jpg);
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg3 {
  background-image: url(../../assets/images/blog/3.jpg);
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg4 {
  background-image: url(../../assets/images/blog/4.jpg);
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .info {
  overflow: hidden;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .info span {
  display: block;
  color: #666666;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 600;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .info .title a {
  display: inline-block;
  color: #474c40;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .info .title a:hover {
  color: #008037;
}

.blog-details-area .widget-area .widget_recent_entries ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .widget-area .widget_recent_entries ul li {
  position: relative;
  margin-bottom: 12px;
  color: #666666;
  padding-left: 17px;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 600;
}

.blog-details-area .widget-area .widget_recent_entries ul li:last-child {
  margin-bottom: 0;
}

.blog-details-area .widget-area .widget_recent_entries ul li::before {
  background: #008037;
  position: absolute;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 7px;
}

.blog-details-area .widget-area .widget_recent_entries ul li .post-date {
  display: block;
  font-size: 13px;
  color: #666666;
  margin-top: 4px;
}

.blog-details-area .widget-area .widget_categories ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .widget-area .widget_categories ul li {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #666666;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #efefef;
}

.blog-details-area .widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.blog-details-area .widget-area .widget_categories ul li::before {
  background: #008037;
  position: absolute;
  height: 10px;
  width: 10px;
  content: "";
  left: 0;
  top: 9px;
}

.blog-details-area .widget-area .widget_categories ul li a {
  display: block;
  color: #666666;
  font-weight: normal;
  font-size: 14px;
}

.blog-details-area .widget-area .widget_categories ul li a span {
  float: right;
  font-size: 13px;
}

.blog-details-area .widget-area .widget_categories ul li a:hover {
  color: #008037;
}

.blog-details-area .widget-area .widget_categories ul li .post-count {
  float: right;
}

.blog-details-area .widget-area .widget_meta ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .widget-area .widget_meta ul li {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #666666;
  padding-left: 17px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #efefef;
}

.blog-details-area .widget-area .widget_meta ul li a {
  color: #212529;
}

.blog-details-area .widget-area .widget_meta ul li a:hover {
  color: #008037;
}

.blog-details-area .widget-area .widget_meta ul li:last-child {
  margin-bottom: 0;
}

.blog-details-area .widget-area .widget_meta ul li::before {
  background: #008037;
  position: absolute;
  height: 10px;
  width: 10px;
  content: "";
  left: 0;
  top: 9px;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.blog-details-area .widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 0;
}

.blog-details-area .widget-area .tagcloud a {
  display: inline-block;
  color: #666666;
  font-weight: normal;
  font-size: 14px !important;
  padding: 7px 10px;
  border: 1px dashed #eeeeee;
  margin-top: 10px;
  margin-right: 10px;
  text-transform: capitalize;
}

.blog-details-area .widget-area .tagcloud a:hover {
  background-color: #008037;
  color: #ffffff;
}

.blog-details-area .widget-area .tagcloud a:focus {
  background-color: #008037;
  color: #ffffff;
  border-color: #008037;
}

.blog-details-area .widget-area .widget_services_list ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
  background-color: #ffffff;
}

.blog-details-area .widget-area .widget_services_list ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 35px;
  color: #5d6576;
  z-index: 1;
  font-weight: 500;
}

.blog-details-area .widget-area .widget_services_list ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #252920;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.blog-details-area .widget-area .widget_services_list ul li a i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-details-area .widget-area .widget_services_list ul li a:hover {
  background-color: #008037;
  color: #ffffff;
  padding-left: 20px;
}

.blog-details-area .widget-area .widget_services_list ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.blog-details-area .widget-area .widget_services_list ul li a.active {
  background-color: #008037;
  color: #ffffff;
  padding-left: 20px;
}

.blog-details-area .widget-area .widget_services_list ul li a.active::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.blog-details-area .widget-area .widget_services_list ul li:last-child a {
  border-bottom: none;
}

.blog-details-area .widget-area .widget_download ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
  background-color: #ffffff;
}

.blog-details-area .widget-area .widget_download ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 35px;
  color: #5d6576;
  z-index: 1;
  font-weight: 500;
}

.blog-details-area .widget-area .widget_download ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #252920;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.blog-details-area .widget-area .widget_download ul li a i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-details-area .widget-area .widget_download ul li a:hover {
  background-color: #008037;
  color: #ffffff;
  padding-left: 20px;
}

.blog-details-area .widget-area .widget_download ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.blog-details-area .widget-area .widget_download ul li a.active {
  background-color: #008037;
  color: #ffffff;
  padding-left: 20px;
}

.blog-details-area .widget-area .widget_download ul li a.active::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.blog-details-area .widget-area .widget_download ul li:last-child a {
  border-bottom: none;
}

.blog-details-area .widget-area .info time {
  font-size: 13px;
  color: #929292;
  display: block;
  margin-bottom: 4px;
}

.blog-details-area .b-d-s-img {
  height: 200px;
  overflow: hidden;
}

.blog-details-area .b-d-s-img img {
  height: 200px;
  overflow: hidden;
}

.blog-details-area .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
}

.blog-details-area .social li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #f2f6f7;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #008037;
  margin-right: 10px;
}

.blog-details-area .social li a i {
  font-size: 20px;
}

.blog-details-area .social li a:hover {
  background: #008037;
  color: #fff;
}

/*
Property Area Css
======================================================*/
.ptc-70 {
  padding: 70px 0;
}

.search-form {
  position: relative;
  margin-bottom: 40px;
}

.search-form .box-btn {
  position: absolute;
  right: 0;
  top: 0;
}

.search-form .form-control {
  background: #fff;
  position: relative;
}

.search-form .box-btn {
  height: 100%;
}

.property-search {
  position: relative;
}

.property-search .property {
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.property-search .nav-link {
  padding: 10px 20px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background: #fff;
  font-size: 16px;
  color: #14100f !important;
}

.property-search .nav-tabs .nav-item.show .nav-link,
.property-search .nav-tabs .nav-link.active {
  border: 1px solid transparent;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.property-search .nav-link:focus,
.property-search .nav-link:hover {
  color: #008037;
}

.property-area {
  position: relative;
}

.property-area .single-property {
  position: relative;
  margin-bottom: 30px;
}

.property-area .single-property .property-inner {
  position: relative;
  height: 270px;
  overflow: hidden;
}

.property-area .single-property .property-inner .homes-img {
  position: relative;
  overflow: hidden;
  height: 270px;
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.property-area .single-property .property-inner .homes-img img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  height: 270px;
  overflow: hidden;
  width: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.property-area .single-property .property-inner .badges {
  position: absolute;
  top: 10px;
  padding: 0 10px;
  width: 100%;
}

.property-area .single-property .property-inner .badges .property {
  background: #008037;
  color: #fff;
  padding: 2px 4px;
}

.property-area .single-property .property-inner .badges .sale {
  background: #14100f;
  color: #fff;
  padding: 0px 5px;
  float: right;
}

.property-area .single-property .property-inner .product-location {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 70%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px 15px;
  margin: 0;
}

.property-area .single-property .property-inner .product-location a {
  color: #fff;
}

.property-area .single-property .property-inner .product-location .popup {
  display: inline-block;
}

.property-area .single-property .property-inner .product-location .popup .popup-img,
.property-area .single-property .property-inner .product-location .popup .popup-video {
  width: 30px;
  height: 30px;
  background: #5c727d9e;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.property-area .single-property .content {
  padding: 20px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.property-area .single-property .content .price {
  color: #008037;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
}

.property-area .single-property .content .details {
  position: relative;
  overflow: hidden;
}

.property-area .single-property .content .details ul li {
  width: 45%;
  float: left;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 17px !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

.property-area .single-property .content .details ul li span {
  margin-left: 5px;
}

.property-area .single-property .content .details ul li i {
  margin-right: 10px;
  height: 30px;
  width: 30px;
  border: none;
  display: inline-block;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  background: #008037;
  color: #f5faff;
}

.property-area .single-property .content h3 {
  margin-bottom: 5px;
  overflow: hidden;
  display: block;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.property-area .single-property .content h3 a {
  color: #252a26;
}

.property-area .single-property .content .address {
  color: #666;
  margin-bottom: 5px;
}

.property-area .single-property .content .address i.ri-map-pin-2-line {
  position: relative;
  top: 2px;
  left: -5px;
}

.property-area .single-property .content:hover .homes-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.property-area .single-property:hover .property-inner .homes-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.property-area .tittle {
  padding-right: 30%;
  margin-bottom: 30px;
}

.single-property {
  position: relative;
  margin-bottom: 30px;
}

.single-property .property-inner {
  position: relative;
  height: 270px;
  overflow: hidden;
}

.single-property .property-inner .homes-img {
  position: relative;
  overflow: hidden;
  height: 270px;
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.single-property .property-inner .homes-img img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  height: 270px;
  overflow: hidden;
  width: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.single-property .property-inner .badges {
  position: absolute;
  top: 10px;
  padding: 0 10px;
  width: 100%;
}

.single-property .property-inner .badges .property {
  background: #008037;
  color: #fff;
  padding: 2px 4px;
}

.single-property .property-inner .badges .sale {
  background: #14100f;
  color: #fff;
  padding: 0px 5px;
  float: right;
}

.single-property .property-inner .product-location {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 70%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px 15px;
  margin: 0;
}

.single-property .property-inner .product-location a {
  color: #fff;
}

.single-property .property-inner .product-location .popup {
  display: inline-block;
}

.single-property .property-inner .product-location .popup .popup-img,
.single-property .property-inner .product-location .popup .popup-video {
  width: 30px;
  height: 30px;
  background: #5c727d9e;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.single-property .content {
  padding: 20px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.single-property .content .price {
  color: #008037;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
}

.single-property .content .details {
  position: relative;
  overflow: hidden;
}

.single-property .content .details ul li {
  width: 45%;
  float: left;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 17px !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

.single-property .content .details ul li span {
  margin-left: 5px;
}

.single-property .content .details ul li i {
  margin-right: 10px;
  height: 30px;
  width: 30px;
  border: none;
  display: inline-block;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  background: #008037;
  color: #f5faff;
}

.single-property .content h3 {
  margin-bottom: 5px;
  overflow: hidden;
  display: block;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.single-property .content h3 a {
  color: #252a26;
}

.single-property .content .address {
  color: #666;
  margin-bottom: 5px;
}

.single-property .content .address i.ri-map-pin-2-line {
  position: relative;
  top: 2px;
  left: -5px;
}

.single-property:hover .property-inner .homes-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.property-left {
  position: relative;
}

.property-left .left-menu-widget {
  background: #fff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  padding: 35px 30px 40px 35px;
  border: 2px solid #ededed;
}

.property-left .categorey-no {
  float: right;
}

.property-left ul li {
  font-size: 15px;
  color: #5c727d;
  margin-bottom: 8px;
}

.property-left h4.sidebar-tittle {
  font-size: 18px;
  margin-bottom: 20px;
}

/* checkbox-item */
.checkbox-item {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox-item .checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid;
  border-color: #93959e;
}

/* On mouse-over, add a grey background color */
.checkbox-item:hover input ~ .checkmark {
  background-color: #008037;
}

/* When the checkbox is checked, add a blue background */
.checkbox-item input:checked ~ .checkmark {
  background-color: #008037;
  border-color: #008037;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-item .checkmark:after {
  position: absolute;
  content: "";
  display: none;
}

/* Show the checkmark when checked */
.checkbox-item input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-item .checkmark:after {
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*
Client Area Css
======================================================*/
.client-area.c-bg {
  background-image: url(../../assets/img/client/client-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.client-area .top-title {
  color: #252a26;
}

.client-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
  opacity: 0.8;
}

.client-area .owl-carousel .owl-item img {
  display: block;
  width: auto;
}

.single-client {
  background-color: #ffffff;
  padding: 30px;
  position: relative;
  text-align: center;
  margin-top: 30px;
}

.single-client img {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  width: 80px;
  height: 80px;
}

.single-client p {
  margin-top: 30px;
  margin-bottom: 15px;
}

.single-client h3 {
  margin-bottom: 0;
}

.client-wraps .single-client {
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

/*
Gallery Area Css
======================================================*/
.gallery-area {
  text-align: center;
}

.gallery-area .single-project {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 30px;
}

.gallery-area .single-project .project-image {
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  height: 380px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.gallery-area .single-project .project-image.bg-1 {
  background-image: url(../../assets/images/gallery/1.jpg);
}

.gallery-area .single-project .project-image.bg-2 {
  background-image: url(../../assets/images/gallery/2.jpg);
}

.gallery-area .single-project .project-image.bg-3 {
  background-image: url(../../assets/images/gallery/3.jpg);
}

.gallery-area .single-project .project-image.bg-4 {
  background-image: url(../../assets/images/gallery/4.jpg);
}

.gallery-area .single-project .project-image.bg-5 {
  background-image: url(../../assets/images/gallery/5.jpg);
}

.gallery-area .single-project .project-image img {
  -webkit-transition: all 9s;
  transition: all 9s;
}

.gallery-area .single-project .project-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 15px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 2;
  text-align: center;
  width: 93%;
  height: 90%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #0080378c;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.gallery-area .single-project .project-content .read-more {
  width: 30px;
  height: 30px;
  background: #fff;
}

.gallery-area .single-project .project-content .read-more i {
  background: #fff;
  color: #000;
  font-size: 20px;
  line-height: 30px;
}

.gallery-area .single-project .project-content .read-more:hover {
  color: #ffffff;
}

.gallery-area .single-project:hover .project-content {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.gallery-area .single-project:hover .project-image {
  -webkit-transform: scale(2.2) rotate(4deg);
          transform: scale(2.2) rotate(4deg);
}

/*
Price Area Css
======================================================*/
.price-area {
  position: relative;
}

.price-area .pricing-table {
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 30px;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.price-area .pricing-table .pricing-table .pricing-header {
  padding: 35px 0;
}

.price-area .pricing-table .pricing-content ul li {
  font-size: 14px;
  color: #484848;
  line-height: 3.571;
}

.price-area .pricing-table .box-btn {
  margin-top: 20px;
}

.price-area .pricing-table .price {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #008037;
}

.price-area .pricing-table:hover {
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

/*
Signup Area Css
======================================================*/
.signup-area .signup-form {
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
          box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  padding: 40px;
  max-width: 540px;
  background: #fff;
  border-radius: 10px;
  margin: auto;
}

.signup-area .signup-form .form-control {
  border-radius: 4px;
  height: 50px;
  padding: 10px 20px;
}

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

.signup-area .signup-form .box-btn {
  margin-bottom: 30px;
}

.signup-area .signup-form .box-btn i {
  position: relative;
  top: 2px;
  left: -5px;
}

.signup-area .signup-form .google {
  padding: 15px 25px;
  background: #dd4b39;
}

.signup-area .signup-form .facebook {
  padding: 15px 17px;
  background: #3b5999;
}

.signup-area .signup-form .signup-btn {
  padding: 15px 50px;
  margin-top: 20px;
  margin-bottom: 0;
}

.signup-area p.al-acc {
  margin-bottom: 0;
  font-size: 14px;
}

.signup-area .section-tittle {
  margin-bottom: 30px;
}

.signup-area .form-group {
  margin-bottom: 20px;
}

.signup-area .or-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 25px 0;
}

.signup-area .line-separator {
  background-color: #ccc;
  -webkit-box-flex: 5;
      -ms-flex-positive: 5;
          flex-grow: 5;
  height: 1px;
}

.signup-area .or-label {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0 15px;
  text-align: center;
}

.submit-property {
  position: relative;
}

.submit-property .form-control {
  height: 45px;
  margin-bottom: 15px;
}

.submit-property .main-title-2 {
  margin-top: 30px;
}

.submit-property .form-label {
  margin-bottom: 0 !important;
}

.submit-property textarea.form-control {
  height: 250px;
}

.add-list a {
  background: #008037;
  color: #fff;
  padding: 5px 15px;
}

img.white-logo {
  display: none;
}

/*
Popular Area Css
======================================================*/
.home-popular-area {
  position: relative;
}

.home-popular-area .all-gall {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.home-popular-area .all-gall li {
  border: 1px solid #008037;
  padding: 7px 20px;
  margin-right: 15px;
  cursor: pointer;
}

.home-popular-area .all-gall .active {
  background: #008037;
  color: #fff;
}

.home-popular-area .single-featured {
  position: relative;
}

.home-popular-area .single-featured .content p {
  font-size: 14px;
}

.home-popular-area .single-featured .content h3 a {
  font-size: 16px;
}

.home-popular-area .single-featured .content .price {
  font-size: 17px;
  font-style: normal;
}

.home-popular-area .single-featured .content .details ul li {
  width: auto;
  margin-right: 15px;
}

.home-popular-area .single-featured .content .details ul li span {
  margin-left: 0;
  font-weight: bold;
}

.home-popular-area .single-featured .content .details ul li i {
  background: #ededed78;
  color: #008037;
  font-size: 18px;
  font-weight: 500;
}

i.ri-map-pin-2-line {
  position: relative;
  left: -5px;
  top: 1px;
}

/*
Footer Area Css
======================================================*/
.footer-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #252a26;
  padding-bottom: 40px;
}

.footer-area .content {
  margin-bottom: 30px;
}

.footer-area .content p {
  color: #fff;
  margin-top: 10px;
}

.footer-area .content .social {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}

.footer-area .content .social li {
  display: inline-block;
  margin-right: 10px;
}

.footer-area .content .social li a {
  width: 35px;
  height: 35px;
  background: #008037;
  line-height: 35px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #f5faff;
  transition: 0.3s;
}

.footer-area .content .social li a i {
  font-size: 17px;
}

.footer-area .content .social li a:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.footer-area .content h3 {
  font-size: 22px;
  color: #f5faff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.footer-area .content .footer-list {
  margin: 0;
  padding: 0;
}

.footer-area .content .footer-list li {
  line-height: 1.8;
  margin-bottom: 8px;
  position: relative;
}

.footer-area .content .footer-list li a {
  color: #f5faff;
  font-size: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-area .content .footer-list li a i {
  position: absolute;
  top: 4px;
  left: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 15px;
}

.footer-area .content .footer-list li a:hover {
  letter-spacing: 0.02em;
}

.footer-area .content .foot-social {
  position: relative;
}

.footer-area .content .foot-social li {
  position: relative;
  padding-left: 48px;
  color: #f5faff;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-area .content .foot-social li i {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 4px;
  width: 30px;
  height: 30px;
  background: #008037;
  border-radius: 5px;
  line-height: 31px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #f5faff;
}

.footer-area .info {
  position: relative;
}

.footer-area .info a {
  display: block;
  color: #fff;
}

.footer-area .subscribe {
  position: relative;
  margin-top: 10px;
}

.footer-area .subscribe h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-area .subscribe .newsletter-form {
  position: relative;
}

.footer-area .subscribe .newsletter-form .box-btn {
  position: absolute;
  right: 0;
  top: 0;
}

.footer-area .subscribe .newsletter-form .form-control {
  background: #fff;
  position: relative;
}

.footer-area .subscribe .newsletter-form .box-btn {
  height: 100%;
}

.footer-area .footer-logo {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
}
/*# sourceMappingURL=style.css.map */