body {
    color: #000000;
    background: #fff;
    font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
    margin: 0px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 500;
    overflow-x: hidden;
    line-height: 1.4;
}
html {
    scroll-padding-top: 20%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
a[href^="tel:"] {
    white-space: nowrap;
}
p,
li {
    color: #000;
    text-align: justify;
    margin: 0px;
}
h1,
h2,
h3,
h4 {
    font-family: "Bebas Neue", serif;
    font-weight: 600;
    font-style: normal;
}
h1 {
    font-size: 26px;
}
h2 {
    font-size: 24px;
    font-weight: 800;
    text-transform: capitalize;
    margin: 0px;
    text-align: center;
}
h3 {
    font-size: 22px;
}
@media (min-width: 600px) {
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 24px;
    }
}
@media (min-width: 981px) {
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 28px;
    }
}
f {
    box-sizing: border-box;
}
/*--------------------------------------------------
    * Header
--------------------------------------------------*/
header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: auto;
}
.hamburger {
    display: flex;
    z-index: 99999;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    transition: 0.2s;
    position: relative;
}
.hamburger svg {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}
.line {
    transition: 0.5s;
    stroke-width: 6px;
    stroke: #000000;
}
.lineTop {
    stroke-dasharray: 40, 40;
    stroke-dashoffset: 25;
}
.lineBottom {
    stroke-dasharray: 40, 40;
    stroke-dashoffset: 60;
}
.lineMid {
    stroke-dasharray: 40, 40;
}
.hamburger.open .lineTop {
    stroke-dashoffset: 0;
    transform-origin: left center;
    transform: rotateZ(45deg) translate(-7px, -5px);
}
.hamburger.open .lineMid {
    stroke-dashoffset: 40;
}
.hamburger.open .lineBottom {
    stroke-dashoffset: 0;
    transform-origin: left center;
    transform: rotateZ(-45deg) translate(-5px, 5px);
}
nav {
    display: flex;
    position: relative;
    width: 100%;
    flex-direction: column;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    top: 0px;
    background: #ffffff;
}
nav.scrolled {
    position: fixed;
    top: 0px;
    z-index: 999999;
    box-shadow: #000000b3 0px 4px 10px 0px;
    animation: 0.3s ease 0s 1 normal none running slideDown;
}
.navigation-section {
    width: 90%;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    height: auto;
    max-width: 1280px;
    justify-content: center;
    padding: 10px;
}
.navigation {
    width: 100%;
    display: flex;
    position: relative;
    place-content: center space-between;
    flex-flow: wrap;
    align-items: center;
    height: 100%;
}
nav .menu-section {
    flex-direction: column;
    display: flex;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: -1rem;
    left: -100%;
    z-index: 0;
    place-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 1s ease-in-out;
}
nav .menu-section.active {
    top: 0rem;
    left: 0px;
    right: 0px;
    padding: 0px;
    z-index: 9999;
    width: 100%;
    transform: translateX(0px);
    overflow: hidden;
    height: 101vh;
    background: #e8e8e8;
}
nav .menu {
    align-items: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0px;
}
nav .menu li {
    margin: 0px;
    text-align: center;
    padding: 1rem 0px;
    list-style: none;
}
nav .menu li a {
    text-decoration: none;
    font-weight: 500;
    color: #000000;
}
.brand {
    width: 85%;
    text-wrap: wrap;
    z-index: 3;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    position: relative;
}
.brand a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    z-index: 3;
    width: 77%;
}
.brand span {
    font-size: 23px;
    font-family: "Source Sans 3", serif;
    font-weight: 800;
    font-style: normal;
    position: relative;
    color: #fff;
    text-align: left;
}
.brand-logo {
    width: 85%;
    text-wrap: wrap;
    z-index: 3;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    position: relative;
}
.brand-logo a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    z-index: 3;
    width: 77%;
}
.brand-logo img {
    width: 220px;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.navigation-buttons {
    width: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.navigation-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    align-self: center;
}
.navigation-links .button-1 {
    margin: 20px 0px 0px;
}
/*--------------------------------------------------
    * Slider
--------------------------------------------------*/
.slider-section {
    position: relative;
    width: 100%;
    height: calc(-65px + 100vh);
    align-items: center;
    display: flex;
    z-index: 0;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 450px;
    max-height: 550px;
    padding-bottom: 20px;
}
.slider-section::before {
    content: "";
    z-index: 2;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #0000009c;
}
.slider-section > img {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.slider {
    display: flex;
    flex-direction: column;
    width: 90%;
    position: relative;
    max-width: 1280px;
    z-index: 3;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.slider-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#title-h1 {
    margin: 0px;
    position: relative;
    font-weight: 900;
    color: #fff;
    z-index: 3;
    text-align: center;
    line-height: 1.2;
    text-shadow: #000 0px 0px 5px;
    letter-spacing: 2px;
    opacity: 0;
}
.slider-content > p {
    margin: 10px 0px;
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 20px;
    text-align: center;
    text-shadow: #000 0px 0px 5px;
    opacity: 0;
}
.slider-content p a {
    color: #fff;
    text-decoration: underline;
}
.headers-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    margin: 10px 0px 5px;
    opacity: 0;
}
.headers-buttons > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.button {
    border-radius: 10px;
    border: 1px solid #0D743A;
    position: relative;
    overflow: hidden;
    transition: 0.5s ease-in;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background: #56f28d;
}
.button::before,
.button::after {
    content: "";
    position: absolute;
    top: 0px;
    width: 0px;
    height: 100%;
    transform: skew(15deg);
    transition: 0.5s;
    overflow: hidden;
    z-index: -1;
}
.button::before {
    left: -10px;
    background: #0D743A;
    filter: brightness(0.8);
}
.button::after {
    right: -10px;
    background: #0D743A;
}
.button:hover::before,
.button:hover::after {
    width: 63%;
}
.button:hover span {
    color: #fff;
    transition: 0.3s;
}
.button span {
    color: #000000;
    font-size: 18px;
    transition: 0.3s ease-in;
    z-index: 2;
}
.button-1 {
    border-radius: 10px;
    border: 1px solid #0D743A;
    position: relative;
    overflow: hidden;
    transition: 0.5s ease-in;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    margin-left: 10px;
    background: #56f28d;
}
.button-1::before,
.button-1::after {
    content: "";
    position: absolute;
    top: 0px;
    width: 0px;
    height: 100%;
    transform: skew(15deg);
    transition: 0.5s;
    overflow: hidden;
    z-index: -1;
}
.button-1::before {
    left: -10px;
    background: #0D743A;
    filter: brightness(0.8);
}
.button-1::after {
    right: -10px;
    background: #0D743A;
}
.button-1:hover::before,
.button-1:hover::after {
    width: 63%;
}
.button-1:hover span {
    color: #fff;
    transition: 0.3s;
}
.button-1 span {
    color: #000000;
    font-size: 18px;
    transition: 0.3s ease-in;
}
.headers-buttons .button,
.headers-buttons .button-1 {
    background: #56f28d;
}
.scroll-down {
    position: absolute;
    margin: 20px;
    z-index: 5;
    right: calc(50% - 30px);
    bottom: -22px;
}
.scroll-down img {
    height: 80px;
    transform: rotate(0deg);
    animation: 1.5s ease 0s infinite normal none running scroll-down-button;
    filter: drop-shadow(#000 0px 0px 6px);
}
@-webkit-keyframes scroll-down-button {
    0% {
        transform: rotate(0deg) translate(0px, 0px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(0deg) translate(0px, 20px);
        opacity: 0;
    }
}
@keyframes scroll-down-button {
    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;
    align-items: center;
    width: 100%;
    position: relative;
    background: #ffffff;
}
.badges-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    margin: 50px 0px;
}
.badges-section > div > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.badges-container {
    display: flex;
    flex-flow: wrap;
    place-content: center;
    align-items: stretch;
    width: 100%;
    position: relative;
}
.badge-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
    max-width: 210px;
    margin: 15px;
    position: relative;
    background: #e8e8e8;
    border-radius: 15px;
    padding: 20px 40px;
    z-index: 5;
    box-shadow: #0000005c 0px 10px 15px;
    transition: transform 0.5s ease;
}
.badge-holder:hover {
    transform: translateY(-5px) scale(1.02);
}
.badge-holder > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    z-index: 3;
    max-width: 265px;
    height: 100%;
}
.badge-holder > div::before {
    content: "";
    position: absolute;
    z-index: 2;
    background: #ffffff8f;
    width: 83%;
    height: 84%;
    border-radius: 15px;
    animation: pulse 2s infinite ease-in-out;
    transition: all 0.5s;
}
.badge-holder:hover > div::before {
    animation: none;
}
.badge-holder > div::after {
    content: "";
    position: absolute;
    z-index: 2;
    background: #ffffff73;
    width: 87%;
    height: 89%;
    border-radius: 15px;
    animation: pulse 2s infinite ease-in-out;
    transition: all 0.5s;
}
.badge-holder:hover > div::after {
    animation: none;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.badge-title {
    color: #0D743A;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 700;
    width: 100%;
    text-align: center;
    border-bottom: 3px solid #0D743A;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.badge-elements {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    z-index: 5;
    margin-top: 10px;
    justify-content: flex-start;
}
.badge-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.badge-icon img {
    width: 55px;
    height: auto;
}
.badge-content {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    text-transform: capitalize;
    margin-left: 10px;
}
/*--------------------------------------------------
    * About
--------------------------------------------------*/
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    background: #e8e8e8;
}
.about-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    margin: 50px 0px;
    flex-direction: column;
    position: relative;
}
.decoration-dots-1 {
    position: absolute;
    width: 47vw;
    height: 27vw;
    max-height: 120px;
    top: -45px;
    left: -32%;
    object-fit: contain;
    object-position: center;
    opacity: 0.7;
}
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 3;
}
.about-title {
    color: #000;
    letter-spacing: 2px;
    text-align: center;
    opacity: 0;
}
.title-decoration {
    border: 5px solid #0D743A;
    width: 50px;
    border-radius: 20px;
    margin: 20px 0;
    z-index: 3;
}
.about-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-text p {
    color: #000000;
    margin-bottom: 20px;
}
.area-served {
    display: flex;
    place-content: center flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-top: 0px;
    list-style: none;
    padding: 0px;
    flex-flow: wrap;
}
.area-served li {
    width: 100%;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 5px 0px;
    color: #fff;
}
.area-served li::before {
    content: "";
    margin-right: 5px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("/img/icons/google-marker.webp") center center / contain
        no-repeat;
}
.about-images-element {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    margin-top: 10px;
    max-width: 650px;
    z-index: 3;
}
.about-image-element-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.about-image-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 25px;
    position: relative;
    box-shadow: #0000005c 0px 10px 15px;
    border-radius: 20px;
}
.about-image-1::before {
    content: "";
    position: absolute;
    z-index: 3;
    background: #0D743A;
    width: 0%;
    height: 0%;
    border-radius: 15px;
    top: -1.5%;
    left: -1.5%;
    transition: all 1s;
}
.about-image-1:hover::before {
    width: 103%;
    height: 103%;
}
.about-image-1::after {
    content: "";
    position: absolute;
    z-index: 2;
    background: #56f28d;
    width: 0%;
    height: 0%;
    border-radius: 15px;
    top: -3.5%;
    left: -3%;
    transition: all 1.1s;
}
.about-image-1:hover::after {
    width: 106%;
    height: 107%;
}
.about-image-1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
    z-index: 3;
    border: 3px solid transparent;
    border: 4px solid #0D743A;
}
.about-image-element-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.about-image-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 25px;
    position: relative;
    box-shadow: #0000005c 0px 10px 15px;
    border-radius: 20px;
}
.about-image-2::before {
    content: "";
    position: absolute;
    z-index: 3;
    background: #0D743A;
    width: 0%;
    height: 0%;
    top: -2.5%;
    left: -2.5%;
    border-radius: 15px;
    transition: all 1s;
}
.about-image-2:hover::before {
    width: 105%;
    height: 106%;
}
.about-image-2::after {
    content: "";
    position: absolute;
    z-index: 2;
    background: #56f28d;
    width: 0%;
    height: 0%;
    top: -6.5%;
    left: -5.5%;
    border-radius: 15px;
    transition: all 1.1s;
}
.about-image-2:hover::after {
    width: 111%;
    height: 114%;
}
.about-image-2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
    z-index: 3;
    border: 3px solid #0D743A;
}
.about-image-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 25px;
    position: relative;
    box-shadow: #0000005c 0px 10px 15px;
    border-radius: 20px;
}
.about-image-3::before {
    content: "";
    position: absolute;
    z-index: 3;
    background: #0D743A;
    width: 0%;
    height: 0%;
    top: -2.5%;
    left: -2.5%;
    border-radius: 15px;
    transition: all 1s;
}
.about-image-3:hover::before {
    width: 105%;
    height: 106%;
}
.about-image-3::after {
    content: "";
    position: absolute;
    z-index: 2;
    background: #56f28d;
    width: 0%;
    height: 0%;
    top: -6.5%;
    left: -5.5%;
    border-radius: 15px;
    transition: all 1.1s;
}
.about-image-3:hover::after {
    width: 111%;
    height: 114%;
}
.about-image-3 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
    z-index: 3;
    border: 3px solid #0D743A;
}
.decoration-dots-2 {
    position: absolute;
    width: 47vw;
    height: 27vw;
    max-height: 120px;
    bottom: -45px;
    right: -32%;
    object-fit: contain;
    object-position: center;
    opacity: 0.7;
}
/*--------------------------------------------------
    * Features
--------------------------------------------------*/
.features-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #ffffff;
    position: relative;
}
.features-title {
    text-align: center;
    color: #000000;
    letter-spacing: 2px;
    opacity: 0;
    width: 90%;
    z-index: 3;
}
.features-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    margin: 50px 0;
    flex-direction: column;
    position: relative;
}
.features-section > div > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 3;
}
.features-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    margin-top: 20px;
    border-radius: 20px;
    background: #0D743A;
    padding: 15px 25px;
    box-shadow: #0000005c 0px 10px 15px;
    z-index: 2;
    max-width: 600px;
}
.features-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
    border: 7px solid #56f28d;
    z-index: 4;
    transition: all 0.5s;
}
.features-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.features-text {
    padding-left: 0px;
    list-style: none;
}
.features-text li {
    color: #000000;
    text-shadow: 0 0 5px #fff;
}
.features-text li::before {
    content: "✔";
    font-size: 18px;
    color: #0D743A;
}
.features-text li strong {
    color: #0D743A;
    text-shadow: 0 0 5px #e8e8e8;
}
/*--------------------------------------------------
    * Services
--------------------------------------------------*/
.services-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    z-index: 0;
}
.services-section > div {
    width: 90%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    margin: 50px 0px;
}
.services-title {
    color: #000000;
    letter-spacing: 2px;
    opacity: 0;
}
.services-title span {
    color: #00ab1f;
}
.services-section > div > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.srvBlock {
    display: flex;
    align-items: stretch;
    place-content: center;
    position: relative;
    height: 100%;
    flex-flow: wrap;
}
.srvElement {
    margin: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    position: relative;
    align-items: stretch;
    max-width: 350px;
    background: #0D743A;
    padding: 20px;
    border-radius: 30px;
    box-shadow: #0000005c 0px 10px 15px;
    overflow: hidden;
}
.srvElement::before {
    content: "";
    position: absolute;
    z-index: 2;
    background: #ffffff8f;
    width: 94%;
    height: 95%;
    border-radius: 30px;
    transition: all 0.5s;
    top: 13px;
}
.srvElement:hover::before {
    width: 112%;
    height: 109%;
    max-width: 390px;
    max-height: 508px;
    top: 0;
}
.srvElement::after {
    content: "";
    position: absolute;
    z-index: 2;
    background: #ffffff73;
    width: 97%;
    height: 97%;
    border-radius: 30px;
    transition: all 0.5s 0.5s;
    top: 7px;
}
.srvElement:active::before {
    height: 100%;
}
.srvElement:hover::after {
    width: 112%;
    height: 109%;
    max-width: 390px;
    max-height: 508px;
    top: 0;
}
.srvElement:active::after {
    height: 100%;
}
.services-body {
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: #fff;
    padding: 10px;
    position: relative;
    transition: all 0.5s 1s;
}
.srvElement:hover .services-body {
    margin: -20px;
}
.srvElementHeader {
    position: relative;
    z-index: 3;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.srvElementHeader h2 {
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    line-height: 1.4;
    font-size: 24px;
    margin: 0px;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 2px;
    color: #000;
    transition: all 0.5s 1s;
}
.srvElement:hover .srvElementHeader h2 {
    color: #0D743A;
}
.srvElementImg {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    border-bottom: 0px;
    width: 100%;
    z-index: 3;
}
.srvElementImg > img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    position: relative;
    z-index: 1;
    border-radius: 30px;
}
.srvElementBody {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
}
.srvElementContent {
    text-align: justify;
    line-height: 1.4;
    position: relative;
    z-index: 3;
    margin-bottom: 5px;
}
.srvElementContent p {
    margin: 0px;
    font-weight: 500;
    position: relative;
    color: #000;
    z-index: 2;
}
/*--------------------------------------------------
    * Gallery
--------------------------------------------------*/
.gallery-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #ffffff;
    flex-direction: column;
}
.gallery-content {
    width: 95%;
    max-width: 1280px;
    margin: 50px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.gallery-title {
    color: #000000;
    letter-spacing: 2px;
    z-index: 3;
}
div.GallerySwiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
}
.GallerySwiper .swiper-slide {
    display: flex;
    place-content: center;
    align-items: center;
    width: 100%;
    flex-flow: wrap;
    margin-top: 10px;
}
.GallerySwiper .swiper-slide a {
    width: 81vw;
    height: 81vw;
    margin: 20px;
    max-width: 450px;
    max-height: 450px;
    background: #0D743A;
    padding: 20px;
    box-shadow: #0000005c 0px 10px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.GallerySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: 0.5s;
    border-radius: 30px;
    border: 7px solid #56f28d;
}
.GallerySwiper .swiper-slide img:hover {
    transform: scale(1.05);
}
div.gallery-swiper-button-next {
    right: -16px;
    top: 50%;
    border: 0px;
    border-radius: 0px;
    padding: 0px;
    background: transparent;
    position: absolute !important;
}
div.gallery-swiper-button-prev {
    left: -16px;
    top: 50%;
    border: 0px;
    border-radius: 0px;
    padding: 0px;
    background: transparent;
}
div.gallery-swiper-button-prev::after,
div.gallery-swiper-button-next::after {
    color: #0D743A;
    text-align: center;
    font-size: 30px !important;
}
div.gallery-swiper-pagination {
    bottom: 0px !important;
}
div.gallery-swiper-pagination .swiper-pagination-bullet {
    background: #fff;
}
div.gallery-swiper-pagination .swiper-pagination-bullet {
    background: #0D743A;
}
.lightboxOverlay,
.lightbox {
    z-index: 999999 !important;
}
/*--------------------------------------------------
    * Testimonials
--------------------------------------------------*/
.testimonials-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #e8e8e8;
}
#testimonials {
    display: flex;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    z-index: 2;
    align-items: center;
    flex-direction: column;
    margin: 50px 0px;
}
.testimonial-title {
    color: #000000;
    letter-spacing: 2px;
    z-index: 3;
}
.testimonial {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
    z-index: 3;
}
.testimonial-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-image .image {
    position: relative;
    object-fit: cover;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px #0000009e);
}
.testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: auto;
    width: 100%;
}
.testimonials-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 10px;
    position: relative;
    max-width: 600px;
}
.testimonials-slide::before {
    content: "";
    position: absolute;
    z-index: 3;
    background: #0D743A61;
    width: 91%;
    height: 96.5%;
    border-radius: 30px;
    transition: 0.5s;
}
.testimonials-slide:hover::before {
    width: 94%;
    height: 100%
}
.testimonials-slide::after {
    content: "";
    position: absolute;
    z-index: 2;
    background: #ffffff;
    width: 94%;
    height: 100%;
    border-radius: 30px;
}
.testimonial-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    z-index: 3;
    background: #0D743A;
    border-radius: 30px;
    padding: 15px 10px 20px;
    width: 86%;
    height: 90%;
    transition: 0.5s 0.5s, background 0.5s 1s, border-color 0.5s 1s;
    border: 2px solid transparent;
}
.testimonials-slide:hover .testimonial-content {
    width: 94%;
    height: 100%;
    margin: -10px 0;
    background: #ffffff;
    border-color: #fff;
}
.testimonial-text {
    position: relative;
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    z-index: 3;
    height: 100%;
}
.slide p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-align: justify;
    position: relative;
    margin: 10px 0px;
    padding: 0px;
    transition: 0.5s 1s;
}
.testimonials-slide:hover .testimonial-text p {
    color: #000;
}
.slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* margin-left: 15px; */
    margin-bottom: 20px;
}
.details .name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: 0.5s 1s;
}
.testimonials-slide:hover .details .name {
    color: #000;
}
.slide .details img {
    width: 130px;
    margin-top: 10px;
    filter: drop-shadow(0 0 10px #000000db);
}
.testimonials-swiper-navigation {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: 30px;
}
.testimonial .swiper-button-next {
    left: 0px;
    margin-left: 5px;
    right: 0px !important;
    top: 0px !important;
    position: relative !important;
}
.testimonial .swiper-button-prev {
    margin-right: 5px;
    left: 0px !important;
    top: 0px !important;
    right: 0px !important;
}
.testimonial .swiper-button-prev,
.testimonial .swiper-button-next {
    border: 1px solid #0D743A;
    border-radius: 50%;
    padding: 0px;
    background: #0D743A;
    position: relative !important;
    width: 40px !important;
    height: 40px !important;
}
.testimonial .swiper-button-prev::after,
.testimonial .swiper-button-next::after {
    color: #fff;
    font-size: 23px !important;
}
.testimonial .swiper-button-prev {
    border-radius: 10px;
    transition: 0.5s;
}
.testimonial .swiper-button-prev:hover {
    background: #ffffff;
    border-color: #ffffff;
}
.testimonial .swiper-button-prev:hover::after,
.testimonial .swiper-button-next:hover::after {
    color: #000;
}
.testimonial .swiper-button-next {
    border-radius: 10px;
    transition: 0.5s;
}
.testimonial .swiper-button-next:hover {
    background: #ffffff;
    border-color: #ffffff;
}
.testimonial .nav-button::after,
.nav-button::before {
    position: relative;
    font-size: 20px !important;
}
/*--------------------------------------------------
    * Email form
--------------------------------------------------*/
.contact-form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    background: #ffffff;
}
.email-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    align-items: center;
    max-width: 1280px;
    position: relative;
    z-index: 1;
    margin: 50px 0;
}
.contact-form-title {
    color: #000000;
    letter-spacing: 2px;
}
.email-form > div > p {
    width: 59%;
    font-size: 20px;
    margin: 0px;
    text-transform: capitalize;
    font-weight: 500;
}
.email-form > div > div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 43%;
    align-self: flex-end;
    position: relative;
}
.contact-form {
    z-index: 1;
    position: relative;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #0D743A;
    padding: 40px;
    border-radius: 30px;
    max-width: 800px;
}
.contact-form::before {
    content: "";
    position: absolute;
    z-index: 2;
    background: #ffffff8f;
    width: 94%;
    height: 89%;
    border-radius: 30px;
    animation: pulseCF 2s infinite ease-in-out;
    transition: all 0.5s;
}
.contact-form:hover::before {
    animation: none;
}
.contact-form::after {
    content: "";
    position: absolute;
    z-index: 2;
    background: #ffffff73;
    width: 96%;
    height: 91%;
    animation: pulseCF 2s infinite ease-in-out;
    transition: all 0.5s;
    border-radius: 30px;
}
.contact-form:hover::after {
    animation: none;
}
@keyframes pulseCF {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.contact-form > div {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    padding: 5px;
}
.email-form h3 {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: #000 0px 0px 5px;
    font-weight: 500;
}
.contact-form .form-row {
    margin-bottom: 35px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
}
.contact-form .form-row:first-of-type {
    /* margin-top: 15px; */
}
.contact-form .form-row:last-of-type {
    width: auto;
}
.contact-form .form-row .button-1 {
    margin: 0px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 20px 10px 10px;
    box-sizing: border-box;
    transition: 0.3s;
    border-width: 0px 3px;
    border-top-style: initial;
    border-top-color: initial;
    border-image: initial;
    position: relative;
    background: #fff;
    color: #000;
    border-right-style: solid;
    border-right-color: #fff;
    border-left-style: solid;
    border-left-color: #fff;
    border-bottom: 2px solid #0D743A;
    border-radius: 0px;
    border-inline: 3px solid #fff;
}
.contact-form input:focus,
.contact-form input:not(:placeholder-shown),
.contact-form textarea:focus,
.contact-form textarea:not(:placeholder-shown) {
    outline: 0px;
    border-right: 3px solid #0D743A;
    border-left: 3px solid #0D743A;
    border-inline: 3px solid #0D743A;
    border-bottom: initial;
    border-radius: 20px;
    background: #0D743A3b;
}
.contact-form input[type="text"]::placeholder,
.contact-form input[type="tel"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder {
    visibility: hidden;
}
.contact-form input[type="text"]:focus::placeholder,
.contact-form input[type="tel"]:focus::placeholder,
.contact-form input[type="email"]:focus::placeholder,
.contact-form textarea:focus::placeholder {
    visibility: visible;
}
.contact-form textarea {
    resize: none;
}
.contact-form .form-row label {
    color: #000;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
    padding: 0px 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}
.contact-form .form-row label img {
    width: 20px;
    height: auto;
    margin-right: 10px;
}
.contact-form .form-row-textarea label {
    color: #000;
    position: absolute;
    right: 10px;
    top: 18%;
    transform: translateY(-50%);
    transition: 0.3s;
    padding: 0px 5px;
}
.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
    top: 0px;
    color: #000;
    padding: 2px 5px 2px 20px;
    background: #56f28d;
    font-size: 14px;
    border: 2px solid #0D743A;
    width: auto;
    border-radius: 20px;
    margin-left: 5px;
}
.contact-form textarea:not(:placeholder-shown) + label,
.contact-form textarea:focus + label {
    max-width: 130px;
}
.contact-form input:focus + label img,
.contact-form input:not(:placeholder-shown) + label img,
.contact-form textarea:focus + label img,
.contact-form textarea:not(:placeholder-shown) + label img {
    filter: invert(0);
}
.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
}
/* CAPTCHA */
.captcha-and-submit-btn {
    display: flex;
    align-items: center;
    width: 95%;
    gap: 10px;
    /* margin-bottom: -25px; */
    justify-content: center;
    align-content: center;
}

