body {
    color: #000000;
    background-color: #ffffff;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    margin: 0px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    scroll-behavior: smooth;
    line-height: 1.4;
}

html {
    scroll-padding-top: 20%;
    scroll-behavior: smooth;
}

.row {
    z-index: 1;
    margin-right: 0px !important;
    margin-left: 0px !important;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a[href^="tel:"] {
  white-space: nowrap;
}

h1, h2, h3, h4 {
    font-family: Mukta, serif;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: 26px;
    font-weight: 700;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
}

h3 {
    font-size: 22px;
}

@media (min-width: 600px) {
    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 28px;
    }
}

* {
    box-sizing: border-box;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #ffffff;
    position: relative;
}

.top-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #022102;
}

.top-navigation > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: 90%;
    max-width: 1280px;
    position: relative;
    margin: 10px 0px 20px;
}

.top-navigation > div > div {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    position: relative;
    flex-direction: row;
}

.top-navigation > div a {
    color: #fff;
    transition: 0.2s ease;
}

.top-navigation > div a span {
    position: relative;
    text-decoration: none;
}

.top-navigation > div a:hover {
    color: #ff9800;
}

.top-navigation > div a span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #ff9800;
    transition: width 0.25s ease;
}

.top-navigation > div a:hover  span::after {
    width: 100%;
}

.hamburger {
    display: flex;
    font-size: 30px;
    color: #ffffff;
    z-index: 999;
    background: #ff9800;
    height: auto;
    padding: 20px;
    position: relative;
    clip-path: polygon(0% 0%, 73% 0%, 100% 100%, 28% 100%);
    margin-right: -4vw;
    align-items: center;
    justify-content: center;
}

.menu .hamburger {
    width: 0px;
    position: absolute;
    bottom: 50px;
}

nav {
    display: flex;
    position: absolute;
    width: 100%;
    top: 40px;
    left: 0px;
    flex-direction: column;
    height: auto;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    background: transparent;
    transition: background-color 0.3s ease 0s;
}

nav.scrolled {
    background: linear-gradient(to right, #ff9800 40%, #ffffff 60%);
    box-shadow: #022102 0px 1px 5px;
    position: fixed;
    top: 0px;
    margin: 0px;
    z-index: 999999;
    animation: 0.3s ease 0s 1 normal none running slideDown;
}

nav > div {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    height: auto;
    position: relative;
}

.navigation {
    width: 100%;
    display: flex;
    flex-flow: row-reverse wrap;
    place-content: center;
    align-items: stretch;
    height: auto;
}

nav .menu {
    flex-direction: column;
    display: flex;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: -1rem;
    left: -100%;
    z-index: 0;
    transition: all 1s ease 0s;
    place-content: center;
    align-items: center;
    background: #ff9800;
}

nav .menu.active {
    top: -1rem;
    left: 0px;
    right: 0px;
    padding: 0px;
    z-index: 99;
    width: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

nav .menu.active .button {
    background: #022102;
}


#header-button {
    position: relative;
    display: inline-block;
    padding: 10px 22px;
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    background: #ff9800;
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
    clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 15% 100%);
}


nav .menu.active #header-button {
    background: #022102;
}


#header-button .header-btn-bg {
    position: absolute;
    inset: 0;
    background: #f34d00;
    transform: translateX(-120%) skewX(25deg);
    transition: transform 0.6s ease;
    z-index: 0;
}


#header-button .header-btn-text {
    position: relative;
    z-index: 1;
}


#header-button:hover .header-btn-bg {
    transform: translateX(0) skewX(25deg);
}

nav .menu li {
    margin: 0px;
    text-align: center;
    padding: 1rem 0px;
    list-style: none;
    position: relative;
}

nav .menu li a {
    text-decoration: none;
    font-weight: 500;
    color: #ffffff;
}

.button-2 {
    text-transform: uppercase;
    border: 2px solid #044c07;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    background: #044c07;
    position: relative;
    transition: all 1s ease 0s;
    overflow: hidden;
    clip-path: polygon(0% 0%, 91% 0%, 100% 100%, 9% 100%);
    color: #ffffff !important;
    text-decoration: none !important;
}

.button-2:hover {
    border-color: #ffffff;
    background: #ffffff;
    transition: all 1s ease 0s;
    color: #044c07 !important;
}

.brand {
    width: 80%;
    text-wrap: wrap;
    z-index: 10;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 5px 0px 5px 6vw;
    background: #ffffff;
    clip-path: polygon(0% 0%, 94% 0%, 100% 100%, 6% 100%);
    position: relative;
    margin-left: -10px;
}

