@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');@import url('https://fonts.gstatic.com');



:Root {
    --font-1: 'Poppins', sans-serif;
    --font-2: 'Playfair Display', serif;
    --font-3: 'Dancing Script', cursive;

    --color-1: #003480;
    --color-2: #006eba;
    --color-3: #0097d6;
    --color-4: #5fbee5;
    --color-5: #acddf2;
    --color-6: #e3eff8;

    --accent-1: #ff8200;
    --accent-2: #febb02;
    --accent-3: #ffda01;
    --accent-4: #ffef00;
    --accent-5: #fffe80;
    --accent-6: #fffeaa;
    --accent-7: #ffffe1;

    --shade-1: #060d30;
    --shade-2: #222;
    --shade-3: #2e2e2e;
    --shade-4: #666;
    --shade-5: #999;
    --shade-6: #ccc;
    --shade-7: #f6f6f6;

    --light-1: #fff;
    --light-2: #fff;

    --red-1: #ff0000;
    --red-2: #bf0000;
    --red-3: #ff3300;

    --radius-1: 0.2rem;
    --radius-2: 0.5rem;


    --shadow-1: 
            0 -1px 3px rgba(0, 0, 0, 0.1),  /* Thin top shadow */
            0 4px 6px rgba(0, 0, 0, 0.1),   /* Main bottom shadow */
            0 1px 3px rgba(0, 0, 0, 0.06);  /* Extra depth */

    --shadow-btn: 
            0 -1px 4px rgba(0, 0, 0, 0.08),  /* Thin top shadow */
            0 8px 16px rgba(0, 0, 0, 0.15);  /* Stronger bottom shadow */

    --shadow-glass: 
            0 -1px 3px rgba(0, 0, 0, 0.08), /* Thin top shadow */
            0 4px 12px rgba(0, 0, 0, 0.15); /* Bottom shadow */

    --box-shadow-01: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);

    --box-shadow-1: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --box-shadow-2: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    --box-shadow-3: 0 4px 8px rgba(0, 0, 0, 0.15), 0 -1px 3px rgba(0, 0, 0, 0.08);
    --box-shadow-4: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    --box-shadow-5: inset 0 2px 4px rgba(0, 0, 0, 0.06);

    --box-shadow-light: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --box-shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    --box-shadow-heavy: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    --box-shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);

}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

html,
body {
  height: 100%;
  font-family: var(--font-1);
  font-size: 1rem;
}

img {
    width: 100%;
}

.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 a {
    color: var(--color-2);
    font-weight: 500;
}

.read-on a:hover {
    color: var(--color-4);
}

p {
    margin-bottom: 0.7rem
}

hr {
    margin: 1rem 0;
}

ul {
    margin: 0.7rem 0 0.7rem 2rem;
}

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: 6rem;
      background-color: var(--shade-7);
  }

  .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;
 }
 
  

/* MOBILE =================== */
/* MOBILE =================== */
/* MOBILE =================== */

@media (max-width: 960px) {
      /* .grid { */
  }
  /* MOBILE 2 =================== */
  /* MOBILE 2 =================== */
  
  @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;
    border-radius: 10px;
    box-shadow: var(--shadow-1);

}

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);
}


/* MOBILE =================== */
/* MOBILE =================== */
/* MOBILE =================== */

@media (max-width: 960px) {
    section {
        grid-column: 4 / span 6;
    }

}
/* MOBILE 2 =================== */
/* MOBILE 2 =================== */
    
@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;
    }

}
.mid {
      grid-column: 4 / span 6;
      padding: 1.5rem 3rem;
  }
  
  .span-x6 {
      grid-column: span 6;
      padding: 1.5rem 3rem;
  }
  .span-x6-left {
      grid-column: 1 / span 6;
      padding: 1.5rem 3rem;
  }
  .span-x6-right {
      grid-column: 7 / span 6;
      padding: 1.5rem 3rem;
  }
  
  
  /* MOBILE =================== */
  /* MOBILE =================== */
  /* MOBILE =================== */
  
  @media (max-width: 960px) {
      .mid {
          padding: 1rem;
      }
  
  }
  
  /* MOBILE 2 =================== */
  /* MOBILE 2 =================== */
  
  @media (max-width: 768px) {
     .mid {
          grid-column: span 12;
          padding: 1rem;
      }
      .span-x6-left {
          grid-column: span 12;
          padding: 1rem;
      }
      .span-x6-right {
          grid-column: span 12;
          padding: 1rem;
      }
      
  }
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 3.75rem;
    /* padding: 0.25rem 0 0 0; */
    background-color: var(--color-1);
    z-index: 1000;
  }

    /* width: 100%;
    padding: 1rem 0;
    padding: 0.5rem 1rem;
    background: var(--color-1); */

.site-header .logo-wrapper {
    grid-column: span 2;
}
.site-header .logo {
    width: 9rem;
    height: auto;
}

.site-header .icon-wrapper {
    grid-column: span 2;
    justify-self: end;
}

.site-header .icon {
    width: 2.5rem;
    height: auto;
}
.site-header .icon:hover {
    opacity: 0.7;
}

.vcenter {
    /* align-items: center; */
    padding: 0.4rem 0 0 0;
}


/* 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-template-columns: repeat(5, 1fr);
    text-align: center;
    align-items: center;
    gap: 1rem;
    justify-self: center;
}

header nav a {
    color: var(--color-1);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    background-color: var(--light-1);
    padding: 0.01rem 1rem;
    /* transition: all .45s ease; */
    border: 1px solid var(--dark-2);
    border-radius: 10px;
    transition: background-color 0.45s;
}

header nav a:hover {
    background-color: var(--color-2);
    color: var(--light-1);
}

header nav a:nth-child(5) {
    background-color: var(--accent-2);
}
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;
        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 =================== */
}
