﻿@-webkit-keyframes background {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes background {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes background {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes pulse {
  0% {
    opacity: 0.1;
  }
  25% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.1;
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes scrolldown {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes headline {
  0% {
    left: -15%;
    opacity: 0;
  }
  100% {
    left: 10%;
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes drawProf {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loadImg {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes drawLine {
  0% {
    top: -65px;
    left: 0;
  }
  20% {
    top: -65px;
  }
  32% {
    top: -82px;
  }
  55% {
    top: -60px;
  }
  100% {
    top: -60px;
    left: 175px;
  }
}
@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}
@-webkit-keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes vert {
  0% {
    height: 0;
    background: #fff;
  }
  100% {
    height: 300px;
    background: #555555;
  }
}
@-webkit-keyframes hor {
  0% {
    width: 0;
    background: #fff;
  }
  50% {
    width: 150px;
  }
  100% {
    width: 150px;
    background: #555;
  }
}
@-webkit-keyframes popIn {
  0% {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
  }
  50% {
    width: 52px;
    position: absolute;
    top: 0;
    left: 0;
    height: 52px;
    opacity: 0.8;
  }
  100% {
    width: 52px;
    position: absolute;
    top: 0;
    left: 0;
    height: 52px;
    opacity: 1;
  }
}
@-webkit-keyframes close {
  0% {
    height: 0px;
  }
  100% {
    height: 50px;
  }
}
@-webkit-keyframes closeb {
  0% {
    width: 0px;
  }
  100% {
    width: 50px;
  }
}
@-webkit-keyframes show {
  0% {
    height: 0px;
  }
  100% {
    height: 100vh;
  }
}
@keyframes revealCircle {
  to {
    transform: rotate(180deg);
  }
}
.light-mode {
  display: none;
}
.dark-mode {
  display: inline;
}
.light .dark-mode {
  display: none;
}
.light .light-mode {
  display: inline;
}
html.light {
  background: linear-gradient(270deg, #ffffff, #ffffff);
}
html.light #menu svg {
  fill: #c0c0c0;
}
html.light .onepage-pagination li a.active:before {
  background: transparent;
}
html.light .onepage-pagination li a:before {
  background: #c0c0c0;
}
html body video {
  width: 100%;
  float: left;
  margin: 20px 0;
  max-width: 350px;
  border: 1px solid #c0c0c0;
  background: #e6e6e6;
}
html body .active .progress {
  background-color: #69a95c;
  -webkit-animation: progressBar 1.5s ease-in-out;
  -webkit-animation-fill-mode: both;
  -moz-animation: progressBar 1.5s ease-in-out;
  -moz-animation-fill-mode: both;
}
html body .active #profile-icon {
  background: #e9e9e9;
}
html body .active #profile-icon img {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 136.6px;
  height: 169.6px;
  animation: drawProf 0.5s;
  animation-delay: 0s;
  animation-fill-mode: none;
}
html body .active .testing {
  width: 120px !important;
  height: 120px !important;
  border-radius: 100%;
  opacity: 0;
  animation: loadImg 1.5s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}
html body .active #contact #contact-animation {
  width: 205px;
  height: 300px;
  margin-top: 50px;
  float: left;
  clear: both;
  overflow: hidden;
}
html body .active #contact #contact-animation .circle {
  overflow: hidden;
  position: relative;
  width: 52px;
  height: 52px;
  left: 147px;
  rotate: 270deg;
}
html body .active #contact #contact-animation .circle:before {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: 100%;
  content: '';
}
html body .active #contact #contact-animation #vert {
  width: 3px;
  float: left;
  animation: vert 1.5s forwards;
  animation-delay: 0.5s;
  position: relative;
  top: 0;
  left: 0;
}
html body .active #contact #contact-animation #box1 {
  width: 300px;
  position: relative;
  left: 3px;
}
html body .active #contact #contact-animation #box1 .line {
  position: relative;
  height: 3px;
  top: 28px;
  animation: hor 1s forwards;
  animation-delay: 0.5s;
  width: 0;
}
html body .active #contact #contact-animation #box1 .circle {
  left: 147px;
}
html body .active #contact #contact-animation #box1 .circle a {
  opacity: 0;
  animation: popIn 3s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  rotate: -270deg;
}
html body .active #contact #contact-animation #box1 .circle .cover {
  position: absolute;
  margin: 0 -50%;
  width: 200%;
  height: inherit;
  transform-origin: 50% 0;
  animation: revealCircle 0.5s linear forwards;
  animation-delay: 0.9s;
}
html body .active #contact #contact-animation #box2 {
  width: 300px;
  position: relative;
  left: 3px;
  top: 50px;
}
html body .active #contact #contact-animation #box2 .line {
  position: relative;
  height: 3px;
  top: 28px;
  animation: hor 1s forwards;
  animation-delay: 1s;
  width: 0;
}
html body .active #contact #contact-animation #box2 .circle a {
  opacity: 0;
  animation: popIn 1.5s;
  animation-delay: 1.8s;
  animation-fill-mode: forwards;
  rotate: -270deg;
}
html body .active #contact #contact-animation #box2 .circle .cover {
  position: absolute;
  margin: 0 -50%;
  width: 200%;
  height: inherit;
  transform-origin: 50% 0;
  animation: revealCircle 0.5s linear forwards;
  animation-delay: 1.4s;
}
html body .active #contact #contact-animation #box3 {
  width: 300px;
  position: relative;
  left: 3px;
  top: 100px;
}
html body .active #contact #contact-animation #box3 .line {
  position: relative;
  height: 3px;
  top: 28px;
  animation: hor 1s forwards;
  animation-delay: 1.5s;
  width: 0;
}
html body .active #contact #contact-animation #box3 .circle a {
  opacity: 0;
  animation: popIn 1.5s;
  animation-delay: 2.2s;
  animation-fill-mode: forwards;
  rotate: -270deg;
}
html body .active #contact #contact-animation #box3 .circle .cover {
  position: absolute;
  margin: 0 -50%;
  width: 200%;
  height: inherit;
  transform-origin: 50% 0;
  animation: revealCircle 0.5s linear forwards;
  animation-delay: 2s;
}
html body .active #contact #contact-animation .container {
  width: 300px;
  height: 100px;
  position: relative;
}
html body .active #contact #contact-animation .hline {
  height: 3px;
  position: relative;
  left: 0;
  width: 0;
  top: 28px;
}
html body .active #contact #contact-animation .image {
  border-radius: 100%;
  position: relative;
  left: 150px;
  top: 25px;
}
html body #nav {
  background: #ffffff;
}
html body #nav ul {
  display: none;
}
html body #nav li {
  color: #c0c0c0;
}
html #animation {
  width: 350px;
  height: 300px;
  overflow: hidden;
  right: -45px;
  float: right;
  position: fixed;
  z-index: -1;
  zoom: 1.2;
  opacity: 1;
  top: -145px;
}
html #animation #box-container {
  width: 300px;
  height: 300px;
  transform: rotate(-45deg);
  position: absolute;
  right: -90px;
  top: 20px;
}
html #animation #box-container .box {
  left: 0;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
}
html #animation #box-container .box#box1 {
  background: #193459;
  animation: pulse 22s infinite;
}
html #animation #box-container .box#box2 {
  background: #3279be;
  animation: pulse 18s infinite;
  width: 45.45454545px;
  height: 45.45454545px;
  left: 110px;
}
html #animation #box-container .box#box3 {
  background: #59bebc;
  left: 110px;
  width: 45.45454545px;
  animation: pulse 14s infinite;
  height: 45.45454545px;
  top: 55.55555556px;
}
html #animation #box-container .box#box4 {
  background: #59bebc;
  width: 200px;
  left: 165px;
  animation: pulse 10s infinite;
}
html #animation #box-container .box#box5 {
  background: #193459;
  top: 110px;
  left: 55px;
  width: 45.45454545px;
  height: 45.45454545px;
  animation: pulse 6s infinite;
}
html #animation #box-container .box#box6 {
  background: #3279be;
  top: 110px;
  left: 110px;
  width: 110px;
  height: 45.45454545px;
  animation: pulse 10s infinite;
}
html #animation #box-container .box#box7 {
  background: #59bebc;
  top: 165px;
  left: 110px;
  width: 45.45454545px;
  height: 45.45454545px;
  animation: pulse 14s infinite;
}
.light-mode {
  display: none;
}
.dark-mode {
  display: inline;
}
html {
  min-width: 375px;
  margin: 0 auto;
  background: #111111;
  background-size: 400% 400%;
}
html body {
  padding: 0;
  margin: 0;
  font-family: "futura_m";
}
html body .page_container {
  opacity: 0;
}
html body #animation {
  width: 350px;
  height: 300px;
  overflow: hidden;
  right: -45px;
  float: right;
  position: fixed;
  z-index: -1;
  zoom: 1.2;
  opacity: 1;
  top: -145px;
}
html body #animation #box-container {
  width: 300px;
  height: 300px;
  transform: rotate(-45deg);
  position: absolute;
  right: -90px;
  top: 20px;
}
html body #animation #box-container .box {
  left: 0;
  width: 300px / 3;
  height: 300px / 3;
  position: absolute;
  top: 0;
  margin: 10px;
}
html body #animation #box-container .box#box1 {
  background: #193459;
  animation: pulse 22s infinite;
}
html body #animation #box-container .box#box2 {
  background: #3279be;
  animation: pulse 18s infinite;
  width: 300px / 3 / 2.2;
  height: 300px / 3 / 2.2;
  left: 300px / 3 + 10px;
}
html body #animation #box-container .box#box3 {
  background: #59bebc;
  left: 300px / 3 + 10px;
  width: 300px / 3 / 2.2;
  animation: pulse 14s infinite;
  height: 300px / 3 / 2.2;
  top: 300px / 3 / 1.8;
}
html body #animation #box-container .box#box4 {
  background: #59bebc;
  width: 300px / 3 * 2;
  left: 300px / 3 * 1.65;
  animation: pulse 10s infinite;
}
html body #animation #box-container .box#box5 {
  background: #193459;
  top: 300px / 3 * 1.1;
  left: 300px / 3 * 0.55;
  width: 300px / 3 / 2.2;
  height: 300px / 3 / 2.2;
  animation: pulse 6s infinite;
}
html body #animation #box-container .box#box6 {
  background: #3279be;
  top: 300px / 3 * 1.1;
  left: 300px / 3 * 1.1;
  width: 300px / 3 * 1.1;
  height: 300px / 3 / 2.2;
  animation: pulse 10s infinite;
}
html body #animation #box-container .box#box7 {
  background: #59bebc;
  top: 300px / 3 * 1.65;
  left: 300px / 3 * 1.1;
  width: 300px / 3 / 2.2;
  height: 300px / 3 / 2.2;
  animation: pulse 14s infinite;
}
html body header {
  background: #000;
  opacity: 1;
  width: 100%;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
html body #profile,
html body #design,
html body #tech,
html body #work,
html body #contact,
html body #portfolio {
  width: 85%;
  float: left;
  top: 100px;
  left: 7.5%;
  position: absolute;
}
html body #profile h1,
html body #design h1,
html body #tech h1,
html body #work h1,
html body #contact h1,
html body #portfolio h1 {
  width: 100%;
}
html body #headline {
  animation: headline;
  animation-duration: 1s;
  position: absolute;
  top: 220px;
  left: 10%;
}
html body #home,
html body #homel {
  z-index: 10;
  cursor: pointer;
}
html body .hide {
  display: none;
}
html body #social {
  height: 100px;
  bottom: 0;
  right: 20px;
  margin: 0 auto;
  position: absolute;
  animation: fadein;
  animation-duration: 5s;
}
html body #social a {
  text-decoration: none;
  float: left;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-left: 15px;
  margin-right: 15px;
}
html body #profile h1,
html body #profile h2 {
  clear: both;
  float: left;
}
html body #interests {
  float: left;
  width: 40%;
  margin-left: 10%;
  margin-top: 10px;
}
html body #interests img {
  float: left;
  width: 30px;
  height: 30px;
  margin: 20px 5px;
}
html body #location {
  float: left;
  margin-top: 0px;
  margin-bottom: 0px;
  width: 100%;
}
html body #location img {
  width: 20px;
  height: 20px;
  margin-top: 5px;
  float: left;
  margin-right: 10px;
}
html body #location h2 {
  float: left;
  width: 100%;
  clear: none;
  margin-bottom: 10px;
}
html body #location .city {
  float: left;
  clear: none;
  font-size: 0.8em;
  font-family: 'Roboto', sans-serif;
}
html body #overview {
  width: 100%;
  float: left;
}
html body #profile-icon {
  width: 136.6px;
  height: 169.6px;
  float: left;
  position: absolute;
  padding-left: 14px;
  z-index: -1;
}
html body #profile-icon svg {
  float: left;
  width: 50px;
  height: 160px;
}
html body #profile-picture {
  position: relative;
  float: left;
  width: 120px;
  margin: 20px 0;
  border-radius: 100%;
  overflow: hidden;
}
html #design h2 {
  margin-bottom: 15px;
  clear: both;
  margin-top: 15px;
}
html #design ul {
  margin: 0;
  clear: both;
  float: left;
}
html #design ul li {
  float: left;
  clear: both;
  margin: 0;
}
html #design .design-skills {
  float: left;
  width: 100%;
}
html #design #software {
  width: 100%;
  float: left;
  clear: both;
}
html #design #design-icon {
  width: 172.8px;
  height: 26.8px;
  float: left;
  margin-bottom: 30px;
  zoom: 0.9;
}
html #design #design-icon svg {
  float: left;
  width: 172.8px;
  height: 26.8px;
}
html #design #design-icon img {
  position: absolute;
  left: 0;
  top: -64px;
  width: 50px;
  height: 100px;
  animation: drawLine 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  transform: rotate(45deg);
}
html #tech h2 {
  margin: 20px 0;
}
html #tech .meter {
  width: 100px;
  border-radius: 10px;
  height: 10px;
  margin-top: 10px;
  float: left;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
