body {
    color: #000;
    font-family: Mulish, Poppins, Arial, Helvetica, sans-serif;
    margin: 0px;
    font-size: 16px;
    line-height: 1.4;
    background: #ffffff;
}

html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

@media (min-width: 769px) {
    html {
        scroll-padding-top: 150px;
   }
}
@media (min-width: 992px) {
    html {
        scroll-padding-top: 170px;
   }
}
@media (min-width: 1154px) {
    html {
        scroll-padding-top: 100px;
   }
}

.container {
    max-width: 1280px;
    width: 90%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

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

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

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

h1, h2, h3, h4 {
    font-family: none;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
}

h1 {
    font-size: 25px;
    font-family: "Libre Franklin", serif;
    margin: 0px;
    position: relative;
    color: #ffffff;
    font-weight: 800;
    text-align: left;
    filter: drop-shadow(1px 1px 2px #1c4645);
    text-shadow: 1px 1px 5px #1c4645 !important;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    margin: 0 0 20px 0;
    color: #2a3a37;
    font-family: "Libre Franklin", serif;
}

h3 {
    font-size: 22px;
}

* {
    box-sizing: border-box;
}

p {
    text-align: justify;
}


/* Navigation */

header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 99;
    overflow: hidden;
}

nav {
    display: flex;
    position: fixed;
    width: 100%;
    top: 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease 0s;
    padding: 10px;
    z-index: 9999;
}

nav.scrolled {
    position: fixed;
    top: 0px;
    margin: 0px;
    animation: 0.3s ease 0s 1 normal none running slideDown;
    background: #1c4645;
    box-shadow: 0 0 10px #000;
}

.navigation {
    width: 100%;
    display: flex;
    align-items: center;
    max-width: 1280px;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}


/* Logo */

.brand-container {
    width: 80%;
    align-self: flex-start;
}

.brand {
    display: flex;
    align-items: center;
    position: relative;
}

.brand span {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    position: relative;
    align-content: center;
    line-height: 1.2;
    font-family: "Libre Franklin", serif;
}

.brand a {
    display: flex;
    text-decoration: none;
    top: 0;
    position: relative;
    align-items: center;
    max-width: 285px;
}

.brand img {
    height: 50px;
    width: 56px;
    margin: 0 10px 0 0;
}


/* Menu */

#burger{
    position: fixed;
    right: 0px;
    top: 0px;
    color: white;
    background: linear-gradient(45deg, #2a3a37 10% 10%, #1f5150);
    border-radius: 0% 0% 0% 100%;
    transition: 0.8s;
    cursor: pointer;
    padding: 22px 10px 15px 25px;
}

#burger img {
    width: 35px;
    transition: opacity 0.3s ease;
    opacity: 1;
}

#quit{
    position: fixed;
    top: 18px;
    right: 11px;
    color: white;
    padding: 20px;
    display: none;
    cursor: pointer;
}

#quit img {
    width: 23px;
    -webkit-animation: slide-in-blurred-tr 1s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.4s both;
    animation: slide-in-blurred-tr 2s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.4s both;
}

#burger img.hide {
  opacity: 0;
  pointer-events: none;
}

#quit.show {
  display: inline;
}

#links {
    display: none;
    flex-direction: column;
    width: 100vw;
    padding: 12vh 0;
    align-items: center;
    -webkit-animation: slide-in-blurred-tr 1s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.4s both;
    animation: slide-in-blurred-tr 1.5s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.4s both;
    position: relative;
}

#links a {
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    margin: 12px 9px;
}

#links a.button {
    margin: 0;
}

