/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  scroll-behavior: smooth;
  font-size: 62.5%; }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 75%; } }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media only screen and (max-width: 37.5em) {
    html {
      font-size: 45%; } }
  @media only screen and (max-width: 18.5em) {
    html {
      font-size: 40%; } }

body {
  box-sizing: border-box; }

a {
  text-decoration: none;
  cursor: default; }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(5rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

body {
  font-family: Roboto Condensed;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: .8;
  color: #e6e6e6; }

.heading-primary {
  font-family: Roboto Condensed;
  font-weight: 700;
  font-size: 10rem;
  text-transform: uppercase; }

.heading-secondary {
  font-family: Roboto Condensed;
  font-weight: 700;
  font-size: 8rem;
  text-transform: uppercase; }
  @media only screen and (max-width: 37.5em) {
    .heading-secondary {
      font-size: 6rem; } }

.paragraph {
  font-family: Consola;
  font-weight: 400;
  line-height: 3rem;
  text-align: left;
  padding-left: 4rem; }
  .paragraph:not(:last-child) {
    margin-bottom: 3rem; }

p {
  font-family: Consola;
  line-height: 3rem; }

.coloum-box {
  max-width: 120rem;
  margin: 0 auto; }

.u-center-text {
  text-align: center !important; }

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important; }

.u-margin-bottom-medium {
  margin-bottom: 4rem !important; }

.u-margin-bottom-big {
  margin-bottom: 8rem !important; }
  @media only screen and (max-width: 56.25em) {
    .u-margin-bottom-big {
      margin-bottom: 5rem !important; } }

.u-margin-top-big {
  margin-top: 8rem !important; }

.u-margin-top-huge {
  margin-top: 10rem !important; }

.about {
  position: relative; }
  .about__page-number {
    position: absolute;
    display: inline-block;
    font-family: Consola;
    font-size: 2rem;
    right: 3%;
    top: 4.1rem; }
  .about__page-element {
    position: absolute;
    left: 50%;
    bottom: 4.1rem;
    height: 2rem; }
  .about__info {
    position: relative;
    height: 30rem; }
    .about__info--txt {
      font-family: Consola;
      position: relative;
      font-size: 1.5rem;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 45%;
      text-align: justify;
      text-align-last: center;
      line-height: 2.5rem; }
      @media only screen and (max-width: 18.5em) {
        .about__info--txt {
          width: 90%;
          top: 50%; } }
      @media only screen and (max-width: 37.5em) {
        .about__info--txt {
          width: 80%;
          top: 30%; } }

.section-projects {
  position: relative; }
  .section-projects__page-number {
    position: absolute;
    display: inline-block;
    font-family: Consola;
    font-size: 2rem;
    right: 3%;
    top: 1.1rem; }

.project-heading {
  position: relative;
  display: inline-block;
  left: 10%;
  padding-bottom: 2rem; }

.portfolio-work {
  width: 85%;
  height: 30rem;
  margin: 0 auto;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.9);
  border-radius: 0.5rem; }
  @media only screen and (max-width: 37.5em) {
    .portfolio-work {
      height: 17rem; } }
  @media only screen and (max-width: 18.5em) {
    .portfolio-work {
      height: 13rem;
      margin-bottom: 2rem; } }
  .portfolio-work__bowie-container {
    position: relative;
    width: 100%;
    height: 30rem;
    background-color: #e8eaec;
    transition: all 0.5s;
    padding: 1rem 0; }
    @media only screen and (max-width: 37.5em) {
      .portfolio-work__bowie-container {
        height: 17rem; } }
    @media only screen and (max-width: 18.5em) {
      .portfolio-work__bowie-container {
        height: 13rem; } }
  .portfolio-work__bowie-img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3rem;
    width: 40%;
    transition: all 0.5s;
    backface-visibility: hidden; }
    @media only screen and (max-width: 37.5em) {
      .portfolio-work__bowie-img {
        padding: 1rem;
        width: 45%; } }
    @media only screen and (max-width: 18.5em) {
      .portfolio-work__bowie-img {
        padding: 1rem;
        width: 60%; } }
  .portfolio-work:hover .portfolio-work__bowie-img {
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    filter: blur(0.6rem) grayscale(1); }
  .portfolio-work__bowie-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    color: #ff414d;
    font-family: Roboto Condensed;
    font-weight: 700;
    font-size: 6rem;
    text-transform: uppercase;
    opacity: 0;
    transition: all 0.5s;
    backface-visibility: hidden; }
    @media only screen and (max-width: 56.25em) {
      .portfolio-work__bowie-caption {
        padding: 1rem;
        font-size: 4.5rem; } }
    @media only screen and (max-width: 37.5em) {
      .portfolio-work__bowie-caption {
        padding: 1rem;
        font-size: 2.5rem; } }
    @media only screen and (max-width: 18.5em) {
      .portfolio-work__bowie-caption {
        padding: 1rem;
        font-size: 2rem; } }
  .portfolio-work:hover .portfolio-work__bowie-caption {
    opacity: 1;
    transform: translate(-50%, -50%); }
  .portfolio-work__beyond-container {
    position: relative;
    width: 100%;
    height: 30rem;
    background-color: #e8eaec;
    transition: all 0.5s;
    padding: 1rem 0; }
    @media only screen and (max-width: 37.5em) {
      .portfolio-work__beyond-container {
        height: 17rem; } }
    @media only screen and (max-width: 18.5em) {
      .portfolio-work__beyond-container {
        height: 13rem; } }
  .portfolio-work__beyond-img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3rem;
    width: 35%;
    transition: all 0.5s;
    backface-visibility: hidden; }
    @media only screen and (max-width: 37.5em) {
      .portfolio-work__beyond-img {
        padding: 1rem;
        width: 45%; } }
    @media only screen and (max-width: 18.5em) {
      .portfolio-work__beyond-img {
        padding: 1rem;
        width: 60%; } }
  .portfolio-work:hover .portfolio-work__beyond-img {
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    filter: blur(0.6rem) grayscale(1); }
  .portfolio-work__beyond-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    color: #ff414d;
    font-family: Roboto Condensed;
    font-weight: 700;
    font-size: 6rem;
    text-transform: uppercase;
    opacity: 0;
    transition: all 0.5s;
    backface-visibility: hidden; }
    @media only screen and (max-width: 56.25em) {
      .portfolio-work__beyond-caption {
        padding: 1rem;
        font-size: 4.5rem; } }
    @media only screen and (max-width: 37.5em) {
      .portfolio-work__beyond-caption {
        padding: 1rem;
        font-size: 2.5rem; } }
    @media only screen and (max-width: 18.5em) {
      .portfolio-work__beyond-caption {
        padding: 1rem;
        font-size: 2rem; } }
  .portfolio-work:hover .portfolio-work__beyond-caption {
    opacity: 1;
    transform: translate(-50%, -50%); }
  .portfolio-work__crowne-container {
    position: relative;
    width: 100%;
    height: 30rem;
    background-color: #e8eaec;
    transition: all 0.5s;
    padding: 1rem 0; }
    @media only screen and (max-width: 37.5em) {
      .portfolio-work__crowne-container {
        height: 17rem; } }
    @media only screen and (max-width: 18.5em) {
      .portfolio-work__crowne-container {
        height: 13rem; } }
  .portfolio-work__crowne-img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3rem;
    width: 30%;
    transition: all 0.5s;
    backface-visibility: hidden; }
    @media only screen and (max-width: 37.5em) {
      .portfolio-work__crowne-img {
        padding: 1rem;
        width: 45%; } }
    @media only screen and (max-width: 18.5em) {
      .portfolio-work__crowne-img {
        padding: 1rem;
        width: 60%; } }
  .portfolio-work:hover .portfolio-work__crowne-img {
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    filter: blur(0.6rem) grayscale(1); }
  .portfolio-work__crowne-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    color: #ff414d;
    font-family: Roboto Condensed;
    font-weight: 700;
    font-size: 6rem;
    text-transform: uppercase;
    opacity: 0;
    transition: all 0.5s;
    backface-visibility: hidden; }
    @media only screen and (max-width: 56.25em) {
      .portfolio-work__crowne-caption {
        padding: 1rem;
        font-size: 4.5rem; } }
    @media only screen and (max-width: 37.5em) {
      .portfolio-work__crowne-caption {
        padding: 1rem;
        font-size: 2.5rem; } }
    @media only screen and (max-width: 18.5em) {
      .portfolio-work__crowne-caption {
        padding: 1rem;
        font-size: 2rem; } }
  .portfolio-work:hover .portfolio-work__crowne-caption {
    opacity: 1;
    transform: translate(-50%, -50%); }
  .portfolio-work__pop-game-container {
    position: relative;
    width: 100%;
    height: 30rem;
    background-color: #e8eaec;
    transition: all 0.5s;
    padding: 1rem 0; }
    @media only screen and (max-width: 37.5em) {
      .portfolio-work__pop-game-container {
        height: 17rem; } }
    @media only screen and (max-width: 18.5em) {
      .portfolio-work__pop-game-container {
        height: 13rem; } }
  .portfolio-work__pop-game-img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3rem;
    width: 40%;
    transition: all 0.5s;
    backface-visibility: hidden; }
    @media only screen and (max-width: 37.5em) {
      .portfolio-work__pop-game-img {
        padding: 1rem;
        width: 45%; } }
    @media only screen and (max-width: 18.5em) {
      .portfolio-work__pop-game-img {
        padding: 1rem;
        width: 60%; } }
  .portfolio-work:hover .portfolio-work__pop-game-img {
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    filter: blur(0.6rem) grayscale(1); }
  .portfolio-work__pop-game-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    color: #ff414d;
    font-family: Roboto Condensed;
    font-weight: 700;
    font-size: 6rem;
    text-transform: uppercase;
    opacity: 0;
    transition: all 0.5s;
    backface-visibility: hidden; }
    @media only screen and (max-width: 56.25em) {
      .portfolio-work__pop-game-caption {
        padding: 1rem;
        font-size: 4.5rem; } }
    @media only screen and (max-width: 37.5em) {
      .portfolio-work__pop-game-caption {
        padding: 1rem;
        font-size: 2.5rem; } }
    @media only screen and (max-width: 18.5em) {
      .portfolio-work__pop-game-caption {
        padding: 1rem;
        font-size: 2rem; } }
  .portfolio-work:hover .portfolio-work__pop-game-caption {
    opacity: 1;
    transform: translate(-50%, -50%); }

