/*
Theme Name: twentytwentyfour-child
Template: twentytwentyfour
*/

@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");

:root {
  --White: #ffffff;
  --Primary: #4e851f;
  --Secondary: #2b463c;
  --Text-1: #688f4e;
  --Text-2: #000000;

  --Mulish: "Mulish", sans-serif;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--Mulish);
}

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

body {
  font-family: var(--Mulish);
  background-color: var(--White);
  /* overflow-x: hidden !important; */
}

a {
  cursor: pointer !important;
  text-decoration: none;
  display: block;
}
button:focus,
button:focus-within {
  outline: none;
  /* border: none; */
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

.green-btn {
  background-color: #688f4e;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 128%;
  color: var(--White);
  border-radius: 10px;
  transition: background-color 0.3s ease-in-out;
  text-transform: capitalize;
  border: 1px solid #688f4e;
}

.green-btn:hover {
  background-color: white;
  color: #688f4e;
}

.green-btn:focus,
.green-btn:focus-within {
  border: 1px solid #688f4e;
}

/* header */

.header-section {
  padding: 20px 0;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  width: 100px;
}

.header-right {
  display: flex;
  align-items: flex-end;
  gap: 51px;
}

nav.navbar-menu a {
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  color: var(--Text-2);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 82px;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 12px;
}

nav.navbar-menu a:hover {
  color: var(--Primary);
}

.navbar-item {
  position: relative;
}

.navbar-item.active {
  color: var(--Primary);
  font-weight: 700;
}

.navbar-item.dropdown .navbar-link:hover {
  color: var(--Primary);
}

.green-btn {
  padding: 13.5px 22px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1000;
  position: relative;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #000;
  transition: 0.4s;
  border-radius: 3px;
}

.hamburger.change .line1 {
  transform: translateY(9px) rotate(-45deg);
}

.hamburger.change .line2 {
  opacity: 0;
}

.hamburger.change .line3 {
  transform: translateY(-9px) rotate(45deg);
}

.navbar-item.active {
  color: #5f8b3c;
  font-weight: 600;
  position: relative;
}

.navbar-item.active::after,
.navbar-item:hover:after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #5f8b3c;
}

.navbar-item.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.navbar-item.dropdown .navbar-link {
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  color: var(--Text-2);
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-bottom: -12px;
  padding-bottom: 12px;
}

.navbar-item.dropdown .navbar-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: #5f8b3c;
  border-radius: 10px;
  transition: width 0.25s ease;
  /* bottom: 0; */
  top: 31px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  list-style: none;
  margin: 0;
  padding: 18px 15px 14px;
  min-width: 195px;
  background: #f8ffed;
  border-radius: 0 0 26px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 999;
  border-top: 4px solid var(--Primary);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-menu li a.active {
  color: #5f8b3c;
  font-weight: 700;
}

.dropdown-menu li a {
  display: block;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  transition: text-shadow 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
  text-shadow: 0.5px 0 0 currentColor;
}

.navbar-item.dropdown:hover .dropdown-menu,
.navbar-item.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.green-btn {
  padding: 13.5px 22px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #000;
  transition: 0.4s;
  border-radius: 3px;
}

.hamburger.change .line1 {
  transform: translateY(9px) rotate(-45deg);
}

.hamburger.change .line2 {
  opacity: 0;
}

.hamburger.change .line3 {
  transform: translateY(-9px) rotate(45deg);
}

.footer {
  padding: 54px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.footer-social h5 {
  color: var(--Primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.23px;
  margin-bottom: 15px;
}

.icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-news {
  max-width: 743px;
  width: 100%;
  display: flex;
  align-items: end;
  gap: 60px;
}

.footer-location {
  max-width: 743px;
  width: 100%;
}

.areas {
  display: flex;
  max-width: 743px;
  width: 100%;
  padding: 30px;
  background-color: #ebfcde;
  border-radius: 15px;
  margin-bottom: 20px;
}

.areas h4 {
  font-weight: 800;
  font-size: 24px;
  line-height: 126%;
  color: var(--Secondary);
  max-width: 155px;
  width: 100%;
}

.footer-news-text {
  max-width: 214px;
  width: 100%;
}

.footer-news-text h4 {
  font-weight: 800;
  font-size: 24px;
  line-height: 126%;
  margin-bottom: 15px;
  color: var(--Secondary);
}

.footer-news-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 122%;
  color: var(--Primary);
}

.mc4wp-form-fields {
  display: flex;
  border: 1px solid var(--Primary);
  padding: 12px 15px;
  border-radius: 8px;
  align-items: center;
  width: 100%;
  background-color: #ebfcde;
}

.mc4wp-form-fields input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-size: 16px;
}

.mc4wp-form-fields input::placeholder {
  color: var(--Primary);
}

.mc4wp-form-fields button {
  display: flex;
  align-items: center;
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 24px 0;
  margin: 40px 0;
  border-top: 1px solid #ceeaa4;
  border-bottom: 1px solid #ceeaa4;
}

.logo {
  width: 214px;
}

.areas ul {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  list-style: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  width: 100%;
}

.areas ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: var(--Primary);
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 20px 40px;
  flex-wrap: wrap;
  padding-left: 26px;
}

.footer-links a {
  color: var(--Primary);
  text-decoration: none;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  color: var(--Text-1);
}

.legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 34px;
}

.legal a {
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  color: var(--Text-1);
}

.icons a:hover svg path,
.icons a:hover svg circle {
  opacity: 0.7;
  transition: 0.3s ease;
}

.footer-links a:hover,
.legal a:hover {
  color: var(--Secondary);
  transition: 0.3s ease;
}

.areas ul li:hover {
  color: var(--Secondary);
  cursor: pointer;
  transition: 0.3s ease;
}

.mc4wp-form-fields input:focus {
  color: var(--Secondary);
}

.mc4wp-form-fields button:hover svg path {
  stroke: var(--Secondary);
  transition: 0.3s ease;
}

.hero {
  width: 100%;
  margin-top: 40px;
}

.hero-row {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  background-position: 100% 50%;
}

.hero-row:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(70, 92, 51, 0.26) 0%,
    rgba(70, 92, 51, 0.26) 100%
  );
  display: block;
  position: absolute;
}

.hero-row * {
  position: relative;
  z-index: 10;
}

.hero-text {
  max-width: 74.6%;
  text-align: center;
  margin: 0 auto;
  padding: 88px 0 100px 0;
}

.hero-row h1,
.services-text h2 {
  font-weight: 700;
  font-style: normal;
  font-size: 56px;
  line-height: 128%;
  margin-bottom: 5px;
  letter-spacing: 0;
  text-align: center;
  color: var(--White);
  margin-bottom: 30px;
}

