     *,
 *::before,
 *::after {
     box-sizing: border-box;
}
/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Smooth Scroll */
  html, body {
  scroll-behaviour: smooth;
  overflow-x : clip;
  
}
/* Typographic tweaks! 4. Add accessible line-height 5. Improve text rendering */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scrollbar-gutter: stable;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
/* 6. Improve media defaults */
  img,svg,video,picture {
  max-width: 100%;
  height: auto;
}
/* 7. Remove built-in form typography styles */
input, button, textarea, select {
  font: inherit;
}
/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* fade in */
@keyframes appear {
from {
opacity: 0;
scale: 1;
/* transform:translateX(-100px);
clip-path: inset(100% 100% 0 0); */
}
to {
opacity: 1;
scale: 1;
transition: 2s;
/* transform:translateX(0px);
clip-path: inset(0 0 0 0); */
}
}

/* the class given to each element */

.element {
animation: appear linear;
animation-timeline: view();
animation-range: entry 0% cover 10%;
}

/** start main styles **/

        /*masthead */
  .masthead {
    display:grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto;
    gap: 1rem;
  }
  .logo {
    padding: 1rem;
    text-align: center;

  }
  .contact {
    padding: 1rem;
    background-color: white;
    text-align: right;
  }
 /*navigation */
 .navigation {
    background-color: white;
 }

 .head-image {
    width: 100%;
    margin-top: 50px;
    /*todo padding to clear menu on large screen */
 }

 .full {
    width: 100%;
    padding: 1rem;
    text-align: center;
 }

/* 6 boxes */
.box-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    
}
.box-one {
    text-align: center;
    padding: 1rem;
}
.box-two {
    text-align: center;
    padding: 1rem;
}
.box-three {
    text-align: center;
    padding: 1rem;
}
.box-four {
    text-align: center;
    padding: 1rem;
}
.box-five {
    text-align: center;
    padding: 1rem;
}
.box-six {
    text-align: center;
    padding: 1rem;
}

/* four boxes */
.box-four-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
}
.first {
    background-color: #FAFAF8;
    text-align: center;
    border-radius: 25px;
    padding-bottom: 1rem;
}
.second {
    background-color: #FAFAF8;
    text-align: center;
    border-radius: 25px;
    padding-bottom: 1rem;

}
.third {
    background-color: #FAFAF8;
    text-align: center;
    border-radius: 25px;
    padding-bottom: 1rem;
}
.fourth {
    background-color: #FAFAF8;
    text-align: center;
    border-radius: 25px;
    padding-bottom: 1rem;
}

/* three box wrapper */
.three-box-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    
}
.first-box {
    padding: 1rem;
    background-color: #FAFAF8;
    border-radius: 25px;
    text-align: center;
}
.second-box {
    padding: 1rem;
     background-color: #FAFAF8;
     border-radius: 25px;
     position: relative;
}
.third-box {
    padding: 1rem;
     background-color: #FAFAF8;
     border-radius: 25px;
}

/*fift-fifty section */
.fifty {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}
.left-fifty {
    background-color: white;
    padding: 1rem;
}
.right-fifty {
    background-color: white;
    padding: 1rem;
}

/* footer */
.footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 2rem;
    background-color: hsl(218, 98%, 17%);
    color: white;
}
.footer-one {
    padding: 1rem;
}
.footer-two {
    padding: 1rem;
}
.footer-three {
    padding: 1rem;
}
.footer-four {
    padding: 1rem;
}
.footer-five {
    padding: 1rem;
}

/*bottom page link */
.bottom-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    color: white;
    background-color: hsl(218, 98%, 17%);
}
.link-left {
    padding: 1rem;
}
.link-right {
    padding: 1rem;
    text-align: right;
}

.full-color {
    background-color: #00224F;
}

/*todo COPILOT HELP TO ENSURE BUTTON STAY AT BOTTOM OF DIV */

.service-box {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.service-box .button {
    margin-top: auto;
}


.button {
    display: inline-block;
    padding: 12px 28px;
    background: #4D7713;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    font-weight: 400;
    transition: background 0.3s ease, transform 0.2s ease;
}

.button:hover {
    background: #000;
    transform: translateY(-2px);
}

/*TODO END OF BOTTOM OF COPILOT DIV HELP */


/*todo fonts  fonts*/

h1 {
    font-size: clamp(0.875rem, 0.6978rem + 0.8861vw, 1.75rem);
    margin-bottom: 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-bottom: 20px;
    color: #012056;

}

h2 {
           font-size: clamp(0.875rem, 0.7484rem + 0.6329vw, 1.2rem);
    margin-bottom: 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #012056;

}
h3 {
        font-size: clamp(0.875rem, 0.7484rem + 0.6329vw, 1.5rem);
    margin-bottom: 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #012056;
}
h4 {
    font-size: clamp(0.875rem, 0.7484rem + 0.6329vw, 1.5rem);
    margin-bottom: 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #012056;
}
h5 {
    font-size: clamp(0.875rem, 0.8244rem + 0.2532vw, 1.125rem);
    margin-bottom: 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #012056;
}
p {
font-size: clamp(0.875rem, 0.8244rem + 0.2532vw, 1.125rem);
color: #012056;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
padding-bottom: 1rem;
}
.whitefont {
    color: white;
}

.fonttel {
    font-size: 1.3em;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.round {
    border-radius: 8px;
}

/*buttons */
	#btn a:link, a:visited {
	 background-color: #4D7713;
     font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	 color: white;
     font-size: 12px;
	 padding: 12px 21px;
	 text-align: center;
	 text-decoration: none;
	 display: inline-block;
	 transition-duration: 0.4s;
	 font-size: medium;
	 border-radius: 8px;
   }
   
	#btn a:hover, a:active {
	 background-color: #061630;
	 color:white;
   }

	#btn1 a:link, a:visited {
	 background-color: transparent;
     font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	 color: white;
     font-size: 12px;
	 padding: 11px 21px;
	 text-align: center;
	 text-decoration: none;
	 display: inline-block;
	 transition-duration: 0.4s;
	 font-size: medium;
	 border-radius: 8px;
     border: 2px solid white;
   }
   
	#btn1 a:hover, a:active {
	 color:white;
     background-color: #4D7713 ;
   }


   /*links*/
   .footer-three a:link {
    text-decoration: none;
    list-style-image: url(../images/listicon.png);
    line-height: 1.5;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
   }