main {
    width: 100%;
    height: 62.2vh;
    display: flex;
    align-items: center;
}
html, body {
    overflow-x: hidden; 
    overflow-y: scroll;
    width: 100vw;}
* {
    text-decoration: none;
    margin: 0;
    padding: 0;
    resize: none;
}
body {
    background-color: #f2f0ef !important;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    max-width: 100vw;
}
.background-img {
    position: absolute;
    background-image: url('/img/Screenshot\ 2024-10-28\ at\ 8.14.14\ PM.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 80vh;
    top: 0;
    right: 0;
    left: 0;
    z-index: -3;
    margin-bottom: 20rem;
}
.overlay {
    position: absolute;
    background-color: rgba(88, 92, 89, 0.8);
    width: 100%;
    height: 80vh;
    top: 0;
    right: 0;
    left: 0;
    z-index: -2;
}
.container {
    width: fit-content;
    height: fit-content;
    display: block;
    margin: 0 auto 22rem auto;
}
.subContainer {
    width: 68%;
    height: fit-content;
    display: block;
    margin: auto;
}
.subfont {
    font-family: "Hahmlet", serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.mainfont {
    font-family: "Lato", serif;
    font-style: normal;
}
.logo, .logoImg {
    width: 10rem;
    height: 15vh;
    background-image: url("../img/SEEDS__1_-removebg-preview.png");
    background-size: cover;
    background-position: center;
}
.navDiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto 0 auto;
    padding: 0 25rem;
    height: 20vh;
    z-index: 99;
}
.navBtns {
    list-style-type: none;
    display: inline-block;
    margin-right: 3rem;
}
.navBtns a {
    color: white;
    font-size: 1.5rem;
}
.navBtns a:hover {
    color: #9baa8c;
    border-bottom: #9baa8c solid 2px;
    z-index: 2;
}
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 15rem;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    background-color: #9baa8c;
}
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 1.3rem;
    z-index: 1;
}
.dropdown {
    position: relative;
    display: inline-block;
    z-index: 1;
}
.dropdown-content a:hover {
    background-color: rgba(88, 92, 89, 0.8);
    border-left: solid #000 10px;
    z-index: 1;
}
.dropdown:hover .dropdown-content {
    display: block;
    z-index: 1;
}
.dropdown:hover #content {
    z-index: 1;
}
.mainDescContainer {
    width: 63%;
    height: fit-content;
    margin: auto;
    padding: 5rem;
}
.mainTitle, .mainTitleP2 {
    font-size: 4rem;
    font-weight: 300;
    color: #d3d3d3;
}
.mainTitleP2 {
    color: #a9ba9d;
}
.mainDesc {
    font-size: 1.3rem;
    font-weight: 300;
    color: #d3d3d3;
    margin-top: 2rem;
    width: 70%;
}
.container-2, .container {
    display: block;
    margin: 6rem auto 4rem auto;
    border: solid rgba(208, 217, 205, 0.8) 1px;
    width: 54%;
    height: fit-content;
    background-color: rgba(208, 217, 205, 0.8);
    padding: 4rem 6rem;
}
.container-2 {
    margin-top: 2rem;
}
.container {
    height: 40vh;
}
.subsubContainer, .sub2Container {
    display: flex;
    align-items: start;
}
.sub2Container {
    margin-top: 1.3rem;
}
.issues {
    display: inline-block;
    width: 45%;
    margin-right: 1.8rem;
}
.what-we-do, .contactText {
    color: #5F7367;
}
.what-title {
    font-weight: lighter;
    font-size: 3.1rem;
    margin-bottom: 2rem;
}
.sub-title {
    font-weight: 500;
    font-size: 1.5rem;
    margin: 1rem 0;
}
.sub-description, .subContactText {
    font-weight: 400;
    font-size: 1rem;
}
.mobileNavbar {
    position: relative;
    z-index: 10;
    display: none;
    padding: 1rem;
}
.showingNavbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}
.open-btn {
    display: block;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    background-color: transparent;
    border: none;
    color: white;
}
.side-nav {
    position: fixed;
    top: 0;
    left: -500px;
    width: 200px;
    height: 100%;
    background-color: #344c3d;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1rem;
    transition: right 0.3s ease; 
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
}
.side-nav.active {
    left: 0; 
}
.close-btn {
    align-self: flex-end;
    font-size: 2rem;
    background: none;
    border: none;
    color: white !important;
    cursor: pointer;
    margin-bottom: 1rem;
}
.close-btn * {
    color: white !important;
}
.close-btn {
    color: white !important;
}
.side-nav ul {
    list-style: none;
    width: 100%;
}
.side-nav ul li {
    margin: 1rem 0;
}
.side-nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem 0;
    transition: color 0.2s;
    margin-bottom: 1rem;
}
.side-nav ul li a:hover {
    color: black;
}
@media screen and (max-width: 1600px) {
    .navDiv {
        padding: 0 10rem;
    }
    .mainDescContainer {
        padding: 1rem 3rem;
        margin-top: 0.5rem;
    }
    .logo {
        width: 8rem;
    }
    .mainDesc {
        font-size: 1rem;
    }
    .mainTitle, .mainTitleP2 {
        font-size: 3rem;
    }
    .container-2, .container {
        width: 60%;
    }
    .container {
        height: fit-content;
    }
}
@media screen and (max-width: 1100px) {
    .navDiv {
        padding: 0 5rem;
    }
    .navBtns a:hover {
        color: #9baa8c;
        border-bottom: #9baa8c solid 2px;
        z-index: 2;
    }
    .mainDescContainer {
        width: 100%;
        padding: 3rem;
    }
    .container-2, .container {
        margin: 3rem auto 2rem auto;
        width: 80%;
        padding: 1rem 2rem;
    }
    .container {
        height: 60vh;
    }
    .what-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .sub-title {
        font-size: 1rem;
    }
    .sub-description, .subContactText {
        font-size: 0.8rem;
    }
}
@media screen and (max-width: 800px){
    .navDiv {
        display: none;
    }
    .mobileNavbar {
        display: block;
    }
    .logoImg {
        width: 6rem;
        height: 13vh;
    }
    .mainTitle, .mainTitleP2 {
        font-size: 2.5rem;
    }
    .container, .container-2 {
        border: none;
        width: 100%;
        padding: 1rem;
    }
    .mainsubcontainer {
        width: 100%;
    }
    .sub2Container, .subsubContainer {
        display: flex;
        align-items: start;
        justify-content: center;
    }
    .sub2Container {
        margin-top: 1.4rem;
    }
}
@media screen and (max-width: 500px) {
    .mainTitle, .mainTitleP2 {
        font-size: 2rem;
        width: 100%;
    }
    .mainDescContainer {
        padding: 1rem;
        width: 100%;
    }
    .mainDesc {
        font-size: 0.8rem;
        width: 100%;
    }
    .sub2Container {
        margin-top: 0.8rem;
    }
    .container, .container-2 {
        padding: 0.3rem;
    }
    .container {
        height: fit-content;
    }
    .issues {
        padding: 0.7rem;
    }
}