@font-face {
    font-family: 'AdobeClean-Regular';
    src: url(Assets/Fonts/AdobeClean-SemiLight.otf);
    font-display: swap;
    font-weight: normal;
}

@font-face {
    font-family: 'AdobeClean-Bold';
    src: url(Assets/Fonts/AdobeClean-Bold.otf);
    font-display: swap;
    font-weight: bold;
}

/* ------------------ */

*{
    scroll-behavior: smooth;
    font-family: AdobeClean-Regular;
}

body{
    display: flex;
    flex-direction: column;
    margin: 0;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, .photoGallery a{
    font-size: 13mm;
    font-family: AdobeClean-Bold;
}

h2{
    font-size: 10mm;
}

p, ul li a{
    font-size: 6mm;
}

a{
    color: #7FBA52;
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

nav{
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 30mm;
    overflow: hidden;
    background-image: url(Assets/Icons/navBar.webp);
    background-size: cover;
    background-repeat: no-repeat;
    box-sizing: border-box;
    padding-left: 10mm;
    padding-right: 10mm;
    box-shadow: -10px 0 100px 5px gray;
    color: black;
    z-index: 3;
}

nav ul{
    display: flex;
    margin-left: auto;
    list-style-type: none;
}

nav ul li{
    position: relative;
}

nav ul li a{
    margin: 0 5mm;
    color: black;
}

nav ul li a:hover{
    -webkit-text-decoration-color: #7FBA52;
            text-decoration-color: #7FBA52;
}

nav ul li:hover::before{
    display: block;
}

nav ul li::before{
    content: '';
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 5mm;
    height: 100%;
    background-image: url(Assets/Icons/leaf_menu_icon.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

nav a{
    height: 40%;
    width: 0;
}

nav a img{
    height: 100%;
    width: auto;
}

section{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100mm;
    overflow: hidden;
}

section h1{
    margin-bottom: 0;
}


form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 90%;
}

form .underline-center{
    max-width: 80mm;
    margin-bottom: 10mm;
}

form input, form textarea{
    width: 100%;
    height: 13mm;
    border: 1.5px solid gray;
    outline: none;
    border-radius: 3mm;
    font-size: 5mm;
    box-sizing: border-box;
    padding-left: 2mm;
    padding-right: 2mm;
    margin-bottom: 5mm;
}

input[type="checkbox"]{
    position: relative;
    all: revert;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    width: 5mm;
    height: 5mm;
    background-color: white;
    border: 1.5px solid rgb(77, 77, 77);
    border-radius: 1mm;
    transform: translateY(5px);
}

input[type="checkbox"]:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
    -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
            clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    background-color: white;
    transform-origin: center;
    transition: transform 0.2s ease-in-out;
}

input[type="checkbox"]:checked{
    background-color: #7FBA52;
}

input[type="checkbox"]:checked::before{
    transform: scale(0.7);
}

form label{
    margin-bottom: 5mm;
    font-size: 5mm;
}

form textarea{
    max-width: 100%;
    min-width: 100%;
    min-height: 30mm;
    max-height: 60mm;
}

input:not(input[type = 'checkbox']):user-invalid, textarea:user-invalid{
    border: 1.5px solid red;
    color: red;
}

form button{
    width: 50mm;
    height: 10mm;
    background-color: #7FBA52;
    border: none;
    font-size: 6mm;
    color: white;
    border-radius: 20mm;
    margin-top: 5mm;
    margin-bottom: 5mm;
}

form button:hover{
    cursor: pointer;
}

footer{
    display: flex;
    align-items: center;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 50mm;
    background-image: url(Assets/Icons/footer.webp);
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    box-sizing: border-box;
    padding-left: 10mm;
    padding-right: 10mm;
    box-shadow: 10px 0 100px 5px gray;
}

footer img{
    width: 15mm;
    height: auto;
}

footer p{
    display: inline-block;
    width: 70%;
    margin: 0 auto;
}

#menu-button{
    display: none;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin-left: auto;
    height: 40%;
    width: 6mm;
}

#menu-button img{
    height: 10%;
    width: 100%;
    transform: rotate(0deg) scale(1);
    transform-origin: left;
    transition: transform 0.5s ease-in-out;
}

