@import url("https://fonts.googleapis.com/css?family=Titillium+Web:200,400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans+Condensed:700&display=swap");
:root {
  --black: #17171d;
  --gray-dark: #63636e;
  --gray-light: #cfcfcf;
  --white: #fafafa;
  --blue: #48BEFF;
  --teal: #46e3ce;
  --orange: #F2545B;
  --white-alt: #f2f2f2;
  --silver: #f9fbff;
  --purple: #845dde;
  --display: TrumpGothicEast-Bold, sans-serif;
  --os-cond: Open Sans Condensed, sans-serif;
  --titillium: Titillium Web, sans-serif;
  --h1-sm: 2rem;
  --h1-md: 3rem;
  --h1-lg: 3.5rem;
  --h2-sm: 1.75rem;
  --h2-md: 2.25rem;
  --h2-lg: 2.75rem;
  --h3-sm: 1.5rem;
  --h3-md: 2rem;
  --h3-lg: 2.25rem;
  --h4: 1.4rem;
  --h5: 1.35rem;
  --h6: 1.25rem;
  --lead: 1.25rem;
  --paragraph: 1rem;
  --section-padding: 6% 1rem;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

li {
  display: inline-block;
}

a {
  text-decoration: none;
}

/* TEXT CONTENT
        SET LINE HEIGHT
        DEFAULT FONT COLOR
*/
h1, h2, h3, h4, h5, h6, p, span, small, a, button, li {
  line-height: 1.75;
  color: #63636e;
  color: var(--gray-dark);
}

img {
  max-width: 100%;
  display: block;
}

.clearfix,
main::after,
section::after,
header::after,
footer::before {
  content: '';
  display: block;
  clear: both;
}

@font-face {
  font-family: TrumpGothicEast-Bold;
  src: url("/static/assets/fonts/TrumpGothicEast-Bold.woff");
  font-weight: 500;
}

h1, h2 {
  font-family: "Open Sans Condensed", sans-serif;
  font-family: var(--os-cond);
}

h3, h4, h5, h6, p, small, span, li, figcaption {
  font-family: "Titillium Web", sans-serif;
  font-family: var(--titillium);
}

h1 {
  font-size: 2rem;
  font-size: var(--h1-sm);
  margin-bottom: 2rem;
}

@media only screen and (min-width: 768px) {
  h1 {
    font-size: 3rem;
    font-size: var(--h1-md);
  }
}

@media only screen and (min-width: 992px) {
  h1 {
    font-size: 3.5rem;
    font-size: var(--h1-lg);
  }
}

h2 {
  font-size: 1.75rem;
  font-size: var(--h2-sm);
  margin-bottom: 2rem;
}

@media only screen and (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
    font-size: var(--h2-md);
  }
}

@media only screen and (min-width: 992px) {
  h2 {
    font-size: 2.75rem;
    font-size: var(--h2-lg);
  }
}

h3 {
  font-size: 1.5rem;
  font-size: var(--h3-sm);
  margin-bottom: 1.5rem;
}

@media only screen and (min-width: 768px) {
  h3 {
    font-size: 2rem;
    font-size: var(--h3-md);
  }
}

@media only screen and (min-width: 992px) {
  h3 {
    font-size: 2.25rem;
    font-size: var(--h3-lg);
  }
}

h3 {
  font-weight: 700;
}

h4 {
  font-size: 1.4rem;
  font-size: var(--h4);
  margin-bottom: 1rem;
}

h5 {
  font-size: 1.35rem;
  font-size: var(--h5);
  margin-bottom: 1rem;
}

h6 {
  font-size: 1.25rem;
  font-size: var(--h6);
  margin-bottom: 1rem;
}

p.lead {
  font-size: 1.25rem;
  font-size: var(--lead);
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  font-size: var(--paragraph);
  font-weight: 400;
}

@-webkit-keyframes fadeInSkills {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInSkills {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes headerPulse {
  0% {
    color: #fafafa;
    color: var(--white);
  }
  25%, 85% {
    color: rgba(99, 99, 110, 0.3);
  }
  100% {
    color: #fafafa;
    color: var(--white);
  }
}

@keyframes headerPulse {
  0% {
    color: #fafafa;
    color: var(--white);
  }
  25%, 85% {
    color: rgba(99, 99, 110, 0.3);
  }
  100% {
    color: #fafafa;
    color: var(--white);
  }
}

@-webkit-keyframes arrowDownFade {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: 0;
  }
  50%, 75% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    opacity: 0;
  }
}

@keyframes arrowDownFade {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: 0;
  }
  50%, 75% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    opacity: 0;
  }
}

@-webkit-keyframes navTogglePulse {
  0% {
    background-position: right;
  }
  50% {
    background-position: left;
  }
}

@keyframes navTogglePulse {
  0% {
    background-position: right;
  }
  50% {
    background-position: left;
  }
}

@-webkit-keyframes activeLine1 {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(-45px);
            transform: translateX(-45px);
  }
  65% {
    -webkit-transform: translateX(-45px) translateY(-35px) rotateZ(45deg);
            transform: translateX(-45px) translateY(-35px) rotateZ(45deg);
  }
  100% {
    background: transparent;
    background-color: #fafafa;
    background-color: var(--white);
    -webkit-transform: translateX(0) translateY(8px) rotateZ(45deg);
            transform: translateX(0) translateY(8px) rotateZ(45deg);
  }
}

