/*
Theme Name: Livesta 
Author: Scriptotheme
Author URI: https://themeforest.net/user/Scriptotheme/portfolio
Description: Livesta - Real Estate HTML Template
Service Html Template 
Version: 1.0.0

/*----------------------------------------*/
/*  TABLE OF CONTENTS
/*----------------------------------------*/
/*----------------------------------------*/
/* >> Basic Core
    1. Mixins
    2. Variables
    3. Buttons
    4. Typography
/*----------------------------------------*/
/*----------------------------------------*/
/* >> Template Sections
    5. About
    6. Animation
    7. Contact
    8. CTA
    9. Feature
   10. Footer
   11. Header
   12. Helping
   13. Hero
   14. MeanMenu
   15. News
   16. Preloader
   17. Project
   18. Propertie
   19. Section
   20. Service
   21. Team
   22. Testimonial
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&amp;display=swap");
:root {
  --st-body: #fff;
  --st-black: #000;
  --st-white: #fff;
  --st-theme: #c2df93;
  --st-theme2: #e3572d;
  --st-header: #16243e;
  --st-text: #555e72;
  --st-border: #fcfcfc;
  --st-bg: #fff9f6;
  --st-bg2: #f4f4f4;
  --st-box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

.theme-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  color: #fff;
  font-family: "Manrope", sans-serif;
  padding: 15px 29px;
  transition: 500ms;
  background-color: #16381b;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 9;
  color: #fff;
}
a.theme-btn.wow.fadeInUp.animated.animated {
    margin: 15px 0px 0px;
}
.theme-btn::before {
  content: "";

  border-radius: 100px;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.theme-btn i {
  margin-left: 10px;
}
.theme-btn:hover {
  color: #87c13f;
}
.theme-btn:hover::before {
  transform: translate(0, 0);
}

.project-btn1 {
}

.project-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: 1px solid #87c13f;
  outline: none !important;
  font-family: "Manrope", sans-serif;
  padding: 15px 29px;
  transition: color 0.3s ease;
  background-color: #16381b; /* default */
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
  color: #fff;
  cursor: pointer;
}

/* Sliding diagonal background effect */
.project-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  background: #87c13f; /* background color (changeable) */
  border-radius: inherit;
  transform: translate(-100%, 100%) rotate(0deg); /* start bottom-left */
  transition: transform 0.4s ease-out;
  z-index: -1;
  opacity: 0.9;
}

/* On hover, slide background into place */
.project-btn:hover::before {
  transform: translate(0, 0);
}

.call-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #87c13f;
  border-radius: 50%;
  background-color: #16381b; /* default */
  color: #fff;
  font-size: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Sliding background */
.call-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #87c13f; /* ✅ solid color (or replace with image url) */
  border-radius: inherit;
  transform: translate(-100%, 100%); /* start bottom-left */
  transition: transform 0.4s ease-out;
  z-index: -1;
  opacity: 0.9;
}

/* Animate background on hover */
.call-btn:hover::before {
  transform: translate(0, 0);
}

/* Change icon color on hover */
.call-btn:hover {
  color: #fff;
}

.header-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  width: 30px;
  height: 24px;
}

.header-bar span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #16381b; /* line color */
  border-radius: 3px;
  transition: all 0.3s ease;
}

.override-bg {
  color: #87c13f !important;
}
.override-head {
  color: #fff !important;
  text-align: center;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--st-text);
  background-color: var(--st-white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.list-area {
  width: 300px;
}
.ol,
ul {
  padding-left: 0rem !important;
}
.about-property {
  padding: 30px 0px !important;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--st-white);
  outline: none;
}

input {
  color: var(--st-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  margin: 0px;
  padding: 0;
  color: #16381b;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
}
.btn-hover {
  color: #fff !important;
}
.btn-hover:hover {
  background-color: #87c13f;
}

h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 112%;
}
@media (max-width: 1600px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 43px;
  }
}
@media (max-width: 470px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 117%;
}
@media (max-width: 1399px) {
  h2 {
    font-size: 44px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 134%;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

h5 {
  font-size: 18px;
  font-weight: 600;
}

h6 {
  font-size: 16px;
  font-weight: 700;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: #000;
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
}

.about-wrapper .about-image {
  max-width: 518px;
  position: relative;
  margin-left: 100px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image {
    margin-left: 0;
    max-width: 1000px;
  }
}
.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper .about-image .about-image-2 {
  position: absolute;
  bottom: 0;
  left: 0px;
  z-index: 9;
}
@media (max-width: 575px) {
  .about-wrapper .about-image .about-image-2 {
    max-width: 150px;
  }
}
.about-wrapper .about-image .counter-box {
  position: absolute;
  writing-mode: vertical-rl;
  top: 50%;
  left: -100px;
  transform: translateY(-50%) rotate(180deg);
  display: grid;
  gap: 10px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image .counter-box {
    display: none;
  }
}
.about-wrapper .about-image .counter-box h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 5px;
}
.about-wrapper .about-image .counter-box p {
  font-size: 20px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}
.about-wrapper .about-image .bar-shape {
  width: 502px;
  height: 88px;
  background-color: #87c13f;
  opacity: 0.56;
  display: inline-block;
  position: absolute;
  bottom: 73px;
  left: -100px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-image .bar-shape {
    bottom: 35px;
    left: -90px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-image .bar-shape {
    display: none;
  }
}
.about-wrapper .about-content .about-text {
  margin-top: 25px;
}
.about-wrapper .about-content ul {
  margin-top: 30px;
}
.about-wrapper .about-content ul li {
  font-size: 18px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: var(--st-header);
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-wrapper .about-content ul li:not(:last-child) {
  margin-bottom: 20px;
}
.about-wrapper .about-content ul li i {
  color: #87c13f;
}
.about-wrapper .about-content .about-btn {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-btn {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
  }
}
.about-wrapper .about-content .about-btn .call-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-wrapper .about-content .about-btn .call-info .icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: var(--st-theme);
  border-radius: 50%;
  color: var(--st-header);
}
.about-wrapper .about-content .about-btn .call-info .content span {
  display: inline-block;
  margin-bottom: 5px;
}

.about-section {
  position: relative;
  /* padding: 20px 0px; */
  z-index: 9;
}
.about-section .right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-content {
    max-width: 600px;
  }
}
.about-wrapper-2 .about-content .about-text {
  margin-top: 25px;
}
.about-wrapper-2 .about-content ul {
  margin-top: 30px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-content ul {
    margin-top: 30px;
    margin-top: 25px;
  }
}
.about-wrapper-2 .about-content ul li {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-content ul li {
    display: grid;
  }
}
.about-wrapper-2 .about-content ul li .icon {
  border-radius: 8px;
  border: 1px solid #16381b;
  background: var(--st-white);
  max-width: 80px;
  width: 100%;
  height: 80px;
  line-height: 90px;
  text-align: center;
  font-size: 40px;
  color: #16381b;
  transition: all 0.4s ease-in-out;
}
.about-wrapper-2 .about-content ul li .content h4 {
  margin-bottom: 5px;
}
.about-wrapper-2 .about-content ul li:not(:last-child) {
  margin-bottom: 25px;
}
.about-wrapper-2 .about-content ul li:hover .icon {
  background-color: #16381b;
  color: #fff;
}
.about-wrapper-2 .about-image-items .about-image-1 {
  display: flex;
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-image-items .about-image-1 {
    display: block;
  }
}
.about-wrapper-2 .about-image-items .about-image-1 .thumb {
  max-width: 483px;
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-image-items .about-image-1 .thumb {
    max-width: 700px;
  }
}
.about-wrapper-2 .about-image-items .about-image-1 .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px 0px;
}
.about-wrapper-2 .about-image-items .about-image-1 .counter-box {
  writing-mode: vertical-rl;
  display: grid;
  gap: 10px;
  transform: rotate(180deg);
  border-radius: 0px 0 0 16px;
  background: #87c13f;
  padding: 20px 36px;
  height: 260px;
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-image-items .about-image-1 .counter-box {
    transform: rotate(0deg);
    writing-mode: initial;
    height: initial;
    margin-top: -20px;
  }
}
.about-wrapper-2 .about-image-items .about-image-1 .counter-box h2 {
  font-size: 40px;
  color: var(--st-white);
}
.about-wrapper-2 .about-image-items .about-image-1 .counter-box h4 {
  color: var(--st-white);
  font-weight: 600;
  opacity: 0.88;
}
.about-wrapper-2 .about-image-items .about-image-2 {
  display: flex;
  align-items: center;
  margin-top: -20px;
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-image-items .about-image-2 {
    display: block;
  }
}
.about-wrapper-2 .about-image-items .about-image-2 .icon-box {
  background-color: #16381b;
  padding: 43px 24px;
  display: inline-block;
  border-radius: 0px 0px 0px 16px;
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-image-items .about-image-2 .icon-box {
    display: block;
  }
}
.about-wrapper-2 .about-image-items .about-image-2 .icon-box .icon {
  border-radius: 8px;
  border: 1px solid #fff;
  background: transparent;
  font-size: 40px;
  text-align: center;
  width: 80px;
  height: 80px;
  line-height: 84px;
  color: #fff;
}
.about-wrapper-2 .about-image-items .about-image-2 .icon-box .icon:hover {
  color: #87c13f;
  border: 1px solid #87c13f;
}
.about-wrapper-2 .about-image-items .about-image-2 .icon-box .content {
  margin-top: 20px;
}
.about-wrapper-2 .about-image-items .about-image-2 .icon-box .content h4 {
  color: var(--st-white);
  margin-bottom: 14px;
}
.about-wrapper-2 .about-image-items .about-image-2 .icon-box .content p {
  color: var(--st-white);
  opacity: 0.7;
  max-width: 230px;
}
.about-wrapper-2 .about-image-items .about-image-2 .thumb-2 {
  max-width: 365px;
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-image-items .about-image-2 .thumb-2 {
    max-width: 700px;
  }
}
.about-wrapper-2 .about-image-items .about-image-2 .thumb-2 img {
  border-radius: 16px 0px;
  width: 100%;
  height: 100%;
  border-top-left-radius: 0;
}

