:root {
   --font-1-heading: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
   --font-2-subheading: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
   --font-3-body: 'Work Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
   --font-4-script: 'Dancing Script', cursive;

   --color-1: #004001;
   --color-2: #0e680e;
   --color-3: #008601;
   --color-4: #52c800;
   --color-5: #86c881;
   --color-6: #daeed9;

   --bg-1: #f5f7fb;
   --bg-2: #f5f7fb;
   --bg-footer: #004502;

   --accent-1: #ff8200;
   --accent-2: #ffb400;
   --accent-3: #ffda01;
   --accent-4: #ffef00;
   --accent-5: #fffe80;
   --accent-6: #fffeaa;
   --accent-7: #ffffe1;

   --shade-1: #060d30;
   --shade-2: #2e3651;
   --shade-3: #495266;
   --shade-4: #5b6475;
   --shade-5: #999;
   --shade-6: #ccc;
   --shade-7: #f6f6f6;

   --light-1: #fff;
   --light-2: #f6fafd;

   --red-1: #ff0000;
   --red-2: #bf0000;
   --red-3: #ff3300;

   --radius: 24px;
   --radius-xl: 32px;

   --shadow:
      0 6px 16px rgba(9, 37, 77, 0.18),
      0 14px 36px rgba(9, 37, 77, 0.10);
   --shadow-btn:
      0 2px 4px rgba(0, 0, 0, 0.20),
      0 4px 8px rgba(0, 0, 0, 0.15);
   --shadow-btn-hover:
      0 4px 8px rgba(0, 0, 0, 0.25),
      0 8px 16px rgba(0, 0, 0, 0.20);

}

*,
*::before,
*::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   text-decoration: none;
}

html,
body {
   height: 100%;
   margin: 0;
   padding: 0;
   font-family: var(--font-3-body);
   color: var(--color-text);
   font-size: 1rem;
   background-color: var(--bg-1);
}

h1 {
   font-family: var(--font-1-heading);
   font-size: clamp(2.1rem, 3vw, 2.6rem);
   line-height: 1.2;
   color: var(--color-1);
   margin: 0;
}

h2 {
   font-family: var(--font-2-subheading);
   font-size: clamp(1.4rem, 2.2vw, 1.9rem);
   font-weight: 600;
   line-height: 1.3;
   color: var(--color-1);
   margin: 0 0 0.75rem 0;
}

h3 {
   font-family: var(--font-2-subheading);
   font-size: clamp(1.1rem, 1.6vw, 1.35rem);
   font-weight: 600;
   line-height: 1.35;
   color: var(--color-2);
   margin: 0 0 0.5rem 0;
}

h4 {
   font-family: var(--font-4-script);
}

img {
   width: 100%;
   height: auto;
   display: block;
}

.red {
   color: var(--red-1);
}

.red-2 {
   color: var(--red-2);
}

.bold {
   font-weight: 600;
}

.bold-small {
   font-size: 0.8rem;
   font-weight: 600;
}

.read-on {
   margin-top: 0.75rem;
   font-weight: 600;
   color: var(--color-2);
   text-decoration: none;
}

.read-on:hover {
   color: var(--color-3);
   text-decoration: underline;
}

p {
   margin-bottom: 0.7rem
}

hr {
   margin: 1rem 0;
}

ul {
   margin: 0.2rem 0 0 0.5rem;
   padding-left: 1.1rem;
   color: var(--shade-4);
   font-size: 0.96rem;
   line-height: 1.6;
}

ol {
   margin: 0.7rem 0 0.7rem 1.5rem;
}

ol li {
   text-indent: 0.25rem;
   /* Adjust spacing bet. Numbers and Text */
   font-weight: 500;
   line-height: 1.7rem;
}

ol li a {
   color: inherit;
   /* Keeps the default text color */
}.wrapper-below-header {
   display: grid;
   grid-template-rows: 1fr auto;
   min-height: 100vh;
   padding-top: 7rem;
}

.container {
   display: grid;
   grid-template-columns: repeat(12, 1fr);
   gap: 1.5rem;
   width: 100%;
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 1rem;
   /* border: 2px solid plum; */
}

main {
   width: 100%;
   /* margin-bottom: 2rem; */
}

/* =======================
   TABLET
========================== */

@media (max-width: 960px) {
   /* .grid { */
}

/* =======================
   MOBILE
========================== */

@media (max-width: 768px) {
   .container {
      gap: 0.5rem;
      padding: 0 0.5rem;
   }

   main {
      margin-bottom: 2rem;
      padding: 0 0.5rem;
   }
}section {
     grid-column: span 3;
     background: var(--light);
     /* padding: 1rem; */
     padding: 2.25rem 1.5rem;
     border-radius: var(--radius);
     box-shadow: var(--shadow);

}

/* section h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-1);
    text-align: center;
} */

/* section h2 {
     font-size: 1.5rem;
     font-weight: 400;
     color: var(--color-1);
     text-align: center;
} */

