body, html {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

html {
    scroll-padding-top: 100px;
}  

.container {
    max-width: 1080px;
    width: 95%;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

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

p, h1, h2, h3, h4, h5, h6 {
    padding: 5px 0px;
    margin: 5px 0px;
}

body {
    line-height: 1.2;
    background-color: rgb(255, 255, 255);
}

p, li {
    font-size: 16px;
    padding: 5px 0;
}

a.button {
    padding: 5px 20px;
    background: #356823;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    height: 25px;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease 0s;
    z-index: 2;
    margin: 0px 10px;
    color: rgb(255, 255, 255) !important;
}

a.button:hover {
    background: #5db73a;
    color: #000 !important;
}

nav {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    color: white;
    box-shadow: rgb(0, 0, 0) 0px 0px 10px;
    transition: all 0.2s ease 0s;
    background-size: contain;
    background-repeat: repeat;
    background-color: #edcd1f;
}

nav .brand {
    font-size: 1.5rem;
    width: 100%;
}

nav .brand a {
    color: #356823;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 700;
}

nav .brand a img {
    height: 100px;
}

nav .menu {
    display: flex;
    list-style: none;
    padding: 0px;
    align-items: center;
}

nav .menu li {
    margin-left: 12px;
    display: flex;
    justify-content: center;
}

nav .menu a {
    color: #356823;
    text-decoration: none;
    font-weight: 700;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 30px;
    color: #356823;
}

nav .menu {
    transition: transform 0.3s ease-in-out 0s;
}

header {
    position: relative;
    height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    flex-direction: column;
    padding: 10px;
    justify-content: flex-start;
    overflow: hidden;
}

@media (min-width: 769px) {
    header {
        height: calc(100vh - 170px);
    }
}

@media (min-width: 1125px) {
    header {
        height: calc(100vh - 140px);
    }
}

header img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -1;
}

header::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.63);
    z-index: 0;
}

header > div {
    z-index: 1;
    text-align: center;
    width: 90%;
    margin: 50px 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

header > div > div:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header h1 {
    font-size: 2.2em;
    text-shadow: rgb(0, 0, 0) 0px 0px 5px;
    z-index: 2;
    color: rgb(255, 255, 255);
}

header a {
    color: #edcd1f;
    font-weight: 700;
}

header a:hover {
    color: #5db73a;
}

header p {
    text-shadow: rgb(0, 0, 0) 0px 0px 5px;
    z-index: 2;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 600;
}

.header-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5px 0px;
    margin: 5px 0px;
}

section {
    max-width: 920px;
    width: 920px;
    padding: 30px 0;
}

.about-section {
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #356823;
}

.about-img-ul-holder {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

#background-div {
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#background-div-1 {
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #edcd1f;
    flex-direction: column;
}

#background-div ul {
    padding: 0px;
    text-align: justify;
}

#background-div strong {
    font-weight: 800;
    color: rgb(233, 97, 34);
}

#background-div-1 ul {
    padding: 0px;
    text-align: justify;
}

#background-div-1 strong {
    font-weight: 800;
    color: #356823;
}

.slogan {
    color: rgb(237 205 31);
    /* text-align: left; */
    z-index: 1;
    font-size: 24px;
    margin: 2px 0px;
    font-weight: 600;
    text-shadow: rgb(0, 0, 0) 0px 0px 5px;
    border-bottom: 3px solid rgb(237 205 31);
    border-left: 3px solid rgb(237 205 31);
    padding-left: 5px;
}