.hero-row p {
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0;
  text-align: center;
  color: var(--White);
  margin-bottom: 30px;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.hero-btn .green-btn {
  padding: 12px 54px;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 131%;
  letter-spacing: 0;
  text-align: center;
  min-width: 275px;
}

.services {
  padding: 100px 0;
}

.services-row {
  display: flex;
  gap: 40px;
}

.services-left {
  max-width: 260px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.subtitle-text {
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 126%;
  color: var(--Secondary);
  display: block;
  text-transform: uppercase;
  letter-spacing: 3.24px;
}

.services-left h2 {
  font-weight: 700;
  font-style: normal;
  font-size: 48px;
  line-height: 117%;
  color: var(--Secondary);
  margin-bottom: 52px;
}

.services-left p {
  font-weight: 600;
  font-size: 18px;
  line-height: 126%;
  color: var(--Secondary);
}

.services-left p:has(a) {
  margin-top: auto;
}

.arrow-btn:after {
  content: "";
  width: 35px;
  height: 13px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: var(--arrow);
  transition: transform 0.3s ease;
}

.arrow-btn:hover:after {
  transform: translateX(5px);
}

.services-right {
  display: flex;
  gap: 15px;
  width: 100%;
}

.service-card {
  border-radius: 15px;
}

.service-card {
  max-width: 496px;
  width: 100%;
  height: 496px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 32% top;
}

.service-card img {
  max-width: 100%;
  width: 100%;
  height: 496px;
  border-radius: 15px;
  overflow: hidden;
  object-fit: cover;
  object-position: left;
}

.overlay-image {
  position: relative;
}
.overlay-image:before {
  content: "";
  border-radius: 15px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 27.4%,
    rgba(0, 0, 0, 0.73) 100%
  );
  position: absolute;
  inset: 0;
}

.overlay-image.full:before {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.service-card.small {
  max-width: 156px;
  width: 100%;
}

.services-left a {
  font-weight: 700;
  font-size: 18px;
  line-height: 128%;
  color: var(--Secondary);
  display: flex;
  align-items: center;
  gap: 20px;
}

.card-content h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 22px;
  color: var(--White);
}

.card-content h3 a {
  color: var(--White);
  text-decoration: none;
}

.card-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--White);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.card-content {
  position: absolute;
  bottom: 0;
  padding: 31px 34px;
}

.vertical-text {
  rotate: -90deg;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: var(--White);
  position: absolute;
  bottom: 100px;
  text-align: left !important;
}

/*  */

section.choose {
  padding: 100px 0;
  background-color: #fbffec;
}

.choose-row {
  display: flex;
  gap: 98px;
}

.choose-left {
  width: 100%;
  max-width: 332px;
  height: 551px;
}

.choose-left img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 36%;
  border-radius: 15px;
}

.choose-heading h2 {
  font-weight: 700;
  font-style: normal;
  font-size: 48px;
  line-height: 117%;
  color: var(--Secondary);
}

.choose-heading {
  margin-bottom: 62px;
}

.choose-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d8f0c6;
  border-radius: 10px;
}

.choose-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.choose-info h4 {
  font-size: 24px;
  font-weight: 700px;
  line-height: 140%;
  color: var(--Primary);
}

.choose-info p {
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 140%;
  color: var(--Secondary);
}

.choose-infomation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 100px;
}

.revitalize {
  padding: 67px 0 0;
}
.revitalize-top {
  display: flex;
  gap: 50px;
  margin-bottom: 87px;
}

.revitalize-heading {
  max-width: 517px;
  width: 100%;
}

.revitalize-text {
  max-width: 578px;
  width: 100%;
}

.revitalize-heading h2,
.badges-content h2 {
  font-weight: 800;
  font-style: normal;
  font-size: 48px;
  line-height: 130%;
}

.badges-content h2 span {
  display: block;
  text-transform: uppercase;
}

section.badges-section.has-bg .badges-content h2,
section.badges-section.has-bg .badges-content h2 span {
  color: #f8ffed;
}

section.badges-section:not(.has-bg) {
  padding-bottom: 17px;
}

.badges-content {
  text-align: center;
}

.badges-content h2 {
  color: #2b463c;
}

.revitalize-text p {
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 128%;
  color: var(--Primary);
  margin-bottom: 20px;
}

.revitalize-text a {
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 128%;
  color: var(--Primary);
}

.revitalize-middle {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 96px;
}

.revitalize-middle,
.video-thumbnail {
  height: 455px;
}

.revitalize-middle img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.revitalize-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: 0.3s ease;
  background-color: #fbffec61;
  padding: 12px;
  width: 108px;
  height: 108px;
}

.revitalize-icon:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.revitalize-infomation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stat-card .stat-value {
  color: #688f4e;
  font-size: 80px;
  font-style: normal;
  font-weight: 800;
  line-height: 140%;
}

.stat-card .stat-label {
  color: #2b463c;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.arrow-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.video-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="84" height="84" viewBox="0 0 84 84" fill="none"><circle cx="41.5216" cy="41.5216" r="41.5216" fill="%23FBFFEC"/><path d="M55.832 38.0574C58.4987 39.597 58.4987 43.446 55.832 44.9856L37.3659 55.647C34.6992 57.1866 31.3659 55.2621 31.3659 52.1829V30.86C31.3659 27.7808 34.6992 25.8563 37.3659 27.3959L55.832 38.0574Z" fill="%234E851F"/></svg>');
  background-repeat: no-repeat;
  background-position: center;

  outline: 12px solid rgba(251, 255, 236, 0.38);
  animation: pulseOutline 2s infinite ease-out;
}

@keyframes pulseOutline {
  0% {
    outline-width: 12px;
    outline-color: rgba(251, 255, 236, 0.38);
    transform: translate(-50%, -50%) scale(1);
  }
  70% {
    outline-width: 20px;
    outline-color: rgba(251, 255, 236, 0);
    transform: translate(-50%, -50%) scale(1.08);
  }
  100% {
    outline-width: 12px;
    outline-color: rgba(251, 255, 236, 0.38);
    transform: translate(-50%, -50%) scale(1);
  }
}

.stats-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stat-card .stat-value {
  color: #688f4e;
  font-size: 80px;
  font-style: normal;
  font-weight: 800;
  line-height: 140%;
}

.stat-card .stat-label {
  color: #2b463c;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.instant.not-home {
  background-color: var(--Secondary);
  padding: 0;
}

.instant.not-home .instant-row {
  padding-left: 0;
  padding-right: 0;
}

.instant {
  padding: 50px 0;
}