/* section h3 {
     font-size: 1.4rem;
     font-weight: 300;
     color: var(--color-2);
     text-align: center;
} */

section h4 {
     font-size: 1.3rem;
     font-weight: 200;
     color: var(--color-1);
     text-align: center;
}

section h6 {
     font-size: 1.8rem;
     font-weight: 600;
     color: var(--red-1);
     text-align: center;
}

section li a {
     color: var(--color-2);
}

section li a:hover {
     color: var(--color-4);
}

.bg-1 {
     background: var(--color-1);
}

.bg-2 {
     background: var(--color-2);
     color: var(--light-1);
}


/* =======================
   TABLET
========================== */

@media (max-width: 960px) {
     section {
          grid-column: 4 / span 6;
     }

}

/* =======================
   MOBILE
========================== */

@media (max-width: 768px) {

     section {
          grid-column: span 12;
          font-size: 0.8rem;
          padding: 1rem;
     }

     section h1 {
          font-size: 1.4rem;
     }

     section h2 {
          font-size: 1.3rem;
          text-align: left;
     }

     section h3 {
          font-size: 1.2rem;
          text-align: left;
     }

     section h4 {
          font-size: 1.1rem;
          text-align: left;
     }

     section h6 {
          font-size: 1.4rem;
     }

}.btn {
     display: inline-block;
     border-radius: 999px;
     padding: 0.7rem 1.45rem;
     font-size: 0.96rem;
     font-weight: 600;
     border: 2px solid transparent;
     text-decoration: none;
     cursor: pointer;
     transition:
          transform 0.18s ease,
          box-shadow 0.18s ease,
          background-color 0.18s ease,
          color 0.18s ease,
          border-color 0.18s ease;
}.site-header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     width: 100%;
     height: 3.2rem;
     background: linear-gradient(135deg,
               var(--color-1) 0%,
               var(--color-3) 55%,
               var(--color-1) 100%);
}

.site-header>.container {
     /* outline: 4px solid red; */
}

/* .site-header>.container {
   min-height: 6rem;
   align-items: center;
} */

/* .site-header>.container {
   min-height: 6rem;
} */

/* .site-header>.container>* {
   align-self: center;
} */




/* background: linear-gradient(135deg,
               var(--color-1),
               var(--color-2));
     z-index: 1000; */
/* } */

/* width: 100%;
    padding: 1rem 0;
    padding: 0.5rem 1rem;
    background: var(--color-1); */

.logo-wrapper {
     grid-column: span 2;
     /* align-self: center; */
     padding: 0.5rem 0;
}

/* .vcenter {
     align-items: center;
     padding: 0.4rem 0 0 0;
} */

.logo {
     width: 7rem;
     align-self: center;
}

.icon-wrapper {
     grid-column: span 2;
     justify-self: end;
     align-self: center;
}

.icon {
     width: 1.9rem;
}

.icon:hover {
     opacity: 0.7;
}


/* MOBILE ======================= */
/* MOBILE ======================= */
/* MOBILE ======================= */

@media (max-width: 960px) {
     .site-header .logo-wrapper {
          grid-column: span 4;
     }

     .site-header .logo {
          width: 8rem;
          height: auto;
     }

     .site-header .icon-wrapper {
          grid-column: span 4;
          justify-self: end;
     }

     .site-header .icon {
          width: 2.5rem;
          height: auto;
     }

}


/* MOBILE ======================= */
/* MOBILE ======================= */

@media (max-width: 768px) {
     .site-header .logo {
          width: 7rem;
          height: auto;
     }

     .site-header .icon {
          width: 2.3rem;
          height: auto;
     }
}header nav {
   grid-column: 3 / span 8;
   display: grid;
   grid-auto-flow: column;
   grid-auto-columns: max-content;
   justify-content: center;
   align-items: center;
   gap: 1rem;
}

header nav a {
   color: var(--light-1);
   font-size: 0.9rem;
   font-weight: 500;
   text-decoration: none;
   background: transparent;
   padding: 0.3rem 1rem;
   border: 1px solid var(--light-1);
   border-radius: 999px;
   transition: background-color 0.45s;
}

header nav a:hover {
   background-color: var(--color-2);
   color: var(--light-1);
}

header nav a:nth-child(5) {
   color: var(--accent-3);
   border: 1px solid var(--accent-3);
}



header nav a:nth-child(5):hover {
   background-color: var(--color-2);
}

/* TOGGLE =================== */
#menu-icon {
   grid-column: span 1;
   font-size: 40px;
   color: var(--light-1);
   z-index: 10001;
   cursor: pointer;
   display: none;
}

/* TOGGLE =================== */


/* MOBILE =================== */
/* MOBILE =================== */
/* MOBILE =================== */

