@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 18px;
}

body {
  font-family: 'Exo 2', sans-serif;
  color: #000;
  text-indent: 0;
  word-spacing: normal;
  line-height: normal;
  letter-spacing: normal;
}

a {
  /* text-decoration: none; */
  color: #006400;
}
footer a, button a{
  text-decoration: none;
}
a:hover:not(footer a):not(button a) {
  color: #003c00;
}
a:active, a:focus {
  color: #003c00;
}
h1 {
  font-size: 27px;
}

h1,
h2,
h3 {
  color: #003c00;
}

button:not(.hamburger-menu):not(.chevron) {
  border-radius: 100px;
  background: #006400;
  border-width: 0;
  padding: 11px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: all 100ms ease-in;
}
button:hover {
  background: #003c00;
}
main {
  margin-top: 75px;
}
tr:nth-child(even) {
  background: #cff;
}
tr:nth-child(odd) {
  background: #fff;
}
p::first-letter {
  text-transform: uppercase;
}
aside.breadcrumbs {
  padding: 24px 0;
  font-size: 12px;
  color: #006400;
}

/* Navbar begin */
nav.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 75px;
  width: 100%;
  background: #003c00;
  z-index: 9999;
}

nav.top-nav>img {
  display: block;
  position: absolute;
  top: 7px;
  left: 50%;
  height: 64px;
  width: 300px;
  transform: translateX(-50%);
}

nav.top-nav>ul {
  position: absolute;
  top: 64px;
  list-style: none;
  width: 300px;
  transition: all 0.2s;
  transform: translateX(-100%);
}

nav.top-nav>ul.open {
  transform: translateX(0%);
}

nav.top-nav>ul>li {
  padding: 2% 24px;
  width: 100%;
  background: #003c00;
  transition: all 0.2s;
}

nav.top-nav>ul>li>a {
  color: #fff;
  font-size: 18px;
  width: 100%;
  display: block;
  text-decoration: none;
}
nav.top-nav>ul>li>a:hover {
  color: #fff;
}

nav>.hamburger-menu {
  width: 48px;
  height: 24px;
  margin: 24px 14px;
  cursor: pointer;
  background: none;
  border-style: none;
  border-color: #fff;
}

.hamburger-menu>.hamburger-menu-lines {
  background: #fff;
  height: 4px;
  width: 48px;
  position: relative;
  display: block;
}

.hamburger-menu>.hamburger-menu-lines::before {
  background: #fff;
  height: 4px;
  width: 48px;
  content: ' ';
  display: block;
  position: relative;
  top: -17px;
}

.hamburger-menu>.hamburger-menu-lines::after {
  background: #fff;
  height: 4px;
  width: 48px;
  content: ' ';
  display: block;
  position: relative;
  top: 13px;
}
@media (max-width: 768px) {
  nav.top-nav>ul {
    width: 100%;
    text-align: center;
  }
  nav.top-nav>img {
    display: block;
    position: absolute;
    top: 7px;
    height: 64px;
    width: 300px;
    left: 27%;
    transform: unset;
  }
}

/* Navbar end */
/* Footer begin */
footer {
  margin-top: 100px;
  padding-top: 30px;
  background: #003c00;
  display: grid;
  grid-template-columns: 25% 50% 25%;
}

footer a,
footer h3 {
  color: #fff;
}

footer h3 {
  font-size: 24px;
  font-weight: 400;
}

footer section:nth-child(1) {
  grid-column: 1 / 2;
  padding-left: 60px;
}
footer ul {
  padding-left: 16px;
  color: #fff;
}

footer section:nth-child(2) {
  grid-column: 2 / 3;
  margin: 0 auto;
}

footer section:nth-child(2)>img {
  width: 385px;
  height: 100px;
}

footer section:nth-child(3) {
  grid-column: 3 / 4;
  margin-left: 30%;
}

footer section:nth-child(4) {
  grid-column: span 3;
  margin: 0 auto;
  padding-bottom: 20px;
  color: #fff;
}
@media (max-width: 768px) {
  footer {
    display: grid;
    grid-template-columns: 12.5% 75% 12.5%;
    gap: 10px 0;
    margin-top: 50px;
    padding-bottom: 20px;
  }
  footer section:nth-child(2)>img {
    width: 300px;
    height: 64px;
  }
  footer section:nth-child(3) {
    grid-column: 2 / 3;
    margin-left: 0;
  }
}
.first-fieldset {
  display: none;
}