@keyframes activeLine1 {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(-45px);
            transform: translateX(-45px);
  }
  65% {
    -webkit-transform: translateX(-45px) translateY(-35px) rotateZ(45deg);
            transform: translateX(-45px) translateY(-35px) rotateZ(45deg);
  }
  100% {
    background: transparent;
    background-color: #fafafa;
    background-color: var(--white);
    -webkit-transform: translateX(0) translateY(8px) rotateZ(45deg);
            transform: translateX(0) translateY(8px) rotateZ(45deg);
  }
}

@-webkit-keyframes activeLine2 {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
  }
  25% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
}

@keyframes activeLine2 {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
  }
  25% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
}

@-webkit-keyframes activeLine3 {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(45px);
            transform: translateX(45px);
  }
  65% {
    -webkit-transform: translateX(45px) translateY(-55px) rotateZ(-45deg);
            transform: translateX(45px) translateY(-55px) rotateZ(-45deg);
  }
  100% {
    background: transparent;
    background-color: #fafafa;
    background-color: var(--white);
    -webkit-transform: translateX(0) translateY(-8px) rotateZ(-45deg);
            transform: translateX(0) translateY(-8px) rotateZ(-45deg);
  }
}

@keyframes activeLine3 {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(45px);
            transform: translateX(45px);
  }
  65% {
    -webkit-transform: translateX(45px) translateY(-55px) rotateZ(-45deg);
            transform: translateX(45px) translateY(-55px) rotateZ(-45deg);
  }
  100% {
    background: transparent;
    background-color: #fafafa;
    background-color: var(--white);
    -webkit-transform: translateX(0) translateY(-8px) rotateZ(-45deg);
            transform: translateX(0) translateY(-8px) rotateZ(-45deg);
  }
}

@-webkit-keyframes inactiveLine1 {
  0% {
    background: transparent;
    background-color: #fafafa;
    background-color: var(--white);
    -webkit-transform: translateX(0) translateY(8px) rotateZ(45deg);
            transform: translateX(0) translateY(8px) rotateZ(45deg);
  }
  60% {
    -webkit-transform: translateX(42px) translateY(50px) rotateZ(45deg);
            transform: translateX(42px) translateY(50px) rotateZ(45deg);
  }
  70% {
    -webkit-transform: translateX(42px) translateY(0) rotateZ(0deg);
            transform: translateX(42px) translateY(0) rotateZ(0deg);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0) rotateZ(0deg);
            transform: translateX(0) translateY(0) rotateZ(0deg);
  }
}

@keyframes inactiveLine1 {
  0% {
    background: transparent;
    background-color: #fafafa;
    background-color: var(--white);
    -webkit-transform: translateX(0) translateY(8px) rotateZ(45deg);
            transform: translateX(0) translateY(8px) rotateZ(45deg);
  }
  60% {
    -webkit-transform: translateX(42px) translateY(50px) rotateZ(45deg);
            transform: translateX(42px) translateY(50px) rotateZ(45deg);
  }
  70% {
    -webkit-transform: translateX(42px) translateY(0) rotateZ(0deg);
            transform: translateX(42px) translateY(0) rotateZ(0deg);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0) rotateZ(0deg);
            transform: translateX(0) translateY(0) rotateZ(0deg);
  }
}

@-webkit-keyframes inactiveLine2 {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes inactiveLine2 {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
  }
}

@-webkit-keyframes inactiveLine3 {
  0% {
    background: transparent;
    background-color: #fafafa;
    background-color: var(--white);
    -webkit-transform: translateX(0) translateY(-8px) rotateZ(-45deg);
            transform: translateX(0) translateY(-8px) rotateZ(-45deg);
  }
  60% {
    -webkit-transform: translateX(-42px) translateY(34px) rotateZ(-45deg);
            transform: translateX(-42px) translateY(34px) rotateZ(-45deg);
  }
  70% {
    -webkit-transform: translateX(-45px) translateY(0) rotateZ(0);
            transform: translateX(-45px) translateY(0) rotateZ(0);
  }
  100% {
    -webkit-transform: translateX(0px) translateY(0) rotateZ(0);
            transform: translateX(0px) translateY(0) rotateZ(0);
  }
}

@keyframes inactiveLine3 {
  0% {
    background: transparent;
    background-color: #fafafa;
    background-color: var(--white);
    -webkit-transform: translateX(0) translateY(-8px) rotateZ(-45deg);
            transform: translateX(0) translateY(-8px) rotateZ(-45deg);
  }
  60% {
    -webkit-transform: translateX(-42px) translateY(34px) rotateZ(-45deg);
            transform: translateX(-42px) translateY(34px) rotateZ(-45deg);
  }
  70% {
    -webkit-transform: translateX(-45px) translateY(0) rotateZ(0);
            transform: translateX(-45px) translateY(0) rotateZ(0);
  }
  100% {
    -webkit-transform: translateX(0px) translateY(0) rotateZ(0);
            transform: translateX(0px) translateY(0) rotateZ(0);
  }
}

@-webkit-keyframes navToggleFadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes navToggleFadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes pageFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes pageFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes pageFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes pageFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

