@charset "utf-8";
/* CSS Document */
/*----------------------------
------------------------------
	RESET
------------------------------
----------------------------*/
/* Box sizing rules */
*, *::before, *::after {
  box-sizing: border-box;
}
/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'], ol[role='list'] {
  list-style: none;
}
/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
html, body {
  height: 100%
}
/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
img, picture, svg {
  width: 100%;
  display: block;
}
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*----------------------------
------------------------------
	UNIVERSAL AND UTILITY
------------------------------
----------------------------*/
body {
  background-color: #262324;
  font: normal 100% Arial, Helvetica, sans-serif;
}
.container {
  width: min(1280px, 100% - (2rem * 2));
  margin-inline: auto;
}
h1, h2, h3, h4, p, ul li, blockquote {
  font-family: 'Roboto', sans-serif;
  color: #eaeae5;
}
.grid-one {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem
}
.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.5rem
}
.grid-two-wide-gap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem
}
.section-margin-top {
  margin-top: 4rem;
}
.section-margin-top-plus {
  margin-top: 5rem;
}
.section-margin-top-lrg {
  margin-top: 8rem;
}
.section-padding-bottom {
  padding-bottom: 4rem;
}
.section-margin-verticle {
  margin-top: 4rem;
  padding-bottom: 4rem;
}
mark {
  background-color: #44bbff;
  color: #262324;
}
/*----------------------------
------------------------------
	UNIVERSAL AND UTILITY MEDIA QUERIES 
------------------------------
----------------------------*/
@media screen and (max-width: 680px) {
  .grid-two {
    grid-template-columns: 1fr;
  }
}
/*----------------------------
------------------------------
	TEXT STYLES
------------------------------
----------------------------*/
h1 {
  font-weight: 700;
  font-size: 5.2rem;
}
h2 {
  font-weight: 700;
  font-size: 2.4rem;
  padding-bottom: 1rem;
}
h3 {
  font-weight: 500;
  font-size: 1.6rem;
  padding-bottom: 0.5rem
}
h4 {
  font-weight: 400;
  font-size: 1.2rem;
}
p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  padding-bottom: 1rem;
}
p a {
  color: inherit;
  text-decoration: underline;
}
p a:hover {
  color: #44bbff;
}
blockquote {
  font-size: 1.4em;
  font-weight: 400;
  width: 80%;
  margin: 2rem auto;
  font-style: italic;
  padding: 1.4rem 2rem 1rem 4rem;
  line-height: 1.6;
  position: relative;
}
blockquote::before {
  font-family: Arial;
  content: "\201C";
  color: grey;
  font-size: 4em;
  position: absolute;
  left: 0.9rem;
  top: -0.9rem;
}
blockquote::after {
  content: '';
}
.bqcite-name {
  display: block;
  color: grey;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 900;
  margin-top: 1rem;
}
.bqcite-creds {
  font-weight: 400;
}
/*----------------------------
------------------------------
	TEXT MEDIA QUERIES
------------------------------
----------------------------*/
@media only screen and (max-width: 600px) {
  h1 {
    font-size: 3.5rem;
  }
  blockquote {
    width: 100%;
    margin: 1rem 0rem 1rem 0rem;
  }
}
@media only screen and (max-width: 450px) {
  h1 {
    font-size: 3.2rem;
  }
  h2 {
    font-size: 2rem;
  }
  p {
    font-size: 1.2rem;
  }
  blockquote {
    font-size: 1.2rem;
    width: 100%;
    margin: 1rem 0rem 1rem 0rem;
  }
 .bqcite-name, .bqcite-creds {
    font-size: 1.2rem;
  }
}
/*----------------------------
------------------------------
	NAV STLES
------------------------------
----------------------------*/
header {
  margin-top: 2rem;
}
.logo {
  width: 3.2em;
  transition: 0.2s
}
.logo:hover {
  fill: #44bbff;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
nav ul li {
  display: inline-block;
  margin: 0rem 0rem 0rem 1rem;
}
nav ul li a {
  text-decoration: none;
  color: #eaeae5;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
}
nav ul li a::after {
  content: '';
  width: 0%;
  height: 3px;
  background: #44bbff;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}
nav ul li a:hover::after {
  width: 100%
}
.selected a::after {
  content: '';
  width: 100%;
  height: 3px;
  background: #eaeae5;
  position: absolute;
  left: 0;
  bottom: -6px;
}
nav .material-symbols-sharp {
  font-variation-settings:
    'FILL'0, 'wght'700, 'GRAD'0, 'opsz'48;
  font-size: 1.8rem;
  color: #eaeae5;
  display: none;
}
/*----------------------------
------------------------------
	NAV MEDIA QUERIES
------------------------------
----------------------------*/
@media only screen and (max-width: 600px) {
  nav .material-symbols-sharp {
    display: block;
    cursor: pointer;
  }
  nav .material-symbols-sharp:hover {
    color: #44bbff;
  }
  nav ul {
    background: #44bbff;
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100vh;
    padding-top: 4rem;
    z-index: 2;
    transition: right 0.3s;
  }
  nav ul li {
    display: block;
    margin: 2rem;
  }
  nav ul li a::after {
    background: #eaeae5;
  }
  nav ul .material-symbols-sharp {
    position: absolute;
    top: 2.1rem;
    left: 1.6rem;
  }
  nav ul .material-symbols-sharp:hover {
    color: #262324;
  }
}
/*----------------------------
------------------------------
	HEADER STYLES
------------------------------
----------------------------*/
.primary-header h1 {
  margin-top: 7rem;
  margin-bottom: 9rem;
}
.h1style-small {
  font-size: 2.25rem;
}
.project-header h1 {
  margin-top: 1.5rem;
  margin-bottom: 9rem;
}
.project-header p {
  margin-top: 7rem;
  line-height: 1.5rem;
}
.project-header p span {
  font-size: 1.1rem;
  color: grey;
}
.about-header h1 {
  margin-top: 7rem;
}
.about-header p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}
.about-header p a {
  color: inherit;
  text-decoration: underline;
}
.about-header p a:hover {
  color: #44bbff;
}
/*----------------------------
------------------------------
	HEADER MEDIA QUERIES
------------------------------
----------------------------*/
@media only screen and (max-width: 600px) {
  .primary-header h1 {
    margin-top: 6rem;
    margin-bottom: 7rem;
  }
  .project-header h1 {
    margin-bottom: 5rem;
  }
  .project-header p {
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 450px) {
  .h1style-small {
    font-size: 2rem;
  }
  .about-header h1 {
    margin-top: 6rem;
  }
  .about-header p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-top: 1rem;
  }
}
/*----------------------------
------------------------------
	HOMEPAGE GRID
------------------------------
----------------------------*/
.thumb-grid-main {
  display: grid;
  grid-gap: 2rem;
  margin-top: 3rem;
}
.thumb-descript {
  font-weight: 400;
  margin-top: 0.75rem;
  font-size: 1.4rem;
  color: #eaeae5;
}
.thumb-grid-main li {
  padding-bottom: 1rem;
  list-style: none;
}
.thumb-grid-main li a {
  text-decoration: none;
}
.thumb-image-block {
  width: 100%;
  position: relative;
}
.thumb-image-layer .material-symbols-sharp {
  font-variation-settings:
    'FILL'0, 'wght'300, 'GRAD'0, 'opsz'48;
  font-size: 3rem;
  color: #eaeae5;
}
.thumb-image-layer p {
  font-weight: 700;
  font-size: 1.2rem;
  color: #eaeae5;
}
.thumb-image-layer {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(68, 187, 255, 0.6), #44bbff);
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  opacity: 0%;
  transition: opacity 0.3s;
}
.thumb-grid-main li a .thumb-image-layer:hover {
  opacity: 100%;
}
/*----------------------------
------------------------------
	HOMEPAGE GRID MEDIA QUERIES
------------------------------
----------------------------*/
@media screen and (min-width: 768px) {
  .thumb-grid-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .thumb-grid-main li {
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 450px) {
  .thumb-descript {
    font-size: 1.2rem;
  }
}
/*----------------------------
------------------------------
	VIDEO COTAINER
------------------------------
----------------------------*/
.video-container {
  position: relative;
  background-color: #262324;
}
.v-wide {
  padding-bottom: 56.25%;
}
.v-square {
  padding-bottom: 100%;
}
.v-squareish {
  padding-bottom: 89.78%;
}
.v-vert {
  padding-bottom: 80%;
}
.v-vert43 {
  padding-bottom: 133.33%
}
.video-container iframe, .video-container object, .video-container embed, .video-container lottie-player, .video-container dotlottie-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
/*----------------------------
------------------------------
	PROJECT PAGE
------------------------------
----------------------------*/
.credits-section {
  background-color: #1e1c1d;
  margin-top: 4rem;
  padding-bottom: 4rem;
}
.credits-section h2 {
  padding-top: 4rem;
}
.credits-section ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1.5rem;
}
.credits-section ul li {
  font-weight: 400;
  font-size: 1.4rem;
}
.credits-section ul li a {
  color: inherit;
  text-decoration: underline;
}
.credits-section ul li a:hover {
  color: #44bbff;
}
.credits-section ul li span {
  font-size: 1.1rem;
  color: grey;
}
/*----------------------------
------------------------------
	PROJECT PAGE MEDIA QUERIES
------------------------------
----------------------------*/
@media only screen and (max-width: 450px) {
  .credits-section {
    margin-top: 2rem;
    padding-bottom: 2rem;
  }
  .credits-section h2 {
    padding-top: 2rem;
  }
  .credits-section ul {
    margin-top: 1rem;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
  .credits-section ul li {
    font-size: 1.2rem;
  }
}
/*----------------------------
------------------------------
	ABOUT PAGE
------------------------------
----------------------------*/
.toolslist {
  margin: 1.5rem 0 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1.5rem;
}
.softwarelogo {
  width: 4rem;
}
.toolslist-group {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.toolslist-group svg {
  margin: 0.3rem 2rem 0 0;
}
.toolslist-specific li {
  font-weight: 400;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}
.experience-row {
  margin-top: 3rem;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 3fr;
}
.experience-row-1 {
  margin-top: 1.5rem;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 3fr;
}
.before-promotion {
  margin-top: 0.5rem;
}
.experience-row h4 span, .experience-row-1 h4 span {
  color: grey;
  font-size: 1rem;
}
.experience-row p, .experience-row-1 p {
  margin: 0;
}
/*----------------------------
------------------------------
	ABOUT PAGE MEDIA QUERIES
------------------------------
----------------------------*/
@media screen and (max-width: 680px) {
  .experience-row, .experience-row-1 {
    grid-template-columns: 1fr;
  }
}
/*----------------------------
------------------------------
	PRIMARY FOOTER
------------------------------
----------------------------*/
footer {
  background-color: #1e1c1d;
  margin-top: 2em;
  padding: 3rem 0 1rem 0;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-content ul li {
  display: inline-block;
  margin: 0rem 0rem 0rem 1rem;
}
.footer-content p {
  font-weight: 400;
  font-size: 1rem;
  color: grey;
  line-height: 1.5rem;
}
.footer-content p a {
  font-weight: 600;
  color: grey;
  text-decoration: underline;
}
.footer-content p a:hover {
  font-weight: 600;
  color: #44bbff;
}
.footer-content svg {
  width: 1.6em;
  fill: grey;
}
.footer-content svg:hover {
  fill: #44bbff;
}
/*----------------------------
------------------------------
	PRIMARY FOOTER MEDIA QUERIES
------------------------------
----------------------------*/
@media only screen and (max-width: 450px) {
  .footer-content p {
    font-size: 0.9rem;
    line-height: 1.2rem;
  }
}
/*----------------------------
------------------------------
	PRAETORIAN ARCHIVE FOOTER
------------------------------
----------------------------*/
.active, .praetorian {
  padding: 1rem 2rem 0.5rem 0;
  background-color: #1e1c1d;
  color: grey;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1rem;
}
.praetorian:hover {
  color: #44bbff;
}
.archive-content {
  padding: 0 18px;
  background-color: #1e1c1d;
  border-left: thin dashed grey;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.praetoriantitle {
  font-family: 'Libre Barcode 39 Text', sans-serif;
  font-size: 4rem;
  color: #eaeae5;
  padding: 0;
  margin: 0;
}
.archive-content ul li {
  font-family: 'Source Code Pro', monospace;
  font-size: 1rem;
  margin: 0 0 1rem 0;
  color: grey;
}
.archive-content ul li a {
  color: #eaeae5;
  text-decoration: none;
}
.archive-content ul li a:hover {
  color: #44bbff;
}
/*----------------------------
------------------------------
	PRAETORIAN ARCHIVE FOOTER MEDIA QUERIES
------------------------------
----------------------------*/
@media only screen and (max-width: 650px) {
  .praetoriantitle {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 550px) {
  .praetoriantitle {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 450px) {
  .praetoriantitle {
    font-size: 2rem;
  }
  .archive-content ul li {
    font-size: 0.9rem;
  }
}
/*----------------------------
------------------------------
	ALERT BANNER FOR ARCHIVE
------------------------------
----------------------------*/
.archivealertbanner {
  padding: 1rem;
  background-color: #ff9800;
  color: white;
  margin: 3rem 0 0 0;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.closearchivealertbannerbtn {
  margin: 0 0 0 2rem;
  padding: 0;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
}
.closearchivealertbannerbtn:hover {
  color: black;
}