body {
    color: #000;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    margin: 0px;
    font-size: 16px;
    background: #f7fbea;
}

html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}
@media (min-width: 769px) {
    html {
        scroll-padding-top: 150px;
   }
}
@media (min-width: 992px) {
    html {
        scroll-padding-top: 170px;
   }
}
@media (min-width: 1154px) {
    html {
        scroll-padding-top: 100px;
   }
}
.container {
    max-width: 1280px;
    width: 90%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.row {
    margin-right: 0px !important;
    margin-left: 0px !important;
}
a {
    text-decoration: none;
}
h1, h2, h3, h4 {
    font-family: none;
    font-weight: 400;
    font-style: normal;
}
h1 {
    font-size: 30px;
    font-family: "Exo", serif;
    margin: 0px;
    position: relative;
    color: #131313;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    
     /* Adjust spacing between text and icon */
}
/* h1::after {
    content: "";
    display: inline-block;
    width: 70px;
    height: 70px;
    background: url(/img/elements/tree-service-icon.webp) no-repeat right;
    background-size: contain;
    opacity: 0.1;
    filter: invert(0.9);
    flex-shrink: 0;
} */
h2 {
    font-size: 24px;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
    margin: 0 0 5px;
    color: #ffffff;
    font-family: "Exo", serif;
}
h2 span {
    color: #ffffff;
}
h3 {
    font-size: 22px;
}

* {
    box-sizing: border-box;
}
p {
    text-align: justify;
}

/* Navigation */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #f7fbea;
    position: relative;
    box-shadow: 0 0 10px #00000050;
}
header::before {
    content: "";
    position: absolute;
    top: 100px;
    left: -20px;
    width: 260px;
    height: 210px;
    background: url(/img/elements/header-left-element.webp) no-repeat;
    background-size: contain;
    opacity: 0.3;
}
header::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: 0px;
    width: 260px;
    height: 210px;
    background: url(/img/elements/header-right-element.webp) no-repeat;
    background-size: contain;
    opacity: 0.3;
}
nav {
    display: flex;
    position: fixed;
    width: 100%;
    top: 0px;
    flex-direction: column;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    background: #7ABF18;
    transition: background-color 0.3s ease 0s;
    padding: 10px 0;
    box-shadow: #000000 0px 2px 5px;
}
nav.scrolled {
    background-color: #7ABF18;
    box-shadow: #000000 0px 2px 5px;
    position: fixed;
    top: 0px;
    margin: 0px;
    z-index: 999999;
    animation: 0.3s ease 0s 1 normal none running slideDown;
}
.navigation {
    display: flex;
    width: 100%;
    flex-flow: wrap;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo */
.brand-container {
    max-width: 78%;
}
.brand {
    display: flex;
    align-items: center;
    position: relative;
}
.brand span {
    color: #000000;
    text-decoration: none;
    font-size: 24px;
    position: relative;
    align-content: center;
    line-height: 1;
    font-family: "Exo", serif;
}
.brand a {
    display: flex;
    text-decoration: none;
    top: 0;
    position: relative;
    align-items: center;
}
.brand img {
    height: 60px;
    width: auto;
    margin: 0 10px;
    filter: brightness(0.1);
}

/* Menu */
.menu-bg {
    position: fixed;
    width: 60px;
    height: 42px;
    border-radius: 30px;
    right: 41px;
    top: 41px;
    background: #F7FBEA;
    pointer-events: none;
    transition: 0.3s;
    transform: translate3d(50%, -50%, 0);
    transform-origin: center center;
    overflow: hidden;
    margin: 0 0 0 10px;
}
.menu-bg.fs {
    width: 400vw;
    height: 400vw;
    background: #7ABF18;
    display: flex;
    pointer-events: auto;
}
.menu-burger {
    position: absolute;
    width: 52px;
    height: 43px;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    cursor: pointer;
    transition: 0.4s;
    z-index: 99;
    pointer-events: auto;
    display: flex;
    justify-content: center;
}
.menu-burger img {
    width: 80%;
    position: absolute;
}
.menu-burger.fs {
    transform: rotate(-180deg);
    color: #fff;
}
.menu-items {
    position: absolute;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #fff;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: 0.4s;
    margin-top: 75px;
    transform: translateY(-200%);
    pointer-events: none;
}
.menu-items div {
    transition: 1s;
    opacity: 0;
    margin-top: 0;
}
.menu-items div a {
    color: #000000;
}
.menu-items.fs {
    transform: translateY(0);
    pointer-events: auto;
    opacity: 1;
    width: 100%;
    left: 0;
}
.menu-items.fs div {
    opacity: 1;
    margin-top: 20px;
}

.menu-items.fs div:nth-child(7) {
    margin-top: 15px;
}

.menu-items.fs div:nth-child(8) {
    margin-top: 15px;
}

.button {
  position: relative;
  padding: 10px 12px;
  font-size: 17px;
  color: #333 !important;
  border: 1px solid #f7fbea;
  background: #f7fbea;
  border-radius: 20px;
  cursor: pointer;
  box-shadow:
    0 10px 20px #0000001a,
    inset 0 0 0 1px #ffffff26;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px #0000001a;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    #ffffff4d,
    transparent
  );
  transition: 0.6s;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    #ffffff1a 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
  /* background: #ffffff26; */
  box-shadow: 
    0 15px 30px #00000026,
    inset 0 0 0 1px #ffffff33;
  letter-spacing: 1.5px;
}