nav.scrolled .brand {
    max-width: none;
}

.brand a {
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    flex-flow: wrap;
    place-content: center flex-start;
}

.brand span {
    color: #044c07;
    font-size: 25px;
    font-family: Mukta, serif;
    font-weight: 600;
    font-style: normal;
    position: relative;
    text-wrap: wrap;
    width: 80%;
    line-height: 1.2;
    margin-left: 55px;
    padding-top: 35px;
}

.brand img {
    width: 165px;
    height: 60px;
    align-self: center;
    position: absolute;
    left: 0px;
    top: 0px;
}
.slider-section {
    position: relative;
    width: 100%;
    height: calc(-40px + 100vh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 0;
    min-height: 400px;
    max-height: 650px;
    background: #ffffff;
}


.slider-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.58); /* #00000094 */
    z-index: 1;
}


.hero-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}


.hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    box-shadow: #000000 0px 0px 5px;
}


.slider-img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center center;
    top: 0px;
    box-shadow: #000000 0px 0px 5px;
    z-index: 0;
}

.top-decoration-element {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 90%;
    position: relative;
    max-width: 1280px;
    justify-content: center;
    z-index: 3;
    top: -48px;
}

.slider-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.slider-text {
    color: #ffffff;
    text-shadow: #000000 0px 0px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 340px;
}

.slider-text h1 {
    margin: 0px;
    position: relative;
}

.slider-text h1 span {
    color: #ff9800;
}

.slider-text p a {
    color: #ff9800;
    text-decoration: none;
    text-shadow: #000000 0px 0px 5px;
    position: relative;
    transition: 0.2s ease;
}

.slider-text p a:hover {
    color: #fff;
}

.slider-text p a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.25s ease;
}

.slider-text p a:hover::after {
    width: 100%;
}

.slider-text p {
    margin: 5px 0px 10px;
    position: relative;
    font-weight: 500;
}

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

.button {
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    background: #ff9800;
    position: relative;
    transition: all 1s ease 0s;
    overflow: hidden;
    clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 15% 100%);
    color: #000 !important;
    text-decoration: none !important;
    text-shadow: none;
}

.button:hover {
    color: #ffffff !important;
}

.button::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0px;
    left: -40px;
    transform: skewX(25deg);
    background-color: #f34d00;
    z-index: -1;
    transition: all 1s ease 0s;
}

.button:hover::before {
    width: 160%;
}

.button-3 {
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    background: #044c07;
    position: relative;
    transition: all 1s ease 0s;
    overflow: hidden;
    clip-path: polygon(0% 0%, 91% 0%, 100% 100%, 9% 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    border: none;
}

.button-3:hover {
    color: #ffffff !important;
}

.button-3::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0px;
    left: -40px;
    transform: skewX(25deg);
    background-color: #f34d00;
    z-index: -1;
    transition: all 1s ease 0s;
}

.button-3:hover::before {
    width: 160%;
}

.scroll-down {
    position: absolute;
    left: calc(-40px + 50vw);
    bottom: 30px;
    margin: 20px;
    z-index: 1;
}

.scroll-down img {
    height: 80px;
    width: 31px;
    transform: rotate(0deg);
    animation: 1.5s ease 0s infinite normal none running scroll-down-btn;
    filter: drop-shadow(#000000 0px 0px 5px);
}

@-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-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #022102;
    clip-path: polygon(0% 0%, 100% 45px, 100% 100%, 0% 100%);
    position: relative;
    margin-top: -46px;
}
.badges-section > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-flow: wrap;
}

.badges-container {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    margin: 50px 0px;
    align-items: center;
    width: 90%;
    max-width: 1280px;
    position: relative;
}

.badge-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(59% - 10px);
    max-width: 180px;
    padding: 15px 0px 22px;
    margin: 10px 10px 30px;
    position: relative;
    z-index: 0;
    background: #044c07;
    border: 1px solid #fff;
    transition: all 0.5s ease 0s;
}

.badge-holder > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #ff9800;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    position: relative;
    top: -15px;
}

p.badge-title {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 18px;
    position: relative;
    margin: 0px;
    top: 23px;
    background: #fff;
    padding: 5px 15px;
    color: #022102;
    width: 100%;
    text-align: center;
    transition: all 0.5s ease 0s;
}

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;
    color: #ffffff;
    padding: 0px 5px;
}