.about-section-2 {
  position: relative;
  z-index: 9;
}
.about-section-2 .left-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.about-wrapper-3 .about-image {
  position: relative;
}
.about-wrapper-3 .about-image .border-shape {
  position: absolute;
  top: -5px;
  left: 15px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-image .border-shape {
    display: none;
  }
}
.about-wrapper-3 .about-image .border-shape img {
  width: initial;
  height: initial;
}
.about-wrapper-3 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-3 .about-content {
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-3 .about-content .about-list-item {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 55px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .about-list-item {
    margin-top: 30px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .about-list-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper-3 .about-content .about-list-item .list-item .list {
  margin-bottom: 48px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .about-list-item .list-item .list {
    margin-bottom: 30px;
  }
}
.about-wrapper-3 .about-content .about-list-item .list-item .list li {
  font-size: 18px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: var(--st-header);
}
.about-wrapper-3
  .about-content
  .about-list-item
  .list-item
  .list
  li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper-3 .about-content .about-list-item .list-item .list li i {
  color: #87c13f;
  margin-right: 12px;
}
.about-wrapper-3 .about-content .about-list-item .counter-box {
  background-color: var(--st-theme);
  border-radius: 16px;
  padding: 56px 36px;
  text-align: center;
  width: 268px;
}
.about-wrapper-3 .about-content .about-list-item .counter-box h2 {
  font-size: 72px;
  font-weight: 800;
}
.about-wrapper-3 .about-content .about-list-item .counter-box h4 {
  font-weight: 800;
}

.about-section-3 {
  position: relative;
  z-index: 9;
}
.about-section-3 .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .about-section-3 .right-shape {
    display: none;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1)
    0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1)
    0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
@keyframes scale {
  0% {
    top: -1000px;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animation-infinite {
  animation: ShapeAnim 50s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 3000px;
  }
}
.splt-txt .whitespace {
  width: 8px;
}

.splt-txt.animated .char {
  -webkit-animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.splt-txt-bounce .whitespace {
  width: 20px;
}

@media (max-width: 991px) {
  .splt-txt-bounce .whitespace {
    width: 10px;
  }
}
.splt-txt-bounce.animated .char {
  -webkit-animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.contact-wrapper .contact-content {
  background-color: #87c13f;
  padding: 48px;
  border-radius: 24px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-content {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper .contact-content {
    padding: 30px;
  }
}
@media (max-width: 470px) {
  .contact-wrapper .contact-content {
    padding: 24px;
  }
}
.contact-wrapper .contact-content .section-title {
  margin-bottom: 32px;
}
.contact-wrapper .contact-content .section-title h2 {
  font-size: 32px;
}
.contact-wrapper .contact-content form .form-clt input,
.contact-wrapper .contact-content form .form-clt textarea {
  display: inline-block;
  width: 100%;
  border: none;
  padding: 19px 20px;
  background-color: var(--st-white);
  border-radius: 30px;
  color: var(--st-text);
  line-height: 1;
}
.contact-wrapper .contact-content form .form-clt textarea {
  padding-bottom: 92px;
}
.contact-wrapper .contact-content form .form-clt .single-select {
  display: inline-block;
  width: 100%;
  border: none;
  padding: 19px 20px;
  background-color: var(--st-white);
  border-radius: 30px;
  color: var(--st-text);
  line-height: 1;
}
.contact-wrapper .contact-content form .form-clt .single-select::after {
  right: 20px;
  width: 9px;
  height: 9px;
}
.contact-wrapper .contact-content form .form-clt .single-select .list {
  width: 100%;
}
.contact-wrapper .contact-content form .theme-btn::before {
  background-color: #87c13f;
}
.contact-wrapper .contact-content form .theme-btn:hover {
  color: var(--st-white);
}

.contact-section {
  position: relative;
  padding: 80px 0;
}
.contact-section .googpemap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.contact-section .googpemap iframe {
  width: 100%;
  height: 100%;
}

.contact-info-box {
  margin-top: 30px;
}
.contact-info-box .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  background-color: #f4f4f4;
  color: #87c13f;
}
.contact-info-box .content {
  margin-top: 20px;
}
.contact-info-box .content h3 {
  margin-bottom: 10px;
}
.contact-info-box .content p,
.contact-info-box .content a {
  font-size: 18px;
  color: var(--st-text);
}

.contact-wrapper-10 {
  border-radius: 24px;
  background: #f4f4f4;
  padding: 70px 20px;
  margin: 70px 0px 0px 0px;
}
@media (max-width: 1199px) {
  .contact-wrapper-10 {
    padding: 35px;
  }
}
@media (max-width: 767px) {
  .contact-wrapper-10 {
    padding: 25px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper-10 {
    padding: 25px;
  }
}
.contact-wrapper-10 .section-title h2 {
  font-size: 32px;
}
.contact-wrapper-10 form {
  margin-top: 40px;
}
.contact-wrapper-10 form .form-clt input,
.contact-wrapper-10 form .form-clt textarea {
  display: inline-block;
  width: 100%;
  border: none;
  padding: 19px 20px;
  background-color: var(--st-white);
  border-radius: 30px;
  color: var(--st-text);
  line-height: 1;
}
.contact-wrapper-10 form .form-clt textarea {
  padding-bottom: 92px;
}
.contact-wrapper-10 form .form-clt .single-select {
  display: inline-block;
  width: 100%;
  border: none;
  padding: 19px 20px;
  background-color: var(--st-white);
  border-radius: 30px;
  color: var(--st-text);
  line-height: 1;
}
.contact-wrapper-10 form .form-clt .single-select::after {
  right: 20px;
  width: 9px;
  height: 9px;
}
.contact-wrapper-10 form .form-clt .single-select .list {
  width: 100%;
}
.contact-wrapper-10 form .theme-btn::before {
  background-color: #87c13f;
}
.contact-wrapper-10 form .theme-btn:hover {
  color: var(--st-white);
}
.googpemap-2 {
  height: 400px;
}

.googpemap-2 iframe {
  width: 100%;
  height: 100%;
}

.registration-wrapper {
  border-radius: 24px;
  background: #f4f4f4;
  padding: 56px;
}
@media (max-width: 767px) {
  .registration-wrapper {
    padding: 28px;
  }
}
.registration-wrapper .form-clt span {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: "Manrope", sans-serif;
  color: var(--st-header);
  margin-bottom: 18px;
}
.registration-wrapper .form-clt input {
  width: 100%;
  border: none;
  background-color: var(--st-white);
  padding: 18px 30px;
  line-height: 1;
  border-radius: 8px;
  color: var(--st-text);
}
.registration-wrapper .form-check-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .registration-wrapper .form-check-items {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.registration-wrapper .form-check-items .form-check .form-check-input:checked {
  background-color: var(--st-header);
}
.registration-wrapper .form-check-items .form-check label {
  margin-bottom: 0;
  margin-left: 10px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: var(--st-header);
  cursor: pointer;
}
.registration-wrapper .form-check-items .lin-btn {
  display: inline-block;
  color: #87c13f;
  font-weight: 600;
  font-size: 18px;
  text-decoration: underline;
}
.registration-wrapper .theme-btn {
  width: 100%;
  background-color: var(--st-theme);
  color: var(--st-header);
}
.registration-wrapper .theme-btn::before {
  background-color: var(--st-header);
}
.registration-wrapper .theme-btn:hover {
  color: var(--st-white);
}
.registration-wrapper p {
  font-size: 18px;
}
.registration-wrapper p a {
  font-weight: 500;
  color: var(--st-header);
}

.from-box-wrapper {
  display: flex;
  align-items: center;
  gap: 90px;
  backdrop-filter: blur(24px);
  border-radius: 100px;
  background-color: var(--st-header);
  padding: 22px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .from-box-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    border-radius: 30px;
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .from-box-wrapper {
    flex-wrap: wrap;
    gap: 70px;
  }
}
@media (max-width: 575px) {
  .from-box-wrapper {
    flex-wrap: wrap;
    gap: 92px;
  }
}
@media (max-width: 500px) {
  .from-box-wrapper {
    flex-wrap: wrap;
    gap: 70px;
  }
}
.from-box-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--st-theme);
  width: 16%;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .from-box-wrapper::before {
    display: none;
  }
}
@media (max-width: 1199px) {
  .from-box-wrapper .search-box h5 {
    color: var(--st-white);
  }
}
.from-box-wrapper .form-item {
  flex: 1;
  min-width: 0;
}
@media (max-width: 1199px) {
  .from-box-wrapper .form-item {
    min-width: initial;
  }
}
@media (max-width: 575px) {
  .from-box-wrapper .form-item.style-2 {
    margin-bottom: -40px;
  }
}
.from-box-wrapper .form-item h6 {
  font-size: 16px;
  font-weight: 400;
  color: var(--st-white);
  margin-bottom: 15px;
  display: inline-block;
}
.from-box-wrapper .form-item input {
  width: 100%;
  background-color: transparent;
  font-size: 18px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  border: none;
  color: var(--st-white);
}
.from-box-wrapper .form-item input::placeholder {
  color: var(--st-white);
}
.from-box-wrapper .form-item .single-select {
  padding: 0;
  background-color: transparent;
  border: none;
  line-height: 1;
  height: initial;
  font-size: 18px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: var(--st-white);
}
.from-box-wrapper .form-item .single-select .option {
  color: var(--st-header);
}
.from-box-wrapper .form-item .single-select::after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.from-box-wrapper .theme-btn {
  background-color: #87c13f;
  color: var(--st-white);
  padding: 19px 36px;
}
.from-box-wrapper .theme-btn::before {
  background-color: var(--st-header);
}

.from-section {
  position: relative;
}
@media (max-width: 1199px) {
  .from-section {
    overflow: hidden;
  }
}
.from-section .shape {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .from-section .shape {
    display: none;
  }
}

.cta-check-wrapper .check-abode-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cta-check-wrapper .check-abode-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.cta-check-wrapper .check-abode-items .left-items {
  max-width: 640px;
}
.cta-check-wrapper .check-abode-items .right-items .client-info-box {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .cta-check-wrapper .check-abode-items .right-items .client-info-box {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
  }
}
.cta-check-wrapper
  .check-abode-items
  .right-items
  .client-info-box
  .client-item {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cta-check-wrapper
  .check-abode-items
  .right-items
  .client-info-box
  .client-item
  .thumb
  img {
  border-radius: 16px;
}
.cta-check-wrapper .cta-image-items {
  border-radius: 24px;
  position: relative;
  z-index: 9;
  padding: 348px 132px 48px;
}
@media (max-width: 1199px) {
  .cta-check-wrapper .cta-image-items {
    padding: 80px 30px 80px;
  }
}
.cta-check-wrapper .cta-image-items .text-line {
  position: absolute;
  top: 0;
  left: 22px;
  bottom: 0;
  color: #fff9f6;
  font-family: "Manrope", sans-serif;
  font-size: 100px;
  font-weight: 800;
  letter-spacing: -1px;
  opacity: 0.12;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.cta-check-wrapper .cta-image-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 24px;
  background: linear-gradient(
    279deg,
    rgba(22, 36, 62, 0) 6.9%,
    var(--Text-Primary, #16243e) 91.99%
  );
  z-index: -1;
}
.cta-check-wrapper .cta-image-items .cta-content h2 {
  color: var(--st-white);
}
.cta-check-wrapper .cta-image-items .cta-content p {
  color: var(--st-white);
  max-width: 705px;
  opacity: 0.8;
  margin-top: 15px;
}
.cta-check-wrapper .cta-image-items .cta-content .theme-btn {
  background-color: var(--st-theme);
  color: var(--st-header);
  margin-top: 32px;
}
.cta-check-wrapper .cta-image-items .cta-content .theme-btn::before {
  background-color: #87c13f;
}

.cta-check-section {
  position: relative;
  z-index: 9;
}
.cta-check-section .cta-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.cta-check-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--st-header);
  top: 65%;
  z-index: -1;
}
.cta-check-section.bg-white-style::before {
  background-color: var(--st-white);
}

.cta-download-app-wrapper {
  border-radius: 32px;
  background-color: #87c13f;
  padding: 0 72px;
  padding-top: 70px;
  display: flex;
  justify-content: space-between;
  padding-right: 50px;
}
@media (max-width: 1199px) {
  .cta-download-app-wrapper {
    padding: 0 30px;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
    padding-top: 50px;
  }
}
.cta-download-app-wrapper .content {
  max-width: 760px;
  width: 100%;
  margin-top: 10px;
  position: relative;
  z-index: 9;
}
.cta-download-app-wrapper .content .section-title .theme-btn {
  margin-top: 48px;
}
@media (max-width: 1199px) {
  .cta-download-app-wrapper .content .section-title .theme-btn {
    margin-top: 30px;
  }
}
.cta-download-app-wrapper .content .section-title .theme-btn::before {
  background-color: #87c13f;
}
.cta-download-app-wrapper .content .section-title .theme-btn:hover {
  color: var(--st-white);
}
.cta-download-app-wrapper .thumb {
  margin-left: -70%;
}
@media (max-width: 1199px) {
  .cta-download-app-wrapper .thumb {
    margin-left: 0;
  }
}
.cta-download-app-wrapper .thumb img {
  width: 100%;
  height: 100%;
}

.cta-download-section {
  position: relative;
  z-index: 9;
}
.cta-download-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #16381b;
  z-index: -1;
  top: 50%;
  height: initial;
}

.house-offer-box {
  margin-top: 30px;
  text-align: center;
  padding: 40px 20px;
  border-radius: 16px;
  background-color: var(--st-white);
  position: relative;
  z-index: 2;
  border: solid 1.5px #fff;
  transition: all 0.4s ease-in-out;
}
.house-offer-box .icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(204, 206, 213, 0.24);
  font-size: 32px;
  text-align: center;
  color: var(--st-header);
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
}
.house-offer-box .content {
  margin-top: 20px;
}
.house-offer-box.style-2 {
  padding: 40px 18px;
}
.house-offer-box.style-2 .icon-1 {
  color: var(--st-header);
  font-size: 45px;
  transition: all 0.4s ease-in-out;
}
.house-offer-box.style-2:hover {
  background-color: #fff9f6;
}
.house-offer-box.style-2:hover .icon-1 {
  color: #87c13f;
}
.house-offer-box:hover {
  border: solid 1.5px #e3572d;
}
.house-offer-box:hover .icon {
  background-color: #87c13f;
  color: var(--st-white);
}

.gt-counter-wrapper {
  border-radius: 12px;
  background: var(--st-theme);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 45px 30px;
}
@media (max-width: 991px) {
  .gt-counter-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.gt-counter-wrapper .gt-counter {
  position: relative;
  width: 100%;
  text-align: center;
}
.gt-counter-wrapper h2 {
  font-size: 72px;
  color: var(--st-header);
  font-weight: 800;
  letter-spacing: -1px;
}
@media (max-width: 575px) {
  .gt-counter-wrapper h2 {
    font-size: 50px;
  }
}
.gt-counter-wrapper p {
  font-size: 20px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: var(--st-header);
  position: absolute;
  width: 100%;
  text-align: center;
  background-color: var(--st-theme);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 575px) {
  .gt-counter-wrapper p {
    font-size: 16px;
  }
}

.gt-counter-section {
  position: relative;
  z-index: 9;
}
.gt-counter-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #16243e;
  z-index: -1;
  height: 50%;
}
.gt-counter-section::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #f4f4f4;
  z-index: -1;
  top: 50%;
}

.video-bg-wrapper .logo-item {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .video-bg-wrapper .logo-item {
    flex-wrap: wrap;
    gap: 24px;
  }
}
.video-bg-wrapper .logo-item .logo-image {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  padding: 16px 38px;
  height: 80px;
  transition: all 0.4s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.video-bg-wrapper .logo-item .logo-image:hover {
  border: 1px solid #87c13f;
  border-radius: 100px;
}
.video-bg-wrapper .video-button {
  position: relative;
  background: rgba(227, 87, 45, 0.24);
  border: 2px solid var(--st-white);
  width: 148px;
  height: 148px;
  line-height: 148px;
  border-radius: 100%;
  text-align: center;
  margin: 0 auto;
  margin-top: 300px;
}
@media (max-width: 1199px) {
  .video-bg-wrapper .video-button {
    margin-top: 30px;
  }
}
.video-bg-wrapper .video-button .video-btn {
  text-align: center;
  color: var(--st-white);
  display: inline-block;
  text-align: center;
  font-size: 24px;
  z-index: 999;
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 108px;
  height: 108px;
  line-height: 108px;
  background-color: #87c13f;
  border-radius: 100%;
}

.video-bg-section {
  position: relative;
  z-index: 9;
}
.video-bg-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, #16243e 0%, rgba(22, 36, 62, 0) 100%);
  z-index: -1;
}

.footer-wrapper {
  padding: 100px 0 100px;
  position: relative;
}
.footer-wrapper::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 46%;
  transform: translateX(-50%);
  content: "";
  width: 2px;
  height: 100%;
  background-color: rgba(155, 155, 155, 0.24);
}
@media (max-width: 1199px) {
  .footer-wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .footer-wrapper {
    padding: 80px 0 80px;
  }
}
.footer-wrapper .footer-left-items .footer-logo {
  margin-bottom: 20px;
  display: inline-block;
}
.footer-wrapper .footer-left-items .footer-text {
  color: var(--st-white);
  max-width: 522px;
}
.footer-wrapper .footer-left-items .footer-contact-list {
  margin-top: 30px;
}
.footer-wrapper .footer-left-items .footer-contact-list li {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}
.footer-wrapper .footer-left-items .footer-contact-list li a {
  color: rgba(255, 255, 255, 0.88);
}
.footer-wrapper .footer-left-items .footer-contact-list li i {
  margin-right: 10px;
  color: var(--st-theme);
}
.footer-wrapper .footer-left-items .footer-contact-list li:not(:last-child) {
  margin-bottom: 30px;
}
.footer-wrapper .footer-left-items .footer-text-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 35px;
}
.footer-bottom-section {
  display: flex;
  justify-content: space-between;
}
.revolynk {
  color: #87c13f;
}

@media (max-width: 1199px) {
  .footer-wrapper .footer-left-items .footer-text-list {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
  }
}
.footer-wrapper .footer-left-items .footer-text-list li {
  color: var(--st-white);
  opacity: 0.7;
  font-size: 18px;
  transition: all 0.4s ease-in-out;
}
.footer-wrapper .footer-left-items .footer-text-list li a {
  color: var(--st-white);
  opacity: 0.7;
}
.footer-wrapper .footer-left-items .footer-text-list li:hover {
  opacity: 1;
}
.footer-wrapper .footer-left-items .footer-text-list li:hover a {
  color: var(--st-theme);
  opacity: 1;
}
.footer-wrapper .foorer-right-items {
  margin-left: 20px;
}
.footer-wrapper .foorer-right-items h3 {
  font-size: 32px;
  color: var(--st-white);
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .footer-wrapper .foorer-right-items h3 {
    font-size: 26px;
  }
}
.footer-wrapper .foorer-right-items p {
  color: var(--st-white);
  opacity: 0.7;
}
.footer-wrapper .foorer-right-items form {
  position: relative;
  margin-top: 20px;
}
.footer-wrapper .foorer-right-items form input {
  border: none;
  width: 100%;
  background-color: var(--st-white);
  border-radius: 100px;
  padding: 22px 25px;
  color: var(--st-text);
  line-height: 1;
}
.footer-wrapper .foorer-right-items form .theme-btn {
  background-color: #87c13f;
  color: var(--st-white);
  position: absolute;
  top: 4px;
  right: 5px;
}
.footer-wrapper .foorer-right-items form .theme-btn::before {
  background-color: var(--st-header);
}
.footer-wrapper .foorer-right-items .footer-widget-items {
  margin-top: 30px;
}
.footer-wrapper .foorer-right-items .footer-widget-items .widget-head {
  margin-bottom: 24px;
}
.footer-wrapper .foorer-right-items .footer-widget-items .widget-head h4 {
  color: var(--st-white);
  font-weight: 800;
}
.footer-wrapper .foorer-right-items .footer-widget-items .list-area li {
  transition: all 0.4s ease-in-out;
  font-size: 18px;
}
.footer-wrapper
  .foorer-right-items
  .footer-widget-items
  .list-area
  li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-wrapper .foorer-right-items .footer-widget-items .list-area li a {
  color: #fff;
  opacity: 0.7;
}
.footer-wrapper .foorer-right-items .footer-widget-items .list-area li:hover {
  margin-left: 5px;
}
.footer-wrapper .foorer-right-items .footer-widget-items .list-area li:hover a {
  color: var(--st-theme);
  opacity: 1;
}

.footer-widget-wrapper {
  padding: 90px 0 120px;
}
@media (max-width: 1199px) {
  .footer-widget-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0 80px;
  }
}
.footer-widget-wrapper .footer-widget-items {
  margin-top: 30px;
}
.footer-widget-wrapper .footer-widget-items .widget-head {
  margin-bottom: 30px;
}
.footer-widget-wrapper .footer-widget-items .widget-head h3 {
  color: var(--st-white);
  font-weight: 800;
}
.footer-widget-wrapper .footer-widget-items .footer-content {
  max-width: 500px;
}
.footer-widget-wrapper .footer-widget-items .footer-content.style-2 h3 {
  margin-bottom: 5px;
}
.footer-widget-wrapper .footer-widget-items .footer-content.style-2 p {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper
  .footer-widget-items
  .footer-content.style-2
  .social-icon {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
.footer-widget-wrapper
  .footer-widget-items
  .footer-content.style-2
  .social-icon
  span {
  color: var(--st-white);
  font-family: "Manrope", sans-serif;
}
.footer-widget-wrapper
  .footer-widget-items
  .footer-content.style-2
  .social-icon
  a {
  color: var(--st-white);
}
.footer-widget-wrapper
  .footer-widget-items
  .footer-content.style-2
  .social-icon
  a:hover {
  color: #87c13f;
}
.footer-widget-wrapper .footer-widget-items .footer-content form {
  position: relative;
  margin-top: 30px;
}
.footer-widget-wrapper .footer-widget-items .footer-content form input {
  border: none;
  width: 100%;
  background-color: var(--st-white);
  border-radius: 100px;
  padding: 19px 25px;
  color: var(--st-text);
  line-height: 1;
}
.footer-widget-wrapper .footer-widget-items .footer-content form .theme-btn {
  background-color: #87c13f;
  color: var(--st-white);
  position: absolute;
  top: 4px;
  right: 5px;
  padding: 18px 26px;
}
.footer-widget-wrapper
  .footer-widget-items
  .footer-content
  form
  .theme-btn::before {
  background-color: var(--st-header);
}
.footer-widget-wrapper .footer-widget-items .contact-list li {
  display: flex;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}
.footer-widget-wrapper .footer-widget-items .contact-list li i {
  color: var(--st-theme);
  line-height: 2;
}
.footer-widget-wrapper .footer-widget-items .contact-list li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widget-wrapper .footer-widget-items .contact-list li a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .footer-widget-items .list-area li {
  transition: all 0.4s ease-in-out;
  font-size: 17px;
}
.footer-widget-wrapper .footer-widget-items .list-area li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widget-wrapper .footer-widget-items .list-area li a {
  color: #fff;
  opacity: 0.7;
}
.footer-widget-wrapper .footer-widget-items .list-area li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper .footer-widget-items .list-area li:hover a {
  color: var(--st-theme);
  opacity: 1;
}
.footer-widget-wrapper .footer-middle-content {
  text-align: center;
  border-bottom: 1px solid rgba(204, 206, 213, 0.16);
  padding-bottom: 48px;
  margin-bottom: 20px;
}
.footer-widget-wrapper .footer-middle-content .footer-logo {
  margin-bottom: 40px;
}
.footer-widget-wrapper .footer-middle-content p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 786px;
  margin: 0 auto;
}

.footer-bottom {
  border-top: 1.5px solid rgba(155, 155, 155, 0.24);
  padding: 18px 0;
}
.footer-bottom p {
  text-align: center;
  font-size: 18px;
  color: var(--st-white);
}
.footer-bottom p b {
  color: #87c13f;
}

.footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer-bottom-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.footer-bottom-wrapper .social-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-bottom-wrapper .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--st-white);
}
.footer-bottom-wrapper .social-icon a:hover {
  background-color: var(--st-theme);
  color: var(--st-header);
}
.footer-bottom-wrapper.style-2 {
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(48px);
  padding: 28px 40px;
}
@media (max-width: 1199px) {
  .footer-bottom-wrapper.style-2 {
    border-radius: 30px;
  }
}
@media (max-width: 575px) {
  .footer-bottom-wrapper.style-2 {
    justify-content: start;
  }
}
.footer-bottom-wrapper.style-2 .bottom-list {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 1199px) {
  .footer-bottom-wrapper.style-2 .bottom-list {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.footer-bottom-wrapper.style-2 .bottom-list li a {
  color: rgba(255, 255, 255, 0.88);
}
.footer-bottom-wrapper.style-2 .bottom-list li a:hover {
  color: #87c13f;
}

.footer-section {
  position: relative;
  z-index: 9;
}
.footer-section .footer-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 45px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--st-white);
  font-family: "Manrope", sans-serif;
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}
.header-main .main-menu ul li a:hover {
  color: #87c13f !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 280px;
  background: var(--st-white);
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: #87c13f;
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid #87c13f;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 600;
  color: var(--st-header);
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  padding-right: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: #87c13f;
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: #87c13f !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: #87c13f !important;
  margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
  width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: #87c13f;
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #87c13f;
}
.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb {
  position: relative;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb
  .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb
  .demo-button
  .theme-btn {
  padding: 8px 12px;
  color: initial;
  text-align: center;
  justify-content: center;
  margin-left: 12px;
  width: 90%;
  background-color: #87c13f;
  color: var(--st-white);
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb
  .demo-button
  .theme-btn:hover {
  background-color: var(--st-white);
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb::before {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(20, 19, 19, 0)),
    to(#5e5ef6)
  );
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb:hover
  .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb:hover
  .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb
  img {
  width: 100%;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}
.header-main .main-menu ul li:hover > a {
  color: #87c13f;
}
.header-main .main-menu ul li:hover > a::after {
  color: #87c13f;
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background-color: #16381b;
  border-bottom: 1px solid rgba(204, 206, 213, 0.12);
}
.header-1 .container-fluid {
  padding: 0 155px;
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}
.header-1 .header-logo-2 {
  display: none;
}
.header-1 .header-right .search-toggler {
  border-radius: 100px;
  border: 1px solid rgba(205, 206, 208, 0.32);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  color: var(--st-white);
  text-align: center;
}
@media (max-width: 575px) {
  .header-1 .header-right .search-toggler {
    border: 1px none;
  }
}
.header-1 .header-right .theme-btn {
  border: 1px solid #87c13f;
  color: var(--st-white);
  background-color: transparent;
}
.header-1 .header-right .search-toggler {
  border: 1px solid #87c13f;
  color: var(--st-white);
  background-color: transparent;
}
@media (max-width: 1199px) {
  .header-1 .header-right .theme-btn {
    display: none;
  }
}
.color-white {
  color: #fff !important;
}
.header-1 .header-right .theme-btn:hover {
  color: #fff;
  background-color: #87c13f;
}
.header-1 .header-right .search-toggler:hover {
  color: #fff;
  background-color: #87c13f;
}
.header-1 .sidebar__toggle {
  cursor: pointer;
}

.header-1 .sidebar__toggle .header-bar {
  position: relative;
  width: 40px;
  height: 11px;
}
@media (max-width: 470px) {
  .header-1 .sidebar__toggle .header-bar {
    width: 25px;
  }
}
.header-1 .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--st-white);
  overflow: hidden;
}
.header-1 .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--st-white);
  left: 0;
  width: 40px;
}
@media (max-width: 470px) {
  .header-1 .sidebar__toggle .header-bar span:first-child {
    width: 25px;
  }
}
.header-1 .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--st-white);
  width: 40px;
}
@media (max-width: 470px) {
  .header-1 .sidebar__toggle .header-bar span:last-child {
    width: 25px;
  }
}
.header-1 .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}
.header-1 .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}
.header-1 .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}
.header-1 .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}