html #tech .meter span {
  display: block;
  height: 100%;
}
html #work .employment-history {
  width: 100%;
  float: left;
}
html #work .employment-history .job {
  float: left;
  width: 100%;
  margin: 0 3%;
  margin-top: 20px;
  text-align: left;
}
html #work .employment-history img {
  float: left;
  width: 100px;
}
html #work .employment-history p {
  margin-top: 10px;
  margin-bottom: 30px;
}
html #portfolio .project-container {
  width: 100%;
  clear: both;
  margin: 0px auto;
  max-width: 600px;
}
html #portfolio .project {
  float: left;
  width: 44%;
  clear: none;
  margin: 3%;
  position: relative;
  height: auto;
}
html #portfolio .project img {
  width: 100%;
  float: left;
  border-radius: 10px;
}
html .active .squiggle {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  animation: draw 1s linear forwards;
  animation-delay: 0s;
}
html .active .squiggle2 {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  animation: draw 1s linear forwards;
  animation-delay: 0s;
}
html .active .squiggle3 {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  animation: draw 0.9s linear forwards;
  animation-delay: 0s;
}
html .active #scrolldown {
  opacity: 0;
  font-size: 1.2em;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  position: fixed;
  bottom: 30px;
  left: 20px;
  animation-name: scrolldown;
  animation-duration: 1.5s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