@-webkit-keyframes slide-in-blurred-tr {
  0% {
    -webkit-transform: translate(1000px, -1000px) skew(-80deg, -10deg);
            transform: translate(1000px, -1000px) skew(-80deg, -10deg);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-filter: blur(40px);
            filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0) skew(0deg, 0deg);
            transform: translate(0, 0) skew(0deg, 0deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}

@keyframes slide-in-blurred-tr {
  0% {
    -webkit-transform: translate(1000px, -1000px) skew(-80deg, -10deg);
            transform: translate(1000px, -1000px) skew(-80deg, -10deg);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-filter: blur(40px);
            filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0) skew(0deg, 0deg);
            transform: translate(0, 0) skew(0deg, 0deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}


/* Button Stars */

.star-1, .star-2, .star-3, .star-4, .star-5, .star-6 {
    position: absolute;
    color: #fffdef;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
    opacity: 0;
}

.star-1 { 
    top: 20%; 
    left: 20%; 
    font-size: 25px;
}
.star-2 {
    top: 45%;
    left: 45%;
    font-size: 12px;
}
.star-3 {
    top: 40%;
    left: 40%;
    font-size: 17px;
}
.star-4 {
    top: 20%;
    left: 40%;
    font-size: 10px;
}
.star-5 {
    top: 25%;
    left: 45%;
    font-size: 13px;
}
.star-6 {
    top: 5%;
    left: 50%;
    font-size: 21px;
}

/* Call Button */

.button, .consultation-button, .submit-button {
    position: relative;
    padding: 8px 20px;
    background: #edbc33;
    font-size: 17px;
    font-weight: 500;
    color: #000000 !important;
    border: 2.5px solid #edbc33;
    border-radius: 20px;
    box-shadow: 0 0 0 #edbc338c;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.button:hover, .consultation-button:hover, .submit-button:hover {
    background: #1f5150;
    color: #ffffff !important;
    box-shadow: 0 0 25px #edbc338c;
}

.button:hover .star-1 {top: -55%;left: -10%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2; opacity: 1;}
.button:hover .star-2 {top: -50%;left: 15%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2; opacity: 1;}
.button:hover .star-3 {top: 65%;left: 30%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2;opacity: 1;}
.button:hover .star-4 {top: 10%;left: 85%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2;opacity: 1;}
.button:hover .star-5 {top: 40%;left: 102%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2; opacity: 1;}
.button:hover .star-6 {top: -35%;left: 60%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2;opacity: 1;}

.consultation-button:hover .star-1 {top: 54%;left: 40%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2;opacity: 1;}
.consultation-button:hover .star-2 {top: -8%;left: 84%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2;opacity: 1;}
.consultation-button:hover .star-3 {top: -20%;left: 30%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2;opacity: 1;}
.consultation-button:hover .star-4 {top: 65%;left: 90%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2; opacity: 1;}
.consultation-button:hover .star-5 {top: 20%;left: 1%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2;opacity: 1;}
.consultation-button:hover .star-6 {top: -27%;left: 60%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2;opacity: 1;}

.submit-button:hover .star-1 {top: -55%;left: -10%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2; opacity: 1;}
.submit-button:hover .star-2 {top: -50%;left: 15%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2; opacity: 1;}
.submit-button:hover .star-3 {top: 65%;left: 30%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2;opacity: 1;}
.submit-button:hover .star-4 {top: 20%;left: 85%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2; opacity: 1;}
.submit-button:hover .star-5 {top: 40%;left: 102%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2; opacity: 1;}
.submit-button:hover .star-6 {top: -40%;left: 60%;filter: drop-shadow(0 0 10px #fffdef);z-index: 2;opacity: 1;}


/* Header */

.slider-section {
    width: 100%;
    position: relative;
    display: flex;
    height: 93vh;
    max-height: 550px;
    justify-content: center;
    align-items: center;
    background-color: #1c4645;
    filter: drop-shadow(0px 15px 0px #1C464560) drop-shadow(0px 15px 0px #1C464560);
    z-index: 2;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.slider-row {
    width: 90%;
    position: relative;
    max-width: 1280px;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: flex-start;
    z-index: 11;
}

.slider-text {
    width: 70%;
    max-width: 237px;
}

.slider-star-container::before {
    background: #255350;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: -1;
}

.slider-star-container .star-1, .slider-star-container .star-2, .slider-star-container .star-3, .slider-star-container .star-4, .slider-star-container .star-5, .slider-star-container .star-6 {
    opacity: 1;
    color: #edbc33;
}
.slider-star-container .star-1 {
    top: 40%;
    left: 75%;
    font-size: 30px;
}
.slider-star-container .star-2 {
    top: 19%;
    left: 68%;
}
.slider-star-container .star-3 {
    top: 28%;
    left: 79%;
}
.slider-star-container .star-4 {
    top: 17%;
    left: 61%;
}
.slider-star-container .star-5 {
    top: 23%;
    left: 75%;
}
.slider-star-container .star-6 {
    top: 34%;
    left: 80%;
}

.slider-avatar-holder {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: right;
    z-index: 10;
    pointer-events: none;
}

/* Avatar image */
.slider-avatar-holder > picture {
    width: 70%;
    max-width: 340px;
    height: auto;
    line-height: 0;
    position: relative;
    bottom: 0;
    right: -70px;
    pointer-events: auto;
    z-index: 0;
}

.slider-avatar-holder > picture img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: contain;
    filter: brightness(95%);
}

.slider-content {
    position: relative;
    z-index: 3;
    text-align: center;
}
.slider-text p a {
    color: #edbc33;
    /* filter: drop-shadow(1px 1px 5px #111); */
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: color 0.2s ease;
}
.slider-text p a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}
.slider-text p a:hover {
    color: #fff;
}
.slider-text p a:hover::after {
    transform: translateX(-50%) scaleX(1);
}
.slider-text p {
    margin: 20px 0px 5px;
    position: relative;
    font-weight: 500;
    color: #fff;
    border-left: 2px solid #fff;
    padding-left: 10px;
    font-size: 14px;
    filter: drop-shadow(1px 1px 2px #1c4645 );
    text-shadow: 1px 1px 5px #1c4645 !important;
}
.header-buttons {
    display: flex;
    flex-direction: column;
    margin: 20px 0 0;
    align-items: flex-start;
}
.header-buttons .consultation-button {
    padding: 3px 11px;
    font-size: 16px;
}
.header-buttons .consultation-button img {
    height: 31px;
    margin-right: 5px;
    filter: invert(1);
}
.header-buttons .consultation-button:hover img {
    filter: invert(0);
}
.header-buttons a.consultation-button {
    margin-bottom: 15px;
}
.header-buttons a.button {
    padding: 3px 11px;
    font-size: 16px;
}
.header-buttons a.button img {
    height: 31px;
    width: 31px;
    margin-right: 5px;
    filter: invert(1);
}
.header-buttons a.button:hover img {
    filter: invert(0);
}

.header-scroll-holder {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0px 15px 0px #1C464560) drop-shadow(0px 15px 0px #1C464560);
    margin-bottom: 40px;
    z-index: 5;
}
.header-scroll-background {
    position: relative;
    height: 50px;
}
.header-scroll-background path {
    fill: #1c4645;
}

/* Scroll Button */
.scroll-down {
    position: absolute;
    padding: 15px;
    top: -15px;
    z-index: 10;
}
.scroll-down img {
    height: 20px;
    width: 18px;
    transform: rotate(0deg);
    animation: 2s ease 1s infinite normal none running scroll-down-btn;
    left: calc(100%);
}
@-webkit-keyframes scroll-down-btn {
    0% {
        transform: rotate(0deg) translate(0px, 0px);
        opacity: 0;
   }
    50% {
        opacity: 1;
   }
    100% {
        transform: rotate(0deg) translate(0px, 20px);
        opacity: 0;
   }
}
@keyframes scroll-down-btn {
    0% {
        transform: rotate(0deg) translate(0px, 0px);
        opacity: 0;
   }
    50% {
        opacity: 1;
   }
    100% {
        transform: rotate(0deg) translate(0px, 20px);
        opacity: 0;
   }
}

/* Badges */
.badges-section {
    display: flex;
    justify-content: center;
    background: #fff;
}
.about-holder {
    display: flex;
}
.badges-container {
    display: flex;
    flex-flow: wrap;
    justify-content: space-evenly;
    padding: 60px 0;
    align-items: center;
    width: 90%;
    position: relative;
    max-width: 1280px;
    gap: 35px 17px;
}
.badges-container > a {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    gap: 35px 17px;
}

.badge-holder {
    width: 160px;
    height: 200px;
    min-height: fit-content;
    padding: 20px 16px;
    position: relative;
    transition: .15s linear;
    border-radius: 20px;
    z-index: 0;
    background: #fff;
    box-shadow: 0px 10px 30px #0000001a;
}
.badge-holder::before, .badge-holder::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 45%;
    z-index: -1;
}
.badge-holder::before {
    bottom: -4px;
    left: -5px;
    border-bottom: 4px solid #1c4645;
    border-left: 4px solid #1c4645;
    border-radius: 5px 25px 5px 25px;
    box-shadow: #336b6a38 -3px 3px 0px 0px;
}
.badge-holder::after {
    top: -5px;
    right: -4px;
    border-top: 4px solid #1c4645;
    border-right: 4px solid #1c4645;
    border-radius: 5px 25px 5px 25px;
    box-shadow: #336b6a38 3px -3px 0px 0px;
}

p.badge-title {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 18px;
    margin: 0 0 10px;
    color: #000000;
    text-align: left;
    font-family: "Libre Franklin", serif;
    height: 45px;
    align-content: center;
    line-height: 1.2;
}
p.badge-content {
    text-align: left;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 18px;
    font-size: 16px;
    margin: 0;
    color: #666060;
}
.badge-holder .img-holder {
    background: #336b6a;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    margin: 0 0 15px;
    width: 55px;
    height: 55px;
    box-shadow: #336b6a38 4px 4px 0px 0px;
}
.badge-holder img {
    width: 39px;
    height: 55px;
    object-fit: contain;
}

/* About */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    background-blend-mode: overlay;
    padding: 0px 0 60px;
}
.about-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1280px;
    flex-direction: column;
}
.about-content-img-area-served-holder {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.about-avatar {
    margin: 0 0 15px 0;
    position: relative;
    display: flex;
    justify-content: center;
}
.about-avatar img {
    width: 250px;
    height: 365px;
}
.about-section .slider-star-container .star-1 {
    top: 85%;
    left: 95%;
    font-size: 30px;
}
.about-section .slider-star-container .star-2 {
    top: 20%;
    left: 100%;
    font-size: 25px;
}
.about-section .slider-star-container .star-3 {
    top: 45%;
    left: 105%;
    font-size: 30px;
}
.about-section .slider-star-container .star-4 {
    top: 5%;
    left: 0%;
    font-size: 20px;
}
.about-section .slider-star-container .star-5 {
    top: 35%;
    left: -15%;
    font-size: 35px;
}
.about-section .slider-star-container .star-6 {
    top: 70%;
    left: -10%;
    font-size: 30px;
}

.about-content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-content-section p {
    margin: 0 0 10px;
}
.about-content {
    display: flex;
    flex-direction: row;
    font-weight: 500;
    color: #000000;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
}
.area-served-section p {
    font-size: 24px;
    text-align: center;
    margin: 0 0  20px 0;
}
.area-served {
    display: flex;
    flex-flow: wrap;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
    list-style-position: inside;
    margin: 0 0 15px;
    width: 100%;
}
.area-served li {
    width: 100%;
    text-align: left;
}
.area-served li::marker {
    content: "\2726";
}
#about a.button {
    text-shadow: none;
}
.about-img {
    width: 320px;
    height: 300px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
img.about-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}


/* Features */
.features-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 60px 0;
    background: #1c4645;
}
.features-section > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1280px;
    align-items: center;
}
.features img {
    max-width: 100%;
    height: 100%;
    width: 600px;
}
.features-img {
    width: 320px;
    height: 300px;
    position: relative;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
img.features-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
}
.features-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    min-height: fit-content;
}
.features-section ul li {
    text-align: justify;
    padding: 15px;
    margin: 20px 15px;
    position: relative;
    background: #1f5150;
    border-radius: 10px;
    max-width: 250px;
}
.features-section ul li strong {
    margin: 10px 0;
    font-weight: 800;
    text-align: left;
    font-size: 17px;
    line-height: 1.3;
}
.features-section ul li p {
    margin: 0;
}
.features-section ul li::marker {
    
list-style: unset;
}
.features-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    width: 90%;
    align-items: center;
}
.features-content ul li img {
    width: 42px;
    height: 60px;
    object-fit: contain;
}
.features-content .img-holder {
    background: #336b6a;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    margin: 0 0 15px;
    width: 60px;
    height: 60px;
}
.features-content h2 {
    color: #ffffff;
}
.features-content h2 span {
    color: #ffffff;
}

