.menu-btn {
  position: absolute;
  z-index: 3;
  right: 16px;
  top: 35px;
  cursor: pointer;
  transition: all 0.5s ease-in-out; }
  .menu-btn .btn-line {
    width: 28px;
    height: 3px;
    margin: 0px 0px 5px 0px;
    background: #eeeeff;
    transition: all 0.5s ease-in-out; }
  .menu-btn.close {
    transform: rotate(180deg); }
    .menu-btn.close .btn-line:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px); }
    .menu-btn.close .btn-line:nth-child(2) {
      opacity: 0; }
    .menu-btn.close .btn-line:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px); }

.menu {
  position: fixed;
  top: 0px;
  width: 100%;
  opacity: 0.95;
  visibility: hidden; }
  .menu.show {
    visibility: visible; }
  .menu-branding, .menu-nav {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    float: left;
    width: 50%;
    height: 100vh;
    overflow: hidden; }
  .menu-nav {
    margin: 0px;
    padding: 0px;
    background: #495b69;
    list-style: none;
    transform: translate3d(0, -100%, 0);
    transition: all 0.5s ease-in-out; }
    .menu-nav.show {
      transform: translate3d(0, 0, 0); }
  .menu-branding {
    background: #536878;
    transform: translate3d(0, 100%, 0);
    transition: all 0.5s ease-in-out; }
    .menu-branding.show {
      transform: translate3d(0, 0, 0); }
    .menu-branding .portrait {
      width: 250px;
      height: 250px;
      background: url(../img/portrait.png);
      border-radius: 50%;
      border: solid 3px #f5ec55; }
  .menu .nav-item {
    transform: translate3d(600px, 0, 0);
    transition: all 0.5s ease-in-out; }
    .menu .nav-item.show {
      transform: translate3d(0, 0, 0); }
    .menu .nav-item.current > a {
      color: #f5ec55; }
  .menu .nav-link {
    display: block;
    position: relative;
    font-size: 30px;
    text-transform: uppercase;
    padding: 1rem 0rem;
    font-weight: 300;
    color: #eeeeff;
    text-decoration: none;
    transition: all 0.5s ease-in-out; }
    .menu .nav-link:hover {
      color: #f5ec55; }

.nav-item:nth-child(1) {
  transition-delay: 0.1s; }

.nav-item:nth-child(2) {
  transition-delay: 0.2s; }

.nav-item:nth-child(3) {
  transition-delay: 0.3s; }

.nav-item:nth-child(4) {
  transition-delay: 0.4s; }

.nav-item:nth-child(5) {
  transition-delay: 0.5s; }

.nav-item:nth-child(6) {
  transition-delay: 0.6s; }

* {
  box-sizing: border-box; }

body {
  background: #536878;
  color: #eeeeff;
  height: 100%;
  margin: 0px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5; }
  body#bg-img {
    background: url(../img/background.png);
    background-attachment: fixed;
    background-size: cover; }
    body#bg-img:after {
      content: '';
      position: absolute;
      top: 0px;
      right: 0px;
      width: 100%;
      height: 100%;
      z-index: -1;
      background: rgba(83, 104, 120, 0.95); }

h1, h2, h3, h4, h5, h6 {
  margin: 0px;
  font-weight: 400; }
  h1.lg-heading, h2.lg-heading, h3.lg-heading, h4.lg-heading, h5.lg-heading, h6.lg-heading {
    font-size: 6rem; }
  h1.sm-heading, h2.sm-heading, h3.sm-heading, h4.sm-heading, h5.sm-heading, h6.sm-heading {
    margin-bottom: 2rem;
    padding: 0.2rem 1rem;
    background: rgba(87, 109, 126, 0.5); }

a {
  color: #eeeeff;
  text-decoration: none; }

header {
  position: fixed;
  z-index: 2;
  width: 100%; }

.contact-link {
  position: fixed;
  right: 30px;
  top: 30px; }

.text-secondary {
  color: #f5ec55; }

main {
  padding: 4rem;
  min-height: calc(100vh - 60px); }
  main .icons {
    margin-top: 1rem; }
    main .icons a {
      padding: 0.4rem; }
      main .icons a:hover {
        color: #f5ec55;
        transition: all 0.5s ease-in-out; }
  main#home {
    overflow: hidden; }
    main#home h1 {
      margin-top: 20vh; }