.badge-holder img {
    width: 89px;
    height: 61px;
    padding-bottom: 5px;
}

.badge-holder:hover {
    border-color: #f34d00;
    transition: all 0.5s ease 0s;
}

.badge-holder:hover .badge-title {
    background: #f34d00;
    transition: all 0.5s ease 0s;
    color: #fff;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #ffffff;
    clip-path: polygon(0% 0%, 100% 45px, 100% 100%, 0% 100%);
    margin-top: -49px;
}

.about-section > div {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    padding: 50px 0px;
    position: relative;
}

.about-images {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    max-width: 600px;
}

.about-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    position: relative;
    max-width: 325px;
}

.about-img::before {
    content: "";
    position: absolute;
    width: 272px;
    height: 235px;
    border: 3px solid #ff9800;
    top: -16px;
    left: 10px;
    z-index: 1;
    transform: skewX(12.5deg);
    transition: all 0.5s ease 0s;
}

.about-image {
    width: 320px;
    height: 214px;
    position: relative;
    z-index: 0;
    clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 15% 100%);
    transition: all 0.5s ease 0s;
}

.about-img:hover .about-image {
    transform: translateX(-3.5%);
    transition: all 0.5s ease 0s;
}

.about-img:hover::before {
    padding: 0px 10px;
    transition: all 0.5s ease 0s;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.about-content h2 {
    text-align: center;
    color: #044c07;
    margin: 0px;
}

.about-content h2 span {
    color: #f34d00;
}

.about-content p {
    text-align: justify;
}

.area-served {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 20px;
    margin-bottom: 20px;
    margin-top: 0px;
    width: 100%;
}

.area-served li {
    width: 100%;
}

.area-served-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 50px 0px;
}

.area-served-section > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1280px;
    flex-direction: column;
}

.features-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    flex-direction: column;
    clip-path: polygon(0% 0%, 100% 45px, 100% 100%, 0% 100%);
    margin-top: -27px;
    z-index: 2;
}

.features-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0px;
}

.features-content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #044c07e6;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}


.features-bg img.features-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block; 
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}


.features-content > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 90%;
    max-width: 640px;
    z-index: 2;
}

.features-content h2 {
    color: #ffffff;
    text-align: center;
    margin: 0px;
}

.features-content h2 span {
    color: #ff9800;
}

.features-content ul {
    text-align: justify;
    color: #ffffff;
    padding-left: 10px;
}

.features-content ul li strong {
    color: #ff9800;
}

.features-images {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(190deg, #ffffff 67%, #022102 67%);
}

.features-images::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff9800;
    top: 0px;
    z-index: 2;
    transform: skewY(9.5deg);
    max-width: 549px;
    max-height: 350px;
}

.features-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 640px;
    position: relative;
    right: 0px;
    margin-left: 25px;
}

.features-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: relative;
    z-index: 3;
    max-width: 525px;
    max-height: 350px;
    transition: all 0.5s ease 0s;
}

.features-img > img:hover {
    transform: scaleY(1.1);
    transition: all 0.5s ease 0s;
}

.services-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #022102;
    clip-path: polygon(0% 0%, 100% 45px, 100% 100%, 0% 100%);
    margin-top: -48px;
    z-index: 1;
}

.services-section > div {
    width: 90%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 70px 0px 50px;
}
.services-section > div > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.srvBlockTitle p {
    line-height: 1.2;
    font-weight: bold;
    font-family: Heebo, sans-serif;
    color: #000000;
    display: inline-block;
    font-size: 26px;
}

.srvBlockTitle {
    text-align: center;
    margin-top: 10px;
}

.srvBlockTitle h2 {
    margin: 0px;
    color: #ffffff;
}

.srvBlockTitle h2 span {
    color: #ff9800;
}

.srvBlock {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-flow: wrap;
}

.srvElement {
    margin: 50px auto 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
    max-width: 500px;
}

.srvElementHeader h2 {
    text-align: center;
    color: #ffffff;
    font-family: Heebo, sans-serif;
    padding: 5px;
    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;
}

.srvElementImg img {
    width: 100%;
    height: 50vw;
    object-fit: cover;
    object-position: center center;
}

.srvElementContent {
    text-align: justify;
    color: #ffffff;
    padding: 0px 20px 10px;
    line-height: 1.2;
}

.srvElementBody {
    background: #044c07;
    padding-top: 40px;
    clip-path: polygon(0% 0%, 100% 25px, 100% 100%, 0% 100%);
    position: relative;
    margin-top: -30px;
    overflow: hidden;
    transition: all 1s ease 0s;
}