.button:hover::before {
  left: 100%;
}

.button:hover::after {
  opacity: 1;
}

.button:active {
  transform: translateY(1px) scale(0.98);
  box-shadow:
    0 5px 15px #0000001a,
    inset 0 0 0 1px #ffffff26;
  background: #ffffff33;
}

.button span {
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.consultation-button {
  position: relative;
  padding: 10px 12px;
  font-size: 17px;
  color: #f7fbea !important;
  border: 1px solid #f7fbea;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  cursor: pointer;
  box-shadow: 0 10px 20px #0000001a, inset 0 0 0 1px #ffffff26;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px #0000001a;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.consultation-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    #ffffff4d,
    transparent
  );
  transition: 0.6s;
}

.consultation-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, #ffffff1a 0%, #00000000 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.consultation-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 15px 30px #00000026,
    inset 0 0 0 1px #ffffff33;
  letter-spacing: 1.5px;
}

.consultation-button:hover::before {
  left: 100%;
}

.consultation-button:hover::after {
  opacity: 1;
}

.consultation-button:active {
  transform: translateY(1px) scale(0.98);
  box-shadow:
    0 5px 15px #0000001a,
    inset 0 0 0 1px #ffffff26;
  background: #ffffff33;
}

.consultation-button span {
  position: relative;
  z-index: 1;
  font-weight: 500;
}