.form-row.form-row-captcha {
    margin-bottom: 72px !important;
}

.checkbox-captcha {
    pointer-events: auto !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #000 !important;
    box-sizing: border-box;
    transition: 0.5s;
    background: #fff;
    width: 100%;
    box-shadow: #0d743a 0px 0px 5px;
    accent-color: #0d743a !important;
    padding: 8px 12px !important;
    border-radius: 8px;
    font-size: 14px;
    left: 0 !important;
    transform: unset !important;
    width: 161px !important;
}
.checkbox-captcha input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
}
/*--------------------------------------------------
    * Footer
--------------------------------------------------*/
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 0;
}
footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0000008f;
    z-index: 2;
}
footer > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    object-position: center;
}
footer > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    margin: 50px 0 0;
    z-index: 3;
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.footer-brand a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-brand a span {
    color: #fff;
    font-size: 25px;
    text-shadow: 0 0 5px #000;
}
.footer-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.footer-brand-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 154px;
}
.footer-brand-logo a img {
    width: 100%;
    height: auto;
}
.contact-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.contact-section p {
    color: #fff;
    text-shadow: 0 0 5px #000;
    font-size: 18px;
}
.contact-section p a {
    color: #fff;
    text-decoration: underline;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-menu {
    padding: 0;
    list-style: none;
}
.footer-menu li {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer-menu li::before {
    content: "✔";
    font-size: 18px;
    color: #fff;
    text-shadow: 0 0 5px #000;
}
.footer-menu li a {
    color: #fff;
    font-size: 18px;
    margin-left: 10px;
    text-shadow: 0 0 5px #000;
}
.footer-rights {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 25px;
    flex-direction: row;
}
.footer-rights hr {
    border-color: #ffffff91;
    width: 90%;
}
.footer-rights p {
    color: #fff;
    text-align: center;
    margin-top: 20px;
    text-shadow: 0 0 5px #000;
}
#callnowbutton {
    display: none;
}
#booking-engin {
    position: fixed;
    left: 0px;
    z-index: 9999999;
    cursor: pointer;
    bottom: 10px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: none;
    box-shadow: none;
    margin: 0px;
    padding: 0px;
}
.button-2 {
    border-radius: 0px 10px 10px 0px;
    border: none;
    padding: 10px 20px;
    position: relative;
    display: inline-block;
    background: #0D743A;
    border: 3px solid #0D743A;
    z-index: 1;
    color: #fff;
    transition: 0.5s;
    cursor: pointer;
}
.button-2:hover {
    background: #ffffff;
}
@keyframes riseRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes riseLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes riseUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (min-width: 600px) {
    /*--------------------------------------------------
        * About
    --------------------------------------------------*/
    .decoration-dots-1 {
        height: 27vw;
        width: 47vw;
        max-height: 125px;
        left: -31%;
        top: -41px;
    }
    .area-served li {
        width: 50%;
    }
    .decoration-dots-2 {
        height: 27vw;
        width: 47vw;
        max-height: 125px;
        right: -31%;
        bottom: -41px;
    }
    /*--------------------------------------------------
        * Testimonials
    --------------------------------------------------*/
    .slide p {
        font-size: 20px;
    }
    /*--------------------------------------------------
        * Footer
    --------------------------------------------------*/
    .footer-brand a span {
        font-size: 30px;
    }
    .contact-section p {
        font-size: 21px;
    }
}
@media screen and (max-width: 650px) {
    #callnowbutton {
        position: fixed;
        right: 10px;
        padding: 10px 20px;
        z-index: 9999999;
        cursor: pointer;
        bottom: 10px;
        background-color: #81d742;
        color: #fff;
        text-decoration: none;
        border-radius: 10px;
        border: none;
        transition: 0.3s;
        width: fit-content;
        height: fit-content;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    #callnowbutton a img {
        height: 2em;
    }
}
@media (min-width: 981px) {
    /*--------------------------------------------------
        * Header
    --------------------------------------------------*/
    .hamburger {
        display: none;
    }
    nav {
        padding: 0px;
    }
    .navigation-section {
        flex-direction: column-reverse;
        position: relative;
        flex-direction: row-reverse;
    }
    nav .menu-section {
        justify-content: flex-end;
        flex-flow: wrap;
        position: unset;
        width: 62%;
        align-items: center;
        padding: 0px;
        transform: none;
        height: auto;
        z-index: 3;
    }
    nav .menu {
        height: auto;
        flex-direction: row;
        margin: 10px 0px 0px;
        width: auto;
    }
    nav .menu li {
        margin: 10px;
        padding: 0px;
        width: auto;
    }
    .navigation {
        width: 38%;
        justify-content: flex-start;
        align-items: center;
    }
    .brand {
        margin: 10px 0px;
        z-index: 5;
        width: 100%;
        justify-content: center;
    }
    .brand a {
        width: 100%;
        justify-content: center;
    }
    .brand-logo {
        justify-content: flex-start;
        width: 100%;
    }
    .brand-logo a {
        width: auto;
    }
    .navigation-buttons {
        display: none;
    }
    .navigation-links {
        flex-direction: row;
        align-self: flex-end;
        justify-content: end;
    }
    .navigation-links .button-1 {
        margin: 0px 0px 0px 15px;
    }
    /*--------------------------------------------------
        * Slider
    --------------------------------------------------*/
    .slider-section {
        height: calc(-127px + 100vh);
    }
    .scroll-down {
        left: calc(50% - 50px);
    }
    /*--------------------------------------------------
        * Badges
    --------------------------------------------------*/
    .badges-section > div {
        margin: 20px 0px;
    }
    /*--------------------------------------------------
        * About
    --------------------------------------------------*/
    .features-section > div {
        margin: 20px 0;
    }
    .decoration-dots-1 {
        height: 15vw;
        width: 62vw;
        max-height: 140px;
        max-width: 700px;
        top: -6px;
        left: -38%;
    }
    .about-section > div {
        margin: 20px 0px;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    .about-content {
        width: 49%;
    }
    .about-images-element {
        width: 49%;
    }
    .decoration-dots-2 {
        height: 15vw;
        width: 62vw;
        max-width: 700px;
        max-height: 140px;
        bottom: -6px;
        right: -38%;
    }
    /*--------------------------------------------------
        * Featues
    --------------------------------------------------*/
    .features-title {
        margin: 20px 0px 0px;
    }
    .features-section > div > div {
        margin: 20px 0px;
        justify-content: space-between;
        flex-direction: row;
        align-items: stretch;
    }
    .features-image {
        width: 46%;
        margin: 0px;
    }
    .features-image:hover > img {
        width: 106%;
        height: 105%;
    }
    .features-content {
        width: 46%;
        align-items: flex-start;
    }
    /*--------------------------------------------------
        * Services
    --------------------------------------------------*/
    .services-section > div {
        margin: 20px 0;
    }
    /*--------------------------------------------------
        * Gallery
    --------------------------------------------------*/
    .gallery-content {
        margin: 20px 0px;
    }
    .GallerySwiper .swiper-slide a {
        width: 27vw;
        height: 27vw;
        max-width: 375px;
        max-height: 375px;
    }
    /*--------------------------------------------------
        * Testimonials
    --------------------------------------------------*/
    #testimonials {
        margin: 20px 0;
    }
    .testimonials-slide {
        max-width: none;
    }
    /*--------------------------------------------------
        * Email form
    --------------------------------------------------*/
    .email-form {
        margin: 20px 0;
    }
    /*--------------------------------------------------
        * Footer
    --------------------------------------------------*/
    footer > div {
        margin: 20px 0 0;
        flex-direction: row;
        justify-content: space-between;
    }
    .footer-brand {
        width: 33%;
    }
    .footer-brand a span {
        font-size: 35px;
    }
    .contact-section {
        width: 33%;
    }
    .contact-section p {
        font-size: 23px;
    }
    .footer-content {
        width: 33%;
    }
}
@media (min-width: 1200px) {
    .navigation-section {
        flex-direction: row-reverse;
    }
    nav .menu-section {
        width: 79%;
        justify-content: flex-end;
    }
    .navigation {
        width: 21%;
    }
    .brand a {
        justify-content: flex-start;
    }
}