.srvElement:hover .srvElementBody {
    text-shadow: #000000 0px 0px 5px;
}

.srvElementBody::before {
    content: "";
    position: absolute;
    height: 0%;
    width: 100%;
    bottom: 0px;
    background-color: #f34d00;
    z-index: -1;
    transition: all 1.5s ease 0s;
}

.srvElement:hover .srvElementBody::before {
    height: 160%;
}

.srvElementHeader {
    position: relative;
    bottom: 1px;
    padding: 5px;
    min-height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.srvElement:hover h2 {
    font-weight: bold;
}

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

.gallery-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #ffffff;
    margin-top: -48px;
    clip-path: polygon(0% 0%, 100% 45px, 100% 100%, 0% 100%);
    z-index: 2;
}

.gallery-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 50px 0px;
    z-index: 1;
    position: relative;
    max-width: 1280px;
}

.gallery-section .container > img {
    object-fit: contain;
    object-position: center center;
    position: absolute;
    width: 375px;
    height: 154px;
    z-index: 0;
    max-height: 155px;
    top: 0px;
    left: 0px;
    max-width: 380px;
}

.gallery-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0px;
    color: #044c07;
    text-align: center;
}

.lp-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0px auto;
}

.lp-gallery a {
    width: 47vw;
    height: 47vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: 5px;
    transition: all 1.5s ease 0s;
}

.lp-gallery a:hover {
    transform: scale(1.02);
}

.lp-gallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.lightboxOverlay, .lightbox {
    z-index: 999999 !important;
}

.after-gallery-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #044c07;
    padding: 20px 0px;
}

.after-gallery-section a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    position: relative;
    transition: color 0.2s ease;
}

.after-gallery-section a:hover {
    color: #ff9800;
}

.after-gallery-section a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #ff9800;
    transition: width 0.25s ease;
}

.after-gallery-section a:hover::after {
    width: 100%;
}

.testimonials-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 50px 0px 0px;
    position: relative;
}

.testimonials-section > picture {
    width: 100%;
    height: 41vw;
    max-height: 600px;
    position: absolute;
    top: 0px;
    z-index: -1;
}

.testimonials-section > picture img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center center;
    filter: opacity(0.9);
}

.testi-content.swiper-wrapper {
    margin-top: 7px;
}

#testimonials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    z-index: 2;
    position: relative;
}

.testimonial {
    position: relative;
    width: 100%;
    padding-top: 20px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial h2 {
    margin: 0px;
    color: #044c07;
    text-shadow: #ffffff 0px 0px 5px, #ffffff 0px 0px 5px;
}

.testimonial .image {
    height: 130px;
    width: 130px;
    position: relative;
    object-fit: cover;
    z-index: 1;
    background: linear-gradient(transparent 46%, #ff9800 46%);
    padding: 5px;
    transition: all 0.5s ease 0s;
}

.testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
    height: 100%;
    width: 100%;
}

.testimonial-content {
    background: #022102;
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    z-index: 0;
    bottom: 100px;
    height: auto;
    border: 5px solid #ff9800;
    transition: all 0.5s ease 0s;
}

.slide p {
    padding: 0px 60px;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    text-align: justify;
}

.slide .quote-icon {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 25px;
    margin-top: 15px;
}

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

.details .name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.slide .details img {
    width: 130px;
    height: 22px;
    margin-left: 10px;
    border-left: 3px solid #fff;
    padding-left: 10px;
}

.swiper-button-prev, .swiper-button-next {
    width: 0px !important;
}

.swiper-button-prev::after, .swiper-button-next::after {
    color: #ff9800;
    transition: all 0.5s ease 0s;
    font-size: 30px !important;
}

.nav-btn {
    border-radius: 50%;
    transform: translateY(30px);
    transition: all 0.2s ease 0s;
}

.nav-btn::after, .nav-btn::before {
    font-size: 20px;
}

.slide:hover .testimonial-content {
    border-color: #f34d00;
}

.slide:hover .image {
    background: linear-gradient(transparent 46%, #f34d00 46%);
}

.testimonial:hover .swiper-button-prev::after, .testimonial:hover .swiper-button-next::after {
    color: #f34d00;
    transition: all 0.5s ease 0s;
}

.contact-section {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

#contact {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #ffffff;
    padding: 30px 0px;
    box-shadow: #000000 0px 4px 10px inset;
    height: auto;
}

#contact > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 640px;
    position: relative;
    flex-direction: column;
}

#contact > div img {
    width: 240px;
    height: 135px;
}