html {
  min-height: 100vh;
  min-width: 320px;
  background: #fafafa;
  background: var(--white);
}

@media only screen and (min-width: 992px) {
  html {
    overflow-y: scroll;
  }
  html::before {
    content: '';
    position: fixed;
    z-index: 1000;
    margin: 1.5rem;
    height: calc(100% - 3rem);
    width: calc(100% - 3rem);
    -webkit-box-shadow: 0 12px 90px -12px rgba(0, 0, 0, 0.5);
            box-shadow: 0 12px 90px -12px rgba(0, 0, 0, 0.5);
    pointer-events: none;
  }
  html::after {
    content: '';
    position: fixed;
    border: 1.5rem solid #fafafa;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    left: 0;
    pointer-events: none;
  }
}

body {
  background: #fafafa;
  background: var(--white);
  min-height: 100vh;
}

@media only screen and (min-width: 992px) {
  body {
    margin: 1.5rem;
    min-height: calc(100vh - 3rem);
  }
}

.index-hero .arrow-down-icon {
  position: absolute;
  -webkit-animation: arrowDownFade 2000ms ease-in-out 10;
          animation: arrowDownFade 2000ms ease-in-out 10;
}

.tech-icon {
  max-width: 100%;
  max-height: 100%;
}

.project-tech-stack-container .tech-icon,
.tech-stack-container .tech-icon {
  max-height: 30px;
  max-width: 30px;
}

.button {
  position: relative;
  background: #48BEFF;
  background: var(--blue);
  padding: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  -webkit-box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
}

@media only screen and (min-width: 768px) {
  .button {
    padding: .5rem 1rem .5rem .5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 30px;
  }
}

.button::before {
  position: absolute;
  content: '';
  top: 4px;
  bottom: 4px;
  left: 4px;
  right: 4px;
  background: var(--transparent);
  border-radius: 50%;
  -webkit-transition: opacity 350ms ease-in-out;
  transition: opacity 350ms ease-in-out;
}

@media only screen and (min-width: 768px) {
  .button::before {
    border-radius: 30px;
  }
}

.button svg {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .button svg {
    margin-right: .5rem;
  }
}

.button svg path {
  fill: #48BEFF;
  fill: var(--blue);
  -webkit-transition: fill 350ms ease-in-out;
  transition: fill 350ms ease-in-out;
}

.button span {
  display: none;
  font-size: .7rem;
  text-transform: capitalize;
  color: #48BEFF;
  color: var(--blue);
  -webkit-transition: color 350ms ease-in-out;
  transition: color 350ms ease-in-out;
}

@media only screen and (min-width: 768px) {
  .button span {
    display: block;
    position: relative;
  }
}

@media only screen and (min-width: 1450px) {
  .button span {
    font-size: 1rem;
  }
}

.button:hover::before {
  opacity: 0;
}

.button:hover svg path {
  fill: #fafafa;
  fill: var(--white);
}

@media only screen and (min-width: 768px) {
  .button:hover span {
    color: #fafafa;
    color: var(--white);
  }
}

.button.button-disabled {
  -webkit-filter: grayscale(1) opacity(0.5);
          filter: grayscale(1) opacity(0.5);
  cursor: not-allowed;
  -webkit-transition: -webkit-filter 350ms ease-in-out;
  transition: -webkit-filter 350ms ease-in-out;
  transition: filter 350ms ease-in-out;
  transition: filter 350ms ease-in-out, -webkit-filter 350ms ease-in-out;
}

.button.button-disabled:hover, .button.button-disabled:focus {
  -webkit-filter: grayscale(1) opacity(0.75);
          filter: grayscale(1) opacity(0.75);
}

