*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html {
    scroll-behavior: smooth;
}


::selection {
    background: #5FAD56;
    color: #ffffff;
}

::-moz-selection {
    background: #5FAD56;
    color: #ffffff;
}


@import url('https://fonts.googleapis.com/css2?family=Beth+Ellen&display=swap');

.card img{
    width:100%;
    aspect-ratio:8/5;
    object-fit:cover;
    display:block;
}


.divider{
    width:100%;
    height:1px;
    background:#222;
    margin:0 auto;
}



.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #444;
    border-radius: 50%;

    background: #1e2620;
    color: #fff;

    text-decoration: none;
    font-size: 2rem;
    line-height: 1;

    transition: all 0.2s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-3px);
    border-color: #666;
}

a:hover {
    color: #5FAD56;
}


nav{
    display:flex;
    gap:24px;
}

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#1e2620;
}



.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:2rem;
    cursor:pointer;
}


body {
   font-family: "Arial", serif;
 font-size: 16px;
  font-weight: 300;
	line-height: 20px;
  font-style: normal;
	 background:#1e2620;
	color: white;
}








h2 {
  font-family: "Beth Ellen", "Arial", "sans-serif";
 font-size: 38px;
  font-weight: 300;
	line-height: 35px;
  font-style: normal;
	 background:#1e2620;
	color: white;
}


h3 {
  font-family: "Beth Ellen", "Arial", "sans-serif";
 font-optical-sizing: auto;
  font-weight: 400;
		line-height: 70px;
  font-style: normal;
color: white;
}





h4 {
 font-family: "Arial", serif;
  font-size: 20px;
  font-weight: 5	00;
	line-height: 20px;
  font-style: normal;
	color: white;
}




h5{
 font-family: "Arial", serif;
  font-size: 22px;
  font-weight: 300;
	line-height: 30px;
  font-style: normal;
	 background:#1e2620;
	color: white;
}






.container{
    width:min(1100px,90%);
    margin:auto;
}

header{
    padding:30px 0;
    position:sticky;
    top:0;
    background:#1e2620;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}


#header-logo {
    width: 200px; /* adjust to whatever size you want */
}

h1 a{
    color:#ffffff;
    text-decoration:none;
}


h4 {
	font-size: 19px;
}


h2, h3 {
  font-family: "Beth Ellen", "Arial", "sans-serif";
 font-optical-sizing: auto;
  font-weight: 400;
		line-height: 70px;
  font-style: normal;
color: white;
}



.tags {
	font-size:14px;
	margin-top: -10px;
}

nav a{
    color:#ffffff;
    text-decoration:none;
}

nav a:hover {
    color:#5FAD56;
     text-decoration:none;
}


a,
a:visited {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: #5FAD56;
}


.hero{
 padding: 60px 0px 30px 0px;
}




.hero-grid{
    display:grid;
	  grid-template-columns:1fr 400px;
    gap:60px;
    align-items:center;
}



.eyebrow{
    color:#FFF;
    margin-bottom:20px;
}


@media(max-width:768px){
.eyebrow{
    color:#FFF;
    margin-bottom:20px;
	margin-top: -45px;
	}
}



.hero .contact h2{
    font-size:4rem;
    line-height:1.1;
    margin-bottom:20px;
}

.buttons{
    margin-top:30px;
    display:flex;
    gap:15px;
	
	
}

a.button {
    display:inline-block;
    background:#ffffff;
    color:#000000;
    padding:12px 24px;
    text-decoration:none;
    border-radius:8px;
}

a.button:hover {
    background:#5FAD56;
    color:#ffffff;
}

a.button.secondary {
    background:#222;
    color:#ffffff;
}


a.button.secondary:hover {
    background:#5FAD56;
    color:#ffffff;
}



.section {
    padding: 0px 0px 60px 0px;
}


	







.section h3{
    font-size:2rem;
    margin-bottom:40px;
}




@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    nav{
        display:none;
    }

    nav.active{
        display:flex;
        flex-direction:column;
        position:absolute;
        top:100%;
        right:0;
        width:200px;
        background:#171717;
        padding:20px;
        border-radius:12px;
        gap:15px;
        z-index:1001;
    }

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero h2{
        font-size:2.5rem;
    }

    header .container{
        position:relative;
    }

    .eyebrow{
        margin-top:-45px;
    }

}





a:hover,
a:focus,
h1 a:hover,
nav a:hover,
.card a:hover,
#contact a:hover {
    color:#5FAD56;
}


footer{
    padding:60px 0;
    border-top:1px solid #222;
}
