:root {
    --bkg: light-dark(#F5EEDA,#00304D);
    --dark: #00304D;
    --light: #f9f9f9;
    --tan: #F6F2E6;
}
*{margin:0;padding:0;box-sizing:border-box;}body{line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}img,picture,video,canvas,svg{display:block;max-width:100%;}input,button,textarea,select{font:inherit;}a{text-decoration:none;color:inherit;}ul,ol{list-style:none;}
a {color: var(--dark);}



body {background: var(--light); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;}
header img {max-width: 300px; margin: 0;}
header {margin: 0; background: var(--dark); padding: 2rem 2rem 2rem 2rem; position: relative; z-index: 5; color: #fff;}
header p {margin: .5rem 0; opacity: .75; font-style: italic; font-size: .85rem;}
main {padding: 3rem 2rem; position: relative; z-index: 10;}

.grid-3 {display: flex; flex-wrap: wrap; gap: 2rem;}

.links {padding: 0rem; border-radius: 5px;transition: all 0.3s ease; flex: 1 1 auto;}
.links:hover {opacity: 1; transform: scale(1.015);}
.links ul a {display: block; padding: 5px 5px 5px 0; font-size: .95rem; opacity: .75; transition: all 0.3s ease; font-weight: 500; }
.links ul a:hover {opacity: 1; background: rgba(0,0,0,.05); padding: 5px 2px 5px 8px;}
.links h2 {font-size: 1.25rem; margin: 0 0 1rem 0; color: var(--dark);}

footer {text-align: center; border-top: 1px solid #ccc; padding: 2rem 0; margin: 1rem 2rem; font-size: .75rem; color: #999;}

/* Mobile First (default styles apply to mobile) */

/* Tablets */
@media (min-width: 600px) {
  /* styles for tablets and up */
}

/* Small Laptops */
@media (min-width: 768px) {
 header {display: flex; justify-content: space-between; align-items: center;}
 footer {display: flex; justify-content: space-between; align-items: center;}
}

/* Desktops */
@media (min-width: 1024px) {
  /* styles for desktops and up */
}

/* Large Screens */
@media (min-width: 1280px) {
  /* styles for large screens */
}



/* HEADER LINES */
.lines {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    height: 250px;
    margin: auto;
    width: 100vw;
    opacity: .35;
    z-index: 5;
    
  }
  .lines .line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
  }
  .lines .line-vert {width: 100%; height: 1px; left: 0; top: 66%;}
  .lines .line-vert + .line-vert {top: 33%;}
  .lines .line-vert + .line-vert:after {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
  }
  .lines .line::after {
    opacity: .8;
    content: "";
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(75%, #ffffff), to(#ffffff));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
    -webkit-animation: run 7s 0s infinite;
            animation: run 7s 0s infinite;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
            animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  }
  .lines .line-vert::after {
    width: 15vh; height: 100%; top: auto; left: auto; right: -50%;
    -webkit-animation: run-horz 7s 0s infinite;
    animation: run-horz 7s 0s infinite;
    background: -webkit-gradient(linear, top right, top left, from(rgba(255, 255, 255, 0)), color-stop(75%, #ffffff), to(#ffffff));
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
  
  }
  .lines .line:nth-child(1) {
    margin-left: -50%;
  }
  .lines .line:nth-child(1)::after {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  .lines .line:nth-child(2) {
    margin-left: -25%;
  }
  .lines .line:nth-child(2)::after {
    -webkit-animation-delay: 2.5s;
            animation-delay: 2.5s;
  }
  .lines .line:nth-child(4) {
    margin-left: 25%;
  }
  .lines .line:nth-child(4)::after {
    -webkit-animation-delay: 2.5s;
            animation-delay: 2.5s;
  }
  .lines .line:nth-child(5) {
    margin-left: 50%;
  }
  .lines .line:nth-child(5)::after {
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
  }
  
  @-webkit-keyframes run {
    0% {
      top: -50%;
    }
    100% {
      top: 110%;
    }
  }
  
  @keyframes run {
    0% {
      top: -50%;
    }
    100% {
      top: 110%;
    }
  }
  @-webkit-keyframes run-horz {
    0% {
      right: -50%;
    }
    100% {
      right: 110%;
    }
  }
  
  @keyframes run-horz {
    0% {
      right: -50%;
    }
    100% {
      right: 110%;
    }
  }
  
  @keyframes animate {
  
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
  
    100%{
        transform: translateY(-1300px) rotate(720deg);
        opacity: 0;
    }
  
  }