html .active .page_container {
  animation: fadeIn 1s;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 768px) {
  html body #headline h1 {
    font-size: 4.2em;
    line-height: 90px;
    letter-spacing: 0.2px;
  }
  html body #headline h2 {
    font-size: 3.05em;
    line-height: 50px;
    margin: 0;
    margin-bottom: 50px;
    font-weight: normal;
    font-family: 'Roboto', sans-serif;
  }
  html body #animation {
    zoom: 2.5;
    top: 0;
    opacity: 0.3;
  }
  html body #design .design-skills {
    float: left;
    width: 50%;
  }
  html body #work .employment-history {
    margin-top: 0px;
  }
  html body #work .employment-history .job {
    width: 23%;
    margin: 0 10% 0 0;
    margin-top: 0px;
    text-align: left;
  }
  html body #work .employment-history img {
    float: left;
    width: 180px;
    height: 125px;
  }
  html body #work .employment-history p {
    margin-top: 50px;
  }
  html body #portfolio .project-container {
    float: left;
    max-width: 600px;
  }
  html body #portfolio .project {
    width: 27%;
    margin: 3%;
  }
}
@media screen and (min-width: 992px) {
  html body #work .employment-history {
    margin-top: 0px;
  }
  html body #work .employment-history .job {
    width: 23%;
    margin: 0 10% 0 0;
    margin-top: 0px;
    text-align: left;
  }
  html body #work .employment-history img {
    float: left;
    width: 200px;
    height: 190px;
  }
  html body #work .employment-history p {
    margin-top: 0px;
  }
  html body #portfolio .project-container {
    max-width: 600px;
  }
}
/* mobile landscape */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  h1 {
    width: 100%;
    float: left;
    font-size: 1em !important;
    margin: 0 !important;
  }
  h2 {
    width: 100%;
    float: left;
    margin: 0 !important;
    font-size: 0.8em !important;
  }
  .content-container p,
  .content-container ul,
  .content-container li {
    font-size: 12px !important;
  }
  #profile #profile-picture {
    zoom: 0.8;
  }
  #profile #interests {
    width: 20%;
  }
  #profile #overview {
    width: 45%;
    float: left;
    margin-left: 5%;
  }
  #profile #overview h2 {
    margin-top: 10px !important;
  }
  html body #headline {
    top: 150px;
  }
  html body #headline h1,
  html body #headline h2 {
    font-size: 2em;
  }
  html body #profile,
  html body #design,
  html body #tech,
  html body #work,
  html body #contact,
  html body #portfolio {
    top: 90px !important;
  }
  html body #work {
    width: 85%;
  }
  html body #work .employment-history {
    margin-top: 20px;
  }
  html body #work .employment-history .job {
    width: 25%;
    margin: 0 5% 0 0;
    margin-top: 0px;
  }
  html body #work .employment-history p {
    margin-top: 10px;
  }
  html body #profile p {
    font-size: 0.5em !important;
    margin: 5px 0 !important;
  }
  html body #work .employment-history .job {
    width: 25%;
    margin: 0 7% 0 0;
    margin-top: 5px;
  }
  html body #work .employment-history img {
    width: auto;
    height: 30px;
    margin-bottom: 5px;
  }
  html body #work .employment-history p {
    font-size: 0.7em;
  }
  html body #design .design-skills {
    float: left;
    width: 50%;
  }
  html body #design ul li {
    margin: 0;
  }
  html body #tech h2 {
    margin: 0 !important;
  }
  html body #tech .left {
    width: 50%;
    float: left;
  }
  html body #tech .right {
    width: 50%;
    float: left;
  }
  html body #portfolio .project {
    float: left;
    width: 15%;
    clear: none;
    margin: 30px 0.5%;
    position: relative;
    height: auto;
  }
  html body #portfolio .project-container {
    width: 100%;
    clear: both;
    margin: 50px auto;
  }
  html body #portfolio .project img {
    width: 100%;
    float: left;
    border-radius: 10px;
  }
  html body #contact #contact-animation {
    zoom: 0.5;
    margin-top: 20px;
  }
  .onepage-pagination {
    top: 35%;
  }
}
.full-width {
  float: left;
  width: 100%;
  clear: both;
  margin: 20px 0;
}
.full-width img {
  float: left;
  width: 100%;
  margin-bottom: 0 !important;
}
.side-by-side {
  float: left;
  width: 100%;
  clear: both;
  margin: 20px 0;
}
.side-by-side img {
  width: 100%;
  float: left;
  clear: both;
  margin-bottom: 40px !important;
}
.header {
  top: 0;
  left: 0;
}
img {
  width: 100%;
  float: left;
}
.top-bar {
  width: 96%;
  float: left;
  padding: 30px 2%;
  display: none;
  background: #222222;
}
.home {
  float: left;
  width: 50%;
  padding-left: 5%;
  padding-top: 8px;
}
.home a {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  float: left;
}
.subtitle {
  color: #59bebc;
  font-weight: normal;
}
.menu {
  float: right;
  width: 45%;
  text-align: right;
}
a {
  color: #ffffff;
  text-decoration: none;
}
a:hover {
  color: #ffffff;
}
.menu a {
  margin-right: 8%;
  margin-top: 18px;
  float: right;
}
.title {
  width: 85%;
  float: left;
  text-align: center;
  font-size: 35px;
  margin: 100px 7.5% 50px 7.5%;
}
.phone {
  max-width: 300px;
  width: 250px !important;
  margin: 50px auto !important;
  border-radius: 20px 20px 20px 20px !important;
  box-shadow: 4px 8px 8px hsla(0, 0%, 0%, 0.38) !important;
  margin-left: calc(50% - 170px) !important;
}
.project-container {
  width: 100%;
  clear: both;
  margin: 0 auto;
}
.project {
  float: left;
  width: 90%;
  clear: both;
  margin: 5% 5vw;
  position: relative;
  height: auto;
}
.card-title {
  width: 85%;
  top: 20px;
  left: 20px;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
}
.project img {
  border-radius: 20px;
  float: left;
  border: 1px solid #e6e6e6;
}
.project-blurb {
  float: left;
}
.website {
  float: left;
  color: #3279be;
  margin-top: 16px;
  margin-bottom: 16px;
  clear: both;
}
.website:hover {
  color: #3279be;
}
.contact {
  width: 172px;
  margin-left: calc(50% - 84px);
  margin-top: 50px;
  margin-bottom: 100px;
  float: left;
  clear: both;
  text-align: center;
  height: 66px;
  overflow: hidden;
}
.contact a {
  margin-left: 10px;
  margin-right: 10px;
  float: left;
  width: 60px!important;
  clear: none!important;
}
.contact img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 3px solid #ffffff !important;
}
.content-container {
  width: 90%;
  margin-top: 0px;
  margin-left: 5%;
  float: left;
  max-width: 1200px;
  padding: 30px 0;
}
.content-container h1 {
  margin-bottom: 10px !important;
  width: 100% !important;
}
.content-container h4,
.dates {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  width: 100% !important;
}
.content-container ul,
.content-container li {
  width: 90% !important;
}
.content-container img {
  float: left;
  margin-bottom: 20px;
  border: 1px solid #e6e6e6;
}
.content-container h1,
.content-container h2,
.content-container h3,
.content-container h4,
.content-container p,
.content-container a,
.content-container ul,
.content-container li,
.content-container .dates {
  clear: both;
  width: 100%;
  float: left;
}
.image-scroller img {
  float: left;
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
}
.hero {
  width: 100%;
  background: #3279be;
  color: #fff;
  text-align: center;
  float: left;
}
.hero h1 {
  width: 70%;
  margin-left: 15%;
  margin-top: 100px;
  font-size: 55px;
  margin-bottom: 100px;
  line-height: 55px;
}
.hero p {
  width: 100%;
  margin-bottom: 100px;
}
.quote {
  width: 100%;
  color: #222;
  text-align: center;
  float: left;
  font-style: italic;
}
.quote h1 {
  width: 80%;
  margin-left: 10%;
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 25px;
  text-align: center;
}
footer {
  background: #222222;
  width: 100%;
  float: left;
}
.helpertext {
  float: left;
  margin: 10px 0 20px 0;
  clear: both;
  font-size: 14px;
}
.boditrax-app video {
  aspect-ratio: 1 / 1.824;
  margin: 0 !important;
}
.port-image {
  margin-top: 20px;
  float: left;
  margin-bottom: 0!important;
  clear: both;
}
.port-image img {
  margin-bottom: 0 !important;
}
.boditrax-app {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 480px) {
  .header {
    display: none;
  }
  .top-bar {
    display: inline;
  }
  .project-container {
    width: 100%;
  }
  .project {
    width: 44%;
    clear: none;
    margin: 3%;
  }
  .project-blurb {
    display: none;
  }
}
.header {
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 3;
  background: #222222;
}
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #fff;
}
.header li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
}
.header li a:hover,
.header .menu-btn:hover {
  background-color: #f4f4f4;
}
.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}
.hero-image {
  margin-top: 60px;
  text-align: center;
  background: #ffffff;
}
.hero-image img {
  max-width: 100% !important;
}
.image-scroller {
  float: left;
  height: 210px;
  margin-top: 50px;
  width: 400px;
  margin-left: calc(50% - 200px - 15px);
  margin-bottom: 0;
  overflow-y: scroll;
  border: 15px solid #e6e6e6;
  border-radius: 20px 20px 0 0;
}
.image-scroller-keyboard {
  float: left;
  width: 450px;
  margin-left: calc(50% - 225px);
  background: #e6e6e6;
  height: 100px;
  clear: both;
  height: 15px;
  margin-bottom: 50px;
  border-radius: 3px;
  display: inline;
  border-top: 2px solid #ffffff;
  box-shadow: 4px 8px 8px hsla(0, 0%, 0%, 0.38);
}
.image-scroller::-webkit-scrollbar {
  width: 5px;
}
/* Track */
.image-scroller::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/* Handle */
.image-scroller::-webkit-scrollbar-thumb {
  background: #888;
}
/* Handle on hover */
.image-scroller::-webkit-scrollbar-thumb:hover {
  background: #555;
}
@media only screen and (max-width: 480px) and (min-width: 0px) {
  .image-scroller {
    float: left;
    width: 100%;
    margin-left: 0;
    height: auto;
    border: 1px solid #e6e6e6;
    overflow: hidden;
    border-radius: 0;
  }
  .image-scroller-keyboard {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .menu a {
    margin-right: 10%;
  }
  .project {
    width: 27.3%;
    clear: none;
    margin: 20px 3%;
  }
  .hero h1 {
    width: 33%;
    margin-left: 33%;
    margin-top: 100px;
    font-size: 60px;
  }
  .image-scroller {
    width: 600px;
    margin-left: calc(50% - 300px - 15px);
    height: 320px;
  }
  .image-scroller-keyboard {
    width: 650px;
    margin-left: calc(50% - 325px);
  }
  .side-by-side img:nth-child(even) {
    width: 49%;
    float: left;
    clear: none;
    margin-left: calc(1% - 2px);
    margin-right: 0;
    margin-bottom: 0;
  }
  .side-by-side img:nth-child(odd) {
    width: 49%;
    float: left;
    margin-left: 0;
    margin-right: calc(1% - 2px);
    margin-bottom: 0;
    clear: none;
  }
}
@media screen and (min-width: 968px) {
  .image-scroller {
    width: 800px;
    margin-left: calc(50% - 400px - 15px);
    height: 420px;
  }
  .image-scroller-keyboard {
    width: 850px;
    margin-left: calc(50% - 425px);
  }
  .card-title {
    font-size: 15px;
  }
  .two {
    width: 48%;
    margin-right: 2%;
    clear: none;
    float: left;
  }
  .three {
    width: 30%;
    margin-right: 3%;
    clear: none;
    float: left;
  }
  .boditrax-app {
    width: 30%!important;
    aspect-ratio: 1 / 1.83;
    border: 0!important;
  }
}
@media screen and (min-width: 1200px) {
  .content-container {
    width: 1200px !important;
  }
}
@media screen and (min-width: 1200px) and (min-height: 800px) {
  html body #profile h1,
  html body #design h1,
  html body #tech h1,
  html body #work h1,
  html body #contact h1,
  html body #portfolio h1 {
    margin-top: 50px;
    margin-bottom: 20px;
  }
  html body #profile-picture {
    zoom: 1.5;
  }
  html body #work .employment-history {
    margin-top: 50px;
  }
  html body #portfolio .project-container {
    max-width: 900px;
    margin-top: 50px;
  }
  html body #portfolio .project {
    width: 27.3%;
    clear: none;
    margin: 20px 3%;
  }
  html body #contact #contact-animation {
    zoom: 1.2;
  }
}