.header {
  position: relative;
  height: 100vh;
  background-color: #0b0c0c;
  backface-visibility: hidden;
  padding: 1rem; }
  .header__logo-box {
    position: absolute;
    left: 4.1rem;
    top: 4.1rem; }
  .header__logo {
    height: 4rem; }
  .header__box {
    position: relative;
    height: 100%; }
    .header__box--main {
      position: absolute;
      display: inline;
      top: 35%;
      left: 15%;
      display: inline;
      font-family: Roboto Condensed;
      font-weight: 700;
      font-size: 10rem;
      text-transform: uppercase; }
      @media only screen and (max-width: 37.5em) {
        .header__box--main {
          left: 8%;
          top: 35%; } }
      @media only screen and (max-width: 18.5em) {
        .header__box--main {
          font-size: 7.5rem;
          top: 35%; } }
    .header__box--sub {
      position: absolute;
      font-family: Consola;
      font-size: 1.3rem;
      line-height: 1.8rem;
      width: 18rem;
      bottom: 3%;
      right: 3%; }
      @media only screen and (max-width: 37.5em) {
        .header__box--sub {
          left: 8%; } }
      @media only screen and (max-width: 18.5em) {
        .header__box--sub {
          left: 8%;
          font-size: 1.6rem;
          line-height: 2rem;
          width: 25rem; } }