.instant-row {
  background-color: var(--Secondary);
  padding: 86px 66px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.instant-text h2 {
  font-weight: 800;
  font-style: normal;
  font-size: 48px;
  line-height: 120%;
  color: #fafafa;
  margin-bottom: 12px;
}

.instant-text p {
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 126%;
  color: var(--White);
}

.instant button {
  display: block;
}

.instant-btn a {
  color: var(--Secondary);
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 126%;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s;
}

.instant-btn {
  padding: 28.5px 32px;
  background-color: #b1d182;
  border-radius: 10px;
  transition: all 0.5s;
  cursor: pointer;
}

.instant-btn:hover {
  background-color: white;
}

a:focus,
a:focus-visible {
  border: none;
  outline: none;
}

.work {
  margin-top: 44px;
  padding-bottom: 120px;
  /* overflow: hidden; */
}

.work-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.work-heading h2 {
  font-weight: 700;
  font-style: normal;
  font-size: 48px;
  line-height: 117%;
  color: var(--Secondary);
}

.work-heading a {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 128%;
  color: var(--Primary);
  display: flex;
  align-items: center;
  gap: 20px;
}

.work-img {
  border-radius: 15px;
  overflow: hidden;
}

.work .swiper-backface-hidden .swiper-slide {
  position: relative;
  border-radius: 15px;
}

.work .swiper-slide:not(.swiper-slide-active):before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.69) 0%,
    rgba(0, 0, 0, 0.69) 100%
  );
  position: absolute;
  inset: 0;
  border-radius: 15px;
}

.work-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  overflow: hidden;
}

.work-swiper {
  /* width: 100vw !important; */
  position: relative;
  margin-top: 30px;
}

.work .swiper-button-next,
.work .swiper-button-prev {
  width: 52px;
  height: 52px;
  cursor: pointer;
  z-index: 20;
}

.work .swiper-button-next svg,
.work .swiper-button-prev svg {
  width: 52px;
  height: 52px;
}

.work .swiper-button-next {
  right: 0;
}

.work .swiper-button-prev {
  left: 16px;
}

.work .swiper-button-next::after,
.work .swiper-button-prev::after,
.services-right .swiper-button-next::after,
.services-right .swiper-button-prev::after {
  display: none;
}

.work .swiper-btn {
  width: 50px !important;
  height: 50px !important;
}

.services-right .swiper-btn {
  width: 30px !important;
  height: 30px !important;
}

/* .work .swiper-button-next.custom-next {
  right: 30% !important;
} */

.work .swiper-button-next.custom-next {
  right: 16px !important;
}

.work .swiper-btn:focus,
.work .swiper-btn:focus-visible {
  outline: none;
  border: none;
}

.work-img a {
  pointer-events: none;
}

.client {
  padding: 117px 0;
  background-color: var(--Text-1);
}

.client-row {
  display: flex;
  max-width: 818px;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}

.client-heading h2 {
  color: #d8f0c6;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  display: flex;
  flex-direction: column;
}

.testimonial-content p {
  color: #fff;
  text-align: center;

  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.testimonial-meta h4 {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
}

.testimonial-meta p {
  color: #fbffec;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.testimonial-meta {
  margin-top: 50px;
}

.testimonial-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.testimonial-swiper .swiper-button-prev {
  left: 10px;
}

.testimonial-swiper .swiper-button-next {
  right: 10px;
}

.testimonial-swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  width: 100%;
}

.client .client-heading h2 span {
  letter-spacing: 2.16px;
  color: #d8f0c6;
}

.testimonial-swiper {
  position: relative;
}

.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  width: 17.752px;
  height: 10.225px;
  top: 100%;
}

.testimonial-swiper .swiper-button-prev:focus,
.testimonial-swiper .swiper-button-prev:focus-within,
.testimonial-swiper .swiper-button-next:focus,
.testimonial-swiper .swiper-button-next:focus-within {
  outline: none;
}

.testimonial-swiper .swiper-button-prev {
  left: 0;
}

.testimonial-swiper .swiper-button-next {
  right: 0;
}

.testimonial-swiper .swiper-button-prev:after,
.testimonial-swiper .swiper-button-next:after {
  content: none !important;
}

.services-right {
  display: flex;
  gap: 15px;
  width: 100%;
  transition: all 0.4s ease;
}

.service-card {
  cursor: pointer;
  transition: max-width 0.5s ease, width 0.5s ease, height 0.5s ease,
    flex 0.5s ease, opacity 0.4s ease;
}

.service-card.active {
  max-width: 496px;
  width: 100%;
}

.service-card.inactive {
  max-width: 156px;
  width: 100%;
}

.service-card .card-content {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card.active .card-content {
  opacity: 1;
}

.service-card .vertical-text {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.service-card.active .vertical-text {
  opacity: 0;
  pointer-events: none;
}

.ready {
  padding: 100px 0;
}

.ready-row {
  padding: 112px 85px;
  background-image: url(../images/ready.png);
  background-size: cover;
  background-repeat: no-repeat;
  border-top-right-radius: 90px;
  position: relative;
}

.ready-row * {
  position: relative;
  z-index: 10;
}

.ready-row:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.54) 65.87%
  );
}

.ready-text {
  max-width: 643px;
  width: 100%;
}

.ready-text h2 {
  font-weight: 700;
  font-style: normal;
  font-size: 56px;
  line-height: 128%;
  color: var(--White);
  margin-bottom: 40px;
}

.ready-text .green-btn {
  display: inline-flex;
  padding: 12px 18px;
  text-transform: inherit;
}

.services-hero .services-row {
  padding: 81.5px 80px;
  background-image: url(../images/services-hero.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 40px;
  position: relative;
}

.services-hero .services-row * {
  z-index: 10;
}

.services-hero .services-row:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(70, 92, 51, 0) 0%,
    rgba(70, 92, 51, 0.54) 68.4%
  );
}

.services-hero .services-text span {
  color: white;
}

.services-text h1 {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  line-height: 117%;
  letter-spacing: -0.72px;
  text-align: left;
  margin: 0;
}

.services-hero .services-text h1 span {
  display: block;
}

.services-infomation {
  padding: 80px 0 120px 0;
}

.services-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.services-info {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  width: calc(50% - 20px);
  padding-bottom: 43.51%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.services-info * {
  z-index: 10;
}
.services-info:before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 15px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 27.4%,
    rgba(0, 0, 0, 0.73) 100%
  );
}

.services-info-img img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.services-info-text {
  display: flex;
  align-items: end;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 30px 34px;
  gap: 20px;
}

.services-info-contect {
  max-width: 400px;
  width: 100%;
}

.services-info-contect h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 10px;
  color: var(--White);
}

.services-info-contect p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--White);
}

.areo {
  border: 2px solid #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 57px;
  min-height: 57px;
  border-radius: 100%;
}

.areo:hover svg {
  margin-top: -10px;
  margin-right: -10px;
  transition: margin 0.5s ease-in-out;
}

.areo svg {
  width: 28px;
  height: 24px;
}