/* Gallery */
.gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0px 0 60px;
}
.gallery-container > div {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    align-items: center;
    width: 90%;
    justify-content: center;
}
.gallery-section h2 {
    margin: 30px 0 20px;
    color: #2a3a37;
}
.gallery-section h2 span {
    color: #2a3a37;
}

/* Gallery Swiper */
.GallerySwiper {
    width: 300px;
    z-index: 0 !important;
}
.GallerySwiper .swiper-slide {
    background-position: center;
    background-size: cover;
}
.GallerySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
}
.GallerySwiper .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal.swiper-pagination-clickable {
    bottom: -40px;
}
.GallerySwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

/* Gallery Swiper 2 */
.GalleryThumbs {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0px;
    margin-top: 60px;
}
.GalleryThumbs .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: center center / cover transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    width: 25%;
    height: 100%;
    opacity: 0.4;
}
.GalleryThumbs .swiper-slide-thumb-active {
    opacity: 1;
}
.GalleryThumbs .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    max-width: 600px;
    max-height: 400px;
    cursor: pointer;
}


/* Contact Form */
.contact-form-section {
    display: flex;
    position: relative;
    justify-self: center;
    overflow: hidden;
    padding: 60px 0px;
    justify-items: center;
    background: #1c4645;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.email-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    max-width: 430px;
    z-index: 0;
    align-items: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 30px;
    position: relative;
}
.email-form::before, .email-form::after {
    content: '';
    position: absolute;
    width: 35%;
    height: 35%;
    z-index: -1;
    border-radius: 10px 40px 10px 40px;
}
.email-form::before {
    bottom: -8px;
    left: -8px;
    box-shadow: #edbc3338 -4px 4px 0px 0px;
    border-bottom: 10px solid #edbc33;
    border-left: 10px solid #edbc33;
}
.email-form::after {
    top: -8px;
    right: -8px;
    box-shadow: #edbc3338 4px -4px 0px 0px;
    border-top: 8px solid #edbc33;
    border-right: 8px solid #edbc33;
}
.contact-form {
    z-index: 0;
    position: relative;
    width: 100%;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: space-between;
}

