body {
    color: #000;
    background: #fff;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    margin: 0px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 500;
    overflow-x: hidden;
    line-height: 1.4;
}
html {
    scroll-padding-top: 20%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
a[href^="tel:"] {
    white-space: nowrap;
}
p,
li {
    color: #000;
    text-align: justify;
    margin: 0;
}
h1,
h2,
h3,
h4 {
    font-family: "Nunito", serif;
    font-weight: 600;
    font-style: normal;
}
h1 {
    font-size: 26px;
}
h2 {
    font-size: 24px;
    font-weight: 800;
    text-transform: capitalize;
    margin: 0px;
    text-align: center;
}
h3 {
    font-size: 22px;
}
@media (min-width: 600px) {
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 24px;
    }
}
@media (min-width: 981px) {
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 28px;
    }
}
* {
    box-sizing: border-box;
}
/*NAVIGATION STYLE*/
header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: auto;
    width: 100%;
    background: #eaf3ed;
}
.hamburger {
    display: flex;
    z-index: 99999;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    transition: all 0.2s;
    position: relative;
}
.hamburger svg {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}
.line {
    /* transition: 0.5s; */
    stroke-width: 6px;
    stroke: #000;
}
.lineTop {
    stroke-dasharray: 40 40;
    stroke-dashoffset: 25;
}
.lineBottom {
    stroke-dasharray: 40 40;
    stroke-dashoffset: 60;
}
.lineMid {
    stroke-dasharray: 40 40;
}
.hamburger.open .lineTop {
    stroke-dashoffset: 0;
    transform-origin: left;
    transform: rotateZ(45deg) translate(-7px, -5px);
}
.hamburger.open .lineMid {
    stroke-dashoffset: 40;
}
.hamburger.open .lineBottom {
    stroke-dashoffset: 0;
    transform-origin: left;
    transform: rotateZ(-45deg) translate(-5px, 5px);
}
nav {
    display: flex;
    position: relative;
    width: 100%;
    flex-direction: column;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    margin: 10px 0 0;
    top: 0;
}
nav.scrolled {
    position: fixed;
    top: 0px;
    z-index: 999999;
    animation: 0.3s ease 0s 1 normal none running slideDown;
}
.navigation-section {
    width: 90%;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    height: auto;
    max-width: 1280px;
    justify-content: center;
    background: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 2px 15px #0000003b;
}
.navigation {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    position: relative;
    justify-content: space-between;
    flex-direction: row;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}