/* Header */
.slider-section {
    position: relative;
    width: 90%;
    display: flex;
    z-index: 0;
    overflow: hidden;
    flex-direction: column;
    top: 100px;
    padding: 30px 0 120px;
    align-items: center;
    justify-content: center;
}
.slider-img-container {
    margin: 15px 0 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px #00000050;
    border-radius: 20px;
    width: 320px;
    height: 300px;
}
.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 20px;
    position: absolute;
}
.slider-content {
    position: relative;
    z-index: 3;
    text-align: center;
}
.slider-text {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(1px 1px 6px #f7fbea);
    text-shadow: 1px 1px 5px #f7fbea !important;
}
.slider-text p a {
    color: #333;
    text-decoration: underline #333;
}
.slider-text p a:hover {
    color: #131313;
    text-shadow: 0 0 10px #ffffff;
    text-decoration: underline #131313;
}
.slider-text p {
    margin: 10px 0px 5px;
    position: relative;
    font-weight: 500;
    text-align: center;
    color: #333;
}
.headers-buttons {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    align-items: center;
}
.headers-buttons a.button {
    color: #ffffff !important;
    background: #131313;
    border: 1px solid #131313;
    margin: 5px 5px;
}

.headers-buttons a.consultation-button {
    color: #131313 !important;
    border: 1px solid #131313;
    margin: 0px 0px 10px 0px;
}

/* Scroll Button */
.scroll-down {
    position: absolute;
    bottom: 10px;
    margin: 20px;
}
.scroll-down img {
    height: 80px;
    transform: rotate(0deg);
    animation: 1.5s ease 0s infinite normal none running scroll-down-btn;
    filter: drop-shadow(0 0 5px #000);
}
@-webkit-keyframes scroll-down-btn {
    0% {
        transform: rotate(0deg) translate(0px, 0px);
        opacity: 0;
   }
    50% {
        opacity: 1;
   }
    100% {
        transform: rotate(0deg) translate(0px, 20px);
        opacity: 0;
   }
}
@keyframes scroll-down-btn {
    0% {
        transform: rotate(0deg) translate(0px, 0px);
        opacity: 0;
   }
    50% {
        opacity: 1;
   }
    100% {
        transform: rotate(0deg) translate(0px, 20px);
        opacity: 0;
   }
}

/* Badges */
.badges-section {
    display: flex;
    justify-content: center;
    background: #fff;
}

.about-holder {
    display: flex;
}
.badges-container {
    display: flex;
    flex-flow: wrap;
    justify-content: space-evenly;
    padding: 30px 0 60px;
    align-items: center;
    width: 100%;
    position: relative;
    max-width: 1280px;
}
.badge-holder:first-child, .badge-holder:last-child {
    background: #e7eceb;
}
.badge-holder:first-child img , .badge-holder:last-child img {
    filter: invert(1);
}
.badge-holder:first-child p.badge-title, .badge-holder:last-child p.badge-title {
    color: #000;
}
.badge-holder:first-child p.badge-content, .badge-holder:last-child p.badge-content {
    color: #000;
}

.badge-holder {
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
    max-width: 160px;
    height: 200px;
    background: #131313;
    padding: 15px 6px 22px;
    margin: 10px 5px 10px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0.3rem 0.3rem 0.6rem #42424278, -0.2rem -0.2rem 0.5rem #ffffff;
    align-items: center;
    line-height: 1.2;
    justify-content: space-between;
    transition: .15s linear;
}
.badge-holder:hover {
    box-shadow: 0 0 10px #e7ecebc9;
}
p.badge-title {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 18px;
    margin: 10px 0 5px;
    color: #f7fbea;
    text-align: center;
    font-family: "Exo", serif;
}
p.badge-content {
    text-align: center;
    text-transform: capitalize;
    min-height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    line-height: 18px;
    margin: 0;
    color: #fff;
}
.badge-holder img {
    width: 50%;
}

/* About */
.about-section {
    padding: 60px 0px;
}
.about-section img {
    position: absolute;
    z-index: -1;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    background-blend-mode: overlay;
    background-color: #00000030 !important;
    box-shadow: 0 0 10px #000000b8;
}
.about-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1280px;
    flex-direction: column;
}

.about-content {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    color: aliceblue;
    filter: drop-shadow(1px 1px 6px #000);
    text-shadow: 1px 1px 5px #000 !important;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}
.about-content h2 {
    position: relative;
    z-index: 2;
}
.area-served {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 20px;
    margin-bottom: 20px;
    margin-top: 0px;
}
.area-served li {
    width: 46%;
}
.area-served li::marker {
    content: "\2611";
}
#about a.button {
    background: #f7fbea;
    color: #333 !important;
    border: 1px solid #f7fbea;
}
.about-img {
    width: 320px;
    height: 300px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
img.about-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    border: 4px solid #fff;
    object-position: 50% 50%;
}


/* Features */
.features-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 60px 0 30px;
    box-shadow: 0 0 10px #000000b8;
}
.features-section > div {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    max-width: 1280px;
    z-index: 1;
}
.features img {
    max-width: 100%;
    height: 100%;
    width: 600px;
}
.features-img {
    width: 320px;
    height: 300px;
    position: relative;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
img.features-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
}

/* Features-2 */
.features-section ul, .features-section-2 ul {
    padding-left: 10px;
}
.features-section ul li, .features-section-2 ul li {
    text-align: justify;
    padding: 0 0 10px 5px;
    z-index: 1;
    position: relative;
}
.features-section ul li::marker, .features-section-2 ul li::marker {
    content: "\2611";
}
.features-content-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;
    width: 90%;
}
.features-content-1 h2 {
    color: #131313;
}
.features-content-1 h2 span {
    color: #131313;
}
.features-section-2 {
    display: flex;
    width: 100%;
    padding: 30px 0px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.features-section-2 > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1280px;
}
.features-content-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    z-index: 0;
}
.features-content-2 > div {
    justify-items: center;
    z-index: 0;
}
.features-content-2 .button {
    background: #131313;
    color: #ffffff !important;
    z-index: 2;
    position: relative;
}
.features-content-2 .button:hover {
    background: #131313;
}

/* Contact Form */
.email-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    z-index: 2;
}