.form-first-row {
    width: 100%;
    margin: 15px 0px 0;
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.contact-form input[type="text"], .contact-form input[type="tel"] {
    width: 49% !important;
}

.contact-form .form-row {
    margin: 15px 0px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"], .contact-form textarea[type="message"] {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: 2px solid #ffffff2e;
    color: #ffffff;
    background: #336b6a;
    font-family: unset;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #ffffffc4;
}

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

.contact-form textarea[type="message"] {
    resize: none;
}

.email-form:target .submit-button {
    animation: bounce-in-bottom 1.5s both;
}

.contact-form .form-row.submit-btn {
    width: auto;
}

/* CAPTCHA */
.contact-form .form-row-captcha {
    width: calc(100% - 110px);
}
.checkbox-captcha {
    pointer-events: auto !important;
    display: flex !important;
    position: relative !important;
    align-items: center;
    gap: 10px;
    width: 100%;
    cursor: pointer;
    color: #ffffff;
    box-sizing: border-box;
    border: 2px solid #ffffff2e;
    background: #336b6a;
    accent-color: #edbc33 !important;
    padding: 8px 12px !important;
    border-radius: 20px;
    font-size: 14px;
    left: 0 !important;
    top: 0 !important;
    transform: unset !important;
}
.checkbox-captcha input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
}