h2.section-title {
  position: relative;
  display: inline-block;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2.section-title::after {
  content: '';
  position: absolute;
  height: 8px;
  width: 8px;
  right: -15px;
  bottom: 14px;
  background: #48BEFF;
  background: var(--blue);
}

@media only screen and (min-width: 768px) {
  h2.section-title::after {
    bottom: 18px;
  }
}

@media only screen and (min-width: 992px) {
  h2.section-title::after {
    bottom: 21px;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 9;
  height: 100vh;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0ms;
  transition: -webkit-transform 0ms;
  transition: transform 0ms;
  transition: transform 0ms, -webkit-transform 0ms;
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}

@media only screen and (min-width: 768px) {
  .header {
    height: 92px;
  }
}

@media only screen and (min-width: 992px) {
  .header {
    width: calc(100% - 3rem);
  }
}

.header.nav-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}

.navbar {
  width: 100%;
  height: 100%;
  background: rgba(23, 23, 29, 0.9);
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: opacity 350ms ease-in-out 350ms, -webkit-transform 350ms ease-in-out 350ms;
  transition: opacity 350ms ease-in-out 350ms, -webkit-transform 350ms ease-in-out 350ms;
  transition: opacity 350ms ease-in-out 350ms, transform 350ms ease-in-out 350ms;
  transition: opacity 350ms ease-in-out 350ms, transform 350ms ease-in-out 350ms, -webkit-transform 350ms ease-in-out 350ms;
  will-change: transform, opacity;
}

@media only screen and (min-width: 768px) {
  .navbar {
    background: transparent;
  }
}

.header.nav-active .navbar {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}

.nav-toggle {
  position: fixed;
  right: 0;
  height: 60px;
  width: 60px;
  cursor: pointer;
  margin: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  z-index: 10;
  -webkit-transition: background 350ms ease-in-out;
  transition: background 350ms ease-in-out;
  opacity: 0;
  -webkit-animation: navToggleFadeIn 2000ms ease-in-out forwards;
          animation: navToggleFadeIn 2000ms ease-in-out forwards;
}

@media only screen and (min-width: 992px) {
  .nav-toggle {
    right: 1.5rem;
  }
}

.nav-toggle:hover {
  background: rgba(23, 23, 29, 0.05);
}

span.toggle-line {
  height: 2px;
  width: 45%;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, rgba(250, 250, 250, 0.4)), color-stop(40%, #48beff), color-stop(60%, #845dde), color-stop(80%, rgba(250, 250, 250, 0.4)));
  background: linear-gradient(90deg, rgba(250, 250, 250, 0.4) 20%, #48beff 40%, #845dde 60%, rgba(250, 250, 250, 0.4) 80%);
  background-size: 500% 100%;
  background-position: left;
  display: block;
  position: absolute;
  will-change: transform, opacity, background;
}

span.toggle-line:nth-of-type(1) {
  top: calc(50% - 9px);
  -webkit-animation: inactiveLine1 500ms linear 0ms forwards, navTogglePulse 2000ms ease-in-out 0ms infinite;
          animation: inactiveLine1 500ms linear 0ms forwards, navTogglePulse 2000ms ease-in-out 0ms infinite;
}

span.toggle-line:nth-of-type(2) {
  width: calc(100% - 1rem);
  -webkit-animation: inactiveLine2 500ms linear 0ms forwards,  navTogglePulse 2000ms ease-in-out 150ms infinite;
          animation: inactiveLine2 500ms linear 0ms forwards,  navTogglePulse 2000ms ease-in-out 150ms infinite;
}

span.toggle-line:nth-of-type(3) {
  top: calc(50% + 7px);
  -webkit-animation: inactiveLine3 500ms linear 0ms forwards,  navTogglePulse 2000ms ease-in-out 250ms infinite;
          animation: inactiveLine3 500ms linear 0ms forwards,  navTogglePulse 2000ms ease-in-out 250ms infinite;
}

.nav-toggle.toggle-active span.toggle-line:nth-of-type(1) {
  -webkit-animation: activeLine1 500ms linear 150ms forwards;
          animation: activeLine1 500ms linear 150ms forwards;
}

.nav-toggle.toggle-active span.toggle-line:nth-of-type(2) {
  -webkit-animation: activeLine2 500ms linear 0ms forwards;
          animation: activeLine2 500ms linear 0ms forwards;
}

.nav-toggle.toggle-active span.toggle-line:nth-of-type(3) {
  -webkit-animation: activeLine3 500ms linear 300ms forwards;
          animation: activeLine3 500ms linear 300ms forwards;
}

.nav-link {
  color: #fafafa;
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  -webkit-box-shadow: 0px -11px 0px 0px #845dde inset;
          box-shadow: 0px -11px 0px 0px #845dde inset;
  transition: box-shadow 350ms ease-in-out, -webkit-box-shadow 350ms ease-in-out;
}

.nav-link:hover {
  -webkit-box-shadow: 0px -28px 0px 0px #845dde inset;
          box-shadow: 0px -28px 0px 0px #845dde inset;
}

@media only screen and (min-width: 768px) {
  .nav-link {
    font-size: 1.25rem;
    font-weight: 400;
    -webkit-box-shadow: 0px -6px 0px 0px #845dde inset;
            box-shadow: 0px -6px 0px 0px #845dde inset;
  }
  .nav-link:hover {
    -webkit-box-shadow: 0px -33px 0px 0px #845dde inset;
            box-shadow: 0px -33px 0px 0px #845dde inset;
  }
}

.nav-list-item {
  margin: .5rem 0;
  opacity: 0;
  -webkit-transition: opacity 350ms ease-in-out 0ms;
  transition: opacity 350ms ease-in-out 0ms;
}

@media only screen and (min-width: 768px) {
  .nav-list-item {
    margin: 0;
  }
  .nav-list-item:not(:last-of-type) {
    margin-right: 1rem;
  }
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 768px) {
  .nav-list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
    position: absolute;
    right: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-right: 6rem;
  }
}

.header.nav-active .nav-list-item {
  opacity: 1;
}

.header.nav-active .nav-list-item:nth-child(1) {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}

.header.nav-active .nav-list-item:nth-child(2) {
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}

.header.nav-active .nav-list-item:nth-child(3) {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}

.header.nav-active .nav-list-item:nth-child(4) {
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}

.footer {
  background: #17171d;
  background: var(--black);
  padding: 4% 1rem;
}

.footer-content span {
  color: #cfcfcf;
  color: var(--gray-light);
}

.page {
  opacity: 0;
  -webkit-animation: pageFadeIn 500ms ease-in-out forwards;
          animation: pageFadeIn 500ms ease-in-out forwards;
}

.fade-out {
  -webkit-animation: pageFadeOut 500ms ease-in-out forwards;
          animation: pageFadeOut 500ms ease-in-out forwards;
}

.fade-in {
  -webkit-animation: pageFadeIn 500ms ease-in-out forwards;
          animation: pageFadeIn 500ms ease-in-out forwards;
}

body > * {
  -webkit-transition: -webkit-filter 350ms ease-in-out;
  transition: -webkit-filter 350ms ease-in-out;
  transition: filter 350ms ease-in-out;
  transition: filter 350ms ease-in-out, -webkit-filter 350ms ease-in-out;
  will-change: filter;
}

@media only screen and (min-width: 768px) {
  .nav-active-filter {
    -webkit-filter: brightness(0.4) blur(2px);
            filter: brightness(0.4) blur(2px);
  }
}

a.link {
  font-weight: 700;
  -webkit-box-shadow: 0px -11px 0px 0px #48BEFF inset;
          box-shadow: 0px -11px 0px 0px #48BEFF inset;
  transition: box-shadow 350ms ease-in-out,  -webkit-box-shadow 350ms ease-in-out;
}

a.link:hover {
  -webkit-box-shadow: 0px -28px 0px 0px #48BEFF inset;
          box-shadow: 0px -28px 0px 0px #48BEFF inset;
}

.emphasis {
  font-weight: 700;
  font-style: italic;
}

span.strike {
  position: relative;
  color: rgba(99, 99, 110, 0.5);
}

span.strike::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background: #48BEFF;
  background: var(--blue);
  top: 50%;
  -webkit-transform: rotateZ(-3deg) translateY(2px);
          transform: rotateZ(-3deg) translateY(2px);
}