.about, .features {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-img {
    align-items: center;
    display: flex;
    justify-content: center;
}

.about img {
    max-width: 100%;
    height: auto;
    width: 450px;
}

@media (min-width: 769px) {
    .features-img-ul-holder {
    	display: flex;
    	flex-direction: row;
    	justify-content: space-between;
    	align-items: center;
    	margin: 20px 0;
    }

    .features-img-ul-holder ul {
        width: 48%;
        margin: 0;
    }

    .features-img-holder {
        width: 48%;
    }

    .features img {
    	max-width: 100%;
    	height: auto;
    	width: 450px;
    }
}
.features p {
    text-align: justify;
}

.features video {
    max-width: 50%;
    margin-left: 1.5rem;
}

.about .content, .features .content {
    font-size: 14px;
    text-align: left;
}

.about p {
    text-align: justify;
}

.about ul {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: center;
    padding-left: 12px;
}

.about ul li {
    width: 45%;
    margin: 5px;
}


.about .content .button {
    background-color: #edcd1f;
    color: #000 !important;
}

.about .content .button:hover {
    background-color: #5db73a;
}

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

.services {
    transition: all 0.2s ease 0s;
    text-align: center;
    margin: 20px 0px;
    color: #000;
}

.services > p {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.serviceBoxes {
    display: flex;
    flex-flow: wrap;
    place-content: center;
    align-items: center;
}

.serviceBox {
    color: rgb(255, 255, 255);
    font-family: Poppins, sans-serif;
    text-align: center;
    padding: 40px 15px 25px;
    position: relative;
    width: 40%;
    margin: 10px;
    height: 525px;
    background-color: #356823;
}

@media (max-width: 990.9px) {
    .serviceBox {
        height: 540px;
    }
}

@media (max-width: 850.9px) and (min-width: 768px) {
    .serviceBox {
        height: 580px;
    }
}

.serviceBox::before, .serviceBox::after {
    content: "";
    background: #8dcc75;
    width: 100%;
    height: 40px;
    position: absolute;
    top: 0px;
    left: 0px;
}

.serviceBox::after {
    background: #8dcc75;
    top: auto;
    bottom: 0px;
    height: 10px;
}

.serviceBox .title {
    color: #000;
    background: #5db73a;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 12px 9px;
    margin: -10px 0px 18px;
    display: inline-block;
    position: relative;
    height: 65px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.serviceBox .title::before, .serviceBox .title::after {
    content: "";
    background: linear-gradient(to left top, #4a922e 49%, transparent 50%);
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0px;
    left: -10px;
}

.serviceBox .title::after {
    transform: rotateY(180deg);
    left: auto;
    right: -10px;
}

.serviceBox .service-icon {
    color: rgb(243, 107, 35);
    font-size: 50px;
    line-height: 50px;
    margin: 0px;
}

.service-icon img {
    width: 100%;
    height: 250px;
}

.serviceBox .description {
    color: rgb(255, 255, 255);
    margin: 0px;
    text-align: justify;
    font-weight: 600;
}

.serviceBox.blue::before {
    background: rgba(72, 67, 73, 0.65) !important;
}

.serviceBox.blue::after, .serviceBox.blue .title {
    background: rgb(72, 67, 73) !important;
}

.serviceBox.blue .title::before, .serviceBox.blue .title::after {
    background: linear-gradient(to left top, rgb(50, 46, 51) 49%, transparent 50%);
}

.serviceBox.blue .service-icon {
    color: rgb(198, 66, 146);
}

.serviceBox.cgreen::before {
    background: linear-gradient(rgb(45, 161, 151), rgb(75, 184, 173));
}

.serviceBox.cgreen::after, .serviceBox.cgreen .title {
    background: rgb(45, 161, 151);
}

.serviceBox.cgreen .title::before, .serviceBox.cgreen .title::after {
    background: linear-gradient(to left top, rgb(27, 129, 123) 49%, transparent 50%);
}

.serviceBox.cgreen .service-icon {
    color: rgb(45, 161, 151);
}

.serviceBox.green::before {
    background: linear-gradient(rgb(130, 193, 69), rgb(177, 210, 63));
}

.serviceBox.green::after, .serviceBox.green .title {
    background: rgb(130, 193, 69);
}

.serviceBox.green .title::before, .serviceBox.green .title::after {
    background: linear-gradient(to left top, rgb(65, 161, 51) 49%, transparent 50%);
}

.serviceBox.green .service-icon {
    color: rgb(130, 193, 69);
}

@media (max-width: 767.9px) {
    .serviceBoxes {
        flex-direction: column;
    }

    .serviceBox {
        width: 90%;
        height: auto;
    }

    .service-icon img {
        height: auto;
    }

    .serviceBox .title {
        height: auto;
    }
}

.gallery-section h2 {
    font-size: 32px;
    font-weight: 700;
    /* margin: 0px 0px 20px; */
    color: rgb(34, 34, 34);
    text-align: center;
}

.gallery-section {
    padding: 0px;
    display: flex;
    justify-content: center;
}

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

.lp-gallery a {
    width: 43.5vw;
    height: 43.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

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

.gallery-before-after {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    width: 100%;
}

.gallery-before-after a {
    width: 100%;
    margin: 5px;
}

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

@media (min-width: 981px) {
    .lp-gallery a {
        width: calc(28.3333vw);
        max-width: 350px;
        height: calc(28.3333vw);
        max-height: 350px;
    }
    .gallery-before-after a {
        width: 48%;
    }
    .about ul li {
        width: 29%;
    }
}

.testimonials-background {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-background h2 {
    color: #000;
}

.testimonial {
    position: relative;
    max-width: 900px;
    width: 100%;
    padding-top: 50px;
    overflow: hidden;
    text-align: center;
}

.testimonial .image {
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    z-index: 1;
}

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

.testimonial .slide > div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #356823;
    padding-top: 95px;
    padding-bottom: 20px;
    position: relative;
    bottom: 105px;
    z-index: 0;
    margin-bottom: -95px;
}

.slide p {
    padding: 0px 160px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    text-align: justify;
}

.slide .quote-icon {
    font-size: 30px;
    color: #edcd1f;
}

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

.slide .details img {
    width: 130px;
    margin-left: 10px;
}

.details .name {
    font-size: 18px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    /* border-right: 3px solid rgb(255, 255, 255); */
    /* padding-right: 10px; */
}

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

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.nav-btn::after, .nav-btn::before {
    font-size: 20px;
    color: rgb(255, 255, 255);
}

.swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.8);
}

.swiper-pagination-bullet-active {
    background-color: rgb(64, 112, 244);
}

@media screen and (max-width: 768px) {
}

.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}

.contact {
    display: flex;
    align-items: center;
    padding: 5px 0px;
    flex-flow: column wrap;
    background: rgb(255, 255, 255);
}

.contact p {
    text-align: justify;
}

footer {
    color: #000;
    text-align: center;
    width: 100%;
    padding-block: 1rem;
    background-color: #edcd1f;
}

@media (max-width: 768.9px) {
    nav .brand {
        width: 80%;
        text-wrap: wrap;
    }
}

@media (max-width: 1024px) {
    .services .card {
        flex: 1 1 45%;
    }

    section {
        padding: 2rem;
        max-width: 1080px;
        width: auto;
        margin-left: 0px;
        transform: none;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 100px;
    }

    .hamburger {
        display: block;
        width: 15%;
        z-index: 10;
    }

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

    nav {
        position: fixed;
        width: 100vw;
        padding: 20px;
        top: 0px;
        flex-direction: column;
        height: 50px;
        z-index: 999;
        justify-content: center;
        align-items: center;
    }

    nav > div {
        width: 100%;
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
        align-items: center;
    }

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

    nav .menu.active {
        top: -1rem;
        left: 0px;
    }

    nav .menu li {
        margin: 0px;
        text-align: center;
        padding: 1rem 0px;
    }

    header {
        margin-top: 40px;
        max-height: 655px;
    }

    .about {
        flex-direction: column-reverse;
    }

    .features {
        flex-direction: column;
    }

    .features video {
        margin-left: 0px;
    }
    
    .about-img-ul-holder {
        display: flex;
        flex-direction: column;
    }
    .about img, .features img {
    }

    .about .content, .features .content {
        max-width: 100%;
        margin-bottom: 20px;
        /* padding: 0px 30px; */
    }

    .features img {
        max-width: 90%;
    }

    .features video {
        max-width: 100%;
        width: 80%;
    }

    .services .card {
        flex: 1 1 100%;
        margin: 10px 0px;
    }

    .testimonial {
        width: 100%;
    }

    .slide p {
        padding: 0px 50px;
    }

    .nav-btn {
        display: none !important;
    }
}

@media (min-width: 810px) {
    nav .brand a {
        text-wrap: nowrap;
    }
}

.contact h2 {
    text-align: center;
}

.contact a {
    color: #356823;
}

.contact a:hover {
    color: #5db73a;
}

#callnowbutton {
    display: none;
}

@media screen and (max-width: 650px) {
    #callnowbutton {
        position: fixed;
        right: 10px;
        padding: 10px 20px;
        z-index: 9999;
        cursor: pointer;
        bottom: 10px;
        display: inline-block;
        background-color: rgb(129, 215, 66);
        color: rgb(255, 255, 255);
        border-radius: 4px;
        text-decoration: none;
        border: none;
        transition: all 0.3s ease 0s;
    }

    #callnowbutton a img {
        height: 2em;
    }
}

