* {
    margin: 0;
    padding: 0;
}
body {
    font-family: "Poppins", sans-serif;
}
html {
    scroll-behavior: smooth;
}
p {
    color: #396133
}

/* Transition on buttons*/
a, 
.btn {
    transition: all 500ms ease;
}

/* desktop navigation */
nav, 
.nav-links{
    display: flex;
}
nav {
    justify-content: space-around;
    align-items: center;
}
.desktop-nav {
    background-color: #ffffff;
    height: 17vh;
}
.nav-links {
    gap: 2rem;
    list-style: none;
    font-size: 1.2rem;
}
a {
    color: #3F6638;
    text-decoration: none;
    text-decoration-color: #ffffff;
}
a:hover {
    color: #879F85;
    text-decoration: underline;
    text-underline-offset: 1rem;
}
.logo {
    margin-top: 10px;
}
.logo:hover {
    cursor: pointer;
}

/* hamburger menu */
#hamburger-nav {
    display: none;
}
.hamburger-menu {
    position: relative;
    display: inline-block;
}
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
}
.hamburger-icon span{
    width: 100%;
    height: 2px;
    background-color: black;
    transition: all 0.3 ease-in-out;
}
.menu-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #DFE0E1;
    width: fit-content;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3 ease-in-out;
}
.menu-links a {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 1.2rem;
    color: black;
    text-decoration: none;
    transition: all 0.3 ease-in-out;
}
.menu-links li {
    list-style: none;
}
.menu-links.open {
    max-height: 300px;
}
.hamburger-icon.open span:first-child {
    transform: rotate(45deg) translate(10px, 5px);
}
.hamburger-icon.open span:nth-child(2) {
    opacity: 0;
}
.hamburger-icon.open span:last-child {
    transform: rotate(-45deg) translate(10px, -5px);
}
.hamburger-icon span:first-child {
    transform: none;
}
.hamburger-icon span:first-child {
    opacity: 1;
}
.hamburger-icon span:first-child {
    transform: none;
}


/* landing pc */

#landing {
    background-image: url(/assets/images/plant3.jpg);
    height: 83vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
#landing .landing_text {
    position: absolute;
    top: 50%;
    left: 10%;
    padding-right: 45%;
    background-color: transparent;
    text-decoration: none;
    font-weight: bold;
}
.landing_text_p1 {
    font-size: 25px;
    font-weight: 500;
}
.landing_text_p2 {
    font-size: 40px;
    font-weight: bold;
}
.btn {
    background-color: #396133;
    color: #ffffff;
    font-size: 1.2rem;
    margin-left: 0px;
    border: solid 3px #396133;
    border-radius: 30px;
    padding: 10px;
    margin-top: 30px;
}
.btn:hover{
    background-color: transparent;
    color: #396133;
    cursor: pointer;
}

.services {
    height: 100vh;
}

.services #services h1 {
    font-size: 35px;
    text-align: center;
    margin-top: 45px;
    color: #396133;
}

.services .row {
    margin-top: 5%;
    text-align: start;
    margin-left: 30px;
    margin-right: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.services .row .service-items {
    padding-top: 5px;
    color: #396133;
    background-color: #DFE0E1;
    text-align: center;
    border-radius: 5px;
    transition: transform .5s;
}
.services .row .service-items:hover {
    transform: scale(1.1);
    background-color: #7ABA78;
    cursor: pointer;
    color: #dadada;
}
.services .row .service-items i {
    font-size: 20px;
    color: #3F6638;
}
.services .row .service-items:hover i {
    color: #dadada;
}
.services .row .service-items h2 {
    font-weight: 30px;
    line-height: 1.6;
}
.services .row .service-items p {
    font-weight: bold;
    font-size: 15px;
}

/* Rates page */
.rates {
    height: 100vh;
}
.rates h1 {
    padding-top: 70px;
    font-size: 35px;
    text-align: center;
    color: #396133;
}
.list {
    margin-top: 50px;
    text-align: center;
    line-height: 70px;
}

/* contact page */
.contact {
    height: 100vh;
    text-align: center;
}
.contact h1 {
    padding-top: 25px;
    font-size: 35px;
    text-align: center;
    margin-top: 45px;
    color: #396133;
}

form {
    margin-top: 0%;
}

.form {
    padding-top: 10px;
    margin-top: 35px;
    font-weight: bold;
}

input[type=name] {
    width: 50%;
    height: 30px;
    align-self: center;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    border: 3px solid rgb(57, 97, 51);
    margin-top: 15px;
    transition: transform .1s;
}
input[type=name]:hover {
    transform: scale(1.02);
}

input[type=email] {
    width: 50%;
    height: 30px;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
    border: 3px solid rgb(57, 97, 51);
    transition: transform .1s;
}
input[type=email]:hover {
    transform: scale(1.02);
}

input[type=phone] {
    width: 50%;
    height: 30px;
    align-self: center;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
    border: 3px solid rgb(57, 97, 51);
    transition: transform .1s;
}
input[type=phone]:hover {
    transform: scale(1.02);
}
input[type=submit] {
    background-color: rgb(57, 97, 51);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    border-radius: 30px;
    transition: transform .4s;
    display: grid;
    margin: auto;
    margin-top: 10px;

}
input[type=submit]:hover {
    transform: scale(1.1);
}

h5 {
    margin-left: 0px;
    margin-top: 25px;
}

.map {
    padding-top: 35px;
    padding-bottom: 70px;
}

.footer {
    background-color: #396133;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
}
.copyright {
    text-align: center;
    font-size: 13px;
    display: grid;
    color: #dadada;
}
.facebook {
    background-color: #396133;
    color: aliceblue;
    border: none;
    font-size: 25px;
    margin-right: 15px;
}
.facebook a:link {
    color: #dadada;
}
.facebook a:visited {
    color: #dadada;
}
.whatsapp {
    background-color: #396133;
    color: aliceblue;
    border: none;
    font-size: 28px;
}
.whatsapp a:visited {
    color: #dadada;
}
.whatsapp a:link {
    color: #dadada;
}
.linkedin {
    background-color: #396133;
    color: aliceblue;
    border: none;
    font-size: 25px;
    margin-left: 15px;
}
.linkedin a:link {
    color: #dadada;
}
.linkedin a:visited {
    color: #dadada;
}
.icons {
    text-align: center;
}