#menu-button.active img:nth-child(1){
    transform:rotate(50deg);
}

#menu-button.active img:nth-child(2){
    transform: rotate(0) scale(0);
}

#menu-button.active img:nth-child(3){
    transform:rotate(-50deg);
}

#mobileMenu{
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-height: 15mm;
    background-color: white;
    box-shadow: 10px 0 100px 5px gray;
    transform: translateY(-100%);
    z-index: 2;
    overflow: hidden;
    transition: transform 1s, max-height 1s ease-in-out;
}

#mobileMenu ul{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    list-style-type: none;
    padding: 0;
}

#mobileMenu ul li a{
    color: black;
}

#mobileMenu div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    width: 100%;
    height: auto;
    border-top: 0.5px solid gray;
    box-sizing: border-box;
    padding-right: 15mm;
    padding-left: 15mm;
}

#mobileMenu div a{
    margin-top: 5mm;
}

#mobileMenu div a:last-child{
    margin-bottom: 5mm;
}

.servicesList{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    position: absolute;
    top: 30mm;
    right: 0;
    width: 100mm;
    height: auto;
    background-color: white;
    box-shadow: 0 0 100px 5px gray;
    z-index: 2;
    box-sizing: border-box;
    padding-right: 15mm;
    padding-left: 15mm;
    overflow: hidden;
    transform-origin: top;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
    transition-delay: 0.1s;
}

.servicesList a{
    font-size: 6mm;
    margin-top: 10mm;
    color: black;
}

.servicesList a:last-child{
    margin-bottom: 10mm;
}

.green-text{
    color: #7FBA52;
}

.welcome p{
    width: 60%;
    text-align: center;
    margin-top: 5mm;
    margin-bottom: 5mm;
}

.welcome h1{
    font-family: AdobeClean-Regular;
    font-weight: normal;
}

.underline-center{
    max-width: 50mm;
    height: 2mm;
    background-color: #7FBA52;
    border-radius: 100mm;
    transform-origin: center;
    -webkit-animation: underline-anim 2s ease-in-out infinite alternate;
            animation: underline-anim 2s ease-in-out infinite alternate;
}

@-webkit-keyframes underline-anim{
    0%{
        width: 100%;
    }
    80%{
        width: 0;
    }
}

@keyframes underline-anim{
    0%{
        width: 100%;
    }
    80%{
        width: 0;
    }
}

.banner-bg{
    background-image: url(Assets/Icons/banner-bg.webp);
    background-size: 100%;
}

.service-carousel{
    margin-top: 30mm;
}

.carousel{
    display: flex;
    width: 100%;
    height: 80%;
    background-color: white;
    overflow: hidden;
}

.carousel div{
    display: flex;
    -webkit-animation: horizontal-scroll-carousel 25s linear infinite;
            animation: horizontal-scroll-carousel 25s linear infinite;
}

.carousel img{
    height: 100%;
    width: 600px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

@-webkit-keyframes horizontal-scroll-carousel {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(calc(-600px * 5));
    }
}

@keyframes horizontal-scroll-carousel {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(calc(-600px * 5));
    }
}

.contact-form, .service{
    flex-direction: row;
    height: 250mm;
}

.service .left{
    box-sizing: border-box;
    padding-left: 10mm;
    padding-right: 10mm;
    text-align: justify;
}

.service .left h1{
    text-align: left;
}

.leaf, .tree{
    position: absolute;
    top: 20mm;
    left: 0;
}

.contact-form .leaf{
    width: 15%;
}

.certificates .tree{
    top: 0;
}

.tree{
    width: 25%;
}

.left{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 50%;
    height: 100%;
}

.right{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}

.right img{
    height: 70%;
    width: auto;
}

.services{
    display: block;
    height: 250mm;
    box-sizing: border-box;
    padding-left: 30mm;
    padding-top: 20mm;
    padding-right: 30mm;
}

.services h1, .certificates h1, .contact-form h1, .service .right h1{
    font-size: 17mm;
    color: #7FBA52;
    margin-bottom: 0;
    margin-top: 0;
    -webkit-filter: opacity(0.6);
            filter: opacity(0.6);
}

.services h2{
    display: inline-block;
    width: 130mm;
    margin-top: 0;
}

.services p{
    text-align: justify;
}