.socials {
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials a {
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    background: rgb(233, 97, 34);
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.2s ease 0s;
    margin: 0px 10px;
}

.socials a:hover {
    background: rgb(72, 67, 73);
    color: rgb(255, 255, 255);
}

.socials a img {
    width: 20px;
    height: auto;
    filter: invert(1);
}

.socials a:hover i {
    color: rgb(255, 255, 255);
}

.swiper-button-next, .swiper-rtl .swiper-button-prev, .swiper-button-prev, .swiper-rtl .swiper-button-next {
    width: 40px;
}

@media (max-width: 1124.9px) and (min-width: 769px) {
    nav {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 500.9px) {
    .serviceBox {
        height: fit-content;
    }
}

nav.fixed-nav {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1000;
    box-shadow: rgb(0, 0, 0) 0px 2px 10px;
    animation: 0.3s ease 0s 1 normal none running slideDown;
    box-sizing: border-box;
}

.swiper-button-next.nav-btn, .swiper-button-prev.nav-btn {
    display: block !important;
    top: 50% !important;
}

.swiper-button-next.nav-btn:hover, .swiper-button-prev.nav-btn:hover {
    background: transparent !important;
}

.swiper-button-prev::after, .swiper-button-next::after {
    color: #edcd1f;
    font-size: 35px !important;
}

.swiper-button-prev {
    left: -11px !important;
    width: 0px !important;
}

.swiper-button-next {
    right: 4px !important;
    width: 0px !important;
}

@media (min-width: 769px) {
    .swiper-button-prev::after, .swiper-button-next::after {
        font-size: 45px !important;
    }

    .swiper-button-prev {
        left: 10px !important;
        width: 50px !important;
    }

    .swiper-button-next {
        right: 10px !important;
        width: 50px !important;
    }
    
    .about-img {
        width: 48%;
    }

    .about ul {
        width: 48%;
    }
}

@media (min-width: 769px) and (max-width: 1124.9px) {
    html {
        scroll-padding-top: 120px;
    }
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
}

.badge-holder {
    background: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(50% - 10px);
    max-width: 160px;
    padding: 5px 5px 22px;
    position: relative;
    bottom: 50px;
    margin: 20px 10px;
    box-shadow: rgba(0, 0, 0, 0.29) 0px 14px 15px 0px;
    text-shadow: rgba(0, 0, 0, 0.04) 0px 15px 15px;
}

p.badge-content {
    color: rgb(0, 0, 0);
    text-align: center;
    line-height: 1.2;
    text-transform: capitalize;
    font-size: 18px;
    min-height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: none;
}

.badge-holder img {
    width: 70%;
    opacity: 0.5;
}

.badge-title {
    background: rgb(233, 97, 34);
    font-size: 15px;
    width: 85%;
    text-align: center;
    line-height: 1.2;
    padding: 5px;
    position: absolute;
    bottom: -15px;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 15px 15px 0px;
    text-shadow: rgba(0, 0, 0, 0.38) 0px 15px 15px;
    color: rgb(255, 255, 255);
}

.badge-title span {
    font-weight: 700;
    font-size: 18px;
}


.hr {
    background: #edcd1f;
    height: 10px;
    width: 116px;
    margin: 0px auto 20px;
}

@media (max-width: 768.9px) {
    .about .content, .features .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .about h2, .features h2 {
        text-align: center;
    }
    .about ul li {
        width: 29%;
    }
}

@media (max-width: 499.9px) {
    .about ul li {
        width: 45%;
    }
}