.email-form > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.contact-form-section {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 364px;
    max-width: 100%;
    width: 430px;
    height: 400px;
    justify-content: center;
    justify-self: center;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 30px 0px;
    justify-items: center;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.contact-form-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #13131336;
    z-index: 1;
    border-radius: 20px;
    box-shadow: #0000004d 0px 19px 38px, #00000038 0px 15px 12px;
}
.contact-form-section > img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center center;
    top: 0px;
    filter: opacity(0.9);
    border-radius: 20px;
}
.contact-form {
    z-index: 2;
    position: relative;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.email-form h2 {
    color: #f7fbea;
    text-shadow: #000 0px 0px 5px;
}
.contact-form .form-row {
    margin: 15px 0 0;
    width: 100%;
}
.contact-form .form-row.submit-btn {
    width: auto;
}
.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"], .contact-form input[type="message"] {
    width: 100%;
    padding: 10px;
    border: 1.5px dotted #7ABF18;
    box-sizing: border-box;
    background: #f1ede7;
    box-shadow: 0.3rem 0.3rem 0.6rem #00000080, -0.2rem -0.2rem 0.5rem #00000080;
    border-radius: 20px;
    filter: drop-shadow(3px 6px 4px #000);
    text-shadow: 1px 1px 5px #000 !important;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    background: #0000001a;
    backdrop-filter: blur(2px);
    border: 1px solid #ffffff2e;
    color: #fff;
}
.contact-form input::placeholder {
    color: #ffffffe3;
}
.contact-form input[type="text"]:focus, .contact-form input[type="tel"]:focus, .contact-form input[type="email"]:focus, .contact-form input[type="message"]:focus {
    outline: none;
    border-color: #131313;
}
.email-form:target .submit-button {
    animation: bounce-in-bottom 1.5s both;
}
.submit-button {
  position: relative;
  padding: 10px 12px;
  font-size: 17px;
  color: #333 !important;
  border: 1px solid #f7fbea;
  background: #f7fbea;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  cursor: pointer;
  box-shadow:
    0 10px 20px #0000001a,
    inset 0 0 0 1px #ffffff26;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px #0000001a;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    #ffffff4d,
    transparent
  );
  transition: 0.6s;
}

.submit-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    #ffffff1a 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.submit-button:hover {
  transform: translateY(-3px) scale(1.02);
  /* background: #ffffff26; */
  box-shadow: 
    0 15px 30px #00000026,
    inset 0 0 0 1px #ffffff33;
  letter-spacing: 1.5px;
}

.submit-button:hover::before {
  right: 100%;
}

.submit-button:hover::after {
  opacity: 1;
}

.submit-button:active {
  transform: translateY(1px) scale(0.98);
  box-shadow:
    0 5px 15px #0000001a,
    inset 0 0 0 1px #ffffff26;
  background: #ffffff33;
}

.submit-button span {
  position: relative;
  z-index: 1;
  font-weight: 500;
}


.submit-button.animate {
    opacity: 1;
    transform: translateY(0);
    animation: bounce-in-right 1.5s both;
}

@keyframes bounce-in-right {
    0% {
      transform: translateX(600px);
      animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      transform: translateX(0);
      animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      transform: translateX(68px);
      animation-timing-function: ease-in;
    }
    72% {
      transform: translateX(0);
      animation-timing-function: ease-out;
    }
    81% {
      transform: translateX(32px);
      animation-timing-function: ease-in;
    }
    90% {
      transform: translateX(0);
      animation-timing-function: ease-out;
    }
    95% {
      transform: translateX(8px);
      animation-timing-function: ease-in;
    }
    100% {
      transform: translateX(0);
      animation-timing-function: ease-out;
    }
  }