.services-detail-hero {
  padding: 92.5px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.services-detail-hero * {
  position: relative;
  z-index: 10;
}

.services-detail-hero::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(70, 92, 51, 0.06) 0%,
    rgba(70, 92, 51, 0.8) 77.88%
  );
}

.detail-hero-text h1 {
  color: var(--White);
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 111%;
  text-transform: capitalize;
}

.detail-hero-text .subtitle-text {
  color: #b1d182;
  padding-bottom: 10px;
}

.solutions {
  padding: 150px 0;
  background-color: #f8ffed;
}

.solutions-row h2,
.solutions-row h2 .subtitle-text {
  line-height: 131.25%;
  text-transform: capitalize;
  font-weight: 900;
  font-style: normal;
  font-size: 48px;
  color: var(--Text-1);
}

.solutions-row h2 .subtitle-text {
  font-weight: 700;
}
.solutions-row p {
  color: #000;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.solutions .solutions-row {
  margin-bottom: 90px;
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 10px;
}

.solutions .solutions-heading {
  width: 100%;
  max-width: 708px;
}

.solutions .solutions-text {
  width: 100%;
  max-width: 327px;
}

.solutions .solutions-box-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.solution-content {
  background: var(--Secondary);
  padding: 36px 28px;
  box-sizing: border-box;
  color: var(--White);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 25px;
}

.solution-content h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #b1d182;
}

.solution-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--White);
}

.solutions-box-wrapper > div {
  height: 274px;
  border-radius: 20px;
}

.solutions-box-wrapper > div img {
  max-width: 100%;
  width: 100%;
  border-radius: 20px;
  display: block;
  height: 100%;
  object-fit: cover;
}

.solutions-box-wrapper > div:first-child {
  border-radius: 20px 0 0 0;
}

.solutions-box-wrapper > div:nth-child(3) {
  border-radius: 0 20px 0 0;
}

.safety {
  padding: 80px 0 0 0;
}

.safety-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  margin-bottom: 104px;
}

.safety-heading {
  width: 50%;
}

.safety-text {
  width: 50%;
}

.safety-row h2 {
  color: var(--Secondary);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 131.25%;
  text-transform: capitalize;
}

.safety-row p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: var(--Secondary);
}

.contact-card {
  background-color: #214436;
  padding: 72px 102px;
  color: #ffffff;
  border-radius: 10px;
  border-top-right-radius: 80px;
}

.message-heading {
  margin-bottom: 46px;
}

.message-heading h2 {
  color: #fff;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
}

.message-heading p {
  color: var(--White);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 126%;
}

.form-row p {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.contact-form input:not([type="submit"]),
.contact-form textarea {
  width: 100%;
  background-color: #d8f0c621;
  border: none;
  border-radius: 6px;
  padding: 18px;
  outline: none;
  color: var(--White);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 131%;
}

.contact-form input:not([type="submit"])::placeholder,
.contact-form textarea::placeholder {
  color: var(--White);
  opacity: 1;
}

.contact-form input[type="submit"] {
  outline: none;
  border: none;
  text-transform: inherit;
}
.contact-form textarea {
  height: 100px;
  margin-bottom: 25px;
  resize: none;
}

.consult-btn {
  width: 100%;
  padding: 18px 22px !important;
}

.form-section {
  margin-bottom: 105px;
}

body.menu-open {
  overflow: hidden;
}

.revitalize-row.secondary .revitalize-text p {
  color: #2b463c;
}

.revitalize-row.secondary .revitalize-top {
  flex-direction: column;
  gap: 34px;
  margin-bottom: 14px;
}

.revitalize-row.secondary .revitalize-text {
  max-width: 100%;
  width: 100%;
}

section.badges-section {
  display: flex;
  padding: 77px 0 141px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

section.badges-section.has-bg {
  background: #688f4e;
}

.badge-images {
  display: flex;
  align-items: center;
  gap: 152px;
  justify-content: center;
  margin-top: 85px;
}

section.badges-section:not(.has-bg) .badge-images {
  margin-top: 0;
}

.badge-images > div img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge-images > div {
  border-radius: 30px;
  padding: 50px 68px;
  max-width: 236px;
  width: 100%;
  height: 236px;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.badges-section.has-bg .badge-images > div {
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.area {
  padding: 114px 0 80px 0;
  background-color: #f8ffed;
}

.area-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
}

.map-circle {
  border-radius: 100%;
  background-color: var(--Secondary);
  max-width: 496px;
  height: auto;
}

.map-circle {
  max-width: 495.855px;
  width: 100%;
  height: 495.855px;
  object-fit: cover;
  margin-left: auto;
}

.area-heading h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 117%;
  letter-spacing: -1%;
  margin-bottom: 9.952px;
  font-style: normal;
  color: var(--Secondary);
}

.area-heading p {
  font-weight: 600;
  font-size: 18px;
  line-height: 126%;
  letter-spacing: 0%;
  margin-bottom: 5px;
  font-style: normal;
  color: var(--Primary);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  margin-top: 53px;
}

.area-btn {
  color: var(--Secondary);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 211%;
  padding: 5px 20px;
  font-family: var(--Mulish);
  border-radius: 10px;
  border: 0.5px solid #2b463c;
  cursor: pointer;
  width: 100%;
}

.area-btn:hover,
.area-btn.active {
  background-color: var(--Secondary);
  color: white;
}

.search-box {
  padding: 11px 18px;
  border-radius: 10px;
  border: 1px solid #688f4e;
  display: flex;
  gap: 20px;
}

.search-box form {
  width: 100%;
}

.search-box input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
  font-family: inherit;
}

.search-box svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 3px;
}

.filter-menu {
  margin-top: 29px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-title a{
  cursor: pointer;
  transition: 0.2s ease;
  color: #4e851f;
  text-align: center;
  font-family: var(--Mulish);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 198%;
  border-radius: 8px;
  border: 1px solid #688f4e;
  padding: 4px 20px;
}

.menu-title a:hover, .menu-title.active a{
  background: #688f4e;
  color: #fff;
}

.blogs {
  padding: 64px 0 88px;
}

.blog-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px 40px;
}

.blog-image {
  border-radius: 25px 0 25px 0;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 305px;
  object-fit: cover;
}

.blog-meta,
.blog-meta a {
  color: #688f4e;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.blog-meta {
  margin-bottom: 22px;
}

.blog-title {
  color: #1f332c;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px;
  text-transform: capitalize;
}

.blogs .areo {
  border: 2px solid var(--Secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 57px;
  min-height: 57px;
  border-radius: 100%;
}

.blogs .areo:hover svg {
  margin-top: -10px;
  margin-right: -10px;
}

.blogs .areo svg {
  width: 28px;
  height: 24px;
  transition: margin 0.3s ease-in-out;
}

.blog-content {
  margin-top: 29px;
  display: flex;
  align-items: end;
  gap: 40px;
}

.filter-row {
  margin-top: 64px;
}

.blog-meta a {
  display: inline;
}

.pagination ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 88px 0 0;
  gap: 25px;
}