.portfolio {
  position: relative;
  min-height: 100vh;
  background-color: #0b0c0c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  padding: 10rem 0;
  backface-visibility: hidden; }
  .portfolio__text-box {
    position: absolute;
    top: 5rem;
    left: 5rem;
    padding: 3rem; }
    .portfolio__text-box--text {
      font-family: Roboto Condensed;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 6rem; }

.row {
  max-width: 114rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 8rem; }
  @media only screen and (max-width: 56.25em) {
    .row {
      max-width: 90%;
      padding: 0 3rem; } }
  @media only screen and (max-width: 37.5em) {
    .row {
      max-width: 100%;
      padding: 0 3rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
      @media only screen and (max-width: 56.25em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0;
          margin-bottom: 6rem; } }
    @media only screen and (max-width: 56.25em) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-of-2 {
    width: calc((100% - 6rem) / 2); }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 6rem) / 3); }
  .row .col-2-of-3 {
    width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4); }
  .row .col-2-of-4 {
    width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem); }
  .row .col-3-of-4 {
    width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem); }
  .row .col-1-of-5 {
    width: calc((100% - 4 * 6rem) / 5); }

.footer {
  position: relative;
  background-color: #0b0c0c;
  padding: 10rem 0;
  font-size: 1.4rem; }
  @media only screen and (max-width: 37.5em) {
    .footer {
      padding: 4rem 0; } }
  .footer__logo-box {
    position: relative;
    padding-bottom: 5rem;
    width: 70%;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    margin-bottom: 5rem;
    border-bottom: 1px solid #e6e6e6; }
  .footer__logo {
    width: 8rem;
    height: auto; }
  .footer__navigation {
    padding-top: 2rem;
    display: inline-block; }
    @media only screen and (max-width: 56.25em) {
      .footer__navigation {
        position: relative;
        left: 50%;
        transform: translate(-50%); } }
    @media only screen and (max-width: 37.5em) {
      .footer__navigation {
        position: relative;
        left: 50%;
        transform: translate(-50%); } }
  .footer__list {
    font-family: Consola;
    list-style: none; }
  .footer__item {
    display: inline-block; }
    .footer__item:not(:last-child) {
      margin-right: 3.5rem; }
  .footer__link:link, .footer__link:visited {
    color: #e6e6e6;
    text-decoration: none;
    display: inline-block; }
  .footer__link:hover, .footer__link:active {
    color: #4bcaf6; }
  .footer__copy {
    font-family: Consola;
    font-size: 1.4rem;
    color: #e6e6e6;
    padding-top: 2rem;
    line-height: 2rem;
    float: right; }
    @media only screen and (max-width: 56.25em) {
      .footer__copy {
        text-align: center;
        position: relative;
        left: 50%;
        transform: translate(-50%);
        float: none; } }
    @media only screen and (max-width: 37.5em) {
      .footer__copy {
        text-align: center;
        position: relative;
        left: 50%;
        transform: translate(-50%);
        float: none; } }

.navigation__checkbox {
  display: none; }

.navigation__button {
  background-color: #4bcaf6;
  height: 6rem;
  width: 6rem;
  position: fixed;
  top: 4.1rem;
  right: 4.1rem;
  z-index: 2001;
  box-shadow: 0 1rem 3rem #000 .6;
  text-align: center; }

.navigation__background {
  height: 4rem;
  width: 4rem;
  position: fixed;
  top: 4.5rem;
  right: 4.5rem;
  background-color: #e6e6e6;
  opacity: 0.8;
  z-index: 200;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); }

.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0rem;
  right: 0rem;
  z-index: 250;
  opacity: 0;
  width: 0%;
  transition: opacity 3.3s; }