/* Services */
.services-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0px 60px;
    position: relative;
    z-index: 0;
    background: #fff;
}
.services-element {
    width: 100%;
    height: 100%;
    /* max-width: 1500px; */
    max-height: unset;
    position: absolute;
    z-index: -1;
    bottom: 0px;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
}
.services-section > div {
    width: 90%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.srvBlockTitle {
    text-align: center;
}
.srvBlockTitle h2 {
    color: #131313;
    filter: drop-shadow(1px 1px 6px #fff);
}
.srvBlockTitle h2 span {
    color: #131313;
}
.srvBlock {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-flow: wrap;
    position: relative;
}
.srvElement {
    margin: 20px auto 0px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 320px;
    position: relative;
}
.srvElementHeader h2 {
    text-align: center;
    color: #000000;
    padding: 10px 0;
    line-height: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 0px;
}
.srvElementImg {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    flex-direction: column;
}

.srvElementImg img {
    width: 280px;
    height: 260px;
    object-position: center center;
    object-fit: cover;
    border-radius: 20px;
    margin-top: 20px;
}

.srvElementContent {
    text-align: justify;
    color: #000000;
    line-height: 1.2;
}

.srvElementContent p {
    margin: 0 0 20px 0;
}
.srvElementBody {
    border-radius: 30px;
    position: relative;
    background: #7ABF18;
    box-shadow: #0000004d 0px 19px 38px, #00000038 0px 15px 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 15px;
}
.srvElement:nth-of-type(odd) .srvElementBody {
    background: #e7eceb;
}
.srvElement:nth-of-type(odd) .srvElementHeader h2 {
    color: #000000;
}
.srvElement:nth-of-type(odd) .srvElementContent {
    color: #000000;
}

.srvElementHeader {
    position: relative;
}

/* Testimonials */
.testimonials-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background-blend-mode: overlay;
    background-color: #00000020 !important;
    box-shadow: 0 0 10px #000000b8;
}
.testimonials-section img {
    position: absolute;
    z-index: -1;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.testi-content.swiper-wrapper {
    margin-top: 20px;
}
#testimonials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
}
.testimonial {
    position: relative;
    width: 100%;
    padding-top: 60px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
div#testimonials h2 span {
    color: #fff;
}
div#testimonials h2 {
    filter: drop-shadow(1px 1px 6px #000);
    text-shadow: 1px 1px 5px #000 !important;
    color: #fff;
}
.testimonial .image {
    height: 150px;
    width: 150px;
    position: relative;
    object-fit: cover;
    border-radius: 50%;
    z-index: 1;
    padding: 5px;
    border: 1px solid #ffffff2e;
}
.testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
}
.testimonial-content {
    border-radius: 40px;
    position: relative;
    bottom: 90px;
    height: fit-content;
    margin: 0 2px;
    width: 100%;
    overflow: hidden;
    justify-items: center;
    display: flex;
    justify-content: center;
    padding: 100px 0 0px;
    flex-direction: column;
    filter: drop-shadow(3px 6px 4px #000);
    text-shadow: 1px 1px 5px #000 !important;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    background: #0000001a;
    backdrop-filter: blur( 2px );
    border: 1px solid #ffffff2e;
}

.slide p {
    padding: 0px 50px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: justify;
    margin: 15px 0;
}
.slide .details {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 0 20px;
    align-items: center;
}
.details .name {
    font-size: 18px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    border-right: 3px solid rgb(255, 255, 255);
    padding-right: 10px;
}
.slide .details img {
    width: 115px;
    margin-left: 10px;
    filter: drop-shadow(0px 0px 3px #000);
    position: relative;
    z-index: 2;
}
.swiper-button-prev, .swiper-button-next {
    width: 0px !important;
    top: 55% !important;
}
.swiper-button-next {
    right: 5px !important;
}
.swiper-button-prev {
    left: 5px !important;
}
.swiper-button-prev::after, .swiper-button-next::after {
    color: #fff;
    font-size: 35px !important;
}
.nav-btn {
    border-radius: 50%;
    transform: translateY(30px);
    transition: all 0.2s ease 0s;
}
.nav-btn::after, .nav-btn::before {
    font-size: 20px;
}

.row .column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Gallery */
.lightboxOverlay, .lightbox {
    z-index: 999999 !important;
}
.gallery-section {
    padding: 60px 0px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px #000000b8;
}
.gallery-section::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -30px;
    width: 200px;
    height: 210px;
    background: url(/img/elements/gallery-left-element.webp) no-repeat;
    background-size: contain;
    opacity: 0.3;
    z-index: -1;
}
.gallery-section::after {
    content: "";
    position: absolute;
    top: 5px;
    right: -30px;
    width: 200px;
    height: 210px;
    background: url(/img/elements/gallery-right-element.webp) no-repeat;
    background-size: contain;
    opacity: 0.3;
    z-index: -1;
}
.gallery-section .subtitle {
    margin: 0px 0px 20px !important;
}
div#gallery h2 {
    color: #7ABF18;
    margin: 0px 0 25px;
    filter: drop-shadow(1px 1px 6px #f7fbea );
    width: 90%;
    justify-self: center;
}
div#gallery h2 span {
    color: #7ABF18;
}
.check-holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.check span {
    content: "\2611";
    color: #83d025;
    margin-right: 4px;
    font-size: 23px;
    position: relative;
    bottom: -1px;
}
a.check {
  position: relative;
  padding: 6px 12px;
  margin: 5px;
  font-size: 17px;
  color: #333 !important;
  background: #e7eceb;
  border-radius: 10px;
}
.lp-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0px auto;
    width: 100%;
    align-items: flex-end;
}
.lp-gallery a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: 10px;
    width: 90%;
}
.lp-gallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
    box-shadow: #7ABF1850 0px 8px 18px, #7ABF186b 0px 7px 12px;
}