.leaf-big-right, .leaf-right{
    position: absolute;
    top: 0;
    right: 30mm;
    height: 80mm;
    width: auto;
}

.leaf-right{
    height: 40mm;
}

.certificates .leaf-right{
    right: 0;
    transform: rotateY(180deg);
}

.grass{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.certificates{
    height: 250mm;
}

.contacts-links{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: 20mm;
    margin-bottom: 0;
}

.contacts-links a, .contacts-links div{
    color: black;
    font-size: 5mm;
    margin-right: 10mm;
}

.contacts-links div{
    margin-right: 0;
}

.contacts-links a img{
    height: 5mm;
    width: auto;
    margin-right: 2mm;
}

.contacts-links div a img{
    height: 6mm;
}

.subtitle{
    font-size: 7mm;
    margin-bottom: 0;
    font-family: AdobeClean-Bold;
}

.photoGallery, .servicePhotos{
    width: 100%;
    height: auto;
    margin-bottom: 10mm;
}

.photoGallery a{
    grid-column: span 2;
    margin-top: 10mm;
    margin-bottom: 10mm;
    font-family: AdobeClean-Regular;
    font-weight: normal;
    color: black;
}

.photoGallery a:hover{
    color: #7FBA52;
}

.servicePhotos{
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(2, 140mm);
    gap: 2mm;
    position: relative;
}

.servicePhotos div{
    width: 140mm;
    height: 70mm;
    overflow: hidden;
}

.servicePhotos img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.2s ease-in-out
}

.servicePhotos div:hover img{
    transform: scale(1.1);
}

.servicePhotos .leaf, .servicePhotos .leaf-right{
    height: 40mm;
    width: auto;
}

.servicePhotos .leaf-right{
    top: revert;
    bottom: 0;
    right: 0;
    transform: rotateY(180deg);
    transform: rotateZ(180deg);
}

/* NOTE: OWL.JS Carousel Custom Styling */

.owl-carousel{
    margin-top: 20mm;
}

.owl-item{
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.6) !important;
    -webkit-filter: brightness(60%);
            filter: brightness(60%);
    transition: all 0.5s ease-in-out;
}

.owl-item.active{
    transform: scale(0.8) !important;
    -webkit-filter: brightness(70%);
            filter: brightness(70%);
    transition: all 0.5s ease-in-out;
}

.owl-item.active.center{
    transform: scale(1) !important;
    -webkit-filter: brightness(100%);
            filter: brightness(100%);
    transition: all 0.5s ease-in-out;
}

.owl-nav{
    margin-top: 10mm;
}

.owl-prev{
    margin-right: 5mm !important;
}

.owl-next{
    margin-left: 5mm !important;
}

.owl-prev:hover, .owl-next:hover{
    background: none !important;
}

.owl-prev img, .owl-next img{
    width: 10mm;
    height: auto;
    border-radius: 2mm;
}

.item h2{
    text-align: center;
}

.owl-nav{
    display: flex;
    justify-content: center;
}

/* END */