nav .menu-section {
    flex-direction: column;
    display: flex;
    width: 100vw;
    height: 100vh;
    position: fixed;
    inset: 0;
    transform: none;
    display: none;
    top: -1rem;
    left: -100%;
    z-index: 0;
    place-content: center;
    align-items: center;
  
    transition: none;
    justify-content: center;
}
nav .menu-section.active {
    display:flex;
    top: -1rem;
    left: 0px;
    right: 0px;
    padding: 0px;
    z-index: 9999;
    width: 100%;
    transform: translateX(0px);
    overflow: hidden;
    height: 101vh;
    background: #fff;
}
nav .menu {
    align-items: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
}
nav .menu li {
    margin: 0px;
    text-align: center;
    padding: 1rem 0px;
    list-style: none;
}
nav .menu li a {
    text-decoration: none;
    font-weight: 500;
    color: #000;
}
.brand,
.brand-logo {
    width: 85%;
    text-wrap: wrap;
    z-index: 3;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    position: relative;
}
.brand a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    z-index: 3;
    width: 100%;
}
.brand-logo a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    z-index: 3;
    width: 100%;
}
.brand img {
    width: 80px;
}
.brand span {
    font-size: 20px;
    font-family: "Roboto", serif;
    font-weight: 800;
    font-style: normal;
    position: relative;
    color: #000;
    text-align: left;
}
.brand-logo img {
    width: 250px;
    height: auto;
}
.navigation-buttons {
    width: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.navigation-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    align-self: center;
}
.navigation-links .button-1 {
    margin: 20px 0 0;
}
/*END OF NAVIGATION STYLE*/
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
/*SLIDER STYLE*/
.slider-section {
    position: relative;
    width: 100%;
    height: auto;
    align-items: center;
    display: flex;
    z-index: 0;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 460px;
    background: #1198220f;
    padding-bottom: 20px;
}
.slider-section::before {
    content: '';
    background: #1198221c;
    clip-path: polygon(0 0, 100% 0, 40% 100%, 0% 100%);
    width: 75%;
    height: 100%;
    position: absolute;
    left: 0;
}
.slider {
    display: flex;
    flex-direction: column;
    width: 90%;
    position: relative;
    max-width: 1280px;
    z-index: 4;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: auto;
}
.slider-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 10px;
}
.slider-text .slogan {
    font-size: 26px;
    font-weight: 700;
    margin: 10px 0px 0px;
	opacity: 1;
}
.slider-text .slogan span {
    color: #119822;
    white-space: nowrap;
}
.slider-text {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: 100%;
}
.subtitle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #11982230;
    padding: 5px 10px;
    border-radius: 20px;
    margin: 10px 0;
}
.subtitle img {
    width: 30px;
    height: auto;
}
.subtitle span {
    margin-left: 10px;
    color: #1E441E;
}
.slider-text h1 {
    margin: 0px;
    position: relative;
    font-weight: 900;
    color: #1E441E;
    letter-spacing: 1px;
    z-index: 3;
    text-align: center;
    line-height: 1.2;
}
.slider-text h1 span {
    color: #119822;
}
.slider-text > p {
    margin: 10px 0;
    position: relative;
    z-index: 3;
    color: #000;
    font-size: 20px;
    text-align: center;
}
.slider-text p a {
    color: #119822;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}
.slider-text p a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #119822;
    transition: width 0.3s ease;
}
.slider-text p a:hover::after {
    width: 100%;
}
.slider-image {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 20px;
    z-index: 1;
}
.slider-image > picture {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
}
.slider-image > picture img {
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    object-fit: cover;
    object-position: center center;
    border-radius: 25px;
}
.slider-image-text {
    display: flex;
    z-index: 3;
    justify-content: flex-end;
    align-items: flex-start;
    margin-right: 0px;
    background: linear-gradient(205deg, #000000c9 10%, transparent 30%);
    padding: 10px 15px;
    height: 100%;
    border-radius: 0 20px 0 0;
    opacity: 1;
    width: 100%;
}
.slider-image-text p {
    text-align: right;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    text-shadow: 0 0 5px #000;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 1;
}
.headers-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    margin: 10px 0px 5px;
}
.headers-buttons > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.button {
    border-radius: 20px;
    border: none;
    padding: 10px 20px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
    color: #000;
    transition: all .5s;
}
.button::before {
    content: '';
    width: 0;
    height: 100%;
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, #119822 0%, #1E441E 100%);
    transition: .5s ease;
    display: block;
    z-index: -1;
}
.button:hover {
    color: #fff;
}
.button:hover::before {
    width: 100%;
}
.button-1 {
    border-radius: 20px;
    border: none;
    padding: 10px 20px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
    color: #000;
    transition: all .5s;
    margin-left: 20px;
    cursor: pointer;
}
.button-1::before {
    content: '';
    width: 0;
    height: 100%;
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, #119822 0%, #1E441E 100%);
    transition: .5s ease;
    display: block;
    z-index: -1;
}
.button-1:hover {
    color: #fff;
}
.button-1:hover::before {
    width: 100%;
}
.scroll-down {
    position: absolute;
    margin: 20px;
    z-index: 5;
    right: calc(50% - 30px);
    bottom: 2px;
}
.scroll-down img {
    height: 80px;
    transform: rotate(0deg);
    animation: 1.5s ease 0s infinite normal none running scroll-down-button;
    filter: drop-shadow(0 0 6px #000);
}
@-webkit-keyframes scroll-down-button {
    0% {
        transform: rotate(0deg) translate(0px, 0px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(0deg) translate(0px, 20px);
        opacity: 0;
    }
}
@keyframes scroll-down-button {
    0% {
        transform: rotate(0deg) translate(0px, 0px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(0deg) translate(0px, 20px);
        opacity: 0;
    }
}
/*END OF SLIDER STYLE*/

/*BADGES STYLE*/
.badges-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 3;
}
.badges-section > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1280px;
    position: relative;
    margin: 50px 0 0;
}
.badges-section > div > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}
.badges-container {
    display: flex;
    flex-flow: wrap;
    place-content: center;
    align-items: stretch;
    width: 100%;
    justify-content: center;
}
.badge-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55%;
    margin: 20px 10px;
    max-width: 200px;
    position: relative;
    z-index: 0;
}
.badge-holder::before {
    background: #119822;
    content: '';
    width: 94%;
    height: 106%;
    position: absolute;
    transition: all 0.5s;
}
.badge-holder:hover::before {
    height: 100%;
    width: 100%;
    border-radius: 30px;
    background: #1E441E;
}
.badge-holder > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    background: #ffffffdb;
    box-shadow: 0 0 15px 0 #000000ad;
    border-radius: 50px 0;
    transition: all 0.5s;
}
.badge-holder:hover div  {
    border-radius: 50px;
}
.badge-icon {
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 8px;
}
.badge-content {
    min-height: 40px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 5px 23px;
    text-transform: capitalize;
    text-align: center;
    margin: 5px 0px;
    color: #000;
    z-index: 3;
}
.badge-title {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    width: 100%;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
    margin: 5px 0px 0px;
    color: #000;
    z-index: 3;
    font-size: 18px;
}
/*END OF BADGES STYLE*/
/*ABOUT STYLE*/
.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}
.about-section > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    margin: 50px 0;
}
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-title {
    color: #1E441E;
    text-align: center;
    opacity: 0;
}
.about-title span {
    color: #119822;
}
.about-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-text p {
    color: #000;
    margin: 10px 0;
}
.area-served {
    display: flex;
    place-content: center flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-top: 0px;
    list-style: none;
    padding: 0px;
    flex-flow: wrap;
}
.area-served li {
    width: 100%;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 5px 0;
}
.area-served li::before {
    content: "";
    margin-right: 5px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(/img/icons/google-marker.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.about-images {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    flex-wrap: wrap;
    align-content: center;
    max-width: 600px;
}
.about-image-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    margin: 5px;
    margin-top: -21%;
    margin-left: -37px;
    z-index: 2;
    opacity: 0;
}
.about-image-1 img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 7px solid #fff;
    box-shadow: 0 0 15px 0 #000000ad;
    transition: all 0.5s;
    box-sizing: border-box;
}
.about-images:hover .about-image-1 img {
    border: 0;
}
.about-image-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 5px;
    opacity: 0;
}
.about-image-2 img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 0 15px 0 #000000ad;
    border: 0;
    transition: all 0.5s;
    box-sizing: border-box;
}
.about-images:hover .about-image-2 img {
    border: 7px solid #fff;
}
/*END OF ABOUT STYLE*/
/*FEATURES STYLE*/
.features-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #1198220f;
}
.features-section > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    margin: 50px 0;
}
.features-title {
    color: #1E441E;
    opacity: 0;
}
.features-title span {
    color: #119822;
}
.features-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0 0;
}
.features-text {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    align-content: center;
}
.features-text > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 300px;
    margin: 25px 30px;
    padding: 25px 10px;
    background: #119822;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    transition: all 0.5s;
}
.features-text > div:hover {
    background: #1E441E;
    border-radius: 0 40px;
}
.features-text > div::before {
    content: '';
    background: #ffffffdb;
    position: absolute;
    z-index: 2;
    width: 105%;
    height: 95%;
    border-radius: 40px;
    box-shadow: 0 0 15px 0 #000000ad;
    transition: all 0.5s;
}
.features-text > div:hover::before {
    border-radius: 0 40px;
}
.features-icon {
    width: 85px;
    height: 60px;
    z-index: 3;
    object-fit: contain;
    object-position: center;
}
.features-text > div:hover .features-icon {
}
.features-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.features-main-content strong {
    text-align: center;
    color: #119822;
    font-size: 18px;
    margin: 10px 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.features-text > div:hover .features-main-content strong {
    color: #1E441E;
}
.features-main-content p {
    font-weight: 500;
}
/*END OF FEATURES STYLE*/
/*SERVICES STYLE*/
.services-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    z-index: 0;
    background: #1198221c;
}
.services-section > div {
    width: 90%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    margin: 50px 0;
}
.services-title {
    color: #1E441E;
    opacity: 0;
}
.services-title span {
    color: #119822;
}
.services-section > div > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ServicesSwiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 0 80px !important;
}
.ServicesSwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.ServicesSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.ServicesSwiper .swiper-slide > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
    height: 100%;
}
.srvBlock {
     display: flex;
    align-items: stretch;
    justify-content: center;
    flex-flow: wrap;
    position: relative;
    width: 100%;
}
.srvElement {
    margin: 20px 25px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    position: relative;
    align-items: stretch;
    max-width: 350px;
}
.srvElement::before {
    background: #119822;
    content: '';
    width: 96%;
    height: 98%;
    position: absolute;
    top: 9px;
    border-radius: 10px;
    transition: all 0.5s;
}
.srvElement:hover::before {
    height: 100%;
    top: 0%;
    width: 103%;
    border-radius: 20px;
    background: #1E441E;
}
.services-body {
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.srvElementHeader {
    position: relative;
    z-index: 3;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.srvElementHeader h2 {
    text-align: center;
    font-family: "Nunito", sans-serif;
    line-height: 1.4;
    font-size: 24px;
    margin: 0px;
    font-weight: 700;
    color: #119822;
    z-index: 2;
    transition: all 0.5s
}
.srvElement:hover .srvElementHeader h2 {
    color: #1E441E;
}
.srvElementImg {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    border-bottom: 0;
    width: 103%;
    z-index: 3;
}
.srvElementImg > img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 0 0px 10px 0 #00000099;
    transition: all 0.5s
}
.srvElement:hover .srvElementImg > img {
    border-radius: 40px;
}
.srvElementBody {
    position: relative;
    background: #ffffffdb;
    z-index: 2;
    width: 110%;
    height: 100%;
    border-radius: 40px 0;
    box-shadow: 0 0 15px 0 #000000ad;
    padding: 10px 20px;
    padding-top: 50%;
    margin-top: -50%;
    transition: all 0.5s
}
.srvElement:hover .srvElementBody {
    border-radius: 40px;
}
.srvElementContent {
    text-align: justify;
    line-height: 1.4;
    position: relative;
    z-index: 3;
    margin-bottom: 5px;
}
.srvElementContent p {
    margin: 0px;
    font-weight: 500;
    position: relative;
    color: #000;
    z-index: 2;
}

div.services-swiper-button-next {
    top: auto !important;
    bottom: 10px;
    right: calc(50% - 60px) !important;
    background: #0e7a1b;
    border-radius: 10px;
    width: 40px !important;
    transition: 0.4s;
}
div.services-swiper-button-prev {
    top: auto !important;
    bottom: 10px;
    left: calc(50% - 60px) !important;
    background: #0e7a1b;
    border-radius: 10px;
    width: 40px !important;
    transition: 0.5s;
}
div.services-swiper-button-next:hover, div.services-swiper-button-prev:hover {
    background: #1e441e;
}
div.services-swiper-button-next::after, div.services-swiper-button-prev::after {
    position: relative;
    color: #fff;
    font-size: 25px !important;
}
div.services-swiper-button-next:hover::after, div.services-swiper-button-prev:hover::after {
    color: #fff;
}
/*END OF SERVICES STYLE*/
/*GALLERY STYLE*/
.gallery-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #1198220f;
    flex-direction: column;
}
.gallery-content {
    width: 95%;
    max-width: 1280px;
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.gallery-title {
    color: #1E441E;
    opacity: 0;
}
.gallery-title span {
    color: #119822;
}
.GallerySwiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px 10px !important;
}
.GallerySwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    margin: 10px 0 25px;
}
.GallerySwiper .swiper-slide a {
    width: 81vw;
    height: 81vw;
    margin: 20px;
    max-width: 450px;
    max-height: 450px;
}
.GallerySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s;
    border-radius: 30px;
    box-shadow: 0 0px 10px 0 #00000099;
}
.GallerySwiper .swiper-slide img:hover {
    transform: scale(1.05);
}
div.gallery-swiper-button-next {
    right: -15px;
    top: 50%;
    border: 0;
    border-radius: 0px;
    padding: 0;
    background: transparent;
    position: absolute !important;
}
div.gallery-swiper-button-prev {
    left: -16px;
    top: 50%;
    border: 0;
    border-radius: 0px;
    padding: 0px;
    background: transparent;
}
div.gallery-swiper-button-prev::after,
div.gallery-swiper-button-next::after {
    color: #000;
    text-align: center;
    font-size: 30px !important;
}
div.gallery-swiper-pagination {
    bottom: 0px !important;
}
div.gallery-swiper-pagination .swiper-pagination-bullet {
    background: #000;
    width: 12px;
    height: 12px;
    margin: 0 8px !important;
}
.lightboxOverlay, .lightbox {
    z-index: 999999 !important;
}
/*END OF GALLERY STYLE*/
/*DECORATION SECTION*/
.decoration-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}
.decoration-section-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px 0 0;
    background: #119822;
    padding: 50px 25px;
    width: 100%;
    max-width: 1280px;
    opacity: 0;
}
.decoration-section-title {
    color: #fff;
    font-weight: 900;
    opacity: 0;
}
.decoration-section-text {
    color: #fff;
    margin: 25px 0;
    text-align: center;
    font-size: 18px;
    opacity: 0;
}
.decoration-section-row .button {
    background: #fff;
    opacity: 0;
    box-shadow: 4px 4px 10px #1198221c, -4px -4px 10px #ffffff;
}
.decoration-section-row .button::before {
    background-image: linear-gradient(to right, #1E441E 0%, #119822 100%);
}
/*END OF DECORATION SECTION*/
/*CONTACT FORM STYLE*/
.contact-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    position: relative;
    background: #1198220f;
}
.contact-form-section > div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 90%;
    max-width: 1280px;
    margin: 50px 0;
}
.contact-form-section-title {
    color: #1E441E;
    margin-bottom: 20px;
    opacity: 0;
}
.contact-form-section-title span {
    color: #119822;
}
.contact-form-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}
.contact-info {
    background: #119822;
    padding: 25px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    opacity: 0;
}
.contact-info h2 {
    color: #fff;
    text-align: center;
}
.contact-info p {
    color: #fff;
    text-align: center;
    margin: 12px 0;
    font-size: 20px;
}
.contact-info-elements {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.contact-info-cn {
    margin: 10px 0;
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}
.contact-info-phone {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.contact-info-phone img {
    width: 25px;
    height: auto;
    filter: invert(1);
}
.contact-info-phone a {
    margin-left: 10px;
    color: #fff;
    font-size: 20px;
}
.contact-info-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    max-width: 500px;
    opacity: 0;
}
.contact-info-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    box-shadow: 0 0 15px 0 #000000ad;
    max-height: 280px;
}
.email-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 50px;
    background: #fff;
    box-shadow: 0 0 15px 0 #000000ad;
    border-radius: 30px;
    padding: 15px;
    opacity: 0;
}
.contact-form-title {
    color: #119822;
}
.email-form > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 2;
}
.email-form > div > p {
    width: 59%;
    font-size: 20px;
    margin: 0px;
    text-transform: capitalize;
    font-weight: 500;
}
.email-form > div > div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 43%;
    align-self: flex-end;
    position: relative;
}
.contact-form {
    z-index: 1;
    position: relative;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 900px;
    margin-top: 15px;
}
.contact-form > div {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    width: 100%;
}
.email-form h3 {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: #000 0px 0px 5px;
    font-weight: 500;
}
.contact-form .form-row {
    margin-bottom: 35px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
}
.contact-form .form-row:last-of-type {
    width: auto;
}
.contact-form .form-row .button-1 {
    margin: 0px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 20px 10px 10px;
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
    border: 0;
    position: relative;
    border-radius: 20px;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
    background: #ffffff;
    color: #000;
    border-right: 3px solid #fff;
    border-left: 3px solid #fff;
    border-inline: 3px solid #fff;
}
.contact-form input:focus,
.contact-form input:not(:placeholder-shown),
.contact-form textarea:focus,
.contact-form textarea:not(:placeholder-shown) {
    outline: 0px;
    border-right: 3px solid #119822;
    border-left: 3px solid #119822;
    border-inline: 3px solid #119822;
    background: #1198220f;
}
.contact-form input[type="text"]::placeholder, .contact-form input[type="tel"]::placeholder, .contact-form input[type="email"]::placeholder, .contact-form textarea::placeholder {
    visibility: hidden;
}
.contact-form input[type="text"]:focus::placeholder, .contact-form input[type="tel"]:focus::placeholder, .contact-form input[type="email"]:focus::placeholder, .contact-form textarea:focus::placeholder {
    visibility: visible;
}
.contact-form textarea {
    resize: none;
}
.contact-form .form-row label {
    color: #000;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease 0s;
    padding: 0px 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}