#contact p {
    font-size: 28px;
    text-align: center;
    margin: 20px 0px;
    font-weight: 500;
}

#contact p a {
    color: #044c07;
    text-decoration: none;
    position: relative;
    transition: 0.2s ease;
}

#contact p a:hover {
    color: #ff9800;
}

#contact p a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #ff9800;
    transition: width 0.25s ease;
}

#contact p a:hover::after {
    width: 100%;
}

.contact-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    min-height: 585px;
}

.contact-form-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff9800d6;
    z-index: 1;
    box-shadow: #000000 0px 4px 10px inset;
}

.contact-form-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-form-bg img.contact-form-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center; 
    display: block; 
    top: 0;
    left: 0;
    z-index: 0;
}
.email-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    max-width: 640px;
    z-index: 2;
    padding: 30px 0px;
}

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

.email-form h2 {
    color: #ffffff;
    text-shadow: #000000 0px 0px 5px;
}

.contact-form {
    z-index: 2;
    position: relative;
    width: 100%;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
}

.email-form h3 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-shadow: #000000 0px 0px 5px;
    font-weight: 500;
}

.contact-form .form-row {
    margin-bottom: 30px;
    width: 100%;
    position: relative;
    display: flex;
}

.contact-form .form-row.submit-btn {
    width: auto;
    /* margin: 30px 0 0; */
}

.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"], .contact-form textarea {
    width: 100%;
    padding: 20px 10px 10px;
    border: none;
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
    box-shadow: #000000 0px 0px 10px 0px;
    background: #f34d0096;
}

.contact-form input:focus, .contact-form input:not(:placeholder-shown), .contact-form textarea:focus, .contact-form textarea:not(:placeholder-shown) {
    outline: 0px;
    background: #ffffff;
}

.contact-form textarea {
    resize: none;
}

.contact-form .form-row label {
    color: #ffffff;
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease 0s;
    padding: 0px 5px;
}

.contact-form .form-row-textarea label {
    color: #ffffff;
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 18%;
    transform: translateY(-50%);
    transition: all 0.3s ease 0s;
    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: #000000;
    padding: 2px 5px;
    background: #ffffff;
    font-size: 14px;
    box-shadow: #000000 0px 0px 10px 0px;
}

.contact-form input[type="text"]:focus, .contact-form input[type="tel"]:focus, .contact-form input[type="email"]:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #000000;
}

.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;
}

/* CAPTCHA */
.contact-form .form-row-captcha {
    width: calc(100% - 120px);
}
.checkbox-captcha {
    pointer-events: auto !important;
    position: relative !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-sizing: border-box;
    width: 100%;
    accent-color: #044c07 !important;
    padding: 10px 12px !important;
    font-size: 16px;
    box-shadow: #000000 0px 0px 10px 0px;
    background: #f34d0096;
    left: 0 !important;
    transform: unset !important;
}
.checkbox-captcha input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
}

/*--------------------------------------------------
    * Footer
--------------------------------------------------*/

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    background: #044c07;
    padding: 20px 0px;
}

footer > div {
    display: flex;
    width: 90%;
    max-width: 1280px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

#callnowbutton {
    display: none;
}
#booking-engin {
    position: fixed;
    left: -1px;
    z-index: 9999999;
    cursor: pointer;
    bottom: 10px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
#booking-engin .button-2 {
    color: #fff !important;
    border: none;
    font-weight: 500;
    clip-path: polygon(0% 0%, 91% 0%, 100% 100%, 0% 100%);
    background: #f34d00;
}

@media (min-width: 600px) {
    .top-decoration-element {
        width: 67%;
    }

    .headers-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }

    .area-served li {
        width: 50%;
    }

    .lp-gallery a {
        width: 31.3vw;
        height: 31.3vw;
    }
    .slider-text {
    max-width: unset;
}
    .about-image {
    width: 100%;
    height: auto;
}
    .about-img::before {
    width: 85%;
    height: 110%;
}
    .about-img {
    max-width: unset;
}
}