.card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.card-item:not(:last-of-type) {
  margin-bottom: 8rem;
}

@media only screen and (min-width: 992px) {
  .card-item {
    background: #f2f2f2;
    background: var(--white-alt);
    -webkit-box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.25);
            box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.25);
  }
}

@media only screen and (min-width: 1200px) {
  .card-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-height: 700px;
  }
}

.card-image-container {
  max-height: 300px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 992px) {
  .card-image-container {
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .card-image-container {
    max-height: none;
    margin-bottom: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
  }
  .card-image-container img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}

.card-text h3 {
  position: relative;
  margin-top: 2rem;
}

@media only screen and (min-width: 992px) {
  .card-text h3 {
    margin-top: 0;
  }
}

@media only screen and (min-width: 1200px) {
  .card-text h3 {
    margin-bottom: 4rem;
  }
}

.card-text h3::before {
  position: absolute;
  content: '';
  height: .25rem;
  width: 8rem;
  background: #845dde;
  background: var(--purple);
  left: 0;
  top: -.5rem;
}

@media only screen and (min-width: 992px) {
  .card-text h3::before {
    content: none;
  }
}

@media only screen and (min-width: 1200px) {
  .card-text h3::before {
    content: '';
    top: auto;
    bottom: -1.5rem;
  }
}

.card-text p {
  text-align: justify;
}

.card-text p:not(:last-of-type) {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 992px) {
  .card-text p {
    font-size: 1.25rem;
  }
}

@media only screen and (min-width: 992px) {
  .card-text {
    padding: 2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .card-text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.page-section {
  padding: 6% 1rem;
  padding: var(--section-padding);
  background: #fafafa;
  background: var(--white);
}

.section-inner {
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
}

@media only screen and (min-width: 992px) {
  .section-inner {
    width: 90%;
    margin: 0 auto;
    max-width: 1400px;
  }
}

.index-hero {
  background: #17171d;
  background: var(--black);
  color: #63636e;
  color: var(--gray-dark);
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

@media only screen and (min-width: 992px) {
  .index-hero {
    min-height: calc(100vh - 3rem);
  }
}

.hero-welcome {
  text-align: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-welcome-pre small,
.skill-list-item {
  font-family: "Open Sans Condensed", sans-serif;
  font-family: var(--os-cond);
}

@media only screen and (min-width: 992px) {
  .hero-welcome-pre small,
  .skill-list-item {
    font-size: 2rem;
  }
}

.hero-welcome-name {
  margin: .5rem 0;
}

@media only screen and (min-width: 992px) {
  .hero-welcome-name {
    margin: 1rem 0;
  }
}

.hero-welcome-name .letter {
  font-family: "TrumpGothicEast-Bold", sans-serif;
  font-family: var(--display);
  font-size: 12vw;
  line-height: normal;
  color: rgba(99, 99, 110, 0.3);
  -webkit-animation: headerPulse 3000ms ease-in-out infinite;
          animation: headerPulse 3000ms ease-in-out infinite;
}

@media only screen and (min-width: 1600px) {
  .hero-welcome-name .letter {
    font-size: 12rem;
  }
}

.letter:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.letter:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.letter:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.letter:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.letter:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.letter:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.letter:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.letter:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.letter:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.letter:nth-child(10) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.letter:nth-child(11) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.letter:nth-child(12) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.letter:nth-child(13) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.letter:nth-child(14) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.skill-list-item {
  position: relative;
  cursor: pointer;
  opacity: 0;
  -webkit-animation: fadeInSkills 2000ms ease-in-out forwards;
          animation: fadeInSkills 2000ms ease-in-out forwards;
  display: inline-block;
}

.skill-list-item:not(:last-of-type) {
  margin-right: .5rem;
}

@media only screen and (min-width: 992px) {
  .skill-list-item:not(:last-of-type) {
    margin-right: 1rem;
  }
}

.skill-list-item::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  right: -4px;
  bottom: 8px;
  background: #48BEFF;
  background: var(--blue);
}

@media only screen and (min-width: 992px) {
  .skill-list-item::after {
    width: 6px;
    height: 6px;
    right: -9px;
    bottom: 17px;
  }
}

.skill-list-item:hover span {
  opacity: 1;
  -webkit-transform: translate(-50%, 10px);
          transform: translate(-50%, 10px);
}

.skill-list-item span {
  display: none;
}

@media only screen and (min-width: 500px) {
  .skill-list-item span {
    display: block;
    position: absolute;
    background: #fafafa;
    background: var(--white);
    white-space: nowrap;
    font-size: .65rem;
    text-transform: none;
    padding: .25rem .5rem;
    top: 100%;
    pointer-events: none;
    left: 50%;
    -webkit-transform: translate(-50%, 15px);
            transform: translate(-50%, 15px);
    opacity: 0;
    -webkit-transition: opacity 500ms ease-in-out, -webkit-transform 500ms ease-in-out;
    transition: opacity 500ms ease-in-out, -webkit-transform 500ms ease-in-out;
    transition: opacity 500ms ease-in-out, transform 500ms ease-in-out;
    transition: opacity 500ms ease-in-out, transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out;
  }
  .skill-list-item span::before {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    background: #fafafa;
    background: var(--white);
    left: 50%;
    -webkit-transform: translate(-50%, -8px) rotateZ(45deg);
            transform: translate(-50%, -8px) rotateZ(45deg);
  }
}

@media only screen and (min-width: 992px) {
  .skill-list-item span {
    font-size: .8rem;
  }
}

.skill-list-item:nth-child(1) {
  -webkit-animation-delay: 3000ms;
          animation-delay: 3000ms;
}

.skill-list-item:nth-child(2) {
  -webkit-animation-delay: 4000ms;
          animation-delay: 4000ms;
}

.skill-list-item:nth-child(3) {
  -webkit-animation-delay: 5000ms;
          animation-delay: 5000ms;
}

.skill-list-item:nth-child(4) {
  -webkit-animation-delay: 6000ms;
          animation-delay: 6000ms;
}

.hero-icon-container {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  bottom: 2rem;
  height: 40px;
  width: 40px;
  background: linear-gradient(165deg, #845dde, #48BEFF);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 12px -3px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 12px -3px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

@media only screen and (min-width: 992px) {
  .hero-icon-container {
    bottom: 3rem;
    height: 60px;
    width: 60px;
  }
}

.hero-icon-container::before {
  content: '';
  position: absolute;
  background: #17171d;
  background: var(--black);
  top: 4px;
  bottom: 4px;
  left: 4px;
  right: 4px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 7px 0px black;
          box-shadow: 0 0 7px 0px black;
}

.intro-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1;
      grid-template-columns: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.intro-grid h1 {
  font-family: "Titillium Web", sans-serif;
  font-family: var(--titillium);
  font-weight: 200;
  margin-bottom: 0;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / 3;
  margin-left: .25rem;
  position: relative;
  color: #63636e;
  color: var(--gray-dark);
  padding-right: 4rem;
  position: relative;
  z-index: 2;
}

.intro-grid h1 span {
  font-family: "Open Sans Condensed", sans-serif;
  font-family: var(--os-cond);
  color: #845dde;
  color: var(--purple);
}

.intro-grid .intro-img-container {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2 / 4;
  position: relative;
}

.intro-grid .intro-img-container::after {
  content: '';
  position: absolute;
  height: 45%;
  width: 45%;
  right: -.3rem;
  bottom: -.3rem;
  background: #845dde;
  background: var(--purple);
  -webkit-box-shadow: 10px 10px 15px -7px rgba(0, 0, 0, 0.25);
          box-shadow: 10px 10px 15px -7px rgba(0, 0, 0, 0.25);
}

.intro-grid .intro-img-container img {
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 475px) {
  .intro-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .intro-grid h1 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    text-align: left;
  }
  .intro-grid .intro-img-container {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2 / 4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
  }
}

@media only screen and (min-width: 992px) {
  .intro-grid .intro-img-container::after {
    right: -1rem;
    bottom: -1rem;
  }
}

.about-section .lead {
  margin-bottom: 4rem;
}

@media only screen and (min-width: 1200px) {
  .about-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.portfolio-section .lead {
  margin-bottom: 4rem;
}

.portfolio-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 3rem;
}

@media only screen and (min-width: 768px) {
  .portfolio-container {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
  }
}

.portfolio-container .portfolio-item {
  grid-column: span 1;
  grid-row: span 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

@media only screen and (min-width: 1366px) {
  .portfolio-container .portfolio-item {
    position: relative;
  }
  .portfolio-container .portfolio-item:hover .portfolio-info {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
  .portfolio-container .portfolio-item:hover .portfolio-title {
    opacity: 1;
    -webkit-transition-delay: 350ms;
            transition-delay: 350ms;
  }
  .portfolio-container .portfolio-item:hover .portfolio-brief {
    opacity: 1;
    -webkit-transition: 1000ms ease-in-out 350ms;
    transition: 1000ms ease-in-out 350ms;
  }
  .portfolio-container .portfolio-item:hover figcaption {
    opacity: 0;
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
  .portfolio-container .portfolio-item:hover .tech-stack-container {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: 750ms ease-in-out 350ms;
    transition: 750ms ease-in-out 350ms;
  }
  .portfolio-container .portfolio-item:hover .button {
    opacity: 1;
    -webkit-transition: 1000ms ease-in-out 350ms;
    transition: 1000ms ease-in-out 350ms;
  }
}

.portfolio-container .portfolio-item.featured {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
}

@media only screen and (min-width: 768px) {
  .portfolio-container .portfolio-item.featured {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
  }
}

.portfolio-container .portfolio-item.portfolio-pending {
  position: relative;
}

.portfolio-container .portfolio-item.portfolio-pending .pending-tooltip {
  z-index: 1;
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #fafafa;
  color: var(--white);
  background: #845dde;
  background: var(--purple);
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 700;
  -webkit-box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.5);
          box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.5);
  -webkit-transition: color 350ms ease-in-out 750ms, background 350ms ease-in-out 750ms;
  transition: color 350ms ease-in-out 750ms, background 350ms ease-in-out 750ms;
}

.portfolio-container .portfolio-item.portfolio-pending:hover .pending-tooltip {
  background: #fafafa;
  background: var(--white);
  color: #845dde;
  color: var(--purple);
  -webkit-transition: color 350ms ease-in-out 0ms, background 350ms ease-in-out 0ms;
  transition: color 350ms ease-in-out 0ms, background 350ms ease-in-out 0ms;
}

.portfolio-item figure {
  position: relative;
}

.portfolio-item figure figcaption {
  position: absolute;
  font-family: "Open Sans Condensed", sans-serif;
  font-family: var(--os-cond);
  color: #fafafa;
  color: var(--white);
  bottom: 0.5rem;
  left: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media only screen and (min-width: 992px) {
  .portfolio-item figure figcaption {
    -webkit-transform: rotateZ(-90deg);
            transform: rotateZ(-90deg);
    -webkit-transform-origin: left;
            transform-origin: left;
    bottom: 0.25rem;
    left: 1rem;
  }
}

@media only screen and (min-width: 1200px) {
  .portfolio-item figure figcaption {
    font-size: 1.35rem;
    left: 1.25rem;
  }
}

@media only screen and (min-width: 1366px) {
  .portfolio-item figure figcaption {
    -webkit-transition: opacity 350ms ease-in-out 750ms;
    transition: opacity 350ms ease-in-out 750ms;
  }
}

.tech-stack-container {
  width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.tech-stack-container .tech-stack-item {
  padding: 0 0.25rem;
}

@media only screen and (min-width: 1366px) {
  .tech-stack-container .tech-stack-item {
    padding: 0.5rem 0.25rem;
  }
}

@media only screen and (min-width: 1366px) {
  .tech-stack-container {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    max-width: 80px;
    background: rgba(250, 250, 250, 0.7);
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 350ms ease-in-out 0ms;
    transition: -webkit-transform 350ms ease-in-out 0ms;
    transition: transform 350ms ease-in-out 0ms;
    transition: transform 350ms ease-in-out 0ms, -webkit-transform 350ms ease-in-out 0ms;
  }
}

.portfolio-info {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.portfolio-info .portfolio-title {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .portfolio-info .portfolio-title {
    display: block;
    margin-top: auto;
    color: #fafafa;
    color: var(--white);
    opacity: 0;
    -webkit-transition: opacity 350ms ease-in-out 0ms;
    transition: opacity 350ms ease-in-out 0ms;
  }
}

.portfolio-info .portfolio-brief {
  font-size: 14px;
  text-align: justify;
  margin-bottom: 1rem;
}

@media only screen and (min-width: 1366px) {
  .portfolio-info .portfolio-brief {
    color: #fafafa;
    color: var(--white);
    font-size: 1.25rem;
    padding-right: 6rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    opacity: 0;
    -webkit-transition: opacity 350ms ease-in-out 0ms;
    transition: opacity 350ms ease-in-out 0ms;
  }
}

@media only screen and (min-width: 1366px) {
  .portfolio-info {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(23, 23, 29, 0.95)), to(rgba(132, 93, 222, 0.75)));
    background: linear-gradient(0deg, rgba(23, 23, 29, 0.95), rgba(132, 93, 222, 0.75));
    color: #fafafa;
    color: var(--white);
    padding: 1rem;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0;
    -webkit-transition: opacity 350ms ease-in-out 500ms, -webkit-transform 350ms ease-in-out 500ms;
    transition: opacity 350ms ease-in-out 500ms, -webkit-transform 350ms ease-in-out 500ms;
    transition: transform 350ms ease-in-out 500ms, opacity 350ms ease-in-out 500ms;
    transition: transform 350ms ease-in-out 500ms, opacity 350ms ease-in-out 500ms, -webkit-transform 350ms ease-in-out 500ms;
  }
}

@media only screen and (min-width: 1366px) {
  .portfolio-info {
    opacity: 0;
  }
}

.portfolio-buttons {
  padding-bottom: 0.5rem;
}

@media only screen and (min-width: 1366px) {
  .portfolio-buttons {
    padding-bottom: 0;
  }
}

.portfolio-button-li:not(:last-of-type) {
  margin-right: 0.5rem;
}

@media only screen and (min-width: 768px) {
  .portfolio-button-li:not(:last-of-type) {
    margin-bottom: 0.5rem;
  }
}

@media only screen and (min-width: 1366px) {
  .portfolio-button-li:not(:last-of-type) {
    margin-bottom: 0;
  }
}

.portfolio-item .button {
  background: linear-gradient(165deg, #845dde, #48BEFF);
}

@media only screen and (min-width: 1366px) {
  .portfolio-item .button {
    opacity: 0;
    -webkit-transition: opacity 350ms ease-in-out 0ms;
    transition: opacity 350ms ease-in-out 0ms;
  }
}

.portfolio-item .button::before {
  background: #fafafa;
  background: var(--white);
}

@media only screen and (min-width: 1366px) {
  .portfolio-item .button::before {
    background: #17171d;
    background: var(--black);
  }
}

.portfolio-item .button svg path {
  fill: #17171d;
  fill: var(--black);
}

@media only screen and (min-width: 1366px) {
  .portfolio-item .button svg path {
    fill: #fafafa;
    fill: var(--white);
  }
}

.portfolio-item .button span {
  color: #17171d;
  color: var(--black);
}

@media only screen and (min-width: 1366px) {
  .portfolio-item .button span {
    color: #fafafa;
    color: var(--white);
  }
}

.portfolio-item .button:hover svg path {
  fill: #fafafa;
  fill: var(--white);
}

.portfolio-item .button:hover span {
  color: #fafafa;
  color: var(--white);
}

.case-hero {
  background: #17171d;
  background: var(--black);
}

@media only screen and (min-width: 768px) {
  .case-hero .section-inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr, 1fr;
        grid-template-columns: 2fr, 1fr;
    grid-column-gap: 3rem;
  }
}

@media only screen and (min-width: 768px) {
  .case-hero .section-inner h1 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
  }
}

@media only screen and (min-width: 768px) {
  .case-hero .section-inner .project-tech-stack-container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media only screen and (min-width: 768px) {
  .case-hero .section-inner .project-tech-stack-container svg {
    max-width: 45px;
    max-height: 45px;
  }
}

@media only screen and (min-width: 768px) {
  .case-hero .section-inner .portfolio-buttons {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

.case-hero p.lead {
  margin-bottom: 2rem;
  text-align: justify;
}

.project-tech-stack-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}

.project-tech-stack-container .tech-stack-item {
  padding-right: .5rem;
  padding-bottom: .5rem;
}

.project-tech-stack-container .flask-icon g {
  fill: #fafafa;
}

.case-hero .button,
.project-end .button {
  background: linear-gradient(165deg, #845dde, #48BEFF);
}

.case-hero .button::before {
  background: #17171d;
  background: var(--black);
}

.case-hero .button svg path {
  fill: #fafafa;
  fill: var(--white);
}

.case-hero .button span {
  color: #fafafa;
  color: var(--white);
}

.project-end .button::before {
  background: #fafafa;
  background: var(--white);
}

.project-end .button svg path {
  fill: #17171d;
  fill: var(--black);
}

.project-end .button span {
  color: #17171d;
  color: var(--black);
}

.project-end .button:hover svg path {
  fill: #fafafa;
  fill: var(--white);
}

.project-end .button:hover span {
  color: #fafafa;
  color: var(--white);
}

.project-outro {
  margin-bottom: 2rem;
}

@media only screen and (min-width: 768px) {
  .project-intro p {
    font-size: 1.25rem;
    font-size: var(--lead);
  }
}

.project-outro p {
  text-align: justify;
}

@media only screen and (min-width: 768px) {
  .project-outro p {
    font-size: 1.25rem;
    font-size: var(--lead);
  }
}

.project-outro p:not(:last-of-type) {
  margin-bottom: 1rem;
}

.project-banner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.project-banner p {
  color: #fafafa;
  color: var(--white);
  text-align: center;
  max-width: 450px;
  margin: auto;
}

@media only screen and (min-width: 768px) {
  .project-banner p {
    font-size: 1.25rem;
    font-size: var(--lead);
    max-width: 650px;
  }
}

.project-outro-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2rem 0;
}

.project-outro-image {
  max-width: 100%;
}

.project-outro-image:nth-of-type(2) {
  display: none;
}

.project-outro-image:nth-of-type(3) {
  display: none;
}

@media only screen and (min-width: 768px) {
  .project-outro-image {
    width: 33.3%;
  }
  .project-outro-image:nth-of-type(2) {
    display: block;
  }
  .project-outro-image:nth-of-type(3) {
    display: block;
  }
}

.error-content {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.error-content h1 {
  font-family: "TrumpGothicEast-Bold", sans-serif;
  font-family: var(--display);
  font-size: 45vw;
  margin-bottom: 0;
  line-height: 1;
  background-image: url("/static/assets/images/background/sand_2048.jpg");
  background-position: center;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

@media only screen and (min-width: 992px) {
  .error-content h1 {
    font-size: 446.4px;
  }
}
/*# sourceMappingURL=style.css.map */