@media (max-width: 960px) {
   header nav {
      /* grid-column: 3 / span 8; */
      display: grid;
      grid-template-columns: 1fr;
      justify-self: center;
      align-self: center;
      position: absolute;
      top: -800px;
      left: 0;
      right: 0;
      text-align: left;
      background: var(--color-2);
      transition: all .50s ease;
      margin: 1rem;
      padding: 1rem;
      border: 1px solid var(--light-1);
      border-radius: 5px;
   }

   header nav a {
      /* grid-column: span 4; */
      display: block;
      font-size: 1rem;
      font-weight: 600;
      color: var(--light-1);
      background: var(--color-1);
      margin: 0.25rem;
      padding: 0.5rem 1.5rem;
      border: 1px solid var(--light-1);
      border-radius: 20px;
   }

   header nav a:hover {
      background: var(--color-3);
   }

   header nav a:nth-child(5):hover {
      background: var(--color-3);
   }

   /* TOGGLE =================== */
   #menu-icon {
      grid-column: span 4;
      justify-self: center;
      display: block;
   }

   nav.open {
      grid-column: 4 / span 6;
      top: 100%;
      right: 2%;
   }

   /* TOGGLE =================== */
}


/* MOBILE 2 =================== */
/* MOBILE 2 =================== */

@media (max-width: 768px) {
   header nav {
      gap: 0rem;
      border-radius: 0.7rem;
   }

   header nav a {
      /* font-size: 0.8rem; */
      padding: 0.1rem 1.5rem;
   }

   header nav a:nth-child(5) {
      color: var(--color-1);
   }

   /* TOGGLE =================== */
   nav.open {
      grid-column: span 12;
      top: 100%;
      /* right: 2%; */
   }

   /* TOGGLE =================== */
}.nav-2 {
     grid-column: 2 / span 10;
     display: grid;
     grid-auto-flow: column;
     grid-auto-columns: max-content;
     justify-content: center;
     gap: 1.25rem;
     font-size: 0.85rem;
     /* margin: 0.5rem; */
     /* background: var(--light-1); */
     padding: 0.75rem 0 0 0;
}

.nav-2 a {
     color: var(--color-1);
     text-decoration: none;
     font-weight: 500;
     padding: 0.2rem 1rem;
     background-color: var(--light-1);
     border: 1px solid var(--shade-7);
     border-radius: 0.35rem;
     box-shadow: var(--shadow-btn);
     transition:
          box-shadow 0.25s ease,
          transform 0.25s ease,
          border-color 0.25s ease,
          color 0.25s ease;
}

.nav-2 a:hover {
     color: var(--light-1);
     border-color: var(--light-1);
     box-shadow: var(--shadow-btn-hover);
     transform: translateY(-3px);
}



@media (max-width: 960px) {
     .nav-2 {
          grid-column: span 12;
          grid-auto-flow: row;
          justify-content: flex-start;
          gap: 0.25rem;
          font-size: 0.8rem;
     }

     .nav-2 a {
          padding: 0.1rem 0;
     }
}footer {
     width: 100%;
     color: var(--light-1);
     font-size: 0.8rem;
     background-color: var(--color-1);
     margin-top: 2rem;
     padding: 1rem 0 2rem 0;
}

.copyright-wrapper {
     align-items: center;
     margin-top: 1rem;
}

.copyright-wrapper div {
     grid-column: span 3;
     text-align: center;
}

/* .copyright {
     grid-column: span 3;
     text-align: center;
} */

.sectigo {
     max-width: 7rem;
     justify-self: center;
}


/* =========================
   TABLET
========================= */

@media (max-width: 960px) {}

/* =========================
   MOBILE
========================= */

@media (max-width: 720px) {
     footer {
          font-size: 0.7rem;
     }

     .copyright {
          grid-column: span 12;
     }

     .sectigo {
          grid-column: span 12;
          max-width: 5rem;
     }
}.links-wrapper {
     grid-column: span 3;
     background-color: var(--bg-footer);
     padding: 1rem 1rem 1rem 2rem;
}

.links-topic {
     font-size: 0.9rem;
     font-weight: 600;
     color: var(--accent-6);
     margin-bottom: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 0.05em;
}

.links {
     display: grid;
     gap: 0.5rem;
     align-content: start;
     margin: 0;
     padding: 0;
}


/* Optional: styling for the links themselves */
.links a {
     display: inline-block;
     font-size: 0.9rem;
     text-decoration: none;
     color: var(--text-muted, #d4dbe6);
}

.links a:hover {
     color: var(--accent-1, #0097d6);
     text-decoration: underline;
}

.links-2 {
     grid-column: span 3;
     display: grid;
     /* grid-template-columns: 1fr; */
     gap: 0.5rem;
     /* max-width: 100%; */
     background-color: var(--shade-3);
     padding: 1rem 1rem 1rem 2rem;
}

.links h2 {
     font-size: 0.9rem;
     font-weight: 600;
     color: var(--accent-6);
}

.links a {
     color: var(--shade-6);
     cursor: pointer;
}

.links a:hover {
     color: var(--accent-5);
     cursor: pointer;
}



/* =========================
   TABLET
========================= */

@media (max-width: 960px) {}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
     .links {
          grid-column: span 12;
          padding: 1rem 2rem;
     }
}