.pagination ul li a,
.pagination ul li span {
  display: block;
  width: 20px;
  height: 20px;
  background: #b1d182;
  border-radius: 50%;
  text-indent: -9999px;
  overflow: hidden;
}

.pagination ul li a:hover {
  background: #2b463c;
}

.pagination ul li .current {
  background: #2b463c;
}

p:has(a) {
  display: inline-flex;
}

.services-text a.green-btn {
  padding-left: 54px;
  padding-right: 54px;
}

body.archive main h1 {
  padding: 60px 0 0 !important;
}

.touch {
  padding: 82px 0 79px 0;
}

.touch-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  justify-content: space-between;
  gap: 20px;
}

.touch-info {
  margin-bottom: 69px;
}

.touch-info-logo {
  width: 100%;
  max-width: 160px;
  border-radius: 100%;
  background-color: #d8f0c6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.touch-info {
  display: flex;
  align-items: center;
  gap: 25px;
}

.touch-info-name h5 {
  color: var(--Secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 129%;
}

.consult-heading p {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
}

.touch-heading {
  margin-bottom: 45px;
}

.consult-heading h2,
.touch-heading h2 {
  color: var(--Secondary);
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  margin-bottom: 7px;
  text-align: center;
}

.touch-heading h2 {
  text-align: left;
  font-weight: 500;
}

.touch-heading p {
  color: var(--Text-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.touch-heading h2 span {
  font-weight: 800;
}

.touch-information {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.touch-item h6 {
  color: var(--Text-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  text-transform: capitalize;
}

.touch-item p a,
.touch-item p {
  color: var(--Secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
}

.consult-form {
  width: 100%;
  max-width: 706px;
  border-radius: 90px 0 0 0;
  background: #d8f0c6;
  padding: 44px 75px;
}

.consult-heading {
  margin-bottom: 37px;
}

.consult-form-heading h2 {
  color: var(--Secondary);
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 146%;
  text-align: center;
}

.consult-form-heading p {
  color: var(--Secondary);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 126%;
}

.form > p {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.form > p > span:not(.wpcf7-spinner) {
  width: 100%;
}

.form > p br {
  display: none;
}

.form input:not([type="submit"]),
.form textarea {
  width: 100%;
  outline: none;
  border: none;
  background: #ffffff;
  padding: 18px 25px;
  border-radius: 6px;
  font-size: 18px;
  color: var(--Text-1);
  font-family: var(--Mulish);
}

.consult-form input[type="submit"] {
  border: none;
  width: 100%;
}

.form input:not([type="submit"])::placeholder,
.form textarea::placeholder {
  color: var(--Text-1);
  font-size: 18px;
  font-weight: 400;
  font-family: var(--Mulish);
}

.form textarea {
  min-height: 236px;
  resize: none;
}

.consult-form input[type="submit"] {
  width: 100%;
  padding: 18px 54px;
}

p:has(.wpcf7-spinner) {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.wpcf7-spinner {
  display: none;
}

form.submitting .wpcf7-spinner {
  display: inline-block;
  margin-top: 14px;
}

.faq {
  padding: 48px 0 93px;
}

.faq-heading h2 {
  color: #2b463c;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 117%;
  letter-spacing: -0.48px;
}

.faq-heading {
  margin-bottom: 48px;
}

.faq-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-left: -48px;
  margin-right: -48px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-bottom: 17px;
  cursor: pointer;
}

.faq-items {
  padding: 28px 44px;
  background: rgba(235, 252, 222, 0.2);
}

.faq-question h4 {
  color: var(--Primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 126%;
}

.faq-answer p {
  color: var(--Secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 126%;
  display: inline !important;
}

.faq-question svg {
  transition: transform 0.3s ease;
}

.faq-items.active svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s ease;
  margin-top: 5px;
}

.faq-items.active .faq-answer {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
}

footer.wp-block-template-part {
  background: #f8ffed;
}

section.difference-section {
  margin-bottom: 68px;
}

.tertiary-banner h2 {
  text-align: left;
  margin-bottom: 0;
}

.tertiary-banner .services-text span {
  color: #b1d182;
  padding-bottom: 16px;
}

.gallery {
  padding: 80px 0;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.gallery-item {
  width: 100%;
  height: 390px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item.big {
  grid-column: span 2;
}

.mobile-swiper-wrapper {
  display: none;
}

/* blog inner */

.blogs-detail {
  padding: 80px 0;
}

.blogs-detail-row {
  display: flex;
  align-items: start;
  gap: 80px;
}

.blogs-detail-left {
  max-width: 760px;
  width: 100%;
}

.blogs-detail-right {
  max-width: 300px;
  width: 100%;
}

.blogs-detail-img {
  border-radius: 25px 0;
  overflow: hidden;
  margin-bottom: 50px;
}

.meta-title p,
.meta-title a {
  color: var(--Primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 126%;
}

.meta-title a {
  padding-left: 5px;
}

.meta-title {
  margin-bottom: 33px;
}

.post-content h2 {
  color: var(--Secondary);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 116.667%;
  text-transform: capitalize;
  margin-bottom: 50px;
}

.post-content p + p {
  margin-top: 40px;
}

.post-content p {
  color: #909090;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 126%;
}

.post-content blockquote {
  position: relative;
  padding-left: 36px;
  margin: 50px 0;
}

.post-content blockquote span {
  display: block;
  padding-top: 20px;
}

.post-content blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--Text-1);
}

.post-content blockquote p {
  color: var(--Primary);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 126%;
}

.post-content blockquote + p {
  margin-top: 0;
}
.post-content h3 {
  color: #2b463c;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 186.667%;
  text-transform: capitalize;
  margin: 40px 0 30px;
}

.post-section p {
  color: #909090;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 126%;
}

.blogs-detail-right {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.blogs-detail-right h6 {
  color: #4e851f;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 126%;
  /* 25.2px */
}

.filter-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.categories ul {
  list-style-type: none;
}

.categories ul li a {
  color: #4e851f;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 198%;
}

.border {
  border: 1px solid var(--Primary);
  width: 100%;
  margin: 17px 0;
}

.share-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.share-icon a img {
  width: 25px;
  height: 25px;
}

.share-icon a:hover img {
  opacity: 0.5;
}

.top-border {
  width: 4px;
  height: 100%;
}

.blogs-detail-img img {
  max-width: 100%;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.wpcf7-not-valid-tip {
  padding-top: 4px;
  font-size: 14px;
}

body.search .wp-block-search__inside-wrapper input {
  padding: 0 20px;
}

body.search .wp-block-post-featured-image,
body.category .wp-block-post-featured-image {
  aspect-ratio: 1 / 1 !important;
  padding-bottom: 0 !important;
}

body.search .wp-block-post-author-name {
  font-weight: 800;
}

body.search .taxonomy-category.wp-block-post-terms {
  display: flex;
  align-items: center;
  gap: 5px;
}

body.search .taxonomy-category.wp-block-post-terms a {
  font-weight: 800;
}

html {
  scroll-behavior: smooth;
}

.services-text h2 {
  margin-bottom: 14px;
}

.areo:hover {
  background-color: #2b463c;
}

.areo:hover svg path {
  stroke: white;
}

.services-info-text .areo:hover {
  background-color: white;
}

.services-info-text .areo:hover svg path {
  stroke: #2b463c;
}

.services-info {
  position: relative;
  overflow: hidden;
}

.services-info-text {
  transition: bottom 0.5s ease-in-out;
}

.services-info:hover {
  background: #2b463c !important;
}

.services-info:hover:before {
  content: none;
}

.services-info-contect p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.swiper-button-next:focus,
.swiper-button-prev:focus,
.swiper-button-next:focus-within,
.swiper-button-prev:focus-within {
  outline: none;
  border: none;
}

.navbar-item.dropdown:hover:after {
  content: none !important;
}

.ccb-calc-edit {
  display: none !important;
}

.calculator {
  padding: 82px 0;
  background-color: #6f8f4e;
}

.calculator-heading {
  max-width: 855px;
  margin: 0 auto 60px;
  text-align: center;
}

.calculator-heading h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 117%;
  margin-bottom: 40px;
}

.calculator-heading p {
  color: #fff;
  font-size: 24px;
  line-height: 126%;
}

.calculator-box .ccb-main-widget .ccb-app-container .ccb-vertical-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.ccb-page-breaker {
  max-width: 100% !important;
}

.ccb-page-breaker .ccb-fields-list,
.ccb-page-breaker .ccb-subtotals-block-summary {
  padding: 0 !important;
}

.ccb-section__header {
  display: none !important;
}

.ccb-section.default,
.ccb-section-subtotal {
  background: #fff !important;
  padding: 32px !important;
  border-radius: 20px !important;
}

.ccb-field__title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 172%;
  text-transform: capitalize;
}

.ccb-dropdown__input {
  width: 100% !important;
  padding: 14px !important;
  border-radius: 8px !important;
  border: 1px solid #ddd !important;
  appearance: none !important;
  cursor: pointer !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  outline: none !important;
  /* color: #909090 !important; */
  color: #000000;
  background-color: transparent !important ;
}

.ccb-default-checkbox .ccb-checkbox-label {
  color: #000;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.3;
  padding-left: 10px !important;
}

.ccb-default-checkbox label:before {
  max-width: 25px !important;
  min-width: 25px !important;
  max-height: 25px !important;
  min-height: 25px !important;
  width: 25px !important;
  height: 25px !important;
  border-radius: 5px !important;
  border: 1px solid #909090 !important;
  background: #fff !important;
}

.ccb-summary-list .ccb-summary-list__accordion-btn {
  width: 30px !important;
  height: 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #d2efa8 !important;
  border-radius: 100% !important;
}

.ccb-summary-list__titles {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 7px 12px !important;
  border-radius: 5px !important;
  color: #000 !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 90% !important;
  text-transform: capitalize !important;
  background-color: #f0f0f0 !important;
}

.ccb-summary-item {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  color: #000 !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 172% !important;
  text-transform: capitalize !important;
  border-bottom: 1px solid #c7c7c7 !important;
}

.ccb-summary-item__title .description {
  display: none !important;
}

.ccb-default-checkbox
  label[data-v-5beaf357]:has(input[type="checkbox"]:checked):before {
  background-color: #688f4e !important;
}

.ccb-summary-list__wrapper .ccb-summary-item:last-child {
  display: none !important;
}

.ccb-summary-item {
  border-color: #c7c7c7 !important;
}

.ccb-totals-list {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.ccb-total-row__name,
.ccb-total-row__value {
  font-weight: 800 !important;
}

.ccb-default-checkbox label:after {
  left: 8px !important;
}

body > .wp-site-blocks {
  display: flex;
  flex-direction: column;
}

footer.wp-block-template-part {
  margin-top: auto;
}

html,
body,
body > .wp-site-blocks {
  height: 100%;
}

body {
  overflow-x: hidden !important;
}

.area-btn {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.booking-section {
  background: #2b463c;
  padding: 85px 0;
}

.booking-section h2 {
  color: #b1d182;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 117%;
  letter-spacing: -0.48px;
  margin-bottom: 14px;
}

.booking-section p {
  color: #688f4e;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 126%;
}

.wpbc_no_custom_width.bk_calendar_frame {
  max-width: 100% !important;
  width: 100% !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) {
  border-radius: 25px !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height):not(.datepick-multi) .datepick-header {
  height: 85px !important;
  justify-content: center !important;
  padding: 0 !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) th,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-days-cell,
div.datepick-inline:not(.wpbc_calendar_legend_table_width_height) table.datepick.wpbc_calendar th,
div.datepick-inline:not(.wpbc_calendar_legend_table_width_height) table.datepick.wpbc_calendar td.datepick-days-cell {
  border: none !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-days-cell .date-cell-content span,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-days-cell .date-cell-content a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 600;
  line-height: 30px;
  text-transform: capitalize;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) th,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-days-cell,
div.datepick-inline:not(.wpbc_calendar_legend_table_width_height) table.datepick.wpbc_calendar th,
div.datepick-inline:not(.wpbc_calendar_legend_table_width_height) table.datepick.wpbc_calendar td.datepick-days-cell {
  color: #688f4e !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 31px !important;
  text-transform: capitalize !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-days-cell .date-cell-content .date-content-top,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-days-cell .date-cell-content .date-content-bottom {
  display: none !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) td.datepick-days-cell .wpbc-cell-box {
  width: unset !important;
  height: unset !important;
  border-radius: 50% !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-days-cell .date-cell-content a,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-days-cell .date-cell-content {
  width: 50px !important;
  height: 50px !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) th,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-days-cell,
div.datepick-inline:not(.wpbc_calendar_legend_table_width_height) table.datepick.wpbc_calendar th,
div.datepick-inline:not(.wpbc_calendar_legend_table_width_height) table.datepick.wpbc_calendar td.datepick-days-cell {
  width: 50px !important;
  height: 50px !important;
}

/* .datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-days-cell .date-cell-content span, .datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-days-cell .date-cell-content a{
  color: #2B463C !important;
} */

/* .datepick-today .wpbc-cell-box a {
  background: white !important;
  border-radius: 50% !important;
} */

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-header,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-header span {
  color: #2b463c !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 31px;
  text-transform: capitalize;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .calendar-links .datepick-prev a,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .calendar-links .datepick-next a {
  font-size: 40px !important;
}

div.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .calendar-links {
  height: unset !important;
  margin-bottom: -75px !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .calendar-links .datepick-prev a,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .calendar-links .datepick-next a,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .calendar-links .datepick-prev a:hover,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .calendar-links .datepick-next a:hover {
  padding: 0 !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height):not(.wpbc_calendar_legend_table_width_height) .datepick tbody {
  border-radius: 0 0 25px 25px !important;
}

/* .bk_calendar_frame + div,
.wpbc_fe_message.wpbc_fe_message_error + div {
  display: none !important;
} */

div.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .calendar-links {
  justify-content: space-between !important;
}

div.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .calendar-links .datepick-prev,
div.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .calendar-links .datepick-next {
  flex: 0 1 10px !important;
  margin: 0 33px !important;
}

.wpbc_r_email.wpbc__field label {
  display: none !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .calendar-links .datepick-prev a:focus,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .calendar-links .datepick-next a:focus,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .calendar-links .datepick-prev a:focus-within,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .calendar-links .datepick-next a:focus-within {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

div.wpbc_container.wpbc_form input[type="email"]:focus {
  outline: none !important;
  box-shadow: none !important;
}

div.wpbc_container.wpbc_form input[type="email"] {
  background: transparent !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-color: #fff !important;
  border-radius: 0 !important;
  color: white !important;
  padding: 0 !important;
}

.wpbc_times_selector div:not(.wpbc_time_selected):focus {
  border: none !important;
  outline: none !important;
}

.wpbc_container_booking_form .wpbc_booking_form_simple .wpbc__field label {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  text-transform: capitalize;
}

.wpbc_times_selector div {
  display: flex;
  width: 170.785px !important;
  height: 62.737px !important;
  padding: 16px 0 !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  grid-row: 1 / span 1;
  grid-column: 1 / span 1;
  height: auto;
  max-width: 100% !important;
  min-width: 100% !important;
  line-height: 1 !important;
  grid-row: unset !important;
  grid-column: unset !important;
  border-radius: 10px !important;
  background: #345045 !important;
  border-color: #345045 !important;
  color: white !important;
}

div.wpbc_container.wpbc_form input[type="email"]::placeholder {
  color: #688f4e !important;
  font-size: 24px;
  font-weight: 400;
  line-height: 31px;
  text-transform: capitalize;
}

.wpbc_times_selector {
  flex-flow: unset !important;
  justify-content: unset !important;
  align-items: unset !important;
  white-space: unset !important;
  word-wrap: unset !important;
  width: unset !important;
  gap: 20px !important;
  flex-wrap: unset !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr;
}

.wpbc_container_booking_form .block_hints,
.wpbc_booking_form_simple.wpbc_form_center
  .wpbc__form__div
  .wpbc__row.wpbc_r_calendar,
.wpbc_booking_form_simple .wpbc__form__div .wpbc__row:not(.wpbc_r_calendar) {
  max-width: 100% !important;
}

.wpbc_times_selector div.wpbc_time_selected {
  background: #fff !important;
  color: #2b463c !important;
}

.wpbc_container.wpbc_form input.wpbc_button_light,
.wpbc_container.wpbc_form input.wpbc_button_light:focus,
.wpbc_container.wpbc_form input.wpbc_button_light:hover,
.wpbc_container .wpbc_button_light,
.wpbc_container .wpbc_button_light:focus,
.wpbc_container .wpbc_button_light:hover,
.wpbc_container.wpbc_container_booking_form .wpbc_button_light,
.wpbc_container.wpbc_container_booking_form .wpbc_button_light:focus,
.wpbc_container.wpbc_container_booking_form .wpbc_button_light:hover {
  border-radius: 10px !important;
  box-shadow: none !important;
  display: flex !important;
  height: 60px !important;
  padding: 0 54px !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  border-radius: 10px !important;
  background: #688f4e !important;
  color: #fff !important;
  text-align: center;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 131%;
  border-color: #688f4e !important;
}

.wpbc_container_booking_form .wpbc__row {
  gap: 100px !important;
  flex-flow: unset !important;
}

div.datepick-inline:not(.wpbc_calendar_legend_table_width_height) table.datepick {
  border-radius: 25px !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) table.datepick.wpbc_calendar,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick {
  /* background: #97C2B2 !important; */
  border-radius: 0 0 25px 25px !important;
  background: transparent !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) {
  background-color: rgba(151, 194, 178, 0.08) !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-one-month .datepick-unselectable .wpbc-cell-box {
  background: transparent !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-one-month:not(.datepick-multi) .datepick-header {
  background-color: white !important;
  border-radius: 25px 25px 0 0 !important;
}

.datepick-one-month .wpbc-calendar-wrapper {
  padding: 24px 18px 24px 30px;
  max-width: 100%;
  width: 100%;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.datepick-one-month .wpbc-calendar-wrapper,
.wpbc_times_selector {
  scrollbar-width: thin;
  scrollbar-color: #c7c7c7 transparent;
}

.datepick-one-month .wpbc-calendar-wrapper::-webkit-scrollbar,
.wpbc_times_selector::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.datepick-one-month .wpbc-calendar-wrapper::-webkit-scrollbar-track,
.wpbc_times_selector::-webkit-scrollbar-track {
  background: transparent;
}

.datepick-one-month .wpbc-calendar-wrapper::-webkit-scrollbar-thumb,
.wpbc_times_selector::-webkit-scrollbar-thumb {
  background-color: #c7c7c7;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.datepick-one-month .wpbc-calendar-wrapper::-webkit-scrollbar-thumb:hover,
.wpbc_times_selector::-webkit-scrollbar-thumb:hover {
  background-color: #9e9e9e;
}

.datepick-one-month .wpbc-calendar-wrapper,
.wpbc_times_selector {
  padding-right: 12px;
  scrollbar-gutter: stable;
  box-sizing: border-box;
}

.datepick-today.datepick-days-cell .date-cell-content a {
  color: #2b463c !important;
}

.wpbc_r_submit.wpbc__field {
  justify-content: center !important;
  display: flex;
  margin-top: 40px !important;
}

.wpbc_booking_form_simple {
  margin-top: 60px;
}

.datepick-today .wpbc-cell-box,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-one-month .date_available .wpbc-cell-box,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-one-month .date2approve.timespartly .wpbc-cell-box,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-one-month .date_approved.timespartly .wpbc-cell-box {
  background: transparent !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-one-month .date_available .wpbc-cell-box a {
  background: rgb(
    from var(--wpbc_cal-available-day-color) r g b /
      var(--wpbc_cal-day-bg-color-opacity)
  );
  border-radius: 50% !important;
}

.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-one-month .date2approve.timespartly .wpbc-cell-box a,
.datepick-inline:not(.wpbc_calendar_legend_table_width_height) .datepick-one-month .date_approved.timespartly .wpbc-cell-box a {
  background: rgb(
    from var(--wpbc_cal-timespartly-day-color) r g b /
      var(--wpbc_cal-day-bg-color-opacity)
  );
}

/* mailchimp */

.newsletter-box {
  width: 100%;
}

.mc4wp-form {
  width: 100%;
}

.mc4wp-alert.mc4wp-notice {
  margin-top: 5px;
}

.wp-core-ui
  div.wpbc_container.wpbc_form
  input[type="date"]::-webkit-input-placeholder,
.wp-core-ui
  div.wpbc_container.wpbc_form
  input[type="datetime-local"]::-webkit-input-placeholder,
.wp-core-ui
  div.wpbc_container.wpbc_form
  input[type="datetime"]::-webkit-input-placeholder,
.wp-core-ui
  div.wpbc_container.wpbc_form
  input[type="email"]::-webkit-input-placeholder,
.wp-core-ui
  div.wpbc_container.wpbc_form
  input[type="month"]::-webkit-input-placeholder,
.wp-core-ui
  div.wpbc_container.wpbc_form
  input[type="number"]::-webkit-input-placeholder,
.wp-core-ui
  div.wpbc_container.wpbc_form
  input[type="password"]::-webkit-input-placeholder,
.wp-core-ui
  div.wpbc_container.wpbc_form
  input[type="range"]::-webkit-input-placeholder,
.wp-core-ui
  div.wpbc_container.wpbc_form
  input[type="search"]::-webkit-input-placeholder,
.wp-core-ui
  div.wpbc_container.wpbc_form
  input[type="tel"]::-webkit-input-placeholder,
.wp-core-ui
  div.wpbc_container.wpbc_form
  input[type="text"]::-webkit-input-placeholder,
.wp-core-ui
  div.wpbc_container.wpbc_form
  input[type="time"]::-webkit-input-placeholder,
.wp-core-ui
  div.wpbc_container.wpbc_form
  input[type="url"]::-webkit-input-placeholder,
.wp-core-ui
  div.wpbc_container.wpbc_form
  input[type="week"]::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form select::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form textarea::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type="date"]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form
  input[type="datetime-local"]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type="datetime"]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type="email"]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type="month"]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type="number"]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type="password"]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type="range"]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type="search"]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type="tel"]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type="text"]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type="time"]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type="url"]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type="week"]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form select::-webkit-input-placeholder,
div.wpbc_container.wpbc_form textarea::-webkit-input-placeholder {
  opacity: 1 !important;
}

.wpbc_after_booking_thank_you_section .wpbc_ty__message {
  color: white;
}

div.wpbc_container.wpbc_form input[type="email"] {
  color: #ffffff !important;
}

div.wpbc_container.wpbc_form input[type="email"]:-webkit-autofill,
div.wpbc_container.wpbc_form input[type="email"]:-webkit-autofill:hover,
div.wpbc_container.wpbc_form input[type="email"]:-webkit-autofill:focus,
div.wpbc_container.wpbc_form input[type="email"]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #2b463c inset !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  caret-color: #ffffff !important;
  transition: background-color 9999s ease-in-out 0s;
}

.wpbc_after_booking_thank_you_section .wpbc_ty__message {
    margin: 30px auto 10px !important;
}

.wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_ty__content .wpbc_ty__content_text .wpbc_ty__section_header{
  margin-bottom: 0.5em !important;
}

.wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_ty__content .wpbc_ty__content_text.wpbc_cols_2 a {
    background-color: #2b463c;
    color: white;
    border-radius: 8px;
    padding: 4px 16px;
    display: inline-flex;
    margin-top: 16px;
}

.wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_ty__header{
  border-left: 5px solid #2b463c !important;
}


.wpbc_ty__section_text_times + br{
  display: none !important;
}

.wpbc_times_selector span.wpbc_no_time_pickers {
    color: black !important;
}

.grid-layout.widget-position-right{
	width: 100% !important;
}

.selected_check_in_out.datepick-days-cell .date-cell-content a{
	color: #2b463c !important;
	background: #b1d182 !important;
}

.bk_calendar_frame + div{
  color: white !important;
}


span.cf7-counter {
    font-size: 14px;
}


.faq-items.active .faq-answer a {
    display: inline;
    padding: 0;
    visibility: visible !important;
        color: var(--Primary) !important;
        text-decoration: underline !important;
}

.wpcf7 .wpcf7-submit:disabled{
  opacity: 40%;
}


.wpbc_front_end__message.wpbc_fe_message_error{
	border:none !important;
	background: transparent !important;
	color:white !important;
}

.wpbc_front_end__message.wpbc_fe_message_error i {
	display: none;
}

.wpbc_front_end__message{
	box-shadow: none !important;
}

.bk_calendar_frame + div a, .wpbc_fe_message_error + div, .wpbc_fe_message_error + div a, .wpbc_front_end__message_container_right .wpbc_front_end__message.wpbc_fe_message_warning, .wpbc_front_end__message_container_left .wpbc_front_end__message.wpbc_fe_message_warning{
	color: white;
}

span.textarea{
	position: relative;
}

span#char-count {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 14px;
}

span.textarea br{
	display:none;
}

.block_hints.datepick.block_hints_vertical{
	display: flex !important;
}

.block_hints .wpdev_hint_with_text .block_text{
	color: white;
}

.block_hints_vertical.block_hints .wpdev_hint_with_text{
  flex: unset !important;
}

.wpbc_container_booking_form .wpbc__field label:not(.wpbc_static_text), .wpbc_container_booking_form .wpbc__field label:not(.wpbc_static_text):hover {
    flex: unset !important;
    margin-right: 12px !important;
}

.wpbc_front_end__message_container_right .wpbc_front_end__message.wpbc_fe_message_warning, .wpbc_front_end__message_container_left .wpbc_front_end__message.wpbc_fe_message_warning{
	line-height:2.3 !important;
}

.wpbc_container_booking_form .wpbc__field label:not(.wpbc_static_text), .wpbc_container_booking_form .wpbc__field label:not(.wpbc_static_text):hover{
	    flex: 1 1 100% !important;
}


body.archive main h1 + div > .wp-block-group{
  padding-top: 50px !important;
}

:root :where(.wp-block-query-title span){
  font-style: normal;
}


body.archive .wp-block-post-excerpt__excerpt {
    display: -webkit-box;        
    -webkit-line-clamp: 3;       
    -webkit-box-orient: vertical;
    overflow: hidden;            
    text-overflow: ellipsis;     
    white-space: normal;        
}