.header-2 {
  position: relative;
  border-bottom: none;
  background-color: transparent;
}
.header-2.style-3::before {
  display: none;
}
.header-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--st-theme);
  z-index: -1;
  width: calc(100% - 515px);
  clip-path: polygon(
    0 19%,
    0 0,
    38% 0%,
    71% 0%,
    100% 0,
    100% 0,
    97% 106%,
    100% 104%,
    100% 29%,
    100% 100%,
    0 100%,
    0 48%
  );
}
@media (max-width: 1600px) {
  .header-2::before {
    width: calc(100% - 330px);
  }
}
@media (max-width: 1399px) {
  .header-2::before {
    display: none;
  }
}
.header-2 .container-fluid {
  padding: 0 120px;
}
@media (max-width: 1600px) {
  .header-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-2 .container-fluid {
    padding: 0 30px;
  }
}
.header-2 .header-main .main-menu ul li a {
  color: var(--st-header);
}
.header-2 .header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}
.header-2 .header-main .main-menu ul li a:hover {
  color: #87c13f !important;
}
.header-2 .header-main .sidebar__toggle {
  color: var(--st-header);
}
.header-2 .header-right .search-toggler {
  color: var(--st-header);
}
.header-2 .header-right .theme-btn {
  background-color: var(--st-theme) !important;
  color: var(--st-header);
}
.header-2 .header-right .theme-btn::before {
  background-color: var(--st-header);
}
.header-2 .header-right .theme-btn:hover {
  background-color: var(--st-header);
  color: var(--st-white) !important;
  border: 1px solid var(--st-header) !important;
}
.header-2 .header-right .sidebar__toggle .header-bar span {
  background: var(--st-header);
  overflow: hidden;
}
.header-2 .header-right .sidebar__toggle .header-bar span:first-child {
  background: var(--st-header);
}
.header-2 .header-right .sidebar__toggle .header-bar span:last-child {
  background: var(--st-header);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: var(--st-white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sticky.header-1 .header-logo-2 {
  display: block;
  width: fit-content;
}
.sticky.header-1 .header-logo {
  display: none;
}
.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--st-header);
}
.sticky.header-1 .header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}
.sticky.header-1 .header-main .main-menu ul li a:hover {
  color: #87c13f !important;
}
.sticky.header-1 .header-main .sidebar__toggle {
  color: var(--st-header);
}
.sticky.header-1 .header-right .search-toggler {
  border: 1px solid rgba(0, 0, 0, 0.32);
  color: var(--st-header);
}
@media (max-width: 575px) {
  .sticky.header-1 .header-right .search-toggler {
    border: 1px none;
  }
}
.sticky.header-1 .header-right .theme-btn {
  border: 1px solid var(--st-theme);
  color: var(--st-header);
  background-color: transparent;
}
@media (max-width: 1199px) {
  .sticky.header-1 .header-right .theme-btn {
    display: none;
  }
}
.sticky.header-1 .header-right .theme-btn:hover {
  color: var(--st-header);
}
.sticky.header-1 .sidebar__toggle .header-bar span {
  background: var(--st-header);
  overflow: hidden;
}
.sticky.header-1 .sidebar__toggle .header-bar span:first-child {
  background: var(--st-header);
}
.sticky.header-1 .sidebar__toggle .header-bar span:last-child {
  background: var(--st-header);
}

.offcanvas__info {
  background: var(--st-white) none repeat scroll 0 0;
  border-left: 2px solid #87c13f;
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 999999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}
.offcanvas__info .offcanvas__logo img {
  width: 130px;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--st-text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: #87c13f;
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--st-white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--st-text);
}
.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  ul
  li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  ul
  li
  .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  ul
  li
  .offcanvas__contact-icon
  i {
  color: #87c13f;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  .header-button
  .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: #f4f4f4;
  color: var(--st-header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border-radius: 50%;
}
.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  .social-icon
  a:hover {
  background-color: var(--st-theme);
  color: var(--st-white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.gt-breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
}
@media (max-width: 1199px) {
  .gt-breadcrumb-wrapper {
    background-image: none !important;
    background-color: var(--st-header);
  }
}
.gt-breadcrumb-wrapper .gt-page-heading {
  position: relative;
  padding: 195px 0 160px;
  z-index: 9;
}
@media (max-width: 991px) {
  .gt-breadcrumb-wrapper .gt-page-heading {
    padding: 160px 0 130px;
  }
}
@media (max-width: 767px) {
  .gt-breadcrumb-wrapper .gt-page-heading {
    text-align: center;
    padding: 180px 0 130px;
  }
}
.gt-breadcrumb-wrapper .gt-page-heading h1 {
  color: var(--st-white);
  font-size: 72px;
  position: relative;
  text-transform: capitalize;
  text-align: left;
  z-index: 9;
  font-weight: 800;
}
@media (max-width: 767px) {
  .gt-breadcrumb-wrapper .gt-page-heading h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .gt-breadcrumb-wrapper .gt-page-heading h1 {
    font-size: 50px;
  }
}
@media (max-width: 470px) {
  .gt-breadcrumb-wrapper .gt-page-heading h1 {
    font-size: 40px;
  }
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items {
  display: inline-flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}
@media (max-width: 575px) {
  .gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items {
    margin-top: 15px;
  }
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li {
  color: var(--st-white);
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a {
  color: var(--st-white);
  transition: all 0.4s ease-in-out;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a:hover {
  color: var(--st-theme);
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a i {
  color: var(--st-theme);
  margin-right: 5px;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li i {
  color: var(--st-white);
}
.gt-breadcrumb-wrapper .gt-breadcrumb-image {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 140px;
}
@media (max-width: 1600px) {
  .gt-breadcrumb-wrapper .gt-breadcrumb-image {
    right: 30px;
  }
}
@media (max-width: 1199px) {
  .gt-breadcrumb-wrapper .gt-breadcrumb-image {
    display: none;
  }
}

.gt-error-items {
  text-align: center;
}
.gt-error-items .gt-error-image {
  margin-bottom: 50px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .gt-error-items .gt-error-image {
    margin-bottom: 40px;
  }
}
.gt-error-items .gt-error-image img {
  width: 100%;
  height: 100%;
}
.gt-error-items h2 {
  margin-bottom: 20px;
}
.gt-error-items p {
  margin-bottom: 48px;
}
@media (max-width: 1199px) {
  .gt-error-items p {
    margin-bottom: 30px;
  }
}
.gt-error-items .theme-btn {
  background-color: #87c13f;
  color: var(--st-white);
}
.gt-error-items .theme-btn::before {
  background-color: var(--st-header);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--st-bg);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--st-theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.st-array-button {
  display: flex;
  align-items: center;
  gap: 14px;
}

.array-prev {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--st-theme);
  color: var(--st-white);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}
.array-prev:hover {
  background-color: var(--st-header);
  color: var(--st-white);
}

.array-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--st-header);
  color: var(--st-white);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}
.array-next:hover {
  background-color: var(--st-theme);
  color: var(--st-white);
}

.swiper-dot {
  padding-top: 50px;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: rgba(252, 252, 252, 0.7);
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--st-theme);
  transition: 0.6s;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  top: -6px;
  left: -6px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--st-theme);
  content: "";
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.st-slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.st-brand-slide-element {
  width: auto;
  display: inline-block;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.page-nav-wrap {
  margin-top: 60px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: #87c13f;
  color: var(--st-white);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: #f4f4f4;
  color: var(--st-header);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: #87c13f;
  color: var(--st-white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--st-header);
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: #87c13f;
  color: var(--st-white);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--st-white);
}

.swiper.imgSlider {
  position: relative;
  bottom: 50px;
  left: 24%;
}
@media (max-width: 1199px) {
  .swiper.imgSlider {
    bottom: 110px;
  }
}
@media (max-width: 991px) {
  .swiper.imgSlider {
    bottom: 120px;
  }
}
@media (max-width: 575px) {
  .swiper.imgSlider {
    bottom: 63px;
  }
}

.hero-1 {
  background-color: var(--st-header);
}
@media (max-width: 1399px) {
  .hero-1 {
    padding-top: 170px;
    padding-bottom: 120px;
  }
}
@media (max-width: 1199px) {
  .hero-1 {
    padding-bottom: 0;
  }
}
.hero-1 .container-fluid {
  padding: 0 155px;
}
@media (max-width: 1600px) {
  .hero-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .container-fluid {
    padding: 0 30px;
  }
}
.hero-1 .hero-content {
  max-width: 680px;
}
.hero-1 .hero-content h5 {
  color: var(--st-theme);
  margin-bottom: 12px;
}
@media (max-width: 470px) {
  .hero-1 .hero-content h5 {
    font-size: 16px;
  }
}
.hero-1 .hero-content h5 i {
  margin-right: 8px;
}
.hero-1 .hero-content h1 {
  color: var(--st-white);
  margin-bottom: 20px;
}
.hero-1 .hero-content p {
  color: var(--st-white);
  opacity: 0.7;
}
.hero-1 .hero-image {
  margin-left: -40%;
}
@media (max-width: 1399px) {
  .hero-1 .hero-image {
    margin-left: 0;
  }
  .hero-1 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
.hero-1 .form-area {
  width: 1000px;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .hero-1 .form-area {
    width: initial;
    margin-top: 30px;
  }
}
.hero-1 .form-area .nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-1 .form-area .nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--st-header);
  padding: 16px 24px;
  background-color: var(--st-white);
  font-family: "Manrope", sans-serif;
  border-radius: 12px 12px 0px 0px;
}
.hero-1 .form-area .nav .nav-item .nav-link.active {
  background-color: #87c13f;
  color: var(--st-white);
}
.hero-1 .form-area form {
  border-radius: 0px 16px 16px 16px;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(24px);
  margin: 0;
  padding: 24px 22px;
  position: relative;
  z-index: 99;
}
.hero-1 .form-area form .form-item h6 {
  font-size: 16px;
  font-weight: 400;
  color: var(--st-white);
  margin-bottom: 15px;
  display: inline-block;
}
.hero-1 .form-area form .form-item input {
  width: 100%;
  background-color: transparent;
  font-size: 18px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  border: none;
  color: var(--st-white);
}
.hero-1 .form-area form .form-item input::placeholder {
  color: var(--st-white);
}
.hero-1 .form-area form .form-item .single-select {
  padding: 0;
  background-color: transparent;
  border: none;
  line-height: 1;
  height: initial;
  font-size: 18px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: var(--st-white);
}
.hero-1 .form-area form .form-item .single-select .option {
  color: var(--st-header);
}
.hero-1 .form-area form .form-item .single-select::after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.hero-1 .form-area form .text-align-right {
  text-align: right;
}
@media (max-width: 1199px) {
  .hero-1 .form-area form .text-align-right {
    text-align: left;
  }
}
.hero-1 .form-area form .theme-btn {
  background-color: #87c13f;
  color: var(--st-white);
  padding: 19px 36px;
}
.hero-1 .form-area form .theme-btn::before {
  background-color: var(--st-header);
}
.hero-1 .form-area .button-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 48px;
}
@media (max-width: 1199px) {
  .hero-1 .form-area .button-list {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
  }
}
.hero-1 .form-area .button-list .theme-btn {
  background-color: transparent;
  border: 1px solid var(--st-white);
  padding: 18px 28px;
  color: var(--st-white);
}
.hero-1 .form-area .button-list .theme-btn::before {
  background-color: #87c13f;
}
.hero-1 .form-area .button-list .theme-btn:hover {
  border: 1px solid #87c13f;
}

.hero-2 {
  position: relative;
  z-index: 9;
}
.hero-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--st-theme);
  width: 50%;
  height: calc(100% - 200px);
  z-index: -1;
}
@media (max-width: 1399px) {
  .hero-2::before {
    display: none;
  }
}
.hero-2 .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  top: 25%;
  position: absolute;
  left: 2%;
}
@media (max-width: 1600px) {
  .hero-2 .social-icon {
    left: 0.6%;
  }
}
@media (max-width: 1399px) {
  .hero-2 .social-icon {
    display: none !important;
  }
}
.hero-2 .social-icon span {
  color: var(--st-text);
  font-weight: 600;
  font-size: 18px;
  font-family: "Manrope", sans-serif;
}
.hero-2 .social-icon a {
  transform: rotate(90deg);
  font-size: 18px;
}
.hero-2 .social-icon a:hover {
  color: #87c13f;
}
.hero-2 .container-fluid {
  padding: 0 120px;
}
@media (max-width: 1600px) {
  .hero-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .container-fluid {
    padding: 0 30px;
  }
}
.hero-2 .hero-wrapper {
  overflow: hidden;
  border-radius: 24px;
  padding-top: 40px;
}
@media (max-width: 1399px) {
  .hero-2 .hero-wrapper {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-wrapper {
    padding: 50px 0 0;
  }
}
.hero-2 .hero-wrapper .hero-image {
  margin-left: -180px;
}
@media (max-width: 1600px) {
  .hero-2 .hero-wrapper .hero-image {
    margin-left: -300px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .hero-wrapper .hero-image {
    margin-left: 0;
  }
  .hero-2 .hero-wrapper .hero-image img {
    width: 100%;
    height: 100%;
  }
}
.hero-2 .hero-wrapper .hero-content {
  max-width: 680px;
  margin-left: 80px;
}
@media (max-width: 1600px) {
  .hero-2 .hero-wrapper .hero-content {
    padding-right: 30px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .hero-wrapper .hero-content {
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-wrapper .hero-content {
    margin-left: 0;
    padding: 0 30px;
  }
}
.hero-2 .hero-wrapper .hero-content h5 {
  color: var(--st-theme);
  margin-bottom: 12px;
}
@media (max-width: 470px) {
  .hero-2 .hero-wrapper .hero-content h5 {
    font-size: 16px;
  }
}
.hero-2 .hero-wrapper .hero-content h5 i {
  margin-right: 8px;
}
.hero-2 .hero-wrapper .hero-content h1 {
  color: var(--st-white);
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .hero-2 .hero-wrapper .hero-content h1 {
    margin-bottom: 20px;
  }
}
.hero-2 .hero-wrapper .hero-content p {
  color: var(--st-white);
  opacity: 0.7;
  max-width: 665px;
}
.hero-2 .hero-wrapper .hero-content .theme-btn {
  background-color: #87c13f;
  color: var(--st-white);
  margin-top: 50px;
}
@media (max-width: 767px) {
  .hero-2 .hero-wrapper .hero-content .theme-btn {
    margin-top: 30px;
  }
}
.hero-2 .hero-wrapper .hero-content .theme-btn::before {
  background-color: var(--st-white);
}
.hero-2 .hero-wrapper .hero-content .theme-btn:hover {
  color: var(--st-header);
}

.hero-3 {
  position: relative;
  z-index: 9;
  padding: 100px 0 20px;
}
.hero-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #16381b;
  width: 68%;
  z-index: -1;
}
@media (max-width: 1399px) {
  .hero-3::before {
    width: 100%;
  }
}
.hero-3 .left-shape {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.hero-3 .left-shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .hero-3 .left-shape {
    display: none;
  }
}
.hero-3 .bottom-shape {
  position: absolute;
  bottom: 0;
  left: 36%;
}
@media (max-width: 1199px) {
  .hero-3 .bottom-shape {
    display: none;
  }
}
.hero-3 .top-shape {
  position: absolute;
  left: 48%;
  top: 67px;
}
@media (max-width: 1199px) {
  .hero-3 .top-shape {
    display: none;
  }
}
.hero-3 .container-fluid {
  padding: 0 150px;
}
@media (max-width: 1600px) {
  .hero-3 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .hero-3 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .hero-3 .container-fluid {
    padding: 0 30px;
  }
}
.hero-3 .hero-content h5 {
  position: relative;
  color: var(--st-theme);
  margin-bottom: 20px;
}
.hero-3 .hero-content h5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 64px;
  height: 64px;
  text-align: center;
  background-color: rgba(227, 87, 45, 0.16);
  top: -20px;
  left: -24px;
}
.hero-3 .hero-content h1 {
  color: var(--st-white);
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .hero-3 .hero-content h1 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 28px;
  }
}
.hero-3 .hero-content p {
  color: #fff;
  max-width: 773px;
}
.hero-3 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-content .hero-button {
    flex-wrap: wrap;
  }
}
.hero-3 .hero-content .hero-button .theme-btn {
  background-color: #16381b;
  border: 1px solid #87c13f;
  color: var(--st-white);
}
.hero-3 .hero-content .hero-button .theme-btn::before {
  background-color: #87c13f;
}
.hero-3 .hero-content .hero-button .theme-btn:hover {
  color: #fff;
}
.hero-3 .hero-content .hero-button .theme-btn.border-btn {
  border: 1px solid #87c13f;
  background-color: transparent;
}
.hero-3 .hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.hero-3 .small-image {
  max-width: 88px;
}
.hero-3 .small-image img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
@media (max-width: 1199px) {
  .hero-3 .small-image img {
    border-radius: 16px;
  }
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--st-header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid #e5e5e5 !important;
  border: none;
  font-family: "Manrope", sans-serif;
}
.mean-container .mean-nav ul li a:hover {
  color: #87c13f;
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: #87c13f;
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.gt-news-box-items {
  margin-top: 30px;
}
.gt-news-box-items .gt-thumb {
  overflow: hidden;
  position: relative;
}
.gt-news-box-items .gt-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.gt-news-box-items .gt-thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.gt-news-box-items .gt-content {
  padding: 24px;
  background-color: var(--st-white);
  border-radius: 8px;
  border-bottom: 1px solid rgba(155, 155, 155, 0.24);
  margin: 0 30px;
  position: relative;
  z-index: 9;
  margin-top: -52px;
}
@media (max-width: 1199px) {
  .gt-news-box-items .gt-content {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.gt-news-box-items .gt-content .gt-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .gt-news-box-items .gt-content .gt-list {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.gt-news-box-items .gt-content .gt-list li {
  color: var(--st-text);
}
.gt-news-box-items .gt-content .gt-list li img {
  margin-right: 8px;
}
.gt-news-box-items .gt-content .gt-list li:last-child {
  position: relative;
  padding-left: 12px;
}
.gt-news-box-items .gt-content .gt-list li:last-child::before {
  width: 6px;
  height: 6px;
  line-height: 6px;
  position: absolute;
  top: 12px;
  left: 0;
  content: "";
  border-radius: 6px;
  background-color: #87c13f;
}
@media (max-width: 1399px) {
  .gt-news-box-items .gt-content h3 {
    font-size: 20px;
  }
}
.gt-news-box-items .gt-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.gt-news-box-items .gt-content h3 a:hover {
  color: #87c13f;
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, #87c13f 0%, #87c13f 100%);
}
.gt-news-box-items .gt-content .theme-btn {
  padding: 16px 30px;
  border: 1px solid #87c13f;
  background: transparent;
  color: #87c13f;
  margin-top: 24px;
}
.gt-news-box-items .gt-content .theme-btn::before {
  background-color: #87c13f;
}
.gt-news-box-items .gt-content .theme-btn:hover {
  color: var(--st-white);
}
.gt-news-box-items:hover .gt-thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.gt-news-box-items:hover .gt-thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-box-items-2 {
  margin-top: 30px;
  border-radius: 16px;
  background: var(--st-white);
}
.news-box-items-2 .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0px 0px;
}
.news-box-items-2 .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 0px 0px;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.news-box-items-2 .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.news-box-items-2 .content {
  padding: 32px;
}
.news-box-items-2 .content .list-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
}
.news-box-items-2 .content .list-item li {
  color: var(--st-header);
}
.news-box-items-2 .content .list-item li img {
  margin-right: 8px;
}
.news-box-items-2 .content .list-item li:last-child {
  position: relative;
  padding-left: 12px;
}
.news-box-items-2 .content .list-item li:last-child::before {
  width: 4px;
  height: 4px;
  line-height: 4px;
  position: absolute;
  top: 12px;
  left: 0;
  content: "";
  border-radius: 4px;
  background-color: #87c13f;
}
@media (max-width: 1199px) {
  .news-box-items-2 .content h3 {
    font-size: 20px;
  }
}
.news-box-items-2 .content h3 a:hover {
  color: #87c13f;
}
.news-box-items-2 .content .theme-btn {
  background-color: transparent;
  border: 1px solid #87c13f;
  color: #87c13f;
  padding: 16px 32px;
  margin-top: 30px;
}
.news-box-items-2 .content .theme-btn::before {
  background-color: #87c13f;
}
.news-box-items-2 .content .theme-btn:hover {
  color: var(--st-white);
}
.news-box-items-2:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.news-box-items-2:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-section-2 {
  position: relative;
  z-index: 9;
}
.news-section-2 .right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 {
  margin-bottom: 48px;
}
.gt-news-standard-wrapper
  .gt-news-standard-items
  .gt-news-card-items-4
  .gt-news-image {
  overflow: hidden;
  border-radius: 16px;
}
.gt-news-standard-wrapper
  .gt-news-standard-items
  .gt-news-card-items-4
  .gt-news-image
  img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
  border-radius: 16px;
}
.gt-news-standard-wrapper
  .gt-news-standard-items
  .gt-news-card-items-4
  .gt-news-content
  .gt-date-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .gt-news-standard-wrapper
    .gt-news-standard-items
    .gt-news-card-items-4
    .gt-news-content
    .gt-date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.gt-news-standard-wrapper
  .gt-news-standard-items
  .gt-news-card-items-4
  .gt-news-content
  .gt-date-list
  li
  i {
  margin-right: 10px;
}
.gt-news-standard-wrapper
  .gt-news-standard-items
  .gt-news-card-items-4
  .gt-news-content
  h3 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .gt-news-standard-wrapper
    .gt-news-standard-items
    .gt-news-card-items-4
    .gt-news-content
    h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .gt-news-standard-wrapper
    .gt-news-standard-items
    .gt-news-card-items-4
    .gt-news-content
    h3 {
    font-size: 25px;
  }
}
.gt-news-standard-wrapper
  .gt-news-standard-items
  .gt-news-card-items-4
  .gt-news-content
  h3
  a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.gt-news-standard-wrapper
  .gt-news-standard-items
  .gt-news-card-items-4
  .gt-news-content
  h3
  a:hover {
  color: #87c13f;
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, #87c13f 0%, #87c13f 100%);
}
.gt-news-standard-wrapper
  .gt-news-standard-items
  .gt-news-card-items-4
  .gt-news-content
  .theme-btn {
  padding: 16px 30px;
  border: 1px solid #87c13f;
  background: transparent;
  color: #87c13f;
  margin-top: 24px;
}
.gt-news-standard-wrapper
  .gt-news-standard-items
  .gt-news-card-items-4
  .gt-news-content
  .theme-btn::before {
  background-color: #87c13f;
}
.gt-news-standard-wrapper
  .gt-news-standard-items
  .gt-news-card-items-4
  .gt-news-content
  .theme-btn:hover {
  color: var(--st-white);
}
.gt-news-standard-wrapper
  .gt-news-standard-items
  .gt-news-card-items-4:hover
  .gt-news-image
  img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.news-card-items-3 {
  border-radius: 16px;
  background-color: var(--st-white);
  margin-top: 30px;
}
.news-card-items-3 .news-image {
  position: relative;
  height: 229px;
}
.news-card-items-3 .news-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  object-fit: cover;
}
.news-card-items-3 .news-image .post-box {
  border-radius: 4px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--st-theme);
  padding: 8px 4px;
  position: absolute;
  left: 24px;
  bottom: -30px;
}
.news-card-items-3 .news-image .post-box h4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
}
.news-card-items-3 .news-image .post-box h4 span {
  font-size: 14px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  line-height: 1;
}
.news-card-items-3 .news-content {
  padding: 5px 24px 24px;
}
.news-card-items-3 .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 15px;
  margin-left: 75px;
}
.news-card-items-3 .news-content .news-meta li {
  position: relative;
}
.news-card-items-3 .news-content .news-meta li img {
  margin-right: 5px;
}
.news-card-items-3 .news-content .news-meta li.style-2::before {
  position: absolute;
  content: "";
  background-color: #87c13f;
  width: 8px;
  height: 8px;
  border-radius: 30px;
  top: 10px;
  left: -12px;
}
.news-card-items-3 .news-content h3 a:hover {
  color: #87c13f;
}
.news-card-items-3 .news-content .link-btn {
  display: inline-block;
  margin-top: 24px;
  font-family: "Manrope", sans-serif;
  color: #87c13f;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #87c13f;
}