/* Services */
.services-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    position: relative;
}
.services-section > div {
    width: 90%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.services-section > div > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
}
.srvBlockTitle {
    text-align: center;
}

.srvBlockTitle h2 span {
    color: #2a3a37;
}

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

.srvElement {
    margin: 20px 10px;
    border-radius: 25px;
    display: flex;
    width: 300px;
    position: relative;
    background: #ffffff00;
    box-shadow: 0px 10px 30px #0000001a;
}

.srvElementBody {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 21px;
}

.srvElementHeader h2 {
    text-align: center;
    color: #000000;
    margin: 15px 0;
    font-size: 24px;
    min-height: 65px;
    align-content: center;
}

.srvElementImg {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.srvElementImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 15px;
}

.srvElementContent {
    text-align: justify;
    color: #666666;
}
.srvElementContent p {
    margin: 0;
}

.srvElement::before, .srvElement::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 20%;
    z-index: -1;
    border-radius: 5px 25px 5px 25px;
}

.srvElement::before {
    bottom: -6px;
    left: -6px;
    box-shadow: #336b6a38 -4px 4px 0px 0px;
    border-bottom: 10px solid #1c4645;
    border-left: 10px solid #1c4645;
}

.srvElement::after {
    top: -6px;
    right: -6px;
    box-shadow: #336b6a38 4px -4px 0px 0px;
    border-top: 10px solid #1c4645;
    border-right: 10px solid #1c4645;
}


/* Testimonials */
.testimonials-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

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

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

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

div#testimonials h2 span {
    color: #2a3a37;
}