.contact-form .form-row label img {
    width: 20px;
    height: auto;
    margin-right: 10px;
}
.contact-form .form-row-textarea label {
    color: #000;
    position: absolute;
    right: 10px;
    top: 18%;
    transform: translateY(-50%);
    transition: 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: #000;
    padding: 2px 5px 2px 20px;
    background: #1198221c;
    font-size: 14px;
    border: 2px solid #119822;
    width: auto;
    border-radius: 20px;
    margin-left: 5px;
}
.contact-form textarea:not(:placeholder-shown) + label,
.contact-form textarea:focus + label {
    max-width: 130px;
}
.contact-form input:focus + label img,
.contact-form input:not(:placeholder-shown) + label img,
.contact-form textarea:focus + label img,
.contact-form textarea:not(:placeholder-shown) + label img {
    filter: invert(0);
}
.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
}

/* CAPTCHA */
.contact-form .form-row-captcha {
    width: calc(100% - 110px);
}
.checkbox-captcha {
    pointer-events: auto !important;
    position: relative !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #000 !important;
    box-sizing: border-box;
    transition: 0.5s;
    border-right: 3px solid #fff;
    border-left: 3px solid #fff;
    border-inline: 3px solid #fff;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
    background: #ffffff;
    width: 100%;
    accent-color: #119822 !important;
    padding: 10px 10px !important;
    border-radius: 20px;
    font-size: 16px;
    left: 0 !important;
    top: auto !important;
    transform: unset !important;
}
.checkbox-captcha input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
}
/*END OF CONTACT FORM STYLE*/
/*TESTIMONIALS STYLE*/
.testimonials-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}
#testimonials {
    display: flex;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    z-index: 2;
    align-items: center;
    flex-direction: column;
    margin: 50px 0;
}
.testimonial-title {
    color: #1E441E;
    opacity: 0;
}
.testimonial-title span {
    color: #119822;
}
.testimonial {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.testimonial-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-image .image {
    position: relative;
    object-fit: cover;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 50%;
}
.testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: auto;
    width: 100%;
}
.testimonials-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    background: #119822;
    width: 89%;
    height: 99%;
    padding: 40px 0;
    transition: all 0.5s;
    max-width: 1160px;
}
.testimonial .slide:hover .testimonials-slide {
    background: #1E441E;
    height: 100%;
    width: 100%;
    border-radius: 30px;
}
.testimonials-slide::before {
    background: #ffffffdb;
    content: '';
    height: 93%;
    width: 94%;
    position: absolute;
    box-shadow: 0 0 15px 0 #000000ad;
    border-radius: 50px 0;
    top: 13px;
    transition: all 0.5s;
    max-width: 1160px;
}
.testimonial .slide:hover .testimonials-slide::before {
    border-radius: 50px;
    width: 100%;
    height: 100%;
    top: 0;
}
.testimonial-content {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position: relative;
    z-index: 3;
    margin-left: 10px;
}
.testimonial-text {
    position: relative;
    margin: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    z-index: 3;
}
.testimonial-text span:first-of-type {
    color: #119822;
    font-size: 76px;
    position: absolute;
    top: -45px;
    left: 0;
    transition: all 0.5s;
}
.testimonial .slide:hover .testimonial-text span:first-of-type {
    color: #1E441E;
}
.slide p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: justify;
    position: relative;
    margin: 10px 0;
    padding: 0px;
}
.testimonial-text span:last-of-type {
    color: #119822;
    font-size: 76px;
    position: absolute;
    bottom: -75px;
    right: 0;
    transition: all 0.5s;
}
.testimonial .slide:hover  .testimonial-text span:last-of-type {
    color: #1E441E;
}
p.testimonials-stars {
    color: #ebcb00fc !important;
    font-size: 30px;
}
.slide .details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin-left: 15px;
}
.details .name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.slide .details img {
    width: 130px;
    margin-top: 10px;
}
.testimonials-swiper-navigation {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: 30px;
}
.testimonial .swiper-button-next {
    left: 0px;
    margin-left: 5px;
    right: 0px !important;
    top: 0px !important;
    position: relative !important;
}
.testimonial .swiper-button-prev {
    margin-right: 5px;
    left: 0px !important;
    top: 0px !important;
    right: 0px !important;
}
.testimonial .swiper-button-prev, .testimonial .swiper-button-next {
    border: 1px solid #119822;
    border-radius: 50%;
    padding: 0px;
    position: relative !important;
    width: 40px !important;
    height: 40px !important;
    background: #119822;
}
.testimonial .swiper-button-prev::after, .testimonial .swiper-button-next::after {
    color: #fff;
    font-size: 23px !important;
}
.testimonial .swiper-button-prev {
    border-radius: 0 10px;
    transition: all 0.5s;
}
.testimonial .swiper-button-prev:hover {
    background: #1E441E;
    border-radius: 10px;
}
.testimonial .swiper-button-next {
    border-radius: 10px 0;
    transition: all 0.5s;
}
.testimonial .swiper-button-next:hover {
    background: #1E441E;
    border-radius: 10px;
}
.testimonial .nav-button::after, .nav-button::before {
    position: relative;
    font-size: 20px !important;
}
/*END OF TESTIMONIALS STYLE*/
/*CONTACT STYLE*/
.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 0;
}
.contact-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000063;
    z-index: 2;
}
.contact-section > picture {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}
.contact-section > picture img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center center;
}
.contact-section > div {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    width: 90%;
    max-width: 1280px;
    margin: 50px 0;
}
.contact-section p {
    font-size: 23px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 5px #000;
    text-align: center;
    width: 100%;
}
.contact-section p a {
    color: #119822;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}
.contact-section p a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #119822;
    transition: width 0.3s ease;
}
.contact-section p a:hover::after {
    width: 100%;
}
/*END OF CONTACT STYLE*/
/*FOOTER STYLE*/
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    position: relative;
    background: #1E441E;
}
footer > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    margin: 20px 0 0;
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.footer-brand a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-brand a span {
    color: #fff;
    font-size: 25px;
}
.footer-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.footer-brand-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 154px;
}
.footer-brand-logo a img {
    width: 100%;
    height: auto;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-menu {
    padding: 0;
    list-style: none;
}
.footer-menu li {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer-menu li::before {
    content: '';
    background: url(/img/icons/leaf-logo.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 20px;
    height: 20px;
    display: block;
}
.footer-menu li a {
    color: #fff;
    font-size: 18px;
    margin-left: 10px;
}
.footer-rights {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 25px;
}
.footer-rights hr {
    border-color: #ffffff4f;
    width: 90%;
}
.footer-rights p {
    color: #fff;
    text-align: center;
    margin-top: 20px;
}
/*END OF FOOTER STYLE*/
#callnowbutton {
    display: none;
}
#booking-engin {
    position: fixed;
    left: 0px;
    z-index: 9999999;
    cursor: pointer;
    bottom: 10px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: none;
    box-shadow: none;
    margin: 0px;
    padding: 0px;
}
.button-2 {
    border-radius: 0 20px 20px 0;
    border: none;
    padding: 10px 20px;
    position: relative;
    display: inline-block;
    background: #fff;
    overflow: hidden;
    z-index: 1;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
    color: #000;
    transition: all .5s;
    cursor: pointer;
}
.button-2::before {
    content: '';
    width: 0;
    height: 100%;
    border-radius: 0 30px 30px 0;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, #119822 0%, #1E441E 100%);
    transition: .5s ease;
    display: block;
    z-index: -1;
}
.button-2:hover {
    color: #fff;
}
.button-2:hover::before {
    width: 100%;
}
@keyframes riseRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes riseLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes riseUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (min-width: 600px) {
    /* NAVIGATION TABLET */
    .brand img {
        width: 100px;
    }
    .brand span {
        font-size: 22px;
    }
    /* END OF NAVIGATION TABLET */
    /*SLIDER TABLET*/
    .slider-content {
    justify-content: flex-start;
    margin: 0;
    }
    .slider-text {
        align-items: flex-start;
        width: 100%;
    }
    .slider-text h1 {
        text-align: left;
    }
    .slider-text p {
        text-align: left;
    }
    /*END OF SLIDER TABLET*/
    /*ABOUT TABLET*/
    .area-served li {
        width: 50%;
    }
    /*END OF ABOUT TABLET*/
    /*TESTIMONIALS TABLET*/
    .testimonials-slide::before {
        border-radius: 60px 0;
    }
    .slide p {
        font-size: 20px;
    }
    /*END TESTIMONIALS TABLET*/
    /*CONTACT TABLET*/
    .contact-section p, .footer-brand a span {
        font-size: 26px;
    }
    /*END OF CONTACT TABLET*/
    /*FOOTER TABLET*/
    footer > div:first-of-type {
        flex-direction: row;
        justify-content: space-between;
    }
    .footer-brand, .footer-brand-logo {
        margin: 0;
        width: 49%;
    }
    .footer-content {
        width: 49%;
    }
    /*END OF FOOTER TABLET*/
}
@media screen and (max-width: 650px) {
    #callnowbutton {
        position: fixed;
        right: 10px;
        padding: 10px 20px;
        z-index: 9999999;
        cursor: pointer;
        bottom: 10px;
        background-color: #81d742;
        color: #fff;
        text-decoration: none;
        border-radius: 15px;
        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: 2em;
    }
}
@media (min-width: 981px) {
    /*NAVIGATION DESKTOP*/
    .hamburger {
        display: none;
   }
    nav {
        padding: 0;
    }
    .navigation-section {
        flex-direction: column-reverse;
        position: relative;
   }
    nav .menu-section {
        flex-direction: column-reverse;
        justify-content: center;
        left: 0px;
        position: unset;
        width: 100%;
        align-items: center;
        padding: 0px;
        margin: -7px 0 0;
        transform: none;
        top: 0px;
        flex-wrap: wrap;
        height: auto;
        z-index: 3;
        display: flex;
   }
    nav .menu {
        height: auto;
        flex-direction: row;
        margin: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: flex-end;
    }
    nav .menu li {
        margin: 10px;
        padding: 0px;
        width: auto;
   }
    .navigation {
        width: 67%;
        align-self: flex-start;
    }
    .brand {
        margin: 10px 0 10px 10px;
        z-index: 5;
        width: 100%;
   }
    .brand a {
        width: 100%;
        /* justify-content: center; */
   }
    .navigation-buttons {
        display: none;
    }
    .navigation-links {
        flex-direction: row;
        width: 32%;
        align-self: flex-end;
        position: absolute;
        top: 15px;
        /* bottom: 10px; */
        justify-content: flex-end;
    }
    .navigation-links .button-1 {
        margin: 0 0 0 15px;
    }
    /*END OF NAVIGATION DESKTOP*/
    /*SLIDER DESKTOP*/
    .slider-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        height: 100%;
        padding-bottom: 20px;
        margin-top: 20px;
    }
    .slider-text {
        width: 49%;
        margin-bottom: 20px;
    }
    .slider-text .slogan {
        font-size: 30px;
    }
    .slider-image {
        width: 49%;
        margin-top: 0;
        height: auto;
    }
    .scroll-down {
        left: calc(50% - 50px);
    }
    .scroll-down img {
        filter: invert(1);
    }
    /*END OF SLIDER DESKTOP*/
    /*BADGES DESKTOP*/
    .badges-section > div {
        margin: 20px 0;
    }
    /*END OF BADGES DESKTOP*/
    /*ABOUT DESKTOP*/
    .about-section > div {
        margin: 20px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: stretch;
    }
    .about-content {
        width: 49%;
        align-items: flex-start;
    }
    .about-title {
        text-align: left;
    }
    .about-text {
        align-items: flex-start;
    }
    .about-images {
        width: 49%;
        margin-top: 0;
    }
    .about-image-1 {
        max-width: none;
        width: 75%;
    }
    /*END OF ABOUT DESKTOP*/
    /*FEATURES DESKTOP*/
    .features-section > div {
        /* margin: 20px 0; */
    }
    /*END OF FEATURES DESKTOP*/
    /*SERVICES DESTOP*/
    .services-section > div {
        /* margin: 20px 0; */
    }
    /*END OF SERVICES DESTOP*/
    /*GALLERY DESKTOP*/
    .gallery-content {
        /* margin: 20px 0; */
    }
    .GallerySwiper .swiper-slide a {
        width: 27vw;
        height: 27vw;
        max-width: 375px;
        max-height: 375px;
    }
    /*END OF GALLERY DESKTOP*/
    /*DECORATION SECTION DESKTOP*/
    .decoration-section-row {
        padding: 50px;
        width: 90%;
        border-radius: 40px;
    }
    /*END OF DECOATION SECTION DESKTOP*/
    /*TESTIMONIALS DESKTOP*/
    .testimonial {
        position: relative;
    }
    /*END OF TESTIMONIALS DESKTOP*/
    /*CONTACT FORM DESKTOP*/
    .contact-form-section > div {
        /* margin: 50px 0; */
    }
    .contact-form-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    .contact-info {
        width: 49%;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .contact-info h2 {
        text-align: left;
    }
    .contact-info p {
        text-align: left;
    }
    .contact-info-elements {
        align-items: flex-start;
    }
    .contact-info-cn {
        text-align: left;
        font-size: 26px;
    }
    .contact-info-phone img {
        width: 30px;
    }
    .contact-info-phone span {
        font-size: 22px;
    }
    .contact-info-image {
        max-width: none;
    }
    .email-form {
        width: 49%;
        margin-top: 0;
    }
    /*END OF FORM DESKTOP*/
    /*CONTACT TABLET*/
    .contact-section p {
        font-size: 28px;
    }
    /*END OF CONTACT TABLET*/
    /*FOOTER TABLET*/
    /*END OF FOOTER TABLET*/
}
@media (min-width: 981px) {
    .navigation-section {
        flex-direction: row-reverse;
        width: 100%;
        display: flex !important;
    }
    nav .menu-section {
        flex-direction: row;
        width: 69%;
        justify-content: end;
        position: relative;
        margin-top: 0;
    }
    nav .menu {
        width: 59%;
        margin-top: 0;
    }
    .navigation-links {
        width: 20%;
        position: relative;
        top: auto;
    }
    .navigation {
        width: 31%;
        justify-content: flex-start;
    }
    .brand, .brand a {
        justify-content: flex-start;
    }
}