.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%; }

.navigation__item {
  margin: 3rem; }

.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-family: Consola;
  font-size: 3rem;
  font-weight: 400;
  color: #303030;
  text-decoration: none;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #ff414d 50%);
  padding: 2rem 3rem;
  background-size: 230%;
  transition: all .4s; }

.navigation__link:hover, .navigation__link:active {
  color: white;
  background-position: 100%;
  text-shadow: 0 1rem 3rem #000 .6; }

.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(100); }

.navigation__checkbox:checked ~ .navigation__nav {
  transition-delay: 0.4s;
  opacity: 1;
  width: 100%; }

.navigation__icon {
  position: relative;
  margin-top: 2.8rem; }
  .navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 3rem;
    height: 4px;
    background-color: white;
    display: inline-block; }
  .navigation__icon::before, .navigation__icon::after {
    content: "";
    position: absolute;
    left: 0;
    transition: all .2s; }
  .navigation__icon::before {
    top: -1rem; }
  .navigation__icon::after {
    top: 1rem; }

.navigation__button:hover .navigation__icon::before {
  top: -1.2rem; }

.navigation__button:hover .navigation__icon::after {
  top: 1.2rem; }

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent; }

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg); }

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg); }

.about {
  background-color: #0b0c0c;
  padding: 10rem 0; }

.section-projects {
  padding: 10rem 0;
  background-color: #0b0c0c; }
