@charset "UTF-8";
/* CSS Document */
/* phillipjob.com 
/* BEM version - Update January 2023
/* v4.0.3 */
/**/
/* ======================================== 
========= NOTES on COLOURS AND FONTS ======
===========================================*/
/**/
/* COLOURS
/* Background Colour = white = rgb(255,255,255) = #FFFFFF
/* Main Colour (my red) = rgb(80,3,10)
/* Body Text Colour = dark grey = #383838 = #000000
/* Other Text Colour (my dark grey) = #6F6F6F
/* Block colour - off white = #F3F3F3
/* Block colour - grey = #CCCCCC
/*
/* FONTS
/* Main = source-sans-pro
/* 
/**/
/**/
/* ========================================= 
============== DEBUG CLASSES ===============
===========================================*/
/**/
.test__border {
  border: 1px solid red;
}
.test__fill {
  display: block;
  background-color: rgba(255, 0, 0, 0.05);
}
/**/
/**/
/* ======================================== 
=============== ANIMATIONS ================
===========================================*/
/**/
/* == SPINNING ANIMATION == */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/**/
/**/
/* == FLASHING ANIMATION == */
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
/**/
/**/
/* == FADE-IN ANNIMATION == */
@-webkit-keyframes fade__in {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
@keyframes fade__in {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
/**/
/**/
/* == FADE-IN ANNIMATION FROM RED == */
.fade__in--red {
  -webkit-animation-name: fade__in--red;
  -webkit-animation-duration: 5s;
  animation-name: fade__in--red;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
.fade__in--redDelay {
  -webkit-animation-name: fade__in--red;
  -webkit-animation-duration: 5s;
  animation-name: fade__in--red;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fade__in--red {
  from {
    color: rgb(10, 3, 80);
  }
  to {
    color: rgb(255, 255, 255);
  }
}
@keyframes fade__in--red {
  from {
    color: rgb(80, 3, 10);
  }
  to {
    color: rgb(255, 255, 255);
  }
}
/**/
/**/
/* == FADE-OUT ANNIMATION == */
@-webkit-keyframes fade__out {
  from {
    opacity: 1
  }
  to {
    opacity: 0
  }
}
@keyframes fade__out {
  from {
    opacity: 1
  }
  to {
    opacity: 0
  }
}
/**/
/**/
/* == FADE-OUT FROM RED == */
.fade__out--red {
  -webkit-animation-name: fade__out--red;
  -webkit-animation-duration: 3s;
  animation-name: fade__out--red;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fade__out--red {
  from {
    background-color: rgb(80, 3, 10);
  }
  to {
    background-color: rgb(255, 255, 255);
  }
}
@keyframes fade__out--red {
  from {
    background-color: rgb(80, 3, 10);
  }
  to {
    background-color: rgb(255, 255, 255);
  }
}
/**/
/**/
/* ======================================== 
=========== ANNIMATION CLASSES ============
===========================================*/
/**/
/* Spinning Element */
.spinner {
  border: 5px solid #f3f3f3;
  border-top: 5px solid rgb(80, 3, 10);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  margin-bottom: -5px;
  margin-right: 10px;
  animation: spin 2s linear infinite;
  display: inline-block;
}
/* Flashing Element */
.flash {
  -webkit-animation-name: flash;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation: flash;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
/* Fade In Element */
.fade__in {
  -webkit-animation-name: fade__in;
  -webkit-animation-duration: 3s;
  animation-name: fade__in;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
.fade__in--slow {
  -webkit-animation-duration: 6s;
  animation-duration: 6s;
}
.fade__out {
  -webkit-animation-name: fade__out;
  -webkit-animation-duration: 3s;
  animation-name: fade__out;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
.scrollIndicator {
  width: 100%;
  height: 10px;
  display: block;
}
.scrollIndicatorProgress {
  width: 0;
  height: 10px;
  display: block;
  background-color: rgba(80, 3, 10, 0.8);
  /*background-image: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1) rgba(80, 3, 10, 0.8));*/
}
.arrow {
  border: solid #FFFFFF;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 4px;
}
.right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg) translate(4px, 0);
  ;
}
.left {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg) translate(-4px, 0);
}
.up {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.down {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menuShadow {
  box-shadow: 1px 0px 3px 1px #CCCCCC;
}
/**/
/**/
/* ======================================== 
=========== ALL SCREEEN CLASSES ===========
===========================================*/
/**/
/* =========== STANDARD CLASSES ==========*/
/**/
footer {
  width: 100%;
  height: 10px;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 5px 0 25px 0;
  color: #6F6F6F;
  font-family: source-sans-pro, arial;
  font-size: 0.8em;
  text-align: center;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.8);
}
body {
  width: 100%;
  margin: auto;
  font-family: source-sans-pro, arial;
  font-style: normal;
  font-weight: 100;
  font-size: 100%;
  letter-spacing: 0.04em;
  color: rgb(80, 3, 10);
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
body::-webkit-scrollbar {
  display: none;
}
h1 {
  margin: 0 auto 0 auto;
  color: rgb(80, 3, 10);
  text-align: center;
  font-family: inherit;
  font-style: inherit;
  font-weight: 400;
  font-size: 100%;
  letter-spacing: 0.15em;
}
h2 {
  color: rgb(80, 3, 10);
  margin: 0 auto 0 auto;
  font-family: inherit;
  font-style: inherit;
  font-weight: 400;
  font-size: 100%;
  letter-spacing: 0.15em;
}
h3 {
  margin: 0 auto 0 auto;
  color: rgb(80, 3, 10);
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  font-size: 100%;
}
p {
  width: 100%;
  color: #383838;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  font-size: 100%;
  line-height: 1.25em;
}
a {
  text-decoration: inherit;
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}
img {
  width: 100%;
  max-width: 1920px;
}
/**/
/* =========== Modifying Classes ==========*/
/**/
.show {
  display: block;
}
.hide {
  display: none;
}
.shrink {
  font-size: 0%;
  transition: 1s ease;
}
.sticky {
  position: fixed;
  top: 0px;
  width: 100%;
}
.stickyMoreVisible {}
.menu__top {
  width: 100%;
  z-index: 50;
  background-color: #FFFFFF;
  display: block;
}
.text__body--italic{
  font-style:italic;
}
/**/
/* =========== CONTAINER CLASSES ==========*/
/**/
.container__top {
  z-index: 10;
}
.container__bottom {
  z-index: -1;
}
.container__padding {
  padding-bottom: 20px;
}
.container__full {
  width: 100%;
  margin: 0px;
  display: block;
  opacity: 0.0;
}
.container__full--home {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto 0 auto;
  display: block;
  opacity: 0.0;
}
.container__full--black {
  background-color: #000000;
  padding: 40px 0 40px 0;
}
.container__full--landing {
  background-color: rgb(80, 3, 10);
}
.container__logo--landing {
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  top: 40%;
  left: 5%;
  width: 90%;
}
.container__full--white {
  height: auto;
  margin-top: 100px;
  padding-bottom: 0px;
  padding-top: 0px;
  display: block;
  postion: absolute;
}
.container__full--black {
  position: relative;
  background-color: #000000;
}
.container__full--home {
  height: auto;
  width: 96%;
  margin: 0 auto 0 auto;
  margin-top: 100px;
  padding: 0 1% 0 1%;
  display: block;
  postion: absolute;
}
.container__full--exhibit {
  min-width: 100px;
  display: block;
  padding: 0 0 10px 0px;
  margin: 0 5px 10px 0;
  background-color: #CCCCCC;
}
.container__full--exhibit:hover {
  background-color: #818181;
  color:#CCCCCC;
}
.container__full--press {
  min-width: 100px;
  display: block;
  padding: 5px 0 10px 0px;
  margin: 0 5px 10px 0;
  background-color: #818181;
}
.container__full--press:hover {
  background-color: #CCCCCC;
  color:#818181;
}
.container__full--projectMenu {
  display: inline-block;
  padding: 0 0 5px 0px;
  margin: 0 5px 10px 0;
  background-color: #818181;
  width: 30%;
}
.container__full--projectMenu:hover {
  background-color: #CCCCCC;
  color:#818181;
}
.container__scroll {
  position: fixed;
  height: 900px;
  min-height: 100%;
  width: 99%;
  opacity: 1.0;
}
.container__scroll--horizontal {
  width: 99%;
  overflow: auto;
  white-space: nowrap;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.container__scroll--horizontal::-webkit-scrollbar {
  display: none;
}
.container__scroll--bar {
  display: none;
  width: 96%;
  height: 24px;
}
.button__scroll {
  display: block;
  width: 24px;
  height: 24px;
  background-color: #CCCCCC;
  cursor: pointer;
  margin: 0 0 0 0;
}
.button__scroll:hover {
  background-color: #818181;
}
.button__scroll--left {
  float: left;
  padding: 5px 0px 5px 5px;
  margin: 0 auto 0 0;
}
.button__scroll--right {
  float: right;
  padding: 5px 0 0 1px;
  margin: 0 0 0 auto;
}
.container__scroll--button {
  display: block;
  width: 50px;
  height: 24px;
  margin: 0 0 0 auto;
}
.container__shiftdown--mobile {
  top: 20px;
}
.container__shiftdown--desktop {
  top: 60px;
}
.container__middle {
  width: 95%;
}
.container__middle--logo {
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  top: 40%;
  left: 5%;
  width: 90%;
}
.container__middle--loader {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding: auto;
}
.container__middle--fixed {
  display: block;
  position: relative; /*delta*/
  margin-left: auto;
  margin-right: auto;
  max-width: 1090px;
  width: 100%;
}
.container__aside {
  width: 96%;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  float: none;
  padding: 0 0 0 0;
}
.container__aside--left {
  display: inline-block;
}
.container__aside--left_half {
  display: inline-block;
  width: 100%;
  min-width: 250px;
  float: left;
}
.container__aside--right {
  display: inline-block;
  width: 100%;
}
.container__aside--explainer {
  padding: 0 0 0 0;
}
.container__aside--right_half {
  display: inline-block;
  width: 100%;
  min-width: 250px;
  float: left;
}
.container__aside--notepadLeft {
  display: inline-block;
  width: 100%;
}
.container__aside--notepadRight {
  display: block;
  margin: 10px 0 0 auto;
  width: 100%;
}
.container__gallery {
  position: relative;
  width: 100%;
  height: auto;
  top: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}
.container__gallery--black {
  background-color: #000000;
  width: 100%;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
.container__image {
  width: 100%;
  margin: 0px auto 0px auto;
  vertical-align: top;
}
/**/
/* ======= NAVIGATION CLASSES =========*/
.container__navigation {
  position: relative;
  transition: 1s ease;
  width: 100%;
  font-size: 0.95em;
}
.container__navigation--projects {
  display: inline-block;
  width: 100.0%;
  font-size: 1.35em;
  text-align: center;
}
.container__navigation--projects a {
  width: 100%;
  margin: auto;
  list-style-type: none;
  float: left;
  display: block;
  overflow: hidden;
}
.container__navigation a:hover {
  background-color: rgba(80, 3, 10, 0.2);
}
.list__navigation--selected {
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(80, 3, 10, 0.2) 100%);
}
.container__navigation--notepad {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 1.35em;
  text-align: center;
}
.container__navigation--notepad a {
  width: 100%;
  margin: auto;
  list-style-type: none;
  float: left;
  display: block;
  overflow: hidden;
  overflow-wrap: break-word;
  /*background-color: #CCCCCC;*/
}
.container__navigation--notepad a:hover {
  /*background-color: rgba(80, 3, 10, 1);
  color: #FFFFFF;*/
}
.container__navigation--notepadSelected {
  position: relative;
  display: inline-block;
  width: 100%;
}
.container__navigation--notepadSelected a {
  width: 100%;
  margin: auto;
  list-style-type: none;
  text-align: center;
  float: left;
  display: block;
  overflow: hidden;
  overflow-wrap: break-word;
  color: #FFFFFF;
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(80, 3, 10, 1) 100%);
}
.container__navigation--notepadSelected a:hover {
  background-color: rgba(80, 3, 10, 1);
}
.list__navigation--notepad {
  padding: 10px 10px 0 10px;
  /*background-color: rgba(80, 3, 10, 0.2);*/
}
.list__navigation--notepad a:hover {
  /*background-color: rgba(80, 3, 10, 0.8);*/
}
/**/
/* =========== PHOTO CLASSES ==========*/
/**/
.photo__img {
  vertical-align: top;
}
.photo__img--installation {
  width: 100%;
  margin: 0px;
  padding: 0px;
}
.photo__img--vertical {
  width: 160px;
}
.photo__img--horizontal {
  width: 360px;
}
.photo__img--array {
  width: 500px;
  margin: 0px;
  padding: 0px;
}
.photo__img--array_cell {
  width: 500px;
  height: 500px;
  margin: 0px;
  padding: 0px;
  display: inline-block;
}
.photo__caption {
  display: block;
  padding-bottom: 40px;
}
/**/
/* =========== TEXT CLASSES ==========*/
/**/
.text__author {
  color: #FFFFFF;
  text-align: center;
  position: relative;
}
.text__author--landing {
  margin-top: -10px;
  margin-left: 4px;
  margin-bottom: 0px;
  font-size: 1.0em;
  letter-spacing: 1.05em;
}
.text__sitename {
  text-align: center;
}
.text__sitename--landing {
  font-size: 3em;
  color: #FFFFFF;
  position: relative;
  margin: 0 0 0 0;
  opacity: 0.4;
}
.text__sitename--page {
  letter-spacing: 0.15em;
  font-size: 1.5em;
  width: 50%;
  min-width: 100px;
  margin: auto;
  margin-top: 10px;
  padding-left: 0px;
  padding-bottom: 10px;
}
.text__title {
  text-align: center;
}
.text__title--loading {
  margin-top: 50%; /*delta*/
  margin-bottom: 5%; /*delta*/
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.text__title--page {
  position: absolute;
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  top: 45%; /*delta*/
  width: 100%;
  margin: 0;
  /*font-size: 2em;*/
  font-size: 8vw;
  font-weight: 400;
  letter-spacing: 0.35em;
}
.text__title--aside {
  margin-top: 2.5em;
  margin-bottom: 1em;
  position: relative;
  width: 100%;
}
.text__subtitle {
  font-weight: 100;
  font-size: 1.25em;
  letter-spacing: 0.05em;
  margin: 0 0 0 0;
  padding: 0 5px 0 0px;
}
.text__subtitle--page {
  width: 100%;
  padding: 5%;
  font-size: 1.75em;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  position: absolute;
  color: #383838;
  top: 42.5%; /*delta*/
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
.text__subtitle--exhibit {
  color: #383838;
  margin: 10px 10px 0 10px;
  padding: 0 0 0 0;
}
.text__subtitle--press {
  color: #FFFFFF;
  margin: 0px 10px 0 10px;
  padding: 0 0 0 0;
}
.text__subtitle--projectMenu {
  color: #FFFFFF;
  margin-left: 5px;
}
.text__body {
  color: #383838; /*#000000;*/
  position: relative;
  margin: 0 0 0 0;
  padding: 5px 20px 5px 0px;
}
.text__body--centre {
  text-align: center;
}
.text__body--page {
  top: 45%; /*delta*/
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  margin: auto;
  width: 94%;
  font-size: 1.25em;
}
.text__body--subsection {
  /*top: 45%; /*delta*/
  /*-ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);*/
  margin: auto;
  width: 94%;
  font-size: 1.25em;
  padding: 5px 0 0 0;
}
.text__body--aside {
  margin-bottom: 0.9em;
}
.text__body--exhibit {
  margin: 0; /*10px 10px 0 10px;*/
  padding: 10px 10px 0px 10px;
  font-size: 1em;
}
.text__body--press {
  color: #FFFFFF;
  margin: 0; /*10px 10px 0 10px;*/
  padding: 10px 10px 0px 10px;
  font-size: 1em;
}
.text__body--under {
  text-decoration: underline;
}
.text__caption {
  color: #6F6F6F;
  letter-spacing: 0.04em;
  font-size: 0.8em; /*delta*/
  position: relative;
  font-weight: 400;
  width: 94%;
  padding-left: 5%;
  padding-right: 5%;
  margin: auto;
  text-align: center;
}
.text__caption--right {
  text-align: right;
}
.text__link {}
.text__link:hover {
  text-decoration: underline;
}
/**/
/* ======== SPECIAL ELEMENT CLASSES =======*/
/**/
/* ============= MENU BUTTON =============*/
#menuBtn {
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 100;
  font-size: 0.9em;
  border: none;
  outline: none;
  background-color: #FFFFFF;
  color: #FFFFFF;
  cursor: pointer;
  margin-top: 10px;
  margin-right: 10px;
  padding: 1px;
  opacity: 0.5;
  border-radius: 1px;
}
#menuBtn:hover {
  opacity: 1;
}
.button__menu--icon {
  cursor: pointer;
  float: right;
  margin: 0px;
}
.button__menu--topbar, .button__menu--middlebar, .button__menu--bottombar {
  width: 20px;
  height: 2px;
  background-color: rgb(80, 3, 10);
  margin: 4px 0;
  transition: 0.4s;
}
/* Rotate first bar */
.change .button__menu--topbar {
  -webkit-transform: rotate(-45deg) translate(-4px, 5px);
  transform: rotate(-45deg) translate(-4px, 4px);
}
/* Fade out the second bar */
.change .button__menu--middlebar {
  opacity: 1;
  width: 0px;
}
/* Rotate last bar */
.change .button__menu--bottombar {
  -webkit-transform: rotate(45deg) translate(-4px, -4px);
  transform: rotate(45deg) translate(-4px, -4px);
}
/**/
/* ============= PLAY/PAUSE BUTTON =============*/
#button__audio--play {
  position: fixed;
  top: 5px;
  left: 5px;
  font-size: 1.2em;
  border: none;
  outline: none;
  background-color: white;
  color: rgb(80, 3, 10);
  cursor: pointer;
  margin-top: 10px;
  margin-left: 10px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 5px;
  padding-right: 5px;
  opacity: 0.5;
  border-radius: 5px;
}
#button__audio--play:hover {
  background-color: #FFFFFF;
  opacity: 1;
}
#button__audio--pause {
  position: fixed;
  font-family: source-sans-pro;
  top: 5px;
  left: 5px;
  font-size: 1.2em;
  border: none;
  outline: none;
  background-color: white;
  color: rgb(80, 3, 10);
  cursor: pointer;
  margin-top: 10px;
  margin-left: 10px;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 5px;
  padding-right: 5px;
  opacity: 0.5;
  border-radius: 4px;
}
#button__audio--pause:hover {
  background-color: #FFFFFF;
  opacity: 1;
}
.button__audio {
  cursor: pointer;
  float: right;
  padding-left: 50px;
}
.button__audio--play {
  width: 0;
  height: 0;
  display: inline-block;
  border-top: 0.35em solid transparent;
  border-left: 0.6em solid rgb(80, 3, 10);
  border-bottom: 0.35em solid transparent;
  margin-top: 5px;
  margin-right: 2px;
}
.button__audio--pause {
  display: inline-block;
  margin-left: 0.1em;
  margin-right: 0.1em;
}
.button__audio--pausebar {
  width: 0.25em;
  height: 0.6em;
  display: inline-block;
  background-color: rgb(80, 3, 10);
  margin-bottom: 0.05em;
  margin-left: 0.0em;
  margin-right: 0.0em;
}
/**/
/* =========== MAGNIFYING GLASS ============*/
.button__magglass--zoomin {
  cursor: zoom-in;
}
.button__magglass--zoomout {
  cursor: zoom-out;
}
* {
  box-sizing: border-box;
}
.button__magglass--icon {
  position: absolute;
  border: 3px solid #6F6F6F;
  border-radius: 50%;
  cursor: none;
  width: 500px;
  height: 500px;
  z-index: 100;
}
/*========================*/
/*=== Sticky Colours =====*/
/*========================*/
.sticky__fill--yellow {
  background-color: rgba(241, 245, 143, 1);
}
.sticky__fill--pink {
  background-color: rgba(255, 126, 185, 1);
}
.sticky__fill--green {
  background-color: rgba(220, 255, 70, 1);
}
.sticky__fill--orange {
  background-color: rgba(255, 169, 48, 1);
}
.sticky__fill--blue {
  background-color: rgba(169, 237, 241, 1);
}
.stickynote__logo {
  position: relative;
  width: 125px;
  padding: 7px 15px 7px 15px;
  display: inline-block;
  cursor: pointer;
  text-align: left;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 400;
  box-shadow: 2px 2px 5px 1px #888888;
}
.stickynote__logo--1 {
  transform: translateY(7px) translateX(7px) rotate(-4.5deg);
}
.stickynote__logo--2 {
  transform: translateY(0px) translateX(15px) rotate(+6.1deg);
}
.stickynote__logo--3 {
  transform: translateY(3px) translateX(-1px) rotate(-0.9deg);
}
.stickynote__logo--4 {
  transform: translateY(-2px) translateX(3px) rotate(+2.3deg);
}
.stickynote__logo--5 {
  transform: translateY(-5px) translateX(10px) rotate(-1.3deg);
}
/**/
/* ======================================== 
========= LARGER SCREEN MODIFIERS =========
===========================================*/
/**/
/* Define differences between narrow mobile-like screen and narrow iPad or desktop window in vertical mode*/
@media only screen and (min-device-width: 600px) {}
/**/
/* Define differences between narrow mobile-like screen and narrow iPad or desktop window* in horizontal mode*/
@media only screen and (min-device-width: 600px) and (orientation: landscape) {
  /**/
  /* =========== CONTAINER CLASSES ==========*/
  /**/
  
.menuShadow {
  box-shadow: 0px 0px 0px 0px #CCCCCC;
}
  .container__logo--landing {
    width: 90%;
    top: 40%;
    left: 5%;
  }
  .container__full {
    width: 100%;
  }
  .container__middle {
    width: 100%;
    max-width: 1280px;
    margin: auto;
  }
  .container__middle--logo {
    width: 90%;
    top: 40%;
    left: 5%;
  }
  .container__aside {
    margin-right: 0.5%;
    margin-left: 0.5%;
  }
  .container__inline {
    display: inline-block;
  }
  .container__aside--left {
    width: 31.3%;
    margin-left: 1%;
    float: left;
  }
  .container__aside--right {
    width: 65.6%;
    margin-left: 0.5%;
    display: inline-block;
  }
  .container__full--home {
    margin-top: 180px;
  }
  .container__aside--left_half {
    width: 48%;
    margin-left: 1%;
  }
  .container__aside--right_half {
    width: 48%;
    margin-left: 1%;
  }
  .container__aside--about_half {
    margin-left: 0%;
  }
  .container__scroll--horizontal {
    width: 96%;
  }
  .container__aside--explainer {
    padding: 0 2% 0 0;
  }
  .container__scroll--bar {
    display: block;
  }
  .container__aside--notepadLeft {
    width: 80%;
    float: left;
  }
  .container__aside--notepadRight {
    transform: translateX(7px) translateY(3px) rotate(-2deg);
  width: 130px;
  }
  /**/
  /* ======= NAVIGATION CLASSES =========*/
  .container__navigation--projects {
    width: 87.0%;
  }
  .container__navigation--notepad {
    width: 12.5%;
  }
  .list__navigation {}
  .list__navigation--notepad {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .container__navigation--notepadSelected {
    width: 12.5%;
  }
  .container__navigation--notepad a {
    /*width: 12.5%;*/
    text-align: right;
  }
  .container__navigation--notepadSelected a {
    text-align: right;
    width: 12.5%;
  }
  .container__navigation--notepad a {
  background-color: #CCCCCC;
}
.stickynote__logo {  display: block; 
}
  /**/
  /* =========== TEXT CLASSES ==========*/
  /**/
  .text__author--landing {
    font-size: 1.7em;
    margin-top: -20px;
    margin-left: 8px;
    letter-spacing: 1.04em;
  }
  .text__sitename--landing {
    font-size: 5em;
  }
  .text__sitename--page {
    font-size: 2em;
  }
  .text__title--loading {
    margin-top: 20%;
    margin-bottom: 10%;
  }
  .text__title--page {
    letter-spacing: 0.35em;
  }
  .text__subtitle--page {
    letter-spacing: 0.08em;
  }
  .text__body--page {
}
.text__title--page {
  font-size: 3em;
}
}
/**/
/* Define differences between narrow iPad or desktop window and full widescreen display*/
@media only screen and (min-width: 1060px) {
  /**/
  /* =========== TEXT CLASSES ==========*/
  /**/
  }
/**/