/* Contact */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px 0px 60px;
    z-index: 0;
}
.contact-section > img {
    position: absolute;
    object-fit: cover;
    object-position: center center;
    top: 0px;
    filter: opacity(0.7);
    z-index: 0;
    width: 100%;
    height: 100%;
}
.contact-section > div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 1280px;
}
.contact-section p {
    font-weight: 500;
    font-size: 24px;
    text-shadow: 1px 1px 5px #f7fbea !important;
}
.contact-section a {
    color: #000000;
    text-decoration: underline;
}
.contact-section a:hover {
    color: #131313;
    text-shadow: 0 0 10px #ffffff;
    text-decoration: underline #131313;
}
/* Footer */
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    background: #7ABF18;
    box-shadow: #000000 0px -2px 5px;
}
footer p {
    text-align: center;
    font-size: 17px;
    line-height: 1.3;
    width: 70%;
}
footer > div {
    display: flex;
    width: 100%;
    max-width: 1280px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    position: relative;
    overflow: hidden;
    padding: 30px 0px;
    justify-items: center;
}
 footer a.consultation-button {
    background: #131313;
    color: #ffffff !important;
    bottom: 10px;
    left: 0px;
    position: fixed;
    z-index: 99;
    border-left: none;
    border-radius: 0 20px 20px 0;
}

/* Call Now Button */
#callnowbutton {
    display: none;
}
@media screen and (max-width: 650px) {
    #callnowbutton {
        position: fixed;
        right: 10px;
        padding: 10px 20px;
        z-index: 9999999;
        cursor: pointer;
        bottom: 10px;
        background-color: rgb(129, 215, 66);
        color: rgb(255, 255, 255);
        text-decoration: none;
        border: none;
        transition: all 0.3s ease 0s;
        border-radius: 5px;
        width: fit-content;
        height: fit-content;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
   }
    #callnowbutton a img {
        height: 2em;
   }
}