@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: #ffffff;
        text-decoration: none;
        border: none;
        transition: all 0.3s ease 0s;
        width: fit-content;
        height: fit-content;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    #callnowbutton a img {
        height: 32px;
        width: 21px;
    }
}

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

    .srvElementImg img {
        height: 200px;
    }

    .srvElementFullWidth .srvElementImg img {
        height: 100%;
    }

    .srvElementBody {
        height: 100%;
    }

    .srvElementContent {
        height: 100%;
    }

    .srvElementFullWidth .srvElementContent {
        height: auto;
    }

    .srvElement.srvElementFullWidth {
        width: 100%;
        max-width: 1280px;
        flex-direction: row;
    }

    .srvElementFullWidth .srvElementImg {
        width: 32%;
        margin: 0px;
    }

    .srvElementFullWidth .srvElementBody {
        width: 68%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 981px) {
    .lp-gallery a {
        max-width: 416px;
        max-height: 416px;
    }

    .hamburger {
        display: none;
    }

    nav {
        width: 95%;
        left: auto;
        max-width: 1280px;
    }

    nav > div {
        justify-content: center;
        flex-direction: row;
        margin-top: -10px;
    }

    .navigation {
        width: 20%;
        z-index: 1;
    }

    nav .menu {
        height: auto;
        flex-flow: wrap;
        justify-content: center;
        top: initial;
        left: initial;
        position: relative;
        width: 80%;
        align-items: center;
        background: #044c07;
        clip-path: polygon(0% 0%, 97% 0%, 100% 100%, 3% 100%);
        padding: 10px 20px;
        z-index: 2;
        transition: none 0s ease 0s;
    }

    nav .menu li {
        margin: 0px 10px;
        padding: 10px 0px;
        width: auto;
    }

    .brand {
        width: 140%;
        justify-content: center;
        padding: 10px 0px 10px 20px;
        margin-top: -55px;
        clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 9% 100%);
        margin-right: -60px;
        z-index: 1;
        /* padding: 10px; */
    }

    .brand a {
        justify-content: center;
    }

    .brand span {
        width: 60%;
        margin-left: 0;
    }

    nav.scrolled {
        width: 100%;
        max-width: none;
        background: linear-gradient(to right, #ffffff 32%, #044c07 32%);
        padding: 10px 0px;
    }

    nav.scrolled > div {
        margin-top: 0px;
        align-items: center;
        justify-content: space-between;
    }

    nav.scrolled .brand {
        clip-path: none;
        padding: 0 5px;
        height: 100%;
        margin: 0px;
        background: transparent;
    }

    nav.scrolled .brand a {
        width: 100%;
        justify-content: flex-start;
    }
    nav.scrolled .brand span {
        margin-left: calc(1vw + 40px);
        width: 100%;
    }

    nav.scrolled .navigation {
        width: 29%;
        margin: 0px;
    }
     nav.scrolled .menu {
        clip-path: none;
        width: 69%;
        margin: 0px;
        background: transparent;
        justify-content: flex-end;
    }

    .button-1 {
        background: #f34d00;
        border-color: #f34d00;
        text-shadow: #000000 0px 0px 5px;
        color: #ffffff !important;
    }

    .button-1:hover {
        background: #ff9800;
    }

    .button-2 {
        background: #ff9800;
        border-color: #ff9800;
        text-shadow: #000000 0px 0px 5px;
    }

    .button-2:hover {
        background: #f34d00;
        border-color: #f34d00;
        text-shadow: #000000 0px 0px 5px;
        color: #ffffff !important;
    }

    .slider-section {
        justify-content: center;
    }

    .about-section > div {
        flex-direction: row;
        justify-content: space-between;
    }

    .about-images {
        width: 49%;
    }

    .about-content {
        width: 49%;
    }

    .features-section {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }

    .features-content {
        justify-content: flex-end;
    }

    .features-content > div {
        margin-right: 20px;
    }

    .features-images {
        align-items: stretch;
        height: auto;
        background: linear-gradient(190deg, #ffffff 50%, #022102 50%);
        justify-content: flex-start;
    }

    .features-images::before {
        height: 61%;
        margin-top: 120px;
        max-width: 490px;
    }

    .features-img {
        align-items: stretch;
        height: auto;
    }

    .features-img > img {
        height: 63%;
        margin-top: 161px;
    }

    .testimonials-section {
        flex-direction: row;
    }

    .services-section {
        z-index: 2;
    }

    .srvBlock {
        justify-content: space-around;
    }

    .srvElement {
        width: 32%;
        display: flex;
        flex-direction: column;
        margin: 30px 0px 0px;
    }

    .contact-section {
        flex-direction: row;
    }

    #contact {
        width: 50%;
    }

    .contact-form-section {
        width: 50%;
    }
}