div#testimonials h2 {
    color: #2a3a37;
}

.testimonials-avatar img {
    width: 250px;
    height: 360px;
}

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

.testimonial-content {
    position: relative;
    height: fit-content;
    margin: 0 2px;
    width: 100%;
    overflow: hidden;
    justify-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.slide p {
    padding: 0px 50px;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    text-align: justify;
    margin: 15px 0;
}

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

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

.slide .details img {
    width: 105px;
    height: 17px;
    margin-left: 10px;
    position: relative;
    border-radius: 0;
    border-left: 3px solid #336b6a;
    padding-left: 10px;
}

.testimonials-swiper-btns-holder {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
}

.swiper-button-prev, .swiper-button-next {
    top: 0% !important;
    left: 0% !important;
    position: relative !important;
}

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

.swiper-button-prev {
    left: 5px !important;
}

.swiper-button-prev::after, .swiper-button-next::after {
    color: #2a3a37;
    font-size: 22px !important;
}

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

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

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

/* Contact */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px 0px 60px;
}

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

.contact-section p {
    font-weight: 500;
    font-size: 24px;
    margin: 0;
}

.contact-section a {
    color: #B88A00;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.contact-section a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background: #1f5150;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.contact-section a:hover {
    color: #1f5150;
}

.contact-section a:hover::after {
    transform: translateX(-50%) scaleX(1);
}


/* Footer */
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    background: #1c4645;
    box-shadow: #000000 0px -2px 5px;
}
footer p {
    text-align: center;
    font-size: 17px;
    line-height: 1.3;
    width: 70%;
}
footer > div {
    display: flex;
    width: 100%;
    max-width: 1280px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 30px 0px;
    justify-items: center;
}
 footer a.consultation-button {
    bottom: 10px;
    left: 0px;
    position: fixed;
    z-index: 999;
    border-left: none;
    border-radius: 0 20px 20px 0;
}

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