@media screen and (min-width: 1919px) {      /* NOTE: Destop Style */
    
    h1, .photoGallery a{
        font-size: 15mm;
    }
    h2{
        font-size: 12mm;
    }
    p, ul li a{
        font-size: 10mm;
    }
    nav{
        height: 35mm;
        padding-left: 15mm;
        padding-right: 15mm;
    }
    section{
        height: 150mm;
    }
    form .underline-center{
        max-width: 90mm;
        margin-bottom: 20mm;
    }
    form input, form textarea{
        height: 16mm;
        border: 2px solid gray;
        font-size: 7mm;
        border-radius: 4mm;
        padding-left: 4mm;
        padding-right: 4mm;
        margin-bottom: 10mm;
    }
    input[type="checkbox"]{
        width: 7mm;
        height: 7mm;
        border-radius: 2mm;
    }
    form label{
        font-size: 7mm;
    }
    input:not(input[type = 'checkbox']):user-invalid, textarea:user-invalid{
        border: 2px solid red;
    }
    form button{
        width: 60mm;
        height: 15mm;
        font-size: 8mm;
        border-radius: 25mm;
    }
    footer{
        height: 60mm;
        padding-left: 15mm;
        padding-right: 15mm;
    }
    footer img{
        width: 25mm;
    }
    .service-carousel{
        margin-top: 40mm;
    }
    .servicesList{
        width: 150mm;
        top: 35mm;
        padding-right: 20mm;
        padding-left: 20mm;
    }
    .servicesList a{
        font-size: 8mm;
        margin-top: 15mm;
    }
    .servicesList a:last-child{
        margin-bottom: 15mm;
    }
    .underline-center{
        max-width: 60mm;
        height: 2.5mm;
    }
    .carousel img{
        width: 800px;
    }
    @-webkit-keyframes horizontal-scroll-carousel {
        from{
            transform: translateX(0);
        }
        to{
            transform: translateX(calc(-800px * 5));
        }
    }
    @keyframes horizontal-scroll-carousel {
        from{
            transform: translateX(0);
        }
        to{
            transform: translateX(calc(-800px * 5));
        }
    }
    .services{
        height: 350mm;
        padding-left: 40mm;
        padding-top: 30mm;
        padding-right: 40mm;
    }
    .services h1, .certificates h1, .contact-form h1, .service .right h1{
        font-size: 23mm;
    }
    .services h2{
        width: 160mm;
    }
    .subtitle{
        font-size: 10mm;
    }
    .leaf-big-right, .leaf-right{
        right: 40mm;
        height: 90mm;
    }
    .contact-form, .service{
        height: 350mm;
    }
    .service .left{
        padding-left: 15mm;
        padding-right: 15mm;
    }
    .contact-form .leaf{
        width: 50mm;
    }
    .certificates{
        height: 300mm;
    }
    .certificates .tree{
        width: 160mm;
    }
    .certificates .leaf-right{
        height: 60mm;
    }
    .owl-nav{
        margin-top: 15mm;
    }
    .owl-prev img, .owl-next img{
        width: 15mm;
        border-radius: 3mm;
    }
    .contacts-links a, .contacts-links div{
        font-size: 8mm;
        margin-right: 15mm;
    }
    .contacts-links div{
        margin-right: 0;
    }
    .contacts-links a img{
        height: 8mm;
        margin-right: 4mm;
    }
    .contacts-links div a img{
        height: 9mm;
    }
    .photoGallery, .servicePhotos{
        margin-bottom: 20mm;
    }
    .servicePhotos{
        grid-template-columns: repeat(2, 160mm);
        gap: 4mm;
    }
    .servicePhotos div{
        width: 160mm;
        height: 90mm;
    }
    .servicePhotos .leaf, .servicePhotos .leaf-right{
        height: 60mm;
    }
}

@media screen and (max-width: 1366px){      /* NOTE: Large Laptops Style */
    
    .leaf-big-right, .leaf-right{
        height: 70mm;
    }
    .right img{
        height: 55%;
    }
    .certificates .subtitle{
        margin-top: 40mm;
    }
    .certificates .tree{
        width: 30%;
    }
    .certificates .leaf-right{
        height: 45mm;
    }
    .servicePhotos{
        grid-template-columns: repeat(2, 120mm);
    }
    .servicePhotos div{
        width: 120mm;
        height: 60mm;
    }
    .servicePhotos .leaf, .servicePhotos .leaf-right{
        height: 30mm;
    }
}