.gt-news-details-wrapper .gt-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.gt-news-details-wrapper .gt-news-details-content {
  margin-top: 24px;
}
.gt-news-details-wrapper .gt-news-details-content h3 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 800;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .gt-news-details-wrapper .gt-news-details-content h3 {
    font-size: 25px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-list {
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item {
  margin-bottom: 30px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item h3 {
  font-size: 24px;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item h3 {
    font-size: 20px;
  }
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-list
  .gt-list-item
  .gt-details-list {
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper
    .gt-news-details-content
    .gt-list
    .gt-list-item
    .gt-details-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-list
  .gt-list-item
  .gt-details-list
  li {
  font-size: 16px;
  font-weight: 400;
  color: var(--st-header);
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-list
  .gt-list-item
  .gt-details-list
  li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-list
  .gt-list-item
  .gt-details-list
  li
  i {
  color: #87c13f;
  margin-right: 8px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber {
  padding: 30px 40px;
  border: 1.5px solid #87c13f;
  background-color: var(--st-bg2);
  border-radius: 16px;
}
@media (max-width: 575px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-sideber {
    padding: 30px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber h6 {
  margin-bottom: 15px;
  line-height: 150%;
  letter-spacing: 0.5px;
  font-weight: 700;
  font-size: 20px;
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-sideber
  .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper
    .gt-news-details-content
    .gt-sideber
    .client-info-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-sideber
  .client-info-item
  .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-sideber
  .client-info-item
  .client-info
  .image {
  border-radius: 100%;
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-sideber
  .client-info-item
  .client-info
  h4 {
  font-size: 20px;
  font-weight: 700;
}
.gt-news-details-wrapper .gt-news-details-content .text {
  font-size: 24px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content .text {
    font-size: 20px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap {
  border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
  padding: 30px 0;
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-tag-share-wrap
  .tagcloud
  span {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  color: var(--st-header);
  font-family: "Manrope", sans-serif;
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-tag-share-wrap
  .tagcloud
  a {
  display: inline-block;
  padding: 14px 26px;
  line-height: 1;
  background: var(--st-bg2);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  border-radius: 30px;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper
    .gt-news-details-content
    .gt-tag-share-wrap
    .tagcloud
    a {
    padding: 10px 20px;
  }
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper
    .gt-news-details-content
    .gt-tag-share-wrap
    .tagcloud
    a {
    margin-bottom: 15px;
  }
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-tag-share-wrap
  .tagcloud
  a:hover {
  background-color: #87c13f;
  color: var(--st-white);
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-tag-share-wrap
  .social-share
  a {
  font-size: 16px;
  color: var(--st-header);
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background-color: var(--st-bg2);
  border-radius: 8px;
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-tag-share-wrap
  .social-share
  a:not(:last-child) {
  margin-right: 10px;
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-tag-share-wrap
  .social-share
  a:hover {
  color: var(--st-white);
  background-color: #87c13f;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area {
  margin-top: 40px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area h3 {
  font-size: 28px;
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-comments-area
  .gt-blog-single-comment {
  border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
}
@media (max-width: 575px) {
  .gt-news-details-wrapper
    .gt-news-details-content
    .gt-comments-area
    .gt-blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-comments-area
  .gt-blog-single-comment
  .gt-content
  .head
  .con
  h5 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-comments-area
  .gt-blog-single-comment
  .gt-content
  .reply {
  padding: 5px 18px;
  font-weight: 400;
  background-color: #87c13f;
  color: var(--st-white);
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-comments-area
  .gt-blog-single-comment
  .gt-content
  .reply:hover {
  background-color: var(--st-header);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap {
  background-color: var(--st-bg2);
  padding: 30px;
  border-radius: 16px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap h3 {
  margin-bottom: 30px;
  border-bottom: 1.2px solid rgba(102, 102, 102, 0.24);
  padding-bottom: 24px;
  margin-bottom: 24px;
  font-size: 28px;
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-comment-form-wrap
  .form-clt
  span {
  color: var(--st-header);
  display: inline-block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-comment-form-wrap
  .form-clt
  input,
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-comment-form-wrap
  .form-clt
  textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--st-border);
  padding: 16px 20px;
  font-weight: 400;
  color: var(--st-text);
  background-color: var(--st-white);
  border-radius: 8px;
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-comment-form-wrap
  .form-clt
  input::placeholder,
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-comment-form-wrap
  .form-clt
  textarea::placeholder {
  color: var(--st-text);
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-comment-form-wrap
  .form-clt
  textarea {
  padding-bottom: 100px;
  resize: none;
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-comment-form-wrap
  button.theme-btn {
  background-color: #87c13f;
  color: var(--st-white);
}
.gt-news-details-wrapper
  .gt-news-details-content
  .gt-comment-form-wrap
  button.theme-btn::before {
  background-color: var(--st-header);
}

.gt-main-sideber .gt-single-sideber-widget {
  margin-bottom: 40px;
  background-color: var(--st-bg2);
  padding: 30px;
  border-radius: 16px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form {
  width: 100%;
  position: relative;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form input {
  background-color: var(--st-white);
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--st-text);
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 58px;
  border-radius: 8px;
  font-size: 18px;
  height: 100%;
  background-color: var(--st-theme);
  color: var(--st-white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button:hover {
  background-color: var(--st-header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title {
  border-bottom: 1.5px solid rgba(129, 129, 129, 0.24);
  padding-bottom: 16px;
  margin-bottom: 30px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
  font-weight: 800;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--st-header);
  transition: all 0.4s ease-in-out;
  background-color: var(--st-white);
  padding: 18px 22px;
  font-family: "Manrope", sans-serif;
  line-height: 1;
  border-radius: 8px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li a {
  color: var(--st-header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li i {
  transition: all 0.4s ease-in-out;
  color: var(--st-header);
}
.gt-main-sideber
  .gt-single-sideber-widget
  .gt-category-list
  li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li span b {
  font-weight: 400;
  color: var(--st-theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover {
  background-color: #87c13f;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover a {
  color: var(--st-white);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover i {
  color: var(--st-white);
}
.gt-main-sideber
  .gt-single-sideber-widget
  .gt-recent-post-area
  .gt-recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .gt-main-sideber
    .gt-single-sideber-widget
    .gt-recent-post-area
    .gt-recent-items {
    flex-wrap: wrap;
  }
}
.gt-main-sideber
  .gt-single-sideber-widget
  .gt-recent-post-area
  .gt-recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.gt-main-sideber
  .gt-single-sideber-widget
  .gt-recent-post-area
  .gt-recent-items
  .gt-recent-thumb
  img {
  border-radius: 12px;
}
.gt-main-sideber
  .gt-single-sideber-widget
  .gt-recent-post-area
  .gt-recent-items
  .gt-recent-content
  h5 {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}
.gt-main-sideber
  .gt-single-sideber-widget
  .gt-recent-post-area
  .gt-recent-items
  .gt-recent-content
  h5
  a:hover {
  color: #87c13f;
}
.gt-main-sideber
  .gt-single-sideber-widget
  .gt-recent-post-area
  .gt-recent-items
  .gt-recent-content
  ul
  li {
  color: var(--st-text);
  font-weight: 500;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a {
  display: inline-block;
  padding: 12px 22px;
  line-height: 1;
  font-weight: 500;
  background: var(--st-white);
  margin-right: 10px;
  margin-bottom: 10px;
  text-transform: capitalize;
  border-radius: 30px;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a:last-child {
  margin-right: 0;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a:hover {
  background-color: #87c13f;
  color: var(--st-white);
}
.gt-main-sideber .service-details-sidebar {
  text-align: center;
  padding: 50px 40px;
  border-radius: 16px;
}
.gt-main-sideber .service-details-sidebar .gt-content {
  margin-top: 20px;
}
.gt-main-sideber .service-details-sidebar .gt-content span {
  color: var(--st-white);
  opacity: 0.88;
}
.gt-main-sideber .service-details-sidebar .gt-content h3 {
  margin-top: 10px;
}
.gt-main-sideber .service-details-sidebar .gt-content h3 a {
  color: var(--st-white);
}
.gt-main-sideber .service-details-sidebar .gt-content .theme-btn {
  margin-top: 30px;
  background-color: var(--st-theme);
  color: var(--st-header);
}
.gt-main-sideber .service-details-sidebar .gt-content .theme-btn::before {
  background-color: #87c13f;
}
.gt-main-sideber .service-details-sidebar .gt-content .theme-btn:hover {
  color: var(--st-white);
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: #87c13f;
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Manrope", sans-serif, "Jost", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: #87c13f;
  position: relative;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--st-header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Manrope", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #87c13f;
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: #f4f4f4;
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.st-back-to-top {
  background-color: #87c13f;
  width: 50px;
  height: 50px;
  line-height: 40px;
  color: var(--st-white);
  font-size: 16px;
  position: fixed;
  display: inline-block;
  z-index: 999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.st-back-to-top:hover {
  background-color: var(--st-header);
  color: var(--st-white);
}
.st-back-to-top:hover img {
  animation: slideUp 600ms;
}
.st-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--st-theme);
  background-color: var(--st-theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
  opacity: 0.14;
}

.cursor-outer.cursor-big {
  opacity: 0;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.mouseCursor.cursor-big {
  width: 20px;
  height: 20px;
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
}

.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--st-theme);
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
}
.cursor-inner span {
  color: var(--st-text);
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.cursor-inner.cursor-hover {
  -webkit-margin-start: -10px;
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--st-theme);
  border: 1px solid #686363;
  opacity: 0;
}

.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000000;
  opacity: 0.7;
  cursor: url(../img/close.png), auto;
}

@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.search-popup__form {
  position: relative;
}

.search-popup__form input[type="search"],
.search-popup__form input[type="text"] {
  width: 100%;
  height: 66px;
  border: none;
  outline: none;
  padding-left: 20px;
  background-color: var(--st-white);
  font-size: 16px;
  font-weight: 400;
  color: var(--st-text);
  transition: all 500ms ease;
  border-radius: 10px;
}

.search-popup__form input[type="search"]:focus,
.search-popup__form input[type="text"]:focus {
  color: var(--st-header);
}

.search-popup__form .search-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 20px;
  color: var(--st-white);
  background-color: #87c13f;
  transition: all 0.4s ease-in-out;
}
.search-popup__form .search-btn:hover {
  background-color: var(--st-header);
}

.search-popup__form .eolexi-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.search-popup.active {
  z-index: 999999;
}

.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.7;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

.st-page-nav-wrap ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.st-page-nav-wrap ul li {
  display: inline-block;
}
.st-page-nav-wrap ul li:first-child {
  border: 1px solid #bfbfbf;
}
.st-page-nav-wrap ul li:first-child a {
  color: var(--st-theme);
  background-color: transparent;
}
.st-page-nav-wrap ul li:last-child {
  border: 1px solid var(--st-theme);
}
.st-page-nav-wrap ul li:last-child a {
  color: var(--st-theme);
  background-color: transparent;
}
.st-page-nav-wrap ul li .st-page-numbers {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  color: var(--st-header);
  text-align: center;
  background-color: var(--st-bg);
  border: 1px solid transparent;
}
.st-page-nav-wrap ul li .st-page-numbers.current {
  background-color: var(--st-theme);
  color: var(--st-white);
}
@media (max-width: 767px) {
  .st-page-nav-wrap ul li .st-page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.st-page-nav-wrap ul li .st-page-numbers i {
  margin-top: 2px;
}
.st-page-nav-wrap ul li .st-page-numbers:hover {
  background-color: var(--st-theme);
  color: var(--st-white);
}

.project-wrapper {
  margin-left: -3%;
  margin-right: -10%;
}
@media (max-width: 1600px) {
  .project-wrapper {
    margin-left: -15%;
    margin-right: -15%;
  }
}
@media (max-width: 1199px) {
  .project-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}

.project-box-items {
  margin-top: 30px;
  position: relative;
  background-color: #f4f4f4;
  border-radius: 16px;
}
.project-box-items.style-margin {
  margin-top: 70px;
}
@media (max-width: 1199px) {
  .project-box-items.style-margin {
    margin-top: 30px !important;
  }
}
.project-box-items .project-thumb {
  overflow: hidden;
  position: relative;
  border-radius: 16px 16px 0px 0px;
}
.project-box-items .project-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 0px 0px;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.project-box-items .project-thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.project-box-items .project-thumb .project-post-box {
  border-radius: 4px;
  display: inline-block;
  background-color: var(--st-theme);
  padding: 5px 14px;
  color: var(--st-header);
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 9;
  border-radius: 32px;
}
.project-box-items .project-content {
  padding: 24px;
}
.project-box-items .project-content .location {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}
.project-box-items .project-content .location i {
  color: #87c13f;
}
@media (max-width: 1399px) {
  .project-box-items .project-content h3 {
    font-size: 20px;
  }
}
.project-box-items .project-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.project-box-items .project-content h3 a:hover {
  color: #87c13f;
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, #87c13f 0%, #87c13f 100%);
}
.project-box-items .project-content .project-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}
@media (max-width: 1199px) {
  .project-box-items .project-content .project-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.project-box-items .project-content .project-list li {
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  gap: 10px;
}
.project-box-items .project-content .project-list li i {
  font-size: 18px;
  line-height: 1;
}
.project-box-items .project-content .project-link-btn {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  color: #87c13f;
  margin-top: 24px;
  font-family: "Manrope", sans-serif;
  transition: all 0.4s ease-in-out;
}
.project-box-items .project-content .project-link-btn i {
  margin-right: 8px;
}
.project-box-items .project-content .project-link-btn:hover {
  text-decoration: underline;
}
.project-box-items:hover .project-thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.project-box-items:hover .project-thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.project-image-2 {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.project-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.project-image-2 img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.project-image-2 .project-content-item {
  position: absolute;
  bottom: 32px;
  left: -100px;
  border-radius: 0px 8px 8px 0px;
  background: var(--st-header);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  gap: 64px;
}
@media (max-width: 1600px) {
  .project-image-2 .project-content-item {
    gap: 30px;
  }
}
@media (max-width: 1399px) {
  .project-image-2 .project-content-item {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.project-image-2 .project-content-item span {
  display: inline-block;
  color: var(--st-theme);
  font-weight: 500;
  position: relative;
  padding-left: 35px;
}
.project-image-2 .project-content-item span::before {
  position: absolute;
  top: 13px;
  left: 0;
  content: "";
  width: 24px;
  height: 2px;
  background-color: var(--st-theme);
}
.project-image-2 .project-content-item h3 a {
  color: var(--st-white);
}
.project-image-2 .project-content-item h3 a:hover {
  color: var(--st-theme);
}
.project-image-2 .project-content-item .link-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: var(--st-theme);
}
.project-image-2 .project-content-item .link-btn i {
  margin-left: 8px;
}
.project-image-2 .project-content-item .link-btn:hover {
  color: #87c13f;
}
.project-image-2:hover img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.project-image-2:hover img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.project-image-2:hover .project-content-item {
  opacity: 1;
  visibility: visible;
  left: 0;
}

.project-details-wrapper .details-content h2 {
  font-size: 40px;
}
.project-details-wrapper .project-information {
  border-radius: 16px;
  background: #f4f4f4;
  padding: 32px;
  position: relative;
  z-index: 9;
}
.project-details-wrapper .project-information h3 {
  font-weight: 800;
}
.project-details-wrapper .project-information ul {
  margin-top: 25px;
}
.project-details-wrapper .project-information ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-details-wrapper .project-information ul li:not(:last-child) {
  margin-bottom: 20px;
}
.project-details-wrapper .project-information ul li span {
  font-size: 16px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: var(--st-header);
}
.project-details-wrapper .project-information .social-icon {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.project-details-wrapper .project-information .social-icon span {
  font-size: 16px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: var(--st-header);
}
.project-details-wrapper .project-information .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  color: var(--st-header);
}
.project-details-wrapper .project-information .social-icon a:hover {
  background-color: #87c13f;
  color: var(--st-white);
}
.project-details-wrapper .project-details-items .details-image {
  margin-top: -110px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-details-items .details-image {
    margin-top: 0;
  }
}
.project-details-wrapper .project-details-items .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.project-details-wrapper .list-items {
  margin-top: 30px;
}
.project-details-wrapper .list-items h3 {
  font-size: 32px;
  font-weight: 800;
}
.project-details-wrapper .list-items ul {
  margin-top: 25px;
}
.project-details-wrapper .list-items ul li {
  font-size: 18px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  display: flex;
  align-items: center;
  gap: 15px;
}
.project-details-wrapper .list-items ul li:not(:last-child) {
  margin-bottom: 15px;
}
.project-details-wrapper .list-items ul li i {
  color: #87c13f;
}
.project-details-wrapper .details-2 {
  margin-top: 30px;
}
.project-details-wrapper .details-2 img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

@media (max-width: 1199px) {
  .propertie-feature-wrapper {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .propertie-feature-wrapper {
    padding: 80px 0 0;
  }
}
.propertie-feature-wrapper .propertie-content .propertie-text {
  color: var(--st-white);
  opacity: 0.7;
  margin-top: 25px;
  max-width: 580px;
}
.propertie-feature-wrapper .propertie-content .theme-btn {
  margin-top: 45px;
  background-color: transparent;
  color: var(--st-white);
  border: 1.5px solid var(--st-theme);
}
@media (max-width: 767px) {
  .propertie-feature-wrapper .propertie-content .theme-btn {
    margin-top: 25px;
    padding: 18px 24px;
    font-size: 15px;
  }
}
.propertie-feature-wrapper .propertie-content .theme-btn:hover {
  color: var(--st-header);
}
@media (max-width: 1199px) {
  .propertie-feature-wrapper .propertie-image img {
    width: 100%;
    height: 100%;
  }
}

.propertie-wrapper .propertie-slider2 {
  margin-left: -17%;
  margin-right: -17%;
}
@media (max-width: 1199px) {
  .propertie-wrapper .propertie-slider2 {
    margin-left: 0;
    margin-right: 0;
  }
}

.propertie-box-image {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.propertie-box-image.height-style {
  height: 463px;
}
.propertie-box-image.height-style img {
  object-fit: cover;
}
.propertie-box-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.propertie-box-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.propertie-box-image .propertie-content-item {
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  border-radius: 0px 0px 16px 16px;
  background: var(--st-header);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.propertie-box-image .propertie-content-item span {
  display: inline-block;
  color: var(--st-theme);
  font-weight: 500;
  position: relative;
  padding-left: 35px;
}
.propertie-box-image .propertie-content-item span::before {
  position: absolute;
  top: 13px;
  left: 0;
  content: "";
  width: 24px;
  height: 2px;
  background-color: var(--st-theme);
}
.propertie-box-image .propertie-content-item h3 a {
  color: var(--st-white);
}
.propertie-box-image .propertie-content-item h3 a:hover {
  color: var(--st-theme);
}
.propertie-box-image .propertie-content-item .link-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: var(--st-theme);
}
.propertie-box-image .propertie-content-item .link-btn i {
  margin-left: 8px;
}
.propertie-box-image .propertie-content-item .link-btn:hover {
  color: #87c13f;
}
.propertie-box-image:hover img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.propertie-box-image:hover img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.propertie-box-image:hover .propertie-content-item {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.listing-wrapper {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 991px) {
  .listing-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .listing-wrapper {
    margin-top: 30px;
  }
}
.listing-wrapper .listing-items-thumb {
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  height: 544px;
  width: 239px !important;
  position: relative;
}
@media (max-width: 991px) {
  .listing-wrapper .listing-items-thumb {
    width: 779px !important;
  }
  .listing-wrapper .listing-items-thumb .listing-content {
    opacity: 1;
    visibility: visible;
    right: 32px;
  }
  .listing-wrapper .listing-items-thumb .post-box {
    opacity: 1;
    visibility: visible;
  }
}
.listing-wrapper .listing-items-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}
.listing-wrapper .listing-items-thumb .post-box {
  position: absolute;
  top: 32px;
  left: 32px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--st-header);
  font-family: "Manrope", sans-serif;
  background-color: var(--st-theme);
  padding: 9px 18px;
  line-height: 1;
  border-radius: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.listing-wrapper .listing-items-thumb .listing-content {
  position: absolute;
  right: -200px;
  bottom: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.listing-wrapper .listing-items-thumb .listing-content .pricing-text {
  display: inline-block;
  background-color: #87c13f;
  color: var(--st-white);
  font-size: 16px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  padding: 9px 14px;
  line-height: 1;
  border-radius: 8px 8px 0px 0px;
}
.listing-wrapper .listing-items-thumb .listing-content .content {
  border-radius: 0px 8px 8px 8px;
  background: var(--st-white);
  padding: 32px;
}
.listing-wrapper .listing-items-thumb .listing-content .content h6 {
  font-size: 16px;
  font-weight: 600;
  color: #87c13f;
  margin-bottom: 10px;
}
.listing-wrapper .listing-items-thumb .listing-content .content h3 a:hover {
  color: #87c13f;
}
.listing-wrapper .listing-items-thumb .listing-content .content .project-list {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 25px;
}
@media (max-width: 1199px) {
  .listing-wrapper
    .listing-items-thumb
    .listing-content
    .content
    .project-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.listing-wrapper
  .listing-items-thumb
  .listing-content
  .content
  .project-list
  li {
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  gap: 10px;
}
.listing-wrapper
  .listing-items-thumb
  .listing-content
  .content
  .project-list
  li
  img {
  width: initial;
  border-radius: 0;
}
.listing-wrapper
  .listing-items-thumb
  .listing-content
  .content
  .project-list
  li
  i {
  font-size: 18px;
  line-height: 1;
}
.listing-wrapper .listing-items-thumb .listing-content .content .listing-btn {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .listing-wrapper .listing-items-thumb .listing-content .content .listing-btn {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.listing-wrapper
  .listing-items-thumb
  .listing-content
  .content
  .listing-btn
  .theme-btn {
  background-color: transparent;
  border: 1px solid #87c13f;
  color: #87c13f;
  padding: 18px 32px;
}
.listing-wrapper
  .listing-items-thumb
  .listing-content
  .content
  .listing-btn
  .theme-btn::before {
  background-color: #87c13f;
}
.listing-wrapper
  .listing-items-thumb
  .listing-content
  .content
  .listing-btn
  .theme-btn:hover {
  color: var(--st-white);
}
.listing-wrapper
  .listing-items-thumb
  .listing-content
  .content
  .listing-btn
  .client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.listing-wrapper
  .listing-items-thumb
  .listing-content
  .content
  .listing-btn
  .client-info
  img {
  width: initial;
  height: initial;
}
.listing-wrapper
  .listing-items-thumb
  .listing-content
  .content
  .listing-btn
  .client-info
  p {
  font-weight: 500;
  font-family: "Manrope", sans-serif;
}
.listing-wrapper .listing-items-thumb.active {
  width: 779px !important;
}
.listing-wrapper .listing-items-thumb.active .listing-content {
  opacity: 1;
  visibility: visible;
  right: 32px;
}
.listing-wrapper .listing-items-thumb.active .post-box {
  opacity: 1;
  visibility: visible;
}

.propertie-wrapper-3 .content .nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}
.propertie-wrapper-3 .content .nav .nav-item .nav-link {
  font-size: 20px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  border-radius: 32px;
  background: #fff;
  color: var(--st-header);
  padding: 9px 22px;
  line-height: 1;
}
.propertie-wrapper-3 .content .nav .nav-item .nav-link.active {
  background-color: #87c13f;
  color: var(--st-white);
}
.propertie-wrapper-3 .content .list-items {
  margin-top: 30px;
}
.propertie-wrapper-3 .content .list-items li {
  font-size: 20px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: var(--st-header);
}
.propertie-wrapper-3 .content .list-items li:not(:last-child) {
  margin-bottom: 20px;
}
.propertie-wrapper-3 .content .list-items li i {
  color: #87c13f;
  margin-right: 10px;
}
.propertie-wrapper-3 .propertie-image {
  margin-left: -60px;
}
@media (max-width: 1199px) {
  .propertie-wrapper-3 .propertie-image {
    margin-left: 0;
  }
}
.propertie-wrapper-3 .propertie-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 16px 200px;
}

.propertie-list-sidebar .propertie-widget-items {
  border-radius: 16px;
  background: #f4f4f4;
  margin-top: 30px;
  padding: 32px;
}
.propertie-list-sidebar .propertie-widget-items h3 {
  margin-bottom: 20px;
}
.propertie-list-sidebar
  .propertie-widget-items
  .categories-list
  .checkbox-single {
  position: relative;
  padding-left: 18px;
  cursor: pointer;
}
.propertie-list-sidebar
  .propertie-widget-items
  .categories-list
  .checkbox-single
  input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.propertie-list-sidebar
  .propertie-widget-items
  .categories-list
  .checkbox-single:not(:last-child) {
  margin-bottom: 10px;
}
.propertie-list-sidebar
  .propertie-widget-items
  .categories-list
  .checkbox-single
  .checkbox-area
  .checkmark {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid rgb(229, 229, 229);
  top: 5px;
  border-radius: 4px;
  background-color: #fff;
}
.propertie-list-sidebar
  .propertie-widget-items
  .categories-list
  .checkbox-single
  .checkbox-area
  .checkmark::after {
  content: "";
}
.propertie-list-sidebar
  .propertie-widget-items
  .categories-list
  .checkbox-single
  .checkbox-area
  input:checked
  ~ .checkmark {
  background-color: #87c13f;
}
.propertie-list-sidebar
  .propertie-widget-items
  .categories-list
  .checkbox-single
  .checkbox-area
  input:checked
  ~ .checkmark::after {
  content: "\f00c";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  top: -5px;
  left: 5px;
  color: #87c13f;
  font-size: 11px;
}
.propertie-list-sidebar
  .propertie-widget-items
  .categories-list
  .checkbox-single
  .checkbox-area
  input:checked
  ~ .checkmark:after {
  display: block;
  color: var(--st-white);
}
.propertie-list-sidebar
  .propertie-widget-items
  .categories-list
  .checkbox-single
  .text-color {
  font-weight: 500;
  color: var(--st-header);
  font-size: 16px;
  font-family: "Manrope", sans-serif;
}
.propertie-list-sidebar
  .propertie-widget-items
  .categories-list
  .checkbox-single
  .text-color
  .star {
  color: #ffa41b;
  margin-right: 5px;
}
.propertie-list-sidebar .propertie-widget-items .price-range-wrapper {
  /* Custom thumb styling */
  /* Remove the default appearance for sliders in Firefox */
}
.propertie-list-sidebar
  .propertie-widget-items
  .price-range-wrapper
  .slider-container {
  position: relative;
  width: 100%;
}
.propertie-list-sidebar
  .propertie-widget-items
  .price-range-wrapper
  .price-text
  label {
  color: #1b1f2a;
  font-size: 20px;
  font-weight: 500;
}
.propertie-list-sidebar
  .propertie-widget-items
  .price-range-wrapper
  .price-text
  input {
  color: #1b1f2a;
  font-size: 18px;
  font-weight: 500;
  background: transparent;
}
.propertie-list-sidebar .propertie-widget-items .price-range-wrapper .slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #ddd; /* Default background */
  outline: none;
  position: absolute;
  top: 0;
  pointer-events: none;
}
.propertie-list-sidebar
  .propertie-widget-items
  .price-range-wrapper
  .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #e3572d;
  cursor: pointer;
  border: 2px solid #fff;
  position: relative;
  z-index: 2;
  pointer-events: all;
}
.propertie-list-sidebar
  .propertie-widget-items
  .price-range-wrapper
  .slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #e3572d;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #000;
  z-index: 2;
  position: relative;
}
.propertie-list-sidebar
  .propertie-widget-items
  .price-range-wrapper
  .slider::-ms-thumb {
  width: 20px;
  height: 20px;
  background: #e3572d;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #000;
  z-index: 2;
  position: relative;
}
.propertie-list-sidebar
  .propertie-widget-items
  .price-range-wrapper
  input[type="range"]::-moz-range-track {
  background: transparent;
}
.propertie-list-sidebar .gt-category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--st-header);
  transition: all 0.4s ease-in-out;
  background-color: var(--st-white);
  padding: 18px 22px;
  font-family: "Manrope", sans-serif;
  line-height: 1;
  border-radius: 8px;
}
.propertie-list-sidebar .gt-category-list li a {
  color: var(--st-header);
}
.propertie-list-sidebar .gt-category-list li i {
  transition: all 0.4s ease-in-out;
  color: var(--st-header);
}
.propertie-list-sidebar .gt-category-list li:not(:last-child) {
  margin-bottom: 20px;
}
.propertie-list-sidebar .gt-category-list li span b {
  font-weight: 400;
  color: var(--st-theme);
}
.propertie-list-sidebar .gt-category-list li:hover {
  background-color: #87c13f;
}
.propertie-list-sidebar .gt-category-list li:hover a {
  color: var(--st-white);
}
.propertie-list-sidebar .gt-category-list li:hover i {
  color: var(--st-white);
}
.propertie-list-sidebar .tagcloud a {
  display: inline-block;
  padding: 12px 22px;
  line-height: 1;
  font-weight: 500;
  background: var(--st-white);
  margin-right: 10px;
  margin-bottom: 10px;
  text-transform: capitalize;
  border-radius: 30px;
}
.propertie-list-sidebar .tagcloud a:last-child {
  margin-right: 0;
}
.propertie-list-sidebar .tagcloud a:hover {
  background-color: #87c13f;
  color: var(--st-white);
}

.gt-shop-notices-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .gt-shop-notices-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.gt-shop-notices-wrapper p {
  font-size: 18px;
  color: var(--st-header);
}
.gt-shop-notices-wrapper .form .single-select {
  padding: 16px 20px;
  border: none;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  line-height: 1;
  height: initial;
  border: 1px solid #bfbfbf;
  background: #f2f2f2;
  color: var(--st-header);
  border-radius: 8px;
}
.gt-shop-notices-wrapper .form .single-select::after {
  right: 20px;
  border-bottom: 2px solid var(--st-header);
  border-right: 2px solid var(--st-header);
  margin-top: -5px;
  width: 8px;
  height: 8px;
}
.gt-shop-notices-wrapper .form .single-select .option {
  color: var(--st-text);
}
.gt-shop-notices-wrapper .form .list {
  width: 100%;
}
.gt-shop-notices-wrapper .form-clt {
  max-width: 300px;
  width: 100%;
  position: relative;
  z-index: 99;
}

.propertie-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.propertie-details-wrapper .details-content {
  margin-top: 25px;
}
.propertie-details-wrapper .details-content .location {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}
.propertie-details-wrapper .details-content .location i {
  color: #87c13f;
}
.propertie-details-wrapper .details-content h2 {
  font-size: 40px;
}
.propertie-details-wrapper .details-content .list-items {
  margin-top: 24px;
}
.propertie-details-wrapper .details-content .list-items h3 {
  font-weight: 800;
}
.propertie-details-wrapper .details-content .list-items ul {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1199px) {
  .propertie-details-wrapper .details-content .list-items ul {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.propertie-details-wrapper .details-content .list-items ul i {
  margin-right: 6px;
}
.propertie-details-wrapper .details-content .list-items-2 {
  margin-top: 30px;
}
.propertie-details-wrapper .details-content .list-items-2 h3 {
  font-weight: 800;
}
.propertie-details-wrapper .details-content .list-items-2 ul {
  margin-top: 20px;
}
.propertie-details-wrapper .details-content .list-items-2 ul li {
  font-family: "Manrope", sans-serif;
}
.propertie-details-wrapper
  .details-content
  .list-items-2
  ul
  li:not(:last-child) {
  margin-bottom: 15px;
}
.propertie-details-wrapper .details-content .list-items-2 ul li i {
  color: #87c13f;
  margin-right: 8px;
}
.propertie-details-wrapper .details-content .list-items-2 ul li b {
  color: var(--st-header);
  margin-right: 8px;
}
.propertie-details-wrapper .details-content .details-img {
  margin-top: 30px;
}
.propertie-details-wrapper .details-content .details-img img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.propertie-details-wrapper .details-content .details-img.style-2 {
  margin-top: 17px;
}
.propertie-details-wrapper .details-content .list-items-3 {
  margin-top: 30px;
}
.propertie-details-wrapper .details-content .list-items-3 h3 {
  font-weight: 800;
}
.propertie-details-wrapper .details-content .list-items-3 .list-wrap {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .propertie-details-wrapper .details-content .list-items-3 .list-wrap {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: start;
  }
}
.propertie-details-wrapper .details-content .list-items-3 .list-wrap ul li {
  font-family: "Manrope", sans-serif;
  color: var(--st-header);
  font-weight: 500;
}
.propertie-details-wrapper
  .details-content
  .list-items-3
  .list-wrap
  ul
  li:not(:last-child) {
  margin-bottom: 15px;
}
.propertie-details-wrapper .details-content .list-items-3 .list-wrap ul li i {
  color: #87c13f;
  margin-right: 8px;
}
.propertie-details-wrapper .details-content .floor-plan-items {
  margin-top: 50px;
}
.propertie-details-wrapper .details-content .floor-plan-items .tab-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .propertie-details-wrapper .details-content .floor-plan-items .tab-wrap {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.propertie-details-wrapper .details-content .floor-plan-items .nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}
.propertie-details-wrapper
  .details-content
  .floor-plan-items
  .nav
  .nav-item
  .nav-link {
  display: inline-block;
  border-radius: 32px;
  background: #f4f4f4;
  font-size: 18px;
  font-weight: 600;
  color: var(--st-header);
  font-family: "Manrope", sans-serif;
}
.propertie-details-wrapper
  .details-content
  .floor-plan-items
  .nav
  .nav-item
  .nav-link.active {
  background-color: #87c13f;
  color: var(--st-white);
}
.propertie-details-wrapper .details-content .floor-plan-items .thumb img {
  width: 100%;
  height: 100%;
}
.propertie-details-wrapper .details-content .video-items {
  margin-top: 30px;
}
.propertie-details-wrapper .details-content .video-items h3 {
  font-size: 32px;
}
.propertie-details-wrapper .details-content .video-items .video-image {
  margin-top: 30px;
  position: relative;
}
.propertie-details-wrapper .details-content .video-items .video-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.propertie-details-wrapper
  .details-content
  .video-items
  .video-image
  .video-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #87c13f;
  color: var(--st-white);
  text-align: center;
  line-height: 110px;
  font-size: 24px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}
.propertie-details-wrapper .propertie-details-sidebar .propertie-sidebar-item {
  padding: 32px;
  border-radius: 16px;
  background: #f4f4f4;
  margin-top: 30px;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  h3 {
  font-weight: 800;
  margin-bottom: 25px;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  .info-area-item
  .info-items {
  display: flex;
  align-items: center;
  gap: 18px;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  .info-area-item
  .info-items
  img {
  border: 2px solid #87c13f;
  border-radius: 50%;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  .info-area-item
  .info-list {
  margin-top: 20px;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  .info-area-item
  .info-list
  li
  i {
  margin-right: 5px;
  color: var(--st-header);
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  .info-area-item
  .info-list
  li
  i:not(:last-child) {
  margin-bottom: 15px;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  .info-area-item
  .social-icon {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  .info-area-item
  .social-icon
  span {
  font-size: 16px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: var(--st-header);
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  .info-area-item
  .social-icon
  a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  color: var(--st-header);
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  .info-area-item
  .social-icon
  a:hover {
  background-color: var(--st-theme);
  color: var(--st-header);
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  .info-area-item
  .link-btn {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Manrope", sans-serif;
  color: #87c13f;
  text-decoration: underline;
  margin-top: 30px;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  .contact-list
  li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  .contact-list
  li:not(:last-child) {
  margin-bottom: 24px;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  .contact-list
  li
  .icon {
  color: var(--st-header);
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: var(--st-white);
  border-radius: 50%;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  .contact-list
  li
  .content
  h4 {
  font-size: 18px;
  margin-top: 8px;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  form
  .form-clt
  input,
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  form
  .form-clt
  textarea {
  display: inline-block;
  width: 100%;
  border: none;
  padding: 19px 20px;
  background-color: var(--st-white);
  border-radius: 10px;
  color: var(--st-text);
  line-height: 1;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  form
  .form-clt
  textarea {
  padding-bottom: 92px;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  form
  .form-clt
  .single-select {
  display: inline-block;
  width: 100%;
  border: none;
  padding: 19px 20px;
  background-color: var(--st-white);
  border-radius: 30px;
  color: var(--st-text);
  line-height: 1;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  form
  .form-clt
  .single-select::after {
  right: 20px;
  width: 9px;
  height: 9px;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  form
  .form-clt
  .single-select
  .list {
  width: 100%;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  form
  .theme-btn::before {
  background-color: #87c13f;
}
.propertie-details-wrapper
  .propertie-details-sidebar
  .propertie-sidebar-item
  form
  .theme-btn:hover {
  color: var(--st-white);
}

.propertise-wrapper-3 {
  margin-left: -30%;
  margin-right: -30%;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .propertise-wrapper-3 {
    margin-left: 0;
    margin-right: 0;
  }
}
.propertise-wrapper-3 .propertie-card-items-3 .propertie-image {
  position: relative;
}
@media (max-width: 1199px) {
  .propertise-wrapper-3 .propertie-card-items-3 .propertie-image {
    height: 400px;
  }
}
.propertise-wrapper-3 .propertie-card-items-3 .propertie-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
@media (max-width: 1199px) {
  .propertise-wrapper-3 .propertie-card-items-3 .propertie-image img {
    object-fit: cover;
  }
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content {
  position: absolute;
  left: 40px;
  bottom: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .propertise-wrapper-3
    .propertie-card-items-3
    .propertie-image
    .listing-content {
    left: 0;
    right: 20px;
  }
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content
  .pricing-text {
  display: inline-block;
  background-color: var(--st-theme);
  color: var(--st-header);
  font-size: 16px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  padding: 9px 14px;
  line-height: 1;
  border-radius: 8px 8px 0px 0px;
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content
  .content-ber {
  display: flex;
  align-items: center;
  gap: 90px;
  border-radius: 0px 8px 8px 8px;
  background: var(--st-white);
  padding: 20px;
}
@media (max-width: 1199px) {
  .propertise-wrapper-3
    .propertie-card-items-3
    .propertie-image
    .listing-content
    .content-ber {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content
  .content-ber
  .content {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1199px) {
  .propertise-wrapper-3
    .propertie-card-items-3
    .propertie-image
    .listing-content
    .content-ber
    .content {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content
  .content-ber
  .content
  h6 {
  font-size: 16px;
  font-weight: 600;
  color: #87c13f;
  margin-bottom: 10px;
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content
  .content-ber
  .content
  h4 {
  font-weight: 800;
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content
  .content-ber
  .content
  h4
  a:hover {
  color: #87c13f;
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content
  .content-ber
  .content
  .project-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1199px) {
  .propertise-wrapper-3
    .propertie-card-items-3
    .propertie-image
    .listing-content
    .content-ber
    .content
    .project-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content
  .content-ber
  .content
  .project-list
  li {
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  gap: 10px;
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content
  .content-ber
  .content
  .project-list
  li
  img {
  width: initial;
  border-radius: 0;
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content
  .content-ber
  .content
  .project-list
  li
  i {
  font-size: 18px;
  line-height: 1;
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content
  .content-ber
  .listing-btn
  .theme-btn {
  background-color: transparent;
  border: 1px solid #87c13f;
  color: #87c13f;
  padding: 18px 32px;
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content
  .content-ber
  .listing-btn
  .theme-btn::before {
  background-color: #87c13f;
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content
  .content-ber
  .listing-btn
  .theme-btn:hover {
  color: var(--st-white);
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content
  .content-ber
  .listing-btn
  .client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content
  .content-ber
  .listing-btn
  .client-info
  img {
  width: initial;
  height: initial;
}
.propertise-wrapper-3
  .propertie-card-items-3
  .propertie-image
  .listing-content
  .content-ber
  .listing-btn
  .client-info
  p {
  font-weight: 500;
  font-family: "Manrope", sans-serif;
}

.propertise-section-3 .section-title-area .array-button-2 {
  display: flex;
  align-items: center;
  gap: 24px;
}
.propertise-section-3 .section-title-area .array-button-2 .array-prev {
  background-color: var(--st-white);
  color: var(--st-header);
}
.propertise-section-3 .section-title-area .array-button-2 .array-prev:hover {
  background-color: var(--st-theme);
}
.propertise-section-3 .section-title-area .array-button-2 .array-next {
  background-color: var(--st-theme);
  color: var(--st-header);
}
.propertise-section-3
  .propertise-wrapper-3
  .swiper-slide.swiper-slide-active
  .propertie-card-items-3
  .propertie-image
  .listing-content {
  opacity: 1;
  visibility: visible;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title h5 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
  color: #16381b;
  font-family: "Manrope", sans-serif;
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 8px;
}
@media (max-width: 767px) {
  .section-title h5 {
    font-size: 16px;
  }
}
@media (max-width: 470px) {
  .section-title h5 {
    font-size: 14px;
  }
}
.section-title h5 i {
  color: #16381b;
}
.section-title h2 {
  text-transform: capitalize;
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
.section-title-area .section-title {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg-service {
  background-color: #16381b;
}

.section-bg-2 {
  background-color: #16381b;
}

.section-bg-3 {
  background-color: #f4f4f4;
}
/* section.team-section-4.fix.section-padding {
    background-color: #16381b;
}. */
section.cta-check-section.fix.section-bg.bg-white-style.section-padding.pb-0 {
  background-color: #16381b !important;
}
section.cta-check-section.fix.section-bg.bg-white-style.section-padding.pb-0 {
}

.section-padding {
  padding: 70px  0;
}

@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.service-details-wrapper .gt-details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.service-details-wrapper .gt-details-content {
  margin-top: 25px;
}
.service-details-wrapper .gt-details-content h2 {
  font-weight: 800;
  font-size: 40px;
}
.service-details-wrapper .gt-details-content .gt-box {
  font-size: 20px;
  font-weight: 600;
  color: var(--st-header);
  font-family: "Manrope", sans-serif;
  border-radius: 8px;
  border-left: 5px solid #87c13f;
  background: var(--st-bg);
  display: inline-block;
  padding: 24px 32px;
  font-style: italic;
  margin-top: 30px;
  line-height: 164%;
}
.service-details-wrapper .gt-details-content .gt-list-content {
  margin-top: 32px;
  margin-bottom: 40px;
}
.service-details-wrapper .gt-details-content .gt-list-content h3 {
  margin-bottom: 20px;
  font-weight: 800;
}
.service-details-wrapper .gt-details-content .gt-list-content ul li span {
  font-size: 16px;
  color: var(--st-header);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
}
.service-details-wrapper .gt-details-content .gt-list-content ul li i {
  color: #87c13f;
}
.service-details-wrapper
  .gt-details-content
  .gt-list-content
  ul
  li:not(:last-child) {
  margin-bottom: 20px;
}
.service-details-wrapper .gt-details-content .details-img {
  margin-top: 30px;
}
.service-details-wrapper .gt-details-content .details-img img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.service-details-wrapper .gt-details-content .details-img.style-2 {
  margin-top: 17px;
}
.service-details-wrapper .gt-details-content .faq-content {
  margin-top: 40px;
}
.service-details-wrapper .gt-details-content .faq-content h3 {
  font-size: 32px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .service-details-wrapper .gt-details-content .faq-content h3 {
    font-size: 25px;
  }
}
.service-details-wrapper .gt-details-content .faq-content .accordion-item {
  border: none !important;
  background: var(--st-bg);
}
.service-details-wrapper
  .gt-details-content
  .faq-content
  .accordion-item
  .accordion-header
  .accordion-button {
  font-weight: 800;
  color: var(--st-header);
  letter-spacing: -0.2px;
  border: none !important;
  font-family: "Manrope", sans-serif;
  border-radius: 0;
  box-shadow: none;
  background: #f4f4f4;
  padding: 20px 30px 0;
  text-transform: capitalize;
  font-size: 20px;
  border-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media (max-width: 1199px) {
  .service-details-wrapper
    .gt-details-content
    .faq-content
    .accordion-item
    .accordion-header
    .accordion-button {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .service-details-wrapper
    .gt-details-content
    .faq-content
    .accordion-item
    .accordion-header
    .accordion-button {
    font-size: 18px;
    padding: 20px 20px 0;
  }
}
.service-details-wrapper
  .gt-details-content
  .faq-content
  .accordion-item
  .accordion-header
  .accordion-button::after {
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  position: absolute;
  top: 22px;
  right: 24px;
  content: "\f061";
  color: var(--st-header);
  font-family: "Font Awesome 6 Pro";
  background-image: none;
}
.service-details-wrapper
  .gt-details-content
  .faq-content
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  font-weight: 500;
  color: #87c13f;
  transform: rotate(0);
  background-image: none;
  content: "\f063";
}
.service-details-wrapper
  .gt-details-content
  .faq-content
  .accordion-item
  .accordion-header
  .accordion-button.collapsed {
  background: #f4f4f4;
  padding: 22px 30px;
  color: var(--st-header);
  border-radius: 16px;
}
.service-details-wrapper
  .gt-details-content
  .faq-content
  .accordion-item
  .accordion-collapse
  .accordion-body {
  padding-left: 33px;
  padding-top: 15px;
  padding-right: 40px;
  color: var(--st-text);
  background: var(--st-bg2);
  padding-bottom: 28px;
  border-radius: 16px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
@media (max-width: 767px) {
  .service-details-wrapper
    .gt-details-content
    .faq-content
    .accordion-item
    .accordion-collapse
    .accordion-body {
    padding-left: 60px;
  }
}
@media (max-width: 575px) {
  .service-details-wrapper
    .gt-details-content
    .faq-content
    .accordion-item
    .accordion-collapse
    .accordion-body {
    padding-left: 20px;
    padding-bottom: 20px;
  }
}

.service-box-items-2 {
  border-radius: 16px;
  background: #f4f4f4;
  padding-bottom: 20px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  border: 1.5px solid #f4f4f4;
  margin-bottom: 25px;
}
.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}
.service-box-items-2.style-2 {
  margin-top: 30px;
}
.service-box-items-2 .icon {
  border-radius: 8px;
  border: 1px solid rgba(204, 206, 213, 0.24);
  background: var(--st-white);
  width: 88px;
  height: 88px;
  line-height: 95px;
  text-align: center;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
  font-size: 48px;
  color: var(--st-header);
}
.service-box-items-2 .content {
  margin-top: 25px;
}
.service-box-items-2 .content h3 {
  margin-bottom: 10px;
}
.service-box-items-2 .content h3 a:hover {
  color: #16381b;
}
.service-box-items-2 .content .link-btn {
  display: inline-block;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
  color: var(--st-header);
  font-family: "Manrope", sans-serif;
  margin-top: 15px;
}
.service-box-items-2 .content .link-btn i {
  margin-right: 5px;
}
.service-box-items-2 .content .link-btn:hover {
  color: #16381b;
}
.service-box-items-2:hover {
  border: 1.5px solid#16381b;
}
.service-box-items-2:hover .icon {
  background-color: #16381b;
  color: var(--st-white);
}

.st-team-thumb-items {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.st-team-thumb-items img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.st-team-thumb-items .st-team-content {
  background-color: #87c13f;
  text-align: center;
  padding: 16px 24px;
  position: absolute;
  bottom: -100px;
  left: 40px;
  right: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  border-radius: 104px;
}
.st-team-thumb-items .st-team-content h3 {
  margin-bottom: 5px;
}
.st-team-thumb-items .st-team-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--st-white);
}
.st-team-thumb-items .st-team-content h3 a:hover {
  color: var(--st-white);
  background-size: 100% 2px;
  background-image: linear-gradient(
    180deg,
    var(--st-white) 0%,
    var(--st-white) 100%
  );
}
.st-team-thumb-items .st-team-content p {
  color: var(--st-white);
}
.st-team-thumb-items.mt-0:hover .st-team-content {
  bottom: 24px;
  opacity: 1;
  visibility: visible;
}

.team-section {
  position: relative;
}
.team-section
  .swiper-slide.swiper-slide-active
  .st-team-thumb-items
  .st-team-content {
  bottom: 24px;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1399px) {
  .team-section .st-array-button {
    display: none;
  }
}
.team-section .st-array-button .array-prev {
  position: absolute;
  top: 53%;
  z-index: 99;
  left: 37.5%;
  transform: translate(-50%, -50%);
  background-color: var(--st-white);
  color: var(--st-header);
}
@media (max-width: 1600px) {
  .team-section .st-array-button .array-prev {
    left: 33.5%;
  }
}
.team-section .st-array-button .array-prev:hover {
  background-color: var(--st-theme);
  color: var(--st-header);
}
.team-section .st-array-button .array-next {
  position: absolute;
  top: 53%;
  z-index: 99;
  left: 62.5%;
  transform: translate(-50%, -50%);
  background-color: var(--st-theme);
  color: var(--st-header);
}
.team-section .st-array-button .array-next:hover {
  background-color: var(--st-white);
  color: var(--st-header);
}
@media (max-width: 1600px) {
  .team-section .st-array-button .array-next {
    left: 66.5%;
  }
}

.gt-team-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100% !important;
}
@media (max-width: 991px) {
  .gt-team-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .gt-team-wrapper {
    margin-top: 30px;
  }
}
.gt-team-wrapper .team-box-img-2 {
  margin-top: 30px;
  width: 215px;
  height: 449px;
  position: relative;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
@media (max-width: 991px) {
  .gt-team-wrapper .team-box-img-2 {
    width: initial;
    margin-top: 0;
  }
}
.gt-team-wrapper .team-box-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.gt-team-wrapper .team-box-img-2 .gt-social-profile {
  position: absolute;
  right: 24px;
  top: 24px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
}
.gt-team-wrapper .team-box-img-2 .gt-social-profile ul {
  transform: translateY(-100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.gt-team-wrapper .team-box-img-2 .gt-social-profile ul li a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: var(--st-header);
  color: var(--st-white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 5px;
}
.gt-team-wrapper .team-box-img-2 .gt-social-profile ul li a:hover {
  background-color: #87c13f;
  color: var(--st-white);
}
.gt-team-wrapper .team-box-img-2 .gt-social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  background: var(--st-theme);
  color: var(--st-header);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 5px;
  border-radius: 50%;
}
.gt-team-wrapper .team-box-img-2 .gt-social-profile:hover ul {
  transform: translateY(0);
  opacity: 0;
  visibility: hidden;
}
.gt-team-wrapper .team-box-img-2 .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--st-bg2);
  padding: 20px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  border-radius: 16px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.gt-team-wrapper .team-box-img-2 .content h3 {
  margin-bottom: 5px;
  font-weight: 800;
}
.gt-team-wrapper .team-box-img-2 .content h3 a:hover {
  color: #87c13f;
}
@media (max-width: 991px) {
  .gt-team-wrapper .team-box-img-2 {
    width: 335px !important;
  }
}
.gt-team-wrapper .team-box-img-2.active {
  width: 335px !important;
}
.gt-team-wrapper .team-box-img-2.active .gt-social-profile ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.gt-team-wrapper .team-box-img-2.active .content {
  opacity: 1;
  visibility: visible;
}

.team-section-2 {
  position: relative;
}
.team-section-2 .right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}

.team-box-image-4 {
  position: relative;
}
.team-box-image-4 img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.team-box-image-4 .gt-social-profile {
  position: absolute;
  right: 24px;
  top: 24px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
}
.team-box-image-4 .gt-social-profile ul {
  transform: translateY(-100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.team-box-image-4 .gt-social-profile ul li a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: var(--st-header);
  color: var(--st-white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 5px;
}
.team-box-image-4 .gt-social-profile ul li a:hover {
  background-color: #87c13f;
  color: var(--st-white);
}
.team-box-image-4 .gt-social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  background: var(--st-theme);
  color: var(--st-header);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 5px;
  border-radius: 50%;
}
.team-box-image-4 .gt-social-profile:hover ul {
  transform: translateY(0);
  opacity: 0;
  visibility: hidden;
}
.team-box-image-4 .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--st-bg2);
  padding: 20px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  border-radius: 16px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.team-box-image-4 .content h3 {
  margin-bottom: 5px;
  font-weight: 800;
}
.team-box-image-4 .content h3 a:hover {
  color: #87c13f;
}
.team-box-image-4:hover .content {
  opacity: 1;
  visibility: visible;
}
.team-box-image-4:hover .gt-social-profile ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.team-card-item-3 {
  margin-top: 30px;
}
.team-card-item-3 .team-image {
  position: relative;
}
.team-card-item-3 .team-image .team-content {
  background-color: var(--st-white);
  padding: 10px 24px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 0px 16px;
}
.team-card-item-3 .team-image .team-content h4 {
  font-weight: 800;
  margin-bottom: 5px;
}
.team-card-item-3 .team-image .team-content h4 a:hover {
  color: var(--st-theme);
}
.team-card-item-3 .team-image .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  transform: rotate(90deg);
  position: absolute;
  background-color: var(--st-theme);
  padding: 12px 24px;
  border-radius: 124px;
  top: 40%;
  right: -30%;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.team-card-item-3 .team-image .social-icon a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background-color: var(--st-header);
  border-radius: 100px;
  color: var(--st-white);
  transform: rotate(-90deg);
}
.team-card-item-3 .team-image .social-icon a:hover {
  background-color: #87c13f;
}
.team-card-item-3 .team-image .social-icon span {
  color: var(--st-header);
  font-weight: 600;
  font-size: 18px;
  font-family: "Manrope", sans-serif;
}
.team-card-item-3 .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.team-card-item-3:hover .team-image .social-icon {
  opacity: 1;
  visibility: visible;
  right: -120px;
}

.gt-team-details-wrapper .gt-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.gt-team-details-wrapper .gt-details-content {
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .gt-team-details-wrapper .gt-details-content {
    margin-left: 0;
  }
}
.gt-team-details-wrapper .gt-details-content h2 {
  margin-bottom: 10px;
}
.gt-team-details-wrapper .gt-details-content span {
  font-size: 18px;
  display: inline-block;
  margin-bottom: 20px;
}
.gt-team-details-wrapper .gt-details-content .gt-list {
  margin-top: 30px;
}
.gt-team-details-wrapper .gt-details-content .gt-list li {
  color: var(--st-header);
}
.gt-team-details-wrapper .gt-details-content .gt-list li:not(:last-child) {
  margin-bottom: 10px;
}
.gt-team-details-wrapper .gt-details-content .gt-list li i {
  color: var(--st-header);
  margin-right: 5px;
}
.gt-team-details-wrapper .gt-details-content .gt-social-icon {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gt-team-details-wrapper .gt-details-content .gt-social-icon a {
  width: 44px;
  height: 44px;
  line-height: 44px;
  display: inline-block;
  text-align: center;
  color: var(--st-header);
  background-color: #f4f4f4;
  transition: all 0.4s ease-in-out;
  border-radius: 4px;
}
.gt-team-details-wrapper .gt-details-content .gt-social-icon a:hover {
  background-color: #87c13f;
  color: var(--st-white);
}

.gt-team-experience-wrapper
  .gt-team-experience-content
  .gt-skill-feature-items {
  margin-top: 35px;
  max-width: 550px;
}
.gt-team-experience-wrapper
  .gt-team-experience-content
  .gt-skill-feature-items
  .gt-skill-feature:not(:last-child) {
  margin-bottom: 15px;
}
.gt-team-experience-wrapper
  .gt-team-experience-content
  .gt-skill-feature-items
  .gt-skill-feature
  .gt-box-title {
  font-size: 18px;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
}
.gt-team-experience-wrapper
  .gt-team-experience-content
  .gt-skill-feature-items
  .gt-skill-feature
  .gt-progress-value {
  margin-bottom: 10px;
  color: var(--st-header);
  text-transform: capitalize;
}
.gt-team-experience-wrapper
  .gt-team-experience-content
  .gt-skill-feature-items
  .gt-skill-feature
  .gt-progress {
  position: relative;
  height: 10px;
  background-color: var(--st-white);
  border-radius: 0;
  overflow: visible;
  margin-top: 15px;
}
.gt-team-experience-wrapper
  .gt-team-experience-content
  .gt-skill-feature-items
  .gt-skill-feature
  .gt-progress-bar {
  background-color: #87c13f;
  height: 10px;
  margin: 0;
  border-radius: inherit;
  overflow: visible;
  position: relative;
  margin-top: 0;
}
.gt-team-experience-wrapper
  .gt-team-experience-content
  .gt-skill-feature-items
  .gt-skill-feature
  .gt-progress-value {
  position: absolute;
  top: -38px;
  right: -8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--st-header);
  font-family: "Manrope", sans-serif;
}
.gt-team-experience-wrapper .contact-form-items h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .gt-team-experience-wrapper .contact-form-items h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .gt-team-experience-wrapper .contact-form-items h3 {
    font-size: 25px;
  }
}
.gt-team-experience-wrapper .contact-form-items .form-clt input,
.gt-team-experience-wrapper .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--st-white);
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.4s ease-in-out;
  color: var(--st-text);
  font-size: 16px;
  border-radius: 4px;
}
.gt-team-experience-wrapper .contact-form-items .form-clt input::placeholder,
.gt-team-experience-wrapper
  .contact-form-items
  .form-clt
  textarea::placeholder {
  color: var(--st-text);
}
.gt-team-experience-wrapper .contact-form-items .form-clt textarea {
  padding-bottom: 30px;
  resize: none;
}
.gt-team-experience-wrapper
  .contact-form-items
  button.gt-theme-btn
  .gt-icon-btn {
  background-color: var(--st-header);
}
.gt-team-experience-wrapper
  .contact-form-items
  button.gt-theme-btn
  .gt-icon-btn::after {
  background-color: var(--st-theme);
}

.gt-testimonial-wrapper .gt-testimonial-left-content .gt-testimonial-text {
  margin-top: 25px;
}
.gt-testimonial-wrapper .gt-testimonial-left-content .gt-client-info {
  margin-top: 60px;
}
.gt-testimonial-wrapper
  .gt-testimonial-left-content
  .gt-client-info
  .gt-client-image {
  margin-bottom: 20px;
}
.gt-testimonial-wrapper .gt-testimonial-left-content .gt-client-info span {
  color: #87c13f;
}
.gt-testimonial-wrapper .gt-testimonial-box {
  border-radius: 12px;
  border: 1.5px solid #87c13f;
  background: var(--st-white);
  padding: 40px;
  position: relative;
  margin-left: 60px;
}
@media (max-width: 1199px) {
  .gt-testimonial-wrapper .gt-testimonial-box {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .gt-testimonial-wrapper .gt-testimonial-box {
    padding: 22px;
  }
}
.gt-testimonial-wrapper .gt-testimonial-box .star {
  color: #fcd554;
}
.gt-testimonial-wrapper .gt-testimonial-box .star i.color-2 {
  color: #9b9b9b;
}
.gt-testimonial-wrapper .gt-testimonial-box .gt-testi-text {
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  margin-top: 16px;
}
.gt-testimonial-wrapper .gt-testimonial-box .gt-client-info {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 25px;
}
.gt-testimonial-wrapper
  .gt-testimonial-box
  .gt-client-info
  .gt-client-content
  h4 {
  font-size: 20px;
  font-weight: 800;
}
@media (max-width: 575px) {
  .gt-testimonial-wrapper
    .gt-testimonial-box
    .gt-client-info
    .gt-client-content
    h4 {
    font-size: 18px;
  }
}
.gt-testimonial-wrapper .gt-testimonial-box .quote-icon {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.gt-testimonial-wrapper .array-button-2 {
  margin-top: 50px;
}
.gt-testimonial-wrapper .array-button-2 .array-prev:hover,
.gt-testimonial-wrapper .array-button-2 .array-next:hover {
  background-color: #87c13f;
  color: var(--st-white);
}
.gt-testimonial-wrapper .array-button-2 .array-prev {
  background-color: var(--st-white);
  color: var(--st-header);
}
.gt-testimonial-wrapper .array-button-2 .array-prev:hover {
  background-color: #87c13f;
  color: var(--st-white);
}
.gt-testimonial-wrapper .array-button-2 .swiper-dot1 {
  text-align: center;
}
.gt-testimonial-wrapper .array-button-2 .swiper-dot1 .swiper-pagination-bullet {
  width: 30px;
  height: 8px;
  transition: 0.6s;
  background-color: #fff;
  opacity: 1;
  border-radius: 60px;
  position: relative;
}
.gt-testimonial-wrapper
  .array-button-2
  .swiper-dot1
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #87c13f;
  transition: 0.6s;
  position: relative;
  width: 51px;
}
.gt-testimonial-wrapper .array-button-2 .array-next {
  background-color: #87c13f;
}
.gt-testimonial-wrapper .array-button-2 .array-next:hover {
  background-color: var(--st-header);
}
.gt-testimonial-wrapper .array-button-2 {
  display: flex;
  align-items: center;
  gap: 13px;
}
.gt-testimonial-wrapper .array-button-2 .array-prev,
.gt-testimonial-wrapper .array-button-2 .array-next,
.gt-testimonial-wrapper .array-button-2 .cta-prev,
.gt-testimonial-wrapper .array-button-2 .cta-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.testimonial-wrapper-2 .testimonial-left-content .testi-text {
  margin-top: 25px;
  max-width: 535px;
  margin-bottom: 48px;
}
.testimonial-wrapper-2 .testimonial-right-items .testimonial-box-2 {
  border-radius: 12px;
  border: 1.5px solid #87c13f;
  background: var(--st-white);
  padding: 32px;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}
.testimonial-wrapper-2 .testimonial-right-items .testimonial-box-2 .star {
  color: #fcd554;
  margin-bottom: 15px;
}
.testimonial-wrapper-2 .testimonial-right-items .testimonial-box-2 p {
  font-size: 18px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}
.testimonial-wrapper-2
  .testimonial-right-items
  .testimonial-box-2
  .client-info {
  margin-top: 30px;
}
.testimonial-wrapper-2
  .testimonial-right-items
  .testimonial-box-2
  .client-info
  h4 {
  font-weight: 800;
}
.testimonial-wrapper-2 .testimonial-right-items .client-info-image {
  max-width: 430px;
  margin: 40px auto 0;
  text-align: center;
}

.testimonial-section-2 {
  position: relative;
  z-index: 9;
}
section.testimonial-section-2.fix.section-padding {
  background-color: #16381b;
}
.testimonial-section-2 .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.testimonial-box-item-3 {
  padding: 32px;
  background-color: var(--st-bg2);
  border-radius: 16px;
  border: 1px solid var(--st-bg2);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .testimonial-box-item-3 {
    padding: 30px;
  }
}
.testimonial-box-item-3.style-2 {
  margin-top: 24px;
  margin-bottom: 24px;
}
.testimonial-box-item-3 p {
  max-width: 444px;
  margin-bottom: 24px;
}
.testimonial-box-item-3 .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-box-item-3 .client-info-item .client-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-box-item-3 .client-info-item .client-item .info-content h4 {
  font-weight: 800;
  margin-bottom: 5px;
}
.testimonial-box-item-3:hover {
  border: 1px solid #87c13f;
}

.testimonial-section-3 {
  position: relative;
  z-index: 9;
}
.testimonial-section-3 .shape {
  position: absolute;
  left: 50;
  top: 0%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .testimonial-section-3 .shape {
    display: none;
  }
}
.testimonial-section-3 .container-fluid {
  padding: 0 155px;
}
@media (max-width: 1199px) {
  .testimonial-section-3 .container-fluid {
    padding: 0 60px;
  }
}
@media (max-width: 991px) {
  .testimonial-section-3 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .testimonial-section-3 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 575px) {
  .testimonial-section-3 .container-fluid {
    padding: 0 30px;
  }
} /*# sourceMappingURL=main.css.map */
.my-5 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}
.my-5 {
  /* margin-top: 3rem !important; */
  /* margin-bottom: 3rem !important; */
}
section.my-5.feature-prop.bg-dark {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}
.Vrudhi-headerlogo {
  width: 140px;
}

.footer-logo-size {
  width: 212px;
}

.hero-content {
  margin-top: 10px;
}
.row.justify-content-between {
  justify-content: space-around !important;
}

.section-title-about {
  padding-top: 50px;
  padding-bottom: 20px;
  font-weight: 00;
  text-transform: uppercase;
  color: #1c1c1c;
  text-align: center;
}

.underline {
  width: 120px;
  height: 1px;
  background-color: #ccc;
}

.description-about {
  color: #2e2e2e;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 1290px;
  margin: 0 auto 1rem;
}

.read-more-container {
  text-align: center;
}

.read-more-link {
  font-weight: 500;
  text-decoration: underline;
  color: #003366;
}

.award-icon {
  width: 40px;
}

/* our services */

.steps-section {
  text-align: center;
  padding: 60px 20px;
  background: #fffcfc;
  margin-top: 50px;
}

.steps-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.step-box {
  position: relative;
  text-align: center;
  max-width: 230px;
}

.step-icon {
  width: 120px;
  height: 120px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: #16243e;
  position: relative;
}

.step-number {
  position: absolute;
  top: 0;
  right: 30%;
  background: #16381b;
  color: #16243e;
  font-size: 14px;
  font-weight: bold;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-title {
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.divider {
  margin: 5px auto;
  width: 15px;
  height: 2px;
  background: #16243e;
}

.step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* buy/sell */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1568605114967-8130f3a36994")
      center/cover no-repeat;
  color: #fff;
}
.bg-dark {
  background-color: #16381b !important;
}
.feature-prop {
  padding: 50px 0px;
}
.market-isights {
  padding: 50px 0px;
}
.hero h1 {
  font-weight: 700;
  font-size: 3rem;
  animation: fadeInDown 1s ease;
}
.hero p {
  max-width: 600px;
  margin: 20px auto;
  animation: fadeInUp 1s ease;
}
.about-section {
  background: #f9f9f9;
  /* margin: 50px 0px !important; */
}

/* Decorative Image Wrapper */
.about-image-wrapper {
  position: relative;
  display: inline-block;
  max-width: 500px;
}

.about-image-wrapper img {
  border-radius: 16px;
  position: relative;
  z-index: 2;
}

/* Pattern Behind Image */
.pattern-box {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px dashed#16381b;
  border-radius: 16px;
  z-index: 1;
}

/* Typography */
.section-title {
  color: #000;
  font-size: 2rem;
}

.section-subtitle {
  color: #16381b;
  letter-spacing: 1px;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Button Styling */
.btn-primary {
  background-color: #87c13f;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: #16381b;
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  .section-subtitle,
  .about-section p,
  .about-section ul {
    text-align: center;
  }
  .btn-primary {
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }
  .about-image-wrapper {
    max-width: 100%;
  }
  .pattern-box {
    display: none; /* hide pattern on very small devices */
  }
}

/* Property Cards */
.property-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.property-card img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.property-card:hover img {
  transform: scale(1.05);
}

/* Stats & Features */
.stat-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  background: #fff;
  transition: all 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.stat-box i {
  font-size: 48px;
  color: #0d6efd;
  margin-bottom: 15px;
}

/* How It Works Section */
.how-it-works {
  background: url("https://images.unsplash.com/photo-1523217582562-09d0def993a6")
    no-repeat center/cover;
  position: relative;
  color: #fff;
  padding: 80px 20px;
}
.how-it-works::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.how-it-works .container {
  position: relative;
  z-index: 1;
}
.step-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 20px;
  transition: all 0.3s ease;
}
.step-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.step-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;

  align-items: center;
  font-size: 2rem;
  transition: 0.3s;
}
.step-box:hover .step-icon {
  border-color: #16381b;
  color: #16381b;
}
.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #16381b;
  color: #ffffff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.step-title {
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
}
.divider {
  width: 40px;
  height: 3px;
  margin: 0 auto 10px;
  background: #16381b;
}
.step-desc {
  font-size: 14px;
  color: #ddd;
}

/* Testimonials */
.testimonial {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.cta-block {
  background: rgb(135, 194, 64);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta-block h2 {
  font-weight: 700;
}

/* FAQ */
.accordion-button {
  font-weight: 500;
  transition: 0.3s;
}
.accordion-button:not(.collapsed) {
  background: rgb(135, 194, 64);
  color: #fff;
}
.main_head {
  color: #fff;
}
h5.text-uppercase.text-warning {
  color: rgb(135, 194, 64) !important;
}

.insight-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.insight-card img {
  height: 200px;
  object-fit: cover;
}

.insight-card .card-body {
  padding: 18px;
}

.insight-card .card-title {
  color: #1a2c6c;
  font-size: 1.1rem;
}

.insight-card .card-text {
  font-size: 0.95rem;
  color: #555;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* constuction  */

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.overlay.blue {
  background: #87c13f;
}

.overlay.orange {
  background: #16381b;
}

.line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #f36f21;
  vertical-align: middle;
}
/* Banner background */
.banner {
  background: url("banner-bg.jpg") center/cover no-repeat;
  min-height: 250px;
  padding: 60px 20px;
}

/* Floating button */
.floating-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #2e1a47;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px 0 0 6px;
  text-decoration: none;
  writing-mode: vertical-rl;
  text-align: center;
  z-index: 1000;
}

.floating-btn:hover {
  background: #f36f21;
  color: #6a6464;
}
p.lead {
  color: grey;
}
h2.fw-bold {
  color: grey;
}
.amenity {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

.amenity i {
  font-size: 1.2rem;
  color: #5a2ca0; /* purple tone like your design */
}

/* Apartments */

.plans-section {
  padding: 60px 20px;
  text-align: center;
}

.plans-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2c6c;
  margin-bottom: 10px;
}

.plans-section p {
  color: #555;
  margin-bottom: 40px;
}

/* Card Styling */
.plan-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.plan-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.plan-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a2c6c;
  margin-top: 12px;
  text-transform: uppercase;
}

/* Brochure Button */
.btn-brochure {
  background: #f69c1d;
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-brochure:hover {
  background: #d97e00;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .plan-card img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .plan-card img {
    height: 180px;
  }
}

/* General Styles */

.container-timeline {
  width: 100%;
  padding: 100px 0px;
  background-color: #16381b;
}

h1 {
  /* text-align: center;
  font-size: 22px; */
  font-weight: bold;
  /* margin-bottom: 40px; */
}

/* Timeline Styles */
.timeline {
  position: relative;
  margin-top: 30px;
  padding: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: #ddd;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  width: 50%;
  padding: 15px;
  position: relative;
}

.timeline-item.left {
  justify-content: flex-end;
  text-align: right;
}

.timeline-item.right {
  margin-left: 50%;
}

.timeline-item .icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ccc;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: absolute;
  top: 20px;
  left: 90%;
  transform: translateX(-50%);
  z-index: 1;
  margin-top: 10px;
}
.timeline-item .iconic {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ccc;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: absolute;
  top: 20px;
  left: 10%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item-content {
  background: #f5f5f5;
  padding: 40px 40px 40px 40px;
  border-radius: 10px;
  width: 80%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Colors */
.icon.blue {
  background: #3498db;
}
.icon.orange {
  background: #e67e22;
}
.icon.red {
  background: #e74c3c;
}
.icon.green {
  background: #2ecc71;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline::before {
    left: 10px;
  }
  .timeline-item {
    width: 100%;
    margin-left: 0 !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }
  .timeline-item .icon {
    left: 0;
    transform: translateX(0);
  }
  .timeline-item-content {
    width: 85%;
    margin-left: 60px;
  }
}

/* document assistance */

/* document assistent CSS */
/* About Section */
.about {
  padding: 80px 20px;
}

.about-text h2 {
  font-weight: 700;
  color: #f69c1d;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  font-size: 1.1rem;
}

.about-img img {
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
  padding: 70px 0px;
  background: #16381b;
  padding-top: 60px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #f69c1d;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: linear-gradient(135deg, #f69c1d, #ffcc70);
  color: #fff;
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover i {
  color: #fff;
  transform: rotate(10deg);
}
.service-detail-box {
  padding: 70px 20px;
}

/* Why Choose Us */
.why-us-modified {
  background: #16381b;

  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.why-us-modified h2 {
  color: #f69c1d;
  margin-bottom: 40px;
}
.doc-assist-head {
  text-align: center;
  padding-bottom: 20px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.why-card i {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #ffcc70;
}

.why-card:hover {
  background: linear-gradient(135deg, #f69c1d, #ffcc70);
  color: #fff;
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.why-card:hover i {
  color: #fff;
}

/* legal assistance */

/* Section Title */
section h2 {
  /* text-align: center; */
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}

section h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #f69c1d;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}
.bg-dark {
  background: #16381b !important;
}

/* Who We Help */
.help {
  padding: 80px 20px;
}

.help-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.help-card i {
  font-size: 2rem;
  color: #f69c1d;
  margin-bottom: 15px;
}

.help-card:hover {
  transform: translateY(-8px);
  background: #f69c1d;
  color: #fff;
}

.help-card:hover i {
  color: #fff;
}

/* Core Services */
.services {
  background: #fafafa;
  padding: 80px 20px;
}

.service-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  height: 100%;
  transition: all 0.3s ease;
  border-left: 5px solid #f69c1d;
}

.service-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-box:hover {
  background: #f69c1d;
  color: #fff;
}

/* Success Stories */
.stories {
  padding: 80px 20px;
}
section.stories.bg-dark {
  background-color: #163819 !important;
}
section.faq.bg-dark {
  background-color: #163819 !important;
}
section.help.bg-dark {
  background-color: #163819 !important;
}

.story-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: scale(1.05);
}

.story-card img {
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Team */
.team {
  background: #fafafa;
  padding: 80px 20px;
}

.team-member {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.team-member:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #f69c1d, #ffcc70);
  color: #fff;
}

/* FAQ */
.faq {
  padding: 80px 20px;
}

.accordion-button:not(.collapsed) {
  background: #f69c1d;
  color: #fff;
}
a {
  text-decoration: none !important;
}

/* Bankloan Assistance */

/* Section Titles */
section h2 {
  /* text-align:center;  */
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}
section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #0077ff;
  display: none;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* About */
.about {
  padding: 80px 20px;
}
.about img {
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Loan Programs Flip Cards */
.programs {
  padding: 80px 20px;
  background: #fff;
}
.program-card {
  perspective: 1000px;
  margin-bottom: 30px;
}
.program-card-inner {
  position: relative;
  width: 100%;
  height: 250px;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 15px;
}
.program-card:hover .program-card-inner {
  transform: rotateY(180deg);
}
.program-card-front,
.program-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.program-card-front {
  background: #f0f7ff;
  color: #87c13f;
}
.program-card-front i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.program-card-back {
  background: #87c13f;
  color: #fff;
  transform: rotateY(180deg);
  font-size: 1rem;
}

/* Loan Process Steps */
.steps {
  padding: 80px 20px;
  background: #f1f7ff;
}
.step-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.step-card i {
  font-size: 2.5rem;
  color: #87c13f;
  margin-bottom: 15px;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Eligibility & Benefits */
.eligibility {
  padding: 80px 20px;
}
.eligibility-box {
  background: #0077ff;
  color: #fff;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 20px;
}
.eligibility-box i {
  margin-right: 10px;
  color: #fff;
}

/* Testimonials */
.testimonials {
  padding: 80px 20px;
  background: #fff;
}
.testimonial-card {
  background: #f0f7ff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}
.testimonial-card:hover {
  transform: scale(1.05);
}
.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

/* FAQ */
.faq {
  padding: 80px 20px;
}
.accordion-button:not(.collapsed) {
  background: #0077ff;
  color: #fff;
}

.house-offer-box.active {
  background-color: #87c13f !important;
  color: #fff; /* ensure text is visible */
  transition: background-color 0.3s ease;
}
.house-offer-box.active h4,
.house-offer-box.active i {
  color: #fff !important;
}
/* Normal box */
.house-offer-box {
  position: relative;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

/* Active state */
.house-offer-box.active {
  background-color: #87c13f !important;
  color: #fff;
}

/* The small "V" (arrow) */
.house-offer-box.active::after {
  content: "";
  position: absolute;
  bottom: -10px; /* sits outside the box bottom */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #87c13f; /* color of the box */
}
.house-desc-area {
  position: relative;
  background: #87c13f;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Arrow */
.house-desc-area::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #87c13f transparent;
}

.contact-para {
  font-size: 1rem;
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
  color: #555e72;
  padding: 0px 0px;
}
.serv-section {
  position: relative; /* Needed for absolute positioning of button */
  width: 100%;
  text-align: center; /* Center the heading */
  padding: 20px 40px; /* Optional padding */
  box-sizing: border-box;
}

.serv-section h2 {
  margin: 0;
  font-size: 2rem;
}

.explore-btn {
  position: absolute; /* Position button relative to parent */
  right: 20px; /* Distance from right edge */
  top: 50%; /* Vertically center */
  transform: translateY(-50%);
  white-space: nowrap;
}

/* Responsive: move button below heading on small screens */
@media (max-width: 1199px) {
  .explore-btn {
    position: static;
    display: block;
    margin: 10px auto 0 auto;
    transform: none;
  }
}
.content-box {
  padding: 30px;
  text-align: left;
}

.faqs {
  padding: 50px 0px;
}

.faq-container {
  max-width: 1450px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-question {
  cursor: pointer;
  position: relative;
  font-weight: bold;
  padding-right: 30px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 10px 0 0 0;
  color: #555;
}
a.btn.btn-primary.mt-4 {
  background-color: #87c13f;
  color: #fff;
  border-color: #87c13f;
}
a.btn.btn-primary.mt-4:hover {
  color: #16381b;
}
section.my-5.feature-prop.bg-dark {
  background-color: #16381b !important;
  text-align: center;
  padding: 100px 0px;
}
section.market-isights.my-5.bg-dark {
  background-color: #16381b !important;
}
section.project-section.fix.section-padding.bg-dark {
  background-color: #16381b !important;
}

.why-choose-us {
  background: linear-gradient(135deg, #f9fbfc, #eef3f8);
}

.choose-card {
  background: #fff;
  transition: all 0.4s ease-in-out;
  border: 1px solid #eee;
  opacity: 0;
  transform: translateY(30px);
}
.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  border-color: #16381b;
}

.choose-section {
  background: linear-gradient(135deg, #f9fbfc, #eef3f8);
}

.choose-item {
  background: #fff;
  transition: all 0.4s ease-in-out;
  border: 1px solid #eee;
  opacity: 0;
  transform: translateY(30px);
}
.choose-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  border-color: #16381b;
}

.choose-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #16381b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.choose-item:hover .choose-icon {
  background: #16381b;
  color: #fff;
  box-shadow: 0 0 15px #16381b;
}

/* Scroll reveal animation */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.cta-content {
  font-size: 40px;
}
.test-img {
  border-radius: 50% !important;
}
.feature-box {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #16381b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 1rem;
  transition: all 0.3s ease-in-out;
}
.feature-icon:hover {
  background-color: #fff !important;
  color: #16381b;
}
.feature-box:hover .feature-icon {
  background: #0a1e0e;
  box-shadow: 0 0 15px #16381b;
}
.address-area {
  padding-right: 20px;
}
.gallery {
  color: #16381b;
  font-weight: bold;
}
section.features-section.py-5 {
  text-align: center;
  margin: 50px;
}
section.awards-section.py-5.text-center {
  padding: 100px 80px 0px !important;
}

.project-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 25px rgba(0,0,0,0.15);
}

.project-card img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card .card-body {
  text-align: center;
}

.project-card .btn-primary {
  background-color: #16381b;
  border: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.project-card .btn-primary:hover {
  background-color: #16381b;
}

 
   .tc-wrapper {
      max-width: 1300px;
      margin: 40px auto;
      padding: 20px;
      background: #fff;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
      border-radius: 8px;
    }

    .tc-title {
      text-align: center;
      font-size: 28px;
      margin-bottom: 30px;
      color: #222;
    }

    .tc-section-title {
      font-size: 20px;
      margin-top: 30px;
      color: #16381b;
    }

    .tc-paragraph,
    .tc-list li {
      font-size: 16px;
      margin-bottom: 15px;
    }

    .tc-list {
      padding-left: 20px;
    }

    @media (max-width: 768px) {
      .tc-wrapper {
        margin: 20px;
        padding: 15px;
      }

      .tc-title {
        font-size: 24px;
      }

      .tc-section-title {
        font-size: 18px;
      }

      .tc-paragraph,
      .tc-list li {
        font-size: 15px;
      }
    }

    /*site map */
    .sm-wrapper {
  max-width: 1140px;
  margin: 0 auto;
}

.sm-heading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  color: #1a1a1a;
}

.sm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.sm-block {
  background: #fff;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.04);
}

.sm-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #16381b;
  border-bottom: 2px solid #0053a0;
  padding-bottom: 6px;
}

.sm-list {
  list-style: none;
  padding-left: 0;
}

.sm-list li {
  margin-bottom: 10px;
}

.sm-list a {
  text-decoration: none;
  color: #333;
  transition: 0.3s ease;
}

.sm-list a:hover {
  color: #0053a0;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .sm-heading {
    font-size: 28px;
  }

  .sm-title {
    font-size: 18px;
  }

  .sm-block {
    padding: 20px;
  }

  .sm-list a {
    font-size: 15px;
  }
}
.gap{
  margin: 10px 0px;
}
.card.award-card.third-para-content{
  margin-top: 20px;
}

.color-black{
  color: #000 !important;
}
.gt-news-details-wrapper{
  align-items:center ;
}

.contact-card {
    width: 320px;
    height: 200px;
    margin: 70px 0px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  .contact-card i {
    color:  #16381b; /* bootstrap primary */
  }
  section.contact-info-section.fix.section-padding{
    padding: 70px 0px !important;
  }

  /* General Section Styling */
.process-section {
  background-color: #16381b !important;
  text-align: center;
  padding: 100px 20px;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.process-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.process-subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Steps Layout */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual Step Card */
.step-card {
  background: #0077f;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
  color: #000 !important;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

/* Icons and Text */
.step-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.step-heading {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.95rem;
  opacity: 0.9;
}

.color-white {
  color: #fff !important;
}
.text-black {
  color: #000 !important;
}
/* section.listing-section.section-padding.bg-dark
Specificity: (0,3,1)
 {
    background-color: #16381b !important;
} */
section.listing-section.section-padding.bg-dark {
   background-color: #16381b !important;
}
a.btn.btn-primary.viewport{
  color: #fff !important;
  background-color: #87c13f !important;
  border-radius: 30px !important;
  padding: 10px 20px !important;
  border: #16381b;
}
a.btn.btn-primary.viewport:hover{
  color: #16381b !important;
 
}
.form-font{
  color: #555e72!important;
  font-size: 16px!important;

}
.request-content{
  font-size: 18px;
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
  }

  .whatsapp-float:hover {
    background-color: #16381b;
    transform: scale(1.1);
  }
  .content-padding{
    padding-bottom:15px !important;
  }
  .contact-info-wrapper {
    padding-top: 70px;
}

.coming-soon-realestate {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url("https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?auto=format&fit=crop&w=1350&q=80") 
                center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    /* margin: 70px 0px; */
  }

  .coming-content {
    max-width: 850px;
    margin: auto;
  }

  .count-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: 12px;
    width: 120px;
    transition: transform 0.3s ease;
  }

  .count-box h2 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
    color: #ffffff;
  }

  .count-box span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ddd;
  }

  .count-box:hover {
    transform: translateY(-6px);
  }

  .form-control {
    border-radius: 8px;
    border: none;
    padding: 15px;
  }

  .notify-btn {
    background-color: #16831b;
    color: #fff;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
  }

  .notify-btn:hover {
    background-color: #0f5d14;
    transform: scale(1.05);
  }
  .align-items-center{
    align-items: center !important;
  }


.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  
  border: 1px solid #16831b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff; /* white icon */
  font-size: 12px;
}
.call-info{
  display: flex;
}






/* --- Global Reset & Structure --- */
body {
    margin: 0;
    padding: 0;
    min-width: 100%;
    background-color: #f4f4f4;
}

table {
    border-collapse: collapse;
    table-layout: fixed;
    /* MSO reset */
    mso-table-lspace: 0pt;
    mso-table-rspace: 0pt;
}

img {
    display: block;
    border: 0;
    height: auto;
    line-height: 100%;
    outline: none;
    text-decoration: none;
}

/* --- Main Container --- */
.main-wrapper {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05); 
}

/* --- Header Section --- */
.header-logo-cell {
    background-color: #16381b; /* Dark Blue/Slate */
    padding: 20px 0; /* Increased padding to give space around the logo */
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.header-logo-img {
    width: 150px; /* Fixed width for the logo image */
    max-width: 150px;
    height: auto;
    margin: 0 auto; /* Center the image */
}


/* --- Content Section --- */
 /* .content-padding {
    /* padding: 40px 40px 30px 40px; */
    text-align: center;
} 

.thank-you-title {
    font-family: Arial, sans-serif;
    font-size: 28px;
    line-height: 36px;
    color: #333333;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.body-text {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    margin: 0 0 30px 0;
}

.data-summary-table {
    margin-bottom: 40px;
    max-width: 300px;
}

/* Data Labels (Email, Phone, Message) */
.data-label-cell {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    padding-right: 15px;
    font-weight: bold;
    vertical-align: top;
    width: 30%;
    text-align: left; /* Ensure labels align left */
}

/* Data Values (The actual information) */
.data-value-cell {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    vertical-align: top;
    width: 70%;
    text-align: left; /* Ensure values align left */
}

/* Adjust padding for subsequent data rows */
.data-label-cell-top,
.data-value-cell-top {
    padding-top: 10px;
}

/* --- CTA Button --- */
.cta-button-cell {
    border-radius: 4px;
    background-color: #6AA84F; /* Sage/Olive Green */
    text-align: center;
    align-items: center !important;
}

.cta-button-link {
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    padding: 12px 25px;
    border: 1px solid #6AA84F;
    display: inline-block;
    font-weight: bold;
}

/* --- Footer Section --- */
.footer-cell {
    padding: 30px 40px;
    border-top: 1px solid #cccccc;
    background-color: #ffffff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    text-align: center;
}

.footer-text-main {
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #888888;
    margin: 0 0 5px 0;
}

.footer-text-address {
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #888888;
    margin: 0 0 10px 0;
}

.footer-text-note {
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #aaaaaa;
    margin: 0;
}

/* --- Media Queries --- */
@media only screen and (max-width: 480px) {
    .content-padding { 
        padding: 30px 20px !important; 
    }
}




.icon-center {
  background: #3498db;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center !important;
    display: block;
  margin-left: auto;
  margin-right: auto;
  
}
/*grid*/
.gallery-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* Hover zoom effect */
.gallery-img-wrapper:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .gallery-img-wrapper {
    height: auto;
  }
}