/* Tablet */
@media (min-width: 600px) {
    h1 {
        font-size: 38px;
   }
    h2 {
        font-size: 30px;
   }
    h3 {
        font-size: 24px;
   }
    /* Navigation */
    .brand {
        width: 100%;
        margin-right: 40px;
    }
    
    /* Header */
    .slider-text p {
        font-size: 18px;
    }
    .headers-buttons {
        flex-direction: row;
        justify-content: flex-start;
   }
    .headers-buttons a.consultation-button {
        margin: 0px 10px 0px 0px;
   }
    .headers-buttons::before {
        bottom: -33px;
   }
    /* About */
    .area-served li {
        width: 30%;
        padding-left: 5px;
   }
    .about-img {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    img.about-image-2 {
    transform: translateX(20%);
    top: 45%;
    }
    /* Features */
    .features-content-2 > div::before {
        height: 100%;
    }

    /* Services */

    /* Gallery */
    .lp-gallery a {
        width: 47%;
    }
    .gallery-section::before {
        width: 260px;
    }
    .gallery-section::after {
        width: 260px;
    }
}

@media (min-width: 768px) {
    .srvElement {
        /* width: 48%; */
        display: flex;
        flex-direction: column;
        margin: 30px 10px 0px 0px;
   }
}

/* Desktop */
@media (min-width: 981px) {
    h1 {
        font-size: 42px;
   }
    h2 {
        font-size: 36px;
   }
    h3 {
        font-size: 28px;
   }
    .menu-bg {
        display: none;
   }
    .menu-container {
        margin: 5px 0;
    }
    nav {
        height: fit-content;
        padding: 15px 0;
   }
    nav > div {
        justify-content: center;
        flex-direction: row;
   }
   .menu-items {
        position: relative;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        display: flex;
        gap: 9px;
        margin-top: 0;
        justify-content: center;
        width: auto;
        align-items: center;
    }
    .menu-items div {
        opacity: 1;
        transition: none;
        display: flex;
    }
    .menu-bg.fs {
        width: 0;
    }
    .menu-items.fs div {
        margin-top: 0px !important;
    }
    .menu-bg, .menu-burger {
        display: none;
    }
    .brand-container {
        max-width: 100%;
    }
    .brand {
        justify-content: left;
        margin: 5px 40px 5px 0;
    }
    .brand a {
        justify-content: left;
    }
    .navigation {
        width: auto;
    }

    /* Header */
    .slider-section {
        display: flex;
        flex-direction: row;
        top: 155px;
        padding: 30px 0px 200px;
        justify-content: space-around;
    }
    .top-decoration-element {
        align-items: flex-start;
    }
    .slider-content {
        width: 50%;
    }
    .slider-text {
        align-items: flex-start;
        width: 50%;
    }
    .slider-text h1 {
        text-align: left;
    }
    .slider-text p {
        text-align: left;
        font-size: 20px;
    }
    .slider-img-container {
        margin: 0;
        width: 400px;
        height: 380px;
    }

    /* About */
    .about-holder {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    .about-content {
        width: 50%;
        left: 0%;
        align-items: flex-start;
    }
    .about-content h2 {
        left: -25%;
    }
    .about-img {
        margin: 0;
        width: 400px;
        height: 380px;
        border-radius: 20px;
        box-shadow: #0000004d 0px 19px 38px, #00000038 0px 15px 12px;
        z-index: 1;
    }

    /* Features */
    .features-section > div {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    .features-content-1 {
        width: 50%;
    }
    .features-img {
        margin: 0;
        width: 400px;
        height: 380px;
        border-radius: 20px;
        box-shadow: 0 0 10px #00000050;
    }
    .features-section-2 > div {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    .features-content-2 {
        width: 50%;
    }
    .features-content-2 > div {
        justify-items: flex-start;    
    }
    .features-content-2 > div::before {
        height: 85%;
    }
    .contact-form-section {
        width: 42%;
        margin: 0;
    }
    .email-form {
        align-items: flex-end;
   }

    /* Services */
    .srvElement {
        display: flex;
        flex-direction: column;
        margin: 30px 5px 0px;
   }

    /* Testimonials */
    .testimonials-section {
        flex-direction: row;
   }
    #testimonials {
        width: 50%;
   }

    /* Gallery */
    div#gallery h2 {
        margin: 0;
    }
    .check-holder {
        top: 50px;
        position: relative;
    }

    /* Strictly enforce four images in the first row */
    .lp-gallery a:nth-child(-n+4) {
        width: 23%;
        max-width: 320px;
        height: auto;
    }

    /* Ensure the first and fourth images are taller */
    .lp-gallery a:nth-child(1), 
    .lp-gallery a:nth-child(4) {
        width: 24%;
        max-width: 290px;
        height: 30vw;
        max-height: 390px;
    }

    /* Ensure the second and third images are square */
    .lp-gallery a:nth-child(2), 
    .lp-gallery a:nth-child(3) {
        width: 20vw;
        max-width: 290px;
        height: 20vw;
        max-height: 290px;
    }

    /* Ensure all images after the first row remain a fixed size */
    .lp-gallery a:nth-child(n+5) {
        width: 22vw;
        max-width: 290px;
        height: 22vw;
        max-height: 290px;
    }
}

@media (min-width: 1200px) {
    /* header::before {
        z-index: 99999;
        opacity: 1;
        top: 75px;
    } */
        header::after {
        z-index: 99999;
        opacity: 1;
    }
        .gallery-section::before {
        opacity: 1;
        width: 20vw;
        height: 14vw;
    }
        .gallery-section::after {
        opacity: 1;
        width: 20vw;
        height: 14vw;
    }
}

@media (min-width: 2000px) {
    .contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"], .contact-form input[type="message"] {
        backdrop-filter: unset;
    }
    .testimonial-content {
        backdrop-filter: unset;
    }
}