@media screen and (max-width: 1024px) {      /* NOTE: Laptop Style */
    
    nav{
        height: 25mm;
    }
    form{
        height: 100%;
    }
    form .underline-center{
        max-width: 60mm;
    }
    form textarea{
        max-height: 50mm;
    }
    .servicesList{
        top: 25mm;
        padding-right: 15mm;
        padding-left: 15mm;
    }
    .servicesList a{
        font-size: 5mm;
    }
    .underline-center{
        max-width: 40mm;
        height: 1.5mm;
    }
    .services{
        height: 280mm;
        padding-left: 10mm;
        padding-right: 10mm;
    }
    .leaf-big-right, .leaf-right{
        right: 10mm;
        height: 40mm;
    }
    .services h2{
        width: 110mm;
    }
    .services h1, .certificates h1, .contact-form h1, .service .right h1{
        font-size: 14mm;
    }
    .leaf-big-right, .leaf-right{
        height: 60mm;
    }
    .service{
        flex-direction: column;
        height: auto;
    }
    .service .left, .service .right{
        width: 100%;
        height: auto;
        margin-bottom: 10mm;
    }
    .contact-form .left{
        width: 100%;
    }
    .contact-form .right{
        display: none;
    }
    .certificates{
        height: 230mm;
    }
    .certificates .subtitle{
        margin-top: 40mm;
    }
    .certificates .tree{
        width: 30%;
    }
    .certificates .leaf-right{
        height: 45mm;
    }
    .contacts-links{
        flex-direction: column;
        align-items: flex-start;
        box-sizing: border-box;
        padding-left: 10mm;
        padding-right: 10mm;
        height: 70mm;
        margin-top: 5mm;
        margin-bottom: 5mm;
    }
    .contacts-links a, .contacts-links div{
        margin-right: 0;
        margin-top: 5mm;
    }
    .contacts-links div a:nth-child(2){
        margin-left: 2.5mm;
    }
    .photoGallery a{
        grid-column: span 3;
        font-size: 11mm;
        margin-bottom: 5mm;
    }
    .servicePhotos{
        grid-template-columns: repeat(3, 55mm);
    }
    .servicePhotos div{
        width: 55mm;
        height: 55mm;
    }
    .servicePhotos .leaf, .servicePhotos .leaf-right{
        height: 20mm;
    }
}

@media screen and (max-width: 768px) {      /* NOTE: Tablet Style */
    
    h1{
        font-size: 11mm;
    }
    h2{
        font-size: 8mm;
    }
    p, ul li a{
        font-size: 6mm;
    }
    nav{
        height: 25mm;
    }
    section{
        height: 100mm;
    }
    form{
        height: 100%;
    }
    form .underline-center{
        max-width: 60mm;
    }
    form label{
        font-size: 5mm;
    }
    form textarea{
        max-height: 50mm;
    }
    .servicesList{
        top: 25mm;
        width: 80mm;
        padding-right: 15mm;
        padding-left: 15mm;
    }
    .servicesList a{
        font-size: 5mm;
    }
    .welcome p{
        width: 75%;
    }
    .underline-center{
        max-width: 35mm;
        height: 1.5mm;
    }
    .subtitle{
        font-size: 6mm;
    }
    .services{
        height: 280mm;
        padding-left: 10mm;
        padding-right: 10mm;
    }
    .services h2{
        width: 70%;
    }
    .services h1, .certificates h1, .contact-form h1, .service .right h1{
        font-size: 14mm;
    }
    .leaf-big-right, .leaf-right{
        right: 10mm;
        height: 40mm;
    }
    .grass{
        width: 200%
    }
    .contact-form{
        height: 230mm;
    }
    .service{
        flex-direction: column;
        height: auto;
    }
    .service .left, .service .right{
        width: 100%;
        height: auto;
        margin-bottom: 10mm;
    }
    .contact-form .left{
        width: 100%;
    }
    .contact-form .right{
        display: none;
    }
    .contact-form .leaf{
        top: 10mm;
        width: 35mm;
    }
    .certificates{
        height: 220mm;
    }
    .certificates .subtitle{
        margin-top: 20mm;
    }
    .certificates .tree{
        width: 35%;
    }
    .certificates .leaf-right{
        height: 30mm;
    }
    .contacts-links{
        flex-direction: column;
        align-items: flex-start;
        box-sizing: border-box;
        padding-left: 10mm;
        padding-right: 10mm;
        height: 70mm;
        margin-top: 5mm;
        margin-bottom: 5mm;
    }
    .contacts-links a, .contacts-links div{
        margin-right: 0;
        margin-top: 5mm;
    }
    .contacts-links div a:nth-child(2){
        margin-left: 2.5mm;
    }
    .photoGallery a{
        grid-column: span 2;
        font-size: 9mm;
        margin-bottom: 5mm;
    }
    .servicePhotos{
        grid-template-columns: repeat(2, 55mm);
        gap: 1mm;
    }
    .servicePhotos div{
        width: 55mm;
        height: 55mm;
    }
    .servicePhotos .leaf, .servicePhotos .leaf-right{
        height: 20mm;
    }
}

@media screen and (max-width: 570px){
    .leaf-big-right, .leaf-right{
        height: 35mm;
    }
    .services{
        height: 320mm;
    }
}