.about-info {
  display: grid;
  grid-gap: 30px;
  grid-template-areas: 'bioimage bio bio' 'exp exp exp' 'job1 job2 job3' 'skill skill skill' 'lang library soft' 'edu edu edu' 'school1 school2 school3' 'school4 school4 school4';
  grid-template-columns: repeat(3, 1fr); }
  .about-info .bio-img {
    grid-area: bioimage;
    margin: auto;
    border-radius: 50%;
    border: #f5ec55 3px solid; }
  .about-info .bio {
    grid-area: bio;
    font-size: 1.5rem; }
  .about-info .experience {
    grid-area: exp;
    font-size: 1.5rem; }
  .about-info .company-name {
    display: inline-flex; }
  .about-info .goe-img,
  .about-info .ra-img,
  .about-info .navy-img,
  .about-info .usu-img,
  .about-info .nwc-img,
  .about-info .cub-img {
    width: 2rem;
    height: 2rem;
    margin-right: 5px; }
  .about-info .odu-img {
    width: 4rem;
    height: 1.66rem;
    margin-right: 5px; }
  .about-info .job-1 {
    grid-area: job1; }
  .about-info .job-2 {
    grid-area: job2; }
  .about-info .job-3 {
    grid-area: job3; }
  .about-info .job {
    background: #5d7587;
    box-shadow: 10px 15px 10px #3e4e5a;
    padding: 0.5rem;
    border-bottom: #f5ec55 5px solid; }
  .about-info .education {
    grid-area: edu;
    font-size: 1.5rem; }
  .about-info .school-1 {
    grid-area: school1; }
  .about-info .school-2 {
    grid-area: school2; }
  .about-info .school-3 {
    grid-area: school3; }
  .about-info .school-4 {
    grid-area: school4; }
  .about-info .school {
    background: #5d7587;
    box-shadow: 10px 15px 10px #3e4e5a;
    padding: 0.5rem;
    border-bottom: #f5ec55 5px solid; }
  .about-info .skills {
    grid-area: skill;
    font-size: 1.5rem; }
  .about-info .skill {
    background: #5d7587;
    box-shadow: 10px 15px 10px #3e4e5a;
    padding: 0.5rem;
    border-bottom: #f5ec55 5px solid; }
  .about-info .skill-1 {
    grid-area: lang; }
  .about-info .skill-2 {
    grid-area: library; }
  .about-info .skill-3 {
    grid-area: soft; }

.games-info {
  display: grid;
  grid-gap: 20px;
  grid-template-areas: 'browser browser' 'lead lead' 'kung gtype' 'dream xeno' 'member member' 'flipside exit' 'radar zone' 'mobile mobile' 'solo solo' 'core code' 'desk desk' 'wordfall wordfall';
  grid-template-columns: repeat(2, 1fr); }
  .games-info .browser,
  .games-info .mobile,
  .games-info .desk {
    font-size: 2rem;
    text-align: center; }
  .games-info .browser {
    grid-area: browser; }
  .games-info .mobile {
    grid-area: mobile; }
  .games-info .desk {
    grid-area: desk; }
  .games-info .lead,
  .games-info .member,
  .games-info .solo {
    font-size: 1.5rem;
    margin-top: 1.5rem; }
  .games-info .lead {
    grid-area: lead; }
  .games-info .member {
    grid-area: member; }
  .games-info .solo {
    grid-area: solo; }
  .games-info .kung, .games-info .gtype, .games-info .dream, .games-info .xeno,
  .games-info .flip-side, .games-info .exit, .games-info .radar, .games-info .zone,
  .games-info .core, .games-info .code, .games-info .wordfall {
    display: inline-flex;
    padding: 2rem;
    background: #5d7587;
    box-shadow: 10px 15px 10px #3e4e5a; }
  .games-info .kung-img, .games-info .gtype-img, .games-info .dream-img, .games-info .xeno-img,
  .games-info .flip-side-img, .games-info .exit-img, .games-info .radar-img, .games-info .zone-img,
  .games-info .core-img, .games-info .code-img, .games-info .wordfall-img {
    padding-right: 1rem; }
  .games-info .kung-text, .games-info .gtype-text, .games-info .dream-text, .games-info .xeno-text,
  .games-info .flip-side-text, .games-info .exit-text, .games-info .radar-text, .games-info .zone-text,
  .games-info .core-text, .games-info .code-text, .games-info .wordfall-text {
    padding-left: 1rem;
    font-size: 1rem; }
  .games-info .kung {
    grid-area: kung;
    border-top-left-radius: 25px; }
  .games-info .gtype {
    grid-area: gtype;
    border-top-right-radius: 25px; }
  .games-info .dream {
    grid-area: dream;
    border-bottom-left-radius: 25px; }
  .games-info .xeno {
    grid-area: xeno;
    border-bottom-right-radius: 25px; }
  .games-info .flip-side {
    grid-area: flipside;
    border-top-left-radius: 25px; }
  .games-info .exit {
    grid-area: exit;
    border-top-right-radius: 25px; }
  .games-info .radar {
    grid-area: radar;
    border-bottom-left-radius: 25px; }
  .games-info .zone {
    grid-area: zone;
    border-bottom-right-radius: 25px; }
  .games-info .core {
    grid-area: core;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px; }
  .games-info .code {
    grid-area: code;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px; }
  .games-info .wordfall {
    grid-area: wordfall;
    border-radius: 25px; }
  .games-info img {
    border: 3px #fff solid; }
    .games-info img:hover {
      opacity: 0.5;
      border-color: #f5ec55;
      transition: all 0.5s ease-in-out; }
  .games-info .container {
    width: fit-content;
    margin: 0px auto; }
    .games-info .container h3 {
      color: #f5ec55; }

.movie-screen {
  position: fixed;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(50vw + 80px);
  background: #a4b4c0;
  box-shadow: 20px 30px 20px #34414b;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out; }
  .movie-screen.show {
    opacity: 1;
    pointer-events: unset; }
  .movie-screen .movie {
    width: 50vw;
    height: calc(50vw * 315 / 560);
    z-index: 6; }
  .movie-screen .movie-btn {
    position: absolute;
    height: 23px;
    z-index: 6;
    right: 13px;
    top: 5px;
    cursor: pointer;
    transition: all 0.5s ease-in-out; }
    .movie-screen .movie-btn .movie-btn-line {
      width: 20px;
      height: 3px;
      background: #000050;
      transition: all 0.5s ease-in-out; }
      .movie-screen .movie-btn .movie-btn-line:nth-child(1) {
        transform: translate(0px, 10px) rotate(45deg); }
      .movie-screen .movie-btn .movie-btn-line:nth-child(2) {
        transform: translate(0px, 7px) rotate(-45deg); }

.btn, .btn-dark, .btn-light {
  display: block;
  padding: 0.5rem 1rem;
  border: 0;
  margin-bottom: 0.3rem; }
  .btn:hover, .btn-dark:hover, .btn-light:hover {
    background: #f5ec55;
    color: #000050; }

.btn-dark {
  background: black;
  color: #fff; }

.btn-light {
  background: #e0e6ea;
  color: #333; }

.btn-icon {
  float: right;
  margin-left: 5px; }

#main-footer {
  text-align: center;
  padding: 1rem;
  background: #3e4e5a;
  color: #eeeeff; }

.loader {
  border: 6px solid #a4b4c0;
  border-top: 6px solid #141a1e;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
  position: fixed;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0; }
  .loader.show {
    opacity: 1; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@media screen and (max-width: 1350px) and (min-width: 1171px) {
  .games-info .kung, .games-info .gtype, .games-info .dream, .games-info .xeno,
  .games-info .flip-side, .games-info .exit, .games-info .radar, .games-info .zone,
  .games-info .core, .games-info .code, .games-info .wordfall {
    display: block !important; }
  .games-info .kung-text, .games-info .gtype-text, .games-info .dream-text, .games-info .xeno-text,
  .games-info .flip-side-text, .games-info .exit-text, .games-info .radar-text, .games-info .zone-text,
  .games-info .core-text, .games-info .code-text, .games-info .wordfall-text {
    text-align: center; } }

@media screen and (max-width: 1170px) {
  .about-info {
    grid-template-areas: 'bioimage bio' 'exp exp' 'job1 job2' 'job3 job3' 'skill skill' 'lang library' 'soft soft' 'edu edu' 'school1 school2' 'school3 school4';
    grid-template-columns: repeat(2, 1fr); }
  .games-info {
    grid-template-areas: 'browser' 'lead' 'kung' 'gtype' 'dream' 'xeno' 'member' 'flipside' 'exit' 'radar' 'zone' 'mobile' 'solo' 'core' 'code' 'desk' 'wordfall';
    grid-template-columns: repeat(1, 1fr); }
  .kung, .gtype, .dream, .xeno,
  .flip-side, .exit, .radar, .zone,
  .core, .code, .wordfall {
    border-radius: 25px; }
  .lead {
    text-align: center; }
  .member {
    text-align: center; }
  .movie-screen {
    width: 75vw; }
  .movie {
    width: 100% !important;
    height: calc((75vw - 60px) * 315 / 560) !important; } }

@media screen and (max-width: 768px) {
  main {
    align-items: center;
    text-align: center; }
    main .lg-heading {
      line-height: 1;
      margin-bottom: 1rem; }
    main .skill {
      align-items: left;
      text-align: left; }
    main .languages {
      align-items: center;
      text-align: center; }
    main .library {
      align-items: center;
      text-align: center; }
    main .soft {
      align-items: center;
      text-align: center; }
    main .school p {
      align-items: left;
      text-align: left; }
  ul.menu-nav, div.menu-branding {
    float: none;
    width: 100%;
    min-height: 0px; }
    ul.menu-nav.show, div.menu-branding.show {
      transform: translate3d(0, 0, 0); }
  .menu-nav {
    height: 75vh;
    transform: translate3d(-100%, 0, 0);
    font-size: 24px; }
  .menu-branding {
    height: 25vh;
    transform: translate3d(100%, 0, 0); }
    .menu-branding .portrait {
      background: url(../img/smallportrait.png);
      width: 150px;
      height: 150px; }
  .about-info {
    grid-template-areas: 'bioimage' 'bio' 'exp' 'job1' 'job2' 'job3' 'skill' 'lang' 'library' 'soft' 'edu' 'school1' 'school2' 'school3' 'school4';
    grid-template-columns: 1fr; }
  .games-info {
    grid-template-areas: 'browser' 'lead' 'kung' 'gtype' 'dream' 'xeno' 'member' 'flipside' 'exit' 'radar' 'zone' 'mobile' 'solo' 'core' 'code' 'desk' 'wordfall';
    grid-template-columns: repeat(1, 1fr); }
    .games-info .kung, .games-info .gtype, .games-info .dream, .games-info .xeno,
    .games-info .flip-side, .games-info .exit, .games-info .radar, .games-info .zone,
    .games-info .core, .games-info .code, .games-info .wordfall {
      display: block; }
  .lead {
    text-align: center; }
  .member {
    text-align: center; }
  .movie-screen {
    width: 100vw; }
  .movie {
    width: 100% !important;
    height: calc((100vw - 60px) * 315 / 560) !important; } }

@media screen and (max-width: 500px) {
  h1.lg-heading, h2.lg-heading, h3.lg-heading, h4.lg-heading, h5.lg-heading, h6.lg-heading {
    font-size: 5rem; }
  main#home h1 {
    margin-top: 10vh; }
  .games-info {
    grid-template-areas: 'browser' 'lead' 'kung' 'gtype' 'dream' 'xeno' 'member' 'flipside' 'exit' 'radar' 'zone' 'mobile' 'solo' 'core' 'code' 'desk' 'wordfall';
    grid-template-columns: repeat(1, 1fr); }
    .games-info .kung, .games-info .gtype, .games-info .dream, .games-info .xeno,
    .games-info .flip-side, .games-info .exit, .games-info .radar, .games-info .zone,
    .games-info .core, .games-info .code, .games-info .wordfall {
      display: block; } }