/* Tablet */
@media (min-width: 600px) {
    
    h1 {
        font-size: 35px;
   }
    
    h2 {
        font-size: 30px;
   }
    
    h3 {
        font-size: 24px;
   }
 
.brand a{
    max-width: unset;
}
    .slider-text {
        max-width: unset;
    }
    
    /* Navigation */
    .brand-container {
        width: 100%;
    }
    
    /* Header */
    .slider-text {
        width: 60%;
    }
    
    .slider-avatar-holder > picture {
        width: 60%;
        max-width: 400px;
    }
    
    .slider-text p {
        font-size: 18px;
    }
    
    .header-buttons {
        flex-direction: row;
        justify-content: flex-start;
   }
    
    .header-buttons a.consultation-button {
        margin: 0px 20px 0px 0px;
   }
    
    .header-buttons::before {
        bottom: -33px;
   }
    
    .slider-star-container .star-1 {
        top: 51%;
        left: 60%;
        font-size: 50px;
    }
    .slider-star-container .star-2 {
        top: 26%;
        left: 79%;
    }
    .slider-star-container .star-3 {
        top: 24%;
        left: 90%;
    }
    .slider-star-container .star-4 {
        top: 32%;
        left: 70%;
    }
    .slider-star-container .star-5 {
        top: 80%;
        left: 62%;
    }
    .slider-star-container .star-6 {
        top: 67%;
        left: 60%;
    }
    
    .slider-section {
        filter: drop-shadow(0px 20px 0px #1C464560) drop-shadow(0px 20px 0px #1C464560);
    }
    
    .header-scroll-holder {
        filter: drop-shadow(0px 20px 0px #1C464560) drop-shadow(0px 20px 0px #1C464560);
    }
    
    .header-scroll-background {
        height: 60px;
    }
    
    .scroll-down {
        top: -6px;
    }
    
    
    /* Badges */
    
    .badge-holder {
        width: 180px;
    }
    
    
    /* About */
    
    .about-img {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .about-section .slider-star-container .star-1 {
        top: 85%;
        left: 99%;
        font-size: 40px;
    }
    .about-section .slider-star-container .star-2 {
        top: 20%;
        left: 110%;
        font-size: 35px;
    }
    .about-section .slider-star-container .star-3 {
        top: 45%;
        left: 115%;
        font-size: 40px;
    }
    .about-section .slider-star-container .star-4 {
        top: 5%;
        left: -10%;
        font-size: 30px;
    }
    .about-section .slider-star-container .star-5 {
        top: 35%;
        left: -25%;
        font-size: 45px;
    }
    .about-section .slider-star-container .star-6 {
        top: 70%;
        left: -20%;
        font-size: 40px;
    }
    
    .area-served li {
        width: 50%;
    }

    
    /* Gallery */

    .GallerySwiper {
        width: 400px;
    }
    
    .GallerySwiper .swiper-slide img {
        height: 380px
    }
}


/* Desktop */

@media (min-width: 981px) {
    h1 {
        font-size: 40px;
   }
    
    h2 {
        font-size: 34px;
   }
    
    h3 {
        font-size: 28px;
   }
    
    .menu-bg {
        display: none;
   }
    
    .menu-container {
        margin: 5px 0;
        width: 65%;
    }
    
    nav {
        padding: 15px 10px;
   }
    .navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

    
    nav > div {
        justify-content: center;
        flex-direction: row;
   }
    
   .menu-items {
        position: relative;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        display: flex;
        gap: 9px;
        margin-top: 0;
        justify-content: center;
        width: auto;
        align-items: center;
    }
    
    .menu-items div {
        opacity: 1;
        transition: none;
        display: flex;
    }
    
    .menu-bg.fs {
        width: 0;
    }
    
    .menu-items.fs div {
        margin-top: 0px !important;
    }
    
    .menu-bg, .menu-burger {
        display: none;
    }
    
    .brand-container {
        width: 34%;
    }

    #burger, #quit img {
        display: none;
    }
    
    #links {
        display: flex !important;
        flex-direction: row;
        position: relative;
        padding: 0;
        width: 100%;
        animation: unset;
        justify-content: flex-end;
    }

    
    /* Header */
    .top-decoration-element {
        align-items: flex-start;
    }
    
    .slider-content {
        width: 50%;
    }
    
    .slider-text p {
        text-align: left;
        font-size: 20px;
        padding-left: 15px;
    }
    
    .slider-avatar-holder {
        justify-content: flex-end;
        padding-right: calc((100vw - 1280px) / 2);
    }
    
    .slider-avatar-holder > picture {
        right: 0;
    }
    
    .header-scroll-background {
        height: 70px;
    }
    
    .scroll-down {
        top: -6px;
    }
    
    .scroll-down img {
        height: 25px;
        width: 23px;
    }
    

    /* About */
    .about-holder {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .about-content-img-area-served-holder {
        display: flex;
        justify-content: space-between;
    }
    
    .about-content-section {
        width: 49%;
        align-items: flex-start;
    }

    .about-content-section h2 {
        text-align: left;
    }
    
    .about-avatar {
        margin: 0;
        width: 49%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .about-img {
        margin: 0;
        width: 400px;
        height: 380px;
        border-radius: 20px;
        box-shadow: #0000004d 0px 19px 38px, #00000038 0px 15px 12px;
        z-index: 0;
    }
    
    .about-section .slider-star-container .star-1 {
        top: 85%;
        left: 75%;
        font-size: 30px;
    }
    .about-section .slider-star-container .star-2 {
        top: 20%;
        left: 80%;
        font-size: 25px;
    }
    .about-section .slider-star-container .star-3 {
        top: 45%;
        left: 85%;
        font-size: 30px;
    }
    .about-section .slider-star-container .star-4 {
        top: 5%;
        left: 20%;
        font-size: 20px;
    }
    .about-section .slider-star-container .star-5 {
        top: 35%;
        left: 5%;
        font-size: 35px;
    }
    .about-section .slider-star-container .star-6 {
        top: 70%;
        left: 10%;
        font-size: 30px;
    }

    
    /* Features */
    .features-section > div {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .features-section ul li {
        margin: 20px;
    }

    
    /* Testimonials */
    .testimonial .slide {
        flex-direction: row-reverse;
   }
    
    .testimonial {
        padding: 60px 0 30px;
    }
    
    .testimonials-content-btns-container {
        display: flex;
        flex-direction: column;
        width: 50%;
    }
    
    
    /* Gallery */
    .contact-form-gallery-container > div {
        flex-direction: row;
        align-items: flex-end;
    }
    
    .gallery-section h2 {
        margin: 0px 0 20px;
    }
    
    .gallery-section {
        width: 50%;
        margin-left: 30px;
    }
}