@media screen and (max-width: 560px) {     /* NOTE: Mobile Phones Style */
    
    h1{
        font-size: 8mm;
    }
    h2{
        font-size: 6mm;
    }
    p, ul li a{
        font-size: 4mm;
    }
    nav{
        padding-left: 5mm;
        padding-right: 5mm;
        height: 20mm;
    }
    nav ul{
        display: none;
    }
    section{
        height: 70mm;
    }
    form{
        height: 100%;
    }
    form .underline-center{
        max-width: 40mm;
    }
    form input, form textarea{
        height: 10mm;
        font-size: 4mm;
        border-radius: 2mm;
    }
    input[type="checkbox"]{
        width: 4mm;
        height: 4mm;
    }
    form label{
        font-size: 4mm;
    }
    form textarea{
        max-height: 45mm;
    }
    form button{
        width: 45mm;
        border-radius: 15mm;
    }
    form #response{
        margin-top: 10mm;
    }
    .service form #response{
        margin-top: 5mm;
    }
    footer{
        flex-direction: column;
        justify-content: center;
    }
    footer img{
        position: absolute;
        bottom: 2mm;
        left: 2mm;
        width: 10mm;
    }
    footer p{
        width: 100%;
    }
    .servicesList{
        display: none;
    }
    #menu-button{
        display: flex;
    }
    #mobileMenu{
        display: flex;
        max-height: 13mm;
    }
    .welcome p{
        width: 80%;
    }
    .underline-center{
        max-width: 30mm;
        height: 1.5mm;
    }
    .banner-bg{
        height: 70mm;
    }
    .service-carousel{
        margin-top: 15mm;
    }
    .carousel img{
        width: 100%;
    }
    @-webkit-keyframes horizontal-scroll-carousel{
        to{
            transform: translateX(-500%)
        }
    }
    @keyframes horizontal-scroll-carousel{
        to{
            transform: translateX(-500%)
        }
    }
    .subtitle{
        font-size: 5mm;
    }
    .services{
        height: 260mm;
        padding-left: 10mm;
        padding-right: 10mm;
    }
    .services h2{
        width: 70%;
    }
    .services h1, .certificates h1, .contact-form h1, .service .right h1{
        font-size: 11mm;
    }
    .leaf-big-right, .leaf-right{
        right: 10mm;
        height: 30mm;
    }
    .grass{
        width: 300%
    }
    .contact-form{
        height: 230mm;
    }
    .service{
        flex-direction: column;
        height: auto;
    }
    .service .left, .service .right{
        width: 100%;
        height: auto;
        margin-bottom: 10mm;
    }
    .contact-form .left{
        width: 100%;
    }
    .contact-form .right{
        display: none;
    }
    .contact-form .leaf{
        top: 10mm;
        width: 25mm;
    }
    .certificates{
        height: 260mm;
    }
    .certificates .subtitle{
        margin-top: 50mm;
    }
    .certificates .tree{
        width: 100%
    }
    .certificates .leaf-right{
        display: none;
    }
    .contacts-links{
        flex-direction: column;
        align-items: flex-start;
        box-sizing: border-box;
        padding-left: 10mm;
        padding-right: 10mm;
        height: 70mm;
        margin-top: 5mm;
        margin-bottom: 5mm;
    }
    .contacts-links a, .contacts-links div{
        margin-right: 0;
        margin-top: 5mm;
    }
    .contacts-links div a:nth-child(2){
        margin-left: 2.5mm;
    }
    .photoGallery a{
        font-size: 7mm;
        margin-bottom: 5mm;
    }
    .servicePhotos{
        grid-template-columns: repeat(2, 40mm);
        gap: 1mm;
    }
    .servicePhotos div{
        width: 40mm;
        height: 40mm;
    }
    .servicePhotos .leaf, .servicePhotos .leaf-right{
        display: none;
    }
    .owl-prev{
        margin-right: 2.5mm !important;
    }
    .owl-next{
        margin-left: 2.5mm !important;
    }
    .owl-prev img, .owl-next img{
        width: 8mm;
        border-radius: 1mm;
    }
}

@media screen and (max-width: 330px){       /* NOTE: Foldable Phones */

    h1{
        font-size: 7mm;
    }
    h2{
        font-size: 5mm;
    }
    p, ul li a{
        font-size: 3mm;
    }
    nav{
        padding-left: 5mm;
        padding-right: 5mm;
        height: 20mm;
    }
    nav ul{
        display: none;
    }
    section{
        height: 70mm;
    }
    form .underline-center{
        max-width: 40mm;
    }
    form input, form textarea{
        height: 7mm;
        border-radius: 1.5mm;
        border: 1px solid gray;
        font-size: 3mm;
    }
    input[type="checkbox"]{
        width: 3mm;
        height: 3mm;
        border: 1px solid rgb(77, 77, 77);
    }
    form label{
        font-size: 3mm;
    }
    form textarea{
        max-height: 35mm;
    }
    input:not(input[type = 'checkbox']):user-invalid, textarea:user-invalid{
        border: 1px solid red;
    }
    form button{
        width: 35mm;
        height: 7mm;
        font-size: 5mm;
        border-radius: 15mm;
        margin-top: 2mm;
        margin-bottom: 2mm;
    }
    form #response{
        margin-top: 10mm;
    }
    .service form #response{
        margin-top: 5mm;
    }
    footer{
        height: 35mm;
        flex-direction: column;
        justify-content: center;
    }
    footer img{
        position: absolute;
        bottom: 2mm;
        left: 2mm;
        width: 7mm;
    }
    footer p{
        width: 100%;
    }
    #menu-button{
        display: flex;
    }
    #mobileMenu{
        display: flex;
        max-height: 13mm;
    }
    .welcome p{
        width: 80%;
    }
    .underline-center{
        max-width: 20mm;
        height: 1mm;
    }
    .banner-bg{
        height: 60mm;
    }
    .service-carousel{
        margin-top: 15mm;
    }
    .carousel img{
        width: 100%;
    }
    @-webkit-keyframes horizontal-scroll-carousel{
        to{
            transform: translateX(-500%)
        }
    }
    @keyframes horizontal-scroll-carousel{
        to{
            transform: translateX(-500%)
        }
    }
    .subtitle{
        font-size: 4mm;
    }
    .services{
        height: 190mm;
        padding-left: 5mm;
        padding-right: 5mm;
    }
    .services h2{
        width: 70%;
    }
    .services h1, .certificates h1, .contact-form h1, .service .right h1{
        font-size: 9mm;
    }
    .leaf-big-right, .leaf-right{
        right: 5mm;
        height: 25mm;
    }
    .grass{
        width: 300%
    }
    .contact-form{
        height: 190mm;
    }
    .service{
        flex-direction: column;
        height: auto;
    }
    .service .left, .service .right{
        width: 100%;
        height: auto;
        margin-bottom: 10mm;
    }
    .contact-form .left{
        width: 100%;
    }
    .contact-form .right{
        display: none;
    }
    .contact-form .leaf{
        top: 10mm;
        width: 15mm;
    }
    .certificates{
        height: 210mm;
    }
    .certificates .subtitle{
        margin-top: 50mm;
    }
    .certificates .tree{
        width: 100%
    }
    .certificates .leaf-right{
        display: none;
    }
    .contacts-links{
        padding-left: 5mm;
        padding-right: 5mm;
    }
    .contacts-links a, .contacts-links div{
        margin-right: 0;
        margin-top: 5mm;
        font-size: 4mm;
    }
    .contacts-links a img{
        height: 4mm;
    }
    .contacts-links div a img{
        height: 5mm;
    }
    .contacts-links div a:nth-child(2){
        margin-left: 2.5mm;
    }
    .photoGallery a{
        font-size: 5mm;
        margin-bottom: 5mm;
    }
    .servicePhotos{
        grid-template-columns: repeat(2, 30mm);
        gap: 1mm;
    }
    .servicePhotos div{
        width: 30mm;
        height: 30mm;
    }
    .servicePhotos .leaf, .servicePhotos .leaf-right{
        display: none;
    }
    .owl-prev{
        margin-right: 2.5mm !important;
    }
    .owl-next{
        margin-left: 2.5mm !important;
    }
    .owl-prev img, .owl-next img{
        width: 6mm;
        border-radius: 1mm;
    }
}